亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

操作系統(tǒng)

如何調(diào)整Linux系統(tǒng)中swap大小

時(shí)間:2024-05-29 03:29:05 操作系統(tǒng) 我要投稿
  • 相關(guān)推薦

如何調(diào)整Linux系統(tǒng)中swap大小

  使用free命令帶上m參數(shù),查看swap文件大小,官方建議在RAM是2到4.5G時(shí),swap是RAM的2倍;如果RAM大于等于4G則swap等于RAM即可

  也可用cat 查看etc目錄下的swaps文件,如下圖

  創(chuàng)建一個(gè)swap文件

  ########

  dd if=/dev/zero of=/tmp/swap bs=1MBcount=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/mntand we want to use the file/mnt/myswap.swpfor swapping.

  使用下面的命令創(chuàng)建一個(gè)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=1024MBcount=1

  ########

  制作一個(gè)swap文件,如果覺(jué)得繁瑣,可以將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 啟動(dòng)/tmp/swap

  ########

  swapon /tmp/swap

  ########

  使用一個(gè)swap分區(qū),如果已經(jīng)有一個(gè)swap分區(qū),該步驟可以省略

  以下僅供參考:不用看

  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大小,請(qǐng)忽略以下的操作(重要。。

  如果不使用剛才增加的1G的swap文件,使用下面的swapoff命令,可以關(guān)閉,這樣swap文件就縮小了1G

  使用swapoff關(guān)閉swap文件

  ########

  swapoff /tmp/swap

  ########

【如何調(diào)整Linux系統(tǒng)中swap大小】相關(guān)文章:

在Linux系統(tǒng)中如何清除squid的緩存11-21

如何查看Linux系統(tǒng)架構(gòu)類型03-14

解析Linux系統(tǒng)中的進(jìn)程調(diào)度03-05

在Linux系統(tǒng)中/dev的目錄詳解03-03

解讀Linux系統(tǒng)中的進(jìn)程調(diào)度03-04

Linux系統(tǒng)中的守護(hù)進(jìn)程講解03-05

window下如何安裝linux雙系統(tǒng)02-25

Linux系統(tǒng)是如何格式化硬盤(pán)03-22

如何在Linux系統(tǒng)上安裝Eclipse02-25