DistroWatch Weekly |
DistroWatch Weekly, Issue 350, 19 April 2010 |
Welcome to this year's 16th issue of DistroWatch Weekly! Operating systems come in many different shapes and sizes - some are enormous and created by huge multinational software companies, others are tiny and represent the result of a few curious individuals. HelenOS belongs to the latter camp. Although it was started as a research project and is presently still just a tool to learn about system internals, the project has ambition to become a usable, general-purpose operating system. Read on for our interview with founder Jakub Jermar and a first-look review of the latest version. In the news section, Fedora continues its march towards its next stable release, Debian developers elect a new project leader and MOPSLinux faces uncertain future following a sponsor's departure. Also not to be missed: a link to an excellent article on migrating to GRUB 2, and our questions and answers feature which explains the intricacies of the "nice" and "renice" commands. Happy reading!
Content:
Listen to the Podcast edition of this week's DistroWatch Weekly in OGG (38MB) and MP3 (40MB) formats
Join us at irc.freenode.net #distrowatch
|
Feature Story (by Jesse Smith) |
HelenOS - the operating system that launched a thousand processes
On March 10, 2010, the HelenOS project released version 0.4.2 of their operating system. HelenOS sits on top of the SPARTAN kernel, which supports SMP, multi-tasking and multi-threading on a variety of common architectures. One of the developers behind HelenOS, Jakub Jermar, was willing to take time out of his busy schedule to answer some questions.
* * * * *
DW: Could you tell us how the HelenOS project got started? What was the motivation to make a new operating system?
JJ: It got started as an assignment back in 2001 when I was at the university. It was actually several assignments from several subjects that got combined into what later became HelenOS. In 2004 five other students joined me to work on it towards a more complete operating system. Our project was completed in 2006. Since then, some of us continue to work on it as PhD students (we have some research in the area of general purpose operating system verification) and some of us really do it as a hobby. In the past years we delivered support for file systems and very recently also for networking. Progress is rather slow because we have to figure everything ourselves and then implement it, and also because we are actually writing multi-platform code (not the case with Hurd or MINIX).
So the initial motivation was rather an exercise than some vision. At that time, MINIX and Hurd seemed long dead so we felt like the only ones working on a multi-server system. Unfortunately we were wrong.
In the more recent years, we realized that our design allows us to write small software components (e.g. file_bd or the partition block device drivers) and easily combine these components in runtime according to the requested configuration. This is similar to designing software by drawing pictures of interconnected components; we call it "a box principle". Of course, the box principle is enabled by the fact that all the "boxes" communicate using some fixed IPC protocol. Two boxes are happy to communicate with each other as long as the protocol is obeyed, using thus something like box polymorphism, if I may use a POP term.
DW: The download for HelenOS is small, about 5.5MB. What does a person get in that tiny package?
JJ: The image is just a live CD. On the other hand it contains all the commands that we currently have, so even if the system was installed on a hard disk, it would not be much bigger.
There is currently no easy way to automatically install HelenOS on a hard disk. We have an open ticket which we are now trying to get into the Google Summer of Code program. Nevertheless, it should be possible to configure HelenOS in such a way that it boots off a hard disk, but you would have to do it manually.
DW: Is HelenOS related to UNIX? That is, does it have a similar file system, userspace programs, user accounts?
JJ: It is not related. Some pieces and the names of user commands may seem similar. We have one central user process server called VFS which multiplexes file system requests to all actual file systems. We currently support TMPFS, FAT16 and DEVFS. So each file system registers itself at VFS when it starts and from then it can be mounted/used. As of now, HelenOS is a single-user system with no security. We do have a student who is doing his master thesis on this topic (introducing security to HelenOS).
DW: What made you decide to create a microkernel?
JJ: It just seemed more interesting to us and we felt like we could finish the microkernel (not talking about the whole multi-server system here) on time, which was in June 2006.
DW: Can an end-user or administrator make use of HelenOS?
JJ: Very limited use at the moment. I am thinking of some kind of a black box use where HelenOS would be doing some autonomous activity, such as controlling elevators or something like that. When we fix a bug in TCP, it would be possible to use it as a remote terminal, or you can pack it with an ARM processor and sell a Tetris video game. I can also imagine that after some effort, it could work as file server. Our goal, however is to make it a general purpose system, so there is still a lot of work ahead.
DW: Is it possible to compile and build HelenOS on HelenOS?
JJ: Not yet, for example we could make use of a GCC and Binutils port to HelenOS.
DW: Thank you, Jakub, for taking the time to answer questions about the project.
* * * * *
The team's website is of a simple, but elegant design that is easy to navigate and provides information in a clear point-by-point manner. There is a lot of technical information here, especially concerning the design of HelenOS. Visitors to the site will learn that HelenOS contains approximately 325,000 lines of code (mostly written in C) and is currently maintained by nine developers. What is, perhaps, more telling is the lack of documentation on using the operating system. As Jakub mentioned above, there isn't a lot an end-user or administrator is going to do with HelenOS; at the moment it's more for programmers and people who want to learn about kernels. Once I confirmed that HelenOS supports Intel 32-bit machines (as well as ARM, MIPS, PowerPC and Sparc64) I downloaded the ISO image for HelenOS and set it up in a VirtualBox virtual machine.

