Sometime, we may get error as mount: wrong fs type, bad option, bad superblock while trying to mount NFS file in ubuntu. For my case, i faced the problem showing the error as:
The reason behind it that for several filesystems (e.g. nfs, cifs) we might need a /sbin/mount. helper program.
As we are trying to mount NFS. The /sbin/mount.nfs helper program is provided by nfs-common. We can install it with:
sudo apt-get update
sudo apt install nfs-common
On the other hand, if we are trying to mount CIFS, the helper program is provided by cifs-utils. We can install it using below command:
sudo apt install cifs-utils
Then we can mount our target as:
We will have to create a directory where to mount the nfs,
sudo mount:/ /
The reason behind it that for several filesystems (e.g. nfs, cifs) we might need a /sbin/mount. helper program.
As we are trying to mount NFS. The /sbin/mount.nfs helper program is provided by nfs-common. We can install it with:
sudo apt-get update
sudo apt install nfs-common
On the other hand, if we are trying to mount CIFS, the helper program is provided by cifs-utils. We can install it using below command:
sudo apt install cifs-utils
Then we can mount our target as:
We will have to create a directory where to mount the nfs,
sudo mount
No comments:
Post a Comment