# vim /etc/zypp/zypp.conf
将以下内容:
......
multiversion.kernels = latest,latest-1,running
......
修改为:
......
multiversion.kernels = latest,latest-1,latest-2,latest-3,running
......
(补充:这里以使用 zypper 升级内核时保留内核的数量从 3 个增加到 5 个为例)
# vim /etc/zypp/zypp.conf
将以下内容:
......
multiversion.kernels = latest,latest-1,running
......
修改为:
......
multiversion.kernels = latest,latest-1,latest-2,latest-3,running
......
(补充:这里以使用 zypper 升级内核时保留内核的数量从 3 个增加到 5 个为例)
CVE 全称是:Common Vulnerabilities and Exposures,翻译成中文是:常见脆弱性和暴露,是一个业界统一的脆弱性和暴露。
CVE-2016-4658,其中 2016-4658 是编号
用于标签系统和应用的漏洞,并实现了一个漏洞数据库以进行漏洞的查询和管理
https://www.cvedetails.com
https://access.redhat.com/security/security-updates/#/cve
https://access.redhat.com/management/errata
openSUSE CVE 安全补丁官方网站
https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/
SUSE CVE 安全补丁官方网站
https://www.suse.com/security/cve/
# rpm -q openssh-clients --changelog | grep -i cve
(补充:这里以显示 openssh-clients 软件的 CVE 信息的变更历史为例)
# rpm -qpi --changelog redis-6.0.14-6.8.1.x86_64.rpm |grep -E '32675'
- Fix CVE-2021-32675, Denial Of Service when processing RESP request
(CVE-2021-32675, bsc#1191303)
* cve-2021-32675.patch
(补充:这里以确认 redis-6.0.14-6.8.1.x86_64.rpm 软件包是否已修复 CVE-2021-32675 为例)
格式化会格式出 inode 区和 block 区
inode 区默认一格大小是 512 个字节,存储哪一份数据存在了哪些 block 里以及数据的所属者、权限创建时间等 metadata 元数据
block 区默认一格大小是 4k,只存储数据本身
ext3 和 ext4 的 inode 区每一格较小,而 xfs 的 inode 区每一格更大,可以存储更多种类,例如快照等 metadata 元数据
$ curl 'https://bootstrap.pypa.io/pip/2.7/get-pip.py' > get-pip.py
$ sudo python get-pip.py
$ rm get-pip.py
$ ls /Library/Python/2.7/site-packages/
(补充:这里以 Python 版本是 2.7 为例)
$ which pip2
$ sudo pip2 install --upgrade pip
$ python3
(步骤略)
$ xcode-select --install
(步骤略)
$ curl 'https://bootstrap.pypa.io/pip/get-pip.py' > get-pip.py
$ sudo python get-pip.py
$ rm get-pip.py
$ ls /Library/Python/3.8/site-packages/
(补充:这里以 Python 版本是 3.8 为例)
$ which pip3
$ sudo pip3 install --upgrade pip
http://mirror.centos.org/centos/7/os/x86_64/
http://mirror.centos.org/centos/7/updates/x86_64/
http://mirror.centos.org/centos/7/extras/x86_64/
http://mirror.centos.org/centos/7/centosplus/x86_64/
http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=$infra
http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=updates&infra=$infra
http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=extras&infra=$infra
http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=centosplus&infra=$infra
http://mirror.centos.org/centos/8/BaseOS/x86_64/os/
http://mirror.centos.org/centos/8/AppStream/x86_64/os/
http://mirrorlist.centos.org/?release=8&arch=x86_64&repo=BaseOS&infra=$infra
http://mirrorlist.centos.org/?release=8&arch=x86_64&repo=AppStream&infra=$infra