FUN WITH LINUX

Testing ansible-roles automatically on every git-push

7 December 2016

ansible

Ansible is a powerful configuration management tool. For developing and distributing ansible-roles we use Gitlab at Toscom. In this article I’ll describe how to automatically test ansible-roles for different Linux-Distributions in Docker-Container using Gitlab-Runner whenever someone pushes changes into our Gitlab-Repository.

Read more..
Search all installed packages containing a searchstring and uninstall them

10 November 2016

This is a one-liner to search for installed packages containing a searchstring and then deinstall them using “apt-get remove”:

apt-get remove --purge $(dpkg --get-selections | cut -f 1 | grep DPKG-SEARCHSTRING | xargs echo " " | tr -d '\n')
Read more..
Second Anniversary

7 November 2016

Today this blog has reached it’s second anniversary.

We’ve come too far
To give up who we are
So let’s raise the bar
And our cups to the stars -Daft Punk

Read more..
Happy 25th Birthday Vim

5 November 2016

The best editor of this world celebrates it’s 25th anniversary

Vim version 1.14 was the first public release of Vim, distributed on Fred Fish disk 591. The executable has the version information “Vi IMitation v1.14 (Nov 2 1991 0:36:35)”. That is exactly 25 years ago. Raise your glass to Vim! (Bram Moolenaar)

So HAPPY BIRTHDAY VIM

Read more..
How to migrate mysql-user/permissions

2 November 2016

Sometimes we have to migrate some tables from one host to another. And sometimes we want to migrate users as well. This is how I managed to do this..

First let’s read out all users

mysql --batch --skip-column-names -e "SELECT user, host FROM user" mysql
Read more..
HackADay: Listening to Spotify on my Pi using A2DP

28 October 2016

Raspberry Pi Logo

I installed Raspbian(Debian Jessie) with Kodi on my Raspberry Pi and I use my Pi as a Meda Center. This Media Center plays music, mostly radio stations, all day long. I can easily control this media-center using the Yatse-App on my phone. The Setup is almost perfect, but just almost. Sometimes I prefer to listen to my Spotify-Playlists. At the moment there are no really good music addons for that. So I came to the idea to pair my phone via bluetooth with my Pi and use the audio output of my phone to play the Spotify-playlists.

Read more..
i3wm

22 October 2016

I used Fluxbox/Blackbox wm for more than 10 years. It’s a great window manager for people who prefer a lightweight system and  love to customize their system. Now it was time for a change…

Read more..
How to find out the serial number of a specific disk

11 October 2016

To find out the serial number of a disk I mostly use one of the following commands:

/sbin/udevadm info --query=property --name=sdb | grep ID_SERIAL
## or
hdparm -i /dev/sdb | grep SerialNo
Read more..
Suricata Ruby-Gem

11 October 2016

I wrote a Ruby-Gem for suricata. It offers classes to parse suricata-logs and ships with a nagios-plugin

Read more..
Creating screenshots using imagemagick

29 September 2016

Normally I don’t use the “print”-key on my keyboard. I woud like to use it to quickly create screenshots. So I’ll map the following command to my .fluxbox/keys-file:

sleep 5s && import /home/dr/Screenshots/`date +%F-%T`.jpg

After 5 seconds of idle-time this command will activate a screenshot. After the cursor changed I can select a window or a region on my screen. The screenshot will be saved with it’s date and time under /home/dr/Screenshots.

Read more..
Except where otherwise noted, content on this site is licensed under a Creative Commons Attribution 3.0 Unported License.

Copyright 2015-present Hoti