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
  •  


Dell Poweredge R720 8SFF 2.5

Dell Poweredge R720 8SFF 2.5" x Xeon E5-2680 v2 2.8GHz 20-Cores 128gb 4x Trays

$349.99



Dell EMC PowerEdge R440 Xeon silver 4215 2.5GHz 16 GB ram  2x 550W PSU No HDD picture

Dell EMC PowerEdge R440 Xeon silver 4215 2.5GHz 16 GB ram 2x 550W PSU No HDD

$275.00



Dell PowerEdge R730XD Server 2x E5-2695 V4 = 36 Cores H730p 32GB RAM 4x trays picture

Dell PowerEdge R730XD Server 2x E5-2695 V4 = 36 Cores H730p 32GB RAM 4x trays

$649.99



Dell PowerEdge R420 Rack Server Intel Xeon 1.90GHz Six-Core 8GB DDR3 RAM picture

Dell PowerEdge R420 Rack Server Intel Xeon 1.90GHz Six-Core 8GB DDR3 RAM

$95.00



Dell Poweredge R720 8SFF 2.5

Dell Poweredge R720 8SFF 2.5" 2x Xeon E5-2680 v2 2.8GHz 20-Cores 64gb 4x Trays

$259.99



Dell PowerEdge R620 2x Xeon E5-2630 v2 3.1GHz 2.5

Dell PowerEdge R620 2x Xeon E5-2630 v2 3.1GHz 2.5" 4-BAY 32GB RAM No OS 2x 495w

$168.95



Dell Poweredge R740 8 Bay LFF 3.5

Dell Poweredge R740 8 Bay LFF 3.5" 2U Rack Server DUAL XEON GOLD CPUs HOMELAB US

$399.94



Dell PowerEdge R640 Server 2.10Ghz 32-Core 64GB RAM Energy-Efficient picture

Dell PowerEdge R640 Server 2.10Ghz 32-Core 64GB RAM Energy-Efficient

$649.95



Dell Poweredge R630 2x Xeon E5-2680 v3 2.5ghz 24-Cores / 64gb / Raid / 2x 1Tb picture

Dell Poweredge R630 2x Xeon E5-2680 v3 2.5ghz 24-Cores / 64gb / Raid / 2x 1Tb

$374.99



Dell PowerEdge R530 2x E5-2630v4 H330 iDRAC8 Port Card Riser No PSU/RAM/HDD picture

Dell PowerEdge R530 2x E5-2630v4 H330 iDRAC8 Port Card Riser No PSU/RAM/HDD

$99.99