Results 1 to 10 of 16
What are your procedures for updating your Gentoo system without dependency problems.
I usually do:
emerge --sync
emerge --update world
For me it happens from time to time that I ...
- 09-26-2009 #1Just Joined!
- Join Date
- Jan 2009
- Posts
- 2
Keep you system updated
What are your procedures for updating your Gentoo system without dependency problems.
I usually do:
emerge --sync
emerge --update world
For me it happens from time to time that I need to unmerge packages and reemerge them to go through with the world-emerge. Sometimes I remember to use revdep-rebuild, python-updater and emerge --depclean but its not a part of my "update-process". What is the best process to keep the system updated? Does the order of doing things matter?
Is this example a good process:
emege --sync
emerge --update world
emerge --depclean
python-updater
revdep-rebuild
emerge --update world
How do you do it?
- 09-26-2009 #2
Welcome to the forums jortax
I can't claim to be an expert, my approach is usually ...
I do this fairly regularly and then less regularly I will doCode:emerge --sync emerge -avufDN world emerge -avuDN world
(usually as part of above)Code:emerge -avuDN world
I prefetch files so I know everything should be available for the update and is consistent.Code:emerge --depclean revdep-rebuild
I used to dread runninguntil I got a set of USE flags that worked for me.Code:emerge -uDN world
Ed: I think it is worth running with -av options so you know what is going to be updated
.
It will be interesting to see what more experienced users do
Last edited by Jonathan183; 09-26-2009 at 02:52 PM.
- 09-26-2009 #3
I usually only do
Every once in a while I'll runCode:emerge --sync emerge -pvuDN world && emerge -pvuDN system emerge -vuDN world && emerge -vuDN system revdep-rebuild
Code:emerge -depclean revdep-rebuild
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 09-26-2009 #4
I have emerge -uDN world set in a crontab to run daily, and every 2 - 3 days I will run an
I am on a quad so it really doesn't take long to update.Code:emerge -avuDN world && emerge -av --depclean && revdep-rebuild
- 09-27-2009 #5
- 09-27-2009 #6
I read this somewhere,,world is different from system and for some reason I still do it every now and then. Here is a link, that kind of explains it....but it's not the link I read awhile back, I can't seem to find that one.
[gentoo-user] Emerge -u system or World ?I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 09-28-2009 #7
How can
fail to update packages whichCode:emerge -uDN world
will ... unless you manually change world definition?Code:emerge -uDN system
I can understand updating system without world update can leave packages not being updated but how does this work the other way round? ... is this related to stage1/stage2 tarballs?
... if there is a good reason for running both I'll start doing it
- 09-28-2009 #8
I'm not sure of the answer here. Maybe someone else could pitch in, I may be doing it for nothing....I seem to remember it did update something a long time ago...but maybe I just ran emerge -u system first. Does emerge -avuDN system want to update any packages on your system?
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 09-28-2009 #9Just Joined!
- Join Date
- Sep 2009
- Posts
- 1
- 09-28-2009 #10
I usually do
emerge --sync && emerge --update --ask world && emerge --update --deep world
If I have altered any of USE flags:
emerge --update --deep --newuse world
emerge --depclean
revdep-rebuild
After transition to new python:
python-updater


Reply With Quote

