home.social

#2604lts — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #2604lts, aggregated by home.social.

  1. Ubuntu 26.04.1 is here!

    Ubuntu 26.04.1 is finally ready and is now available to the public, as September will find its way to us to introduce itself with a lot of excitement. The first point release brings a lot of improvements compared to the original version which was out back in April. And the most exciting thing is:

    If you’re running 24.04.x, starting from today, you can finally upgrade to 26.04.1 by normal means!

    As point releases are usually made for LTS releases with upgrades from the previous LTS release being enabled after every first point release, such as upgrading from 22.04.x to 24.04.1 and from 24.04.x to 26.04.1, this release is going to be a lot more exciting.

    To upgrade your system by normal means from 24.04 LTS, you can either run the Update Manager or run the terminal and issue the sudo do-release-upgrade command. This way, you should be able to get a banner that tells you that the Ubuntu 26.04.1 version is now available. However, the download may be huge in the order of gigabytes, depending on how many applications are installed.

    Check this link out to download Ubuntu 26.04.1!

    The download may take several minutes, depending on your internet connection speed and how many applications are there on your system, while the installation may take as few as 15 minutes, depending on your applications and your computer performance. Never interrupt the upgrade process, or else you may have to either recover your system or backup your data and re-install the Ubuntu distribution using the 26.04.1 ISO image.

    In the case of laptops, you’ll need to charge your laptop fully before upgrading, but it’s recommended to keep your laptop plugged in while upgrading to ensure that there are no interruptions. For PC towers, it’s recommended to keep it plugged in to the stable power source to avoid interruptions. Consult your electricity company for possible blackout schedules to plan your upgrade.

    #2604 #2604LTS #Linux #linuxUpdate #LongTermSupport #lts #Raccoon #Resolute #ResoluteRaccoon #Ubuntu #Ubuntu2604 #Ubuntu2604LTS #Ubuntu2604LTSResolute #Ubuntu2604LTSResoluteRaccoon #Ubuntu2604Resolute #Ubuntu2604ResoluteRaccoon #UbuntuUpdate #update
  2. Installing .NET 10.0 on Ubuntu proot-distro with Termux on Android

    .NET 10.0 is a new version of the modern .NET framework that brings several improvements across different areas of the software development kit, including runtime improvements (JIT inlining improvements, method devirtualization, and so on), new APIs in .NET libraries (new JSON deserialization options, post-quantum cryptography support, and so on), and many more improvements.

    Normally, any .NET applications that are built for a specific platform can be run normally, such as Android applications made with MAUI. However, what if you’ve planned to run a CLI .NET application on Android? Or an application for computers? Termux can provide you with a solution.

    Recent improvements to Termux involved changing how proot-distro downloads the distribution containers so that it utilizes Docker Hub to download the necessary assets and configure them to be usable. Follow the below steps to install .NET 10.0 with Ubuntu proot-distro.

    1. Install Termux from F-Droid.
      • For Samsung devices, you might want to turn off the Auto Blocker feature so that you can install it. You can also use the Play Store version, but we haven’t tested it yet, and your mileage may vary.
    2. Open Termux, and let it configure itself. After that, upgrade all packages using pkg upgrade.
      • If you’re prompted to choose whether to keep your own changes or to install the package-supplied version, just press ENTER on your phone’s keyboard.
    3. Once all necessary upgrades are complete, you can now install the proot-distro program using pkg install proot-distro.
    4. Afterwards, install the Ubuntu 26.04 Docker container with proot-distro install ubuntu:26.04.
      • It might take a while, depending on your internet connection.
    5. Now, you can login to the container with proot-distro login ubuntu.
    6. Before installing any packages in the Ubuntu proot environment, you’ll have to check to see if there are any package updates with apt update.
      • If there are any, run apt dist-upgrade to upgrade all packages.
    7. Install .NET SDK 10.0 or .NET Runtime 10.0, depending on your use case.
      • If you want to build .NET applications, install the SDK using apt install dotnet-sdk-10.0.
      • If you want to just run .NET applications, install the runtime using apt install dotnet-runtime-10.0.
    8. If you’ve installed the SDK, verify that the application actually builds.
      • Create a new directory, such as test (mkdir test), and change the current directory to it (cd test)
      • Create a new .NET console project with dotnet new console --use-program-main.
      • Verify that it actually builds using dotnet run.

    However, as of now, you may be running into an issue where the building stage of any application may fail with error messages that are similar to this:

     GC heap initialization failed with error 0x8007000E  Failed to create CoreCLR, HRESULT: 0x8007000E 

    In this case, you’ll have to add an environment variable that changes the GC heap hard limit value to an acceptable value so that you can build and run applications on Android devices. In order to do this temporarily, append the environment variable before the command, such as this:

     $ DOTNET_GCHeapHardLimit=1C0000000 dotnet build 

    If this works, you can add a line that exports this environment variable to your ~/.profile like this:

     $ echo "DOTNET_GCHeapHardLimit=1C0000000" >> ~/.profile  $ . ~/.profile 

    Once done, exit and re-enter your proot environment, and you should be able to build and run .NET applications.

    #NET #2604 #2604LTS #Android #C #csharp #dotnet #news #oneUi #Proot #ProotDistro #Samsung #smartphone #Tech #Technology #Termux #Ubuntu #Ubuntu2604 #Ubuntu2604LTS #Ubuntu2604LTSResolute #Ubuntu2604LTSResoluteRaccoon #Ubuntu2604Resolute #Ubuntu2604ResoluteRaccoon #ubuntuProot #update