- All kubernetes nodes: set SELINUX to permissive mode
$ vi /etc/selinux/config
SELINUX=permissive
$ setenforce 0
| # A simple Bash script to download a full website using wget | |
| #! /usr/bin/env bash | |
| website=$1 | |
| echo $website | |
| nohup wget --limit-rate=200k --no-clobber --convert-links --random-wait -r -p -E -e robots=off -U mozilla $website & |
| I did the following to install devtoolset-7: | |
| yum install centos-release-scl | |
| yum install devtoolset-7-gcc-c++ | |
| Every time I want gcc to default to using GCC 7, I run the following: | |
| scl enable devtoolset-7 bash |