1
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.

ラズパイ / Ubuntu でファイル共有(1分で)

Last updated at Posted at 2022-09-06

ラズパイでSambaファイル共有

1分でいきましょう♪

環境

Raspberry Pi 4 / Ubuntu 20.04 (PC や他のラズパイ、Raspian OS でも同じ)

コマンド

sudo apt install samba
sudo gedit /etc/samba/smb.conf      # 後述のように設定ファイルを変更する

sudo pdbedit -a ユーザ名             # samba 用のパスワードを設定
sudo service smbd restart
sudo service nmbd restart

Windows 等からアクセスしてみましょう。( \\ラズパイのPC名 )
ラズパイのPC名は、pdbedit の実行結果画面、あるいはUbuntu 設定→共有 の所に書いてあります。

アクセスできない時は、再起動や設定ファイルを見直し

設定ファイル (/etc/samba/smb.conf)

(行数は、記事投稿時点のもの)

-> 6個の変更

29行目
   workgroup = ワークグループ       # Windows 等に設定してるワークグループ(端末で統一する)

85行目
   unix password sync = no         # yes -> no に変更

100行目
#   map to guest = bad user        # 先頭に #をつけてコメントアウト

175-177行目
[homes]
   comment = Home Directories
   browseable = yes                # 先頭の ; を外し、 yes に変更

181行目
   read only = no                  # 先頭の ; を外し、 no に変更

219-235行目
   プリンター共有関連は、全て先頭に # をつけてコメントアウト

以上です。

PCからファイル共有できて便利!

1
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
1
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?