Written 28 Aug 2026. This is a how-to, not a product card. Buy links are not tagged yet.
Move into a leftover-box folder
After SSH works, change leftover-box folders with cd. You do not need a file manager app for this.
SSH from the couch sits you in a folder. See what's in a leftover-box folder lists the names in that folder. cd is change directory. It moves you into another folder so the next ls, nano, or copy lands where you meant. The leftover box does not need a desktop or a NAS for this one job.
Skip until SSH already works
SSH from the couch should already get you a leftover-box prompt. If you only need names, that is see what's in a leftover-box folder. If you only need to move a file, that is copy a file to the leftover box from your laptop. This note is how you sit in a different folder. Skip this whole note if you are still stuck on the first login.
What this is
cd changes the folder your next leftover-box commands use. ls /etc can look at a folder without moving. After cd /etc, a plain ls lists that folder, and a filename with no path is in that folder. You are not measuring free disk. That is see if the leftover box still has room.
Move into a folder
SSH in. At the leftover-box prompt, pick a folder you already saw with ls. A first leftover-box login is usually home. Try the leftover-box settings folder just to look:
cd /etc
If that folder is not there, the leftover box says no such file or directory. Check the name, or make a leftover-box folder. That is not a reason to buy a NAS. A folder you copied into, if it exists:
cd ~/scripts
The tilde ~ is a short name for your home folder. Swap scripts for a folder you actually have.
See that you moved
After you change folders:
pwd
That prints the full path. Then:
ls
You want the names for the folder you just named. Listing without moving is still see what's in a leftover-box folder.
Go back home
Plain cd with no folder, or:
cd ~
Both put you in the leftover-box login's home folder. That is the usual first-login folder. Optional check:
pwd
You want something like /home/you.
Go up one folder
Two dots mean the folder that holds this one:
cd ..
From /home/you that lands in /home. From /etc that lands in /, the leftover-box root. Check with pwd again. You are only moving. Do not delete names you do not know.
Optional: the folder you just left
To bounce back to the folder you were in a moment ago:
cd -
That prints the path it moved to. Useful when you peeked at /etc and want home again without typing the long path. Skip this if the two-dot form already got you where you wanted.
What this is not
This move is not a backup. It is not a house share other computers browse. That is a folder the house can open. Copying one file from the laptop is copy a file to the leftover box from your laptop. Editing a file once you are in the folder is edit a leftover-box file from the couch.
What next
Need a folder that is not there yet? Make a leftover-box folder. Want the names in this folder? See what's in a leftover-box folder. Need to change one of those files? Edit a leftover-box file from the couch. Need the file on the laptop too? Copy a file to the leftover box from your laptop. Tired of retyping the same long line? Reuse a leftover-box command you already typed. When key login is boring on every computer you use, turn off leftover-box password login once the key works. Keep SSH on the house network: keep the leftover box on the house network. Do not forward port 22.
Skip
- Skip if SSH still fails. Finish SSH from the couch first.
- Skip buying a file manager, Midnight Commander, or a “cloud drive” app to change leftover-box folders.
- Skip
cd /tonight and wandering the whole leftover box. Home, one named folder, and two dots are enough. - Skip deleting names you do not know. Moving is the job.
- Skip opening SSH to the internet so you can change folders from a coffee shop. That is keep the leftover box on the house network.
Sources
GNU Bash: Bourne Shell Builtins. Debian: bash. Ubuntu: bash. Official pages only. For the login, see SSH from the couch. For listing names, see see what's in a leftover-box folder. For making a folder, see make a leftover-box folder. For a short leftover name, see give the leftover box a short name on your laptop. For moving a file, see copy a file to the leftover box from your laptop. For editing a file, see edit a leftover-box file from the couch.