我想更改我的 fstab 文件以便能够解决“安装错误”(我尝试删除 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/sda5 during installation
UUID=8a97edce-fb5d-4dfb-8843-1d6a8f40c8ed / ext4 errors=remount-ro 0 1
# /home was on /dev/sda7 during installation
UUID=20c4aa72-06e1-47eb-acae-2ca0a53ebc93 /home ext4 defaults 0 2
# swap was on /dev/sda6 during installation
UUID=638f2aee-806c-4845-bb1b-3bff47728184 none swap sw 0 0
/dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0
#/dev/sdb1 /media/usb0 auto rw,user,noauto 0 0
但现在我需要“保存文件的权限”。怎么做?
答案1
你可以这样做仅有的作为根。如果您使用vi
编辑器,请尝试sudo vi /etc/fstab
答案2
前面的答案是您最好的选择,但您只需要 root 访问权限即可更改/etc
.
因此,您可以将该文件复制到您的主目录
cp /etc/fstab ~
,将副本编辑到您心中的内容,然后您需要超级用户权限才能将其复制回来,如果您的系统不使用,sudo
则使用以下su
命令:
$ su
Password: <your password here>
# cp fstab /etc/fstab
# exit
请记住,在su
模式下, ~ 代表 root 的主目录,而不是您的主目录,这就是为什么上面的示例假设当前目录是其中包含您编辑的fstab
文件的目录。