4
3

More than 3 years have passed since last update.

RaspberryPiでWindowsとファイル共有

Posted at
  1. Sambaをインストール
    sudo apt-get -y update
    sudo apt-get -y upgrade
    sudo apt-get install samba

  2. 設定ファイルを更新
    sudo vi /etc/samba/smb.conf
    設定ファイルの最後に追加
    ※共有名や共有パスは任意
    [Share]
    comment = Raspberry Pi
    path = /home/pi/Public
    guest ok = yes
    read only = no
    browsable = yes
    force user = pi

  3. Sambaを再起動
    sudo systemctl restart smbd

これで、Windowsからネットワークを確認するとRaspberyPiが見れるはず

4
3
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
4
3