Windows 7 を NAS サーバーに接続しようとしています (Arch Linux で実行されている Raspberry Pi で Samba を使用)。
「新しいネットワーク ドライブの追加」をクリックしました -> 外部ドライブ パーティションへのパスである \192.168.0.22\mnt\usb\Data。認証ウィンドウがあり、samba が知っているユーザーとパスワードを入力しています。
次に、Windows が計算/検索を行っている数秒間の待機時間があります。最後に、Windows が \192.168.0.22\mnt\usb\Data に到達できないというメッセージが表示されました
私のサーバー上:
ps aux |grep sm
root 1166 0.0 3.0 30464 5800 ? Ss 11:16 0:00 /usr/bin/smbd -D
root 1167 0.0 1.6 29948 3056 ? S 11:16 0:00 /usr/bin/smbd -D
arkon 1189 0.0 0.3 2336 648 pts/0 S+ 11:20 0:00 grep sm
私の構成ファイルは次のとおりです。
[global]
workgroup = WORKGROUP
server string = Samba Server
netbios name = arkonberry
security = user
guest account = user
force user = user
username map = /etc/samba/smbusers
name resolve order = hosts wins bcast
read only = no
#wins support = no
[Data]
comment = Public Storage
path = /mnt/usb/Data
read only = no
writable = yes
browsable = yes
最後に、HDD が適切にマウントされました。
/dev/mmcblk0p1 on /boot type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro)
/dev/sda1 on /mnt/usb/git type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
/dev/sda2 on /mnt/usb/Download type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
/dev/sda3 on /mnt/usb/Data type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
どこで問題が発生するかについて何か考えがありますか? 前もって感謝します !