I hereby claim:
- I am dyoungwd on github.
- I am jardwd (https://keybase.io/jardwd) on keybase.
- I have a public key ASAk8OGkiHrrGTCzxvSzh4s0kPtT37whS19U3pIeBJttqAo
To claim this, I am signing this object:
#!/bin/sh | |
#Install Complete Security-Lab tools | |
#sudo dnf -y groupinstall security-lab | |
#If you want certain groups - copy paste the required group into terminal | |
# Install Code Analysis Tools | |
sudo dnf -y install splint pscan flawfinder rats |
# Original : Michalis Georgiou | |
# Modified : D4zzy for Fedora | |
_wgeturl="https://github.com/google/fonts/archive/master.tar.gz" | |
_gf="google-fonts" | |
# install wget | |
echo "Installing wget..." | |
sudo dnf install wget |
#!/bin/bash | |
cd | |
echo "## Updating DNS....." | |
sudo cp resolv.conf ../../../etc/ | |
echo "## Obtaining VPN info....." |
I hereby claim:
To claim this, I am signing this object:
#! /bin/bash | |
# script to auto install everything | |
# Use hashtag to edit out software you do not require | |
# author D4zzY dyoung0378@gmail.com | |
mkdir ~/Newinstall | |
mv newfedorainstall.sh ~/Newinstall | |
cd ~/Newinstall | |
echo " " |
# General Script For Setting Up Your Ubuntu / Debian OpenStack Instance or Server for Website Hosting | |
# You Must Edit 'newuser' And 'example.com' To Desired username And domain | |
# Install Apache | |
sudo apt-get update | |
sudo apt-get install -y apache2 | |
# Install Lamp Instead ( apache, php, mysql ) | |
# sudo apt-get install lamp-server^ |
sudo dnf install ruby ruby-devel redhat-rpm-config gcc gcc-c++ | |
sudo gem install json | |
sudo gem install jekyll bundler | |
sudo gem update --system | |
//Move to the jekyll folder - cd ./your/jekyll/folder | |
bundle install | |
bundle update |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
#!/usr/bin/env bash | |
#Script to install Koala-App | |
#Koala is a GUI application for Less, Sass, Compass and CoffeeScript compilation | |
#http://koala-app.com/ | |
#Script by D4zzy | |
# Install wget if not installed | |
sudo dnf install wget | |
# Download Koala App |
#!/usr/bin/env bash | |
func_check_for_root() { | |
if [ ! $( id -u ) -eq 0 ]; then | |
echo "ERROR: $0 Must be run as root, Script terminating" ;exit 7 | |
fi | |
} | |
func_check_for_root | |
#SETUP PARAMS |