Before start the installation process, make sure you meet the following prerequisites:
- A Windows 10 operating system with WSL 2 support.
- WSL 2 enabled.
- Ubuntu 22.04 installed on WSL 2.
#!/bin/bash | |
name=$RANDOM | |
url='http://localhost:9093/api/v1/alerts' | |
echo "firing up alert $name" | |
# change url o | |
curl -XPOST $url -d "[{ | |
\"status\": \"firing\", |
This is a simple way to backup your MySQL tables to Amazon S3 for a nightly backup - this is all to be done on your server :-)
Sister Document - Restore MySQL from Amazon S3 - read that next
this is for Centos 5.6, see http://s3tools.org/repositories for other systems like ubuntu etc
#! /bin/bash | |
################ | |
# package.sh | |
# | |
# Packages java code as a native OS X application | |
# | |
# - Fetches source for a Java Swing HelloWorld application from the web | |
# - Compiles the source | |
# - Packages the source into a native Mac application |
mkdir -p reports | |
REPO="http://127.0.0.1:8888" | |
echo Checking for local repo at ${REPO} | |
curl -f --head ${REPO} > /dev/null 2>&1 || REPO='http://pypi.python.org/simple' | |
echo "... will use ${REPO}" | |
echo 'Creating "venv" environment...' | |
virtualenv --distribute --no-site-packages venv |