Menjalankan NFS di Fedora 19
>> Senin, 28 Oktober 2013
[root@dlp ~]# yum -y install nfs-utils# line 5: uncomment and change to your domain name
[root@dlp ~]# vi /etc/idmapd.conf
Domain = server.world# write like below *note
[root@dlp ~]# vi /etc/exports
/home 10.0.0.0/24(rw,sync,no_root_squash,no_all_squash)# *note
/home ⇒ shared directory
10.0.0.0/24 ⇒ range of networks NFS permits accesses
rw ⇒ writable
sync ⇒ synchronize
no_root_squash ⇒ enable root privilege
no_all_squash ⇒ enable users' authority
[root@dlp ~]# systemctl start rpcbind.service
[root@dlp ~]# systemctl start nfs-server.service
[root@dlp ~]# systemctl start nfs-lock.service
[root@dlp ~]# systemctl start nfs-idmap.service
[root@dlp ~]# systemctl enable rpcbind.service
[root@dlp ~]# systemctl enable nfs-server.service
[root@dlp ~]# systemctl enable nfs-lock.service
[root@dlp ~]# systemctl enable nfs-idmap.service
0 komentar:
Posting Komentar