Gentoo Linux

Gentoo Linux (pronounced /ˈɛnt/ JEN-too[2]) is a Linux distribution built using the Portage package management system. Unlike a binary software distribution, the source code is compiled locally according to the user's preferences and is often optimized for the specific type of computer. Precompiled binaries are available for some larger packages or those with no available source code.[3]

Gentoo Linux
DeveloperGentoo Foundation
OS familyUnix-like
Working stateCurrent
Source modelOpen source
Initial release26 July 2000 (2000-07-26)[1]
Repository
Update methodRolling release
Package managerPortage
PlatformsIA-32, x86-64, IA-64, PA-RISC; PowerPC 32/64, SPARC 64-bit, DEC Alpha, ARM 32/64
Kernel typeMonolithic (Linux)
UserlandGNU
Default user interfaceXfce from Live CD, LXQt, KDE, GNOME, Fluxbox
LicenseFree software
Official websitewww.gentoo.org

Gentoo Linux was named after the fast-swimming gentoo penguin. The name was chosen to reflect the potential speed improvements of machine-specific optimization, which is a major feature of Gentoo. Gentoo package management is designed to be modular, portable, easy to maintain, and flexible. Gentoo describes itself as a meta-distribution because of its adaptability, in that the majority of users have configurations and sets of installed programs which are unique to the system and the applications they use.[4]

History

Gentoo Linux was initially created by Daniel Robbins as the Enoch Linux distribution. The goal was to create a distribution without precompiled binaries that was tuned to the hardware and only included required programs.[5] At least one version of Enoch was distributed: version 0.75, in December 1999.[6]

Daniel Robbins and the other contributors experimented with a fork of GCC known as EGCS developed by Cygnus Solutions. At this point, "Enoch" was renamed "Gentoo" Linux (the gentoo species is the fastest-swimming penguin[7]). The modifications to EGCS eventually became part of the official GCC (version 2.95), and other Linux distributions experienced similar speed increases.[8]

After problems with a bug on his own system, Robbins halted Gentoo development and switched to FreeBSD for several months, later saying, "I decided to add several FreeBSD features to make our autobuild system (now called Portage) a true next-generation ports system."[9]

Gentoo Linux 1.0 was released on March 31, 2002.[10] In 2004, Robbins set up the non-profit Gentoo Foundation, transferred all copyrights and trademarks to it, and stepped down as chief architect of the project.[11]

The current board of trustees[12] is composed of five members who were announced (following an election) on March 2, 2008.[13] There is also a seven-member Gentoo Council that oversees the technical issues and policies of Gentoo.[14] The Gentoo Council members are elected for a period of one year, each year by the active Gentoo developers. When a member of the Council retires, the successor is voted into place by the existing Council members.[15]

The Gentoo Foundation is a 501(c)(6) non-profit foundation, registered in the State of New Mexico.[16] In late 2007, the Foundation's charter was revoked,[17] but by May 2008 the State of New Mexico declared that the Gentoo Foundation, Inc. had returned to good standing and was free to do business.[18]

Features

Gentoo running on a dual-monitor setup.

Gentoo appeals to Linux users who want full control of the software that is installed and running on their computer.[19]:402 People who are prepared to invest the time required to configure and tune a Gentoo system can build very efficient desktops and servers. Gentoo encourages users to build a Linux kernel tailored to their particular hardware. It allows very fine control of which services are installed and running; also, memory usage can be reduced, compared to other distributions, by omitting unnecessary kernel features and services.[19]:386

A very large collection of software is available. Each package contains details of any dependencies on other software, so only the minimum set need be installed to run the required applications. Optional features of individual packages, for example whether they require LDAP support, can be selected by the user and any resulting package requirements are automatically included in the set of dependencies.[19]:386

As Gentoo does not impose a standard look and feel, installed packages usually appear as their authors intended.[19]:387

Portage

Installing software. For example here we see that Darktable will build with Flickr and geolocation support.

