阿里云Linux服务器设置虚拟内存

查看当前虚拟内存路径
阿里云Linux服务器设置虚拟内存
查看当前虚拟内存使用情况
阿里云Linux服务器设置虚拟内存
创建swap文件:

mkdir swap
cd swap/
dd if=/dev/zero of=swapfile bs=402400 count=10000

阿里云Linux服务器设置虚拟内存

[root@rhel6 swap]# ls -al
总用量 3929700
drwxr-xr-x.  2 root root      4096 2月   4 10:16 .
drwxr-xr-x. 15 root root      4096 2月   4 10:15 ..
-rw-r--r--.  1 root root 4024000000 2月   4 10:20 swapfile
 
[root@rhel6 swap]# mkswap swapfile
mkswap: swapfile: warning: don't erase bootbits sectors
       on whole disk. Use -f to force.
Setting up swapspace version 1, size = 3929680 KiB
no label, UUID=4e2ce2fe-3963-46ce-90cd-466495cd8ca8

3)激活swap文件:

[root@rhel6 swap]# swapon swapfile
[root@rhel6 swap]# free -m
           total      used      free    shared    buffers     cached
Mem:         1386      1296        90         0        82       975
-/+ buffers/cache:       239      1147
Swap:        5885         0       5885

4)若想要开机时自启动,需要修改文件/etc/fstab中的swap行:

[root@rhel6 swap]# vi /etc/fstab 
UUID=8c6bea6a-3bba-4594-b5a8-fd4afd311476 swap                 swap    defaul
ts       0 0
/usr/swap/swapfile                                        swap   defaul
ts       0 0

设置虚拟内存开机自启动

阿里云Linux服务器设置虚拟内存

上一篇:com.atomikos.icatch.HeurHazardException: Heuristic Exception


下一篇:ROS学习笔记 创建机器人URDF模型并在rviz中显示过程中遇到的一些问题