The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Drive emulator for ubuntu

    Discussion in 'Linux Compatibility and Software' started by bubba_000, Jan 7, 2009.

  1. bubba_000

    bubba_000 Notebook Evangelist

    Reputations:
    32
    Messages:
    319
    Likes Received:
    0
    Trophy Points:
    30
    Hi. I'm running ubuntu 8.10. Is there a drive emulation program for this OS? Something like Daemon Tools in Windows?

    Thanks in advance.
     
  2. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    Check out CDemu...

    Add the following to your /etc/apt/sources.list
    Code:
    deb http://ppa.launchpad.net/cdemu/ubuntu intrepid main
    deb-src http://ppa.launchpad.net/cdemu/ubuntu intrepid main
    
    Then run:
    Code:
    apt-get update
    apt-get install cdemu-daemon cdemu-client gcdemu
    
    It may have further dependencies, but you should be able to figure it out :
    https://launchpad.net/~cdemu/+archive
     
  3. archer7

    archer7 Notebook Evangelist

    Reputations:
    289
    Messages:
    647
    Likes Received:
    0
    Trophy Points:
    30
    AcetoneISO has plenty of features, and it should be readily available (at least in Arch, I'm not sure about Ubuntu). It can pretty much handle, mount, and convert any disc image. It can also download YouTube videos, and other funky things like that.

    These "tools" are usually just frontends to GNU core programs. There's nothing stopping you from using them directly if you care for it.
     
  4. srunni

    srunni Notebook Deity

    Reputations:
    96
    Messages:
    854
    Likes Received:
    0
    Trophy Points:
    30
    You don't need any program for mounting ISO's. Just run the following as root (if you don't know how to get root access, tell me the distro you're using and I might be able to help you):
    Code:
    mkdir /mnt/iso
    to create a mount point (you only need to do this the first time you mount an ISO), then
    Code:
    mount -o loop disc.iso /mnt/iso
    and that's it! If you want to unmount, just run
    Code:
    umount /mnt/iso
    Note that it says ``umount'', and not ``unmount'' in the command.

    If you have a bin/cue image, then you will have to use bchunk to convert it to the ISO format:
    Code:
    bchunk disc.bin disc.cue disc
    The ISO will be named disc01.iso, IIRC. Just change the last word in the command to modify the resulting ISO's file name.
     
  5. bubba_000

    bubba_000 Notebook Evangelist

    Reputations:
    32
    Messages:
    319
    Likes Received:
    0
    Trophy Points:
    30
    I'm using ubuntu 8.10.