Skip to content

web - UpTimes 2015-1 veröffentlicht und bereit zum Download

Heute wurde die aktuelle Ausgabe der GUUG Mitgliederzeitschrift UpTimes veröffentlicht und steht auf der Webseite ab sofort zum Download als PDF und ePUB bereit.
Aus dem Inhalt:
* Das Was-ist-was des Wer-ist-wer: Identifikation, Authentisierung, Autorisierung (von Kristian Köhntopp)
* Von einem, der auszog, IPv6-only zu leben: Hindernisse im IPv4-Netz (von Jens Link)
* Unterwegs nach morgen: Eigener DHCPv6-Server (von Henri Wahl)
* Ist dir langweilig? Bau dir ein Langweilometer (von Jürgen Plate)
* Shellskripte mit Aha-Effekt V: Sirenengeheul und Viertelstundentöne aus der Shell (von Jürgen Plate)
* Change Management: Interview zur Umstellung auf DevOps (mit System Engineer Henning Henkel)
* Angriffsvektor Stromnetz: Buchbesprechung: Blackout (von Hartmut Streppel)

Die Redaktion freut sich über Anregungen, konstruktive Kritik und Artikelvorschläge für zukünftige Ausgaben.

Viel Spaß beim Lesen.
wolfgang

Quelle

Download
Besten Dank :-).

bash - enhanced svn diff

Again i want to share a simple bash function for dealing with the svn diff. I was tired to add the file i want to compare multiple times so i wrote a small wrapper function. The syntax is the following. net_bazzline_svn_diff https://svn.mydomain.org/trunk https://svn.mydomain.org/branches/my_branch module/myModule/myFile.foo Enjoy it and be aware that there is no fancy validation logic inside.

#####
# Calles svn diff for two repositories.
# Call $repositoryUrlOne $repositoryUrlTwo $filePath
#
# @author stev leibelt
# @since 2013-01-30
####
function net_bazzline_svn_diff ()
{
  if [ $# -eq 3 ]; then
    svn diff "$1""/""$3" "$2""/""$3"
  else
    echo 'No valid arguments supplied'
  fi
}
Sourceode also available on github.com.

howto - add a printer in linux with cups

A small howto for the task "adding a printer in linux by using cups". - Start the cups service (service cups start, rc.d start cups - this depends on your distro) - Open "/etc/cups/cups.conf" and search for "SystemGroup" and note the group - If needed, add your user to this group by using "usermod -a -G $groupname $username - Open a browser and open the url "http://localhost:631/", there you are at the administration page for cups The rest should be self explaining.

tool - ack is a tool like grep, optimized for programmers

I stumbled over a domain name called "betterthangrep.com and thought "wow, bold statement". But i liked the testimonials as well as the featurelist so i played a round a bit and you really get the feeling ack is doing better then grep in the metter of "output what you search for". I will go on with my investigation, lets see if i find something i can add to this entry.