this post was submitted on 28 Jun 2024
278 points (77.7% liked)

Linux

45573 readers
792 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 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 week ago (1 children)

Installing Arch appears to be more complex than Mint's Click Yes x4 GUI. Should I expect almost everything to just work after install?

[–] [email protected] 1 points 1 week ago* (last edited 1 week ago) (1 children)

Not even close, if you actually install barebones arch, then barebones arch is exactly that, barebones. You wont even have a DE.

Endeavour is what you want. It's just straight up arch, but with all the stuff you'd want to set up anyway done for you.

And if you want an "app-store" style app to browse packages with, and not fiddle with the command line to manage packages, install pamac. It can be expanded with AUR and flatpak support.

[–] [email protected] 1 points 1 week ago (1 children)

If I knew what parts I most wanted then maybe I could do bare arch but I guess Endeaver is the way to ho.

[–] [email protected] 1 points 1 week ago (1 children)

Well, Endeavour is just arch. If you want, you can achieve the same install that has only the things you need, by removing things instead of just adding.

IMO it starts off closer to the config most people want, so it's less work to take it the rest of the way.

[–] [email protected] 1 points 3 days ago (1 children)

What should I use to install a program on Endeavour? Yay? Aur?

[–] [email protected] 2 points 3 days ago* (last edited 2 days ago)

Pacman is the actual system package manager.

Yay is an AUR helper, a program that automates all the steps of installing something from the AUR.

The AUR or Arch User Repository is a way for individuals in the community to easily distribute software, or create software installers, without going though the work of getting something into the official repos.

Here's the first thing I do on a new system, yay -S pamac. This will install pamac, a GUI for browsing, installing and uninstalling packages. (Both normal repos and AUR)

Generally, packages from the AUR get compiled by your system and then installed. This can be really slow, hence there is often a "-bin" version of packages that installs a pre-compiled binary.

You can also find "-git" versions of packages, these install the very latest version directly from the development repo.