Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 37

Thread: fstab files from other installations

  1. #11
    Senior Member registered user
    Join Date
    May 2003
    Posts
    154
    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

  2. #12
    Senior Member registered user
    Join Date
    May 2003
    Posts
    154
    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....

  3. #13
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    Quote 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.

  4. #14
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    Quote 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!

  5. #15
    Senior Member registered user
    Join Date
    May 2003
    Posts
    154
    ls -al /dev/dvd -> /dev/cdrom
    ls -al /dev/cdrom -> sr0
    ls -al /dev/cdrw -> /dev/scd0

  6. #16
    Senior Member registered user
    Join Date
    May 2003
    Posts
    154
    [quote="rickenbacherus"]
    Quote 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

  7. #17
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    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.

  8. #18
    Senior Member registered user
    Join Date
    May 2003
    Posts
    154
    [quote="rickenbacherus"]
    Quote 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

  9. #19
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    Quote Originally Posted by Tortoise
    cd /mnt
    ls

    cdrom cdrw dvd floppy hda1 hda2 hda3 hda6 sda
    Excellent!-You're on the home stretch.

  10. #20
    Senior Member registered user
    Join Date
    May 2003
    Posts
    154
    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?

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. sysv-rc error preventing package installations - help...
    By yekibud in forum Hdd Install / Debian / Apt
    Replies: 3
    Last Post: 04-20-2005, 10:35 AM
  2. driver installations don't do anything or don't work
    By splittik in forum Hardware & Booting
    Replies: 5
    Last Post: 03-28-2005, 05:48 AM
  3. Problem when moving New Fstab to the Old Fstab to fix Suse
    By cheetahman in forum General Support
    Replies: 19
    Last Post: 03-21-2005, 11:58 AM
  4. fstab
    By rmayer1 in forum Hdd Install / Debian / Apt
    Replies: 15
    Last Post: 03-23-2003, 08:17 AM
  5. Misc. Installations: Seismic Unix/gnuplot
    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
  •  


Vintage DEC/CLEARPOINT INC. -QRAM-2 SAB-1 1MB Q-BUS MEMORY MSV11-QA (B2) picture

Vintage DEC/CLEARPOINT INC. -QRAM-2 SAB-1 1MB Q-BUS MEMORY MSV11-QA (B2)

$129.99



DEC  PDP 8/M  PDP 8M / 4 avail / Vintage Digital Equipment Corp /Also DEC PDP 12 picture

DEC PDP 8/M PDP 8M / 4 avail / Vintage Digital Equipment Corp /Also DEC PDP 12

$5775.00



10x Rare Vintage DEC 12-22246-01 VAX BI TRANSITION HEADER ALL 3 BLOCKS INSTALLED picture

10x Rare Vintage DEC 12-22246-01 VAX BI TRANSITION HEADER ALL 3 BLOCKS INSTALLED

$219.95



DEC DIGITAL Equipment Corp VT220-D2 Vintage CRT Terminal picture

DEC DIGITAL Equipment Corp VT220-D2 Vintage CRT Terminal

$215.00



Vintage   DEC / DIGITAL CLEARPOINT INC COMPUTER BOARD QRAM-11  QBUS  Memory PQ picture

Vintage DEC / DIGITAL CLEARPOINT INC COMPUTER BOARD QRAM-11 QBUS Memory PQ

$109.00



Vintage DEC Digital Equipment VT100 Keyboard 70-14653-11 Missing Key Caps picture

Vintage DEC Digital Equipment VT100 Keyboard 70-14653-11 Missing Key Caps

$129.00



DEC DIGITAL VINTAGE M8972 picture

DEC DIGITAL VINTAGE M8972

$47.00



Vintage DEC Digital RX 180 AB Dual 5.25

Vintage DEC Digital RX 180 AB Dual 5.25" Disk Drive

$149.00



Vintage DEC/The Redac mini cabinet front panel Digital Equipment Corp. 19

Vintage DEC/The Redac mini cabinet front panel Digital Equipment Corp. 19"

$269.99



VINTAGE DEC Digital RK11-D DISK CONTROL M7255 PDP 11 (B1) picture

VINTAGE DEC Digital RK11-D DISK CONTROL M7255 PDP 11 (B1)

$129.99