Labthrift Labthrift What to buy. What to skip. Why.

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

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.

Also on this topic

SSH from the couchType commands on the leftover box from your laptop, on the house network. Password login first. Do not open this to the internet. See what's in a leftover-box folderAfter SSH works, list the leftover-box folder you are sitting in with ls. You do not need a file manager app for this. Make a leftover-box folderAfter SSH works, make a leftover-box folder with mkdir so copies and edits have a place to land. You do not need a NAS for this. Copy a file to the leftover box from your laptopAfter SSH works, use scp to move one file without a USB stick. A short leftover name makes the typing shorter. You do not need a NAS for this. Edit a leftover-box file from the couchAfter SSH works, open a leftover-box file with nano, change a line, and save. The keys at the bottom of the screen are the whole trick. You do not need a new editor. Reuse a leftover-box command you already typedAfter SSH works, flip back through commands with the Up arrow or history. You do not need a notebook for the same long line twice. Give the leftover box a short name on your laptopAfter SSH works, put a short name in your laptop SSH config so you type ssh leftover instead of the long address. You do not need a new router. See if the leftover box still has roomAfter the house folder is working, check that the leftover box is not filling up. Photos stop copying when the disk is full. You do not need a NAS for this look. Turn off leftover-box password login once the key worksAfter the laptop key login is boring, tell SSH to stop accepting the leftover-box password. The key is how you get in. A keyboard on the leftover box is the backup now.