
For simplicity, it may be useful to have a folder on the Raspberry that can be accessed from your PC.
I use it for example for:
To do this, I describe the installation and configuration of Samba
Install Samba
As always before an installation, remember to do a system update. It can't hurt.
sudo apt-get updatesudo apt-get upgradeWe can now move on to the Samba facility:
sudo apt-get install samba samba-common
Then we'll edit the file /etc/samba/smb.conf
vi /etc/samba/smb.conf
At the very end of the file, delete the # to decomment the last two lines:
interfaces = 127.0.0.0/8 eth0bind interfaces only = yes[Share]
Comment = Sharing Samba on Raspberry Pi
path = /home/lional/sharing
writable = yes
guest ok = yes
guest only = yes
create mask= 0777
directory mask= 0777
read only = No
sudo systemctl restart smbd.service
