linux
Vault
Install
wget https://releases.hashicorp.com/vault/0.11.5/vault_0.11.5_linux_amd64.zip -P /tmp/
apt install -y unzip
unzip -d /usr/sbin /tmp/vault_0.11.5_linux_amd64.zip
vault -autocomplete-install
Atom editor
Install
https://flight-manual.atom.io/getting-started/sections/installing-atom/
Add-ons
ls -l ~/.atom/packages/
apm install atom-beautify
Alternatives
https://code.visualstudio.com/
Links
http://atom-packages.directory/category/tools-beautify/
Install Couch DB under Ubuntu
Installation
wget https://couchdb.apache.org/repo/bintray-pubkey.asc -qO - | sudo apt-key add -
echo "deb https://apache.bintray.com/couchdb-deb $(lsb_release -cs) main" | sudo tee -a /etc/apt/sources.list.d/couchdb.list
sudo apt update
debconf-set-selections <<\EOF
couchdb couchdb/adminpass string admin
couchdb couchdb/adminpass_again string admin
couchdb couchdb/mode select standalone
couchdb couchdb/bindaddress string 0.0.0.0
EOF
sudo apt-get install -y couchdb
Login
http://SERVER_IP:5984/_utils/
user: admin
pass: admin
WTF - information dashboard for terminal
Download
https://wtfutil.com/
Modules
https://wtfutil.com/posts/modules/
Configuration
~/.config/wtf/config.yml
Build Wildfly deb package
# http://wildfly.org/downloads/
# https://github.com/mattthias/wildfly-packaging
VERSION=13.0.0.Final
REVISION=1
sudo apt-get install -y devscripts
# Download the "source" (the binary "Java EE7 Full & Web Distribution")
# wget http://download.jboss.org/wildfly/10.1.0.Final/wildfly-10.1.0.Final.tar.gz
# https://github.com/ilanddev/wildfly-debian/tree/master/debian
# download archive
mkdir /tmp/wildfly
wget http://download.jboss.org/wildfly/${VERSION}/wildfly-${VERSION}.tar.gz -q -O /tmp/wildfly/wildfly-${VERSION}.tar.gz
# create a link to archive
cd /tmp/wildfly
Install and configure autofs under Ubuntu
# install autofs package
apt-get install -y autofs
# create required directories
mkdir /etc/auto.master.d
# Configure NFS mount nas.example.com:/volume1/backup to /media/backup
echo "/media /etc/auto.media" >> /etc/auto.master.d/media.autofs
echo "backup -fstype=nfs,rw,async,vers=3 nas.example.com:/volume1/backup" >> /etc/auto.media
# check (directory will by created on access)
ll /media/backup
# debug
service autofs stop
sudo automount -f -v
Ansible playbook
https://github.com/panticz/ansible/blob/master/autofs-test.yml
OpenFortiGUI
Install FortiClientSSL VPN client
wget -q http://www.unibamberg.de/fileadmin/rz/vpn/Linux/VPN_Linux_FortiClient.tar.gz -O /tmp/VPN_Linux_FortiClient.tar.gz
sudo tar xzf /tmp/VPN_Linux_FortiClient.tar.gz -C /opt/
sudo /opt/forticlientsslvpn/fortisslvpn.sh
Install openfortigui
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 2FAB19E7CCB7F415
echo "deb http://styrion.at/apt/ ./" | sudo tee /etc/apt/sources.list.d/styrion.list
sudo apt-get update
sudo apt-get install openfortigui
Compile