How to fix disks not mounting in ubuntu based systems
If you
I have encountered this issue a few times. You can manually try to mount the disks using fdisk or lsblk to find the dev paths, and then mount with something like
You need to edit this file: run the following
sudo nano /usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy
__________________________________________________________________________________
<!-- Mounting filesystems -->
<action id="org.freedesktop.udisks2.filesystem-mount">
<description>Mount a filesystem</description>
___________________________________________________________________________________
<!-- mount a device considered a "system device" -->
<action id="org.freedesktop.udisks2.filesystem-mount-system">
<description>Mount a filesystem on a system device</description>
_______________________________________________________________________
You'll see at the bottom of each of these:
______________________________________________________________
<defaults>
<allow_any>yes</allow_any>
<allow_inactive>yes</allow_inactive>
<allow_active>yes</allow_active>
</defaults>
_________________________________________________________
you need to make sure to change
Comments
Post a Comment