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
- Skip if SSH still fails. Finish SSH from the couch first.
- Skip pointing the single arrow at anything under
/etc, SSH settings, or a file you care about. Practice only in home tonight. A single arrow replaces the whole file. - Skip
nanoif one short line is enough. That editor job is edit a leftover-box file from the couch. - Skip leftover-box SSH settings,
/etc/shadow, and anything under/etc/ssh. Looking at trusted laptop keys is see which laptop keys the leftover box already trusts. - Skip buying a file manager, a “cloud IDE,” or a NAS to put one short line in a leftover-box text file.
- Skip opening SSH to the internet so you can write files from a coffee shop. That is keep the leftover box on the house network.
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.