this post was submitted on 03 Dec 2025
48 points (90.0% liked)

Linux

60200 readers
963 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
 

Hi, i am thinking of switching to gentoo, and wanted to ask if its a good idea. Anything i should look out for?

Btw im coming Form arch

Thx :3

you are viewing a single comment's thread
view the rest of the comments
[–] nyan@sh.itjust.works 13 points 1 week ago (1 children)

Take your time with the install process. It's possible that you may breeze through it. It's also possible that you may discover that, say, there's something wrong with the EFI implementation of the system you're installing to that you need to do some research to resolve. I've had both experiences.

Once installed, Gentoo is pretty much rock-solid, and almost any issue you have can be fixed if you're willing to put the effort in. Portage is a remarkably capable piece of software and it's worth learning about its more esoteric abilities, like automatic user patch application.

Do take the time to set up a binary package host. This will allow you to install precompiled versions of packages where you've kept the default USE flags. Do everything you possibly can to avoid changing the flags on webkit-gtk, because it is quite possibly the worst monster compile in the tree at the moment and will take hours even on a capable eight-core processor. (Seriously, it takes an order of magnitude more time than compiling the kernel does.)

Install the gentoolkit package—equery is a very useful command. If you find config file management with etc-update difficult to deal with, install and configure cfg-update—it's more friendly.

If you're not gung-ho about Free Software, setting ACCEPT_LICENSE="* -@EULA" (which used to be the default up until a few years ago) in make.conf may make your life easier. Currently, the default is to accept only explicitly certified Free Software licenses (@FREE); the version I've given accepts everything except corporate EULAs. It's really a matter of taste and convenience.

Lastly, it's often worthwhile to run major system upgrades overnight (make sure you --pretend first to sort out any potential issues). If you do want to run updates while you're at the computer, reduce the value of -j and other relevant compiler and linker options to leave a core free—it'll slow down the compile a bit, but it'll also vastly improve your experience in using the computer.

(I've been a happy Gentoo user for ~20 years.)

[–] eshep@social.trom.tf 1 points 1 week ago

@Twakyr YES, I completely forgot about that, thank you @nyan! Definitely install equery, this is an invaluable tool.