#Can I redirect or pipe output from GNOME Terminal to a text file?
15 messages · Page 1 of 1 (latest)
That, but with a single >
i think it's > , or echo
or command | cat yourfiletoappendto.txt
Awesome, thank you! And it's weird, every time I run into something logical in Linux command line that makes sense to me, it's because it's one of the deprecated functions in DOS. I still say that I pipe the output even though I don't use the pipe character; and cat vs. append was literally PC-DOS vs MS-DOS (and DR-DOS). If I could just have it organize the drive like DOS (lettered names starting with A: for the 5.25" floppy, B: for the 3.5" floppy, C: for the internal boot partition, D: for optical, etc), I'd be absolutely golden.
best you can do in linux to familiarize yourself with the various disks or partitions & volumes is type lsblk in terminal
and set volume labels up easily with the gnome-disks app
save this command too:
lsblk -o NAME,TYPE,MODEL,FSSIZE,FSTYPE,OWNER,MOUNTPOINT
Ooh, thank you! Will that only show physical devices, or will it show logical partiitions as drives?
both the graphical package gnome-disk-utility aka gnome disks, or simply "Disks" will show both physical and logical drives
so will lsblk command
For this kinda stuff, I recommend https://linuxjourney.com
especially in the explicit way shown above