Skip to content

Instantly share code, notes, and snippets.

@ZEROF
ZEROF / nodewatch.sh
Last active August 29, 2015 14:07
Node watch installation script
#!/bin/bash
# This script will help you to set Nodewatch (http://vpsantiabuse.com/).
# Tested with Debian 7 32/64bit.
# Script 2nd hand author ZEROF <zerof@backbox.org>
# Idea was born here https://vpsaddicted.com/installing-and-configuring-nodewatch-on-debian-7/
# If you like Linux and security join http://backbox.org
# Script version 0.3b
# This script is distributed under a DO WHAT THE F*** YOU WANT TO PUBLIC LICENSE.
# http://rmlh.me/license.html
@ZEROF
ZEROF / beaglebon-linux-settings.sh
Created July 3, 2014 12:31
Driver installation for BeagleBone for Linux user isn't required, but you might find a few udev rules helpful.
cat > /etc/udev/rules.d/73-beaglebone.rules <<EOF
ACTION=="add", SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_interface", \
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="a6d0", \
DRIVER=="", RUN+="/sbin/modprobe -b ftdi_sio"
ACTION=="add", SUBSYSTEM=="drivers", \
ENV{DEVPATH}=="/bus/usb-serial/drivers/ftdi_sio", \
ATTR{new_id}="0403 a6d0"
ACTION=="add", KERNEL=="ttyUSB*", \
@ZEROF
ZEROF / hiawatha.sh
Last active August 20, 2020 12:38
Hiawatha web server install script (Hiawatha,PHP-FPM,MariaDB)
#!/bin/bash
# This script will help you to set Hiawatha Server.
# Tested on Devuan 8 32/64bit. Debian Jessie supported as well.
# Script author ZEROF <zerof at backbox dot org>
# If you like Linux and security join http://backbox.org
# Script version 0.6c
# This script is distributed under a DO WHAT THE F*** YOU WANT TO PUBLIC LICENSE.
# http://www.wtfpl.net/txt/copying/
clear
function banner ()