如何自动挂载交换分区?


14

我在安装过程中没有使用交换分区,所以现在已经安装了我的ubuntu,我使用GParted Partition Editor创建了一个未分配的分区,该分区的格式设置为linux-swap。它没有自动安装,因此我右键单击它并选择了swapon。现在,每当我启动笔记本电脑时,分区不会自动挂载。Swapon仍然可以工作,但是如果未在启动时挂载该分区,则该分区会变得无用。我看到了一些答案,说要编辑一些名为Fstab的文件,但我不确定要进行哪些更改...请逐步说明,因为我是TOTAL新手,不知道该如何帮助我U的U,我有很多问题...请帮助我!:'(:(这是我的fstab文件包含的内容-

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda2 during installation
UUID=33a0fc77-06b0-406c-95fd-15bf7033b619 /               ext4    errors=remount-ro 0       1
# a swapfile is not a swap partition, no line here
#   use  dphys-swapfile swap[on|off]  for that

1
您可以发布的输出吗sudo blkid?它会显示交换分区的UUID,然后我们可以将其添加到/ etc / fstab。
mikewhatever,2015年

Answers:


18

这是您先前的内容/etc/fstab

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda2 during installation
UUID=33a0fc77-06b0-406c-95fd-15bf7033b619 /               ext4    errors=remount-ro 0       1
# a swapfile is not a swap partition, no line here
#   use  dphys-swapfile swap[on|off]  for that

现在,要向其中添加交换分区,请执行以下操作:

  1. 打开Gparted。

    Gparted屏幕截图

  2. 右键单击交换分区,然后单击信息

    在Gparted中选择分区

  3. 记下您的UUID。

    分区信息中的UUID

  4. 现在,/etc/fstab通过执行以下操作修改以前的:

    • 通过键入以下命令打开文件:

      sudo -H gedit /etc/fstab
      
    • 然后,添加此行,

      UUID=THE UUID YOU OBTAINED FROM ABOVE none       swap   sw         0     0
      

      下线后

      # a swapfile is not a swap partition, no line here
      
    • 保存文件并重新启动计算机。现在一切都应该正常工作。


有效!!非常感谢!你是个上帝...但是冬眠,仍然无法正常工作。我有2GB RAM和3GB交换空间。
Hrijul Bhatnagar

@HrijulBhatnagar-问题仅在于此swap,我就这样回答了。如果您想知道如何休眠,那么,请提出一个新问题并在此评论部分中共享链接,我将为您解答。另外,如果答案有帮助,请接受并支持。
拉斐尔

我确实投票赞成,但由于我是新用户,它说我需要15的声誉才能公开展示我的投票...
Hrijul Bhatnagar

@HrijulBhatnagar-如果您希望答案被接受,请单击“ upvote downvote”按钮下方的对勾。
拉斐尔2015年

关于休眠,请提出一个新问题,并将其链接到此处的评论中,我将尽力为您解答。
拉斐尔2015年

3

输入终端:

gnome-disks 

然后选择交换分区。在设置菜单中,选择“编辑安装”选项。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.