diff options
author | Julien Dessaux | 2021-09-12 15:02:27 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-09-12 15:02:27 +0200 |
commit | 78d7544339882f39f3146c3f32c85731a2b3e251 (patch) | |
tree | fec43fa9d78cff66501b5f9a8ef0b64fd055d044 /content/docs/gentoo | |
parent | Implemented search functionality (diff) | |
download | www-78d7544339882f39f3146c3f32c85731a2b3e251.tar.gz www-78d7544339882f39f3146c3f32c85731a2b3e251.tar.bz2 www-78d7544339882f39f3146c3f32c85731a2b3e251.zip |
Updated gentoo upgrades article
Diffstat (limited to 'content/docs/gentoo')
-rw-r--r-- | content/docs/gentoo/upgrades.md | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/content/docs/gentoo/upgrades.md b/content/docs/gentoo/upgrades.md index 07d5c6b..155f3ee 100644 --- a/content/docs/gentoo/upgrades.md +++ b/content/docs/gentoo/upgrades.md @@ -15,14 +15,9 @@ The news have to be reviewed carefully and if I cannot act on it immediately I c ## The upgrade process -I run the upgrade process in two steps. The first one is a straightforward upgrade that will stop upon any error to let you asses the situation : +I run the upgrade process in steps, the first one asking you to validate the upgrade path. You will also be prompted to validate before cleaning : {{< highlight sh >}} -emerge --update --newuse --deep --with-bdeps=y @world -q -{{< /highlight >}} - -If all went well we can get to the cleaning pass : -{{< highlight sh >}} -unset ld_library_path && unset e_src && emerge -qaavutdn world --verbose-conflicts --keep-going && emerge --depclean -a && revdep-rebuild -i -- -q --keep-going; eclean distfiles +emerge -qAavutDN world --verbose-conflicts --keep-going --with-bdeps=y && emerge --depclean -a && revdep-rebuild -i -- -q --keep-going; eclean --deep distfiles && eclean --deep packages && date {{< /highlight >}} After all this completes it is time to evaluate configuration changes : |