HelenOS 0.4.2 - the command line (full image size: 1,011kB, screen resolution 1027x753 pixels)
Booting from the CD briefly shows a GRUB menu in which starting HelenOS is the sole option. A few seconds later the user is dropped at a console that is partly text and partly graphical. Along the top of the screen is a banner which displays the name of the operating system, a series of numbered buttons and a button labelled "kcon". Below the banner is a command line shell (the Brain Dead Shell, in this case), which prompts the user to type "help" for assistance. Being as this was my first experience with a new operating system, I took the prompt up on the invitation.
Typing "help" got me a list of about twenty commands recognized by the system. These are mostly commands for manipulating files and are named similarly to their UNIX counterparts. For example, mount, cp, mv, mkdir, ls and touch will all be familiar to people who are at home with the Linux command line. Aside from the commands listed in the help message, HelenOS also comes armed with about another dozen small applications, which can be found in the "app" directory. There is a simple text editor, a version of the ping command, a program to start the network connection and Tetris.
Aside from the "apps" directory, we also find a "dev" directory with devices, similar to those found in a UNIX system. There is a "cfg" directory, which contains configuration information for the OS, much the same way "/etc" functions on UNIX. HelenOS is a single-user system and the user is able to create or delete files and run commands at will. Most of the commands work well and with the expected results, even if they are in their early stages of development. Turning for a moment to the banner at the top of the screen, clicking on the numbered buttons on the banner switches between virtual terminals. The user can also switch between terminals using the ALT key and the function keys, much the same way a user chooses virtual terminals in Linux.
For me, the most interesting part of HelenOS was kcon, the kernel debug console. Clicking on the "kcon" button or running the "kcon" command opens up a blue screen which looks and acts very much like the bdsh command line. Again, typing "help" brings up a menu of available commands the console recognizes. From here, the user is able to call functions, run tests, view memory and processor information and monitor processes. The kernel console also provides uptime and the ability to halt or reboot the system.

