Since 1992, Samba is an open-source software that your main goal is to remove the barriers of interoperability between different operating systems.
I need Samba to move files from Windows to Ubuntu and vice-versa for work's issues. Hereafter, you can see the steps how to install Samba:
- sudo apt-get install samba samba-tools
- sudo smbpasswd -a yourusername
- Type your password
- Retype your password
- mkdir /srv/samba/share
- sudo nano /etc/samba/smb.conf
- Press Ctrl+W
- Search for: #security=user
- remove '#' (from "#security=user" to "security=user")
- On bottom of file write the next statements:
- sudo restart smbd
- testparm /etc/samba/smb.conf
[share] path = /srv/samba/share comment = some random files available = yes valid users = yourusername read only = no
Note:
After you typed the last command and got errors message, you have to fix it. But I am 100% sure, it will not show up a error message unless you mistyped some statements.
No comments:
Post a Comment