• Windows
  • Access WSL Ubuntu 18.04 through symlink

    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.

  • Linux
  • 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 […]

  • Allgemeines
  • 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, ‚;‘ […]