标签:bash 大小 shared inux logs 增加 div uuid 使用
# #增加交换分区需要先模拟出虚拟磁盘 #从Linux内核的造零器zero,写到newdisk文件中,指定文件块大小1M,一百个块 [root@chy002 ~]# dd if=/dev/zero of=/tmp/newdisk bs=1M count=100 记录了100+0 的读入 记录了100+0 的写出 104857600字节(105 MB)已复制,1.41021 秒,74.4 MB/秒 [root@chy002 ~]# du -sh /tmp/newdisk 100M /tmp/newdisk [root@chy002 ~]# mkswap !$ #格式化 mkswap /tmp/newdisk 正在设置交换空间版本 1,大小 = 102396 KiB 无标签,UUID=42417e22-8a9d-4d7c-af89-332eb74dbf81 [root@chy002 ~]# free -m total used free shared buffers cached Mem: 987 321 665 6 0 173 -/+ buffers/cache: 147 839 Swap: 2047 0 2047 [root@chy002 ~]# swapon /tmp/newdisk #加载到现在的swap swapon: /tmp/newdisk:不安全的权限 0644,建议使用 0600。 [root@chy002 ~]# free -m total used free shared buffers cached Mem: 987 321 665 6 0 173 -/+ buffers/cache: 147 839 Swap: 2147 0 2147 [root@chy002 ~]# chmod 0600 /tmp/newdisk #删除交换分区 [root@chy002 ~]# swapoff /tmp/newdisk [root@chy002 ~]# !f free -m total used free shared buffers cached Mem: 987 321 665 6 0 173 -/+ buffers/cache: 147 839 Swap: 2047 0 2047 [root@chy002 ~]# rm -f /tmp/newdisk
标签:bash 大小 shared inux logs 增加 div uuid 使用
原文地址:http://www.cnblogs.com/chyuanliu/p/7780366.html