Posted: 2024-10-04 18:01:00 Source: https://linux.slashdot.org/story/24/10/04/1759201/thousands-of-linux-systems-infected-by-stealthy-malware-since-2021?utm_source=atom1.0mainlinkanon&utm_medium=feed
A sophisticated malware strain has infected thousands of Linux systems since 2021, exploiting over 20,000 common misconfigurations and a critical Apache RocketMQ vulnerability, researchers at Aqua Security reported. Dubbed Perfctl, the malware employs advanced stealth techniques, including rootkit installation and process name mimicry, to evade detection. It persists through system reboots by modifying login scripts and copying itself to multiple disk locations. Perfctl hijacks systems for cryptocurrency mining and proxy services, while also serving as a backdoor for additional malware. Despite some antivirus detection, the malware's ability to restart after removal has frustrated system administrators.
Read more of this story at Slashdot.
Posted: 2024-10-04 15:05:17 Source: https://www.youtube.com/watch?v=iQgiktjI4Io
Posted: 2024-10-04 14:39:31 Source: https://www.kernel.org/
Version: | 6.11.2 (stable) |
---|---|
Released: | 2024-10-04 |
Source: | linux-6.11.2.tar.xz |
PGP Signature: | linux-6.11.2.tar.sign |
Patch: | full (incremental) |
ChangeLog: | ChangeLog-6.11.2 |
Posted: 2024-10-04 14:35:05 Source: https://www.kernel.org/
Version: | 6.10.13 (stable) |
---|---|
Released: | 2024-10-04 |
Source: | linux-6.10.13.tar.xz |
PGP Signature: | linux-6.10.13.tar.sign |
Patch: | full (incremental) |
ChangeLog: | ChangeLog-6.10.13 |
Posted: 2024-10-04 14:30:21 Source: https://www.kernel.org/
Version: | 6.6.54 (longterm) |
---|---|
Released: | 2024-10-04 |
Source: | linux-6.6.54.tar.xz |
PGP Signature: | linux-6.6.54.tar.sign |
Patch: | full (incremental) |
ChangeLog: | ChangeLog-6.6.54 |
Posted: 2024-10-04 05:54:44 Source: https://www.kernel.org/
Version: | next-20241004 (linux-next) |
---|---|
Released: | 2024-10-04 |
Posted: 2024-10-03 17:10:54 Source: https://www.youtube.com/watch?v=-sagVUkSgRI
Posted: 2024-10-03 16:00:00 Source: https://www.linuxjournal.com/content/how-set-debian-development-environment
Setting up a development environment is a crucial step for any programmer or software developer. Whether you’re building web applications, developing software, or diving into system programming, having a well-configured environment can make all the difference in your productivity and the quality of your work. This article aims to guide you through the process of setting up a Debian development environment, leveraging the stability and versatility that Debian offers.
Debian is renowned for its stability, security, and vast software repositories, making it a favored choice for developers. This guide will walk you through the steps of setting up a Debian development environment, covering everything from installation to configuring essential tools and programming languages. By the end, you’ll have a robust setup ready for your next project.
Before you begin, ensure that your hardware meets the following minimum specifications:
Debian Installation Media: You'll need the ISO file of the Debian distribution, which you can download from the official Debian website.
Basic Understanding of the Linux Command Line: Familiarity with command-line operations will be beneficial, as many steps will involve terminal commands.
Navigate to the Debian download page and choose the version that suits your needs. The Stable version is recommended for most users due to its reliability.
Creating a Bootable USBTo install Debian, you will need to create a bootable USB drive. Here are some tools you can use:
To create the USB, follow these steps using balenaEtcher as an example:
Booting from USB: Restart your computer and boot from the USB drive. This typically involves pressing a key like F2, F12, or Del during startup to access the boot menu.
Posted: 2024-10-03 13:47:34 Source: http://www.linux-magazine.com/Online/News/Halcyon-Creates-Anti-Ransomware-Protection-for-Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
Posted: 2024-10-03 03:50:58 Source: https://www.kernel.org/
Version: | next-20241003 (linux-next) |
---|---|
Released: | 2024-10-03 |
Posted: 2024-10-02 18:31:37 Source: https://distrowatch.com/12246
The DistroWatch news feed is brought to you by TUXEDO COMPUTERS. Philip Müller has announced the release of Manjaro Linux 24.1.0, an updated build of the project's rolling-release distribution with separate GNOME, KDE Plasma and Xfce editions. The new release comes with GNOME 46.5, KDE Plasma 6.1 and Linux kernel 6.10: "Since we released 'Wynsdey' in May 2024, we....
Posted: 2024-10-02 17:25:28 Source: https://www.youtube.com/watch?v=ld7xDKo3RF0
Posted: 2024-10-02 04:48:59 Source: https://www.kernel.org/
Version: | next-20241002 (linux-next) |
---|---|
Released: | 2024-10-02 |
Posted: 2024-10-01 17:24:57 Source: https://www.youtube.com/watch?v=tgOFYs8atks
Posted: 2024-10-01 16:00:00 Source: https://www.linuxjournal.com/content/exploring-network-dynamics-networkx-linux
In the age of data, understanding complex relationships within networks—ranging from social interactions to infrastructure systems—is more crucial than ever. Network analysis provides a set of techniques and tools for exploring these relationships, offering insights into the structure and dynamics of various systems. Among the myriad tools available, NetworkX emerges as a powerful Python library designed to handle these intricate analyses with ease, especially when run on robust platforms like Linux. This article explores how to effectively use NetworkX for network analysis on a Linux environment, providing both foundational knowledge and practical applications.
Before diving into the world of network analysis, it’s essential to set up a conducive environment on a Linux system. Here’s a step-by-step guide to getting started:
Installing Linux: If you don’t have Linux installed, Ubuntu is a recommended distribution for beginners due to its user-friendly interface and extensive community support. You can download it from the official Ubuntu website and follow the installation guide to set it up on your machine.
Setting up Python and Pip: Most Linux distributions come with Python pre-installed. You can verify this by running python3 --version
in your terminal. If it’s not installed, you can install Python using your distribution’s package manager (e.g., sudo apt install python3
). Next, install pip, Python’s package manager, by running sudo apt install python3-pip
.
Installing NetworkX: With Python and pip ready, install NetworkX by running pip3 install networkx
. Optionally, install Matplotlib for visualizing networks (pip3 install matplotlib
).
Network analysis operates on networks, which are structures consisting of nodes (or vertices) connected by edges (or links). Here’s a breakdown of key concepts:
Posted: 2024-10-01 04:41:12 Source: https://www.kernel.org/
Version: | next-20241001 (linux-next) |
---|---|
Released: | 2024-10-01 |
Posted: 2024-10-01 00:02:00 Source: https://linux.slashdot.org/story/24/09/30/2045247/arch-linux-is-now-working-directly-with-valve?utm_source=atom1.0mainlinkanon&utm_medium=feed
The Arch Linux team has announced a collaboration with Valve, working to support critical infrastructure projects like a build service and secure signing enclave for the Arch Linux distribution. Tom's Hardware reports: If you're familiar with Valve and Steam Deck, you may already know that the Deck uses SteamOS 3, which is built on top of Arch Linux. Thanks to the Arch Linux base and Valve's development of the Proton compatibility layer for playing Windows games on Linux, we now have a far improved Linux gaming scene, especially on Valve's Steam Deck and Deck OLED handhelds. While Valve's specific reasons for picking Arch Linux for Steam Deck remain unknown, it's pretty easy to guess why it was picked. Mainly, it's a particularly lightweight distribution maintained since March 2002, which lends itself well to gaming with minimal performance overhead. A more intensive Linux distribution may not have been the ideal base for SteamOS 3, which is targeted at handhelds like Steam Deck first. As primary Arch Linux developer Levente Polyak discloses in the announcement post, "Valve is generously providing backing for two critical projects that will have a huge impact on our distribution: a build service infrastructure and a secure signing enclave. By supporting work on a freelance basis for these topics, Valve enables us to work on them without being limited solely by the free time of our volunteers." Polyak continues, "This opportunity allows us to address some of the biggest outstanding challenges we have been facing for a while. The collaboration will speed up the progress that would otherwise take much longer for us to achieve, and will ultimately unblock us from finally pursuing some of our planned endeavors [...] We believe this collaboration will greatly benefit Arch Linux, and are looking forward to share further development on the mailing list as work progresses."
Read more of this story at Slashdot.
Posted: 2024-09-30 16:21:34 Source: http://www.linux-magazine.com/Online/News/Valve-and-Arch-Linux-Announce-Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
Posted: 2024-09-30 16:08:59 Source: https://www.youtube.com/watch?v=dZ2r_tBHUwk
Posted: 2024-09-30 14:34:33 Source: https://www.kernel.org/
Version: | 6.11.1 (stable) |
---|---|
Released: | 2024-09-30 |
Source: | linux-6.11.1.tar.xz |
PGP Signature: | linux-6.11.1.tar.sign |
Patch: | full |
ChangeLog: | ChangeLog-6.11.1 |