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?

ubuntuでNASを作ってみた(samba)

Posted at

sambaの構築

sambaはサーバ上のディスクを共有してファイルサーバを構築するできるサービスです。NASと書いていますけど、この記事ではRAIDを組んだりしていないので、ご注意を。
今回は、Ubuntu 24.04.1 LTS で実施しています

事前準備

事前準備としてお決まりのアップデート

apt update
apt upgrade

インストール

apt install samba

共有するディレクトリを作成してパーミッション設定

chmod 777 /var/smbshare

設定ファイル編集

vi /etc/samba/smb.conf

[share]
path = /var/smbshare
browsable = yes
writable = yes
guest ok = no

接続ユーザのパスワード設定

smbpasswd -a -U userid

サービスリスタート

systemctl restart samba

クライアントから接続

windowsなどから、\[ipアドレス]\share にアクセスすると、認証ダイアログがでてくると思いますので、設定したパスワードでログインしてみてください

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?