How can I get a list of removable drives (plugged into USB) in Linux? I'm fine with using KDE, GNOME or other DE libraries if it would make things easier.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I think a nice idea is to use udev interface from python. Small example (of course in your case you have adjust some filtering):
It is a good way in most cases as new systems use udev. |
||||
|
|
|
After all this time the question got unlocked again… In the end I used UDisks via the D‐Bus interface like shown here. |
|||
|
|
|
Any reason not to just parse out the results from I can't help you with Python, in Perl I might do:
which, on my computer, results in
Note that |
|||||
|
/dev/disk/by-id/usb-*is all USB mass storage devices currently connected. – Ignacio Vazquez-Abrams May 6 '11 at 12:48