vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello everybody! I decided to move from dcron to fcron, so I removed dcron: stop dcron rec-update del dcron default unemerge dcron then I merged fcron: emerge fcron rc-update add fcron default fcron start Everything is good but now, every time I emerge something, at the end, I've got this strange message: Regenerating /etc/ld.so.cache... Caching Service 'dcron" provide 'cron'!: Not adding service 'fcron' My question are: - what have I done wrong? - How can I fix this problem? I could be happy if somebody had a clue or an answer... TIA, Lionel |
| |||
| chmod 777 wrote: > > I decided to move from dcron to fcron, so I removed dcron: > stop dcron > rec-update del dcron default > unemerge dcron > > My question are: > - what have I done wrong? > - How can I fix this problem? If those are the commands you used, dcron is still installed. Use the following instead: /etc/init.d/dcron stop rc-update del dcron emerge unmerge dcron Hth, -- Ben M. |
| |||
| chmod 777 wrote: > I decided to move from dcron to fcron, so I removed dcron: > stop dcron > rec-update del dcron default > unemerge dcron > > then I merged fcron: > emerge fcron > rc-update add fcron default > fcron start > > Everything is good but now, every time I emerge something, at the end, > I've got this strange message: > Regenerating /etc/ld.so.cache... And that's not your actual error, just something that happens right before your error ... > Caching > Service 'dcron" provide 'cron'!: > Not adding service 'fcron' > > My question are: > - what have I done wrong? Nothing, as such. You removed dcron, but remember that the init scripts in /etc/init.d/ are protected by the config file protection mechanism, so that is not removed. However, you can't have two (regular) services providing the same virtual service. > - How can I fix this problem? rm /etc/init.d/dcron /sbin/depscan.sh > I could be happy if somebody had a clue or an answer... HTH, HAND. -- PeKaJe The world will end in 5 minutes. Please log out. |
| ||||
| Peter Jensen wrote: >> >> My question are: >> - what have I done wrong? > > Nothing, as such. You removed dcron, but remember that the init scripts > in /etc/init.d/ are protected by the config file protection mechanism, > so that is not removed. However, you can't have two (regular) services > providing the same virtual service. I knew that I could not have two services providing the same, that why I unemerged dcron first... But I have forgotten the config file protection!!! >> - How can I fix this problem? > > rm /etc/init.d/dcron > /sbin/depscan.sh It worked fine... And the procedure is saved in my "non volatile memory", I mean: written down in my small notebook... > >> I could be happy if somebody had a clue or an answer... > > HTH, HAND. > Thanks a lot... I think that you really learn something only when everything is not working fine at the first time... and I learn every day ;-) Lionel |