3

On my Ubuntu 16.04 all my local disks were on left pane of file explorer and mount with one click. On 18.04 I have to select other locations from left pane first then select the disk(partition). My question is can I somehow make it like in 16.04. Also my 3 local disks (D,E,F) all have same name when viewed in other locations. This creates further confusion.

I tried bookmarking but it doesn't auto mount clicking it. I have to mount it first time for bookmarks to work.

Edit: I am running default desktop environment gnome

I had tried something like that before! Added these line to fstab file.

/dev/sda6 /media/user/Local Disk2 ntfs auto 0 0 /dev/sda7 /media/user/Local Disk1 ntfs auto 0 0 /dev/sda8 /media/user/Local Disk ntfs auto 0 0

It gave me error on $ sudo mount -a

mount: /etc/fstab: parse error at line 14 -- ignored mount: /etc/fstab: parse error at line 15 -- ignored mount: /etc/fstab: parse error at line 16 -- ignored

I think its a space issue (between local and disk). I was able to mount C drive (Contains '_').

Added image to be clear. See 150GB volume etc in the left. Would prefer this way but auto mount on start will also work. See 150 GB Volume

dcusmeb
  • 63

1 Answers1

2
/dev/sda6 /media/user/Local Disk2 ntfs auto 0 0

That is seven fields. Try something like:

/dev/sda6 /media/user/Local_Disk2 ntfs auto 0 0

Take a look at man fstab.

Raffa
  • 34,963