Create two batch files as below. They need to be in the same directory as the .ovpn
OpenVPN configuration file
(eg. \Users\Wtower\OpenVPN) and be named with the same name filename, but appending _up
and _down
.
What to after installing Ubuntu Gnome 17.04.
Due to a known bug with this version of network manager, Gnome can't connect to wifi networks:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# install programs: | |
sudo apt-get install gksu gtkterm | |
# run terminal: | |
gksu gtkterm | |
# extract image iso: | |
bzip2 -d Colibri_VF_LinuxImageV2.6Beta2_20160630.tar.bz2 |
Based on the article `Related ManyToManyField in Django admin site`_,
the file forms.py
contains a summary of the recommended code.
The file manytomany.py
contains a generic base class in order to
be DRY and avoid repeating the same code in many form classes.
An example of how to use can be found in the NineCMS_ project commit 52c710f_.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Greeting prologue | |
echo "Welcome to "(uname -a | awk '{print $1 " " $2 " " $3 " " $4 " " $12}') | |
uptime | |
# ansible | |
. ~/workspace/ansible/ansible/hacking/env-setup.fish -q > /dev/null ^&1 | |
set -Ux ANSIBLE_INVENTORY ~/workspace/ansible/play/hosts | |
echo "Now using "(ansible --version | head -n 1 | awk '{print $1 " " $2}') | |
# Load virtual fish |