Written 2 Sep 2026. This is a how-to, not a product card. Buy links are not tagged yet.
Peek at leftover-box partitions via /proc/partitions
After a parted -l layout printout, /proc/partitions is a look-only kernel list of names and sizes. Nothing is created, wiped, or mounted.
/proc/partitions is a text file the Linux kernel keeps in memory. It lists whole disks and slices the kernel already knows about. Tonight you only read that list on the leftover box. You do not format, wipe, or attach a folder.
Skip until SSH works
If you cannot log in from the couch yet, stop. That is SSH from the couch. A kernel partition list does not help a login that fails.
If you only need the friendly disk tree, that is see disks and USB sticks on the leftover box (lsblk). If you only need which folders are already attached, that is see which leftover-box folders are already attached (findmnt).
What this is
/proc is a special folder of live kernel facts. Files there are not ordinary documents on the disk. They are snapshots the kernel builds when you open them.
parted -l and fdisk -l print layout tools' views, often with table type and filesystem hints. /proc/partitions is the kernel's shorter list. It shows major and minor numbers, size in 1K blocks, and a short name like sda or sda1. Same leftover box, third look-only angle. Still no write, format, or wipe.
Practice: read the kernel list (look only)
SSH into the leftover box from the couch.
Then print the file:
cat /proc/partitions
The leftover box should show a short header, then lines with columns. Columns are often major, minor, blocks, and name. Whole disks and slices both appear. The kernel is telling you which block devices it already knows. It is not inviting you to rebuild them.
Optional: page through a long list:
less /proc/partitions
Press q to leave less.
Home-safe look only on the leftover box. Do not pipe this into a wipe tool. Do not run wipefs, dd, format, mount, or umount as tonight's job.
Optional: compare names with the friendly tree you already practiced:
lsblk
Names should line up with what you saw in /proc/partitions. If a USB stick is missing from both, reseat the stick. Then check see if the USB backup disk showed up. Still no format tonight.
Optional: after you plug in a USB for backup
Plug the stick into the leftover box.
Run lsblk.
Then run cat /proc/partitions again.
You should see a new short name for the stick. It is often sdb or sdb1, or similar. Compare with parted -l if you want a layout-style map. The backup job, once a path is live, is a backup of the leftover-box folder.
Useful extras, still a look
Skip editing anything under /proc. These files are read-only views. They are not a place to save a new partition map.
Skip wipefs, smartctl, interactive parted, fdisk without -l, mount, umount, dd, shred, format, and rewriting fstab. Those are not this note.
Skip buying a NAS because a leftover box number looks unfamiliar. Free room is see if the leftover box still has room.
Skip screen, tmux, and port 22 forwarding. Keep SSH on the house network: keep the leftover box on the house network.
What this is not
This is not a parted -l layout printout. That is peek at leftover-box partition layout with parted. It is not the classic fdisk -l table. That is peek at leftover-box partition tables with fdisk. It is not the friendly disk tree. That is see disks and USB sticks on the leftover box.
What next
Need parted's layout first? Peek at leftover-box partition layout with parted. Need room left on a path? See if the leftover box still has room.
Skip
- Skip if SSH still fails. Finish SSH from the couch first.
- Skip
parted -l,fdisk -l,lsblk, orfindmntas tonight's job if you only came for this look-only peek. Those notes already exist. - Skip writing under
/proc. Read only. - Skip
wipefs,smartctl,mount,umount,dd,shred, format, and rewriting fstab. - Skip buying a NAS because a blocks column looks unfamiliar.
- Skip opening SSH to the internet. That is keep the leftover box on the house network. Do not forward port 22.
Sources
Debian: proc(5) (see partitions). Linux kernel docs: The /proc Filesystem. Official pages only. For parted’s layout printout, see peek at leftover-box partition layout with parted. For the classic fdisk table, see peek at leftover-box partition tables with fdisk. For udev properties, see peek at leftover-box disk details with udevadm. For printed labels and UUIDs, see read leftover-box disk labels and UUIDs. For the disk-name list, see see disks and USB sticks on the leftover box. For the mount map, see see which leftover-box folders are already attached. For free room, see see if the leftover box still has room. For a second copy once a USB path is live, see a backup of the leftover-box folder. For the login, see SSH from the couch.