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.

Make a leftover-box folder

After 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.

SSH from the couch sits you in a folder. See what's in a leftover-box folder lists names. Move into a leftover-box folder sits you in one that already exists. mkdir is make directory. It creates an empty folder you named, usually in home, so the next copy or edit is not dumped on top of everything else. The leftover box does not need a desktop, a NAS, or a cloud drive 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 the folder is already there and you just need to sit in it, that is move into a leftover-box folder. If you only need one file from the laptop, that is copy a file to the leftover box from your laptop. Skip this whole note if the leftover box already has the folder you want.

What this is

mkdir creates an empty folder. It does not copy files into that folder. It does not share the folder with phones and laptops. That is a folder the house can open. It does not measure free disk. That is see if the leftover box still has room. A folder is just a named place. Home gets messy if every scp lands in ~.

Make one folder in home

SSH in. At the leftover-box prompt, start in home if you are not sure:

cd ~

Then make a folder you named. A short name with no spaces is easier to type later:

mkdir ~/notes

The tilde ~ is a short name for your home folder. Swap notes for a name you will remember. Letters, numbers, and a hyphen are enough. Skip spaces tonight. If that folder already exists, the leftover box says so. That is fine. You do not need a second copy of the same name.

See that it is there

List home:

ls ~

You want notes in the list. Optional look at just that folder:

ls -ld ~/notes

The d at the start of the line means directory, which is the leftover box's word for folder. Then sit in it:

cd ~/notes

pwd

You want something like /home/you/notes. An empty folder lists nothing useful. That is the point. You just made a place.

Optional: a folder inside a folder

If you want notes/keep and notes is not there yet, one command can make both:

mkdir -p ~/notes/keep

The -p means make the parents if they are missing, and stay quiet if they already exist. Skip -p tonight if one folder in home is enough. Do not run mkdir under / or /etc. Those are leftover-box system folders. Home is the practice place.

Put something in it

A throwaway file you can delete later:

echo 'hello leftover' > ~/notes/hello.txt

Then:

ls ~/notes

You want hello.txt. Optional edit: edit a leftover-box file from the couch. Optional copy from the laptop into that folder:

scp ./photo.jpg leftover:~/notes/

That is the same scp as copy a file to the leftover box from your laptop, with the folder on the leftover-box side. Swap the filename for yours.

Remove the practice folder if it is empty

If you only wanted a test:

rm ~/notes/hello.txt

Then, only if the folder is empty:

rmdir ~/notes

rmdir refuses if anything is still inside. That is the safe one. Skip rm -r and rm -rf tonight. Those delete a folder and everything in it, with no useful undo. Keep the folder if you are about to copy real files into it.

What this is not

This folder is a name on the leftover box. It is not a house share other computers browse. That is a folder the house can open. It is not a checked backup. That is a backup of the leftover-box folder. Free disk left is still see if the leftover box still has room.

What next

Need to sit in the new folder? Move into a leftover-box folder. Want the names again? See what's in a leftover-box folder. Need a file from the laptop in that folder? Copy a file to the leftover box from your laptop. Need a spare of a leftover-box file that is already there? Copy a leftover-box file without leaving the box. Need to change a file in place? Edit a leftover-box file from the couch. 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 coreutils: mkdir invocation. Debian: mkdir. Ubuntu: mkdir. Official pages only. For the login, see SSH from the couch. For listing names, see see what's in a leftover-box folder. For sitting in a folder, see move into a leftover-box folder. 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. Move into a leftover-box folderAfter SSH works, change leftover-box folders with cd. You do not need a file manager app 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. Copy a leftover-box file without leaving the boxAfter SSH works, copy a leftover-box file with cp so you can edit a spare without wrecking the original. You do not need a NAS for this. Rename or move a leftover-box fileAfter SSH works, rename or move a leftover-box file with mv so the name matches the job. The old name is gone. 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. 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. A folder the house can openShare one folder from the leftover box so phones and laptops can open it. Samba is the usual name for that job on Debian and Ubuntu. 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.