리눅스 설치 시 파티션 나누는 방법 리눅스 설치를 하면서 파티션을 나누는 것에 대해서 고민을 많이 할 수도? 있습니다. 간단하게.. 많이 쓰는 방법은 /boot 고정으로.. 처음 파티션으로.. 100mb swap 최대 사용가능한 용량으로(자동으로 알아서 물리적 메모리의 두배로 잡습니다.) / 최대 사용 가능한 용량으로 이렇게 잡으면 됩니다. 뭐 별도로 사용자들에게 계정을 나누어 주겠다면 /home 파티션을 하나 만들수도 있겠지요. 대충 이렇게 사용하시면 될 것 같습니다.
리눅스 CentOS 다운로드 하기... http://centos.org/ 여기서 다운로드 가능합니다. ---> CentOS-5 ISOs | CentOS-4 ISOs | CentOS-3 ISOs
리눅스 etc/initab 설명 리눅스가 실행되면 /etc/inittab 파일을 읽어들이게 됩니다. 여기에 설정된 부분들에 대해서 시스템이 영향을 받게되겠죠... 아래는 센트오에스에서 쳐본 것입니다. 5.3 버전입니다. [root@localhost ~]# cat /etc/inittab # # inittab This file describes how the INIT process should set up # the system in a certain run-level. # # Author: Miquel van Smoorenburg, # Modified for RHS Linux by Marc Ewing and Donnie Barnes # # Default runlevel. The runlevels used ..
리눅스에서 디렉토리 생성과 삭제 명령어 mkdir, rmdir [root@localhost ~]# mkdir test 디렉토리 생성 [root@localhost ~]# mkdir -p test2/test3 서브 디렉토리까지 함께 생성 옵션 [root@localhost ~]# ls Desktop anaconda-ks.cfg install.log install.log.syslog scsrun.log test test2 [root@localhost ~]# rmdir test 디렉토리 삭제 - 빈 디렉토리만 삭제가능 [root@localhost ~]# rmdir -p test2/test3 서브 디렉토리 까지 삭제 - 비어있어야 함 [root@localhost ~]# ls Desktop anaconda-ks.cf..
리눅스 명령어 touch 크기가 0인 파일 생성이나 파일 날짜 갱신 시 사용 파일 사이즈가 0인 파일을 간편하게 생성 할 때 사용하는 명령어입니다. 저 같은 경우는 가끔 사용하는데 다음 날 갱신 할 파일이 있을 때 오늘 해당 파일 생성 해 놓고 다음 날 갱신 할 때 사용하곤 합니다. [root@localhost test]# touch vash [root@localhost test]# ll total 0 -rw-r--r-- 1 root root 0 Oct 5 09:00 vash [root@localhost test]# touch vash [root@localhost test]# ll total 0 -rw-r--r-- 1 root root 0 Oct 5 09:01 vash [root@localhost tes..
리눅스에서 파일의 퍼미션 숙지하기 [root@localhost ~]# ll total 64 drwxr-xr-x 2 root root 4096 Oct 5 07:41 Desktop -rw------- 1 root root 1210 Oct 5 07:30 anaconda-ks.cfg -rw-r--r-- 1 root root 27415 Oct 5 07:30 install.log -rw-r--r-- 1 root root 3738 Oct 5 07:30 install.log.syslog -rw-r--r-- 1 root root 199 Oct 5 07:38 scsrun.log drwxr-xr-x 2 root root 4096 Oct 5 09:00 test [root@localhost ~]# ll 명령어를 쳤을 때.. 파..