Linux
2.16K subscribers
4.01K photos
20 videos
17.1K links
Новости Линукс Linux

По всем вопросам @evgenycarter
Download Telegram
Выпуск uutils 0.10, варианта GNU Coreutils на языке Rust

Опубликован выпуск проекта uutils coreutils 0.10.0 (Rust Coreutils), развивающего аналог пакета GNU Coreutils, написанный на языке Rust. В состав coreutils входит более ста утилит, включая sort, cat, chmod, chown, chroot, cp, date, dd, echo, hostname, id, ln и ls. Целью проекта является создание кроссплатформенной альтернативной реализации Coreutils, среди прочего способной работать на платформах Windows, Redox и Fuchsia.

👉@sysadminoff

https://www.opennet.ru/opennews/art.shtml?num=66037
Fil-C 0.682 — memory safety без переписывания

Состоялся выпуск Fil-C 0.682 — компилятора C и C++, обеспечивающего полную безопасность работы с памятью (memory safety) и дающего гарантии бОльшие, чем многие другие языки, такие как, например, Rust. Проект разрабатывается Филипом Пизло (Filip Pizlo), который в представлениях не нуждается.
Fil-C базируется на кодовой базе Clang/LLVM 20.x и позволяет компилировать традиционный код на C/C++ с гарантией предотвращения всех основных уязвимостей (out-of-bounds access, use-after-free, double free, type confusion). В отличие от ASan или MTE, Fil-C использует строго безопасную объектную модель и принципиально не содержит лазеек вроде блоков unsafe.
За прошедший год проект прошёл путь от концептуального доказательства возможностей до полноценного инструментария с масштабной экосистемой.
( читать дальше... )



 c, c++, fil-c, memory safety, безопасность

👉@sysadminoff

https://www.linux.org.ru/news/security/18353368
📰 dwproton-11.0-10 released with a fix for Honkai: Star Rail

If you want to play various Anime games on Linux like Honkai: Star Rail, dwproton is likely the best one to use with many tweaks to make them playable.Read the full article on GamingOnLinux.

🔗 Source:

#linux

👉@sysadminoff

https://www.gamingonlinux.com/2026/08/dwproton-11-0-10-released-with-a-fix-for-honkai-star-rail/
📰 AMD Preps HDMI FRL Fixes, New Knob For Disabling Older AMD GPU DCE Display Support

Overnight AMD engineers sent out their latest round of AMDGPU DC display code updates for their Linux driver. This week's round of display code updates include some additional fixes for their recently introduced HDMI FRL (Fixed Rate Link) support as part of the work toward their HDMI 2.1 implementation finally coming together for their open-source, upstream Linux driver...

🔗 Source:

#amd #linux #opensource

👉@sysadminoff

https://www.phoronix.com/news/AMDGPU-DC-DCE-Gating
Открыт код Cloudflare OS, платформы для приложений, создаваемых через AI

Компания Cloudflare открыла код платформы Cloudflare OS, предназначенных для создания персональных приложений с использованием вайб-кодинга, а также для безопасной работы с этими приложениями и AI-агентами. Код написан на языке TypeScript и распространяется под лицензией Apache 2.0.

👉@sysadminoff

https://www.opennet.ru/opennews/art.shtml?num=66038
Rhythmbox 3.5

Спустя 10 лет с момента публикации ветки 3.4 состоялся релиз музыкального проигрывателя Rhythmbox 3.5, развиваемого проектом GNOME с оглядкой на iTunes. Rhythmbox поддерживает средства для управления музыкальной коллекцией, обеспечивает автоматическую загрузку подкастов, позволяет прослушивать интернет-радио, предоставляет возможности по расширению функциональности через плагины, поддерживает загрузку альбомов из звуковых сервисов, включает инструменты для синхронизации и копирования музыки для устройств с поддержкой протокола MTP и USB-накопителей. Код проекта написан на языке Си и распространяется под лицензией GPLv2. Для загрузки сформирован пакет в формате Flatpak.
( читать дальше... )



 gnome, multimedia, opennet, rhythmbox, музыка

👉@sysadminoff

https://www.linux.org.ru/news/gnome/18353546
📰 Free to play football game Strikers Club adds Easy Anti-Cheat - works on SteamOS / Linux

Strikers Club is a free to play multiplayer football game where everyone controls a single player, and now it has Easy Anti-Cheat.Read the full article on GamingOnLinux.

