jason revised this gist 1 year ago. Go to revision
1 file changed, 12 insertions, 5 deletions
BlueOnyx.md
| @@ -25,10 +25,10 @@ curl -q -fsSL https://get.docker.com | sh | |||
| 25 | 25 | ## Install incus | |
| 26 | 26 | ||
| 27 | 27 | ```shell | |
| 28 | - | dnf -y install epel-release | |
| 29 | - | dnf copr enable neil/incus | |
| 30 | - | dnf config-manager --enable crb | |
| 31 | - | dnf install incus incus-tools | |
| 28 | + | dnf -y install epel-release && | |
| 29 | + | dnf config-manager --enable crb && | |
| 30 | + | dnf copr enable neil/incus && | |
| 31 | + | dnf install incus incus-tools | |
| 32 | 32 | ``` | |
| 33 | 33 | ||
| 34 | 34 | ||
| @@ -39,13 +39,20 @@ if curl -q -LSsf http://devel.blueonyx.it/pub/5211R.rpm -o /tmp/blueonyx.rpm; th | |||
| 39 | 39 | if yum localinstall -y /tmp/blueonyx.rpm;then | |
| 40 | 40 | yum clean all | |
| 41 | 41 | if yum update -y && yum groupinstall -y blueonyx; then | |
| 42 | - | sh /usr/sausalito/scripts/initServices.sh && reboot | |
| 42 | + | sh /usr/sausalito/scripts/initServices.sh | |
| 43 | 43 | fi | |
| 44 | 44 | fi | |
| 45 | 45 | fi | |
| 46 | 46 | # | |
| 47 | 47 | ``` | |
| 48 | 48 | ||
| 49 | + | ## mandatory reboot | |
| 50 | + | ||
| 51 | + | ```shell | |
| 52 | + | curl -q -fsSL https://get.docker.com | sh | |
| 53 | + | ||
| 54 | + | ``` | |
| 55 | + | ||
| 49 | 56 | ## Install system scripts | |
| 50 | 57 | ||
| 51 | 58 | ```shell | |
jason revised this gist 1 year ago. Go to revision
1 file changed, 22 insertions
BlueOnyx.md
| @@ -16,6 +16,22 @@ dnf -y update && reboot | |||
| 16 | 16 | dnf -y install epel-release git wget curl | |
| 17 | 17 | ``` | |
| 18 | 18 | ||
| 19 | + | ## Install docker | |
| 20 | + | ||
| 21 | + | ```shell | |
| 22 | + | curl -q -fsSL https://get.docker.com | sh | |
| 23 | + | ``` | |
| 24 | + | ||
| 25 | + | ## Install incus | |
| 26 | + | ||
| 27 | + | ```shell | |
| 28 | + | dnf -y install epel-release | |
| 29 | + | dnf copr enable neil/incus | |
| 30 | + | dnf config-manager --enable crb | |
| 31 | + | dnf install incus incus-tools | |
| 32 | + | ``` | |
| 33 | + | ||
| 34 | + | ||
| 19 | 35 | ## Install blueonyx | |
| 20 | 36 | ||
| 21 | 37 | ```shell | |
| @@ -30,6 +46,12 @@ fi | |||
| 30 | 46 | # | |
| 31 | 47 | ``` | |
| 32 | 48 | ||
| 49 | + | ## Install system scripts | |
| 50 | + | ||
| 51 | + | ```shell | |
| 52 | + | ||
| 53 | + | ``` | |
| 54 | + | ||
| 33 | 55 | ## Default login | |
| 34 | 56 | ||
| 35 | 57 | Username: root | |
jason revised this gist 1 year ago. Go to revision
1 file changed, 1 insertion, 1 deletion
BlueOnyx.md
| @@ -12,7 +12,7 @@ dnf -y update && reboot | |||
| 12 | 12 | ||
| 13 | 13 | ## Install needed apps | |
| 14 | 14 | ||
| 15 | - | ``` | |
| 15 | + | ```shell | |
| 16 | 16 | dnf -y install epel-release git wget curl | |
| 17 | 17 | ``` | |
| 18 | 18 | ||
jason revised this gist 1 year ago. Go to revision
1 file changed, 1 insertion, 1 deletion
BlueOnyx.md
| @@ -18,7 +18,7 @@ dnf -y install epel-release git wget curl | |||
| 18 | 18 | ||
| 19 | 19 | ## Install blueonyx | |
| 20 | 20 | ||
| 21 | - | ``` | |
| 21 | + | ```shell | |
| 22 | 22 | if curl -q -LSsf http://devel.blueonyx.it/pub/5211R.rpm -o /tmp/blueonyx.rpm; then | |
| 23 | 23 | if yum localinstall -y /tmp/blueonyx.rpm;then | |
| 24 | 24 | yum clean all | |
jason revised this gist 1 year ago. Go to revision
1 file changed, 1 insertion, 1 deletion
BlueOnyx.md
| @@ -1,6 +1,6 @@ | |||
| 1 | 1 | ## Disable selinux | |
| 2 | 2 | ||
| 3 | - | ``` | |
| 3 | + | ```shell | |
| 4 | 4 | sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config | |
| 5 | 5 | ``` | |
| 6 | 6 | ||
jason revised this gist 1 year ago. Go to revision
1 file changed, 9 insertions, 3 deletions
BlueOnyx.md
| @@ -1,13 +1,19 @@ | |||
| 1 | 1 | ## Disable selinux | |
| 2 | 2 | ||
| 3 | 3 | ``` | |
| 4 | - | sudo sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config && sudo dnf -y update && reboot | |
| 4 | + | sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config | |
| 5 | 5 | ``` | |
| 6 | 6 | ||
| 7 | - | ## Install needed apps and update | |
| 7 | + | ## Update the system | |
| 8 | 8 | ||
| 9 | + | ```shell | |
| 10 | + | dnf -y update && reboot | |
| 9 | 11 | ``` | |
| 10 | - | sudo dnf -y install epel-release git wget curl | |
| 12 | + | ||
| 13 | + | ## Install needed apps | |
| 14 | + | ||
| 15 | + | ``` | |
| 16 | + | dnf -y install epel-release git wget curl | |
| 11 | 17 | ``` | |
| 12 | 18 | ||
| 13 | 19 | ## Install blueonyx | |
jason revised this gist 1 year ago. Go to revision
1 file changed, 19 insertions, 4 deletions
BlueOnyx.txt renamed to BlueOnyx.md
| @@ -1,6 +1,18 @@ | |||
| 1 | - | # | |
| 1 | + | ## Disable selinux | |
| 2 | + | ||
| 3 | + | ``` | |
| 2 | 4 | sudo sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config && sudo dnf -y update && reboot | |
| 5 | + | ``` | |
| 6 | + | ||
| 7 | + | ## Install needed apps and update | |
| 8 | + | ||
| 9 | + | ``` | |
| 3 | 10 | sudo dnf -y install epel-release git wget curl | |
| 11 | + | ``` | |
| 12 | + | ||
| 13 | + | ## Install blueonyx | |
| 14 | + | ||
| 15 | + | ``` | |
| 4 | 16 | if curl -q -LSsf http://devel.blueonyx.it/pub/5211R.rpm -o /tmp/blueonyx.rpm; then | |
| 5 | 17 | if yum localinstall -y /tmp/blueonyx.rpm;then | |
| 6 | 18 | yum clean all | |
| @@ -10,6 +22,9 @@ if curl -q -LSsf http://devel.blueonyx.it/pub/5211R.rpm -o /tmp/blueonyx.rpm; th | |||
| 10 | 22 | fi | |
| 11 | 23 | fi | |
| 12 | 24 | # | |
| 13 | - | Username: root | |
| 14 | - | Password: blueonyx | |
| 15 | - | ||
| 25 | + | ``` | |
| 26 | + | ||
| 27 | + | ## Default login | |
| 28 | + | ||
| 29 | + | Username: root | |
| 30 | + | Password: blueonyx | |
jason revised this gist 1 year ago. Go to revision
1 file changed, 1 insertion, 1 deletion
BlueOnyx.txt
| @@ -1,5 +1,5 @@ | |||
| 1 | 1 | # | |
| 2 | - | sudo sed -i 's/^SELINUX=.*/SELINUX=permissive/g' /etc/selinux/config && sudo dnf -y update && reboot | |
| 2 | + | sudo sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config && sudo dnf -y update && reboot | |
| 3 | 3 | sudo dnf -y install epel-release git wget curl | |
| 4 | 4 | if curl -q -LSsf http://devel.blueonyx.it/pub/5211R.rpm -o /tmp/blueonyx.rpm; then | |
| 5 | 5 | if yum localinstall -y /tmp/blueonyx.rpm;then | |
jason revised this gist 1 year ago. Go to revision
1 file changed, 9 insertions, 4 deletions
BlueOnyx.txt
| @@ -1,9 +1,14 @@ | |||
| 1 | 1 | # | |
| 2 | 2 | sudo sed -i 's/^SELINUX=.*/SELINUX=permissive/g' /etc/selinux/config && sudo dnf -y update && reboot | |
| 3 | - | sudo dnf -y install epel-release git wget curl;curl -q -LSsf http://devel.blueonyx.it/pub/5211R.rpm -o /tmp/blueonyx.rpm | |
| 4 | - | yum localinstall -y /tmp/blueonyx.rpm;yum clean all;yum update -y;yum groupinstall -y blueonyx | |
| 5 | - | sh /usr/sausalito/scripts/initServices.sh && reboot | |
| 6 | - | ||
| 3 | + | sudo dnf -y install epel-release git wget curl | |
| 4 | + | if curl -q -LSsf http://devel.blueonyx.it/pub/5211R.rpm -o /tmp/blueonyx.rpm; then | |
| 5 | + | if yum localinstall -y /tmp/blueonyx.rpm;then | |
| 6 | + | yum clean all | |
| 7 | + | if yum update -y && yum groupinstall -y blueonyx; then | |
| 8 | + | sh /usr/sausalito/scripts/initServices.sh && reboot | |
| 9 | + | fi | |
| 10 | + | fi | |
| 11 | + | fi | |
| 7 | 12 | # | |
| 8 | 13 | Username: root | |
| 9 | 14 | Password: blueonyx | |
jason revised this gist 2 years ago. Go to revision
No changes