Fedora19でsamba、NFSのインストール

1.sambaのインストール
sudo smbpasswd -a -U your_username
#ログインのユーザとパスワード
sudo systemctl enable smb.service
#samba自起動

sudo systemctl start smb.service
#sambaが起動

sudo systemctl restart smb.service
# sambaが再起動

sudo firewall-cmd –permanent –zone=public –add-service=samba
#ファイアウォールの設定

mkdir /home/public
chmod 777 /home/public

[share]
comment = Galen’s Share
path = /home/public
writable = yes
valid users = your_username # whoamiでユーザ名を確認

sambaが再起動 (sudo systemctl restart smb.service)

2.NFSの設定
sudo systemctl enable nfs-server.service # NFS自動起動

sudo systemctl start nfs-server.service # NFSが起動

sudo systemctl restart nfs-server.service # NFSが再起動

#ファイアウォールを停止(mount: RPC: Unable to receive; errno = No route to host)

sudo systemctl status firewalld.service
sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service

サンプル:
vi /etc/exports
/home/nfsroot *(rw,sync,no_subtree_check)

3.入力方法の設定
「System Settings」->「Region&Language」->「Input Sources“」

Linux

Posted by arkgame