Root

如何獲得在 debian 中編輯 fstab 文件的權限

  • June 3, 2014

我想更改我的 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

但現在我需要“保存文件的權限”。怎麼做?

只能以 root 身份執行此操作。如果您vi用作編輯器,請嘗試sudo vi /etc/fstab

上一個答案是您最好的選擇,但您只需要 root 訪問權限即可更改/etc.

因此,您可以將文件複製到您的主目錄 cp /etc/fstab ~,將副本編輯到您心中的內容,然後您需要超級使用者權限才能將其複制回來,如果您的系統不使用,請sudo使用以下su命令:

$ su
Password: <your password here>
# cp fstab /etc/fstab
# exit

請記住,在su模式下,~ 代表根目錄而不是您的主目錄,這就是為什麼上面的範例假定目前目錄是您編輯的fstab文件所在的目錄。

引用自:https://unix.stackexchange.com/questions/134238