The RemovableStorage control verifies that no USB storage devices (flash drives, external hard drives, USB SD card readers, etc.) are currently connected to your computer. This control helps prevent data loss and malware infections.
Important: USB storage devices pose two major security risks. First, they can introduce malware to your computer - even trusted-looking USB drives can be infected or deliberately weaponized to install malicious software when plugged in. Second, they make it easy to copy and remove sensitive company data, either accidentally or intentionally. A single USB drive can hold thousands of documents that could then be lost, stolen, or leaked.
USB devices are a common malware distribution method. Infected drives can automatically run malicious code when connected, compromising your computer before you even open any files.
USB drives make it trivially easy to copy large amounts of sensitive data from your computer. Lost or stolen drives containing company data can lead to serious security breaches.
Unlike your encrypted hard drive, most USB drives are not encrypted. If lost or stolen, anyone can read the files on them without any password or authentication.
lsblk -o NAME,TRAN,MOUNTPOINT
Devices with TRAN = usb are USB storage. Unmount and detach one cleanly with:
udisksctl unmount -b /dev/sdX1
udisksctl power-off -b /dev/sdX
then physically unplug it. Most desktop file managers also offer an "Eject" action for the same effect.
If USB storage should be restricted for everyone rather than removed ad hoc, the standard Linux tool is USBGuard, which lets you allow/block USB devices by policy. Ask your IT/security team whether this is already deployed before installing it yourself.
After removing all USB storage devices, Citadel will automatically verify this control during its next check.
Alternative: Open Settings → System → Storage and check that no external storage devices are listed.
Alternative: Click the Apple menu → About This Mac → Storage (or System Report → Hardware → USB) to see all connected devices.
lsblk -o NAME,TRAN,MOUNTPOINT
No device should show TRAN = usb.