2009-09-15 00:33:13
Novell ncpmount in fstab
Auch im Jahr 2009 scheint man das manchmal zu brauchen. Daher beschreibe ich hier nochmal kurz, wie man ein Verzeichnis eines Novell Netware-Servers statt mit ncpmount einfach über die fstab mountet.
Angenommen, man hat eine Freigabe, die man per ncpmount wie folgt einhängen kann:
/usr/bin/ncpmount tcp -A party.adm.company -S PRT3 -V VOL1 \ -U novusr.adm.gg -P nvadmpass -u root /mnt/novell
(Oder allgemein: "ncpmount tcp -A serverdns -S server -U user.location.nds -P password -u user mountpoint")
Dann würde der korrespondierende Eintrag in der /etc/fstab wie folgt aussehen:
PRT3/novusr.adm.gg /mnt/novell ncp \ uid=root,owner=root,V=VOL1,A=party.adm.company,\ passwdfile=/etc/ncp-pass 0 0
(Allgemein: "<server/user> <mountpoint> ncp uid=root,gid=<group>,mode=660,owner=root, V=<volume>,A=<server>,passwdfile=/etc/ncp-pass 0 0")
Die Password-Datei sieht dabei so aus:
PRT3/novusr.adm.gg:nvadmpass
(Allgemein: "myserver/myuser.location.nds:mypassword")
Posted by Frank W. Bergmann | Permanent link