您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在Linux中添加swap分區,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
建立一個普通的Linux分區(主分區、邏輯分區均可)
fdisk /dev/sdb Command (m for help): p Disk /dev/sdb: 8589 MB, 8589934592 bytes 255 heads, 63 sectors/track, 1044 cylinders, total 16777216 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x740e36e3 Device Boot Start End Blocks Id System /dev/sdb1 63 4194367 2097152+ 83 Linux /dev/sdb2 4194368 16777215 6291424 5 Extended /dev/sdb5 4194431 8388735 2097152+ 83 Linux /dev/sdb6 8388799 16777215 4194208+ 83 Linux
以sdb6為例,可以看到分區的十六進制編碼是83,即普通的Linux分區。
修改分區類型的十六進制編碼
//t命令:改寫分區十六進制編碼 Command (m for help): t Partition number (1-6): 6 //L命令可以查看不同分區的十六進制編碼,交換分區為82 Hex code (type L to list codes): 82 Changed system type of partition 6 to 82 (Linux swap / Solaris) Command (m for help): p Disk /dev/sdb: 8589 MB, 8589934592 bytes 255 heads, 63 sectors/track, 1044 cylinders, total 16777216 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x740e36e3 Device Boot Start End Blocks Id System /dev/sdb1 63 4194367 2097152+ 83 Linux /dev/sdb2 4194368 16777215 6291424 5 Extended /dev/sdb5 4194431 8388735 2097152+ 83 Linux /dev/sdb6 8388799 16777215 4194208+ 82 Linux swap / Solaris //分區表寫入磁盤并退出 Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks.
格式化交換分區
mkswap /dev/sdb6 Setting up swapspace version 1, size = 4194204 KiB no label, UUID=40eff2c0-3f6b-440e-bc2a-f71d3d5581a7
啟用交換分區
swapon /dev/sdb6
查看交換分區加載狀態
free total used free shared buffers cached Mem: 1030108 160768 869340 264 12040 56188 -/+ buffers/cache: 92540 937568 Swap: 6291352 0 6291352
停用交換分區
swapoff /dev/sdb6
p.s.
不能直接使用mount命令掛載swap分區,因為swap分區是沒有掛載點的。
直接修改/etc/fstab配置文件,使系統啟動時自動掛載:
/dev/sdb6 swap swap defaults 0 0 //查看交換分區 swapon -s Filename Type Size Used Priority /dev/sda2 partition 2097148 0 -1 /dev/sdb6 partition 4194204 0 -2
Linux是一種免費使用和自由傳播的類UNIX操作系統,是一個基于POSIX的多用戶、多任務、支持多線程和多CPU的操作系統,使用Linux能運行主要的Unix工具軟件、應用程序和網絡協議。
關于怎么在Linux中添加swap分區就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。