0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Samba 設定

Posted at

sudo apt-get -y install samba
sudo mkdir /home/share
sudo chmod 777 /home/share
sudo gedit /etc/samba/smb.con

51行目:コメント解除
interfaces = 127.0.0.0/8

58行目:コメント解除
bind interfaces only = yes

[Share]
path = /home/share
writable = yes
guest ok = yes
guest only = yes
create mode = 0777
directory mode = 0777

sudo systemctl restart smbd

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?