DistroWatch Weekly |
DistroWatch Weekly, Issue 976, 11 July 2022 |
Welcome to this year's 28th issue of DistroWatch Weekly!
One of the more interesting approaches to Linux software management is provided by the Nix package manager. Nix offers all sorts of interesting features, including package generations, instantly switching between versions of packages, rolling back updates, and reproducible builds. This week we begin with a look at Nix, both in the NixOS distribution and installed on another distribution as a third-party software manager. Have you tried Nix? Let us know how you used Nix in this week's Opinion Poll. In our News section we discuss the complexities of the Linux scheduler and report on Qubes OS 4.0 nearing the end of its supported life. We also cover the Debian project publishing updated install media. Then, in our Questions and Answers column, we explain how to set up a fake webcam to trick applications into thinking they are streaming live video. Plus we are pleased to share the releases of the past week and list the torrents we are seeding. We wish you all a wonderful week and happy reading!
Content:
|
Feature Story (by Jesse Smith) |
NixOS 22.05
NixOS is an interesting distribution. The operating system largely acts as a method for showcasing the advanced Nix package manager which offers atomic updates, rollbacks to previous generations of packages, and reproducible builds. This makes running a distribution with Nix as the package manager fairly flexible as well as reliable in the face of package upgrade issues.
The Nix package manager makes up the heart of the NixOS distribution and can also be run on other distributions. Nix's portability gives anyone who installs it access to over 80,000 packages which has increased from 60,000 in the past two years.
NixOS is available in three editions. There are two graphical editions, one featuring the GNOME desktop which is a 2.0GB download, and the other runs KDE Plasma and is a 1.6GB download. The third edition is a command line only flavour called Minimal which is 824MB in size. One of the big changes in the two graphical editions is the introduction of the Calamares system installer.
In the past, when I've used previous versions of NixOS the user was expected to manually partition the hard drive. Then we were asked to edit a configuration file in a text editor, inputting changes to software packages, boot loader settings, and enabling user accounts. While this process was fairly well documented, it was not geared toward beginners or even more experienced casual users. The inclusion of Calamares means users can partition the hard drive, tweak settings, and create user accounts from the comfort of a point and click application which has proven successful in many Arch-based distributions.
Live media
The NixOS live media starts off by offering a range of boot options. These include launching the installer, launching with the nomodeset parameter (other distributions call this "safe graphics mode"), or with the copytoram parameter (which loads the whole operating system into memory). The end result of using any of these is to launch NixOS, start a desktop session (KDE Plasma in my case), and automatically open the Calamares installer.

NixOS 22.05 -- The KDE System Settings panel
(full image size: 598kB, resolution: 1280x1024 pixels)
Should we want to explore the live session the Plasma desktop has a thick panel at the bottom of the screen which holds the application menu, task switcher, and system tray. There are icons on the desktop which open a partition manager, launch the installer, open a terminal, and display a local copy of manual in HTML format. There are not many applications installed by default, though the Firefox web browser is included.
Installing
Calamares is a graphical installer which walks the user through completing some basic setup steps. On the first page we can select our language and there are buttons which will open Firefox to display documentation, bug reports, and the distribution's release notes. The next page gets us to select our time zone from a map. We are then asked to select our keyboard layout and create a username and password. By default the password must be complex, long, and not a dictionary word. I honestly couldn't get the password field to accept anything as any random letters and numbers I put in were flagged as coming from the dictionary. There is a checkbox we can click to disable password checks, allowing anything to be used.
The installer then asks us to select a single desktop (GNOME, KDE Plasma, Xfce, Pantheon, Cinnamon, MATE, Enlightenment, and LXQt are offered). We can also choose to not install a desktop environment. We are asked if we want to enable non-free packages which include hardware drivers. I decided to enable non-free items. We're then asked to partition the drive. The manual option is fairly friendly and streamlined. Calamares also offers a guided option which will take over the entire disk with a single ext4 filesystem. I feel it worth mentioning the guided option does not set up any swap space, either a file or a partition. The installer copies its files to the disk and offers to restart the computer.
Early impressions
When I first booted into my new copy of NixOS the distribution offered to sign me into either Plasma running on X11 or Plasma on Wayland. The X11 session is the default. Plasma was unusually slow to load, taking around 30 seconds to start the first time on a system where logins usually take under 5 seconds. Future logins happened faster.
Once I signed into Plasma (version 5.24) I noticed there are four quick-launch icons next to the application menu. These icons are for the settings panel, showing the desktop, and launching the Dolphin file manager and Firefox browser. Clicking the Desktop icon caused an error notification to be displayed which read "Plasma Workspace: Unknown application folder." The other three icons worked as expected.

