Ubuntu 14.04:如何使用mount.cifs,mount.nfs,它们不再存在于存储库中?


14

在Ubuntu 12 LTS中,我始终使用mount.cifsmount.nfs

现在它们不在Ubuntu 14.04存储库中,那么您如何使用mount cifs和mount nfs或将它们安装在14中呢?

谢谢

Ubuntu 12.04始终适用于:

 root@ub12box# mount -t cifs -o user=administrator '\\192.168.0.1\Data' /tmp/myServer ; df ;
 Password: ***************
 Filesystem                1K-blocks      Used Available Use% Mounted
 on /dev/sdb2                 144636 85800  26058836  8% /
 \\192.168.0.1\Data 8059772 652288 407484  6% /tmp/myServer

但在Ubuntu 14.04机器上的相同命令中不起作用:

root@ub14box# mount -t cifs -o user=administrator '\\192.168.0.1\Data' /tmp/myServer ; df ;
mount: block device \\192.168.0.1\Data is write-protected, mounting read-only 
mount: cannot mount block device \\192.168.0.1\Data read-only

Filesystem                1K-blocks      Used Available Use% Mounted
on /dev/sdb2                 126636 950900  99958936  2% /

root@ub14box# dmesg|tail
[ 2023.664186] Status code returned 0xc000006d NT_STATUS_LOGON_FAILURE
[ 2023.664197] CIFS VFS: Send error in SessSetup = -13
[ 2023.667124] CIFS VFS: cifs_mount failed w/return code = -13
[ 2023.676417] Status code returned 0xc000006d NT_STATUS_LOGON_FAILURE
[ 2023.676424] CIFS VFS: Send error in SessSetup = -13
[ 2023.676499] CIFS VFS: cifs_mount failed w/return code = -13

它对我来说适用于14.04.4 LTS。
克里斯K

Answers:


19

mount.cifs命令是通过提供cifs-utilsmount.nfs通过nfs-common

通常,当您在寻找特定文件而又不知道哪个文件包提供该文件时,可以在Ubuntu存储库中或中搜索synaptic。或者,您可以使用apt-file

如果尚未安装,请使用进行安装,sudo apt-get install apt-file然后使用进行更新apt-file update。完成此操作后,您可以轻松搜索软件包内容:

$ apt-file search mount.cifs mount.nfs
cifs-utils: /sbin/mount.cifs
cifs-utils: /usr/share/man/man8/mount.cifs.8.gz
$ apt-file search mount.nfs
manpages-fr-extra: /usr/share/man/fr/man8/mount.nfs.8.gz
manpages-fr-extra: /usr/share/man/fr/man8/umount.nfs.8.gz
nfs-common: /sbin/mount.nfs
nfs-common: /sbin/mount.nfs4
nfs-common: /sbin/umount.nfs
nfs-common: /sbin/umount.nfs4
nfs-common: /usr/share/man/man8/mount.nfs.8.gz
nfs-common: /usr/share/man/man8/umount.nfs.8.gz

1
非常感谢!这非常有帮助!我非常感激!!!
米糠

还有一个问题。安装完这些软件包后,我注意到我的机器现在为rpcbindrpc.statd打开了端口。我可以禁用它们以某种方式关闭这些端口吗?
米糠

1
@Bran我确定您可以,但我不知道我的想法如何。您可以将其发布为新问题。
terdon

找到了它:/etc/init.d/rpcbind和/ sbin / rpcbind <-我刚刚将它们重命名并重新启动,现在服务器没有rpcbind功能。非常感谢!
米糠
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.