ServUO Version
Publish 58
Ultima Expansion
None
as per github instructions

root@ub2204master:~# sudo apt install dotnet-sdk-5.0
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package dotnet-sdk-5.0
E: Couldn't find any package by glob 'dotnet-sdk-5.0'

Ub 20.04. I just spun up this vm. patched it. moved servUO files.
 
This was pulled from an Ubuntu support thread:

Did you remember to run sudo apt update before trying to install? If so, let's confirm if the package is available in your Apt cache:

  1. Open a Terminal (if one is not already open)
  2. Check apt-cache for the dotnet-sdk packages:
    $ sudo apt-cache dump | grep dotnet-sdk

    You should get something that looks like this:
    Package: dotnet-sdk-2.1
    Package: dotnet-sdk-3.1
    Package: dotnet-sdk-5.0

  3. Install the package that you'd like:
    $ sudo apt install dotnet-sdk-5.0
 
sudo apt-cache dump | grep dotnet-sdk
[sudo] password for ant2ne:
Package: dotnet-sdk-6.0
Depends: dotnet-sdk-6.0 (null)
Depends: dotnet-sdk-6.0 (null)
Package: dotnet-sdk-6.0-source-built-artifacts
The following versions of .NET are ❌ no longer supported:

  • .NET 5
  • .NET Core 3.0
  • .NET Core 2.2
  • .NET Core 2.1
  • .NET Core 2.0

Well. I do 6?
 
you can also go with 7, thats fine. 5 is just the min you should go for net (not framework)
 
you can also go with 7, thats fine. 5 is just the min you should go for net (not framework)
thanks. I will try this when I get a chance.
It works. world is up. Empty but up. Now, can anyone suggest an easy test script. that I can drop in my custom scripts folder to be sure they load. I suppose I can open a new thread. this thread as [SOLVED]?
 
Last edited:
Back