🔗 Source:

#linux

👉@sysadminoff

https://www.gamingonlinux.com/2026/08/free-to-play-football-game-strikers-club-adds-easy-anti-cheat-works-on-steamos-linux/
Mettle 0.15.0 и 0.15.1

31 июля состоялись выпуски 0.15.0 и 0.15.1 Mettle — языка системного программирования со статической типизацией:


Нативная поддержка x86-64 (+ AVX2), AArch64, NVIDIA PTX, SPIR-V (OpenCL 2.0).


Собственный линкер Windows PE.


Собственный отладчик на уровне исходного кода:

Без внешних форматов.
Точки останова, пошаговая отладка, а также чтение и запись переменных в реальном времени через --debug-hooks.
Без gdb, PDB и DWARF.



Бэкенд CUDA.


Без LLVM, виртуальной машины и рантайма.


Выполнение на этапе компиляции: функции с атрибутом @test запускаются в интерпретаторе компилятора командой mettle test, без создания бинарного файла. Команда mettle trace интерпретирует одну функцию и выводит построчное отслеживание значений. Команда --pgo интерпретирует функцию main() на этапе сборки и передаёт измеренные частоты вызовов обратно в оптимизатор.


Проверка заимствований (borrow checker):


ОписаниеПримерАналог Rust


