How to mount a ZFS share over NFS

6,161

The reason you are getting that error is that you aren't trying to mount a ZFS share, you are trying to mount an NFS share. You shouldn't need ZFS installed on the linux machine. To mount it do

sudo mount example.hostname.com:/ubuntu /local/ubuntu

From https://help.ubuntu.com/12.04/serverguide/network-file-system.html#nfs-client-configuration

Share:
6,161

Related videos on Youtube

Matt
Author by

Matt

Updated on September 18, 2022

Comments

  • Matt
    Matt almost 2 years

    I am trying to mount a ZFS drive to a Ubuntu 12.04 server installation. The drive is shared via NFS. I have installed ZFS for Linux but I still get a: wrong fs type, bad option, bad superblock error. Does anyone have any ideas.

  • Matt
    Matt about 12 years
    I did not have nfs-common installed. The sudo apt-get install nfs-common command solved the issue. Thank you for your help.