Results 1 to 4 of 4

Thread: I need to mount a cd manually

  1. #1
    Join Date
    Oct 2009
    Beans
    75
    Distro
    Ubuntu 10.04 Lucid Lynx

    I need to mount a cd manually

    problem: for some reason xubuntu does not mount cds manually as does ubuntu. i need to burn an iso file to a blank cd and brasero insists that i do not have a cd in the drive. hmmm...?? how do i manually mount the cd? terminal time maybe thanks for help
    _-Max-_

  2. #2
    Join Date
    Dec 2007
    Location
    /home
    Beans
    483

    Smile Re: I need to mount a cd manually

    this should work:

    Code:
    wodim --devices
    the output should be something like /dev/sdX, where /dev/sdX is your drive.

    create this directory if it does not exist already:

    Code:
    sudo mkdir /media/cdrom0
    then

    Code:
    sudo mount -t iso9660 /dev/sdX /media/cdrom0/
    Don't eff with The Cult...

  3. #3
    Join Date
    Oct 2009
    Beans
    75
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: I need to mount a cd manually

    the first code returns this:

    wodim: No such file or directory.
    Cannot open SCSI driver!
    For possible targets try 'wodim --devices' or 'wodim -scanbus'.
    For possible transport specifiers try 'wodim dev=help'.
    For IDE/ATAPI devices configuration, see the file README.ATAPI.setup from
    the wodim documentation.
    _-Max-_

  4. #4
    Join Date
    Dec 2007
    Location
    /home
    Beans
    483

    Smile Re: I need to mount a cd manually


    that's odd...
    i just copied/pasted that same code on a terminal, and it worked.

    its also funny how it tells you "For possible targets try 'wodim --devices' or 'wodim -scanbus'."

    so, it's telling you to run the same code you just entered...

    seems more like a glitch in wodim than anything else.


    anyway, cd drives are usually scd.

    try

    Code:
    ls /dev | grep scd
    i have two, so it tells me scd0 and scd1.
    if you only have one, it should be scd0.

    so try the rest of the code, based on that.

    hope it helps
    Don't eff with The Cult...

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •