home.social

#ubuntu2604 — Public Fediverse posts

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

fetched live
  1. Iată o postare optimizată pentru Mastodon despre noul stack HWE de virtualizare pentru Ubuntu 26.04 LTS, direct în limba română și fără menționarea vreunei surse:

    🖥️ Ubuntu 26.04 LTS primește un stack opțional HWE pentru virtualizare!

    Canonical extinde conceptul de Hardware Enablement (HWE) – folosit până acum în special pentru kernel – și către tehnologiile de virtualizare. Administratorii de sistem pot acum accesa cele mai noi versiuni ale pachetelor de virtualizare direct pe sistemele Ubuntu 26.04 LTS, fără a renunța la stabilitatea oferită de o versiune cu suport pe termen lung.

    ✨ Principalele detalii despre HWE-ul de virtualizare:

    📦 Componente modernizate în mod continuu:
    • Include pachetele dedicate qemu-hwe, libvirt-hwe, edk2-hwe (firmware OVMF) și seabios-hwe.
    • Aceste pachete vor primi actualizări dinamic la fiecare 6 luni, preluând versiunile din lansările interimare Ubuntu.

    🔐 Sincronizare cu tehnologiile moderne de Confidențialitate (AMD SEV-SNP & Intel TDX):
    • Facilitează adoptarea rapidă a noilor funcționalități hardware pentru Confidential Computing, AI confidențial și izolare avansată a mașinilor virtuale.

    ⚙️ Complet opțional și sigur:
    • Instalările standard vor păstra versiunile implicite de virtualizare. Activarea se face la alegerea administratorului.
    • Canonical oferă instrumentul ubuntu_virt_helper pentru a gestiona întregul stack ca un ansamblu unificat, prevenind neconcordanțele de versiuni între QEMU, libvirt și firmware.

    🚀 Soluția ideală pentru centre de date și Cloud:
    • Elimină dilema de a alege între o versiune interimară cu pachete noi și o versiune LTS stabilă – oferind acum ce este mai bun din ambele lumi.

    O evoluție excelentă pentru infrastructura enterprise pe Linux! 🚀

    #Ubuntu #Ubuntu2604 #Virtualization #QEMU #libvirt #KVM #SysAdmin #OpenSource #CloudComputing #LinuxServer #TechNews

  2. Iată o postare optimizată pentru Mastodon despre noul stack HWE de virtualizare pentru Ubuntu 26.04 LTS, direct în limba română și fără menționarea vreunei surse:

    🖥️ Ubuntu 26.04 LTS primește un stack opțional HWE pentru virtualizare!

    Canonical extinde conceptul de Hardware Enablement (HWE) – folosit până acum în special pentru kernel – și către tehnologiile de virtualizare. Administratorii de sistem pot acum accesa cele mai noi versiuni ale pachetelor de virtualizare direct pe sistemele Ubuntu 26.04 LTS, fără a renunța la stabilitatea oferită de o versiune cu suport pe termen lung.

    ✨ Principalele detalii despre HWE-ul de virtualizare:

    📦 Componente modernizate în mod continuu:
    • Include pachetele dedicate qemu-hwe, libvirt-hwe, edk2-hwe (firmware OVMF) și seabios-hwe.
    • Aceste pachete vor primi actualizări dinamic la fiecare 6 luni, preluând versiunile din lansările interimare Ubuntu.

    🔐 Sincronizare cu tehnologiile moderne de Confidențialitate (AMD SEV-SNP & Intel TDX):
    • Facilitează adoptarea rapidă a noilor funcționalități hardware pentru Confidential Computing, AI confidențial și izolare avansată a mașinilor virtuale.

    ⚙️ Complet opțional și sigur:
    • Instalările standard vor păstra versiunile implicite de virtualizare. Activarea se face la alegerea administratorului.
    • Canonical oferă instrumentul ubuntu_virt_helper pentru a gestiona întregul stack ca un ansamblu unificat, prevenind neconcordanțele de versiuni între QEMU, libvirt și firmware.

    🚀 Soluția ideală pentru centre de date și Cloud:
    • Elimină dilema de a alege între o versiune interimară cu pachete noi și o versiune LTS stabilă – oferind acum ce este mai bun din ambele lumi.

    O evoluție excelentă pentru infrastructura enterprise pe Linux! 🚀

    #Ubuntu #Ubuntu2604 #Virtualization #QEMU #libvirt #KVM #SysAdmin #OpenSource #CloudComputing #LinuxServer #TechNews

  3. 🚀 Webinoly v1.21.2 is out now!

    This release brings very important improvements and fixes. Most notably, Ubuntu 26.04 is now fully supported and tested! The entire stack and all packages have been properly built and are ready to go.

    Update your servers today! 🛠️⚡

  4. 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
  5. 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
  6. Wenn bei euch Windows-Spiele mit Steam/Proton unter Linux nie ein Problem waren, sie nach dem Upgrade auf Ubuntu 26.04 aber nicht mehr starten wollen, kann es evtl. an der neuen Ubuntu-Version oder auch irgendwie am Linux Kernel 7.0 liegen.

    Die KI hat mir mehrere mögliche Ursachen und Lösungsmöglichkeiten vorgeschlagen, die alle nichts gebracht haben, bis auf diese hier: Steam als Flatpak-Paket zu installieren. Und tatsächlich, Proton-Spiele starten bei mir jetzt wieder.

    Das nur als Hinweis, falls ihr über ähnliche Probleme stolpert.

    #steam #proton #linuxkernel70 #ubuntu2604 #flatpak

  7. Wenn bei euch Windows-Spiele mit Steam/Proton unter Linux nie ein Problem waren, sie nach dem Upgrade auf Ubuntu 26.04 aber nicht mehr starten wollen, kann es evtl. an der neuen Ubuntu-Version oder auch irgendwie am Linux Kernel 7.0 liegen.

    Die KI hat mir mehrere mögliche Ursachen und Lösungsmöglichkeiten vorgeschlagen, die alle nichts gebracht haben, bis auf diese hier: Steam als Flatpak-Paket zu installieren. Und tatsächlich, Proton-Spiele starten bei mir jetzt wieder.

    Das nur als Hinweis, falls ihr über ähnliche Probleme stolpert.

    #steam #proton #linuxkernel70 #ubuntu2604 #flatpak

  8. Learn how to set up a system-wide proxy on Ubuntu 26.04 LTS for apt, curl, wget,Git, pip, npm, Docker, Snap, and systemd services.

    Full guide here: ostechnix.com/configure-system

    #Proxy #Ubuntu2604 #Linuxadmin #Linuxhowto

  9. Learn how to set up a system-wide proxy on Ubuntu 26.04 LTS for apt, curl, wget,Git, pip, npm, Docker, Snap, and systemd services.

    Full guide here: ostechnix.com/configure-system

    #Proxy #Ubuntu2604 #Linuxadmin #Linuxhowto

  10. RE: fosstodon.org/@webinoly/116489

    📢 Ubuntu 26.04 Status Update ⏳

    1.5 months post-release, Webinoly is locked, loaded, and ready to ship! However, we are stuck waiting for PHP.

    Our ecosystem depends on Ondřej’s PPA, which has unfortunately gone completely silent regarding "Resolute" support.

    This delay is entirely out of our hands. We will flip the switch the moment stable PHP packages land. Thank you for your patience! 🛠️

  11. RE: fosstodon.org/@webinoly/116489

    📢 Ubuntu 26.04 Status Update ⏳

    1.5 months post-release, Webinoly is locked, loaded, and ready to ship! However, we are stuck waiting for PHP.

    Our ecosystem depends on Ondřej’s PPA, which has unfortunately gone completely silent regarding "Resolute" support.

    This delay is entirely out of our hands. We will flip the switch the moment stable PHP packages land. Thank you for your patience! 🛠️

    #Webinoly #Ubuntu2604 #PHP #OpenSource #DevOps #ThePHPFoundation

  12. Le frisson de la mise à jour au matin

    Si je vous écris, c'est qu'elle s'est bien passée. Infimes sont les soucis avec Linux Ubuntu. Surtout si je compare à ce que je vivais avant 2015 et l'enfer Windows. Mais, il y a toujours ce petit frisson d'inquiétude au moment de la mise à jour. Le noyau 7 est passé à une nouvelle version. Les périphériques sont alignés. La journée peut commencer ! Beau vous soit ce chaud vendredi !

    vincentbreton.fr/le-frisson-de

  13. another day, another Ubuntu upgrade.

    - Python 3.14 broke a whole bunch of my tools because the licence file in an add-on library is in the wrong format. Naturally, this makes Python shit the bed and cry.

    - GIMP is broken because the ancient script-fu Scheme interpreter is broken, somehow?

    - no borders around terminal windows?! How do people overlap windows and stay sane?

    - the "... is not responding" window pops up too often

    It's very apt that the logo is a trash panda.

    #ubuntu #Ubuntu2604

  14. another day, another Ubuntu upgrade.

    - Python 3.14 broke a whole bunch of my tools because the licence file in an add-on library is in the wrong format. Naturally, this makes Python shit the bed and cry.

    - GIMP is broken because the ancient script-fu Scheme interpreter is broken, somehow?

    - no borders around terminal windows?! How do people overlap windows and stay sane?

    - the "... is not responding" window pops up too often

    It's very apt that the logo is a trash panda.

    #ubuntu #Ubuntu2604

  15. Das Upgrade von Ubuntu 25.10 auf 26.04 hat kurzerhand PHP 8.4 deinstalliert... Gut, das liess sich relativ einfach wieder installieren (PHP 8.5). Dann noch ein paar Anpassungen.

    Hätte er nicht einfach das alte PHP 8.4 auf dem System lassen können? Oder die 8.5 parallel installieren?

    #Ubuntu #Ubuntu2604

  16. Das Upgrade von Ubuntu 25.10 auf 26.04 hat kurzerhand PHP 8.4 deinstalliert... Gut, das liess sich relativ einfach wieder installieren (PHP 8.5). Dann noch ein paar Anpassungen.

    Hätte er nicht einfach das alte PHP 8.4 auf dem System lassen können? Oder die 8.5 parallel installieren?

    #Ubuntu #Ubuntu2604

  17. RE: meerjungfrauengrotte.de/@micha

    Die Privacy Extensions für IPv6 sind eigentlich eine tolle Idee.

    Durch sie bekommen ausgehende Verbindungen eine nur kurzzeitig gûltige IPv6-Adresse.

    Allerdings kann das bei Verwendung eines DynDNS-Dienstes zu Problemen führen. Auf denjenigen meiner PCs, die auch aus dem Internet erreichbar sein sollen, habe ich Privacy Extensions darum deaktiviert.

    Ubuntu 26.04 hat sie aber beim Upgrade wieder aktiviert, und schon waren meine Nextcloud (samt Passwort-Tresor), mein Paperless, mein SearXNG, mein MollySocket, mein Calibre, mein LibreTranslate, mein LanguageTool... nicht mehr erreichbar.

    #Ubuntu2604 #PrivacyExtensions #PrivacyExtensionsIPv6 #IPv6

  18. RE: meerjungfrauengrotte.de/@micha

    Die Privacy Extensions für IPv6 sind eigentlich eine tolle Idee.

    Durch sie bekommen ausgehende Verbindungen eine nur kurzzeitig gûltige IPv6-Adresse.

    Allerdings kann das bei Verwendung eines DynDNS-Dienstes zu Problemen führen. Auf denjenigen meiner PCs, die auch aus dem Internet erreichbar sein sollen, habe ich Privacy Extensions darum deaktiviert.

    Ubuntu 26.04 hat sie aber beim Upgrade wieder aktiviert, und schon waren meine Nextcloud (samt Passwort-Tresor), mein Paperless, mein SearXNG, mein MollySocket, mein Calibre, mein LibreTranslate, mein LanguageTool... nicht mehr erreichbar.

    #Ubuntu2604 #PrivacyExtensions #PrivacyExtensionsIPv6 #IPv6

  19. Na großartig. Bei Ubuntu 26.04 hat sich bei der Konfiguration der IPv6 Privacy Extensions etwas geändert. Die Konfigurationsdatei ist nicht mehr da, wo sie bisher immer war (/etc/sysctl.d/10-ipv6-privacy.conf). Und jetzt sind sie offenbar standardmäßig aktiviert. Heißt, ich erreiche meinen Mini-PC von außerhalb nur noch via IPv4.

    #Ubuntu #Ubuntu2604 #PrivacyExtensionms #IPv6

  20. Na großartig. Bei Ubuntu 26.04 hat sich bei der Konfiguration der IPv6 Privacy Extensions etwas geändert. Die Konfigurationsdatei ist nicht mehr da, wo sie bisher immer war (/etc/sysctl.d/10-ipv6-privacy.conf). Und jetzt sind sie offenbar standardmäßig aktiviert. Heißt, ich erreiche meinen Mini-PC von außerhalb nur noch via IPv4.

    #Ubuntu #Ubuntu2604 #PrivacyExtensionms #IPv6

  21. RE: fosstodon.org/@webinoly/116489

    Still tracking the Ubuntu 26.04 rollout.

    This release introduced several critical low-level changes and improvements that are causing a slower-than-usual turnaround for some upstream packages. While developers work through these complexities, we remain in "stability first" mode.

    We’ll pull the trigger on full support as soon as the core stack meets production standards. Thanks for your patience!

  22. Pour ceux qui auraient la mauvaise idée de passer trop tôt la mise à jour d'Ubuntu 24.04 à 26.04 sur un serveur avec #incus : attention, les nouvelles sécurités par défaut d' AppArmor cassent tout ! La solution ici : discuss.linuxcontainers.org/t/

    #ubuntu2604 #lxc

  23. Tonight's @LinuxSaloon: Deep dive into @ubuntu 26.04 LTS Resolute Raccoon! #GNOME 50, #Linux Kernel 7.0, TPM full-disk encryption, Rust tools, better NVIDIA Wayland support, new App Center & more. Is this the upgrade you’ve been waiting for? Come share your thoughts live! 🥤[YouTube link]
    #LinuxSaloon #Ubuntu2604 #ResoluteRaccoon

    youtube.com/live/VgGAk_LjAiU

  24. Tonight's @LinuxSaloon: Deep dive into @ubuntu 26.04 LTS Resolute Raccoon! #GNOME 50, #Linux Kernel 7.0, TPM full-disk encryption, Rust tools, better NVIDIA Wayland support, new App Center & more. Is this the upgrade you’ve been waiting for? Come share your thoughts live! 🥤[YouTube link]
    #LinuxSaloon #Ubuntu2604 #ResoluteRaccoon

    youtube.com/live/VgGAk_LjAiU

  25. 🦝 Ubuntu 26.04 is the new standard for high-performance data clusters.

    Still using ZooKeeper & apt-key? Your ClickHouse setup is legacy. Our 2026 blueprint:

    ✅️ Modern GPG keyrings
    ✅️ Tiered Storage: NVMe + HDD on Bare Metal
    ✅️ Native C++ Keeper: Bye Java!
    ✅️ AI Vector Search: High-Freq CPUs

    Zero cloud egress. Zero throttles.

    🔗 servermo.com/howto/install-cli

    #ClickHouse #Ubuntu2604 #SysAdmin #DataEngineering #BareMetal

  26. 🚀 Ubuntu 26.04 Status Update

    We are already working on support for the new LTS! While we wait for PHP, MySQL/MariaDB, and Redis packages to be fully available and stable in their respective repositories, we are making progress.

    ⚡ Huge thanks to Nginx for the immediate availability!

    We will announce full support as soon as the rest of the stack is ready for production. Stability is our priority. 🛠️

  27. 🚀 Ubuntu 26.04 Status Update

    We are already working on support for the new LTS! While we wait for PHP, MySQL/MariaDB, and Redis packages to be fully available and stable in their respective repositories, we are making progress.

    ⚡ Huge thanks to Nginx for the immediate availability!

    We will announce full support as soon as the rest of the stack is ready for production. Stability is our priority. 🛠️

    #Webinoly #Ubuntu2604 #Nginx #SysAdmin #LTS #WebPerf #SelfHosted

  28. :nextcloud: #Nextcloud Installationsanleitung für Ubuntu 26 :nextcloud:
    Die Nextcloud-Installationsanleitung wurde nach ersten erfolgreichen Tests für Ubuntu 26.04 LTS veröffentlicht:
    - #Ubuntu2604
    - #Nextcloud latest (oder 32.x)
    - #nginx
    - #PHP 8.5
    - #MariaDB 11.8
    - #Redis - Server
    - #fail2ban
    - #crowdsec
    - #ufw
    - #hpb

    👉 c-rieger.de/nextcloud-installa

    Wir freuen uns auf Eure Rückmeldungen.
    Viel Spaß!

  29. :nextcloud: #Nextcloud Installationsanleitung für Ubuntu 26 :nextcloud:
    Die Nextcloud-Installationsanleitung wurde nach ersten erfolgreichen Tests für Ubuntu 26.04 LTS veröffentlicht:
    - #Ubuntu2604
    - #Nextcloud latest (oder 32.x)
    - #nginx
    - #PHP 8.5
    - #MariaDB 11.8
    - #Redis - Server
    - #fail2ban
    - #crowdsec
    - #ufw
    - #hpb

    👉 c-rieger.de/nextcloud-installa

    Wir freuen uns auf Eure Rückmeldungen.
    Viel Spaß!

  30. :nextcloud: #Nextcloud Installationsskript / Ubuntu 26 :nextcloud:
    Das Nextcloud-Installationsskript wurde nach ersten erfolgreichen Tests für Ubuntu 26.04 LTS veröffentlicht:
    - #Ubuntu2604
    - #Nextcloud latest (oder 32.x)
    - #nginx
    - #PHP 8.5
    - #MariaDB 11.8
    - #Redis - Server
    - #fail2ban
    - #crowdsec

    👉 c-rieger.de/nextcloud-installa

    Wir empfehlen Ubuntu 26 derzeit noch *nicht* für den produktiven Einsatz für Nextcloud-Systeme - bitte verwendet vorerst noch Ubuntu 24.

    Wir freuen uns auf Eure Rückmeldungen.
    Viel Spaß!

  31. :nextcloud: #Nextcloud Installationsskript / Ubuntu 26 :nextcloud:
    Das Nextcloud-Installationsskript wurde nach ersten erfolgreichen Tests für Ubuntu 26.04 LTS veröffentlicht:
    - #Ubuntu2604
    - #Nextcloud latest (oder 32.x)
    - #nginx
    - #PHP 8.5
    - #MariaDB 11.8
    - #Redis - Server
    - #fail2ban
    - #crowdsec

    👉 c-rieger.de/nextcloud-installa

    Wir empfehlen Ubuntu 26 derzeit noch *nicht* für den produktiven Einsatz für Nextcloud-Systeme - bitte verwendet vorerst noch Ubuntu 24.

    Wir freuen uns auf Eure Rückmeldungen.
    Viel Spaß!

  32. Bug found. I can't login to #Nextcloud anymore using #Gnome's Online Accounts. I use an app password (because of 2FA), but it gives a generic error.

    #Ubuntu2604

  33. Bug found. I can't login to #Nextcloud anymore using #Gnome's Online Accounts. I use an app password (because of 2FA), but it gives a generic error.

    #Ubuntu2604

  34. Microsoft announces official availability of .NET 10.0 for Ubuntu 26.04 LTS!

    Microsoft has announced that .NET 10.0 is now available globally for Ubuntu 26.04 LTS users! This version of .NET brings improved performance and new features, as well as other enhancements across different areas of the framework.

    .NET is one of the officially supported development toolchains thanks to Microsoft and Canonical partnering together to ensure that .NET is available and easily installable in Ubuntu. This ensures that .NET works properly across multiple Ubuntu versions.

    Ubuntu 26.04 LTS Resolute Raccoon has also seen many changes besides the availability of .NET 10.0, including the usage of Linux 7.0 as the kernel to add support for new hardware and to enhance your computer’s performance and reliability. Besides, .NET 10.0 introduced post-quantum cryptography.

    To install .NET 10.0 SDK on your Ubuntu 26.04 LTS installation, follow these steps:

     $ sudo apt update  $ sudo apt install dotnet-sdk-10.0 

    Similarly, to install the runtime on your installation, follow these steps:

     $ sudo apt update  $ sudo apt install dotnet-runtime-10.0 

    However, to install .NET 10.0 SDK with Native AOT support, you’ll have to install the following packages:

     $ sudo apt update  $ sudo apt install dotnet-sdk-aot-10.0 clang 

    To learn more about what’s new for .NET in Ubuntu 26.04 LTS, consult the article below.

    Learn more #Net #Net100 #2604 #2604LTS #C #csharp #dotnet #Linux #news #Raccoon #Resolute #ResoluteRaccoon #Tech #Technology #Ubuntu #Ubuntu2604 #Ubuntu2604LTS #Ubuntu2604LTSResolute #Ubuntu2604LTSResoluteRaccoon #Ubuntu2604Resolute #Ubuntu2604ResoluteRaccoon #update
  35. Microsoft announces official availability of .NET 10.0 for Ubuntu 26.04 LTS!

    Microsoft has announced that .NET 10.0 is now available globally for Ubuntu 26.04 LTS users! This version of .NET brings improved performance and new features, as well as other enhancements across different areas of the framework.

    .NET is one of the officially supported development toolchains thanks to Microsoft and Canonical partnering together to ensure that .NET is available and easily installable in Ubuntu. This ensures that .NET works properly across multiple Ubuntu versions.

    Ubuntu 26.04 LTS Resolute Raccoon has also seen many changes besides the availability of .NET 10.0, including the usage of Linux 7.0 as the kernel to add support for new hardware and to enhance your computer’s performance and reliability. Besides, .NET 10.0 introduced post-quantum cryptography.

    To install .NET 10.0 SDK on your Ubuntu 26.04 LTS installation, follow these steps:

     $ sudo apt update  $ sudo apt install dotnet-sdk-10.0 

    Similarly, to install the runtime on your installation, follow these steps:

     $ sudo apt update  $ sudo apt install dotnet-runtime-10.0 

    However, to install .NET 10.0 SDK with Native AOT support, you’ll have to install the following packages:

     $ sudo apt update  $ sudo apt install dotnet-sdk-aot-10.0 clang 

    To learn more about what’s new for .NET in Ubuntu 26.04 LTS, consult the article below.

    Learn more #Net #Net100 #2604 #2604LTS #C #csharp #dotnet #Linux #news #Raccoon #Resolute #ResoluteRaccoon #Tech #Technology #Ubuntu #Ubuntu2604 #Ubuntu2604LTS #Ubuntu2604LTSResolute #Ubuntu2604LTSResoluteRaccoon #Ubuntu2604Resolute #Ubuntu2604ResoluteRaccoon #update
  36. 🦝 Το νέο Ubuntu 26.04 LTS “Resolute Raccoon” είναι εδώ!

    Και φέρνει πράγματα που θα λατρέψει η κοινότητα:

    🐧 Linux kernel 7.0
    🔐 Rust σε drivers & βασικά εργαλεία για memory safety
    🧩 Full encryption δίσκου με TPM binding
    🖥️ Wayland default – αντίο X.org
    🤖 CUDA & ROCm στα official repos
    ☁️ Cloud-native & έτοιμο για self-hosting

    Διάβασε όλες τις λεπτομέρειες στο άρθρο 👇
    opensource.ellak.gr/2026/04/24

    #Ubuntu2604 #ResoluteRaccoon #Linux #OpenSource #RustLang #Wayland #SelfHosting #Tech

  37. ¡Acabamos de publicar #Ubuntu 26.04 LTS Resolute Raccoon! 🦝 Cifrado completo de disco basado en TPM, mejoras en la gestión de permisos, Livepatch para servidores con arquitectura Arm, coreutils y sudo en Rust, soporte nativo para CUDA y ROCm, y más 🎉 #Ubuntu2604 #Linux #OpenSource #Rust

    Canonical releases Ubuntu 26.0...

  38. Ubuntu 26.04 LTS Resolute Raccoon uses Linux 7.0

    This year has seen a significant events as Canonical has released a new long-term support release of Ubuntu, which is Ubuntu 26.04 LTS Resolute Raccoon! Yesterday, this version of Ubuntu was made available to the general public, and it includes a significant amount of improvements, as well as new features.

    Ubuntu 26.04 LTS is built on Linux 7.0, which is a significant milestone in the history of Ubuntu. This was done under Canonical’s promise of bringing the latest Linux version to Ubuntu versions at the time of the release.

    You can consult the minimal changelogs of Linux 7.0 here.

    Linux 7.0 changelogs

    Linux 7.0 in Ubuntu 26.04 LTS provides support for Intel Core Ultra Series 3 processors (Panther Lake), which allows users who have this processor installed on their systems to experience the best of Ubuntu without any compatibility issues. This kernel introduces optimizations for the neural processing unit (NPU), which enables AI-enabled applications to provide maximum performance and improved efficiency.

    Linux 7.0 in Ubuntu 26.04 LTS alao provides support for IgH EtherCAT module, which enables support for a real-time networking protocol while enabling native OS support for microsecond-level timing precision for demanding workflows, such as robotics platforms.

    For those who are investing in cloud-based solutions, such as Amazon AWS, Microsoft Azure, and Google Cloud, Ubuntu 26.04 LTS has been optimized for virtual machine images to enable maximum performance for the most demanding workflows in the cloud. This improves productivity while saving time in those tasks when run on the cloud.

    To learn more about Ubuntu 26.04 LTS, consult the below announcement here.

    Announcement #2604 #2604LTS #Linux #Linux7 #Linux70 #news #Raccoon #Resolute #ResoluteRaccoon #Tech #Technology #Ubuntu #Ubuntu2604 #Ubuntu2604LTS #Ubuntu2604LTSResolute #Ubuntu2604LTSResoluteRaccoon #Ubuntu2604Resolute #Ubuntu2604ResoluteRaccoon #update