How to Installing, Upgrading, and Deleting Packages in linux fedora ubuntu

10:58 AM
1. To install a new package or upgrade an existing package is by using the -U option of rpm. With the file you want to install in the current directory, type the following:

# rpm -Uhv packagename-1.1.1.i386.rpm



2. Upgrading a whole lot of packages on an existing system using the following command
 
# rpm -Fvh *.rpm

3. To delete an installed package, use the -e (erase) option to rpm. use the following command

# rpm -e Wnn6-SDK-devel

 

0 Comments