OS/Linux 22

젠투리눅스 설치하기 - VMware 에서 마우스에게 자유를~

VMware에 젠투시스템을 설치했을 때 마우스가 vmware를 빠져나올때 ctrl+alt를 클릭할 필요가 없게된다. 또한 마우스 휠도 사용할 수 있게 한다. #emerge x11-drivers/xf86-input-vmmouse #vi /etc/X11/xorg.conf 변경전 Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5 6 7" EndSection 변경후 Section "InputDevice" Identifier "Mouse0" Driver "vmmouse" Option "Protocol" "aut..

OS/Linux 2009.02.13

Your TIMEZONE in /etc/conf.d/clock is still set to Factory!

메시지 Your TIMEZONE in /etc/conf.d/clock is still set to Factory! 원인 /etc/conf.d/clock가 정상적이지 않아서. 해결책 # vi /etc/conf.d/clock 아래와 같이 설정한다. (단 아래의 설정파일은 한국기준이다.) # /etc/conf.d/clock # Set CLOCK to "UTC" if your system clock is set to UTC (also known as # Greenwich Mean Time). If your clock is set to the local time, then # set CLOCK to "local". Note that if you dual boot with Windows, then # you sho..

OS/Linux 2009.02.13

파이어폭스(Firefox) - 바이너리로 설치

1.다운받은 파일을 저장할 디렉토리로 이동 {YourServerName} ~ # cd /usr/local/src 2.소스가져오기 {YourServerName} ~ # wget http://ftp.acc.umu.se/pub/mozilla.org/firefox/releases/2.0.0.12/linux-i686/ko/firefox-2.0.0.12.tar.gz 3.압축해제 {YourServerName} ~ # tar xvfz firefox-2.0.0.12.tar.gz 4.파일이동 {YourServerName} ~ # mkdir /usr/local/network; mv firefox /usr/local/network/firefox 5.실행 {YourServerName} ~ # ./firefox-bin 5.1.에..

OS/Linux 2009.02.13

리눅스 디렉토리 및 파일 - 02./proc

/proc 는 커널, 파일시스템, 메모리 등의 정보가 저장되는 디렉토리이다. 아래는 /proc의 하위에 있는 디렉토리의 사용용도이다. 디렉토리명 사용용도 /proc/1 1번 프로세스에 대한 각종 정보 /proc/cpuinfo 프로세서에 대한 정보 ( 종류 / 제조사 / 모델 / 성능 ) /proc/devices 현재 커널에서 실행중인 디바이스 드라이버 정보 /proc/dma 현재 사용중인 DMA 채널 정보 /proc/filesystems 커널에서 사용중인 파일 시스템 정보 /proc/interrupts 시스템에서 사용중인 인터럽트 정보 /proc/ioports 현재 사용중인 I/O(Input / Output, 입출력) 포트정보 /proc/kcore 시스템의 물리적 메모리에 대한 이미지 정보 /proc/k..

OS/Linux 2009.02.13

파이어폭스(Firefox) - 소스를 컴파일하여 설치

파이어폭스는 소스설치로 얻는 이득이 별로 없습니다. 단순히 사용하는 것이 목적이라면 바이너리로 설치할 것을 권장합니다. 1.소스를 저장할 디렉토리로 이동 {YourServerName} ~ # cd /usr/local/src 2.소스가져오기 {YourServerName} ~ # wget http://ftp.acc.umu.se/pub/mozilla.org/firefox/releases/2.0.0.12/source/firefox-2.0.0.12-source.tar.bz2 3.압축해제 {YourServerName} ~ # tar xvfz firefox-2.0.0.12.tar.gz 4.컴파일 환경설정 {YourServerName} ~ # cd firefox-2.0.0.12 {YourServerName} ~ # ...

OS/Linux 2009.02.13

리눅스 디렉토리 및 파일 - 01.기본

디렉토리 설 명 / 루트 디렉토리 /bin 바이너리(binary)의 줄임말 ls, mv, rm, cp 등과 같은 시스템 운영에 기본적인 프로그램의 본체가 위치 /boot 부팅이미지가 저장되는 디렉토리 /dev 하드웨어 장치가 존재하는 디렉토리 /etc 시스템의 각종 중요한 설정 파일과 시스템 초기화 파일이 저장된 디렉토리 /home 사용자별 공간으로 사용되는 디렉토리 윈도우로 치면 "C:\Documents and Settings"과 같다. /lib 각종 라이브러리가 저장된 디렉토리 윈도우로 치면 "C:\WINDOWS\SYSTEM32"과 같다. /mnt 마운트 했을 경우 해당 장치가 존재하는 디렉토리, 페도라의 경우 /media /proc 커널, 파일시스템, 메모리 등의 정보가 저장되는 디렉토리 /sbin..

OS/Linux 2009.02.13