Portage can be considered the heart of Gentoo. Portage is Gentoo's software distribution and package management system. The original design was based on the ports system used by the Berkeley Software Distribution (BSD) based operating systems. The Gentoo repository contains over 19,000 packages ready for installation in a Gentoo system.[20]

A single invocation of portage's emerge command can update the local copy of the Gentoo repository, search for a package, or download, compile, and install one or more packages and their dependencies. The built-in features can be set for individual packages, or globally, with so-called "USE flags".[20]

Portage provides a way to set the amount of processes that can run and the maximum load average for the processor cores using the EMERGE_DEFAULT_OPTS flag [21] in either the default configuration file at /etc/portage/make.conf or a file that exports the flag, like in /root/.bashrc. Note that root is required to run emerge, so the .bashrc needs to be in the user root's directory. This can be used like so in make.conf:

EMERGE_DEFAULT_OPTS="-j$(nproc) -l$(nproc)"

Pre-compiled binaries are provided for some applications with long build times, such as LibreOffice, Apache OpenOffice and Mozilla Firefox, but users lose the ability to customize optional features. There are configuration options to reduce compilation times by enabling parallel compilation and using pipes instead of temporary files;[22] package compilation may also be distributed over multiple computers.[23] In addition, the user may be able to mount a large filesystem in RAM to greatly speed up the process of building packages. Some of these approaches have drawbacks and so are not enabled by default. When installing the same package on multiple computers with sufficiently similar hardware, the package may be compiled once and a binary package created[24] for quick installation on the other computers.

Example of /etc/portage/make.conf:

# These settings were set by the catalyst build script that automatically
# built this stage.
# Please consult /usr/share/portage/config/make.conf.example for a more
# detailed example.
COMMON_FLAGS="-O2 -march=athlon64 -pipe"
CFLAGS="${COMMON_FLAGS}"
CXXFLAGS="${COMMON_FLAGS}"
FCFLAGS="${COMMON_FLAGS}"
FFLAGS="${COMMON_FLAGS}"

# Output from cpuid2cpuflags
CPU_FLAGS_X86="3dnow 3dnowext mmx mmxext popcnt sse sse2 sse3 sse4a"

# NOTE: This stage was built with the bindist USE flag enabled
PORTDIR="/var/db/repos/gentoo"
DISTDIR="/var/cache/distfiles"
PKGDIR="/var/cache/binpkgs"

# This sets the language of build output to English.
# Please keep this setting intact when reporting bugs.
LC_MESSAGES=C

USE="-qt5 -dvdr webp flickr geolocation -bluetooth alsa -pulseaudio minizip -closure-compile -cups -gnome-keyring -kerberos -proprietary-codecs icu system-icu inspector wayland gles"

# https://wiki.gentoo.org/wiki/Radeon
VIDEO_CARDS="radeon r600"

# https://gentoo.org/downloads/mirrors/
# https://wiki.gentoo.org/wiki/GENTOO_MIRRORS
GENTOO_MIRRORS="https://mirror.yandex.ru/gentoo-distfiles/ https://gentoo-mirror.alexxy.name/"

Another useful feature on Gentoo for package management: equery tool. For example here we check keywords of Firefox:

Here we see dependencies for Firefox:

Here we see USE flags for Firefox:

Portability

As Gentoo is a source-based distribution with a repository describing how to build the packages, adding instructions to build on different machine architectures is particularly easy.[25]

Originally built on the IA-32 architecture, Gentoo has since been ported to many others. It is officially supported and considered stable on IA-32, x86-64, IA-64, PA-RISC, 32-bit and 64-bit PowerPC, 64-bit SPARC, DEC Alpha, and both 32- and 64-bit ARM architectures.[26] It is also officially supported but considered in development state on MIPS,[27] PS3 Cell Processor, System Z/s390,[28] and SuperH. Official support for 32-bit SPARC hardware has been dropped.[29]

Portability toward other operating systems, such as BSD-derived ones including macOS, is under active development by the Gentoo/Alt project. The Gentoo/FreeBSD project already has a working guide based on FreeSBIE,[30] while Gentoo/NetBSD, Gentoo/OpenBSD and Gentoo/DragonFly are being developed.[31] There is also a project to get Portage working on OpenSolaris. There was an unofficial project to create a Gentoo port to GNU Hurd, but it has been inactive since 2006.[32]

