さくらVPSにsambaを構築する方法
2.sambaの設定
2-1.共有フォルダの作成
mkdir /home/share chmod 777 /home/share
2-2.sambaの設定ファイル
vi /etc/samba/smb.conf *[global]の設定 文字コードの設定 unix charset=UTF-8 dos charset=CP932 workgroup=WORKGROUP hosts allow=ALLじゃなくてもいける。会社だとALLなのかな security=share *[share]の設定 [Share] path=/home/share writable=yes guest ok=yes guest only=yes create mode=0777 directory mode=0777 share modes=yes
3.sambaの起動
3-1.sambaの起動
/etc/rc.d/init.d/smb start /etc/rc.d/init.d/nmb start
3-2.チェックコンフィグへの追加
chkconfig smb on chkconfig nmb on