Samba : クライアントからの共有アクセス (Ubuntu)2023/04/28 |
Samba で設定した共有フォルダーに、クライアントコンピューターからアクセスします。
|
|
[1] | Ubuntu クライアントから CUI でアクセスする場合は以下のように実行します。 |
root@node01:~#
apt -y install smbclient cifs-utils # [smbclient] コマンドでアクセスする # smbclient (共有名) -U (ユーザー名) root@node01:~# smbclient '\\smb.srv.world\Share01' -U ubuntu Enter WORKGROUP\ubuntu's password: Try "help" to get a list of possible commands. smb: \> ls . D 0 Fri Apr 28 10:05:02 2023 .. D 0 Fri Apr 28 10:01:42 2023 testdir D 0 Fri Apr 28 10:04:10 2023 testfile.txt N 73816 Fri Apr 28 10:04:47 2023 27756732 blocks of size 1024. 20266828 blocks available # ファイルをダウンロードする smb: \> mget "testfile.txt" Get file testfile.txt? y getting file \testfile.txt of size 73816 as testfile.txt (72078.9 KiloBytes/sec) (average 72085.9 KiloBytes/sec) smb: \> !ls snap testfile.txt smb: \> exit # [mount] コマンドでアクセスする # [vers=(SMB プロトコルのバージョン)] # [username=(認証するユーザー名)] root@node01:~# mount -t cifs -o vers=3.0,username=ubuntu '\\smb.srv.world\Share01' /mnt
Password for ubuntu@\smb.srv.world\Share01: ******** # 認証ユーザーのパスワード
root@node01:~# df -hT Filesystem Type Size Used Avail Use% Mounted on tmpfs tmpfs 390M 1.5M 389M 1% /run /dev/mapper/ubuntu--vg-ubuntu--lv ext4 27G 5.9G 20G 24% / tmpfs tmpfs 2.0G 0 2.0G 0% /dev/shm tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock /dev/vda2 ext4 2.0G 155M 1.7G 9% /boot tmpfs tmpfs 390M 4.0K 390M 1% /run/user/0 //smb.srv.world/Share01 cifs 27G 7.2G 20G 27% /mnt # 認証不要の共有へアクセスする場合は [none] 指定 root@node01:~# mount -t cifs -o vers=3,username=none,password=none '\\smb.srv.world\Share' /mnt |
Samba : クライアントからの共有アクセス (Windows)
|
Windows クライアントからの共有アクセスです。Windows 11 を例にします。
|
|
[2] | ファイルエクスプローラーを開き、[ネットワーク] を右クリックして [ネットワークドライブの割り当て] を選択します。 |
[3] | 画面の例にも記載がありますが、フォルダーの欄に [\\サーバー名\共有フォルダ名] と指定します。 |
[4] | 認証不要の設定をしていない通常の共有の場合は、認証を求められます。Samba に登録した ユーザー/パスワード を入力して認証します。 |
[5] | 認証が成功すると、共有フォルダーにアクセスできます。設定した通りに読み書き可能か確認しておくとよいでしょう。 |
Sponsored Link |