This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Install Obarun linux [1] on windows subsystem for linux. | |
#Obarun linux is an Arch linux based system without systemd. | |
#After installing wsl2 on windows10 or windows11 [2] and docker on Ubuntu [3] (from microsoft store), | |
#you type next commands against Ubuntu terminal prompt [4] | |
docker pull obarun/base | |
docker create --name obarun obarun/base | |
docker export -o obarun.tar obarun | |
#On WindowsPowershell | |
#wsl --import "<distro>" "<location for your wsl distro>" "PATH/TO/<distro>.tar" --version 2 | |
wsl --import "obarun" "C:\Users\<yourusername>\WSL\obarun" "C:\Users\<yourusername>\obarun.tar" --version 2 |