所有操作均需 root 权限
1.创建 swap 交换分区
首先用 fdisk -l 查看硬盘分区情况
1 |
fdisk -l |
1 2 3 4 5 6 7 8 9 |
Disk /dev/sda: 21.5 GB, 21474836480 bytes 255 heads, 63 sectors/track, 2610 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00097743 Device Boot Start End Blocks Id System /dev/sda1 * 1 2481 19922944 83 Linux |
只有一个分区.
新建一个分区, 用于 swap 交换.
1 |
fdisk /dev/sda |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
[root@itnmg ~]# fdisk /dev/sda WARNING: DOS-compatible mode is deprecated. It's strongly recommended to switch off the mode (command 'c') and change display units to sectors (command 'u'). Command (m for help): m Command action a toggle a bootable flag b edit bsd disklabel c toggle the dos compatibility flag d delete a partition 删除一个分区 l list known partition types m print this menu 显示帮助菜单 n add a new partition 新建一个分区 o create a new empty DOS partition table p print the partition table 显示分区表 q quit without saving changes 不保存退出 s create a new empty Sun disklabel t change a partition's system id 改变分区类型 u change display/entry units v verify the partition table w write table to disk and exit 保存退出 x extra functionality (experts only) Command (m for help): |
我们常用的的就是中文标出来那些了.
输入 n ,新建一个分区
1 2 3 4 |
Command (m for help): n Command action e extended p primary partition (1-4) |
选择建立扩展分区或主分区, 这里我们选主分区 , 输入 p
1 2 |
p Partition number (1-4): |
输入分区号, 1-4, 由于有了 sda1, 所以输入 2
1 2 |
Partition number (1-4): 2 First cylinder (2498-2610, default 2498): |
输入起始位置, 这里不要改动, 直接回车.
1 2 |
Using default value 2498 Last cylinder, +cylinders or +size{K,M,G} (2498-2610, default 2610): |
输入 +200M, 设定为200M大小.
此时无反回信息, 再输入 p ,查看分区情况.
1 2 3 |
Device Boot Start End Blocks Id System /dev/sda1 * 1 2497 20056128 83 Linux /dev/sda2 2498 2523 208845 83 Linux |
已经新建了一个分区, 输入 w 保存退出. 退出后会重新加载分区.
在新建的分区上建立 swap
1 2 |
mkswap /dev/sda2 swapon -a |
设置系统自启用交换文件, 编辑 /etc/fstab 文件, 增加下面内容
1 |
/dev/sda2 swap swap defaults 0 0 |
free -m 查看效果
2.删除 swap 分区
停用 swap 分区
1 |
swapoff -a |
删除 swap 分区
1 |
fdisk /dev/sda |
这里和增加时的操作类似, 只是改为删除分区, 输入 d
1 |
Partition number (1-4): |
输入要删除的分区号, 2
输入 p 查看分区情况, 已被删除.
输入 w 保存退出.
修改 /etc/fstab 文件, 删除 /dev/sda2 swap swap defaults 0 0 保存