
Originally Posted by
duanedesign
No, you would run this:
Code:
gksudo gedit /etc/fstab
If you wanted to use nano in a terminal rather than Gedit, you would use:
Code:
sudo nano /etc/fstab
Be warned: Now you are root so anything you do will stick. Therefore, best to run this to copy the original file before you start:
Code:
sudo cp /etc/fstab /etc/fstab.bak
Or whatever you'd like to call it. If things go pear-shaped:
Code:
sudo mv /etc/fstab.bak /etc/fstab
Or you could just let Grub Customizer rewrite the fstab for you:
http://ubuntuforums.org/showthread.php?p=10340183 
PS: sudo = super user do! So be careful with it.
Bookmarks