elementary OS User Handbook
eOS HomeTeamBlogSupportGet Involved
  • πŸ”΅Welcome to elementary OS
  • Overview
    • πŸ“˜Idea & Evolution
    • πŸ“˜Desktop Tour
      • πŸ“–Greeter
      • πŸ“–Panel
      • πŸ“–Dock
      • πŸ“–App Windows
      • πŸ“–Multitasking
    • πŸ“˜System Idiosyncrasies
      • πŸ“–Gestures
      • πŸ“–Hot Corners
      • πŸ“–Picture-in-Picture
      • πŸ“–Display Filters
      • πŸ“–Feedback App
      • πŸ“–Missing Habits
  • Get Started
    • πŸ“—Install elementary OS
      • πŸ“–Writing ISO with Etcher
      • πŸ“–Using GParted
    • πŸ“—Explore System Settings
      • πŸ“–Manage User Accounts
      • πŸ“–Control System Access
      • πŸ“–Set up Date & Time
      • πŸ“–Configure Network
      • πŸ“–Add Online Accounts
      • πŸ“–Stay Secure & Private
      • πŸ“–Adjust Power Settings
      • πŸ“–Set Language & Formats
      • πŸ“–Keyboard Settings
      • πŸ“–Mouse & Touchpad
    • πŸ“—Customize Desktop
      • πŸ“–Set up Visual Style
      • πŸ“–Change Wallpaper
      • πŸ“–Adjust Text Size
      • πŸ“–Configure Dock & Panel
      • πŸ“–Windows and Corners
    • πŸ“—Plug in Hardware
      • πŸ“–Connect via Bluetooth
      • πŸ“–Printers & Scanners
      • πŸ“–Hook up Tablet
  • Best Practices
    • πŸ“™Tips & Tricks
      • πŸ“–Add PPAs
      • πŸ“–Get More Tweaks
      • πŸ“–Max the AppCenter Out
      • πŸ“–Add More Fonts
      • πŸ“–Make QT apps look like GTK
    • πŸ“™2 Advanced
      • πŸ“–Open as Admin
      • πŸ“–Create Local Network
      • πŸ“–Plank Advanced Customization
  • Troubleshooting
    • πŸ“•Installation Issues
    • πŸ“•Common Issues
      • πŸ“–Grub menu 30 sec
      • πŸ“–Nvidia Drivers
      • πŸ“–Double Icons in Plank
      • πŸ“–Sound and Picture Issues
      • πŸ“–Ghost Updates
  • Extra Info
    • πŸ“’Useful Links
    • πŸ“’Feedback
Powered by GitBook
On this page
  • Share a Computer in the Local Network
  • Enter the Shared Directory from Another Computer
  1. Best Practices
  2. 2 Advanced

Create Local Network

Share files within your home network

PreviousOpen as AdminNextPlank Advanced Customization

Last updated 1 year ago

If you have two or more computers at home or in the office, you may want to combine them into the shared local network to directly share files via the file manager.

One of the methods to do that is to install and configure Sambaβ€”a server appβ€”on all computers you want to enable in the network. A (Wi-Fi) router is also required, and it doesn't matter if computers are connected to the router via Ethernet port or Wi-Fi.

The following manual assumes all your computers have elementary OS installed. Almost all work is done via Terminal.

The guides below need to be tested and confirmed.

Share a Computer in the Local Network

  1. Install Samba on a shared computer by running:

sudo apt install samba
  1. Open /etc/samba/smb.conf .

  2. Uncomment (delete semicolon at the beginning of the lines) the following section to share the entire /home directory with a certain user.

[homes]
    comment = Home Directories
    browseable = yes
    read only = no
    create mask = 0700
    directory mask = 0700
    valid users = <allowed-user-name>
  1. If you want to only share a specified directory, add the path to this section. For example:

[homes]
    comment = Home Directories
    browseable = yes
    read only = no
    create mask = 0700
    directory mask = 0700
    valid users = <allowed-user-name>
    path = /home/<your-name>/<directory-name>
  1. Add the user to Samba (independent of system users):

sudo smbpasswd -a <allowed-user-name>
  1. Create and enter the password you want for the user:

sudo smbpasswd -a home
  1. Confirm the password when asked.

MIND that you will not see any symbols (even asterisks) when typing password!

  1. Restart Samba (the system would start Samba automatically on startup):

sudo service smbd restart

You can share different directories for different users by creating individual sections with individual permissions for each of them.

Enter the Shared Directory from Another Computer

  1. Open Files.

  2. In the left panel, click Entire Network.

  3. Select a network (a shared computer) from the list.

NEED a SCREENSHOT of FILES

Enter the Username and Password .

πŸ“™
πŸ“–
as admin
created