본문 바로가기

OS46

파일 다루기 1.생성 1)디렉토리 생성 : mkdir mkdir 디렉토리명 mkdir -p 디렉토리명/파일명 2)디렉토리 삭제 : rmdir 2)파일 생성 : touch touch 파일명 cat > 파일명 vi 파일명 2.복사 cp [option] 복사할파일명 디렉토리명 cp a1 /mnt [옵션] -i (interactive) : 대화형 모드 (파일중복시 덮어쓸지 경고) -f (force) : 강제형 모드 (경고없이 강제로 덮어씀) -r (recursive) : 모두 다 (디렉토리 하위 파일까지 모두 복사하기) 3.삭제 rm [option] [옵션] -i (interactive) : 대화형 모드 (파일중복시 덮어쓸지 경고) -f (force) : 강제형 모드 (경고없이 강제로 덮어씀) -r (recursive) :.. 2008. 8. 22.
How to set a static IP in Ubuntu from the shell How to set a static IP in Ubuntu from the shell (See related posts) Edit /etc/network/interfaces and adjust it to your needs (in this example setup I will use the IP address 192.168.0.100): # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # Thi.. 2008. 8. 22.
Installing Oracle Database XE on Debian, Ubuntu, and Kubuntu Installing Oracle Database XE on Debian, Ubuntu, and Kubuntu by Todd Trichler What happens when you try to install Oracle Database XE Beta on a new Linux distribution? You learn a whole lot! Published February 2006 - LinuxWorld Mexico Installfest In my day job I get to work with .rpm-based Linux distros quite a bit in the form of RHEL, SLES, and Asianux. Recently I noticed that the Oracle Databa.. 2008. 8. 22.
ubuntu 에 beryl 설치 # Nvidia 드라이버 설치하기 1. 기존에 설치된 nvida-glx를 삭제하고 xserver-xgl 패키지를 설치한다. #apt-get remove nvidia-glx #apt-get install xserver-xgl 2. nvidia 사이트에서 드라이버를 다운로드 받는다. http://www.nvidia.com/object/linux_display_ia32_1.0-9755.html 3. Xwindow가 아닌 텍스트모드로 부팅한후 드라이버를 설치한다. #chmod 755 NVIDIA-Linux-x86-1.0-9755-pkg1.run #./NVIDIA-Linux-x86-1.0-9755-pkg1.run => 혹시라도 설치시 libc 관련 오류가 발생하면 다음 패키지를 설치한다. 설치후 계속 OK 버튼을.. 2008. 8. 22.