Menjalankan NFS di Fedora 19

>> Senin, 28 Oktober 2013

[root@dlp ~]# yum -y install nfs-utils
[root@dlp ~]# vi /etc/idmapd.conf
# line 5: uncomment and change to your domain name
Domain = server.world
[root@dlp ~]# vi /etc/exports
# write like below *note
/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 

Read more...

Disable IPV6 pada ubuntu

edit file sysctl.conf

sudo gedit /etc/sysctl.conf
Tambahkan baris berikut pada bagian akhir

# IPv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
restart sysctl

sudo sysctl -p

Read more...

  © Blogger templates Sunset by Ourblogtemplates.com 2008

Back to TOP