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 1 year has passed since last update.

RaspberryPi4 Samba編

Posted at

はじめに

windowsとファイル共有するためにsambaを入れる

sambaのインストール

sudo apt update
sudo apt install samba

共有フォルダの作成

起動ディスクに設定すると書き換え回数増えるので、外付けSSDに共有フォルダを作成する

mkdir /mnt/ex-ssd/share/

設定ファイル

/etc/samba/smb.confに共有フォルダを設定する(一番下に追記する)

[RaspberryPi]
   comment = RP
   browseable = yes
   path = /mnt/ex-ssd/share
   read only = no
   create mask = 0666
   directory mask = 0777
   force user = pi

デフォルトだとホームディレクトリが見えて気持ち悪いのでbrowseableをデフォルトNOにしておく

[global]
   browseable = no

testparamコマンドでチェックしておく

アクセス用のパスワード設定

sudo smbpasswd -a pi

2回聞かれるので入力する(RaspberryPiのパスワードとは別のsambaにアクセスするようのパスワード)

sambaのリスタート

ここまで出来たらsambaをリスタートする

sudo systemctl restart smbd

アクセスしてみる

エクスプローラーのアドレスバーからRaspberryPiにアクセスする

¥¥192.168.xx.xx

ログイン用のダイアログが出てきたら
ユーザー:pi
パスワード:設定したパスワード

フォルダが見えたらOK
image.png

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?