- Download Here
- Run the "Install Zorin.bat"
- Installed!
Run ZorinOS
in your windows CMD, then in the first startup it will prompt you with a username
Be sure to put a unix username without any special characters, and in lower case.
It will prompt some info after that, everything optional, you can leave empty.
After create the user i will run a auto update, just wait it.
- Open the
/usr/lib/python3/dist-packages/zorin_appearance/envoriment.py
- Replace the line
_desktop_environment = os.environ['XDG_CURRENT_DESKTOP']
with this code:
try:
_desktop_environment = os.environ['XDG_CURRENT_DESKTOP']
except:
_desktop_environment = "GNOME"
Currently the Zorin Desktop isn't working very well, and I don't know why. But the most near of run the desktop it was with this command:
export DISPLAY=$(cat /etc/resolv.conf | grep nameserver | awk '{print $2}'):0 && export XDG_CURRENT_DESKTOP=x11 && export GDK_BACKEND=x11 export LIBGL_ALWAYS_INDIRECT=0 && export XDG_SESSION_TYPE=x11 && sudo su $USER -c 'gnome-shell --x11 --mode=zorin'
It started the shell but it crashes with some random apps.
I need to put zorin 16 on WSL2 but am not sure where to get the rootfs tarball ? There are a few scripts on github for configuring any distro for WSL but they need a rootfs tarball and I am not sure if I can just tar the zorin filesystem (while booted from a live usb etc) or whether that may need a lot of changes.
Or if there's a zorin docker image that might work too.
Could you give me a few hints what you did to make this work in WSL ?