First you have to install ncpfs using apt-get:
[code language=”bash”]
sudo apt-get install ncpfs
[/code]
Then mount your novell directories using the following commands:
[code language=”bash”]
mkdir /media/novell
sudo chown <localuser>:<localgroup> /media/novell
sudo ncpmount -S <name-of-netware-server> -A <fully-qualified-name-of-server-or-ip-address> -U <novellusername-using-dot-notation> -u <localusername> -g <localgroup> -o nfsextras,symlinks,tcp,rw /media/novell -p cp850 -y utf8
[/code]
This will mount all of the volumes. If you wish to mount a specific volume use the -V option.
Having issues? Just drop me a line.
Hi, is there a way to install ncpfs / mountncp on Trusty Tahr (14.04)? The ncpfs package seems to have been deleted from the 14.04 repos 🙁
Hi,
You are right, they removed the package. In order to install it have a look at the following post: http://askubuntu.com/a/481727
Regards,
Herbert.
Hi, how would you make this mount command auto mount on boot or reboot?
Good question but currently I do it manually.