Tag: package
Install Package List
July 6, 2009
Install a list of packages from a text file. cat packages.txt | xargs apt-get install
Show Packages from a Group
May 22, 2009
Show rpm packages of a group software rpm -qg “System Environment/Daemons”
List Files Provided by Package
April 21, 2009
Show list of files provided by a rpm package installed rpm -ql package_name
Download Deb Files Using apt-get
March 6, 2009
If you want to download the deb files without installing them, use the following command. The downloaded file will be…
Search Debian Package
November 10, 2008
Show all deb packages with the name “httpd” dpkg -l | grep httpd
Update an Installed RPM Package
November 4, 2008
Upgrade a rpm package only if it is already installed rpm -F package.rpm
Verify RPM Package
September 24, 2008
Verify the integrity of a rpm package rpm –checksig package.rpm
Build RPM From RPM Source
September 21, 2008
Build a rpm package from a rpm source rpmbuild –rebuild package_name.src.rpm
Building an RPM from a Spec File
June 18, 2008
Use this command to build an RPM if you have a Spec File rpmbuild -ba SPEC_FILE
Recent Comments