HelenOS 0.4.2 - the kernel console (full image size: 1,011kB, screen resolution 1027x636 pixels)
Being a small operating system, HelenOS does not take up many resources. The entire OS runs in less than 64 MB of memory. Since very few tasks are running by default, the system is quick and light. It's also stable. During the four days I played with HelenOS I experienced no application or system crashes. There may not be much here, but what exists appears to be well crafted. There were some things I wasn't able to get working on HelenOS. For instance, while I was able to get loopback networking running, I wasn't able to get a connection to the Internet. Hardware support is limited, so people wishing to play with the operating system are probably best off experimenting with a virtual machine.
And that was about it as far as exploring the system is concerned. There's no package management or user accounts and no compiler (that I'm aware of). Which might raise the question "why?" What's so interesting about HelenOS that we can't get from Linux, BSD or MINIX? Having played with HelenOS for a while, I have two answers:
- HelenOS is still in a fairly early stage of development. It's young compared to the other operating systems I mentioned. It's small, clean and has several papers written on it. This makes the HelenOS project a great way for students to jump in and learn about OS design with a minimum of overhead. It's light, highly portable and doesn't have any spare parts left over from a previous decade.
- For the same reason people build model cars - the fun of it. Some people stargaze, some collect stamps and some write kernel code. It doesn't need to be practical to have a purpose. Though, given time, HelenOS may become practical too.
At the moment it's unlikely anyone outside of a classroom is going to get excited about HelenOS. But it is an interesting project and, like the brain itself, has all the makings of an educational toy.
|
Miscellaneous News (by Ladislav Bodnar) |
On Fedora's desktop features and release delays, Debian's new project leader, uncertain future of MOPSLinux, moving to GRUB 2
With the beta release of Fedora 13 last week, the distribution's last public test build before the final release in about a month from now, many Linux news sites and blogs have taken a closer look at the next version of what is arguably the most innovative and experimental Linux distro today. Among them was Rahul Sundaram who has compiled a summary of the most interesting new desktop features in Fedora 13: "Shotwell Photo Manager - awesome program. It has replaced both gThumb and F-Spot. Unlike F-Spot which pulls in a lot of Mono dependencies and requires you to import the photos into its library, Shotwell in its latest version included in Fedora 13 beta can do photo management without importing them. It is written in Vala and super fast. Mono status - there has been some confusion over the status of Mono in Fedora. When Mono was originally included in Fedora, Beagle, Tomboy and F-Spot were the default applications. Beagle was too slow and had many bugs and was dropped from the default list soon after. Tomboy was replaced by Gnote in Fedora 12 and Fedora 13 replaces F-Spot by Shotwell. Mono hasn't been included by default in the Fedora live CD for the past several releases ever since Fedora 10 release."
Those who follow the development of Fedora will have already observed that the project's development releases are almost always delayed - usually by one week. What are the reasons? And what can be done about it? John Poelstra has written an article entitled Shipping Fedora On Time where he argues that these delays affect too many people to ignore them and suggests solutions that could ensure timely releases in the future: "If we really want our releases to be on time we must give interim milestones and tasks just as much value as the big ones. If we plan to compose a release candidate on Thursday so QA has six days to test before the Go/No-Go meeting, we should make a bigger deal when the release candidate isn't ready until Monday or Tuesday. If history shows that we rarely if ever have a solid release candidate on the day it is scheduled we should start earlier than Thursday to create it. We already have a 'Test Compose' milestone scheduled a week earlier to address this, but it suffers from the same approach."
* * * * *
 The Debian project has a new chief. Stefano Zacchiroli (pictured on the right) has been elected as the new project leader for the next one-year term, replacing the outgoing Steve McIntyre: "In accordance with its constitution the Debian project has elected Stefano Zacchiroli as Debian project leader for the 2010/2011 term. Stefano has been a Debian developer since March 2001 and is a long-term contributor to several core services such as Debian's package tracking system and its quality assurance team." An Italian, currently living and working in Paris, Stefano Zacchiroli published his first Bits from the DPL post last weekend: "A big THANK YOU goes to all the people that took part in the recent elections: as I've mentioned in a recent blog post I'm very proud of our project and of its democratic processes, let's not forget that Debian and its constitution are quite peculiar in that respect in the distribution ecosystem." However, the hot topic of the next stable Debian release (code name "Squeeze"), only received a passing mention: "Now let's go and squash some RC bug, Squeeze is getting closer and closer."
