Is there any GUI tool to configure /etc/fstab?

45,050

Solution 1

How about pysdm

Solution 2

Now Gnome comes with a very powerful tool for this, Disks. (Formerly known as Palimpsest; it looks like phogg's prediction was accurate).

A screenshot of disks editing a mount

Solution 3

I use gnome-disk-utility which provides the GUI tool 'Disks'

sudo apt-get install gnome-disk-utility

I'm using this in Linux Mint 17.3 (Ubuntu/Debian based) with cinnamon.

You also mention in a comment that you are not a gnome user, but you have not specified what you are using?

see also: https://en.wikipedia.org/wiki/GNOME_Disks

screenshot

Solution 4

Clicking the gear icon for a particular partition in disks provides a menu option called 'Edit Mount Options'. Here in, set the Automatic Mount Options to 'OFF'. Thereafter proceed to define your custom mount point (for that you may wish to create your directory e.g. sudo mkdir /mnt/windows)

The comments=gvfs-show is key (don't forget to the comment= else it won't work in Ubuntu 14.04)

Changing the filesystem type from auto to the correct type (ntfs, ext4, xfs etc.) is also recommended.

Share:
45,050
kravemir
Author by

kravemir

Just a software developer,..

Updated on September 18, 2022

Comments

  • kravemir
    kravemir over 1 year

    I have little experiences in configuring the 'fstab'. I'm looking for any GUI tool that helps me with this. If possible based on gtk and should be available in Debian.

    • haimg
      haimg over 12 years
      What distro? There are usually tools bundled with your distribution...
    • kravemir
      kravemir over 12 years
      @haimg Debian. I've edited it
  • knb
    knb almost 11 years
    The command is sudo gnome-disks
  • Tobu
    Tobu almost 11 years
    @knb, you shouldn't use sudo. Only udisks2 runs as root.
  • endolith
    endolith over 7 years
    It's still just a string of obfuscated parameters, though. nosuid,nodev,nofail,compress=lzo... it needs checkboxes and dropdowns and explanations for what each of these options does.
  • Sergey Ponomarev
    Sergey Ponomarev about 4 years
    fstab is not only about disks but also about temp filesystem, bind, NFS etc.
  • alchemy
    alchemy over 2 years
    @phogg a decade later.. I've been using gnome-disks for a long time to mount by clicking the play button, which mounts in Ubuntu to the standard /media/username/.. However, I want to use this as a utility for my fstab, but although it allows me to use the label under 'identify as' I dont see a way to automount under /media instead of /mnt. Is there? It must be able to if the play button works. Perhaps there is a env var that points there? I'd like to keep the dirs standard. I can type it out, but it would be great to have that option.