It is also possible to install a Gentoo Prefix (provided by a project that maintains alternative installation methods for Gentoo) in a Cygwin environment on Windows, but this configuration is somewhat experimental.[33]

Installation

Gentoo may be installed in several ways. The most common way is to use the Gentoo minimal CD with a stage3 tarball (explained below). As with many Linux distributions, Gentoo may be installed from almost any Linux environment, such as another Linux distribution's Live CD, Live USB or Network Booting using the "Gentoo Alternative Install Guide". A normal install requires a connection to the Internet, but there is also a guide for a network-less install.

Previously, Gentoo supported installation from stage1 and stage2 tarballs; however, the Gentoo Foundation no longer recommends them. Stage1 and stage2 are meant only for Gentoo developers.[34]

Following the initial install steps, the Gentoo Linux install process in the Gentoo Handbook describes compiling a new Linux kernel. This process is generally not required by other Linux distributions. Although this is widely regarded as a complex task, Gentoo provides documentation and tools such as Genkernel to simplify the process and make it straightforward for novice users. In addition, users may also use an existing kernel known to work on their system by simply copying it to the boot directory and updating their bootloader. Support for installation is provided on the Gentoo forum and on IRC.

A Live USB of Gentoo Linux can be created manually or by using UNetbootin.[35]

Stages

Before October 2005, installation could be started from any of three base stages:

  • Stage1 begins with only what is necessary to build a toolchain (the various compilers, linkers, and language libraries necessary to compile other software) for the target system; compiling this target toolchain from another, pre-existing host system is known as bootstrapping the target system.
  • Stage2 begins with a self-hosting (bootstrapped) toolchain for the target system, which is then used to compile all other core userland software for the target.
  • Stage3 begins with a minimal set of compiled user software, with which the kernel and any other additional software are then configured and compiled.

Since October 2005, only the stage3 installations have been officially supported, due to the inherent complexities of bootstrapping from earlier stages (which requires resolving and then breaking numerous circular dependencies).[36] Tarballs for stage1 and stage2 were distributed for some time after this, although the instructions for installing from these stages had been removed from the handbook[37] and moved into the Gentoo FAQ.[3] As of September 2015, only the supported stage3 tarballs are publicly available; stage1 and stage2 tarballs are only "officially" generated and used internally by Gentoo development teams. However, if so desired, a user may still rebuild the toolchain or reinstall the base system software during or after a normal stage3 installation, effectively simulating the old bootstrap process.[38]

Gentoo Reference Platform

From 2003 until 2008, the Gentoo Reference Platform (GRP) was a snapshot of prebuilt packages that users could quickly install during the Gentoo installation process, to give faster access to fully functional Gentoo installation.[39][40] These packages included KDE, X Window System, OpenOffice, GNOME, and Mozilla.[41] Once the installation was complete, the packages installed as part of the GRP were intended to be replaced by the user with the same or newer versions built though Portage which would be built using the users' system configuration rather than the generic builds provided by the GRP. As of 2011, the GRP is discontinued, the final reference to it appearing in the 2008.0 handbook.[42]

Genkernel

Genkernel is a tool for building a general-purpose modular Linux kernel. Genkernel compiles the kernel with all available device drivers built as modules, then copies potentially boot-critical ones to an initramfs that is passed to the kernel at boot time, automatically loading the modules before they are needed. It is designed to allow users with little or no experience configuring a Linux kernel to easily set up a working kernel. Also, non-trivial hard disk setups like LVM and/or dm-crypt for full disk encryption make usage of an initramfs unavoidable; here genkernel can save the user from manually creating one.

The main reason for genkernel is the fact that you have to configure and build your own kernel during the installation of Gentoo, this can be a problem for new Linux users. Experienced Linux users generally prefer to configure and build their kernel manually, because genkernel tries to configure the kernel as safely as possible which causes the kernel to grow very large. However, one can choose to use a custom kernel configuration and use genkernel to compile it, and still benefit from other features such as the initramfs builder.

