Part 1- General Setup https://www.youtube.com/watch?v=GIL0-R1PRsQ
ssh root@x.x.x.x -i ~/.ssh/openbazaar
| , ,_ | |
| |`\ `;;, ,;;' | |
| | `\ \ '. .'.' | |
| | `\ \ '-""""-' / | |
| `. `\ / |` | |
| `> /; _ _ \ | |
| / / | . ; | |
| < (`";\ () ~~~ (/_ | |
| ';;\ `, __ _.-'` ) | |
| >;\ ` _.' |
| #!/bin/bash | |
| ## | |
| ## CONFIGURATION (Edit at will) | |
| ## | |
| screenw=1280 | |
| screenh=1024 | |
| speed=2 # the amount of pixels to move the window by | |
| debug=0 # level 0-2 |
| Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
| Enable-RemoteDesktop | |
| cinst powershell | |
| cinst notepadplusplus | |
| cinst 7zip | |
| cinst chocolatey | |
| cinst firefox | |
| cinst vlc | |
| cinst malwarebytes |
| #!/bin/bash | |
| # automatically log into Thruk | |
| # useful for wall mounted monitors | |
| # midori is a low resources browser suitable for raspberryPi | |
| pkill midori | |
| midori http://example.com/thruk/#cgi-bin/tac.cgi & | |
| sleep 5 | |
| wmctrl -i -r 0x2c00004 -b add,maximized_vert |
| #!/bin/bash | |
| # Have a character tell you a fortune every n minutes | |
| # Dependencies: | |
| # - sed | |
| # - shuf | |
| # - sleep | |
| # - fortune | |
| # - cowsay |
| #!/bin/bash | |
| # GUI version. Could be really useful for Partedmagic. Work-in-progress. | |
| export MAIN_DIALOG=' | |
| <window title="Mouse Jiggler"> | |
| <vbox> | |
| <text> | |
| <label>Jiggle the mouse to prevent the display from sleeping</label> | |
| </text> |
| #!/bin/bash | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Please run as root" | |
| exit | |
| fi | |
| warn='!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' | |
| echo -e "$warn\n$warn\n$warn" | |
| echo " WARNING" |
| #!/bin/bash | |
| locale="en_US.UTF-8" | |
| sudo locale-gen "$locale" | |
| sudo dpkg-reconfigure locales | |
| sudo apt-get update && sudo apt-get -y upgrade | |
| audo apt-get -y install software-properties-common | |
| sudo apt-get -y install git | |
| sudo apt-get -y install build-essential libssl-dev libffi-dev python-dev openssl python-pip libzmq3-dev |
ssh root@x.x.x.x -i ~/.ssh/openbazaar
| # Startup script for OpenBazaar Server that will auto-restart if crashed | |
| # Copy this script to /etc/init folder | |
| # "chmod 644 openbazaar.conf" | |
| # Change "chdir", "setuid" and "setgid" according to your system | |
| # Usage: "sudo service openbazaar start" | |
| description "OpenBazaar Server" | |
| start on runlevel [2345] | |
| stop on starting rc RUNLEVEL=[016] |