workstation
git-bash-prompt
Warning
Whenever you get sluggish behavior, git-bash-prompt could very well be the problem when your repositories become to big!
Installation as it is advised on the website :
cd ~
git clone https://github.com/magicmonty/bash-git-prompt.git .bash-git-prompt
And edit .bashrc to source the file gitprompt.sh, so add :
updatedb
Since /etc/updatedb.conf contains an exception for /media :
coding
Use openjdk because it installs easier, and just add oracle when you encounter any problems. I have had very few.
zfs
apt-get install lsb-release
wget http://archive.zfsonlinux.org/debian/pool/main/z/zfsonlinux/zfsonlinux_6_all.deb
dpkg -i zfsonlinux_6_all.deb
apt-get update
apt-get install debian-zfs
modprobe zfs
zpool import bigsafe
apache2 ssl
First set the servername in apache2.conf to get rid of the servername warning :
Copy the certificate to /etc/ssl/certs and the key to /etc/ssl/private,
edit /etc/apache2/sites-available/default-ssl and point the certificate setting to these files :
SSLCertificateFile /etc/ssl/certs/www_sslcertificaten_nl.pem
SSLCertificateKeyFile /etc/ssl/private/www_sslcertificaten_nl.key
SSLCACertificatePath /etc/ssl/certs/
SSLCACertificateFile /etc/ssl/certs/ca-bundle.crt
That last one has to be generated from the certificate plus all root and intermediate files : see
Actual command used :
cat www_sslcertificaten_nl.pem COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt AddTrustExternalCARoot.crt > ca-bundle.crt
enable modules and restart apache
klopt.web
Add this near the end of the Virtualhost section in default-ssl.conf :
# added for /klopt.web
DocumentRoot /var/www/html/klopt.web
WSGIScriptReloading On
Alias /klopt.web /var/www/html/klopt.web
<Directory /var/www/html/klopt.web>
Order deny,allow
Allow from all
</Directory>
# added for /ws webserice
WSGIScriptAlias /ws /var/www/html/klopt.web/ws.wsgi
shellinabox
Add this line to “set some default values” in
Add this to default-ssl.conf, just after the virtualhost section and before ifmodule ends
virtualbox
Still as always you need to use the install script and probably install the kernel headers. But after that you get the annoying side-bar always shifting into view.
This oneliner should eliminate that :
VBoxManage setextradata global GUI/SuppressMessages confirmGoingFullscreen,remindAboutMouseIntegration,remindAboutAutoCapture
This at least seems to stop the messages in the virtual machine itself. The messages on the virtualbox GUI itself seem to remain.