Red Hat linux 如何增加swap空間

來源:互聯網
上載者:User

標籤:c   http   a   com   檔案   使用   

按步驟介紹 Red Hat linux 如何增加swap空間

方法/步驟
  1. 第一步:確保系統中有足夠的空間來用做swap交換空間,我使用的是KVM,準備在一個獨立的檔案系統中添加一個swap分頁檔,在/opt/image中添加2G的swap分頁檔

  2. 第二步:添加分頁檔並設定其大小為2G,使用如下命令

    [[email protected] image]# dd if=/dev/zero of=/opt/image/swap bs=1024 count=2048000

    過段時間就返回如下結果:

    2048000+0 records in2048000+0 records out2097152000 bytes (2.1 GB) copied, 272.867 seconds, 7.7 MB/s

  3. 第三步:建立(設定)交換空間,使用命令mkswap

    [[email protected] image]# mkswap /opt/image/swap

    Setting up swapspace version 1, size = 2097147 kB

  4. 第四步:檢查現有的交換空間大小,使用命令free

    [[email protected] image]# free -m            

                      total       used       free     shared    buffers     cached   
    Mem:       1011        989           21              0               1           875   
    -/+ buffers/cache:   112         898   
    Swap:       1027            0       1027

    或者檢查meminfo檔案grep SwapTotal  /proc/meminfo

  5. 第五步:啟動新增加的2G的交換空間,使用命令swapon

    [[email protected] image]# swapon /opt/image/swap

  6. 第六步:確認新增加的2G交換空間已經生效,使用命令free

    [[[email protected] image]# free -m           

                      total       used       free     shared    buffers     cached   
    Mem:       1011        995         15              0             4           877   
    -/+ buffers/cache:  113        897   
    Swap:      3027           0       3027

    或者檢查meminfo檔案grep SwapTotal  /proc/meminfo

  7. 第七步:修改/etc/fstab檔案,使得新加的2G交換空間在系統重新啟動後自動生效

    在檔案最後加入:/opt/image/swap     swap      swap defaults 0 0

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.