Written 4 Sep 2026. This is a how-to, not a product card.
Open the house share from a Linux laptop
The house folder is on the old PC. Open it from Ubuntu or Fedora Files (or KDE Dolphin) on the house network. You don't need a NAS for this.
Haven't made the house folder yet? Start with a file share. Need the computer's address first? Find it on the house network. Opening from Windows or a Mac? That is open the house share from a laptop. From a phone? That is open the house share from a phone. From a Chromebook? That is open the house share from a Chromebook. This note is the Linux desktop walk: GNOME Files, then a short Dolphin note.
Skip until the folder exists
If you never made the share, stop. That is a file share. This note assumes Samba is already serving a folder, often named photos, on the computer. The Linux laptop has to be on the same house network. A phone hotspot will not reach it. Don't forward SMB on the router.
What this is
SMB is the language Windows, Mac, phones, and Linux already use for shared folders. GNOME Files (still called Nautilus in some menus) and KDE Dolphin can mount a Samba share without a NAS app. You type the computer's address, the share name, the Samba username, and the share password. That password is the one Samba keeps, not always the SSH login. If you forgot it, set it again in set or change the house-share password.
What you need
The computer's address, the same number you SSH to. Swap the example for yours:
smb://192.168.1.50/photos
If you don't know the number, find it on the house network. If ping fails from the laptop, start with is the computer still on? before you blame Files.
Ubuntu or Fedora (GNOME Files)
Open Files. In the left sidebar, click Other Locations (some builds say + Other Locations). At the bottom, find the Connect to Server field.
Type smb://192.168.1.50/photos (your number, your share name). Click Connect.
A login window opens. Pick Registered User (not Anonymous). Username: the Samba username (usually the Linux login on the computer). Domain: leave blank or workgroup unless you already know a domain. Password: the share password. Check Remember forever if you want. Click Connect.
The share opens like any other folder. Copy one file in. Copy one out. That is the whole check.
Next time, that server often sits under Recent or Network in the sidebar. Stay on the house network. Skip Guest and Anonymous.
KDE (Dolphin)
Open Dolphin. In the address bar, type smb://192.168.1.50/photos and press Enter. Or open Network in the Places panel, then add a network folder if your build shows that.
Enter the Samba username and the share password when asked. Open the folder. Copy one file in. Copy one out.
To keep it handy, right-click the mounted share and add it to Places, or bookmark it. Skip this if GNOME Files already works and you never open Dolphin.
Optional: mount once from a terminal
If you prefer a one-liner on a laptop that already has GNOME:
gio mount smb://192.168.1.50/photos
It asks for the username and password the same way. The share lands under your user GVFS folder and shows in Files. Skip this if the Files UI already worked.
If the laptop cannot see it
Stay on house Wi-Fi or ethernet, not Guest Wi-Fi that isolates devices. Recheck the URL, the share name, and the password. If a phone or Windows laptop cannot see the folder either, Samba probably stopped, or the firewall hid it: when the house share disappeared, check the computer. If the login fails, that is the share password, not a vanished folder.
Some minimal Linux installs lack SMB client bits. On Ubuntu or Debian, install them once:
sudo apt update && sudo apt install -y gvfs-backends smbclient
On Fedora:
sudo dnf install -y gvfs-smb samba-client
Then retry Connect to Server.
If you can see the folder but cannot drop a file in, the Linux folder owner on the computer is the usual culprit. Samba is using that same user, so that user has to own the folder:
sudo chown youruser:youruser /srv/share
Swap youruser and the path if you used a different folder. Try the laptop again.
What this is not
This is not a reason to buy a NAS, Synology Drive, or a VPN. It is not a reason to open SMB to the internet. The share stays on the house network. A phone or a Windows laptop can open the same folder if the Linux desktop is being stubborn.
What next
Prefer Windows or a Mac? Open the house share from a laptop. From a phone: open the house share from a phone. On a Chromebook: open the house share from a Chromebook. Dump camera-roll photos: save phone photos to the house share. If you forgot the share password, set or change the house-share password. If the folder vanishes later, when the house share disappeared, check the computer. After the house can open it, see if the computer still has room. When you want a second copy, that is a backup of the house folder.
Skip
- Skip a NAS app for a first folder.
- Skip exposing SMB to the internet.
- Skip a VPN so you can reach it from a coffee shop.
- Skip writing
/etc/fstabSMB mounts on day one. The Files bookmark is enough. - Skip RAID.
- Skip this if a Windows or Mac laptop already opens the folder and you never use a Linux desktop for files.
Sources
GNOME Help: browse files. Fedora Docs: Samba. Samba wiki: standalone server. Ubuntu Server: Samba as a file server. Official pages only. For the share this opens, see a file share. For the address, see find it on the house network. For the share password, see set or change the house-share password.