this post was submitted on 29 Jul 2025
37 points (97.4% liked)

Linux

57752 readers
476 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

20+ years ago, Lindows had a great app store that let you create an "aisle" of your favorite apps so if/when you'd reinstall your OS, instead of searching and installing all your apps one-by-one, you'd just go to your aisle, click "install all" and boom.

Is there anything that exists like that today?

you are viewing a single comment's thread
view the rest of the comments
[–] FauxLiving@lemmy.world 9 points 1 month ago (2 children)

Just to add a bit more to this for the newbies who are using Arch (god help you).

pacman -Qe | awk '{print $1}' > packages.txt

Will write this list to a file, run without the '> packages.txt' if you just want to see the output and;

sudo pacman -S --needed - < packages.txt

Will install all of the needed (i.e. not installed) packages from that list.

[–] voytrekk@sopuli.xyz 6 points 1 month ago* (last edited 1 month ago) (1 children)

If you use -Qeq, you should be able to skip the ask part of the command.

[–] FauxLiving@lemmy.world 3 points 1 month ago* (last edited 1 month ago)

If you use -Qeq, you should be able to skip the awk part of the command.

TIL

Looks like I gave up on RTFM and turned to awk too early.