Added gentoo-related notes to the knowledge base

This commit is contained in:
Michele Cereda
2022-05-12 22:08:52 +02:00
parent b7a3c72202
commit d6f0eedb54
3 changed files with 34 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
# Funtoo GNU/Linux
```shell
# Portage update.
sudo ego sync
sudo emerge --sync
```
## Further readings
- [Installation] guide
- [Portage]
- [Profiles]
[installation]: https://www.funtoo.org/Install
[portage]: portage.md
[profiles]: https://www.funtoo.org/Funtoo_Profiles

View File

@@ -0,0 +1,7 @@
# Gentoo GNU/Linux
## Further readings
- [Portage]
[portage]: portage.md

View File

@@ -1,16 +1,18 @@
# Portage
```shell
# system update
sudo emerge --sync
sudo emerge --quiet --verbose --update --deep --newuse --with-bdeps=y --ask @world
sudo emerge --depclean --ask
## TL;DR
# check active portage features
portageq envvar FEATURES | xargs -n 1
```shell
# System update.
sudo emerge --sync
sudo emerge --depclean --ask
sudo emerge -qv --update --deep --newuse --with-bdeps=y -a @world
# Show what portage features are currently active.
portageq envvar FEATURES | xargs -n1
```
## Further readings
## Sources
- [/etc/portage]
- [Portage]