-
CD and DVD drives
First check which kernel you're running:
markus@mrk-fujibox:~$ uname -r
2.6.9-301004
##### For 2.6.x kernels:
Check the append line for the kernel in /etc/lilo.conf:
image=/boot/vmlinuz-2.6.9-301004
label="Linux-2.6.9"
append="ramdisk_size=100000 lang=us hda=scsi hdb=scsi nomce "
read-only
I have 2 hd's so I need hda and hdb=scsi, delete the ones for your cd/dvd-drives, I deleted hdc=scsi and hdd=scsi.
If you change lilo.conf you need to run lilo -v to update it.
If you use grub you edit the kernel line in /boot/grub/menu.lst instead.
Then check dmesg to see where the drives are attached to:
markus@mrk-fujibox:~$ dmesg |grep CD
hdc: TDK CDRW241040B, ATAPI CD/DVD-ROM drive
hdd: HL-DT-ST DVDRAM GSA-4163B, ATAPI CD/DVD-ROM drive
hdc: ATAPI 40X CD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
hdd: ATAPI 40X DVD-ROM DVD-R-RAM CD-R/RW drive, 2048kB Cache, UDMA(33)
They're attached to hdc and hdd.
markus@mrk-fujibox:~$ ll /dev/hd[cd]
brw-rw---- 1 root cdrom 22, 0 Nov 14 2003 /dev/hdc
brw-rw---- 1 root cdrom 22, 64 Nov 14 2003 /dev/hdd
If needed do:
root@mrk-fujibox:/# chmod 660 /dev/hd[cd]
root@mrk-fujibox:/# chgrp cdrom /dev/hd[cd]
Now you need make /dev/cdrom and /dev/dvd point to hdc and hdd:
root@mrk-fujibox:/# rm -rf /dev/cdrom /dev/dvd
root@mrk-fujibox:/# ln -s /dev/hdc /dev/cdrom
root@mrk-fujibox:/# ln -s /dev/hdd /dev/dvd
root@mrk-fujibox:/# chgrp cdrom /dev/cdrom /dev/dvd
markus@mrk-fujibox:~$ ll /dev/cdrom /dev/dvd
lrwxrwxrwx 1 root cdrom 8 Sep 21 23:06 /dev/cdrom -> /dev/hdc
lrwxrwxrwx 1 root cdrom 8 Sep 21 23:07 /dev/dvd -> /dev/hdd
##### For 2.4.x kernels:
Check the append line for the kernel in /etc/lilo.conf:
image=/boot/vmlinuz-2.4.26
label="Linux-2.4.26"
append="ramdisk_size=100000 lang=us hda=scsi hdb=scsi hdc=scsi hdd=scsi nomce "
read-only
The append line in /etc/lilo.conf should include hdc=scsi and hdd=scsi if those are your cd/dvd-drives.
If you change lilo.conf you need to run lilo -v to update it.
Then check dmesg to see where the drives are attached to:
markus@mrk-fujibox:~$ dmesg|grep CD
hdc: TDK CDRW241040B, ATAPI CD/DVD-ROM drive
hdd: LG DVD-ROM DRD-8160B, ATAPI CD/DVD-ROM drive
Vendor: TDK Model: CDRW241040B Rev: 57S2
Type: CD-ROM ANSI SCSI revision: 02
Type: CD-ROM ANSI SCSI revision: 02
Uniform CD-ROM driver Revision: 3.20
Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0
Attached scsi CD-ROM sr1 at scsi1, channel 0, id 0, lun 0
They're attached to sr0 and sr1 which point to scd0 and scd1:
markus@mrk-fujibox:~$ ll /dev/sr[01] /dev/scd[01]
brw-rw---- 1 root cdrom 11, 0 Nov 14 2003 /dev/scd0
brw-rw---- 1 root cdrom 11, 1 Nov 14 2003 /dev/scd1
lrwxrwxrwx 1 root cdrom 4 Apr 28 2004 /dev/sr0 -> scd0
lrwxrwxrwx 1 root cdrom 4 Apr 28 2004 /dev/sr1 -> scd1
If needed do:
root@mrk-fujibox:/# chgrp cdrom /dev/scd[01]
You can make /dev/cdrom and /dev/dvd point to scd0 and scd1:
rm -rf /dev/cdrom /dev/dvd
ln -s /dev/scd0 /dev/cdrom
ln -s /dev/scd1 /dev/dvd
chgrp cdrom /dev/cdrom /dev/dvd
markus@mrk-fujibox:/$ ll /dev/cdrom /dev/dvd
lrwxrwxrwx 1 root cdrom 9 Apr 28 19:58 /dev/cdrom -> /dev/scd0
lrwxrwxrwx 1 root cdrom 9 Aug 10 13:39 /dev/dvd -> /dev/scd1
##### For both kernels:
You should have lines like these in /etc/fstab, edit if needed:
/dev/cdrom /cdrom iso9660 defaults,ro,users,noexec,noauto 0 0
/dev/dvd /dvd udf,iso9660 defaults,ro,users,noexec,noauto 0 0
Then check your mountpoints:
markus@mrk-fujibox:~$ ll -d /cdrom /dvd
drwxrwx--- 2 root cdrom 4096 Sep 5 14:35 /cdrom
drwxrwx--- 2 root cdrom 4096 Aug 10 13:23 /dvd
If needed do
root@mrk-fujibox:/# mkdir /cdrom /dvd
root@mrk-fujibox:/# chgrp cdrom /cdrom /dvd
root@mrk-fujibox:/# chmod 770 /cdrom /dvd
And check that your user is in the group cdrom:
markus@mrk-fujibox:/$ groups
markus dialout fax voice cdrom floppy audio dip src video games users usb scanner
If needed do:
root@mrk-fujibox:/# adduser your_username cdrom
If the desktop icons aren't working you can delete them and create new ones or do:
- right-click the icon
- Properties
- Device
- choose /dev/cdrom or /dev/dvd
- click OK
Similar Threads
-
By giant_toaster in forum Hdd Install / Debian / Apt
Replies: 7
Last Post: 11-21-2005, 08:30 PM
-
By rrfish72 in forum General Support
Replies: 15
Last Post: 08-05-2004, 07:33 AM
-
By Eradicator in forum Hdd Install / Debian / Apt
Replies: 4
Last Post: 10-26-2003, 06:07 AM
-
By wfb in forum General Support
Replies: 0
Last Post: 08-31-2003, 06:26 AM
-
By Chris in forum Hdd Install / Debian / Apt
Replies: 1
Last Post: 02-17-2003, 08:27 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules

9300-8i LSI SAS3008 8-Port 12Gb PCIe IT mode ZFS FreeNAS unRAID 2*SFF-8643 US
$49.50

Broadcom 9600-24i Tri-Mode RAID Controller 4.0 NVMe SAS SATA NEW 05-50111-01003
$639.69

QNAP TR-004 4 Bay USB-C Hardware RAID Enclosure DAS 3.5 2.5 SATA Tested Working
$149.99

Broadcom LSI Avago RAID card MegaRAID SAS 9480-8i8e 05-50031-00
$500.00

WAVLINK RAID 2 Bay Hard Drive Docking Station SATA 2.5''3.5'' SSD HDD USB C 4Bay
$107.99

Dell 3KDWX PERC H755 12G 8GB Cache Front RAID Controller
$999.99

Broadcom LSI 9305-16i 12Gbps SAS-3 PCIe x8 HBA 16-Ports Raid Controller
$64.99

2-Bay/4-Bay Hard Drive Enclosure for 3.5"/2.5'' SATA HDD/SSD 10Gbps USB-C 3.2
$75.99

Intel VROC Premium RAID Controller Card PCIe Add-On Module VROCPREMMOD
$265.00

Lacie 2big Quadra RAID 2 x 2 TB 4 TB Only 158 hours
$199.00