Folder sharing, like it exists in ubuntu, doesn't exist in OOB xubuntu. One option is to install
system-config-samba (along with
samba) and use it to set up file sharing. Here's a quick how-to:
1. Install samba and system-config-samba from the software centre or from the command line:
Code:
sudo apt-get install samba system-config-samba
2. Fireup system-config-samba. Look for it under the System submenu (titled "Samba")
3. Create the share (File->Add Share or click the plus icon):
- Directory = select directory to share
- Share name = share name
- Description = description
- Writable = to allow users to write to directory
- Visible = to make the share visible while browsing
- Access tab = select who should have access to the share
4. If you have a firewall active, make sure you allow through the samba ports. If using ufw, then from the command line:
Code:
sudo ufw status verbose
...if the status is enabled and ports 137/udp, 138/udp, 139/tcp, 445/tcp are not allowed through, issue the follow command:
Code:
sudo ufw allow samba
...then check to see that all is okay
Code:
sudo ufw status verbose
Otherwise check using your firewall tool.
5. Connect to the share from other computers.
Bookmarks