...
- Some software packages are needed so we have to install them with the following commands:command
Panel |
---|
sudo apt-get install samba smbfs |
- Once we’ve got samba installed, we’ll need to edit the configuration file, running the following command:
Panel |
---|
sudo gedit /etc/samba/smb.conf |
Wiki Markup We are going to make some changes in smb.conf for the configuration of the server: In the \[ global \] section we have to put the name of our workgroup or domain and uncomment the security parameter:
Code Block |
---|
workgroup = EXAMPLE
.
.
.
security = user
|