NixOS 22.05 -- Running the KDE Plasma desktop
(full image size: 990kB, resolution: 1280x1024 pixels)
Not many applications are included by default. NixOS ships with Firefox, Dolphin, Gwenview, the Okular document viewer, and the Elisa music player. The KDE System Settings panel is included too to help us customize the desktop. In the background we find the GNU command line utilities and manual pages. The systemd init software is included along with version 5.15 of the Linux kernel.
Nix
The main reason I like to experiment with NixOS every few years is it gives me a chance to experiment with the advanced Nix package manager. Most of Nix's operations can be performed through the nix-env command. This command line utility helps us find, install, remove, and upgrade packages. We can also list installed packages and move forward and backwards between package generations. I'll talk more about generations in a moment.
The Nix command line tools have accompanying manual pages and running "nix-env --help" from the command line opens the appropriate manual page in the terminal. We also have a list of handy Nix functions on our Package Management page.
When I first started using Nix the process of querying packages was slow, unusually slow. Typically Nix operates at about the same speed as APT or Zypper, but it took a few minutes for Nix to search for a package. I thought this might just be due to needing to refresh the database. I performed a manual update of the database and then tried to perform an upgrade of all packages on the system. After five minutes with no sign of progress, I terminated the upgrade. I then tried installing a package and, after 5 minutes, nix-env reported it was trying to install the package. After 15 minutes I gave up and stopped the process. This slow performance with Nix 2.8.1 surprised me as past versions of Nix have worked well and quickly for me.

