In: Computer Science
In debian and in red hat how would you update a package with file1.1.deb and file1.1.rpm respectively?
Use linux
To update a package with file1.1.deb in debian:-
To update a package on the debian system, run the apt-get
command followed by the package name we want to upgrade.
To update file1.1.deb run this command:
apt-get update && apt-get upgrade
file1.1.deb
To update a package with file1.1.rpm in red hat:-
To update a package on the red hat system, run the upgrade
command followed by the package name we want to upgrade.
To update file1.1.rpm run this command:
rpm -U ( or --upgrade) options
file1.1.rpm
Some upgrade specific options available in red hat are as follows:-