mkdir -p /backup/mysql/hourly
mkdir -p /backup/mysql/daily
Copy ssserver.service to under /lib/systemd/system/ and run:
sudo systemctl enable ssserver
sudo systemctl start ssserver
sudo systemctl status ssserver
| #!/usr/bin/env bash | |
| set -u | |
| # Downloads Oracle JDK tarball and makes fancy debs out of it. | |
| # Output is full of warnings, but the packages work. ;) | |
| # Example URL='http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jdk-8u45-linux-x64.tar.gz' | |
| MAJOR=8 | |
| MINOR=45 | |
| BUILD=14 |
| # Download latest Android image, "hammerhead" for Nexus 5 (GSM/LTE) | |
| https://developers.google.com/android/nexus/images#hammerhead | |
| # Download latest TWRP | |
| https://dl.twrp.me/hammerhead/ | |
| # Download latest SuperSu | |
| https://download.chainfire.eu/supersu | |
| Enable USB debugging. |
| # This is an example resource file for rTorrent. Copy to | |
| # ~/.rtorrent.rc and enable/modify the options as needed. Remember to | |
| # uncomment the options you wish to enable. | |
| # Maximum and minimum number of peers to connect to per torrent. | |
| min_peers = 1 | |
| max_peers = 100 | |
| # Same as above but for seeding completed torrents (-1 = same as downloading) |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |