One annoying thing is accessing files that you have in your WSL, because they are quite hidden. To make it a little easier lets create a link or to be precise a junction to it. Open a CMD.exe as Administrator Execute C:\>mklink /J Ubuntu18.04 C:\Users\%USERNAME%\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu18.04onWindows_79rhkp1fndgsc\LocalState\rootfs\ Access the Linux filesystem through C:\Ubuntu18.04 Keine verwandten Artikel gefunden.
Change Ubuntu sources.list mirror with sed
Just a quick note on how to change the package mirror in Ubuntu or Debian in one command: sed -i ’s%http://.*/ubuntu/%http://ftp.halifax.rwth-aachen.de/ubuntu/%g‘ /etc/apt/sources.list A list of mirrors can be found for Ubuntu here and Debian here. Enjoy Keine verwandten Artikel gefunden.
Connect to a remote docker host with docker-machine using TLS certificates
My target is to use a local shell to connect to my remote docker host on my home server, so that I can develop my Dockerfile or docker-compose files locally and easily deploy them to the remote machine, were they should run in the end. Configuration on the host I use systemd as system and […]
From Gentoo no-multilib to multilib without reinstalling
When I installed my server I though I will have a only 64bit system. Well that proved to be wrong, whereas the reason is irrelevant. But going back to a multilib profile from a no-multilib one is nearly impossible without some external help, the outside help being a VM with a Gentoo running. Prerequisits Get […]
Gentoo Linux on Hyper-V
These days I faced to need to have a Gentoo Linux running on my local computer. Since I’m currently testing a lot of Stuff with Docker on my Windows 10 Pro I have Hyper-V active and other Hypervisors like Virtual Box or VMWare will not work. So these are the Steps how I got the […]
Schriften zum Programmieren
Auch wenn mein Hauptberuf nicht das Programmieren ist, so komme ich doch immer wieder in die Verlegenheit die ein oder andere Zeile Code schreiben zu dürfen. Um dies in einer schönen und ansehnlichen Form zu machen, wurden bei einem Streifzug durch das Internet folgende Schriften gefunden: Hack Mit der nun in Version 2.0 freigegebenen Schriftart […]
Nginx, PHP & Composer development stack on Windows
Lately I decided to start coding with PHP once again and was in need of a suitable development stack. For a while now I have been using nginx and MariaDB for a web- and database server on my root servers and I am very pleased with it. So the way to go is the installation […]
Sunshine Live Stream URLs als Playlist (12/2015)
Sunshine Live hat einnige seiner Sender rausgeworfen und neue aufgenommen war es auch wieder von meiner Seite neue Playlists mit den Streams gibt. Sunshine Live AAC 64kbps Sunshine Live MP3 128kbps Sunshine Live MP3 192kbps Quelle: http://stream.sunshine-live.de/ Keine verwandten Artikel gefunden.
Let’s Encrypt nginx configuration
I’m a very happy user of the letsencrypt.com closed beta programm and wanted to share the configuration for this very vhost on nginx. While researching possible configuratiuons I stumbeled upon a site from the Mozilla Project, that generates SSL configurations for your webserver. Prerequisites Before we can start using the letsencryt there are a few […]
Migrate mySQL user to new server
To mirgrate databases to a new server we need two things: User information (password, grants) the database In order to get the userinformation we need to execute the following query which returns a list of commands to show the users grants and encrypted passwords. SELECT DISTINCT CONCAT( ’show grants for ‚, user, ‚@‘, host, ‚;‘ […]