Ask a Question related to Linux Setup, Configuration & Administration, Design and Development.
-
Carlos #1
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
-
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... -
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... -
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... -
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... -
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... -
Andreas Janssen #2
Re: mounting cdrom and dvd
Hello
Carlos (<garciasuarez@ya.com>) wrote:
1. Make a directory in /mnt where you want to mount the device> 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 ?
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
-
Nico Kadel-Garcia #3
Re: mounting cdrom and dvd
Carlos wrote:
You cannot treat a CD/DVD drive as a notmal read-write filesystem,> 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
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



Reply With Quote

