Linux學習筆記(五) 新增swap分割槽

2021-08-22 17:47:35 字數 2919 閱讀 1537

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
不能直接使用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學習筆記五

網路管理 ifconfig 檢視網絡卡資訊 ifconfig up 啟用網絡卡 ifconfig down 停止網絡卡 ifconfig eth0 網路ip 位址 netmask 子網掩碼 設定網絡卡的ip 位址和子網掩碼 ifconfig eth0 0 ip位址 增加一塊虛擬網絡卡為eth0 0 ...

Linux學習筆記(五)

aim 1 linux的檔案和目錄管理的常用命令 一 linux的檔案和目錄管理的常用命令 檔案與目錄管理 已經學習的命令ls cd pwd 更多命令 mkdir 建目錄命令 典型用法 1 mkdir tmp mylinux 在 tmp下建立目錄mylinux 2 mkdir p book yang...

Linux學習筆記五

rpm安裝 install root www rpm ivh package name i install的意思 v 檢視詳細安裝資訊畫面 h 以安裝資訊欄顯示安裝進度 rpm公升級 root www rpm uvh package name 未安裝直接安裝 root www rpm fvh pac...