I recently moved a drive from the sda plug to the sdg plug on the mobo. /dev/sdg connects through a different sata controller on this mobo, and now the drive shows up under 'Removable Devices".
This is apparently because the bios marks that controller's peripherals as "removable", as seen by either:
or:
In searching for a solution, I came across this post which suggests using something like this udev rule:
...but that seems like it would make the GUI ignore the disk entirely, no? I just want it to show up with the "normal" drives in the list in dolphin. Any way to achieve that?
Thanks!
This is apparently because the bios marks that controller's peripherals as "removable", as seen by either:
Code:
$ cat /sys/block/sdg/removable 1
Code:
$ lsblk -o path,rm | grep sdg /dev/sdg 1 /dev/sdg1 1
Code:
#/etc/udev/rules.d/62-internal-disk.rules KERNEL=="sdg*",ENV{UDISKS_IGNORE}="1"
Thanks!
Comment