linux swap 메모리 추가

//linux swap 메모리 추가

linux swap 메모리 추가

현재 swap메모리 용량 확인
free

swap 파일생성

 dd if=/dev/zero of=/swapfile bs=1M count=8192        ## 8192MB swap용 파일 생성

 chmod 600 /swapfile                                                      ## 권한설정

 mkswap /swapfile                                                           ## swap 파일로 포맷

 swapon /swapfile                                                            ## swapfile 활성화     

 free                                                                                  ## 메모리확인

 

swap 파일 삭제

 swapoff /swapfile                                                       ## swap 파일 비활성화

 rm /swapfile                                                                ## swapfile 삭제

 

By |2019-12-23T17:32:22+00:0012월 23rd, 2019|Categories: linux|Tags: , , , , |0 Comments

About the Author: