-
Senior Member
registered user
Well, thanks for this, I did all of that, but I am still having trouble finding them, they don't appear on anything that I can find - sorry to be slow on this, but I still can't work out how to access them.
Here is my fstab, I am fairly sure this just isn't set up right...
Thanks,
# /etc/fstab: filesystem table.
#
# filesystem mountpoint type options dump pass
/dev/hda3 / ext3 defaults,errors=remount-ro 0 1
/dev/hda5 none swap sw 0 0
proc /proc proc defaults 0 0
/dev/floppy /floppy vfat defaults,user,showexec,umask=022 0 0
/dev/cdrom /mnt/cdrom iso9660 defaults,ro,user,noexec 0 0
/dev/dvd /mnt/dvd iso9660 defaults,ro,user,noexec 0 0
# partitions found by Knoppix
/dev/hda1 /mnt/hda1 ntfs auto,users,exec,ro,uid=knoppix,gid=knoppix 0 0
#/dev/hda2 /mnt/hda2 vfat noauto,users,exec,umask=000,uid=knoppix,gid=knoppi x 0 0
#/dev/hda3 /mnt/hda3 ext3 noauto,users,exec 0 0
/dev/hda6 /mnt/hda6 vfat auto,users,exec,umask=000,uid=knoppix,gid=knoppix 0 0
# Added by KNOPPIX
/dev/hda2 /mnt/hda2 vfat noauto,users,exec,umask=000,uid=knoppix,gid=knoppi x 0 0
# Added by KNOPPIX
-
Senior Member
registered user
OK, so I have the DVD/CDRW working now, as /mnt/dvd, but CDRW also links to that. I am confused as to how to distinguish the devices, since every mountpoint is pointing to the same thing.
I'm please to have got anything to point to anything, but what it says is the dvd is actually the cdrw... Arrghhh....
-
Senior Member
registered user

Originally Posted by
Tortoise
# /etc/fstab: filesystem table.
#
# filesystem mountpoint type options dump pass
/dev/hda3 / ext3 defaults,errors=remount-ro 0 1
/dev/hda5 none swap sw 0 0
proc /proc proc defaults 0 0
/dev/floppy /floppy vfat defaults,user,showexec,umask=022 0 0
/dev/cdrom /mnt/cdrom iso9660 defaults,ro,user,noexec 0 0
/dev/dvd /mnt/dvd iso9660 defaults,ro,user,noexec 0 0
# partitions found by Knoppix
/dev/hda1 /mnt/hda1 ntfs auto,users,exec,ro,uid=knoppix,gid=knoppix 0 0
#/dev/hda2 /mnt/hda2 vfat noauto,users,exec,umask=000,uid=knoppix,gid=knoppi x 0 0
#/dev/hda3 /mnt/hda3 ext3 noauto,users,exec 0 0
/dev/hda6 /mnt/hda6 vfat auto,users,exec,umask=000,uid=knoppix,gid=knoppix 0 0
# Added by KNOPPIX
/dev/hda2 /mnt/hda2 vfat noauto,users,exec,umask=000,uid=knoppix,gid=knoppi x 0 0
# Added by KNOPPIX
You currently have these mount points right?
hda1 hda2 hda3 hda6 sda
You need to make some more mount points my friend. Look closely at your fstab- the format is like this:
filesystem mountpoint type
So, applying that to the following line from your fstab
/dev/cdrom /mnt/cdrom iso9660 defaults,ro,user,noexec 0 0
/dev/cdrom is your filesystem
/mnt/cdrom is your mount point
iso9660 is the type
But you don't have /dev/cdrom OR /mnt/cdrom do you? You just need to make the symbolic link to your cdrom like this:
Code:
ln -s /dev/scd0 /dev/cdrom
ls -al /dev/cdrom
What is /dev/cdrom really pointing to now? Post it please.
You also need to create the mount point /mnt/cdrom. fstab is trying to mount /dev/cdrom to a mount point that does not exist. That'll never work. As root, do this:
Code:
mkdir /mnt/cdrom
cd /mnt
ls
Now your mount points should look like this:
hda1 hda2 hda3 hda6 sda cdrom
Post your mount points please.
If everything above went smoothly now fstab will mount /dev/cdrom (which is actually /dev/scd0)on the mount point /mnt/cdrom.
If everything above went smoothly......
As root, do this:
Code:
mount -t auto /dev/cdrom
cd /mnt/cdrom
ls
Also let me remind you that you CANNOT mount an audio cd because it has no filesystem on it. Additionally, you can't mount an empty drive because............there's no filesystem in an empty drive either. So anytime you want to mount a cdrom you need to have a data cd in i the drive.
-
Senior Member
registered user

