yum&&rpm
Contents
1. what is yum and rpm
rpm is redhat package manager yum: yellow dog updater,modified
same: they both package manage
difference: rpm in low level;
yum in high level; yum can resolve dependency
|
|
rpm repository
|
|
gpg
-
what is gpg? Gnu privacy guard; contain publicKeys
-
gpgKey gpgKey is a public key to verify package;
-
gpkey command
1
rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
2. how to install repo
1.install by yum
auto install dependency
-
create repo file: in /et/yum.repos.d directly
1 2 3 4 5 6
[mongodb-org-4.4] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4.4/x86_64/ gpgcheck=1 enabled=1 gpgkey=https://www.mongodb.org/static/pgp/server-4.4.asc
-
instal by yum
|
|
2. install by rpm
|
|
3.yum command
|
|
-
update vs upgrade:
- same: update packages to the lastes version;
- differ: upgrade = update –obsolete –obsolete: remove the obsolete depency;
-
apt update vs yum update: apt update: only refresh local index files,not actual update a package;
yum vs apt
package metadata
- name
- description
- download url
- newVersion list
the package metedata:
- apt: manually , excute apt update
- yum: auto load
|
|
yum clean cache
|
|
yum install:
- load metadat from local
- if not install, install; else, upgrader it
yum commad
|
|