linux增加swap分割槽方法
阿新 • • 發佈:2018-12-09
建立swapfile檔案
執行命令:dd if=/dev/zero of=swapfile bs=1024 count=500000 注:可根據實際需要更改count值的大小,這裡設定500000,大概就是50G
[root@dics-no iflytek]# dd if=/dev/zero of=swapfile bs=1024 count=500000
500000+0 records in
500000+0 records out
512000000 bytes (512 MB) copied, 0.847481 s, 604 MB/s
[root@dics-no iflytek]# ll
total 500000
-rw-r--r-- 1 root root 512000000 Sep 11 16:24 swapfile
將swapfile設定為swap空間
執行命令:mkswap swapfile
[root@dics-no iflytek]# mkswap swapfile
Setting up swapspace version 1, size = 499996 KiB
no label, UUID=bf7c48ab-d829-4291-a477-f75cdd33f72a
[root@dics-no iflytek]#
啟用交換空間
執行命令:swapon swapfile
[root@dics-no iflytek]# swapon swapfile
swapon: swapfile: insecure permissions 0644, 0600 suggested.
[root@dics-no iflytek]#
檢視是否增加swap分割槽
執行命令:free -h
[root@dics-no iflytek]# free -h
total used free shared buffers cached
Mem: 31G 918M 30G 8.3M 704K 589M
-/+ buffers/cache : 328M 30G
Swap: 488M 0B 488M
[root@dics-no iflytek]#