I have several partitions on my internal HDD. When I open a Nautilus window (any folder), the mounted partitions are not showing in the window's sidebar. This happened after I installed Ubuntu 16.10. Before that I was using Elementary OS without Nautilus.
The same problem exists on my guest account.
If I enter in Terminal sudo nautilus
then all the partitions do show up in the sidebar, although some show their UUID instead of Label.
While trying to resolve this, I've modified my /etc/fstab several times (both manually and through Disks app), but without success. Every time the result is be the same - no partitions in the Sidebar.
An additional question, not sure if it's related, if I open Disks app, edit any partition's Mount Options and set Automatic Mount Options
to On, that partition does not automatically mount. This is not the case on my other computers. Could it be in any way related to my problem above?
As I said, I've modified my /etc/fstab a few times already, but here's how it currently looks like:
# /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/sda9 during installation
UUID=28f8f040-66ac-4edd-9b3e-670425ce8b31 / ext4 errors=remount-ro 0 1
# /home was on /dev/sda10 during installation
UUID=25c545a9-51e2-46d3-9cc2-fc3d72fc8035 /home ext4 defaults 0 2
# swap was on /dev/sda5 during installation
UUID=4172ee4d-d887-464c-862d-04b2acc4b287 none swap sw 0 0
# AMPP
# /dev/disk/by-uuid/54905800-7fed-4426-9fdc-c9a5748cac58 /mnt/54905800-7fed-4426-9fdc-c9a5748cac58 auto nosuid,nodev,nofail,x-gvfs-show 0 0
# DATA
# /dev/disk/by-uuid/EAA9-7535 /mnt/EAA9-7535 auto nosuid,nodev,nofail,x-gvfs-show 0 0
# UUID=EAA9-7535 /media/tomica/DATA vfat defaults,nosuid,nodev,locale=en_US.utf8 0 0
# ntfs-data
# /dev/disk/by-uuid/40C9576D12CF1939 /mnt/40C9576D12CF1939 auto nosuid,nodev,nofail,x-gvfs-show 0 0
# win7
# /dev/disk/by-uuid/E06491F96491D320 /mnt/E06491F96491D320 auto nosuid,nodev,nofail,x-gvfs-show 0 0
UUID=E06491F96491D320 /media/tomica/win7 ntfs-3g defaults,nosuid,nodev,locale=en_US.utf8 0 0
/dev/disk/by-uuid/54905800-7fed-4426-9fdc-c9a5748cac58 /mnt/54905800-7fed-4426-9fdc-c9a5748cac58 auto nosuid,nodev,nofail,x-gvfs-show 0 0
/dev/disk/by-uuid/EAA9-7535 /mnt/EAA9-7535 auto nosuid,nodev,nofail,x-gvfs-show 0 0
/dev/disk/by-uuid/40C9576D12CF1939 /mnt/40C9576D12CF1939 auto nosuid,nodev,nofail,x-gvfs-show 0 0
Edit: So muru suggested that my question is a duplicate of this one. I've tried both answers from that question and neither worked unfortunately.
I've also tried Byte Commander's suggestion from his comment, i.e. commented out all partitions from /etc/fstab and restarted my computer (twice) and that didn't work either. Any new suggestions are much appreciated.
Edit 2: As advised by user.dz, I'm adding here outputs of the following commands:
udisksctl dump > udist.dump
: http://paste.ubuntu.com/23607475/ps aux | grep udisks
: http://paste.ubuntu.com/23607475/
/etc/fstab
. Remove their entry there or comment it out and reboot, then the partitions should show up in Nautilus. You can't specify the mountpoint this way though, it will automatically mount it to/media/USERNAME/PARTITIONLABEL
if I remember correctly. – Byte Commander Dec 01 '16 at 16:45apt policy libudisks2-0 udisks2 libfdisk1
you could also try reinstalling themsudo apt install --reinstall libudisks2-0 udisks2 libfdisk1
. Also verify if udisksd is running ?ps aux | grep udisks
You should find two processesgvfs-udisks2-volume-monitor
as same user &udisksd
as root. (post the output). If it is running, post the result ofudisksctl dump > udist.dump
to http://paste.ubuntu.com – user.dz Dec 10 '16 at 10:16ps aux | grep udisks
: http://paste.ubuntu.com/23607502/ – Томица Кораћ Dec 10 '16 at 10:49sudo apt install thunar
. I have no idea about ACL capabilities, I will take me some time to read about it. – user.dz Dec 10 '16 at 12:21gsettings get com.canonical.Unity.Devices blacklist
tell you ? – Sergiy Kolodyazhnyy Dec 10 '16 at 12:45@as []
– Томица Кораћ Dec 10 '16 at 13:17dconf reset -f /org/gnome/nautilus/
, logout then login again. If the issue remained, try reinstall it,sudo apt install --reinstall nautilus nautilus-data
– user.dz Dec 10 '16 at 19:04