如何挂载 novell 共享?

如何挂载 novell 共享?

我想在我的 Linux 上安装 NetWare 服务。有人能给我举个例子说明 fstab 中这行应该是什么样子吗?

答案1

从方向这里

例子:

1)验证ncpfs的安装:

linux~# rpm -q
ncpfs-2.6.6-7

2)为服务器创建挂载点

linux~# mkdir /mnt/myserver

3)创建一个组来分配文件权限

linux~# groupadd nwaccess

4)将用户分配到定义的组

linux~# usermod -G nwaccess veerh01

5)创建密码文件

linux~# echo myserver/myuser.location.nds:mypassword >/etc/ncp-pass
linux~# chmod 600 /etc/ncp-pass

6) 在 /etc/fstab 中创建挂载行 - 即使用您喜欢的编辑器编辑 /etc/fstab 并在其中添加一行具有以下定义的内容:

<server/user> <mountpoint> ncp uid=root,gid=<group>,mode=660,owner=root,A=<server>,passwdfile=/etc/ncp-pass     0 0

对于上面描述的例子,它变成:

myserver/myuser.location.nds /mnt/myserver ncp uid=root,group=nwaccess,mode=660,owner=root,A=myserver,passwdfile=/etc/ncp-pass 0 0

答案2

我们(仍然)运行着 Netware 和 OES 服务器的混合后端。

为了连接到 Netware 服务器,我们告诉用户使用以下 cifs 命令:

sudo mount -t cifs //NETWARESERVER/VOLUMENAME /mount/point/ -o username=USERNAME,file_mode=0777,dir_mode=0777,sec=ntlm

其中最重要的部分是sec=ntlm由于 Netware 运行的是早期版本的 cifs。

为了连接到 OES 服务器,我们告诉用户运行相同的命令,但不带选项sec-ntlm

如果您将其添加到 fstab,我认为您还需要将其添加password=PASSWORD到选项中。

希望有所帮助。

相关内容