6
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Ubuntu 22.04にsambaをインストールしてファイルサーバにする(Linuxユーザーのホームディレクトリを共有)

Last updated at Posted at 2022-10-05

aptパッケージをインストール

sudo apt update
sudo apt upgrade

Sambaをインストール

sudo apt install -y samba

設定ファイル編集

設定ファイルをバックアップ

cd /etc/samba/
sudo cp -a smb.conf smb.conf.default

設定ファイル編集

sudo vim smb.conf

smb.confの末尾に下記追加

[{ユーザー名}]
path = /home/{ユーザー名}/
browsable = yes
writable = yes
guest ok = no
read only = no

Linuxユーザーにsambaパスワードを設定

sudo smbpasswd -a {ユーザー名}
New SMB password:
Retype new SMB password:

と聞かれるので、共有フォルダへアクセスする際のパスワードを設定します。

共有フォルダへアクセスする

\\{samba接続先IPアドレス}\{ユーザー名}

へアクセスし、ユーザー名とパスワードを聞かれたら、ユーザー名と、smbpasswdで設定したパスワードを入力します。

6
12
1

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
6
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?