Results 1 to 3 of 3

Thread: Mount point 0 does not exist.

  1. #1
    Join Date
    Sep 2018
    Beans
    5

    Exclamation Mount point 0 does not exist.

    I have been trying to mount an usb drive to my raspberry, but suddenly i started getting the same error over and over and I couldn't find a single way to fix this.


    > mount: /etc/fstab: parse error at line 3 -- ignored
    mount: mount point 0 does not exist


    And this is the fstab file:


    - proc /proc proc defaults 0 0
    - /dev/mmcblk0p6 /boot vfat defaults
    - 0 2 /dev/mmcblk0p7 / ext4
    - defaults,noatime 0 1
    - #### a swapfile is not a swap partition, no line here
    - #### use dphys-swapfile swap[on|off] for that
    - UUID=E6A0-4042 /media/usb1 auto nofail,uid=1000,gid=1000,noatime 0 0


    Thanks in advance.

  2. #2
    Join Date
    Nov 2007
    Location
    London, England
    Beans
    7,703

    Re: Mount point 0 does not exist.

    DON'T REBOOT!

    Will post more in a moment.

  3. #3
    Join Date
    Nov 2007
    Location
    London, England
    Beans
    7,703

    Re: Mount point 0 does not exist.

    Your fstab file is mangled somehow.
    I really don't understand how you got the dashes at the start of each line. Are they really there?
    Beyond the dashes, it looks as though a couple of new-lines have been moved.

    Below is my guess at what the file should look like. However I am only guessing and could be wrong.
    Unfortunately, getting the fstab file wrong will probably prevent the pi from booting.
    My pi has a different looking fstab - it uses PARTUUID=... instead of /dev/... to identify the device partitions, but I don't think that's too important.
    Code:
    proc /proc proc defaults 0 0
    /dev/mmcblk0p6 /boot vfat defaults 0 2 
    /dev/mmcblk0p7 / ext4 defaults,noatime 0 1
    #### a swapfile is not a swap partition, no line here
    #### use dphys-swapfile swap[on|off] for that
    UUID=E6A0-4042 /media/usb1 auto nofail,uid=1000,gid=1000,noatime 0 0

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •