mounting cdrom and dvd

Ask a Question related to Linux Setup, Configuration & Administration, Design and Development.

  1. #1

    Default mounting cdrom and dvd

    I have a dvd-rom and read write CD in my Red Hat 8 box.

    When mounting

    mount /dev/cdrom /mnt/cdrom

    only the dvd-rom is mounted.

    How can I mount the rw drive in a directory like /mnt/cdrom1 ?

    Thanks

    Carlos
    Carlos Guest

  2. Similar Questions and Discussions

    1. Mounting AIX 5L JFS2 Filesystem on AIX 4.3.3
      Hello ! Does anybody know about problems while mounting a NFS-exported jfs2-filesystem from a AIX 5.2 server on an AIX 4.3.3NFS-Client ? Thanks a...
    2. mounting cdrom
      ok, i have determined how to mount my win32 patitions as well as mounting the cdrom. how do i mount a regular audio disc on my cdrom? thanks long...
    3. Mounting A Network Drive
      I am using Windows XP Home edition. I have all my files like pst for e-mail on a network file sever. I can mount these folders once I am logged on...
    4. can't get a cdrom "configured" with apt-cdrom
      On Wed, Jun 25, 2003 at 10:41:31AM -0700, Rodney D. Myers wrote: I don't know how to fix this, but I've used 'debian-cd' to produce CDs from...
    5. Mounting Same Stripe, on two E250's
      Newbie, beware... I have two E250's sharing a diskshelf. Both machines can see the individual disks on the shelf. I created the meta databases...
  3. #2

    Default Re: mounting cdrom and dvd

    Hello

    Carlos (<garciasuarez@ya.com>) wrote:
    > I have a dvd-rom and read write CD in my Red Hat 8 box.
    >
    > When mounting
    >
    > mount /dev/cdrom /mnt/cdrom
    >
    > only the dvd-rom is mounted.
    >
    > How can I mount the rw drive in a directory like /mnt/cdrom1 ?
    1. Make a directory in /mnt where you want to mount the device
    2. Find out the device file of your drive:
    IDE drives:
    Primary Master: /dev/hda
    Primary Slave: /dev/hdb
    Secondary Master: /dev/hdc
    Secondary Slave: /dev/hdd

    SCSI drives or IDE drives with IDE SCSI emulation:
    From /dev/scd0 on

    Do cat /proc/scsi/scsi or cdrecord -scanbus to check if your writer is
    setup with ide scsi emulation (very probably it is).

    Now mount the device:

    mount /dev/yourdevice /mnt/yourdir

    You can also make a symbolic link pointing to the real device file like
    /dev/cdrom is:

    cd /dev
    ln -s yourdevice cdrw

    and then mount it

    mount /dev/cdrw /mnt/yourdir

    Also, check your /etc/fstab, probably there is already an entry for your
    drive.

    bets regards
    Andreas Janssen


    --
    Andreas Janssen
    [email]andreas.janssen@bigfoot.com[/email]
    PGP-Key-ID: 0xDC801674
    Registered Linux User #267976
    Andreas Janssen Guest

  4. #3

    Default Re: mounting cdrom and dvd

    Carlos wrote:
    > I have a dvd-rom and read write CD in my Red Hat 8 box.
    >
    > When mounting
    >
    > mount /dev/cdrom /mnt/cdrom
    >
    > only the dvd-rom is mounted.
    >
    > How can I mount the rw drive in a directory like /mnt/cdrom1 ?
    >
    > Thanks
    >
    > Carlos
    You cannot treat a CD/DVD drive as a notmal read-write filesystem,
    because you can't re-write the blocks that describe the file system on
    the fly. You can *erase* the file system on the DVD and start over, and
    there seem to be some funky CD/DVD tools that extend the file system by
    tacking stuff on the end, but I've never found those to work very well.

    Nico Kadel-Garcia Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139