DistroWatch Weekly |
DistroWatch Weekly, Issue 927, 26 July 2021 |
Welcome to this year's 29th issue of DistroWatch Weekly!
Some operating systems strive to be general purpose platforms, capable of being adjusted and customized into any role required. Distributions such as Fedora and Ubuntu aim to be masters of no one specific task, but capable of being able to fill most roles. Other distributions, such as EasyNAS and Clonezilla Live, strive to perform one specific task very well at the exclusion of others. This week we begin with a look at a specialized, lightweight distribution called OviOS. The OviOS distribution is intended to offer on-line storage solutions and can be used to set up ZFS storage pools. Our Feature Story has more information on the independent OviOS distribution and its features. In our News section we talk about openSUSE reorganizing its software repositories while Gentoo provides new and more diverse download options. We also talk about work going into a new FreeBSD system installer along with two recent vulnerabilities which affect most Linux distributions. Plus we share some tips on how Linux organizes and reports memory usage. How much memory is your system currently consuming? Let us know in this week's Opinion Poll. We are also pleased to share the releases of this past week and list the torrents we are seeding. We wish you all a wonderful week and happy reading!
Content:
- Review: OviOS 3.11
- News: openSUSE reorganizes repositories, Gentoo offers new download options, FreeBSD working on a new installer, Linux kernel and systemd patch vulnerabilities
- Questions and answers: Making sense of memory statistics
- Released last week: Kaisen Linux 1.7, GParted Live 1.3.1-1
- Torrent corner: Bluestar, Gardua, GParted Live, IPFire, Kaisen, KDE neon, Kodachi, NuTyX, SystemRescue
- Opinion poll: What percentage of your computer's memory is used?
- Site news: Console interviews Jesse Smith
- New additions: Archcraft
- New distributions: Zephix
- Reader comments
Listen to the Podcast edition of this week's DistroWatch Weekly in OGG (15MB) and MP3 (11MB) formats.
|
Feature Story (by Jesse Smith) |
OviOS 3.11
OviOS Linux is an independent, storage operating system which combines open source technologies to provide a dedicated, performance-oriented storage system. The goal is to keep OviOS Linux a pure storage, appliance-like platform. The operating system features a command line interface and a special utility called OviOS Shell (sometimes written ovios-shell) to assist the administrator in setting up and managing services.
There is one build of OviOS for 64-bit (x86_64) computers. The download is a relatively compact 487MB in size. Looking over the documentation on the project's website reveals a few items I feel are worth mentioning. One is that booting OviOS is only supported on Legacy BIOS, not UEFI-enabled systems. Also, OviOS takes over one entire hard drive for the operating system. The install process will wipe out anything on the disk selected to hold the distribution: "The drive chosen for the install will be automatically wiped and partitioned for OviOS, any data will be permanently lost."
Booting from the install media brings up a console where we are asked to provide login credentials. We can sign in as the root user using the password "ovios". The system automatically launches the OviOS Shell which provides customized, limited control over key parts of the operating system. I will talk about this shell later. To get to a regular command line interface we can type "linuxcmd" to get a Bash shell. We can then configure networking and install the operating system.
Installing
From Bash we can run a command called setup to start the installer. The system installer uses a series of text-based menus to walk us through a few short steps. We are asked to pick our time zone and set the system clock. We are asked which hard drive the distribution should take over. No information about the available detected disks is shown, apart from their names. We do not get to see their size or manufacturer information.
The installer takes over the first disk, installing OviOS to the second partition. When it is done we can restart the computer or return to the command line interface. Something which first occurred during the install process, and regularly happened later during my trial, was background service messages would be periodically written to the screen. This happened regardless of which terminal I was using and what program I was running. The result was that text and prompts were sometimes hidden by these status messages, making it impossible to tell what I was selecting in a menu or what a status message had told me.
Early impressions
My newly installed copy of OviOS booted to a text console where I could still sign in with the original credentials. We can reset the root password (and regular user account passwords) once we get signed in. As before, when root signs in the OviOS Shell automatically runs.
Before using the OviOS Shell, I recommend checking out the documentation which covers working with services like Samba and setting up new storage pools through the OviOS Shell utility.
While we can use the Bash command line to set up user accounts, manage services, and deal with ZFS storage pools, I wanted to focus on what sets OviOS apart from other distributions, especially those with a NAS-like focus. For the most part I tried to stick with using OviOS Shell which is the heart of the distribution.
OviOS Shell
To start with, I feel it is worth mentioning pressing the Tab key while using the shell brings up a list of commands OviOS Shell can work with. Often times we can run a command and add a question mark or "-h" after it to see supported functions. For example we can run "pool ?" or "snap ?" to see options related to storage pools and snapshots.
The shell's built-in documentation is terse and often shows only supported keywords without any description. I also found not all commands support the question mark flag. To further cause confusion, not all commands listed with the Tab key are valid commands. For instance, if I pressed Tab OviOS Shell would display "status" as a command we can run. Trying to run "status" would result in an error saying the command wasn't recognized. The same error occurred when trying to use the shell's built-in "list" command.
I found some shell commands are just front-ends for regular command line programs. Running df just shows ZFS disk usage data in df's format. Running the OviOS Shell command top displays the output of the htop program.
To get started I used the OviOS Shell's pool command to set up ZFS storage. Running "pool create" offered me a list of RAID options and asked me to type in the full device name of the target drive. Unfortunately available devices are not listed so we need to look up the name of the device some other way ahead of time. We are then asked if we want to enable compression, with the default being "yes". I typed "yes" and hit Enter, only to be told compression was disabled as a result of my choice. Despite the lack of compression, I now had a ZFS pool located at /ovios/data.
After rebooting the computer I found my new ZFS pool was not mounted. There is an option set in OviOS which skips importing available ZFS storage at boot time. We can adjust this by running the following command from the OviOS Shell: "option skip.import off". I also found networking, even wired networking, was not enabled by default. We can set up a network connection by running the netsetup command from Bash. This allows us to assign a static IP address or a dynamic address to a selected interface.
Looking around the system a little I discovered OpenSSH is enabled by default and blocks direct access to the root account. We can create a regular user and have them login over secure shell. This provides access to files and the user account. This is especially useful when paired with tools which can work over OpenSSH, such as the FileZilla file transfer tool or rsync.
I looked at enabling Samba shares for easier access to files on the network through various file managers. There are a few steps involved in this process. We need to enable and start the Samba service. Following the on-line documentation I then needed to create a new user to be created for Samba remote access. The system asked me to provide it with the location of a filesystem share it would associate with the new user. The location is requested in the format of "/pool/volume". However, I found this doesn't work. The actual format needs to be the filesystem path to the directory we want to share. For instance, with my ZFS pool called "data", the proper name would be "/ovios/data" or "/ovios/data/share-this", not "/data/share-this". Once I worked that out the system asked me to make up a new username and password for the share. I did this and, a moment later, OviOS displayed an error saying it has failed to create the new user, but gave no indication of why. I was then returned to the shell prompt.
This failed process highlights an issue I repeatedly ran into with OviOS. The documentation and on-screen messages often feel terse or incomplete. There isn't a lot of information provided on how to use the OviOS Shell. There are some hints as to how to find available options or commands we can run to set up services, but very little explains what the available options do. There are rarely examples which show using the available commands.
Resource usage
OviOS is quite small and uses few resources. A fresh install consumed about 50MB of RAM when signed into the command line. Once I had created a ZFS storage pool and added some services, such as Samba, memory usage remained at a pleasant 60MB. The operating system itself only uses about 1.6GB of disk space.
Apart from some services such as Samba, NFS, and OpenSSH the distribution does not ship with much software. There are common command line tools, but the system stays focused and lightweight. OviOS runs the SysV init software (version 2.88) and version 4.14 of the Linux kernel. Both of these packages are a few years old at the time of writing. It seems OviOS is more inclined to sticking with tried and true software than the latest versions available.
Software management
In the distribution's documentation it mentions software management can be handled with pacman, the same package manager used by Arch Linux and its derivatives: "OviOS Linux excels in its simplicity and packages can be installed or upgraded easily with pacman." While it is true pacman is installed on the system and can be used to add new software from local packages, OviOS does not enable any repositories by default. There is no mirror list on the system. I searched through the documentation and found no reference to enabling repositories. As far as I can tell, apart from performing a fresh new install of OviOS about once a year, there isn't any way to keep software on the distribution up to date, short of installing new versions of vulnerable packages manually from source code.
Conclusions
OviOS offers a concept I find appealing: a minimal distribution designed to handle network storage and virtually nothing else. It's lightweight and focused. As someone who runs a backup server on an old Raspberry Pi, this is a style of distribution I can appreciate.
However, there were a number of issues with setting up and maintaining OviOS which frustrated me and made me reluctant to recommend the distribution. Earlier I mentioned the documentation tends to be terse and the on-screen messages are sometimes vague or misleading. There are OviOS Shell commands listed which are not recognized, not all commands have help messages, and those that do don't explain what their options do. Similarly, services and built-in options are listed, but not described. When I went to set up a Samba share and user, I was told the user account couldn't be created, but not why. This leaves the administrator fumbling in the dark.
This trend continues into package management. The pacman utility is present, but only seems to work with local packages we have downloaded from other projects. Which makes me wonder how one is supposed to keep OviOS up to date with security fixes. If the project provides updates I didn't find a way to enable them, and if it doesn't that leaves the user to manually upgrade packages from upstream source code, which isn't ideal for a dedicated device.
Most other storage-focused distributions I have used tend to do two things: streamline setting up storage volumes and provide a web-based interface. OviOS does neither of these. Setting up ZFS pools takes more manual effort than it would on platforms such as Ubuntu, FreeBSD, or TrueNAS. Unlike most NAS-style platforms there is no web-based administration, everything is handled from the command line. This makes OviOS slightly smaller than the alternatives, but using it requires more work.
The key to OviOS seems to be the OviOS Shell. It makes several options more visible and this can be useful. However, the shell often acts as a front-end to other commands without simplifying their use. I usually found myself getting frustrated with the custom shell and exiting to a Bash prompt to get work done because the commands available through Bash (such as zfs and zpool) work the same across multiple operating systems and that meant I didn't need to learn OviOS's custom approach to doing things. With more time to explore OviOS I would probably get used to the way it handles options and exposing system information, it might be worthwhile too. At this point though I find it easier to work around OviOS Shell to get the system set up.
* * * * *
Visitor supplied rating
OviOS has a visitor supplied average rating of: N/A from 0 review(s).
Have you used OviOS? You can leave your own review of the project on our ratings page.
|
Miscellaneous News (by Jesse Smith) |
openSUSE reorganizes repositories, Gentoo offers new download options, FreeBSD working on a new installer, Linux kernel and systemd patch vulnerabilities
The openSUSE project is adjusting the way its repositories and updates are organized. The distribution, which is now compatible with SUSE Linux Enterprise, can share some of the same repositories. "The shared PackageHub and openSUSE packages known as the backports repository contains all the packages not in SUSE Linux Enterprise nor in the openSUSE specific packages. Previously, PackageHub was specific to SLE, which duplicated packages between openSUSE and PackageHub; now this single project is shared between both PackageHub and openSUSE Leap 15.3. This single repository will improve the quality of delivering updates and avoid package conflicts like zypper patch for openSUSE Leap 15.3." Additional information on the package repository changes can be found in the project's announcement.
* * * * *
The Gentoo project is publishing new download options, called "stage files", which can be used to set up the meta-distribution. "Following some technical reorganization and the introduction of new hardware, the Gentoo Release Engineering team is happy to offer a much-expanded set of stage files for download. Highlights are in particular the inclusion of musl-based stages and of POWER9-optimized ppc64 downloads, as well as additional systemd-based variants for many architectures. For amd64, Hardened/SELinux stages are now available directly from the download page, as are stages based on the lightweight C standard library musl. Note that musl requires using the musl overlay, as described on the page of the Hardened musl project. For ppc, little-endian stages optimized for the POWER9 CPU series have been added, as have been big- and little-endian Hardened musl downloads." Further information on the new download options can be found in the project's news post.
* * * * *
The FreeBSD project released its Quarterly Status Report this week which details efforts going into the operating system's infrastructure, ports, and core utilities. One change in the works is creating a new, more user-friendly system installer. "bsdinstall is FreeBSD's current installer. It is a terminal application with an unwieldy interface, and it asks some very obscure questions that are hard to understand for ordinary users. So, the purpose of this project is to create a graphical installer for FreeBSD that has a more streamlined interface, and to improve other aspects of the FreeBSD installation process. The experimental installer uses a web front-end: a web server runs locally from the installation media, and the user configures their install by filling out web forms on a browser also running on the installation media. A Web interface is flexible and accessible, so it suits an installer well. This interface can also support remote installs, where the server runs on the target and the install is configured through some other machine, though I have not done much work here."
* * * * *
Two new security vulnerabilities with the potential for wide-reaching impact were published in the Linux community this past week. One issue was found in the Linux kernel itself which allows a local attacker to gain elevated access by creating super long path names for a file. "By creating, mounting, and deleting a deep directory structure whose total path length exceeds 1GB, an unprivileged local attacker can write the 10-byte string "//deleted" to an offset of exactly -2GB-10B below the beginning of a vmalloc()ated kernel buffer. We successfully exploited this uncontrolled out-of-bounds write, and
obtained full root privileges on default installations of Ubuntu 20.04,
Ubuntu 20.10, Ubuntu 21.04, Debian 11, and Fedora 34 Workstation; other
Linux distributions are certainly vulnerable, and probably exploitable." The issue has already been patched and most distributions have published a fix.
The other vulnerability came in the form a denial of service attack which, in some circumstances, could cause the commonly used systemd software to crash the operating system. "Successful exploitation of this vulnerability allows any unprivileged user to cause denial of service via kernel panic. As soon as the Qualys research team confirmed the vulnerability, Qualys engaged in responsible vulnerability disclosure and coordinated with author and open-source distributions to announce the vulnerability." While this bug was also potentially serious it has been fixed and most distributions have made an update available.
* * * * *
These and other news stories can be found on our Headlines page.
|
Questions and Answers (by Jesse Smith) |
Making sense of memory statistics
Running-out-of-memory asks: I'm trying to run this application which tells me it's out of memory and then crashes. My machine has 16GB of memory, but when I check Linux says it's only using 2GB. How can I force Linux to use the remaining memory so my application will run?
DistroWatch answers: I suspect there may be some confusion here with regards to how memory consumption is measured on Linux. When the system reports it is using 2GB of memory this indicates that the operating system and its applications are currently taking up 2GB of RAM which cannot be used for anything else. The operating system, and any applications you hope to run, can see and consume all of the remaining memory. Which means, assuming your system can see all of the 16GB of physical RAM in your machine, you should have 14GB of memory left over for running programs. The extra 14GB of memory will be automatically consumed and given to any application which requests it. You do not need to do anything to help this process.
While we are talking about memory, let's look at an example with each of the different types of memory explained. Running the command "free --human --giga" from the command line will display information on memory consumption and availability in a relatively easy to read format. It will likely look like this:
|
total |
used |
free |
shared |
buff/cache |
available |
Mem: |
5.4G |
1.9G |
1.7G |
67M |
1.8G |
3.3G |
From the above example we can see that the machine where we ran the free command has 5.4GB of memory in total. This is the physical amount of RAM the operating can see.
The second column, used, indicates that 1.9GB of memory is currently being used. This means that the operating system, desktop environment, and any programs and services we are running are taking up 1.9GB of the 5.4GB of RAM available. This used memory cannot be used for anything else, it is effectively "locked in".
The amount of free memory is the amount of RAM not being used for anything at all. This 1.7GB has not been set aside for use by anything. It is entirely empty and can be gobbled up by a new program at a moment's notice.
The shared field is not particularly interesting to us. It's usually an indication of how much memory is used by services like temporary filesystems. We can typically ignore the shared field for all practical purposes.
The buff/cache field sometimes causes confusion. This field shows how much memory is holding copies of files which are also stored elsewhere, such as on the disk drive. Reading data from a disk drive is relatively slow and so Linux keeps files which programs have accessed recently in memory until it needs the space for something else. This makes accessing files we have already opened once much faster. In this example 1.8GB of cached files are stored in RAM. In the event we open an application which needs more memory than is currently free, Linux will replace files it has in the cache with the new application's data.
The final field is the one I suspect most people will find the most significant. The available field tells us how much data can be consumed right now by an application which needs more memory. In this instance it is 3.3GB.
You might be wondering what the difference is between free and available. When memory is free there effectively isn't anything in it; the RAM isn't being used for anything at all. There is no program data and there are no copies of files in free memory. Memory which is available may have something in it, like a cached file, but cached files can be dropped and the space can be used for something else at any time.
Getting back to the original question, assuming the free command sees the total 16GB of physical memory and assuming there is lots of memory listed as available, then that means your application is trying to consume more than what is listed as available. You'll either need to address how much memory the application needs by changing its settings, free up more memory (perhaps by running fewer services or a lighter desktop environment), or install more RAM in your computer.
* * * * *
Additional answers can be found in our Questions and Answers archive.
|
Released Last Week |
Kaisen Linux 1.7
Kaisen Linux is a rolling-release, Debian-based desktop distribution. The project's latest release, Kaisen Linux 1.7, introduces improved Btrfs support, replaces noatime flags with relatime, cleans out old dependencies which are no longer required, and updates the Linux kernel. "New Btrfs mount options for Kaisen Linux. Removal of the noatime option to allow the deletion of snapshots (replaced by the relatime option to limit disk writes). Removed gksu in favor of a polkit for graphical tool launchers. Removed unused dependencies on conkycolors. Added smilies support for OpenVPN client on all interfaces. Updated Linux to 5.10.46. Updated Firefox to version 88. Guests are now installed by kaisen-build via the common folder, and removed automatically by the installer depending on the environment in which Kaisen is installed (e.g. if you use VMWare you will only have VMWare guests installed, if you don't use any hypervisor, all guests will be removed). Tools for administrators categorized in several metapackages in order to install or uninstall only a part of the tools (e.g. just the DNS tools, or the GNS3 stack, SysOps tools and not the complete set)." Further details can be found in the project's release announcement.
Kaisen Linux 1.7 -- Running the MATE desktop
(full image size: 901kB, resolution: 2560x1600 pixels)
GParted Live 1.3.1-1
Curtis Gedak has announced the release of GParted Live 1.3.1-1, the latest update to the project's Debian-based live CD image containing a variety of specialist disk partitioning and data rescue utilities: "GParted Live 1.3.1-1 stable release. The GParted team is pleased to announce a new stable release of GParted Live. This release includes GParted 1.3.1, updated packages and other improvements. Items of note include: includes GParted 1.3.1; fix recognition of SD and MMC device names; make XFS copy duplicate the file system label and UUID; based on the Debian 'Sid' repository as of 2021-07-20; Linux kernel updated to 5.10.46; added the gvfs package. This release of GParted Live has been successfully tested on VirtualBox, VMware, BIOS, UEFI and physical computers with AMD/ATI, NVIDIA and Intel graphics. Note that the default boot options might fail to display an X Desktop such as on old Acer Aspire laptops. The workaround is to select Other modes of GParted Live and choose GParted Live (Safe graphics setting, vga-normal)." Here is the complete release announcement.
* * * * *
Development, unannounced and minor bug-fix releases
|
Torrent Corner |
Weekly Torrents
The table below provides a list of torrents DistroWatch is currently seeding. If you do not have a bittorrent client capable of handling the linked files, we suggest installing either the Transmission or KTorrent bittorrent clients.
Archives of our previously seeded torrents may be found in our Torrent Archive. We also maintain a Torrents RSS feed for people who wish to have open source torrents delivered to them. To share your own open source torrents of Linux and BSD projects, please visit our Upload Torrents page.
Torrent Corner statistics:
- Total torrents seeded: 2,534
- Total data uploaded: 39.0TB
|
Upcoming Releases and Announcements |
Summary of expected upcoming releases
|
Opinion Poll (by Jesse Smith) |
What percentage of your computer's memory is used?
The tasks we ask our computers to do tend to expand over time, consuming a much available memory as possible. Today we'd like to hear how much of your computer's memory is marked as being "used". At this moment, what percentage of your computer's memory is "used"?
You can see the results of our previous poll on running portable package formats in last week's edition. All previous poll results can be found in our poll archives.
|
Amount of "used" memory
1-10%: | 175 (15%) |
11-20%: | 262 (22%) |
21-30%: | 220 (19%) |
31-40%: | 162 (14%) |
41-50%: | 112 (10%) |
51-60%: | 73 (6%) |
61-70%: | 65 (6%) |
71-80%: | 51 (4%) |
81-90%: | 26 (2%) |
91-100%: | 30 (3%) |
|
|
Website News |
Console interviews Jesse Smith
The Console newsletter has interviewed our own Jesse Smith, asking him about DistroWatch, his views on open source, programming projects, and important life lessons.
Q: What was the most surprising thing you learned while working on DistroWatch?
One thing which regularly stuns me is both how resilient and how fragile open source software can be. The open nature of Linux distributions, and their components, means anyone can improve them, anyone can fork a dormant project to keep it running, anyone can fix a security bug. Anyone can come along and make a better mousetrap to improve the ecosystem. At the same time, some critical, key pieces of infrastructure are barely maintained or abandoned.
You can read the rest of the interview on Console.
* * * * *
New distributions added to database
Archcraft
Archcraft is a minimal Linux distribution based on Arch Linux. The project provides a graphical user interface using minimal window managers rather than full featured desktop environments. Archcraft is installed using the Calamares system installer and includes the yay package manager to facilitate fetching software from the Arch User Repository.
Archcraft 2021.06.06 -- Running the Openbox window manager
(full image size: 145kB, resolution: 1366x768 pixels)
* * * * *
New distributions added to waiting list
- Zephix. Zephix is a live desktop distribution which runs entirely from a USB thumb drive. The distribution is based on Debian 10 and ships with many popular desktop applications.
* * * * *
DistroWatch database summary
* * * * *
This concludes this week's issue of DistroWatch Weekly. The next instalment will be published on Monday, 2 August 2021. Past articles and reviews can be found through our Article Search page. To contact the authors please send e-mail to:
- Jesse Smith (feedback, questions and suggestions: distribution reviews/submissions, questions and answers, tips and tricks)
- Ladislav Bodnar (feedback, questions, donations, comments)
- Bruce Patterson (podcast)
|
|
Tip Jar |
If you've enjoyed this week's issue of DistroWatch Weekly, please consider sending us a tip. (Tips this week: 0, value: US$0.00) |
|
|
|
bc1qxes3k2wq3uqzr074tkwwjmwfe63z70gwzfu4lx lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhhxarpw3jkc7tzw4ex6cfexyfua2nr 86fA3qPTeQtNb2k1vLwEQaAp3XxkvvvXt69gSG5LGunXXikK9koPWZaRQgfFPBPWhMgXjPjccy9LA9xRFchPWQAnPvxh5Le paypal.me/distrowatchweekly • patreon.com/distrowatch |
|
Extended Lifecycle Support by TuxCare |
| |
TUXEDO |
TUXEDO Computers - Linux Hardware in a tailor made suite Choose from a wide range of laptops and PCs in various sizes and shapes at TUXEDOComputers.com. Every machine comes pre-installed and ready-to-run with Linux. Full 24 months of warranty and lifetime support included!
Learn more about our full service package and all benefits from buying at TUXEDO.
|
Archives |
• Issue 1100 (2024-12-09): Oreon 9.3, differences in speed, IPFire's new appliance, Fedora Asahi Remix gets new video drivers, openSUSE Leap Micro updated, Redox OS running Redox OS |
• Issue 1099 (2024-12-02): AnduinOS 1.0.1, measuring RAM usage, SUSE continues rebranding efforts, UBports prepares for next major version, Murena offering non-NFC phone |
• Issue 1098 (2024-11-25): Linux Lite 7.2, backing up specific folders, Murena and Fairphone partner in fair trade deal, Arch installer gets new text interface, Ubuntu security tool patched |
• Issue 1097 (2024-11-18): Chimera Linux vs Chimera OS, choosing between AlmaLinux and Debian, Fedora elevates KDE spin to an edition, Fedora previews new installer, KDE testing its own distro, Qubes-style isolation coming to FreeBSD |
• Issue 1096 (2024-11-11): Bazzite 40, Playtron OS Alpha 1, Tucana Linux 3.1, detecting Screen sessions, Redox imports COSMIC software centre, FreeBSD booting on the PinePhone Pro, LXQt supports Wayland window managers |
• Issue 1095 (2024-11-04): Fedora 41 Kinoite, transferring applications between computers, openSUSE Tumbleweed receives multiple upgrades, Ubuntu testing compiler optimizations, Mint partners with Framework |
• Issue 1094 (2024-10-28): DebLight OS 1, backing up crontab, AlmaLinux introduces Litten branch, openSUSE unveils refreshed look, Ubuntu turns 20 |
• Issue 1093 (2024-10-21): Kubuntu 24.10, atomic vs immutable distributions, Debian upgrading Perl packages, UBports adding VoLTE support, Android to gain native GNU/Linux application support |
• Issue 1092 (2024-10-14): FunOS 24.04.1, a home directory inside a file, work starts of openSUSE Leap 16.0, improvements in Haiku, KDE neon upgrades its base |
• Issue 1091 (2024-10-07): Redox OS 0.9.0, Unified package management vs universal package formats, Redox begins RISC-V port, Mint polishes interface, Qubes certifies new laptop |
• Issue 1090 (2024-09-30): Rhino Linux 2024.2, commercial distros with alternative desktops, Valve seeks to improve Wayland performance, HardenedBSD parterns with Protectli, Tails merges with Tor Project, Quantum Leap partners with the FreeBSD Foundation |
• Issue 1089 (2024-09-23): Expirion 6.0, openKylin 2.0, managing configuration files, the future of Linux development, fixing bugs in Haiku, Slackware packages dracut |
• Issue 1088 (2024-09-16): PorteuX 1.6, migrating from Windows 10 to which Linux distro, making NetBSD immutable, AlmaLinux offers hardware certification, Mint updates old APT tools |
• Issue 1087 (2024-09-09): COSMIC desktop, running cron jobs at variable times, UBports highlights new apps, HardenedBSD offers work around for FreeBSD change, Debian considers how to cull old packages, systemd ported to musl |
• Issue 1086 (2024-09-02): Vanilla OS 2, command line tips for simple tasks, FreeBSD receives investment from STF, openSUSE Tumbleweed update can break network connections, Debian refreshes media |
• Issue 1085 (2024-08-26): Nobara 40, OpenMandriva 24.07 "ROME", distros which include source code, FreeBSD publishes quarterly report, Microsoft updates breaks Linux in dual-boot environments |
• Issue 1084 (2024-08-19): Liya 2.0, dual boot with encryption, Haiku introduces performance improvements, Gentoo dropping IA-64, Redcore merges major upgrade |
• Issue 1083 (2024-08-12): TrueNAS 24.04.2 "SCALE", Linux distros for smartphones, Redox OS introduces web server, PipeWire exposes battery drain on Linux, Canonical updates kernel version policy |
• Issue 1082 (2024-08-05): Linux Mint 22, taking snapshots of UFS on FreeBSD, openSUSE updates Tumbleweed and Aeon, Debian creates Tiny QA Tasks, Manjaro testing immutable images |
• Issue 1081 (2024-07-29): SysLinuxOS 12.4, OpenBSD gain hardware acceleration, Slackware changes kernel naming, Mint publishes upgrade instructions |
• Issue 1080 (2024-07-22): Running GNU/Linux on Android with Andronix, protecting network services, Solus dropping AppArmor and Snap, openSUSE Aeon Desktop gaining full disk encryption, SUSE asks openSUSE to change its branding |
• Issue 1079 (2024-07-15): Ubuntu Core 24, hiding files on Linux, Fedora dropping X11 packages on Workstation, Red Hat phasing out GRUB, new OpenSSH vulnerability, FreeBSD speeds up release cycle, UBports testing new first-run wizard |
• Issue 1078 (2024-07-08): Changing init software, server machines running desktop environments, OpenSSH vulnerability patched, Peppermint launches new edition, HardenedBSD updates ports |
• Issue 1077 (2024-07-01): The Unity and Lomiri interfaces, different distros for different tasks, Ubuntu plans to run Wayland on NVIDIA cards, openSUSE updates Leap Micro, Debian releases refreshed media, UBports gaining contact synchronisation, FreeDOS celebrates its 30th anniversary |
• Issue 1076 (2024-06-24): openSUSE 15.6, what makes Linux unique, SUSE Liberty Linux to support CentOS Linux 7, SLE receives 19 years of support, openSUSE testing Leap Micro edition |
• Issue 1075 (2024-06-17): Redox OS, X11 and Wayland on the BSDs, AlmaLinux releases Pi build, Canonical announces RISC-V laptop with Ubuntu, key changes in systemd |
• Issue 1074 (2024-06-10): Endless OS 6.0.0, distros with init diversity, Mint to filter unverified Flatpaks, Debian adds systemd-boot options, Redox adopts COSMIC desktop, OpenSSH gains new security features |
• Issue 1073 (2024-06-03): LXQt 2.0.0, an overview of Linux desktop environments, Canonical partners with Milk-V, openSUSE introduces new features in Aeon Desktop, Fedora mirrors see rise in traffic, Wayland adds OpenBSD support |
• Issue 1072 (2024-05-27): Manjaro 24.0, comparing init software, OpenBSD ports Plasma 6, Arch community debates mirror requirements, ThinOS to upgrade its FreeBSD core |
• Issue 1071 (2024-05-20): Archcraft 2024.04.06, common command line mistakes, ReactOS imports WINE improvements, Haiku makes adjusting themes easier, NetBSD takes a stand against code generated by chatbots |
• Issue 1070 (2024-05-13): Damn Small Linux 2024, hiding kernel messages during boot, Red Hat offers AI edition, new web browser for UBports, Fedora Asahi Remix 40 released, Qubes extends support for version 4.1 |
• Issue 1069 (2024-05-06): Ubuntu 24.04, installing packages in alternative locations, systemd creates sudo alternative, Mint encourages XApps collaboration, FreeBSD publishes quarterly update |
• Issue 1068 (2024-04-29): Fedora 40, transforming one distro into another, Debian elects new Project Leader, Red Hat extends support cycle, Emmabuntus adds accessibility features, Canonical's new security features |
• Issue 1067 (2024-04-22): LocalSend for transferring files, detecting supported CPU architecure levels, new visual design for APT, Fedora and openSUSE working on reproducible builds, LXQt released, AlmaLinux re-adds hardware support |
• Issue 1066 (2024-04-15): Fun projects to do with the Raspberry Pi and PinePhone, installing new software on fixed-release distributions, improving GNOME Terminal performance, Mint testing new repository mirrors, Gentoo becomes a Software In the Public Interest project |
• Issue 1065 (2024-04-08): Dr.Parted Live 24.03, answering questions about the xz exploit, Linux Mint to ship HWE kernel, AlmaLinux patches flaw ahead of upstream Red Hat, Calculate changes release model |
• Issue 1064 (2024-04-01): NixOS 23.11, the status of Hurd, liblzma compromised upstream, FreeBSD Foundation focuses on improving wireless networking, Ubuntu Pro offers 12 years of support |
• Issue 1063 (2024-03-25): Redcore Linux 2401, how slowly can a rolling release update, Debian starts new Project Leader election, Red Hat creating new NVIDIA driver, Snap store hit with more malware |
• Issue 1062 (2024-03-18): KDE neon 20240304, changing file permissions, Canonical turns 20, Pop!_OS creates new software centre, openSUSE packages Plasma 6 |
• Issue 1061 (2024-03-11): Using a PinePhone as a workstation, restarting background services on a schedule, NixBSD ports Nix to FreeBSD, Fedora packaging COSMIC, postmarketOS to adopt systemd, Linux Mint replacing HexChat |
• Issue 1060 (2024-03-04): AV Linux MX-23.1, bootstrapping a network connection, key OpenBSD features, Qubes certifies new hardware, LXQt and Plasma migrate to Qt 6 |
• Issue 1059 (2024-02-26): Warp Terminal, navigating manual pages, malware found in the Snap store, Red Hat considering CPU requirement update, UBports organizes ongoing work |
• Issue 1058 (2024-02-19): Drauger OS 7.6, how much disk space to allocate, System76 prepares to launch COSMIC desktop, UBports changes its version scheme, TrueNAS to offer faster deduplication |
• Issue 1057 (2024-02-12): Adelie Linux 1.0 Beta, rolling release vs fixed for a smoother experience, Debian working on 2038 bug, elementary OS to split applications from base system updates, Fedora announces Atomic Desktops |
• Issue 1056 (2024-02-05): wattOS R13, the various write speeds of ISO writing tools, DSL returns, Mint faces Wayland challenges, HardenedBSD blocks foreign USB devices, Gentoo publishes new repository, Linux distros patch glibc flaw |
• Issue 1055 (2024-01-29): CNIX OS 231204, distributions patching packages the most, Gentoo team presents ongoing work, UBports introduces connectivity and battery improvements, interview with Haiku developer |
• Issue 1054 (2024-01-22): Solus 4.5, comparing dd and cp when writing ISO files, openSUSE plans new major Leap version, XeroLinux shutting down, HardenedBSD changes its build schedule |
• Issue 1053 (2024-01-15): Linux AI voice assistants, some distributions running hotter than others, UBports talks about coming changes, Qubes certifies StarBook laptops, Asahi Linux improves energy savings |
• Issue 1052 (2024-01-08): OpenMandriva Lx 5.0, keeping shell commands running when theterminal closes, Mint upgrades Edge kernel, Vanilla OS plans big changes, Canonical working to make Snap more cross-platform |
• Issue 1051 (2024-01-01): Favourite distros of 2023, reloading shell settings, Asahi Linux releases Fedora remix, Gentoo offers binary packages, openSUSE provides full disk encryption |
• Issue 1050 (2023-12-18): rlxos 2023.11, renaming files and opening terminal windows in specific directories, TrueNAS publishes ZFS fixes, Debian publishes delayed install media, Haiku polishes desktop experience |
• Issue 1049 (2023-12-11): Lernstick 12, alternatives to WINE, openSUSE updates its branding, Mint unveils new features, Lubuntu team plans for 24.04 |
• Issue 1048 (2023-12-04): openSUSE MicroOS, the transition from X11 to Wayland, Red Hat phasing out X11 packages, UBports making mobile development easier |
• Issue 1047 (2023-11-27): GhostBSD 23.10.1, Why Linux uses swap when memory is free, Ubuntu Budgie may benefit from Wayland work in Xfce, early issues with FreeBSD 14.0 |
• Issue 1046 (2023-11-20): Slackel 7.7 "Openbox", restricting CPU usage, Haiku improves font handling and software centre performance, Canonical launches MicroCloud |
• Full list of all issues |
Star Labs |
Star Labs - Laptops built for Linux.
View our range including the highly anticipated StarFighter. Available with coreboot open-source firmware and a choice of Ubuntu, elementary, Manjaro and more. Visit Star Labs for information, to buy and get support.
|
Random Distribution |
Linux Loco
Linux Loco was an Argentinian GNU/Linux distribution based on Debian GNU/Linux. Its objective was to offer a simple installation, an up to date desktop, and a secure base. However, the most ambitious objective of Loco Linux was to create consciousness about Free Software in Argentina, and generate a framework for the development of Free Software in public and private environments. Linux Loco was based on Progeny Componentized Linux and shares some components with gnuLinEx.
Status: Discontinued
|
TUXEDO |
TUXEDO Computers - Linux Hardware in a tailor made suite Choose from a wide range of laptops and PCs in various sizes and shapes at TUXEDOComputers.com. Every machine comes pre-installed and ready-to-run with Linux. Full 24 months of warranty and lifetime support included!
Learn more about our full service package and all benefits from buying at TUXEDO.
|
Star Labs |
Star Labs - Laptops built for Linux.
View our range including the highly anticipated StarFighter. Available with coreboot open-source firmware and a choice of Ubuntu, elementary, Manjaro and more. Visit Star Labs for information, to buy and get support.
|
|