Announcement

Collapse
No announcement yet.

is there a program like Daemon tools for Linux?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • is there a program like Daemon tools for Linux?

    I am pretty new to Linux and am looking for a program that I can use to Mount ISOs in windows I would just use daemon tools but I am not sure of what to do in Linux

  • #2
    You actually have a handy-dandy piece of system services that allows you to mount ISO images directly: Loopback filesystems.

    Here's your commandline (as root user, preferably via sudo):

    Code:
    mount -t iso9660 -o loop disk1.iso /mnt/disk
    Substitute disk1.iso and /mnt/disk accordingly. Enjoy.

    Comment


    • #3
      Thank you

      Comment


      • #4
        Originally posted by Paroxysm View Post
        Thank you
        You're very much welcome. And welcome to the larger world of Linux use.

        Comment


        • #5
          cdemu is much better in that regard. it can also mount 2352byte sector images, not only iso9660 images.

          Comment


          • #6
            There's also Gmount-iso

            Comment


            • #7
              There's also Gmount-iso
              That's just a GUI front end to the loopback device...

              Comment

              Working...
              X