Use-after-free (direct)free(p); p[0]ownership / Drop
Double freefree(p); free(p)ownership
Use-after-free through an aliasq = p; free(q); p[0]move semantics
Use-after-free across a call (inferred)consume(p); p[0] where consume frees pmove semantics
Borrow outliving its stack scope{ var x; g = &x[0]; } use(g)lifetimes ('a)
Interior pointer after reallocq = &buf[i]; realloc(buf,..); q[0]iterator invalidation
Interior pointer after freeq = &buf[i]; free(buf); q[0]dangling reference
Returning the address of a stack localreturn &localfn() -> &T lifetime error
Leak (no owner on any path)var p = malloc(n); return 0(Rust frees via Drop)




Компилятор основан на библиотеке libmtlc:

Собственный промежуточный язык (IR).
Классические и GNN оптимизаторы кода.
Нативная генерация кода (x86-64 (+ AVX2), AArch64, NVIDIA PTX, SPIR-V (OpenCL 2.0)).
Нативная компоновка.

Проекты написаны кейптаунским программистом suidvandiewereld на языке C (стандарт C99) и распространяются по лицензии Apache-2.0.



 c, mettle, компиляторы, языки программирования

👉@sysadminoff

https://www.linux.org.ru/news/development/18353611
📰 While Torvalds Makes Peace With AI in Linux, Greg Kroah-Hartman Draws a Line (Sort of)

His new policy keeps AI patches out of drivers/staging, the tree meant for newcomers to learn kernel development.

🔗 Source:

#kernel #linux

👉@sysadminoff

https://feed.itsfoss.com/link/24361/17403762/linux-drivers-staging-ai-rejection
15 Advanced MySQL Database Interview Questions and Answers

The post 15 Advanced MySQL Database Interview Questions and Answers first appeared on Tecmint: Linux Howtos, Tutorials & Guides .Much of the MySQL interview prep you’ll find online is based on outdated versions that reached end-of-life years ago. If
The post 15 Advanced MySQL Database Interview Questions and Answers first appeared on Tecmint: Linux Howtos, Tutorials & Guides.

👉@sysadminoff

https://www.tecmint.com/mysql-advance-interview-questions/
📰 Linux To Avoid Confusing Processor Firmware With Newer Intel CPUs Sporting DEC

A patch for the Intel P-State CPU frequency scaling Linux driver is pending to avoid confusing the processor firmware on newer platforms like Intel Core Ultra Series 3 "Panther Lake" where Dynamic Efficiency Control (DEC) is supported...

🔗 Source:

#intel #linux

👉@sysadminoff

https://www.phoronix.com/news/Linux-No-Confuse-Intel-DEC
📰 Mesa 26.2 Open-Source Graphics Stack Officially Released, Here’s What’s New

Mesa 26.2 open-source graphics stack is now available for download with new features and improvements across all supported drivers. Here’s what’s new!

🔗 Source: https://9to5linux.com/mesa-26-2-open-source-graphics-stack-officially-released-heres-whats-new

#opensource

👉@sysadminoff
📰 Desktop Linux apps on Android proved my phone's biggest bottleneck isn't what I thought

Running desktop Linux apps on an Android phone sounds like the sort of thing that should fall apart almost immediately. You are dealing with a small screen, awkward touch controls, and an operating system that was never designed to work like a desktop operating system. Yet after using Termux and running Debian through Linux Deploy, I found that the display was not the biggest problem.

🔗 Source:

#android #debian #linux

👉@sysadminoff

https://www.xda-developers.com/desktop-linux-apps-android-proved-phones-biggest-bottleneck/
📰 Rust-Based uutils Coreutils 0.10 Reaches 93.5% GNU Compatibility

The Rust-based core utilities project reaches a 93.48% GNU test pass rate while improving compatibility, security, and reliability.

🔗 Source:

#gnu

👉@sysadminoff

https://linuxiac.com/rust-based-uutils-coreutils-0-10-reaches-93-5-gnu-compatibility/
📰 GNOME 50.4 Desktop Environment Released with Various Improvements

GNOME 50.4 is now available as the fourth point release to the latest GNOME 50 desktop environment series with more bug fixes, updated translations, and other changes.

🔗 Source: https://9to5linux.com/gnome-50-4-desktop-environment-released-with-various-improvements

#gnome

👉@sysadminoff
Windows 10 Enterprise LTSC 2021 ESU will cost $61 per device

Microsoft has set January 12, 2027, as the end of support for Windows 10 Enterprise LTSC 2021 and will begin selling Extended Security Updates (ESU) on September 1, 2026. The first year costs $61 per device, or about $45 for organizations using Intune or Windows Autopatch.
Source

👉@sysadminoff

https://4sysops.com/archives/windows-10-enterprise-ltsc-2021-esu-will-cost-61-per-device/
📰 Proxmox ports itself to Arm with help from Nvidia and Supermicro

Proxmox Server Solutions, the company behind the open source Proxmox virtualization stack, has announced a port of its flagship Virtual Environment to the Arm CPU architecture – and a collaboration with Nvidia and Supermicro that made it happen.

🔗 Source:

#arm #opensource

👉@sysadminoff

https://www.theregister.com/virtualization/2026/08/06/proxmox-ports-itself-to-arm-with-help-from-nvidia-and-supermicro/5283770
📰 Linux Kernel Begins Phasing Out the crypto_rng Layer to Simplify Random Number Generation

by George WhittakerLinux kernel developers are moving forward with plans to remove the crypto_rng API layer, a long-standing component of the kernel's cryptographic subsystem. The proposed change is part of a broader effort to simplify the kernel's internal architecture by eliminating redundant code paths and encouraging developers to rely on the kernel's modern random number generation interfaces instead. (phoronix.

🔗 Source:

#kernel #linux

👉@sysadminoff

https://www.linuxjournal.com/content/linux-kernel-begins-phasing-out-cryptorng-layer-simplify-random-number-generation
📰 Mesa 26.2.0 released with lots of improvements for Linux / SteamOS graphics drivers

Mesa 26.2.0 is quite a bumper release bringing a lot of new features across many open source Linux / SteamOS drivers.Read the full article on GamingOnLinux.

🔗 Source:

#linux #opensource

👉@sysadminoff

https://www.gamingonlinux.com/2026/08/mesa-26-2-0-released-with-lots-of-improvements-for-linux-steamos-graphics-drivers/
📰 Qualcomm Proposes Synx For The Linux Kernel With "Significant" Power + Performance Benefits

Qualcomm engineers have initiated a discussion over upstreaming Synx to the Linux kernel, which is a global synchronization framework across different parts of SoCs. Qualcomm is already using Synx internally and is reported to provide "significant" power and performance benefits...

🔗 Source:

#kernel #linux

👉@sysadminoff

https://www.phoronix.com/news/Synx
OpenAI’s rogue agent swarm built a secret message board before hacking Hugging Face

OpenAI says its autonomous AI agents secretly coordinated for weeks through the company’s internal Artifactory package manager, sharing exploits, credentials, and task assignments. The disclosure has prompted OpenAI to slow some research while it strengthens monitoring and incident response.
Source

👉@sysadminoff

https://4sysops.com/archives/openais-rogue-agent-swarm-built-a-secret-message-board-before-hacking-hugging-face/