salil gk wrote: > Hi > > When I tried to install one package with the command > `rpm -i xxxxx.rpm` > it says that libz.so.1 file in not available which is required > for installation. that file is available in /usr/lib directory. How do
if you know for sure that the file is there and there are no other dependacy issues then you can use rpm -U --nodeps xxxxxxx.rpm Try not to use the "-i" option unless that is what you want to do. "-i" will install irrespective of whether another version is there or not - leading you to have two copies of the same application. "-U" will make sure the older version gets upgraded properly. Mithun _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
