Skip to content

Installation-on-Unix

This guide should work on most/all Unix systems

Section titled “This guide should work on most/all Unix systems”

ℹ️ Every change made to TazUO is automatically built on Mac, Ubuntu and Windows. See here

Check it out here

Clone TazUO:
git config --global url."https://".insteadOf git://
git clone https://github.com/bittiez/TazUO.git --recursive

cd TazUO/

nuget restore

dotnet publish -c Release

Navigate to TazUO/bin/Release

chmod +x ClassicUO

./ClassicUO

This guide was done using Ubuntu, you may need to change a few commands depending on your OS

Section titled “This guide was done using Ubuntu, you may need to change a few commands depending on your OS”

sudo apt install git - Install git

mkdir TazUO && cd TazUO - Create and enter TazUO folder

For the next step you may have issues if you don’t run this first: git config --global url.https://.insteadOf git://, but you can try without it if you’d like.

git clone https://github.com/bittiez/TazUO.git . --recursive - Clone TazUO into current folder

sudo apt install dotnet-sdk-8.0 - Install dotnet

sudo apt install zlib1g-dev - Install Zlib

dotnet publish src/ClassicUO.Client/ClassicUO.Client.csproj -c Release -o ../../bin/dist

Download the latest zip here.

Extract wherever you’d like.

Make the ClassicUO file executable. (chmod +x ./Classicuo)

Run that file via double clicking or terminal.

Error about libsdl? sudo apt install libsdl2-2.0-0