学习啦>学习电脑>操作系统>Linux教程>

LINUX操作系统如何调整SWAP大小

时间: 晓斌668 分享

  很多新用户在使用LINUX操作系统的时候都不会调整SWAP大小.学习啦小编就针对这个问题给大家推荐一个解决方法.

  LINUX操作系统如何调整SWAP大小

学习啦在线学习网   使用free命令带上m参数,查看swap文件大小,官方建议在RAM是2到4.5G时,swap是RAM的2倍;如果RAM大于等于4G则swap等于RAM即可

学习啦在线学习网   也可用cat 查看etc目录下的swaps文件,如下图

学习啦在线学习网   创建一个swap文件

学习啦在线学习网   ########

  dd if=/dev/zero of=/tmp/swap bs=1MB count=1024

学习啦在线学习网   ########

  以下仅供参考:不用看

学习啦在线学习网   Creating a swap file

  First of, make sure the file system the disk you wish to swap on is properly mounted. For the purposes of this tutorial we will assume the disk is mounted as /mnt and we want to use the file /mnt/myswap.swp for swapping.

学习啦在线学习网   使用下面的命令创建一个1G的swap文件

  Use the following command to create a 1024MB file that we will use for swapping

学习啦在线学习网   ########

学习啦在线学习网   dd if=/dev/zero of=/mnt/myswap.swp bs=1024MB count=1

  ########

  制作一个swap文件,如果觉得繁琐,可以将mkswap文件挂载到tmp目录下,例如:

  ########

  mkswap /tmp/swap

  ########

学习啦在线学习网   以下仅供参考:不用看

  Preparing the swap file

  Before we enable the swap file we must first set it up. The following command accomplishes just that:

  ########

学习啦在线学习网   mkswap /mnt/myswap.swp

  ########

  使用swapon 启动/tmp/swap

  ########

  swapon /tmp/swap

  ########

学习啦在线学习网   使用一个swap分区,如果已经有一个swap分区,该步骤可以省略

  以下仅供参考:不用看

  Using a swap partition

学习啦在线学习网   Setting up a swap partition is a bit more difficult, as the partition must be first created then formatted using the linux-swap file system. Once that is done, assuming the swap partition is at/dev/scsi/host0/bus0/target0/lun0/part5 (common for v24 USB drives with mutiple partitions), the only command that needs be issued is:

  再次使用free查看增加后的swap大小

  如果只想增加swap大小,请忽略以下的操作(重要!!)

学习啦在线学习网   如果不使用刚才增加的1G的swap文件,使用下面的swapoff命令,可以关闭,这样swap文件就缩小了1G

  使用swapoff关闭swap文件

  ########

  swapoff /tmp/swap

  ########

391397