
Dolphin Service Menus dolphin iso mount
Source (link to git-repo or to original if based on someone elses unmodified work): https://github.com/tazihad/mount-Iso-Service-for-the-Dolphin-File-Manager
Mount Iso Service for the Dolphin File Manager
This plugin for the kde dolphin file manager adds a contextual menu entry for .iso files to either mount or unmount the file as a loopback device. This plugin uses udisksctl to either mount:
$ udisksctl loop-setup -r -f myimage.iso
or unmount the iso file:
$ udisksctl loop-delete -b /dev/loop1
In order to know if a specific iso file is already mounted as a loopback device, this plugin also uses the losetup command-line program to get the associated loopback device of an iso file:
$ losetup -j /home/user/Downloads/myimage.iso
/dev/loop0: []: (/home/user/Downloads/myimage.iso)
Please login or register to add a comment or rating