ifconfig eth0 192.168.0.1 netmask 255.255.255.0


route add default gw 192.168.0.255 

'IT 공부 > linux' 카테고리의 다른 글

linux swap  (0) 2018.02.06
linux 파일시스템 mount 하기  (0) 2018.02.06
linux 시작 프로그램 등록하기  (0) 2018.02.06

grep -r [찾을 문자열] [찾을 경로]

linux swap 사용하기??


-dd 명령을 이용하여 swapfile 생성

#dd if=dev/sda1 of=/media/ubuntu/USB/swapfile bs=1024 count=524288


#mkswap /media/ubuntu/USB/swapfile

#swapon /media/ubuntu/USB/swapfile


스왑 메모리 확인

#free -m


부팅시 자동 인식 설정

#vi /etc/fstab


*************************************

/boot/swapfile swap swap defaults

*************************************


swap 제거


#swapoff /var/swap/swapfile


#rm -f var/swap/swapfile

'IT 공부 > linux' 카테고리의 다른 글

linux ip 설정  (0) 2018.02.06
linux 파일시스템 mount 하기  (0) 2018.02.06
linux 시작 프로그램 등록하기  (0) 2018.02.06

+ Recent posts