예전것/Linux Basic2012. 2. 4. 17:13

intel hd graphic driver installation

sudo add-apt-repository ppa:glasen/intel-driver

sudo add-apt-repository ppa:kernel-ppa/ppa

sudo apt-get update

sudo apt-get upgrade

sudo apt-get install linux-image-generic-lts-backport-natty linux-headers-generic-lts-backport-natty 




docky installation

sudo add-apt-repository ppa:docky-core/stable

sudo apt-get update

sudo apt-get install docky


globalmenu

sudo add-apt-repository ppa:globalmenu-team/ppa
sudo apt-get update
sudo apt-get install gnome-globalmenu


synapse
  • sudo add-apt-repository ppa:synapse-core/ppa
  • sudo apt-get update && sudo apt-get install synapse


sudo add-apt-repository ppa:libreoffice/ppa


sudo nvidia-settings 해서 오류 나더라도

xorg.conf 에 저장을 꽉 눌러준뒤 재부팅하면  twin-view가 적용된다.


아래 명령어를 터미널에서 입력하면 셋팅되어 있는 값이 나온다. 

  1. $> gsettings get com.canonical.Unity.Panel systray-whitelist

  2. ['JavaEmbeddedFrame', 'Wine', 'scp-dbus-service', 'Update-notifier']


여기에 값을 추가하려면 get 부분을 set 으로 바꾸고, 위에 있던 기본 내용들을 모두 똑같이 적은 다음, Nabi 를 추가해야 한다.

  1. $> gsettings set com.canonical.Unity.Panel systray-whitelist "['JavaEmbeddedFrame', 'Wine', 'scp-dbus-service', 'Update-notifier', 'Nabi']"


이렇게 해주면 nabi 가 추가되고, 다시 로그인하면 정상적으로 트레이로 들어가 있는 것을 볼 수 있다.


'예전것 > Linux Basic' 카테고리의 다른 글

vmware tool 설치 팁.  (0) 2010.06.03
vi setting  (0) 2010.04.02
SetUID를 이용한 해킹  (0) 2009.09.07
find 옵션에 +,- 붙은것들  (0) 2009.09.07
SETSUID에 대하여  (0) 2009.09.07
If you don't subclass UITableViewController, there is a way to do it. Just implement setEditing:animated: in your UIViewController subclass as follows:
- (void) setEditing:(BOOL)editing animated:(BOOL)animated {
   
[super setEditing: editing animated: animated];
   
[self.tableView setEditing:editing animated:animated];
}
- (void)viewDidLoad {
   
[super viewDidLoad];

   
self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
wow!!
http://www.iphonedevsdk.com/forum/iphone-sdk-development/55942-fade-fade-out-view-object.html
예전것/웃긴거2010. 6. 28. 07:51

ㅋㅋㅋ

'예전것 > 웃긴거' 카테고리의 다른 글

흐뭇해  (0) 2009.12.17
페널티킥 심리전  (0) 2009.07.09
예전것/SmartPhone2010. 6. 24. 12:35
예전것/Linux Basic2010. 6. 3. 23:32

Certainly help for me – had been trying update the Kernel for hours and this put me on the right track.

Using Vmware version of OpenEmm running Centos 5.

Couple of other commands that help me solve this:

1. Install packages to build the kernel modules
yum install gcc kernel-devel
2. Check the running kernel matches the kernel headers
uname -r # running kernel
rpm -q kernel-devel # installed kernel headers
5. If the two versions do not match, run
yum -y upgrade kernel kernel-devel
reboot
7. Find out where the kernel headers are
ls -d /usr/src/kernels/$(uname -r)*/include

Sourced this from http://www.thoughtpolice.co.uk/vmware/howto/centos-5-vmware-tools-install.html

Many thanks.

'예전것 > Linux Basic' 카테고리의 다른 글

Ubuntu 10.04 LTS intall  (0) 2012.02.04
vi setting  (0) 2010.04.02
SetUID를 이용한 해킹  (0) 2009.09.07
find 옵션에 +,- 붙은것들  (0) 2009.09.07
SETSUID에 대하여  (0) 2009.09.07
예전것/Java & Eclipse2010. 6. 2. 00:50

'예전것 > Java & Eclipse' 카테고리의 다른 글

이클립스(eclipse) classpath 설정  (0) 2010.06.01
예전것/Java & Eclipse2010. 6. 1. 23:38
eclipse 에서 classpath를 설정할때 다음과 같이 한다.

프로젝트의 property를 설정하기 위해 다음과 같이 한다.
1. 프로젝트에서 오른쪽버튼 - properties

2. 다음 그림에서 Java Build Path 에서 설정

'예전것 > Java & Eclipse' 카테고리의 다른 글

이클립스 파일 경로..설정  (0) 2010.06.02
구글링한것과 달리 0.8.2 에서는

 COCOS2D_DEBUG=1 

위와 같은 메시지가 존재하지 않는다.
결국 구글링으로 해결했지만

default.png를 지운다음에 Try "Build"->"Clean All Targets" 를 하면 해결된다.