Created
April 24, 2016 07:55
-
-
Save jbalzar/49f6c71d71d575319f49bafa4642ff85 to your computer and use it in GitHub Desktop.
CentOS package management
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Update packages | |
sudo yum update | |
# Search package | |
sudo yum search package_name | |
# Install package | |
# -y : confirm the installation with no prompt | |
sudo yum -y install package_name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment