linux

Below you will find pages that utilize the taxonomy term “linux”

iPads befüllen in 2024

March 29, 2024

Es begab sich eines Tages da musste ein VPN auf einem iPad konfiguriert werden.

Die notwendige App für ein OpenVPN war schnell im App Store auf dem Gerät gefunden und installiert.

VIM Tutorial 01

September 4, 2023

Lasst uns doch mal ein bisschen über VIM reden. Ich möchte hier einmal aufzeigen das VIM mehr als nur ein Texteditor ist und es viele versteckte Funktionen gibt die nicht jeder auf die, vielleicht sogar ersten Jahre, erkennt.

TMUX - TerminalMUltipleXer

May 13, 2023

TMUX, ein Terminal MUltipleXer.

Terminal? 
Das Schwarz weiße ding?
Ist das überhaupt interessant?

Music your home with linux

August 20, 2014
Musik zuhause. Das ist eigentlich das was man immer gern hat, aber sich nie Gedanken zu macht. Und die wichtigste Frage: Wie kann Linux dabei helfen? Im folgenden werde ich versuchen eine Übersicht über meine Erfahrung mit diesen beiden Themen zu geben. Die Idee Ich hatte die Idee Musik nicht nur im Wohnzimmer sondern auch gleichzeitig im Garten abzuspielen. Gleichzeitig ist hierbei technisch übersetzt natürlich das Wort Synchron. Man möchte nicht einen Beat verpassen beim Wechseln von Garten ins Wohnzimmer

Winy Wine

August 18, 2014
Getting things done with wine on linux is cool, but you have to seperate working directories if you want to be able to cleanly remove or install another application side by side. Here i have a few tips for you to make yout first steps into that. WINEPREFIX="$HOME/prefix32" WINEARCH='win32' wine 'wineboot' WINEPREFIX="$HOME/prefix32" WINEARCH='win32' winetricks vcredist2005

Deleting ZFS Snapshots

August 14, 2014
If you are in the situation to deal with many zfs snapshots that are not needed anymore you can try this. !!! USE AT YOUR OWN RISK !!! #!/bin/bash for snapshot in `zfs list -H -t snapshot | cut -f 1` #add grep's here to limit #the amount of deletes do zfs destroy $snapshot done zfs list -H -t snapshot

How to create an ISO in linux.

June 29, 2014
fastest way: Open a Terminal and type in: cat /dev/sr0 > $HOME/test.iso Or with dd isoinfo -d -i /dev/sr0 |grep -i -E 'block size|volume size' dd if=/dev/sr0 of=$HOME/test.iso bs=<blocksize> count=<volumesize> Test your Image against the CD/DVD cmp $HOME/test.iso /dev/sr0

Serial and USB Action with wine

June 29, 2014
First of all you have to add your user to the dialout group which is used in ubuntu for all serial or usb devices that can perform some kind of /dialouty/ activity. For the user to have access to that group it is better to logout and login again to get the GUI to receive the new Groups. In the next step you have to browse to your wineprefix directory that in my case resides in $HOME/.

Android and Ubuntu

June 12, 2014
The easiest way to flash your Smartphone: First install the android tools sudo apt-get install android-tools-adb android-tools-fastboot reboot your phone into recovery For my nexus 4 it is holding down the powerbutton and the volume down key since the recovery appears. plug the phone into your computer and sideload your android image adb sideload cm-11-*.zip adb sideload gapps-*.zip have fun! :)

How to enable sshd on Android

April 28, 2014
If you love android as much as me for it’s customizing capabilities you will love this tutorial. I try to do much on the commandline and use as many automation as possible for this purpose. I got the Code references from the CM Wiki. So here it is, my sshd on Android Tutorial. Why use this long tutorial when there is an app for it? Because there is an APP for it.

Terminal Fun

March 7, 2014
My plan is to ban the mouse out of my daily use System’s and be productive too. In this Post i present some tools that can help me do that. Daily work, so what do i have to tweak? The Web Browser is startet with the login of course and then there is the Text Editing that has to be taken care of. Music and other tools have to be managed.

Silverlight Videos on Linux

February 21, 2014
Silverlight and linux are not friends. This is the Tutorial from which i could watch movies for silverlight successfully on my Ubuntu Machine. Pipelight Installation So for Ubuntu you have to do some little things … For my personal recommends i added chromium to split the usage of a normal browser and a dedicated one. sudo add-apt-repository ppa:pipelight/stable sudo apt-get update sudo apt-get install --install-recommends pipelight-multi sudo pipelight-plugin --enable silverlight sudo apt-get install chromium-browser go out there and Happy Silverlighting…

Cannonball (the OutRun Engine)

February 7, 2014
How to install cannonball the outrun engine on your own PC for the ultimate Retro Experience on Ubuntu/Debian Derivates. With Windows the Process is defined on the github page. {% highlight bash %} DIRRECTORY=~/git mkdir $DIRRECTORY git clone https://github.com/djyt/cannonball.git $DIRRECTORY/cannonball cd $DIRRECTORY/cannonball could not get it to target debian cp cmake/debian.cmake cmake/default.cmake mkdir build cd build sudo apt-get install cmake libsdl1.2-dev libboost1.53-dev -yy cmake ../cmake make ln -s ../roms roms

Nethack 4

February 7, 2014
There are many clones in the Nethack Community. Here is one that i learned to love the most. dynahack is the way to go. Download the latest source or git clone it. git clone https://github.com/tung/DynaHack cd DynaHack sudo apt-get install gcc flex bison libncursesw5-dev libjansson-dev \ zlib1g-dev cmake cmake-curses-gui mkdir build cd build cmake .. ccmake . Set SHELLDIR and CMAKE_INSTALL_PREFIX to /home/username/dynahack/install. Set BINDIR, DATADIR and LIBDIR to /home/username/dynahack/install/dynahack-data.

New Blog in da House

February 6, 2014
Welcome here in my little Blogging experience. Since the last try’s to blog more in the future failed i stumbled upon github-pages. Here you got For a long time i wanted to get some cheat-sheets and tutorials up that i would not always have to look up in the web for little things like bash programming etc. Through the design of static pages and the ability to take your blog everywhere you go i couldn’t resist to take a tour in the all new jekyll.

Git für alle(s)

October 5, 2012

Git kann gut und gerne viele Daten verwalten. Der Vorteil von Git gegenüber “normalen” VCS (Version Control System) liegt klar auf der Hand.