Originally Posted by
Tortoise
OK, so I have the DVD/CDRW working now, as /mnt/dvd, but CDRW also links to that. I am confused as to how to distinguish the devices, since every mountpoint is pointing to the same thing.
I'm please to have got anything to point to anything, but what it says is the dvd is actually the cdrw... Arrghhh....
Ah yes the joys of symlinks. As root do this:
Code:
ls -al /dev/dvd
ls -al /dev/cdrom
Post the output please. You're almost there. Soon you''ll understand- fear not!
-
Senior Member
registered user
ls -al /dev/dvd -> /dev/cdrom
ls -al /dev/cdrom -> sr0
ls -al /dev/cdrw -> /dev/scd0
-
Senior Member
registered user
[quote="rickenbacherus"]

Originally Posted by
Tortoise
Code:
ln -s /dev/scd0 /dev/cdrom
ls -al /dev/cdrom
What is /dev/cdrom really pointing to now? Post it please.
OK, so:
ln -s /dev/scd0 /dev/cdrom
[ln: '/dev/cdrom': File exists
ls -al /dev/cdrom
lrwxrwxrwx 1 root root 3 May 28 23:24 /dev/cdrom -> sr0
-
Senior Member
registered user
It looks as though I may have confused you. 
As root do this:
ls -al /dev/scd0
ls -al /dev/scd1
Then, still as root do this:
rm /dev/dvd
rm /dev/cdrw
rm /dev/cdrom
It will ask if you're sure- yes.
ln -s /dev/scd0 /dev/cdrom
ls -al /dev/cdrom
ln -s /dev/scd1 /dev/dvd
ls -al /dev/dvd
Post the entire screen please.
-
Senior Member
registered user
[quote="rickenbacherus"]

Originally Posted by
Tortoise
Code:
mkdir /mnt/cdrom
cd /mnt
ls
Now your mount points should look like this:
hda1 hda2 hda3 hda6 sda cdrom
Post your mount points please.
cd /mnt
ls
cdrom cdrw dvd floppy hda1 hda2 hda3 hda6 sda
-
Senior Member
registered user

Originally Posted by
Tortoise
cd /mnt
ls
cdrom cdrw dvd floppy hda1 hda2 hda3 hda6 sda
Excellent!-You're on the home stretch.
-
Senior Member
registered user
Sorry, really stupid question, I am in a shell as root, I select copy text, and then when I go to paste it into Knoppix, I there is no paste. How do I do that?
Similar Threads
-
By yekibud in forum Hdd Install / Debian / Apt
Replies: 3
Last Post: 04-20-2005, 10:35 AM
-
By splittik in forum Hardware & Booting
Replies: 5
Last Post: 03-28-2005, 05:48 AM
-
By cheetahman in forum General Support
Replies: 19
Last Post: 03-21-2005, 11:58 AM
-
By rmayer1 in forum Hdd Install / Debian / Apt
Replies: 15
Last Post: 03-23-2003, 08:17 AM
-
By g-ahmadi in forum The Lounge
Replies: 1
Last Post: 03-21-2003, 12:16 AM
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

OPNsense pfSense 8-Core Atom C3758 2.2GHz 8GB DDR4 64GB SSD 8x NIC QAT AES VPN
$145.00

OPNsense pfSense 16-Core Atom C3958 16GB ECC RAM 512GB SSD 8-Port QAT AES-NI VPN
$298.00

Firewalla Purple Gigabit Firewall Router Factory Reset Excellent Cond G2U
$245.00

Cisco ASA 5506-X Network Security Firewall Appliance- No Adapter
$50.00

PfSense/OPNsense 6x1Gb, Quad Core, 8GB, 128GB SSD, AES-NI, QAT (Lanner FW-7525D)
$85.00

Fortinet FortiGate FortiWiFi 80F Network Security Firewall (FG-80F)
$73.49

10GbE OPNsense Firewall VPN AES QAT 4-Core Atom C3558 2.20GHz 8GB DDR4 128GB SSD
$165.00

PfSense/OPNsense - 2x1Gb, 4x2.5Gb, 2x10Gb, C3558, 4GB, 128GB NVMe, AES-NI, QAT
$259.00

Ubiquiti UniFi Security Gateway USG 3-Port Gigabit Router Firewall VPN Untested
$35.00

SonicWall SOHO Wireless Network Security Appliance 01-SSC-0218
$199.00