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

Written 29 Aug 2026. This is a how-to, not a product card. Buy links are not tagged yet.

Put a short line into a leftover-box file

After SSH works, put one short line into a leftover-box file with echo so you do not need to open nano. You do not need a file manager app for this.

Make an empty leftover-box file makes a blank name. Edit a leftover-box file from the couch opens the editor. Tonight you only need one short line on disk. echo prints those words, and the arrow next to it parks them in a leftover-box file. You are still only writing a practice line in home. The leftover box does not need a desktop, a file manager, 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 an empty name with no words yet, that is make an empty leftover-box file. If you need to change several lines, that is edit a leftover-box file from the couch. If you only want to read a file that already has words, that is read a leftover-box file without opening the editor. Skip this whole note if you only need a house share other computers browse. That is a folder the house can open.

What this is

echo prints a short line. The single arrow > puts that line into a leftover-box file (and replaces whatever was there). The double arrow >> adds a line at the end. You run it on the leftover box, after SSH. It does not open an editor. That is nano. It does not make an empty file with no words. That is touch. It does not dump a file you already have. That is cat. One short line, same leftover box, parked in a file you named.

Write one line in home

SSH in. Put one short line into a practice file. A short name with no spaces is easier to type later:

echo 'hello from the leftover box' > ~/hello.txt

The tilde ~ is a short name for your home folder. Single quotes keep the words together. The single arrow > means “put this into the file.” If hello.txt already had words, they are gone. That is the whole first-night trick for a brand-new line.

Then peek without opening the editor:

cat ~/hello.txt

You should see that same short line. That is enough for tonight.

Useful extras, still writing only

Need a second line under the first? Use the double arrow so you do not wipe the first line:

echo 'second line' >> ~/hello.txt

cat ~/hello.txt

You should see both lines. The double arrow >> means “add at the end.”

Need the file empty again before a clean rewrite? That empty-file job is make an empty leftover-box file, or rewrite with one echo and a single arrow.

Need a leftover-box folder first? That is make a leftover-box folder. Then keep the filename and drop the line inside:

echo 'hello from the leftover box' > ~/notes/hello.txt

If notes is missing, make it first. echo will not invent the folder for you.

If the leftover box says command not found, install the usual tools, then try again:

sudo apt install coreutils

Debian and Ubuntu Server usually already have it. That install is not a reason to buy a file manager.

When you are done practicing:

rm -i ~/hello.txt

What this is not

This is not an empty file with no words. That is make an empty leftover-box file. It is not an editor for several lines. That is edit a leftover-box file from the couch. It is not a dump of a file you already have. That is read a leftover-box file without opening the editor. It is not a copy of a file. That is copy a leftover-box file without leaving the box. It is not a compare of two leftover-box files. That is see whether two leftover-box files are the same. It is not asking what kind of file this is. That is see what kind of leftover-box file this is. It is not a house share other computers browse. That is a folder the house can open.

What next

Need an empty name first? Make an empty leftover-box file. Need to change several lines? Edit a leftover-box file from the couch. Need a short dump after you write? Read a leftover-box file without opening the editor. Need a spare before you rewrite? Copy a leftover-box file without leaving the box. Need to see if a spare still matches? See whether two leftover-box files are the same. Need the throwaway gone for real? Delete a leftover-box file carefully. Need a folder for the file to land in? Make a leftover-box folder. Need a file from the laptop instead? Copy a file to the leftover box from your laptop. When a house job broke, look at the leftover box's own diary: when something broke, look at the leftover-box log. 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

Debian: echo. Ubuntu: echo. GNU coreutils: echo. Official pages only. For the login, see SSH from the couch. For an empty file, see make an empty leftover-box file. For the editor, see edit a leftover-box file from the couch. For a short dump, see read a leftover-box file without opening the editor.

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. Make an empty leftover-box fileAfter SSH works, make an empty leftover-box file with touch so nano and copies have a file to land on. You do not need a file manager app 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. Read a leftover-box file without opening the editorAfter SSH works, print a leftover-box file with cat so you can read it without opening nano. Short files only. You do not need a file viewer 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 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. See whether two leftover-box files are the sameAfter SSH works, compare two leftover-box files with diff so you can tell if the spare still matches. You do not need a file viewer app for this. Delete a leftover-box file carefullyAfter SSH works, delete one leftover-box file with rm -i. Ask first. Skip rm -rf. You do not need a NAS for this. 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.