Skip to content

Instantly share code, notes, and snippets.

View boktai1000's full-sized avatar
🔒
Security Enthusiast

Keegan Jacobson boktai1000

🔒
Security Enthusiast
View GitHub Profile
# You can run this script directly with the following command
# curl -s https://gist.githubusercontent.com/boktai1000/1ee5e5d90a8855a37c069b7981e07fc2/raw/57e09087028d553a1b7ba510de1c6337ce6ea662/el7-install-jenkins-native.sh | sudo bash
# https://www.hugeserver.com/kb/how-install-jenkins-centos7/
# https://www.linuxtechi.com/install-configure-jenkins-on-centos-7-rhel-7/
# https://computingforgeeks.com/how-to-install-jenkins-server-stable-on-centos-7/
# https://www.vultr.com/docs/how-to-install-jenkins-on-centos-7
# Set Variables
yourip=$(hostname -I | awk '{print $1}')
# You can run this script directly with the following command:
# Append your version number after "| sudo bash -s" ; Example- "| sudo bash -s 6.0.4"
# curl -s https://gist.githubusercontent.com/boktai1000/ef9091d76fcd151e5a9b18d25705dcc4/raw/df0bea473765ef72f623513e3114781467e23b86/el7-install-vboxgav.sh | sudo bash -s
# Set VirtualBox Variable so argument from command line gets passed through
VBOX_VERSION=$1
# Install prereqs
yum install -y bzip2 kernel-devel gcc
@boktai1000
boktai1000 / sysprep_linux.sh
Created February 22, 2019 17:56 — forked from AfroThundr3007730/sysprep_linux.sh
Cloning preparation script for linux systems.
#!/bin/bash
# Does the equivalent of sysprep for linux boxes to prepare them for cloning.
# Based on https://lonesysadmin.net/2013/03/26/preparing-linux-template-vms/
AUTHOR='AfroThundr'
BASENAME="${0##*/}"
MODIFIED='20181205'
VERSION='1.5.0'
# Argument handler
@boktai1000
boktai1000 / putty-monokai.reg
Created May 14, 2018 04:18 — forked from gdvalle/putty-monokai.reg
Monokai style theme for PuTTY; colors copied from ST2's theme
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\monokai]
"Colour21"="255,255,255"
"Colour20"="245,222,179"
"Colour19"="200,240,240"
"Colour18"="0,217,217"
"Colour17"="179,146,239"
"Colour16"="174,129,255"
"Colour15"="122,204,218"
@boktai1000
boktai1000 / wildfly-install.sh
Created March 30, 2016 20:18
Script to install JBoss Wildfly 10.x as service in Linux
#!/bin/bash
#title :wildfly-install.sh
#description :The script to install Wildfly 10.x
#more :http://sukharevd.net/wildfly-8-installation.html
#author :Dmitriy Sukharev
#date :2015-10-24T17:14-0700
#usage :/bin/bash wildfly-install.sh
#tested-version :10.0.0.Final
#tested-distros :Debian 7,8; Ubuntu 15.10; CentOS 7; Fedora 22