Skip to content

Latest commit

 

History

History
54 lines (54 loc) · 2.12 KB

day8-report.org

File metadata and controls

54 lines (54 loc) · 2.12 KB

2016-Feb-07-Monday

From 10:00 AM TO 05:00 PM :

  • Revised all the Centos commands and I have learned various package installation commands in Centos those are

Yum (yellowdog updater modified):

  • YUM (Yellowdog Updater Modified) is an open source command-line as well as graphical based package management tool for RPM (RedHat Package Manager) based Linux systems. which allows users and system administrator to easily install, update, remove or search software packages on a systems.
  • yum -y install <package> (which is used to install software packages)
yum -y install git
  • yum -y remove <package> (which is used to remove a sofware packages completely)
yum -y remove git
  • yum -y update (which is used to updating a system)
yum -y update
  • yum -y update <package> (which is used to updating a specific package)
yum -y update firefox
  • yum list <package> (Use the list function to search for the specific package with name)
yum list firefox
  • yum search <package> (which is used for search all the available packages to match the name of the package you specified)
yum search firefox
  • yum info <package> (which is used to know information of a package)
yum info firefox
  • yum check-update (which is used to check find how many of installed packages on your system have updates available)
yum check-update
  • etc/yum.repos.d directory (which is used to create YUM Repository configuration file)
emacs /etc/yum.repos.d/example.repo 
  • yum repolist (which is used to show a list of enabled yum repositories)
yum repolist
  • wget <URL> (It is a command, which is free utility for non-interactive download of files from the Web.)
wget http://ftp.gnu.org/gnu/wget/wget-1.5.3.tar.gz
  • rpm -ivh {rpm-file} (which is used to Install the rpm package)
rpm -ivh pidgin-2.7.9-5.el6.2.i686.rpm