Why do I get "wrong fs type, bad option, bad superblock" error?

Arseni Mourzenko

When mounting an NFS directory by doing:

sudo mount 192.168.1.5:/home/shared /mnt/common

I get the following error:

mount: wrong fs type, bad option, bad superblock on 192.168.1.5:/home/shared, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program)  
In some cases useful info is found in syslog - try dmesg | tail or so.

The kernel is up to date.

The question was already asked (for example here and here), but are either not answered or the answers are not helpful in my case.

What is wrong?

muru

The error message mentions:

(for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program)

This is relevant given that you are trying to mount NFS. The /sbin/mount.nfs helper program is provided by nfs-common. You can install it with:

sudo apt install nfs-common

On the other hand, if you are trying to mount CIFS, the helper program is provided by cifs-utils. You can install it with:

sudo apt install cifs-utils

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Why do I get "wrong fs type, bad option, bad superblock" error?

From Dev

Cannot mount USB drive with "wrong fs type, bad option, bad superblock" error message

From Dev

Unable to Mount RAID1 md0 - wrong fs type, bad option, bad superblock on /dev/md0, missing codepage or helper program, or other error

From Dev

mount: wrong fs type, bad option, bad superblock

From Dev

Wrong fs type, bad option, bad superblock on /dev/sdaX

From Dev

mount: wrong fs type, bad option, bad superblock on /dev/sdb on CentOS 6.0

From Dev

mount: wrong fs type, bad option, bad superblock on /dev/sdb on CentOS 6.0

From Dev

NFS does not work. mount: wrong fs type, bad option, bad superblock

From Dev

Cannot mount dislocker-file loop: wrong fs type, bad option, bad superblock

From Dev

NTFS filesystem on external drive isn't recognised: "mount: wrong fs type, bad option, bad superblock on /dev/sdb1"

From Dev

NTFS filesystem on external drive isn't recognised: "mount: wrong fs type, bad option, bad superblock on /dev/sdb1"

From Dev

Why do I get this error

From Dev

Why do i get infinite type error

From Dev

Why do I get a compilation error?

From Dev

Why do I get a StringFormat error with this?

From Dev

Why do I get syntax error before: '{'?

From Dev

Why do I get ambiguous error

From Dev

why do i get this sqlite error?

From Dev

Why do I get a parse error on '='

From Dev

Why do I get this error installing rmarkdown

From Dev

Why do I get a Stackoverflow Error?

From Dev

Why do I get an error with importing React

From Dev

Why do I get this recursion stackoverflow error?

From Dev

why do i get this sqlite error?

From Dev

Why do i get Error Code 1215?

From Dev

Why do I get a stack overflow error?

From Dev

Why do I get an infdig error?

From Dev

Why do I get a parse error on '='

From Dev

Why do I get an error in this ListView creation?

Related Related

  1. 1

    Why do I get "wrong fs type, bad option, bad superblock" error?

  2. 2

    Cannot mount USB drive with "wrong fs type, bad option, bad superblock" error message

  3. 3

    Unable to Mount RAID1 md0 - wrong fs type, bad option, bad superblock on /dev/md0, missing codepage or helper program, or other error

  4. 4

    mount: wrong fs type, bad option, bad superblock

  5. 5

    Wrong fs type, bad option, bad superblock on /dev/sdaX

  6. 6

    mount: wrong fs type, bad option, bad superblock on /dev/sdb on CentOS 6.0

  7. 7

    mount: wrong fs type, bad option, bad superblock on /dev/sdb on CentOS 6.0

  8. 8

    NFS does not work. mount: wrong fs type, bad option, bad superblock

  9. 9

    Cannot mount dislocker-file loop: wrong fs type, bad option, bad superblock

  10. 10

    NTFS filesystem on external drive isn't recognised: "mount: wrong fs type, bad option, bad superblock on /dev/sdb1"

  11. 11

    NTFS filesystem on external drive isn't recognised: "mount: wrong fs type, bad option, bad superblock on /dev/sdb1"

  12. 12

    Why do I get this error

  13. 13

    Why do i get infinite type error

  14. 14

    Why do I get a compilation error?

  15. 15

    Why do I get a StringFormat error with this?

  16. 16

    Why do I get syntax error before: '{'?

  17. 17

    Why do I get ambiguous error

  18. 18

    why do i get this sqlite error?

  19. 19

    Why do I get a parse error on '='

  20. 20

    Why do I get this error installing rmarkdown

  21. 21

    Why do I get a Stackoverflow Error?

  22. 22

    Why do I get an error with importing React

  23. 23

    Why do I get this recursion stackoverflow error?

  24. 24

    why do i get this sqlite error?

  25. 25

    Why do i get Error Code 1215?

  26. 26

    Why do I get a stack overflow error?

  27. 27

    Why do I get an infdig error?

  28. 28

    Why do I get a parse error on '='

  29. 29

    Why do I get an error in this ListView creation?

HotTag

Archive