├── .pre-commit-config.yaml ├── .yaspeller.json ├── LICENSE ├── README.md ├── chapter-02-advanced-installation-options └── anaconda-ks.cfg ├── chapter-03-basic-commands-and-shell-scripts ├── hello.sh └── txtfiles.sh ├── chapter-07-adding-patching-and-managing-software └── local-slack.repo ├── chapter-08-remote-systems-administration ├── create-kys-user.sh ├── loadaverage-check.sh └── term.sh ├── chapter-09-securing-network-connectivity-with-firewalld └── oracledb.xml ├── chapter-10-selinux └── apache.sh ├── chapter-11-openscap ├── ospp-report.html ├── pci-dss-report.html └── vulnerability.html ├── chapter-18-exercise1 ├── monitorresources.service ├── monitorresources.timer └── myresources.sh └── chapter-19-exercise2 ├── ContainerFile └── users.txt /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yaspeller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/.yaspeller.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/README.md -------------------------------------------------------------------------------- /chapter-02-advanced-installation-options/anaconda-ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-02-advanced-installation-options/anaconda-ks.cfg -------------------------------------------------------------------------------- /chapter-03-basic-commands-and-shell-scripts/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-03-basic-commands-and-shell-scripts/hello.sh -------------------------------------------------------------------------------- /chapter-03-basic-commands-and-shell-scripts/txtfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-03-basic-commands-and-shell-scripts/txtfiles.sh -------------------------------------------------------------------------------- /chapter-07-adding-patching-and-managing-software/local-slack.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-07-adding-patching-and-managing-software/local-slack.repo -------------------------------------------------------------------------------- /chapter-08-remote-systems-administration/create-kys-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-08-remote-systems-administration/create-kys-user.sh -------------------------------------------------------------------------------- /chapter-08-remote-systems-administration/loadaverage-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-08-remote-systems-administration/loadaverage-check.sh -------------------------------------------------------------------------------- /chapter-08-remote-systems-administration/term.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-08-remote-systems-administration/term.sh -------------------------------------------------------------------------------- /chapter-09-securing-network-connectivity-with-firewalld/oracledb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-09-securing-network-connectivity-with-firewalld/oracledb.xml -------------------------------------------------------------------------------- /chapter-10-selinux/apache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-10-selinux/apache.sh -------------------------------------------------------------------------------- /chapter-11-openscap/ospp-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-11-openscap/ospp-report.html -------------------------------------------------------------------------------- /chapter-11-openscap/pci-dss-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-11-openscap/pci-dss-report.html -------------------------------------------------------------------------------- /chapter-11-openscap/vulnerability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-11-openscap/vulnerability.html -------------------------------------------------------------------------------- /chapter-18-exercise1/monitorresources.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-18-exercise1/monitorresources.service -------------------------------------------------------------------------------- /chapter-18-exercise1/monitorresources.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-18-exercise1/monitorresources.timer -------------------------------------------------------------------------------- /chapter-18-exercise1/myresources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | df >/root/resources.log 4 | -------------------------------------------------------------------------------- /chapter-19-exercise2/ContainerFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-19-exercise2/ContainerFile -------------------------------------------------------------------------------- /chapter-19-exercise2/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Red-Hat-Enterprise-Linux-8-Administration/HEAD/chapter-19-exercise2/users.txt --------------------------------------------------------------------------------