NixOS 22.05 -- Nix hanging when trying to upgrade packages
(full image size: 721kB, resolution: 1280x1024 pixels)
I decided to reboot and try again. This time a complete system upgrade completed in 4 minutes. A few large packages each installed in under 2 minutes apiece. Newly installed applications did not appear in the application menu, either immediately or following me logging out and signing back into my account.
The next time I restarted NixOS the system booted to a text terminal and was unable to start a graphical environment. Clearly something broke during the upgrade process. This is where package generations come in handy. Each time we perform an action with nix-env, such as installing a new package or performing an upgrade, Nix takes a snapshot of its packages on the system. Each snapshot is called a generation. We can then switch between generations instantly to use different versions of packages or to rollback a problem. This is helpful both in testing different versions of software and for reverting problems.
In my case I signed in as the root user at the terminal. Then I ran the command "nix-env --list-generations" which showed there were three previous generations on the system and the latest generation was flagged as being "current". I could then run "nix-env -G 1" to revert the system back to its first generation. After that, I rebooted the system and NixOS started up and displayed the expected graphical login screen. Chances are, in the near future, whatever caused the issue with the login screen will be fixed and I'll be able to upgrade again.
This ability to rollback instantly or move ahead through snapshots of packages is quite handy. It doesn't use much space and, if we do want to clean up old generations of packages, we can delete them to free up more drive space.
Hardware
I experimented with NixOS in a VirtualBox environment and on a workstation. On the workstation performance was good, the system was stable and, some concerns with Nix getting stuck aside, things mostly worked well. I could connect to the network, listen to music, and play YouTube videos.
When I was running NixOS in VirtualBox things did not go as well. Performance was quite a bit reduced on the desktop. I also couldn't get the system to play sound, for example when opening audio files in the Elise media player. I was also unable to get YouTube videos to play in either Firefox (the default browser) or in Falkon which I installed later. I'm not sure, but I suspect the audio issues may be connected to NixOS's use of PipeWire.
A fresh install of the KDE Plasma edition of NixOS took up 6GB of disk space. When signed into the Plasma session the system used 430MB of RAM, which is below average.
Nix on AlmaLinux OS
One of the things I like about Nix is the package manager is designed to run on other distributions. The project provides a script which we can run to install the package manager on the Linux distribution of our choice:
sh <(curl -L https://nixos.org/nix/install) --no-daemon
This script asks us for our sudo password and then advises we should source a Nix script to set up environment variable. Alternatively we can logout and login again to get the new settings.
I installed Nix on AlmaLinux OS, just because I had a copy already installed and available. One of the first things I did was try to refresh the package database and check for upgrades. This upgrade check failed with an error which read: "unexpected end of file." This wasn't elegant, but not surprising since I hadn't installed any packages yet.
I then tried to install a few packages, like Falkon, GIMP, and Firefox. These failed with the nix-env utility running into a segfault (crashing due to memory issues). I refreshed the package database and tried again. When trying to install new packages this time resulted in more "unexpected end of file" errors each time.
I was surprised by this. I've used earlier versions of Nix on other distributions in the past and never ran into problems like this. Something in the configuration processing seems to be broken in this release where it was working in past versions.
Conclusions
On the one hand I was happy to hear NixOS had added Calamares to the live media to make installing the distribution easier. I liked my past experiences with NixOS and one of the few issues I've had in previous trials was getting the Nix configuration file set up just right. Nix has a lot to offer and it was discouraging needing to go through the slow process of reading documentation and tweaking a text file to get the system set up. Calamares is a slick graphical installer which greatly reduces the barrier to trying out NixOS and the Nix package manager.
However, there were some serious problems with Nix this time around. I've tried both NixOS and Nix on other distributions in the past and, previously, the experience has been smooth, polished, and functional. While I've sometimes had to do a bit of reading of the manual pages to get the most out of Nix, past versions have worked well and NixOS as a whole has performed pretty well, like other minimal desktop distributions.
This time while NixOS generally worked okay on my workstation it ran into multiple performance and sound issues when running in VirtualBox. Nix sometimes locked up when I first started using it. The first time I successfully upgraded packages it broke the login screen, and Nix didn't work at all when I installed it on AlmaLinux OS.
I'm not sure what happened to Nix in the past year or so since I last experimented with it (and NixOS), but this felt like a big step backwards. Both the functionality of Nix and the stability of the packages available in the repositories were not up to the previous high standard. The fact I couldn't get Nix to run on AlmaLinux at all after installing past versions on distributions like Debian is concerning and I hope the issues get resolved. The user should not see debugging messages and segfaults when trying to perform package upgrades or installs.
I will say though, on a positive note, having the first upgrade of NixOS break things did give me a chance to test and confirm the value of package generations. It's not good that upgrading NixOS broke things, but it does show how quickly Nix can fix problems when upgrades damage a system.
* * * * *
Hardware used in this review
My physical test equipment for this review was a Lenovo desktop with the following specifications:
- Processor: Hex-core Intel i5-10400 CPU @ 2.90GHz
- Storage: Western Digital 1TB hard drive
- Memory: 8GB of RAM
- Networking: Realtek RTL8111/8168/8411 wired network card, Realtek RTL8822CE 802.11ac PCIe wireless adapter
- Display: Intel CometLake-S GT2
* * * * *
Visitor supplied rating
NixOS has a visitor supplied average rating of: 8.8/10 from 40 review(s).
Have you used NixOS? You can leave your own review of the project on our ratings page.
|
Miscellaneous News (by Jesse Smith) |
Qubes OS 4.0 nears end of life, a dive into how Linux schedules processes, Debian publishes refreshed media for Bullseye
The Qubes OS team have announced version 4.0 of their high-security platform is nearing the end of its supported life. Qubes users are advised to upgrade to a newer release. "According to our support policy, stable Qubes OS releases are supported for six months after each subsequent major or minor release. This means that Qubes 4.0 reaches EOL six months after Qubes 4.1 was released. Since Qubes 4.1.0 was released on 2022-02-04, Qubes 4.0's EOL date is six months later, on 2022-08-04. Fun fact: Qubes 4.0.0 was initially released on 2018-03-28, which means that it will be four years, four months, and one week old when it reaches EOL. That's the longest support period for a stable Qubes release in our project's history!" Tips on upgrading and information about supported versions of Qubes OS can be found in the project's news announcement.
* * * * *
One of the Linux kernel's many important jobs is the scheduling of tasks. On systems which run multiple processes it's important to keep things running smoothly, making sure each program gets a chance to run on the CPU often enough that every program appears to be running at the same time. Maxgio's blog has an article explaining how Linux schedules tasks, adjusting which programs will run by taking into consideration priorities and a queue of processes. "One of the things I was fascinated by was how Linux is able to manage and let the CPU run thousands and thousands of processes each second. To give you an idea, right now, Linux on my laptop configured with an Intel i7-1185G7 CPU switched context 28,428 times in a second! That's fantastic, isn't it?" The technical dive is explored in this blog post.
* * * * *
The Debian project has published updated install media for Debian 11 "Bullseye". The new media is not a new version of the distribution, but does include security fixes for packages included on the install media. "The Debian project is pleased to announce the fourth update of its stable distribution Debian 11 (codename bullseye). This point release mainly adds corrections for security issues, along with a few adjustments for serious problems. Security advisories have already been published separately and are referenced where available. Please note that the point release does not constitute a new version of Debian 11 but only updates some of the packages included."
* * * * *
These and other news stories can be found on our Headlines page.
|
Questions and Answers (by Jesse Smith) |
Making a fake webcam device
Faking-my-own-photo asks: Is there a way to make video conferencing software think you are using a webcam even if you don't have one? Like instead use a video or photo as the source for the image?
DistroWatch answers: It is possible to create a device which acts like a webcam and then send a video stream to it. This makes the fake device act like a webcam with an active video feed. To do this you'll need two pieces of software, one to create the video stream you want to show and one to make the fake webcam device.
There are a few tools you can use to create the video stream you want to display. One of the more universal tools, which is available on most distributions, is FFmpeg. The only software I know of which will create a fake webcam device is called v4l2loopback. Both software packages are available on most mainstream distributions. If you're running a member of the Debian/Ubuntu family of Linux distributions you can install the two necessary software packages by running:
sudo apt-get install v4l2loopback-dkms ffmpeg
The same v4l2loopback software is available through Arch Linux's Arch User Repository as v4l2loopback-dkms-git. For people running a member of the Fedora/Red Hat family this module is in the third-party RPMFusion repository.
Once both packages are installed you may need to initialize the v4l2loopback driver software by running the following command:
sudo modprobe v4l2loopback
The above command makes a new video (webcam) device. The new device will probably be called /dev/video1 or /dev/video2, depending if you have other webcams attached to your machine. Let's assume for the sake of this tutorial the new fake device is called /dev/video1. You can check for the new device by running this command:
$ ls /dev/video*
/dev/video0 /dev/video1
Now we have the fake webcam set up on our system. At the moment it doesn't have any image to transmit. We need to give it something to display. We can do this by running a long FFmpeg command. I'm going to skip over most of the details of the command. All you really need to know here is that the following command line takes the image file my-image.jpg and converts it into a streaming video which is sent to our fake webcam at /dev/video1.
ffmpeg -loop 1 -re -i my-image.jpg -f v4l2 -vcodec rawvideo -pix_fmt yuv420p /dev/video1
When video conferencing applications or web browsers connect to the device /dev/video1 they will see a static image, constantly streaming. I feel it worth noting that some software (such as Firefox) doesn't ask us to select a webcam by its device name, but rather by a description. When prompted to select a device by its label the fake webcam we created will be called "Dummy video device".
While we'll probably usually want to display a fixed image over our fake webcam, it is possible to stream video. Though with FFmpeg the output will appear to be moving in fast-forward since it's converting the video rather than playing it. In this example, I stream a file called my-video.mp4 on a loop to my fake webcam. It plays very quickly, but might be useful if you just want to fill the space with a dynamic (non-static) series of images:
ffmpeg -stream_loop 99 -i my-video.mp4 -f v4l2 -vcodec rawvideo -pix_fmt yuv420p /dev/video1
There are tools out there which will play video files at normal speed, but it typically involves installing third-party tools and extra steps. For most purposes the first example, with a static image, is the most straight forward approach.
* * * * *
Additional answers can be found in our Questions and Answers archive.
|
Released Last Week |
Porteus 5.0
Jay Flood has announced the release of Porteus 5.0, a set of eight live Linux distributions based on Slackware Linux and available for both x86_64 and i586 architectures: "Team Porteus is finally able to announce the immediate availability of Porteus 5.0 final in eight desktop flavours. Main changes include: Linux kernel 5.18.8; Core is based on Slackware 15.0; Perl has been moved to 05-devel; Slackware package managers included slackpkg (in core) and slpkg (in 05-devel); a simple wrapper for slackpkg, pmod, to produce a module of the package; a small script, pkginfo, to provide some info about whether a package is installed, what's in it, whether it has missing libraries and which module it's in, if any; numerous tweaks, fixes and optimizations to our core scripts." Read the rest of the release announcement for further details.

Porteus 5.0 -- Running the Cinnamon desktop
(full image size: 2.6MB, resolution: 2560x1600 pixels)
Oracle Linux 9.0
Simon Coter has announced the release of Oracle Linux 9.0, a major update of Oracle's Linux distribution designed for enterprise use. This is the company's first stable release based on the all-new Red Hat Enterprise Linux (RHEL) 9.0: "Oracle is pleased to announce Oracle Linux 9 general availability for Intel-64/AMD-64 (x86_64) and Arm (aarch64). This release includes the Unbreakable Enterprise Kernel Release 7 (UEK R7), also generally available today, along with the Red Hat Compatible Kernel (RHCK). Oracle Linux is an optimized and secure operating environment for application development and deployment. Oracle Linux 9 with UEK R7 provides kernel, performance and security enhancements including UEK R7, based on the mainline long-term support (LTS) 5.15 release, offers the latest hardware support and is aligned with the Linux kernel community for more timely delivery of critical fixes and security updates. This release includes core scheduling, a security feature to help avoid side-channels attacks; adds CTF (C-type format) debug info data as part of the core kernel installation...." Read the release announcement and the release notes for more details.
* * * * *
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,741
- Total data uploaded: 42.2TB
|
Upcoming Releases and Announcements |
Summary of expected upcoming releases
|
Opinion Poll (by Jesse Smith) |
Using the Nix package manager
This week we began with a look at NixOS and the distribution's Nix package manager. Nix has a number of useful features, such as package generations, reproducible builds, and the ability to switch quickly between versions of packages. Do you currently use Nix, either as a part of NixOS or as a third-party package manager on another distribution? Let us know your thoughts about Nix in the comments.
You can see the results of our previous poll on using a Murena smartphone in last week's edition. All previous poll results can be found in our poll archives.
|
Using the Nix package manager
I use Nix on NixOS: | 33 (3%) |
I use Nix on another distro: | 24 (2%) |
I use Nix on both NixOS and another distro: | 23 (2%) |
I do not use Nix: | 1110 (93%) |
|
|
Website News |
DistroWatch database summary
* * * * *
This concludes this week's issue of DistroWatch Weekly. The next instalment will be published on Monday, 18 July 2022. 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: 1, value: US$23.75) |
|
|
|
 bc1qtede6f7adcce4kjpgx0e5j68wwgtdxrek2qvc4  86fA3qPTeQtNb2k1vLwEQaAp3XxkvvvXt69gSG5LGunXXikK9koPWZaRQgfFPBPWhMgXjPjccy9LA9xRFchPWQAnPvxh5Le |
|
Linux Foundation Training |
| |
MALIBAL |
MALIBAL: Linux Laptops Custom Built for YouMALIBAL is an innovative computer manufacturer that produces high-performance, custom laptops for Linux. If your MALIBAL laptop is not the best Linux laptop you have ever used, you can return it for a full 100% refund. We will even pay the return shipping fees! For more info, visit: https://www.malibal.com
|
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 1022 (2023-06-05): GetFreeOS 2023.05.01, Slint 15.0-3, Liya N4Si, cleaning up crowded directories, Ubuntu plans Snap-based variant, Red Hat dropping LireOffice RPM packages |
• Issue 1021 (2023-05-29): rlxos GNU/Linux, colours in command line output, an overview of Void's unique features, how to use awk, Microsoft publishes a Linux distro |
• Issue 1020 (2023-05-22): UBports 20.04, finding another machine's IP address, finding distros with a specific kernel, Debian prepares for Bookworm |
• Issue 1019 (2023-05-15): Rhino Linux (Beta), checking which applications reply on a package, NethServer reborn, System76 improving application responsiveness |
• Issue 1018 (2023-05-08): Fedora 38, finding relevant manual pages, merging audio files, Fedora plans new immutable edition, Mint works to fix Secure Boot issues |
• Issue 1017 (2023-05-01): Xubuntu 23.04, Debian elects Project Leaders and updates media, systemd to speed up restarts, Guix System offering ground-up source builds, where package managers install files |
• Issue 1016 (2023-04-24): Qubes OS 4.1.2, tracking bandwidth usage, Solus resuming development, FreeBSD publishes status report, KaOS offers preview of Plasma 6 |
• Issue 1015 (2023-04-17): Manjaro Linux 22.0, Trisquel GNU/Linux 11.0, Arch Linux powering PINE64 tablets, Ubuntu offering live patching on HWE kernels, gaining compression on ex4 |
• Issue 1014 (2023-04-10): Quick looks at carbonOS, LibreELEC, and Kodi, Mint polishes themes, Fedora rolls out more encryption plans, elementary OS improves sideloading experience |
• Issue 1013 (2023-04-03): Alpine Linux 3.17.2, printing manual pages, Ubuntu Cinnamon becomes official flavour, Endeavour OS plans for new installer, HardenedBSD plans for outage |
• Issue 1012 (2023-03-27): siduction 22.1.1, protecting privacy from proprietary applications, GNOME team shares new features, Canonical updates Ubuntu 20.04, politics and the Linux kernel |
• Issue 1011 (2023-03-20): Serpent OS, Security Onion 2.3, Gentoo Live, replacing the scp utility, openSUSE sees surge in downloads, Debian runs elction with one candidate |
• Issue 1010 (2023-03-13): blendOS 2023.01.26, keeping track of which files a package installs, improved network widget coming to elementary OS, Vanilla OS changes its base distro |
• Issue 1009 (2023-03-06): Nemo Mobile and the PinePhone, matching the performance of one distro on another, Linux Mint adds performance boosts and security, custom Ubuntu and Debian builds through Cubic |
• Issue 1008 (2023-02-27): elementary OS 7.0, the benefits of boot environments, Purism offers lapdock for Librem 5, Ubuntu community flavours directed to drop Flatpak support for Snap |
• Issue 1007 (2023-02-20): helloSystem 0.8.0, underrated distributions, Solus team working to repair their website, SUSE testing Micro edition, Canonical publishes real-time edition of Ubuntu 22.04 |
• Issue 1006 (2023-02-13): Playing music with UBports on a PinePhone, quick command line and shell scripting questions, Fedora expands third-party software support, Vanilla OS adds Nix package support |
• Issue 1005 (2023-02-06): NuTyX 22.12.0 running CDE, user identification numbers, Pop!_OS shares COSMIC progress, Mint makes keyboard and mouse options more accessible |
• Issue 1004 (2023-01-30): OpenMandriva ROME, checking the health of a disk, Debian adopting OpenSnitch, FreeBSD publishes status report |
• Issue 1003 (2023-01-23): risiOS 37, mixing package types, Fedora seeks installer feedback, Sparky offers easier persistence with USB writer |
• Issue 1002 (2023-01-16): Vanilla OS 22.10, Nobara Project 37, verifying torrent downloads, Haiku improvements, HAMMER2 being ports to NetBSD |
• Issue 1001 (2023-01-09): Arch Linux, Ubuntu tests new system installer, porting KDE software to OpenBSD, verifying files copied properly |
• Issue 1000 (2023-01-02): Our favourite projects of all time, Fedora trying out unified kernel images and trying to speed up shutdowns, Slackware tests new kernel, detecting what is taking up disk space |
• Issue 999 (2022-12-19): Favourite distributions of 2022, Fedora plans Budgie spin, UBports releasing security patches for 16.04, Haiku working on new ports |
• Issue 998 (2022-12-12): OpenBSD 7.2, Asahi Linux enages video hardware acceleration on Apple ARM computers, Manjaro drops proprietary codecs from Mesa package |
• Issue 997 (2022-12-05): CachyOS 221023 and AgarimOS, working with filenames which contain special characters, elementary OS team fixes delta updates, new features coming to Xfce |
• Issue 996 (2022-11-28): Void 20221001, remotely shutting down a machine, complex aliases, Fedora tests new web-based installer, Refox OS running on real hardware |
• Issue 995 (2022-11-21): Fedora 37, swap files vs swap partitions, Unity running on Arch, UBports seeks testers, Murena adds support for more devices |
• Issue 994 (2022-11-14): Redcore Linux 2201, changing the terminal font size, Fedora plans Phosh spin, openSUSE publishes on-line manual pages, disabling Snap auto-updates |
• Issue 993 (2022-11-07): Static Linux, working with just a kernel, Mint streamlines Flatpak management, updates coming to elementary OS |
• Issue 992 (2022-10-31): Lubuntu 22.10, setting permissions on home directories, Linux may drop i486, Fedora delays next version for OpenSSL bug |
• Issue 991 (2022-10-24): XeroLinux 2022.09, learning who ran sudo, exploring firewall tools, Rolling Rhino Remix gets a fresh start, Fedora plans to revamp live media |
• Issue 990 (2022-10-17): ravynOS 0.4.0, Lion Linux 3.0, accessing low numbered network ports, Pop!_OS makes progress on COSMIC, Murena launches new phone |
• Issue 989 (2022-10-10): Ubuntu Unity, kernel bug causes issues with Intel cards, Canonical offers free Ubuntu Pro subscriptions, customizing the command line prompt |
• Issue 988 (2022-10-03): SpiralLinux 11.220628, finding distros for older equipment and other purposes, SUSE begins releasing ALP prototypes, Debian votes on non-free firmware in installer |
• Issue 987 (2022-09-26): openSUSE's MicroOS, converting people to using Linux, pfSense updates base system and PHP, Python 2 dropped from Arch |
• Issue 986 (2022-09-19): Porteus 5.0, remotely wiping a hard drive, a new software centre for Ubuntu, Proxmox offers offline updates |
• Issue 985 (2022-09-12): Garuda Linux, using root versus sudo, UBports on the Fairphone 4, Slackware reverses change to grep |
• Issue 984 (2022-09-05): deepin 23 Preview, watching for changing to directories, Mint team tests Steam Deck, Devuan posts fix for repository key expiry |
• Issue 983 (2022-08-29): Qubes OS 4.1.1, Alchg Linux, immutable operating systems, Debian considers stance on non-free firmware, Arch-based projects suffer boot issue |
• Issue 982 (2022-08-22): Peropesis 1.6.2, KaOS strips out Python 2 and PulseAudio, deepin becomes independent, getting security update notifications |
• Issue 981 (2022-08-15): Linux Lite 6.0, defining desktop environments and window managers, Mint releases upgrade tool, FreeBSD publishes status report |
• Issue 980 (2022-08-08): Linux Mint 21, Pledge on Linux, SparkyLinux updates classic desktop packages, Peppermint OS experiments with Devuan base |
• Issue 979 (2022-08-01): KaOS 2022.06 and KDE Plasma 5.25, terminating processes after a set time, GNOME plans Secure Boot check |
• Issue 978 (2022-07-25): EndeavourOS 22.6, Slax explores a return to Slackware, Ubuntu certified with Dell's XPS 13, Linux running on Apple's M2 |
• Issue 977 (2022-07-18): EasyOS 4.2, transferring desktop themes between distros, Tails publishes list of updates, Zevenet automates Let's Encrypt renewals |
• Issue 976 (2022-07-11): NixOS 22.05, making a fake webcam, exploring the Linux scheduler, Debian publishes updated media |
• Issue 975 (2022-07-04): Murena One running /e/OS, where are all the openSUSE distributions, Fedora to offer unfiltered Flathub access |
• Issue 974 (2022-06-27): AlmaLinux 9.0, the changing data of DistroWatch's database, UBports on the Pixel 3a, Tails and GhostBSD publish hot fixes |
• Issue 973 (2022-06-20): openSUSE 15.4, collecting distro media, FreeBSD status report, Ubuntu Core with optional real-time kernel |
• Issue 972 (2022-06-13): Rolling Rhino Remix, SambaBox 4.1, SUSE team considers future of SUSE and openSUSE Leap, Tails improves Tor Connection Assistant |
• Issue 971 (2022-06-06): ChimeraOS 2022.01.03, Lilidog 22.04, NixOS gains graphical installer, Mint replaces Bluetooth stack and adopts Timeshift, how to change a MAC address |
• Issue 970 (2022-05-30): Tails 5.0, taking apart a Linux distro, Ubuntu users seeing processes terminated, Budgie team plans future of their desktop |
• Full list of all issues |
Free Tech Guides |
NEW! Learn Linux in 5 Days

In this FREE ebook, you will learn the most important concepts and commands and be guided step-by-step through several practical and real-world examples (a free 212-page ebook).
|
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.
|
Shells.com |

Your own personal Linux computer in the cloud, available on any device. Supported operating systems include Android, Debian, Fedora, KDE neon, Kubuntu, Linux Mint, Manjaro and Ubuntu, ready in minutes.
Starting at US$4.95 per month, 7-day money-back guarantee
|
Random Distribution | 
Refracta
Refracta is a Linux distribution based on Devuan GNU+Linux (a systemd-free fork of Debian), designed primarily for home computer users and also for use as a system rescue and recovery disk. It provides a simple and familiar layout using the Xfce desktop. Other desktop environments and additional software packages are available from the Devuan package repository. Besides providing a Linux distribution on a live CD, the project also develops useful tools, such as refractainstaller, refractasnapshot and refracta2usb which allow users to customize the installation and create custom live CD or live USB images.
Status: Active
|
Free Tech Guides |
NEW! Learn Linux in 5 Days

In this FREE ebook, you will learn the most important concepts and commands and be guided step-by-step through several practical and real-world examples (a free 212-page ebook).
|
MALIBAL |
MALIBAL: Linux Laptops Custom Built for YouMALIBAL is an innovative computer manufacturer that produces high-performance, custom laptops for Linux. If your MALIBAL laptop is not the best Linux laptop you have ever used, you can return it for a full 100% refund. We will even pay the return shipping fees! For more info, visit: https://www.malibal.com
|
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.
|
Free Tech Guides |
NEW! Learn Linux in 5 Days

In this FREE ebook, you will learn the most important concepts and commands and be guided step-by-step through several practical and real-world examples (a free 212-page ebook).
|
|