I'm using a dual-booted system with Win10. However, every time I log in I have to go and mount the partitions from Nautilus.
I've been looking through some ways to automate this at bootup but some methods are too complex. I've been through this excellent answer but it seems too complicated and also tends to use sudo
at times.
I'm wondering if I can just click at a drive and mount it without sudo
, can I do the same with a script?
fstab
(file system table) is just amount
command presented differently. I would suggest making an fstab entry, and if you don't want it to automount, then use,noauto,user
and just entermount /my-ntfs/
and it'll mount on request (withoutsudo
hassle too). – guiverc Aug 27 '19 at 04:57sudo
once to edit the file, after that it just works. And all you need to do is edit one file. – terdon Aug 27 '19 at 10:55