Installing packages
Installing packages
- Install package:
yum install package_name
- Package description: The info command is used to display brief details about a package.
yum info package_name
- Uninstall package: The remove command is used to remove or uninstall package name.
yum remove package_name
- Install package from local file:
It is also possible to install package from local file named package_name.rpm.
rpm -i package_name.rpm
- Install from source code:
tar zxvf sourcecode.tar.gzcd sourcecode./configuremakemake install
Comments
Post a Comment