如何让交换文件在启动时加载,而不是每次启动后都用 GParted 手动加载?我有 Linux Mint 17.2 Xcfe 和 Mate,两者都使用相同的交换文件。
以下是 fdisk -l 读出的结果:
Disk /dev/sda: 160.0 GB, 160000000000 bytes
255 heads, 63 sectors/track, 19452 cylinders, total 312500000 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: 0x00009462
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 156351532 78174742+ 83 Linux
/dev/sda2 156352510 312498175 78072833 5 Extended
/dev/sda5 310667264 312498175 915456 82 Linux swap / Solaris
/dev/sda6 156352512 310667263 77157376 83 Linux
分区表条目不按磁盘顺序排列
非常感谢。
答案1
就像root
在命令行中一样:
echo "/dev/sda5 swap swap defaults 0 0" >> /etc/fstab
要使上述更改生效,请运行此命令(仍为root
):
swapon -a
或者:/etc/fstab
您也可以在您喜欢的文本编辑器中打开文件(也可以作为root
),并在该文件底部的新行中添加以下行:
/dev/sda5 swap swap defaults 0 0