如何检查是否安装了Ubuntu中的NFS服务器?

时间:2013-11-25 23:09:21

标签: linux ubuntu nfs

我正在尝试将NFS服务器安装到我的全新Ubuntu机器上,并且即将关注this article。但在此之前,有没有办法弄清楚它是否已经安装好了?

我正在运行Ubuntu 12.04

更新: -

这是我在运行之后得到的 -

dpkg -la | grep nfs

ii  libnfsidmap2                     0.23-2                                            An nfs idmapping library
ii  nfs-common                       1:1.2.2-1ubuntu1                                  NFS support files common to client and server

而aptitude命令就这样给了我 -

aptitude search nfs

p   fai-nfsroot                                                                                                    - Fully Automatic Installation nfsroot package
v   knfs                                                                                                           -
p   libfile-nfslock-perl                                                                                           - perl module to do NFS (or not) locking
p   libnfsidmap-dev                                                                                                - header files and docs for libnfsidmap
i A libnfsidmap2                                                                                                   - An nfs idmapping library
p   libyanfs-java                                                                                                  - Yet Another NFS - a Java NFS library
v   nfs-client                                                                                                     -
i   nfs-common                                                                                                     - NFS support files common to client and server
p   nfs-kernel-server                                                                                              - support for NFS kernel server
v   nfs-server                                                                                                     -
p   nfs4-acl-tools                                                                                                 - Commandline and GUI ACL utilities for the NFSv4 client
p   nfswatch                                                                                                       - Program to monitor NFS traffic for the console
p   p3nfs                                                                                                          - to mount the file systems on the Psion/Symbian PDA/Phone
p   unfs3                                                                                                          - User-space NFSv3 Server
p   unionfs-fuse                                                                                                   - Fuse implementation of unionfs

我也尝试了netstat命令 -

netstat -tl | grep 2049

并且没有人也在听这个

2 个答案:

答案 0 :(得分:1)

如果您知道包裹的名称,请尝试dpkg -l package-name。那应该列出包(它旁边有两个i)如果它已经安装,或者如果没有则给你一个错误。

Ubuntu 13.10(在此处运行VM)调用其服务器包nfs-kernel-server。 (旧版本上可能还有其他软件包或其他名称;看起来曾经被称为knfs。但nfs-kernel-server是推荐的软件包。)

如果你正在使用一个不错的包管理程序(比如Synaptic,我强烈推荐),你可以在搜索框中键入一些东西,它会找到适合你的东西 - 此时你可以将它设置为安装(除非您从源代码安装,如果您可以使用该版本的Ubuntu版本,我不建议这样做。)

答案 1 :(得分:1)

dpkg -la | grep nfs

将列出您已安装且名称包含nfs的所有软件包。

aptitude search nfs

将告诉您nfs服务器包名为nfs-server。既然你没有看到,我会说你没有安装它。

为了安全起见,也可以:

netstat -tl | grep 2049

检查是否有人正在侦听nfs端口。