i have to create a Linux Distribution CD for my project. The only thing that is left to me, is the Installation of the rpm Pakets. So how can a resolve the dependence for the pakets.I have all dependences in the folder. For example: i want to install glibc: rpm -i glibc.rpm . How can i install glibc together with his dependences at compile time.
Thanks
dime
shams
2006-03-03, 08:25 AM PST
install the all pckages at once:
rpm -ivh glibc.rpm depen.rpm depend.rpm
ilja
2006-03-03, 08:30 AM PST
or
rpm -Uhv *.rpm
Jman
2006-03-03, 05:25 PM PST
On a system with yum, yum can download and install dependencies automatically: yum localinstall glibc