Skip to content

Instantly share code, notes, and snippets.

@afadli
afadli / gist:7f0ab516aec0dfd197c533c83b96fac4
Created August 1, 2023 16:16
Seperate Go environemnt setup
mkdir {golib,mygocode}
mkdir mygocode/{pkg,src,bin}
export GOPATH=/path/to/golib
export PATH=$PATH:$GOPATH/bin
export GOPATH=$GOPATH:/path/yo/mygocode

Requirements

There are 18 questions in total. You will need five RHEL 8 (or CentOS 😎 virtual machines to be able to successfully complete all questions.

Optional Automatic Exam Setup Available

Here is an automated exam environment deployment for Mac/Linux/Windows that deploys the practice exam environment for you, including IPA server/client installation and configuration. You can also use your own lab environment. Navigate to the respective repo you wish to use for this practice exam and follow the README instructions:

https://github.com/rdbreak/rhce8env, https://github.com/rdbreak/ansible27env, https://github.com/rdbreak/ansible8env.

@afadli
afadli / ansible-summary.md
Created July 13, 2021 18:12 — forked from andreicristianpetcu/ansible-summary.md
This is an ANSIBLE Cheat Sheet from Jon Warbrick

An Ansible summary

Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)

Configuration file

intro_configuration.html

First one found from of

@afadli
afadli / zfs-backup.sh
Created July 28, 2020 14:27 — forked from dstapp/zfs-backup.sh
Simple backup script utilizing rsync and ZFS snapshots
#!/usr/bin/env bash
#
# zfs-backup.sh
#
# Simple backup script utilizing rsync and ZFS snapshots.
#
# rsync must be installed both on the server and the client.
# ssh must be installed on the client.
# bash must be installed on the server.