* * * * *
MOPSLinux is a relatively new entry on the Linux distro menu, but the (mostly) Ukrainian developers have done an excellent job turning Slackware Linux into a somewhat more user-friendly distribution, especially on the package management level. Unfortunately, shortly after the release of version 7.0 some two weeks ago, the distribution's web site announced a complete halt of development and support (link in Russian) due to a sponsor's withdrawal from the project. But all is not lost. According to this story by NIXP.ru (in Russian), a Russian Linux news site, a new company might soon take over the development and support of the distribution - albeit under a different name, since "MOPSLinux" is already a registered trademark. Expect a new announcement to be published shortly. While the project's web site is entirely in Russian, the distribution itself does support English (as well as Russian and Ukrainian), right from the system installer. Perhaps the distro's most notable feature is its advanced package manager called "mpkg", together with a graphical package management front-end and easy package update feature.
* * * * *
As Linux evolves, new technologies come our way and sometimes catch us by surprise. Such is probably the case with the ongoing wave of bootloader migrations - from GRUB 0.9x series to GRUB 2. Debian GNU/Linux was one of the first distributions to adopt the new GRUB, with Ubuntu "inheriting" it from upstream in the current stable release, but it has now also been spotted in Arch Linux and Gentoo Linux, among other distributions. Since GRUB 0.9x is no longer in development, it is likely that all major distro projects (with the notable exception of Slackware Linux, which continues to use LILO) will eventually switch to the new version of GRUB. Unfortunately, GRUB 2 is a very different beast from the original GRUB 0.9x, so anybody who spends time installing multiple distributions on the same hard disk or who administers Linux boxes should make some effort to get acquainted with this highly important component of an operating system. Last week, IBM developerWorks published an article entitled Migrate to GRUB 2 by Roderick W. Smith: "The tools used to boot Linux are changing. Specifically, the Grand Unified Bootloader (GRUB) is now officially in maintenance mode only, and GRUB's developers have abandoned the original GRUB in favor of an entirely rewritten package, known as GRUB 2. Discover GRUB 2's new capabilities and how to use it." An excellent overview that includes related links for further reading.
|
Questions and Answers (by Jesse Smith) |
Process scheduling with "nice" and "renice"
In-a-hurry asks: I want to change the scheduling of processes. How can I use a different kernel scheduler?
DistroWatch answers: Changing the way your Linux box schedules tasks is a little bit like working with explosives. It sounds fun and nearly everyone wants to do it, but it's likely to do more harm than good unless you really know what you're doing. The kernel developers are an intelligent bunch and have spent a lot of time and effort trying to get the kernel scheduler to work really well across many different types of machines and situations. Usually you don't need a different kernel scheduler to alter the performance of your processes, what you're probably looking for are the "nice" and "renice" commands.
The "nice" command kicks off a process with an adjusted priority. Typically, this is done to reduce the task's priority so that it gets out of the way of more important processes. For example, you can run the command
nice top
You'll notice that the "top" command will show up with a nice value of ten and a priority ten points higher than many other processes. Dealing with Linux priorities can be confusing because a higher number means a lower real-life priority. The administrator has the ability to assign a better (lower) nice value to tasks. The following command, when run as the administrator, will launch the "top" command again, but with a better priority of -10. Acceptable niceness values range from -20 to 19.
nice -n -10 top
But what if you already have a process running and want to alter its priority? For that, there is the "renice" command. The renice command takes a new priority setting and a process' ID number. For example, this command will adjust the priority of the process with PID number 8538:
renice -n 15 8538
Again, higher numbers reduce real-life priority, so we've marked process 8538 as being less urgent than other tasks. The administrator is the only user able to raise the priority of a task, preventing regular users from getting into a scheduling war.
If you want to get more performance out of your machine, there are a lot of ways to do that. Reducing the number of services you're running and compiling your software with various optimizations is usually a good place to start. If you insist on getting down to the kernel level, it is possible to change the focus of the scheduler or replace the kernel's scheduler. There's an interesting talk on installing and using the BFS scheduler on Ubuntu here and a project dedicated to allowing admins to change their kernel's scheduler at runtime here. The kernel's build configuration tools come with a "Processor type and features" section which allows the user to select supported processor types, SMP options and pre-emption models, all of which can alter the performance of the machine and the responsiveness of running processes. It's probably not something you'll want to dive into unless you're already familiar with compiling your own kernels, but it's there for the curious to experiment with.
|
Released Last Week |
FreeNAS 0.7.1
Daisuke Aoyama has announced the release of FreeNAS 0.7.1, a FreeBSD-based operating system which provides free Network-Attached Storage (NAS) services: The FreeNAS Development Team is pleased to announce the availability of FreeNAS 0.7.1. This is a maintenance release of FreeNAS 0.7. It improves the functions and the translations of WebGUI. Also it introduces a few new features. New features: AIO (asynchronous I/O) support in CIFS/SMB - Samba; ATAPI CAM with iSCSI target (device pass-through); custom script in Email Report; serial console support for headless servers/devices; a raw device, ZFS volume for the extent of iSCSI target; iSCSI removable device and control (DVD/tape emulation). Upgrade notes: before upgrade you must always backup your configuration file, your system disk and all your data." Read the rest of the release announcement which include detailed release notes.
VortexBox 1.3
Andrew Gillis has announced the release of VortexBox 1.3, an easy-to-use Fedora-based music server and jukebox: VortexBox 1.3 released today. This release includes lots of new features and bug fixes. We have the latest version of SqueezeBox Server and all the latest versions of the 3rd party projects that make up VortexBox. We have also added Subsonic, a new GUI that allows you to manage your music collection and stream it to iPods and Android players. New features include: Logitech SqueezeBox Server 7.5.0 pre installed and configured; Subsonic music interface for remote playing; edit your tags and cover art using the Subsonic web GUI; latest version of TwonkeyMedia Server; many bug fixes including USB backup manager; file sharing fix for OS X 10.6.3; auto re-index after rip for Sonos players. To upgrade your existing system you can use the updater in the VortexBox GUI." Here is the brief release announcement.
Dragora GNU/Linux 2.0
Matias Fonzo has announced the release of Dragora GNU/Linux 2.0, a 100% "libre", general-purpose distribution built from scratch: I am pleased to announce the final version of Dragora GNU/Linux 2.0. Dragora is a powerful and reliable GNU/Linux distribution created from scratch with the intention of providing a stable, multi-platform and multi-purpose operating system. Highlights since RC2: the installer includes a better detection method for the CD-ROM, the option to install GRUB in a root partition is back again. The installation of the packages is slightly faster with clzip 1.0 and lzip 1.10. This release comes with Runit as default init scheme, Linux-libre kernel 2.6.32.11, OpenSSL 1.0.0, GCC 4.4.3, and more. Added cURL and Expat to complement Git." Read the rest of the release announcement for additional details.
antiX MEPIS 8.5
Warren Woodford has announced the release of antiX MEPIS 8.5, a lightweight MEPIS variant designed for older computers: Nine months since the release of antiX M8.2, the antiX team announce that antiX MEPIS 8.5 - a fast, light, flexible and complete desktop and live CD based on SimplyMEPIS and Debian 'testing' - is now available in full and base versions. This release defaults to a fully customised IceWM desktop (Fluxbox, wmii and dwm are also installed) using a SimplyMEPIS 2.6.32 kernel, tweaked MEPIS Assistants for better compatibility in antiX and the usual range of applications for desktop use. Iceape for Internet needs, AbiWord and Gnumeric for office use, XMMS and Google's music manager for audio, gxine, MPlayer and GNOME MPlayer for video.... antiX works on computers with as little as 64 MB RAM." Read the rest of the release announcement which includes a detailed list of changes since the previous stable release.

