...
To share files between the guest OS we have to set the server and the client. The server will be the Linux guest OS. The steps to set the server are:
- Some software packages are needed so we have to install them with the following 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 |
- We are going to make some changes in smb.conf for the configuration of the server:
Wiki Markup |
---|
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 |
...