转载自:http://www.cnblogs.com/eastson/archive/2012/07/16/2593329.html
网上学习NFS的安装,发现很多文章都说要用到portmap,但是在CentOS的官方软件源里面又找不到该软件包。
后来才知道portmap在CentOS 6上已经更名为rpcbind了。
默认rpcbind是已经安装的,该服务随系统启动时自动启动:
[root@centos-server ~]$ chkconfig rpcbind --list rpcbind 0:off 1:off 2:on 3:on 4:on 5:on 6:off
若要重新安装,可以使用下面的命令:
[root@centos-server ~]$ yum install rpcbind