Gentoo에서 Airvideo 설정하기

젠투에서 Airvideo 설정하기 @@ 참고 사이트 http://blog.stevenlu.com/2012/09/10/installing-airvideo-server-on-debian-squeeze/ @@ 실행파일 만들기 vi /usr/bin/startAVS.sh #!/bin/bash ps aux | grep java | grep AirVideo | awk ‘{ print $2 }’ | xargs -I pid kill -9 pid exec java -jar /opt/airvideoserver/AirVideoServerLinux.jar /opt/airvideoserver/properties.conf 2&>1 /dev/null & vi /etc/conf.d/local 부팅시 자동실행되도록 할것 /usr/bin/startAVS.sh @@ 인코딩 바꿔주는 스크립트 vi /usr/bin/convutf8.sh #!/bin/bash […]

현재 Gentoo grub.conf 파일

# This is a sample grub.conf for use with Genkernel, per the Gentoo handbook # http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1&chap=10#doc_chap2 # If you are not using Genkernel and you need help creating this file, you # should consult the handbook. Alternatively, consult the grub.conf.sample that # is included with the Grub documentation. default 0 timeout 30 #splashimage=(hd0,0)/boot/grub/splash.xpm.gz title Gentoo […]

Installing Subversion on Gentoo

Installing Subversion on Gentoo Installing Subversion on Gentoo is very easy. By this point, you should have installed apache, dns, vhosts, and webapp-config and may have completed installingssl, and using htaccess. We will install subversion and websvn with separate public and private repositories. The repositories will be available locally and remotely via webdav. Subversion and WebSVN Installation code # emerge subversion […]

Gnome에서 Open with에 연결된 쓸데없는 연결프로그램 삭제하기

간혹가다가는 쓸데없는 프로그램 리스트를 지우고 싶을때가 있을 것이다. 그때는 아래와 같이 삭제하면 된다. Wine을 설치하다가 저렇게 쓸데없이 리스트로 나오게 될 경우에는 해당 아이콘 우측클릭을 하여 Properties로 들어가서 Open With 탭으로 가면 된다. 여기에서 하나씩 선택하여 삭제하면 될것이다. 직접 쓸데없는 프로그램들을 삭제하고 싶다면 ~/.local/share/applications 디렉토리에 들어가서 보면서 직접 지우면 되겠다.

ldd 명령어 사용법

ldd – 프로그램이 필요로하는 공유 라이브러리를 보여준다. plsgg@test:/bin> ldd ping linux-gate.so.1 => (0xb7f8e000) libresolv.so.2 => /lib/libresolv.so.2 (0xb7f46000) libc.so.6 => /lib/libc.so.6 (0xb7e13000) /lib/ld-linux.so.2 (0x0087d000) 라이브러리가 없다면 “=> not found” 를 출력한다. not found라고 되어 있는게 1개라도 있다면 당연히 올바르게 실행되지 않을 것이다. not found 라고 되어 있는 라이브러리만 찾아서 LD_LIBRARY_PATH 에 복사해 두면 실행이 된다.

Gnome Synaptics 관련 설정, 리눅스(Gentoo)에서 Gnome 업데이트 후에 키보드 및 마우스가 작동하지 않을때

리눅스(Gentoo)에서 Gnome 업데이트 후에 키보드 및 마우스가 작동하지 않을때에는 아래와 같이 따라해본다. 먼저 그놈을 업그레이드 후에 Synaptics가 작동하지 않아 터치패드를 사용할수 없을때에는 xf86-input-synaptics 드라이버를 설치할때 ~x86 키워드를 설정하고 업그레이드를 해본다. 때로는 패키지 라이브러리 및 패키지 자체 버그 문제로 안되는 경우가 많다. 그리고 다시 Gnome에 진입해본다. 혹시라도 키보드와 마우스를 완전히 사용할수 없게 된다면 다음과 같이 옵션을 […]