i think you need to install SAMBA first.
( i prefer the server AND client version )
sudo apt-get install -y samba samba-common-bin smbclient cifs-utils
now the RPI filemanager should find the by windows shared drives ( after reboot?)
+++ optional +++
for setup a "RPI path" to serve ( call from windows network )
could use RPI user pi with a "remote" password
sudo smbpasswd -a pi
sudo nano /etc/samba/smb.conf
find " workgroup = " and adjust to the windows work group name.
and setup a shared SD cards path ( like for work via desktop )
at end add:
Code: Select all
[share]
path = /home/pi/Desktop/share
available = yes
valid users = pi
read only = no
browsable = yes
public = yes
writable = yes
and make that dir:
mkdir /home/pi/Desktop/share