Genkernel modes

  • "all" - Build kernel, all modules, and create the initramfs.
  • "bzImage" - Just build the kernel.
  • "kernel" - Build the kernel and the modules.
  • "initramfs" - Just build the initramfs.

Versions

Once Gentoo is installed, it becomes effectively "versionless"; that is, once an emerge update is done, the system is completely current, with all the latest software readily available to it (subject to restrictions that a user may have specified in their Portage configuration files). For example, if a system is installed using a stage3 from March 2011, and the user performs a full emerge update one month later, they will upgrade the installed Gentoo system to the same as they would have if they had performed a fresh installation from an April 2011 CD. Thus, Gentoo users may upgrade to the latest version of all of their installed software the day that new versions are released and have an ebuild available. Like other Linux distributions, Gentoo systems have an /etc/gentoo-release file, but this contains the version of the installed sys-apps/baselayout package.

In 2004, Gentoo began to version its Live media by year rather than numerically. This continued until 2008, when it was announced that the 2008.1 Live CD release had been cancelled in favour of weekly automated builds of both Stages 3 and Minimal CDs.[43] On December 20, 2008, the first weekly builds were published.[44] In 2009, a special Live DVD was created to celebrate the Gentoo 10-year anniversary.[45]

Release media version history

Name Date
(Enoch Linux) 0.75December 1999
pre-1.0July 26, 2000
1.0[46]March 31, 2002
1.1aApril 8, 2002
1.2June 10, 2002
1.4August 5, 2003 (Gentoo Reference Platform introduced)
1.4 maintenance release 1September 11, 2003
2004.0[47]March 1, 2004[48] (versioning changed to four releases a year)
2004.1April 28, 2004
2004.2July 26, 2004[49]
2004.3November 15, 2004[50]
2005.0[51]March 27, 2005[52] (versioning changed to semi-annual releases)
2005.1[53]August 8, 2005[54]
2005.1-r1November 21, 2005[55] (maintenance release 1)
2006.0February 27, 2006[56]
2006.1August 30, 2006[57]
2007.0May 7, 2007[58]
2008.0July 6, 2008[59]
Weekly Releases started[60]September 22, 2008

Special releases

In 2009, a special Live DVD was released to celebrate Gentoo's tenth anniversary. Initially planned as a one-off, the Live DVD was updated to the latest package versions in 2011 due to its popularity among new users.

