mkdocs-benoit.jp.net/docs/Howtos/HowtoCentOS.md
2021-02-20 15:06:15 +09:00

16 lines
405 B
Markdown

# HowtoCentOS
Upgrade from 8 to Stream.
```console
# dnf install centos-release-stream && dnf update
```
Exclude path when unpacking package. Useful for unprivileged containers.
```console
# dnf reinstall --downloadonly filesystem
# find /var/cache -iname "*filesy*"
# rpm -ivh --excludepath=/proc --excludepath=/sys /var/cache/dnf/baseos-504ddb1bf3482a98/packages/filesystem-3.8-3.el8.x86_64.rpm
```