I'm admin for one of my college PC with 3 other normal users . If possible I want to restrict other 3 normal users from using USB. I'm using Ubuntu 12.04 .
Asked
Active
Viewed 3.9k times
2 Answers
10
You can disable USB storage device in Ubuntu, where only root users can only enable it. Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command below.
gksudo gedit /etc/modprobe.d/blacklist.conf
When it opens add blacklist usb_storage
as the last line, then with the command below
open the rc.local
file
gksudo gedit /etc/rc.local
When it opens, add modprobe -r usb_storage
before the line exit 0
Now go ahead and reboot your system.
To mount, open a Terminal and use the following command.
sudo modprobe usb_storage
To Unmount the USB device, just right click on the device in file manager, and choose safley remove, or Unmount device, and run
sudo rmmod usb_storage
In Terminal.
1
To deny users permission to use USB storage, it should suffice to remove them from the group plugdev.

Paul Hänsch
- 3,197
-
-
2oh, i think modprobing around would be perfectly valid for disabeleing USB alltogether, which was the original question, admitted. But isn't the module usb_storage also only for usb volumes? Is i.e. a webcam disabled by removing usb_storage? (It stays operational with my method) – Paul Hänsch Oct 28 '12 at 13:40
-
Oh.. and well the link you posted, it is one method, yes, but a dull one. And it completely ignores modern distributions with polkit setup etc. – Paul Hänsch Oct 28 '12 at 13:44
blacklist uas
on Ubuntu 18.04.1 to make this work. – Surya Teja Karra Nov 02 '18 at 10:44