Name Date/info
Unreal Tournament 2003 LiveCDSeptember 18, 2002[61] - Bootable NVIDIA GPU-accelerated Unreal Tournament 2003 LiveCD, demoed at LinuxWorld Conference and Expo 2003.
10.0October 4, 2009[45] (special edition Live DVD for the 10th anniversary)
10.1October 10, 2009[62] (Bugfix release of Special Live DVD)
11.0April 8, 2011[63] (Anniversary Live DVD is updated to latest package versions)
12.0January 2, 2012[64]
12.1April 1, 2012[65] (With an April Fool's joke named "Install Wizard")
20121221December 21, 2012[66] (Live DVD - End Of World Edition)
20140826August 26, 2014[67] (Live DVD - Iron Penguin Edition)
20160514May 14, 2016[68] (Live DVD - Choice Edition; UEFI, ZFSOnLinux, and writable file systems using AUFS)
20160704[69]July 4, 2016[70] (Live DVD - Choice Edition Part Dos)

Profiles

Although Gentoo does not have a concept of versioning the entire system, it does make use of "profiles", which define build configuration for all packages in the system. Major changes, such as changing the layout of how files are installed across the entire system, typically involve a profile upgrade and may require rebuilding all installed software. These profiles are versioned based on the year they were released, and include several variants for each release targeted towards different types of systems (such as servers and desktops). Profiles formerly tracked the versioning of install media, and switched to two-digit year-based naming after the discontinuation of versioned media. The following new profile versions have been released after 2008.0:

Version Date/info
10.0August 6, 2009[71] (cosmetic name change from 2008.0 profiles)
13.0February 10, 2013[72]
17.0November 30, 2017[73] (C++14 and PIE by default)
17.1December 26, 2017[74] (experimental multilib layout for amd64 systems)

Hardened Gentoo

Hardened Gentoo is a project designed to develop and designate a set of add-ons which are useful when a more security focused installation is required.[75] Previously the project included patches from grsecurity to produce a hardened kernel, but these were discontinued when grsecurity restricted patch distribution. Other parts of the hardened set such as SELinux and userspace hardening remain.[76]

Practical jokes

The developers and community behind Gentoo have performed many practical jokes, a number of them on or around April Fools' Day. This kind of practical trickery and playfulness has been a tenet of Gentoo since its creation.

Wiki
On July 28, 2017, the Gentoo wiki had a satirical news announcement entitled 'Word crimes'. Embedded in the announcement was a link to the Weird Al video under the same name.
Website
On April 1, 2015 the Gentoo Linux team, namely Alex Legler and Robin H. Johnson and a few other associates, announced the launch of a "totally revamped and more inclusive website which was built to conform to the CGA Web™ graphics standards [...] with a 16-colour palette and an optimal screen resolution of 640 x 200 pixels". The joke website was displayed with the appearance of a CGA (16-colour) palette. According to the release announcement, the new site was available via the Gopher protocol at gopher://gopher.gentoo.org/.[77]
Live DVD
To salute the 2012 phenomenon, on December 21, 2012 Gentoo released an End Of World Edition Live DVD.
Install wizard
On April 1, 2012, an April Fools' joke named "Install Wizard" was "released" as part of the 12.1 Live DVD.

Incidents

In June 2018 the Gentoo GitHub code repository mirror used mainly by developers was hacked after an attacker gained access to a Gentoo Github organization administrator's account via deducing the password. Gentoo promptly responded by containing the attack and improving security practices. No Gentoo cryptography keys or signed packages were compromised, and the repository was restored after five days.[78][79][80][81][82]

Logo and mascots

The gentoo penguin is thought to be the fastest underwater-swimming penguin. The name "Gentoo Linux" acknowledges both the Linux mascot, a penguin called Tux, and the project's aim to produce a high performance operating system.[19]:383

The official Gentoo logo is a stylized 'g' resembling a silver magatama.[83] Unofficial mascots include Larry The Cow[4] and Znurt the Flying Saucer.[84]

Popularity

Note - The DistroWatch Page Hit Ranking statistics are a light-hearted way of measuring the popularity of Linux distributions and other free operating systems among the visitors of their website. They correlate neither to usage nor to quality and should not be used to measure the market share of distributions. They simply show the number of times a distribution page on DistroWatch.com was accessed each day, nothing more. [85]

Upon launch, Gentoo quickly became a popular distribution, with 326 hits per day on average in 2002 on DistroWatch.com  the third highest. However, over the years Gentoo has suffered from dropping popularity. In 2003, Gentoo was the fourth most popular and dropped to seventh in 2004, ninth in 2005, tenth in 2006 and thirteenth in 2007. For 2008, Gentoo dropped to 18th, but the following year it ended its dropping streak by rising to 17th. Gentoo was placed 18th in 2010, 20th in 2011, 22nd in 2012, 33rd in 2013, 38th in 2014, and 45th in 2015. In 2016 it became slightly more popular, climbing back up to 35th place, but has since fallen to 47th (averaged out over the last three months).[86]

Derived distributions

There are a number of independently developed variants of Gentoo Linux, including Chromium OS and Container Linux.

See also

References

  1. "Funtoo Linux History". funtoo.org. May 25, 2019.
  2. "Gentoo Linux Frequently Asked Questions". Retrieved January 6, 2014.
  3. "Gentoo Linux Frequently Asked Questions". gentoo.org. Retrieved January 6, 2014.
  4. "Gentoo Linux – About Gentoo". Gentoo.org. September 17, 2007. Retrieved January 28, 2010.
  5. "Gentoo Linux Documentation – Making the distribution, Part 1". Gentoo.org. October 9, 2005. Archived from the original on November 26, 2005. Retrieved January 28, 2010.
  6. "Planet Mirror – enoch – Enoch Linux – enoch-0.75 – download now". Public.planetmirror.com. February 11, 2007. Archived from the original on December 28, 2008. Retrieved 2010-01-28.
  7. "BBC Nature - Gentoo penguin videos, news and facts". bbc.co.uk.
  8. "Gentoo Linux Documentation – Making the distribution, Part 2". Gentoo.org. October 9, 2005. Archived from the original on November 26, 2005. Retrieved January 28, 2010.
  9. "Gentoo Linux Documentation – Making the distribution, Part 3". Gentoo.org. October 9, 2005. Archived from the original on November 26, 2005. Retrieved January 28, 2010.
  10. "Slashdot | Gentoo 1.0 Released". Linux.slashdot.org. March 31, 2002. Retrieved February 10, 2018.
  11. "Daniel Robbins Resigns As Chief Gentoo Architect". Slashdot.org. Retrieved February 10, 2018.
  12. "Gentoo Linux Wiki – The Board of Trustees". gentoo.org. January 21, 2018. Retrieved February 10, 2018.
  13. "Gentoo Linux – New foundation trustees elected". Gentoo.org. March 2, 2008. Archived from the original on December 24, 2012. Retrieved January 28, 2010.CS1 maint: BOT: original-url status unknown (link)
  14. "Gentoo Council". gentoo.org. Retrieved January 6, 2014.
  15. Gentoo Council. Accessed January 6, 2014.
  16. GENTOO FOUNDATION, INC., Corporations Information Inquiry, New Mexico Public Relation Commission. Accessed May 8, 2009.
  17. jake (January 14, 2008). "Gentoo loses charter; Robbins offers to return". LWN.net. Retrieved January 28, 2010.
  18. "Gentoo Foundation, Inc". New Mexico Corporation Division Efile. Archived from the original on June 26, 2013. Retrieved April 27, 2013.
  19. Christopher Negus (May 5, 2008). Linux Bible: Boot Up to Ubuntu, Fedora, KNOPPIX, Debian, openSUSE, and 11 Other Distributions. John Wiley & Sons. pp. 389–. ISBN 978-0-470-28706-4.
  20. Chris Negus (2006). Live Linux CDs: Building and Customizing Bootables. Prentice Hall Professional. pp. 224–. ISBN 978-0-13-243274-0.
  21. https://wiki.gentoo.org/wiki/EMERGE_DEFAULT_OPTS
  22. CFLAGS and CXXFLAGS, Gentoo Linux x86 Handbook. December 13, 2014. Accessed February 10, 2018.
  23. Distcc, Gentoo Linux Wiki. February 2, 2018. Accessed February 10, 2018.
  24. Binary package guide, Gentoo Linux Wiki. November 13, 2017. Accessed February 10, 2018.
  25. Brendan Horan (March 26, 2013). Practical Raspberry Pi. Apress. pp. 222–. ISBN 978-1-4302-4971-9.
  26. "Handbook:Main Page - Gentoo Wiki". Retrieved August 31, 2018.
  27. "Gentoo/MIPS". gentoo.org. Retrieved January 6, 2014.
  28. "Gentoo Linux Documentation – s390 Installation Document". dev.gentoo.org. May 12, 2004. Retrieved January 28, 2010.
  29. "Gentoo Development Guide: Arch Specific Notes – SPARC". devmanual.gentoo.org. Retrieved February 10, 2018.
  30. "Gentoo FreeBSD". gentoo.org. Retrieved January 6, 2014.
  31. "Gentoo Linux Projects – Gentoo/*BSD". Gentoo.org. October 19, 2006. Archived from the original on March 5, 2010. Retrieved January 28, 2010.
  32. "Gentoo GNU Hurd". Mundurat.net. Archived from the original on January 9, 2010. Retrieved 2010-01-28.
  33. "Gentoo Wiki - Prefix/Cygwin".
  34. "How do I Install Gentoo Using a Stage1 or Stage2 Tarball?".
  35. "UNetbootin – Universal Netboot Installer". Unetbootin.github.io. Retrieved February 10, 2018.
  36. "Gentoo Linux Newsletter – November 14th, 2005". Gentoo.org. Archived from the original on November 25, 2005. Retrieved January 28, 2010.
  37. "Stage1/2 deprecation from Gentoo Handbook". Gentoo. November 5, 2005. Retrieved February 10, 2018.
  38. "Sakaki's EFI Install Guide/Building the Gentoo Base System Minus Kernel". Sakaki. July 4, 2014. Retrieved January 9, 2017.
  39. Daniel Robbins (October 10, 2002). "Gentoo Linux Reloaded". LinuxDevCenter.com. Retrieved January 4, 2007.
  40. Sven Vermeulen (March 1, 2004). "Gentoo Linux 2004.0 Released". OSNews. Retrieved February 10, 2018.
  41. "Gentoo Linux Documentation". Archived from the original on January 8, 2014. Retrieved February 10, 2018.
  42. "Gentoo Linux Documentation". Archived from the original on December 23, 2010. Retrieved April 24, 2011.
  43. "Gentoo News – New release strategy to provide more current install media". Gentoo.org. September 22, 2008. Archived from the original on February 8, 2010. Retrieved January 28, 2010.
  44. "Gentoo News – First sets of weekly stage3 tarballs and minimal CDs released". Gentoo.org. December 20, 2008. Archived from the original on July 2, 2010. Retrieved January 28, 2010.
  45. "Gentoo Linux – Ten Years Compiling: 1999–2009". Gentoo.org. October 4, 2009. Archived from the original on December 22, 2014. Retrieved February 10, 2018.
  46. "Review of Gentoo Linux 1.0". OSNews.
  47. "Gentoo for All the Unusual Reasons". Linux Journal.
  48. "Gentoo Linux Newsletter – March 1st, 2004". Gentoo.org. Archived from the original on January 2, 2010. Retrieved January 28, 2010.
  49. "Today marks the release of Gentoo Linux 2004.2 for the AMD64, HPPA, SPARC and X86 architectures!". gentoo.org. July 26, 2004. Archived from the original on December 24, 2014. Retrieved February 10, 2018.
  50. "Gentoo Linux Newsletter – November 15, 2004". Gentoo.org. Archived from the original on December 23, 2010. Retrieved January 28, 2010.
  51. "Mini review: Gentoo Linux 2005.0". DistroWatch (99). May 9, 2005.
  52. "Gentoo Linux – Release Announcement: Gentoo Linux 2005.0". Gentoo.org. March 27, 2005. Archived from the original on August 23, 2009. Retrieved January 28, 2010.
  53. "A Slacker Tries His Hand at Gentoo". OSNews.
  54. "Gentoo Linux – Release Announcement: Gentoo Linux 2005.1". Gentoo.org. August 10, 2005. Archived from the original on December 24, 2010. Retrieved January 28, 2010.
  55. "Gentoo Linux – Media Refresh: Gentoo Linux 2005.1-r1". Gentoo.org. November 21, 2005. Archived from the original on February 27, 2009. Retrieved January 28, 2010.
  56. "Gentoo Linux – Release Announcement: Gentoo Linux 2006.0". Gentoo.org. February 27, 2006. Archived from the original on February 27, 2009. Retrieved January 28, 2010.
  57. "Gentoo Linux – Gentoo Linux 2006.1 – Unleashed". Gentoo.org. August 30, 2006. Archived from the original on February 27, 2009. Retrieved January 28, 2010.
  58. "Gentoo Linux – Gentoo Linux 2007.0 released". Gentoo.org. May 7, 2007. Archived from the original on February 27, 2009. Retrieved January 28, 2010.
  59. "Gentoo Linux – Gentoo Linux 2008.0 released". Gentoo.org. July 6, 2008. Archived from the original on September 12, 2010. Retrieved January 28, 2010.
  60. "Gentoo Linux – New release strategy to provide more current install media". Gentoo.org. September 22, 2008. Archived from the original on February 8, 2010. Retrieved January 28, 2010.
  61. "Unreal Tournament 2003 LiveCD". sourceforge.net. April 13, 2003. Retrieved February 10, 2018.
  62. "Gentoo Ten Live DVD 10.1 Release". Gentoo.org. October 23, 2009. Archived from the original on August 20, 2014. Retrieved October 13, 2014.
  63. "Gentoo Linux - LiveDVD 11.0". Gentoo.org. March 8, 2011. Archived from the original on December 22, 2014. Retrieved October 13, 2014.
  64. "Gentoo Linux releases 12.0 LiveDVD". Gentoo.org. January 2, 2012. Archived from the original on November 10, 2014. Retrieved October 13, 2014.
  65. "Gentoo Linux releases 12.1 LiveDVD". Gentoo.org. April 1, 2012. Archived from the original on October 13, 2014. Retrieved October 13, 2014.
  66. "Gentoo Linux releases 20121221 LiveDVD - End Of World Edition". Gentoo.org. December 21, 2012. Archived from the original on October 3, 2014. Retrieved October 13, 2014.
  67. "Gentoo Linux releases the 20140826 LiveDVD - Iron Penguin Edition". Gentoo.org. August 26, 2014. Archived from the original on October 10, 2014. Retrieved October 13, 2014.
  68. "Gentoo Linux releases the 20160514 LiveDVD - Choice Edition". Gentoo.org. May 14, 2016. Retrieved June 11, 2016.
  69. "Gentoo Linux live DVD "Choice Edition"". DistroWatch (675). August 22, 2016.
  70. "Gentoo Linux releases the 20160704 LiveDVD - Choice Edition Part Dos". Gentoo.org. July 4, 2016. Retrieved August 29, 2016.
  71. "New 10.0 profiles are in repository". August 6, 2009. Retrieved February 10, 2018.
  72. "New 13.0 profiles and deprecation of 10.0 profiles". February 10, 2013. Retrieved February 9, 2018.
  73. "New 17.0 profiles in the Gentoo repository". November 30, 2017. Retrieved February 9, 2018.
  74. "Experimental amd64 17.1 profiles up for testing". December 26, 2017. Retrieved February 9, 2018.
  75. "Hardening Linux Usando Controle de Acesso Mandatório". Retrieved July 6, 2018.
  76. "Hardened Linux kernel sources removal". Gentoo Linux. 19 August 2017. Archived from the original on 9 January 2018. Retrieved 7 July 2018.
  77. "Gentoo announces total website makeover (not an April Fool's) – Gentoo Linux". gentoo.org.
  78. "Project:Infrastructure/Incident Reports/2018-06-28 Github - Gentoo Wiki". wiki.gentoo.org. Archived from the original on 10 August 2018. Retrieved 23 August 2018.
  79. Henry-Stocker, Sandra (10 July 2018). "The aftermath of the Gentoo GitHub hack". Network World. Archived from the original on 24 July 2018. Retrieved 23 August 2018.
  80. Shallwood, Simon (July 5, 2018). "Gentoo GitHub repo hack made possible by these 3 rookie mistakes". The Register. Retrieved July 6, 2018.
  81. John Biggs (June 29, 2018). "Hackers took over the Gentoo Linux GitHub repository". TechCrunch.
  82. Ankush Das (June 29, 2018). "GitHub Repositories of Gentoo Linux Hacked!". It's FOSS.
  83. "Gentoo name and logo usage guidelines". gentoo.org. Retrieved February 10, 2018.
  84. "(gentoo) Contents of /xml/images/znurt.jpg". Gentoo.org. November 9, 2002. Retrieved August 2, 2011.
  85. https://distrowatch.com/dwres.php?resource=popularity
  86. DistroWatch. "DistroWatch.com: Put the fun back into computing. Use Linux, BSD". distrowatch.com.
Official documentation
Unofficial documentation and other resources
Articles and media coverage
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.