Is K3B the software to mount an ISO file? If not, is there a way to mount an ISO in Kubuntu? I opened an ISO with K3B and there are heaps of options except plain old mount.
Announcement
Collapse
No announcement yet.
How to mount an ISO
Collapse
This topic is closed.
X
X
-
See https://help.ubuntu.com/community/Grub2/ISOBoot for help.Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
-
Originally posted by shag00 View PostIs K3B the software to mount an ISO file? If not, is there a way to mount an ISO in Kubuntu? I opened an ISO with K3B and there are heaps of options except plain old mount.
VINNYi7 4core HT 8MB L3 2.9GHz
16GB RAM
Nvidia GTX 860M 4GB RAM 1152 cuda cores
- Top
- Bottom
Comment
-
If you just want to see what's in the iso, double click it in dolphin and ark will open it (assuming the default file association for isos; if something else, say k3b, opens it, in dolphin right click it and choose ark).
If you want to see and explore it in dolphin, or read the data in other programs, without extracting from the iso, you could, say, in a konsole:
Code:sudo mkdir -p /mnt/iso sudo mount -o ro [I]/path/to/iso/somefile.iso[/I] /mnt/iso
Regards, John Little
- Top
- Bottom
Comment
-
Thanks for the replies guys though it seems I am not very good at asking questions. What i want to do is mount an ISO in a daemon (virtual DVD drive) on my machine.
What I was looking for was a GUI version of what @jlittle suggested. From google I found this site https://www.maketecheasier.com/mount-iso-file-linux/ with this nifty graphic:
Now in Kubuntu there does not seem to be an equivalent option in the right click menu. I know I can use a new software to do this but thought I would explore built-in options first.
Regards,
- Top
- Bottom
Comment
-
So, did you try double-clicking the .iso file from within Dolphin, as jlittle pointed out?Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
Comment
-
Then follow his CLI method.Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
Comment
-
(I'm sorry my brain did not intuit the obvious when I sent my previous reply. That obviousness just came to me, and I investigated a little, and so...)
It sounds like you want a fuser mount to the iso, from dolphin. There is a package in the repos to do just that for kde 4, and it seems to work if the files are copied to the right place for KDE plasma. Here's what I did:- Installed kde-service-menu-fuseiso using muon. The "fuseiso" package I had already; if you don't, it will be installed as a dependency.
- Created the directory kservices5 in my ~/.local/share, and the directory ServiceMenus in that. If you already have these, all the better.
- Copied the fuseiso* files from /usr/share/kde4/services/ServiceMenus/ to ~/.local/share/kservices5/ServiceMenus.
- Ran kbuildsycoca5 in a konsole. Alternatively, you could log out and back in.
Expressed as shell commands; using these would surely have been quicker:
Code:$ sudo apt install kde-service-menu-fuseiso $ mkdir -p ~/.local/share/kservices5/ServiceMenus $ cp /usr/share/kde4/services/ServiceMenus/fuseiso* ~/.local/share/kservices5/ServiceMenus $ kbuildsycoca5
That service menu mounts the iso in ~/media, and always opens a new dolphin window. If that's inconvenient you could edit the .desktop file to remove the kde-open statement.Regards, John Little
- Top
- Bottom
Comment
-
Originally posted by shag00 View PostArk wants to extract the files which is not what I want to do. i want to mount the ISO so it is accessible to other programs.
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Then follow his CLI method.
Please take this as friendly advice and not an invitation to hostilities.
Regards,
- Top
- Bottom
Comment
-
Originally posted by shag00 View PostPlease take this as friendly advice and not an invitation to hostilities.
Regards,Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
Comment
Comment