-
Notifications
You must be signed in to change notification settings - Fork 38
Direct disk access to the drive was denied
Many programs require direct disc access, such as video and audio rippers, as well as device filters. Examples may include (but not limited to) MakeMKV, various SlySoft, Redfox, and DVDFab software, disc cloning and emulation software, etc.
Usually only one program can have direct disc access at a time, so make sure you do not have anything else running in the background.
By default, Windows is configured to prevent direct access to any storage device, including your optical drive.
To allow direct access to storage devices via remote connection, you need to change the appropriate Group Policy Object (GPO):
-
Open Local Group Policy Editor:
-
Open Run dialog window using Win+R (or Win+X/right-click on Start button in Task Bar, then
Run
), then typegpedit.msc
-
Or simply use Start menu to search for
gpedit.msc
orEdit group policy
-
-
Using the object tree on the left side, navigate to
Computer Configuration
>Administrative Templates
>System
>Removable Storage Access
-
Change
All Removable Storage: Allow direct access in remote sessions
policy toEnabled
Some distributions deny direct device access, and you have to manually add your user account to appropriate group to get it
- Check permissions on
/dev/sr*
deviceswheremyuser@mypc:~$ ls -l /dev/sr* brw-rw----+ 1 root cdrom 11, 0 Feb 2 21:54 /dev/sr0
cdrom
group is assigned for optical media access - Add your user to the appropriate group, then reboot (logging out may or may not be sufficient)
myuser@mypc:~$ sudo usermod -a -G cdrom myuser
- Check that your user is in fact present in the group
myuser@mypc:~$ groups myuser wheel cdrom