antiX MEPIS 8.5 - a SimplyMEPIS-based distribution for older computers (full image size: 689kB, screen resolution 1280x1024 pixels)
Oracle Enterprise Linux 5 Update 5
Oracle has announced the release of Oracle Enterprise Linux 5 Update 5, a rebuild of Red Hat Enterprise Linux 5.5 with Oracle-specific fixes and enhancements: "Oracle is pleased to announce the general availability of Enterprise Linux Release 5 Update 5 for x86 (32-bit) and x86_64 (64-bit) architectures. This update includes the following kernel/driver changes: fix qla not to query hccr; update rds to 4.0-ora-1.4.2-10; revert return code check to avoid EIO; check to see if hypervisor supports memory reservation change; add entropy support to igb; convert ENETUNREACH to ENOTCONN; add Xen pv/bonding netconsole support; shrink zone patch; fix aacraid not to reset during kexec; fix failure of file creation from hpux client; FP register state is corrupted during the handling a SIGSEGV." Read the rest of the release announcement for a complete list of changes.
CDlinux 0.9.6
Ben Zhao has announced the release of CDlinux 0.9.6, a small live CD featuring the Xfce desktop, several popular desktop applications and a handful of administration tools: "CDlinux 0.9.6 released. This release is a major upgrade. Almost all components are upgraded to their latest stable versions, like Linux kernel 2.6.33.2, X.Org Server 1.8.0, Mesa 7.8.1. Thanks to the open source ATI and Intel drivers, we now have fairly good 2D/3D support on almost all ATI and Intel chip-based video cards. PAE is also enabled in this release. As a result, we can support up to 64 GB of RAM now. While the downside is that you can't run CDlinux 0.9.6 on older CPUs (5×86, K6, Pentium, etc.) any more, not even the Mini edition. Package upgrades: GTK+ 2.18.9, Qt 4.6.2, JRE 6u19, Firefox 3.6.3, Midnight Commander 4.7.0.4...." See the release announcement and release notes for further details.
MythDora 12.23
Ryan Pisani has announced the release of MythDora 12.23, a Fedora-based Linux distribution designed to simplify the installation of MythTV on a home theatre PC: "MythDora 12.23 has been released. There are a few changes from 10.21 but mostly on the cosmetic side of things. We're now using the stock MythTV theme out of the box, as well as stock paths. General features: Fedora 12 + updates; MythTV 0.23-rc2; Linux kernel 2.6.32.11; LIRC 0.8.6. DVD features: GNOME, KDE, LXDE, Xfce and Ratpoison desktops; NVIDIA driver packages 195, 173 and older 96; Handbrake 0.9.4; live CD features: Xfce desktop environment; NVIDIA 195 driver package; ability to change time zone in first boot configuration. Changes in MythDora 12: the auto-installation method has been removed; the front-end now heavily relies on the time zone of the system matching the back-end...." Read the rest of the release announcement for further details.
* * * * *
Development, unannounced and minor bug-fix releases
|
Upcoming Releases and Announcements |
Summary of expected upcoming releases
|
DistroWatch.com News |
New distributions added to waiting list
- FreeSentral. FreeSentral is a full IP PBX (Internet Protocol Private Branch Exchange) consisting of a Linux distribution, an IP PBX and a web graphical user interface for easy configuration. It is based on Mandriva Linux.
- Peppermint. Peppermint is a lightweight, fast and user-friendly, Lubuntu-based distribution, with some components borrowed from Linux Mint. It is being designed for enhanced mobility, efficiency and ease of use.
* * * * *
DistroWatch database summary
* * * * *
This concludes this week's issue of DistroWatch Weekly. The next instalment will be published on Monday, 26 April 2010.
Jesse Smith and Ladislav Bodnar
|
|
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) |
|
|
|
 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 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 |
• Issue 969 (2022-05-23): Fedora 36, a return to Unity, Canonical seeks to improve gaming on Ubuntu, HP plans to ship laptops with Pop!_OS |
• 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 | 
YunoHost
YunoHost is a Debian-based distribution which strives to make it easy to quickly set up a server and host web applications. The distribution can be managed through a custom command line utility or through a web-based administration panel.
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).
|
|