DistroWatch Weekly |
DistroWatch Weekly, Issue 712, 15 May 2017 |
Welcome to this year's 20th issue of DistroWatch Weekly!
There are a lot of different types of Linux distributions. Many projects focus on desktop use, others are optimized for servers, some focus on data recovery and there are some Linux distributions which showcase new or interesting technologies. This week we turn our attention to the last category and NixOS, a Linux distribution which demonstrates the power and flexibility of the Nix package manager. Nix includes several useful features for working with packages and configuring an operating system and Ivan Sanders explores these in our Feature Story. In our News section we talk about how Canonical, the company behind Ubuntu, is considering becoming a publicly traded organization. We also discuss Haiku's Summer of Code projects and new improvements coming to the Solus distribution. This week we explore the new Alpha Litebook, an inexpensive notebook computer that ships with the elementary OS distribution pre-installed. In our Opinion Poll we discuss purchasing new Linux computers . Plus we share the distribution releases of the past week and provide a list of the torrents we are seeding. We wish you all a fantastic week and happy reading!
Content:
- Review: NixOS 17.03 "Gorilla"
- News: Canonical eyes going public, Haiku launches Summer of Code projects, Solus improves Bluetooth support
- Hardware review: The Alpha Litebook
- Released last week: Black Lab Linux 11
- Torrent corner: 4MLinux, AUSTRUMI, Black Lab, Clonezilla, Debian, ExTiX, Neptune, Parrot Security, Q4OS, SmartOS
- Opinion poll: Future computer purchases with Linux pre-installed
- DistroWatch.com news: Small change to search
- Reader comments
Listen to the Podcast edition of this week's DistroWatch Weekly in OGG (107MB) and MP3 (78MB) formats.
|
Feature Story (by Ivan Sanders) |
NixOS 17.03 "Gorilla"
Have you heard of NixOS? If not, it may be time to pay attention. NixOS is an independently developed distro from the Netherlands. If you have heard of NixOS you already know - this distro is different. And it is a good type of different. It is slick, compartmentalized, and very forgiving (unlike some distros). It is lightweight out of the box, and it gives you the ability to configure everything and anything just the way you want. Let's take a deeper look.
Installing NixOS
Installing NixOS is not too difficult. The installation media from their website is 791MB. When you boot it up it offers you a live environment. This live environment is initially presented through a command line interface (tty), but it prompts you to start the display and gives you directions.
NixOS automatically boots into KDE Plasma 5. It is a very nice live environment, clean, and there are no bugs out of the box. Presented in the live environment on the desktop are GParted and the NixOS manual, pre-downloaded for you. The manual gives you directions on how to install the distro. It is pretty easy to follow, with one exception. The manual does not tell you until much later on that you need to mount your EFI partition to /mnt/boot (for me that was accomplish with "mount /dev/sda2 /mnt/boot"). It does explain this in the UEFI portion of the manual, but that is right after the installation portion. Consider reading the UEFI portion before you conduct the installation process.
NixOS 17.03 -- Running the KDE Plasma desktop
(full image size: 552kB, resolution: 1920x1080 pixels)
There is currently no installation GUI. This is fine, but I think it will turn off some newer users. I did not have any problems getting NixOS to install after the small EFI mounting issue. Just follow the manual and there should be no problems.
Most of the NixOS review could actually revolve around this installation portion. The most fascinating piece of NixOS is the configuration file for this installation, known as configuration.nix. The user puts all of the settings and specific needs for their system in this file. You can pre-pick packages, what drivers you want to use, desktop environment, display manager, network management options, boot loader, time zone, display server, users, touchpad options, etc. You can take this configuration and basically deploy the same NixOS system on any computer easily. It is very customizable and very useful.
NixOS 17.03 -- Installing the system using the Nix configuration file
(full image size: 894kB, resolution: 1920x1080 pixels)
Using NixOS
Installing packages (or building them, however you want to see it) is done with the nix-env command. A very interesting thing about using this command is that it allows the user to have packages installed, but they are not installed throughout the system. If you enable the packages in the configuration.nix file, they are usable by any user. If you install the packages using sudo nix-env, they will be available to all users too. But if you're just a little lonely user and you want to use Chromium in place of Firefox, you can install it without sudo, using nix-env without elevated privileges, and it will be yours. No other users will have access to Chromium and you can just have it all to yourself.
This being said: if another user also wants to use Chromium, she has to install it too. This leads to having, essentially, multiple versions of the same program on a hard drive, and could be seen as a waste of space. But I like it. I don't think that with modern hard drive capacities there is as much of a problem.
NixOS 17.03 -- Running desktop applications
(full image size: 843kB, resolution: 1920x1080 pixels)
The NixOS website says: "Nix builds packages in isolation from each other. This ensures that they are reproducible and don't have undeclared dependencies, so if a package works on one machine, it will also work on another." This compartmentalization is beautiful and it works well. I was a little nervous going into this distro, but I had no issues with their high level of separation.
Most things I tried in NixOS just worked. Netflix, Amazon Video, my favorite games on Steam, LibreOffice, etc. There were some problems with installing GNOME extensions, but the work around is to find the extension's zip file and install it with the GNOME Tweak Tool. I think that this is a good contender for a daily Linux distro.
The default desktop environment is Plasma and SDDM is the default display manager, but that doesn't have to be the case because it is easy to switch software in the configuration.nix file. So your first build can have whatever you want. I installed using these presets, but I prefer GNOME and LightDM. After first boot I changed those parameters in the configuration.nix file and, voila, I had my preferred setup. All it takes is a quick rebuild of the system using nixos-rebuild and my system was recreated. Let's add something else, say, NVIDIA drivers to the Nix configuration file. Again, run nixos-rebuild and voila! But wait…
Assume the system rebuild broke during the rebuild. Well this is the third version of my system. On the boot manager (I'm currently using systemd because it is the default) you have the option of NixOS Generation 1, 2, or now 3. (I'm currently on NixOS Generation 20, that's how much I have enjoyed playing with the configuration file.) If your system breaks, you can go back to the second build you did from the boot menu and load that snapshot. It is that easy. And from there you can fix whatever problems you were having in your configuration file. This allows for some fun and easy ways to play with a system without worrying about breaking it. Not all distros are created equally, and this is a huge bonus. You don't have to worry that you broke it when you can easily go back. Essentially, you have an unlimited number of versions of the same distro at your fingertips.
Let's take a look at the networking portion of the configuration.nix file (here is mine):
networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true;
You can see that my hostname is "nixos". Also, I have disabled the default, wpa_supplicant, using the hash (#) symbol, but the user can also remove the line altogether if they are looking for a cleaner configuration.nix file. I prefer to use Network Manager and have enabled it in the third line. Now let's look at creating a user in the configuration.nix file (ivan is my account name in this example).
# Define a user account. Don't forget to set a password with ‘passwd'.
users.extraUsers.ivan = {
isNormalUser = true;
home = "/home/ivan";
description = "ivan";
extraGroups = [ "wheel" "networkmanager" ];
uid = 1000;
};
In this example I created the user ivan. I set his home directory as /home/ivan and assigned him to the groups wheel and networkmanager. Placing ivan in the wheel group enables the user to use sudo and perform administrator tasks, so ensure you do this if you intend to give the user sudo access. Also, ensure each user identification number (UID) is different. Upon first boot you will need to use the root account to login. Simply use the command passwd ivan to change the password of the user and then you can login with that username.
Issues
I think that the biggest issue with NixOS is the complete disregard for the standard file system hierarchy. I don't mind it, because I find the file system hierarchy standard confusing at times, but it is an issue for some users. It is also an issue when building a package from its source code, but there is a way to make source builds into .nix packages to use with the Nix package manager, so that's not really an issue either.
There are a lot of Nix features in NixOS. It is very well developed and highly complex. Obviously some very smart people have designed this distro, and it is all well above my head. This makes some things about NixOS seem way too complicated for me, some may describe this as too abstract (because it is misunderstood).
Community
NixOS is not a huge distro right now (but it is growing fast), so there is not as much information available on-line as there may be for Ubuntu or Fedora. That being said, I must give a huge thank you to the community around NixOS. Their IRC group and the issue page on GitHub were both incredible. They are a very friendly group of users and developers, and that is saying a lot when you look at some of the other, perhaps more mainstream, distros. They don't use a forum but their GitHub Issues page is outstanding. They are fast to give support and they don't talk down to you. I think their user base will be growing a lot in the coming years if they keep that type of attitude.
Conclusion
NixOS is a viable daily distro for average users who are willing to put a small amount of work into it. Since it is a little strange, knowledge about NixOS may not translate well to other distros. NixOS is very lightweight and usable. I think that it is probably a very good distro for a more advanced user. Like I said, I was able to do everything I wanted on NixOS (except get my NVIDIA drivers working, but I think that's my fault). The Nix package manager is also available for most other distros, so if you want to use the Nix package manager and all the Nix glory associated with it (like isolation of packages) you can. I probably won't keep NixOS on my machine, but I think I will start using the Nix package manager on whatever distro I settle on for this week.
* * * * *
Hardware used for this review:
- ASUS GL551VW-DS71
- Intel Core i7-6700HQ Mobile Processor (4x 2.6GHz/6MB L3 Cache)
- 256GB SanDisk X400 SSD - Read: 540MB/s, Write: 340MB/s
- Integrated Intel HD Graphics 530
- NVIDIA GeForce GTX 960M - 4GB
- 16GB [8GB x 2] 2133MHz DDR4 SO-DIMM Laptop Memory
- RAM used at boot: 367MB (Plasma) and 535MB (GNOME).
* * * * *
Visitor supplied rating
NixOS has a visitor supplied average rating of: 9.1/10 from 75 review(s).
Have you used NixOS? You can leave your own review of the project on our ratings page.
|
Miscellaneous News (by Jesse Smith) |
Canonical eyes going public, Haiku launches Summer of Code projects, Solus improves Bluetooth support
Last month we shared news that Canonical, the company behind the Ubuntu distribution, was ceasing development of its Unity desktop environment and Ubuntu Touch mobile operating system. Part of the reason for Canonical dropping these desktop and mobile technologies was maintaining them was expensive and a drain on the company's resources. Also, according to a recent ZDNet article, Canonical may be transitioning from a private company to a publicly traded company. Canonical's founder, Mark Shuttleworth, has expressed an interest in focusing on the cloud and server technologies which make Canonical money in order to make the organization more appealing to potential investors. The article shares some quotes from Shuttleworth discussing taking Canonical public: "This move also means Canonical will devote more of its time to 'putting the company on the path to an IPO. We must figure out what steps we need to take moving forward.' That means focusing on Canonical's most profitable lines. Specifically, 'Ubuntu will never die. Ubuntu is the default platform on cloud computing. Juju, MaaS, and OpenStack are nearly unstoppable. We need to work out more of our IoT path. At the same time, we had to cut out those parts that couldn't meet investors' needs. The immediate work is to get all parts of the company profitable.'"
* * * * *
The Haiku project, which continues on the legacy of the classic BeOS platform, has had several Summer of Code students join the development team. The new Haiku developers have a number of interesting projects planned, including 3-D hardware acceleration support and the ability to write data to Btrfs volumes. Another promising sub-project aims to add a calendar application to Haiku. A full list of the Haiku Summer of Code projects can be found on the Haiku blog.
* * * * *
The Solus project develops an independent desktop distribution and the Budgie desktop environment. According to the latest Solus newsletter, the developers are polishing features and fixing bugs. The newsletter mentions new fixes for Google on-line account integration, a revamped website for Solus and a more natural organization of the distribution's Help Centre. The newsletter also mentions fixes for Bluetooth support: "Thanks to our Patrons and donors on PayPal for their continued support of the project, Ikey was able to sponsor my purchase of some Bluetooth speakers, specifically the Creative T3250 wireless speakers and an Asus USB-BT400 Bluetooth USB adapter. This was done as we had received reports of non-functionality Bluetooth A2DP audio on some systems and needed hardware to test and validate solutions in a more rapid fashion than what have may otherwise been possible through conversing and testing via IRC. The issue was a result of GDM starting its own instance of PulseAudio, something I addressed in our GDM 3.20.1 rel 22. Furthermore, I did enablement of bluez, namely enabling a stateless config and shipping our vendor-provided configuration with AutoEnable set to true, so Bluetooth controllers are automatically enabled." These and other updates to the Solus distribution can be found in the project's newsletter.
* * * * *
These and other news stories can be found on our Headlines page.
|
Hardware Review (by Jesse Smith) |
The Alpha Litebook
Despite desktop Linux becoming more popular over the years and the GNU/Linux family of operating systems gaining more mainstream support from software and hardware creators, there still are not a lot of big name hardware companies selling Linux computers. Even those which do, such as Dell, tend to tuck their Linux options into a back corner, shinning the spotlight on their computers that ship with Windows pre-installed.
This has left the Linux hardware market relatively open for smaller players. Many smaller shops have appeared over the years, specializing in selling computers with Linux pre-installed. One of the most recent arrivals in the Linux market is the Alpha Litebook. The Litebook, which was launched in early 2017, is a $249-$269 USD notebook computer which ships with elementary OS. elementary is based on Ubuntu and the distribution uses the Pantheon desktop environment by default.
Happy with the price-to-specifications ratio featured by the Litebook and curious to see how the device would perform, I ordered one of the laptops at the start of March. This review of the Alpha Litebook will consist of four sections: acquiring the Litebook and dealing with Alpha's customer support; the hardware of the Litebook; my thoughts on elementary OS as a default distribution; and the process of installing another Linux distribution on the Litebook.
Acquiring a Litebook
My adventure with the Litebook started off simply enough. I went to the company's website, selected the Litebook, opted to purchase the model with two disks (one model has a traditional spinning disk while the other has a hard drive and an SSD for improved performance). I paid and I waited. As (bad) luck would have it, I was late to the Litebook party and the company was dealing with a backlog of orders. Regular e-mail notifications let me know new orders were coming in from Hong Kong, then the order was put together, the Litebook tested and my device shipped. This process took about two weeks from my placing the order to the time when my Litebook left Alpha. Sadly, packages cross the American/Canadian border slowly these days and it was another four weeks before my Litebook arrived in the mail. Unfortunately, customs agents or a mail carrier or just bad luck had not been kind to the Litebook model I received and the display was badly damaged. The device would boot, but I was able to make out virtually nothing on the streaked and lined screen.
I got in touch with the company's customer support and, after exploring some options to make sure the screen itself was damaged and this wasn't a configuration or loose wiring problem, the company sent me a replacement device via FedEx and offered to pay return shipping on the original, damaged unit. The new unit arrived almost exactly two months after I placed the original order and I got to work exploring the device.
elementary OS 0.4 -- The About screen
(full image size: 1.4MB, resolution: 1920x1080 pixels)
There were a few small differences between the first package I received and the second. The first package I received had an all white notebook computer, power cord and adapter, a device driver CD (odd for a computer with no optical drive), a warranty card and a manual written in Chinese. The manual, judging by the pictures, covered identifying the hardware parts and how to access the laptop's BIOS screen. The second package contained just the Litebook and its power cord with no optical disc or documentation. The latter device had black lettering on its lid while the former was plain white.
Hardware
The Litebook is, as its name implies, unusually lightweight (about 1kg), weighing roughly half of what my HP laptop weighs, though their sizes are similar. The Litebook's case is white plastic and it features a compact keyboard (without number pad). The keys are raised fairly high, giving an above average amount of travel when typing. Most of the time this was not a big issue, but I noticed the spacebar was unusually stiff. I spent a lot of time correcting space-related typos this week. The trackpad features two physical mouse buttons. The screen is 14.1 inches and has a resolution of 1920x1080 pixels. Down the left size of the unit we find an Ethernet port, two USB 3.0 ports, a micro HDMI port, a micro SD card slot, a headphone jack port and a place to plug in the power adapter. The device has a 720p webcam and can play audio without the aid of external speakers.
Internally, the Litebook features a quad core CPU. The company's website claims the CPU has a maximum speed of 1.6GHz (and this is reflected in the elementary OS About screen), but Linux's lscpu utility reports the CPU has an upper speed of 2.1GHz. Another point where the website and Linux differ is battery life. The Litebook website claims the device should have a battery life of approximately 9 hours. During my trial with the unit, my battery life estimates ranged from about 5 to 5.5 hours, depending on what I was doing. The Litebook features 4GB of RAM and a 512GB hard drive. My model also contained a 25GB SSD for the operating system.
I feel it worth mentioning the Litebook is almost perfectly silent. The drive and cooling are very quiet and usually cannot be heard from just a foot or two away. However, the far-travel keys and stiff keyboard mean the silence is broken whenever the user types and the click of the keys can be heard across my modest sized house.
elementary OS
The first time I powered on the Litebook the system brought up a configuration wizard which got me to select my preferred language from a list, connect to a wi-fi network and select my time zone from a map of the world. I was also asked to choose my keyboard's layout from a list and then select a username and password for myself. We are then brought to a graphical login screen where we can sign in as the user we just created or we can sign into a guest account. The guest account has no password and is wiped clean after each use.
The elementary distribution uses Pantheon as the default desktop environment. Pantheon borrows a bit from classic desktop environments and a bit from mobile interfaces. The application menu displays a grid of application icons. Instead of showing us a notification message when software updates are available, a red dot appears next to the software manager in the application menu. Pantheon places its main panel at the top of the screen and there is a quick launch bar at the bottom of the display.
elementary OS 0.4 -- Browsing the software manager
(full image size: 589kB, resolution: 1920x1080 pixels)
The layout of the Pantheon desktop has a certain appeal to it, especially if you like the layout of the Android or iOS interfaces. I think the developers have struck a nice balance, finding a sweet spot between the classic desktop model and mobile layouts. However, I found Pantheon to be buggy. The software centre tended to lock up and components would sometimes crash or become unresponsive. I also found fonts to be unusually small. The Litebook has a 1920-pixel wide screen and the default font size is just 9pt. I found it much more comfortable to raise the font size to about 12pt.
However, I ran into more serious issues than the occasional desktop glitch. Right away I noticed that, despite Network Manager telling me I was connected over wi-fi, I was unable to get on-line. I rebooted the Litebook and, after I had signed into my account again, I had an active connection to the Internet. There were a few software updates waiting for me and I installed these. When I rebooted the laptop to test the new updates, my system could no longer connect over the wireless network. The system was unable to even detect its wireless card.
elementary OS 0.4 -- Wireless card detected but not working prior to software update
(full image size: 933kB, resolution: 1920x1080 pixels)
As it turned out, this is a well known issue on the Litebook forums, updating the kernel kills the wireless interface and, from what I've read, the touchpad may cease to work too. There are workarounds on the forums. These basically involve downloading Debian packages (one for the touchpad and one for the wireless card) to another computer and transferring them to the Litebook and installing them. The Litebook is one of the few laptops I have encountered in the past decade with a wireless card incompatible with the mainline Linux kernel and I am puzzled what led the Alpha team to go with a Realtek card when there are plenty of others which work well with Linux.
elementary OS 0.4 -- After software update, wireless card no longer detected
(full image size: 1.4MB, resolution: 1920x1080 pixels)
Suspend and resume work with elementary OS, as do the web cam, audio and USB ports. The Pantheon desktop is responsive and the Litebook boots quickly. I was pleased to note the function keys for adjusting screen brightness, audio volume and enabling sleep mode all worked in elementary OS. The wireless network issue was my only hardware concern while running elementary.
Earlier I mentioned the Litebook has two hard drives, one 25GB SSD card and a spinning disk which is about 512GB. What I found odd about the way elementary is set up is the operating system, swap and /home directory are all placed on the SSD. This means, by default, our user has access to less than 18GB of storage space (25GB - 4GB of swap - 3GB for the OS). The spinning 512GB disk has an NTFS partition that is unused. We can format the second drive and move our home directory to this second disk, but it seems odd the larger disk was not used at all in the default configuration.
Alternative distributions
In my mind, one of the more important issues when purchasing a Linux laptop is knowing whether the device will work with other distributions. Does the unit only work with its default distribution due to some secret sauce, or can I install any distribution I want?
The Litebook mostly falls into the former camp. I tried installing Ubuntu 16.04.2 (the distribution the default version of elementary OS is based on) as well as the slightly more conservative Linux Mint Debian Edition 2. The results were virtually identical. Both LMDE and Ubuntu could boot and their interfaces were responsive. Audio worked and both distributions were stable. However, neither Ubuntu nor LMDE could work with the Litebook's touchpad or wireless card without the extra drivers I mentioned before being installed. This meant to install either distribution, I needed a spare USB thumb drive containing the drivers and an external USB mouse. I'd use the mouse for the initial installation and then add the necessary drivers so I could unplug the mouse and connect to the Internet over my wireless network.
Another problem I faced was when I tried to install these alternative distributions I found out the GPT partition table on the SSD drive was corrupted. In addition, the disk reported one sector size, while the Linux kernel reported another. This meant partitioning tools like GParted regularly showed me errors and refused to cleanly write new GPT partitions. To install an alternative operating system, I had to wipe the SSD and replace its GPT partition table.
Under the alternative distributions, suspend would work, but resume did not. In other words putting the machine to sleep was the same as a hard reset. The function keys for working with screen brightness and volume did not work. LMDE did not play well with the Litebook's video card which caused the Cinnamon desktop to crash each time I logged in.
In short, getting alternative operating systems to run on the Litebook is an uphill battle and requires installing third-party drivers. It may also require wiping and reformatting the disk. Even then, additional tweaking is required to get suspend/resume working properly.
Conclusions
The main reason I divided my experience into four parts is I have some good things to say about the Litebook, but I also ran into several frustrations from the time I placed the order to the time I got my device to run an alternative distribution. And some of these frustrations were just poor luck. The Alpha team cannot help how long it takes packages to cross the border or which ones will be damaged during shipment. What is important is how customer support dealt with the issues, which was to apologize and courier a replacement unit to me. Likewise, the Alpha team is not responsible if I want to try installing alternative distributions on my equipment. While it would have been nice had they shipped with components which worked better across distributions, I cannot blame them for not supporting whatever software I decide to throw at the Litebook.
elementary OS 0.4 -- The Pantheon settings panel
(full image size: 1.5MB, resolution: 1920x1080 pixels)
For the most part I want to focus on the Litebook's hardware and how it works with elementary OS. On the positive side of things the Litebook has a decent battery life (around 5.5 hours when I'm writing and browsing the web, nearly 5 when listening to music). The machine is silent and has a suitable selection of ports and equipment (such as a web cam). Apart from the kernel upgrade disabling my wireless card, elementary OS works well with the Litebook's hardware. The wireless issue was annoying and I hope future Litebooks ship with a workaround in place to ensure wireless networking survives a software upgrade.
On the whole I'm not a fan of the keyboard. This is a personal preference issue rather than a technical one. I don't mind a little extra travel in the keys, but I find them a bit stiff and noisy compared to my other devices.
I like that the Litebook has two drives. Having a fast SSD for quicker boot times and application launching feels great. The Litebook loads programs much faster than my HP laptop with its spinning disk. However, the default set up does not use the Litebook's larger 512GB spinning disk at all. This seems like strange decision and I hope the Litebook team uses this second disk for the /home partition in future releases.
On the whole, the Litebook is inexpensive, quiet and (with some caveats) works well with elementary OS. Though I do feel this laptop is specifically an elementary OS laptop, rather than a general purpose Linux laptop, based on my experience thus far. This is a pretty good devices for people who want a low-spec, low-cost laptop that runs elementary. However, I would not recommend it for distro hoppers.
|
Released Last Week |
Black Lab Linux 11
Black Lab Linux is a commercial distribution based on Ubuntu. The Black Lab team has announced the availability of Black Lab Enterprise Linux 11. The new release features editions with the GNOME or Xfce desktop environments, version 4.8 of the Linux kernel, Skype and support for Flatpak packages. "This is a milestone release for PC/OpenSystems LLC. Black Lab Enterprise Linux 11 balances cutting-edge performance with the most stable GNOME desktop experience available. There are four versions tailored to the Enterprise, Education(al) sector and Studio professional. IoT (Internet Of Things) is a core OS experience built around the Xfce DE for embedded, single board systems and low-resource systems provided by Intel." Further information, support options and download links for the four editions of Black Lab Linux can be found in the company's 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. Thanks to Linux Tracker we are able to share the following torrent statistics.
Torrent Corner statistics:
- Total torrents seeded: 406
- Total data uploaded: 64.4TB
|
Upcoming Releases and Announcements |
Summary of expected upcoming releases
|
Opinion Poll |
Future computer purchases with Linux pre-installed
This week we talked about the Alpha Litebook one of the many available options for people who wish to purchase a computer with Linux pre-installed. In this poll we would like to find out how many of our readers plan to purchase their next computer with a Linux distribution pre-installed on the hardware.
You can see the results of our previous poll on disk fragmentation last week's edition. All previous poll results can be found in our poll archives.
|
Future computer purchases with Linux pre-installed
My next computer will have Linux pre-installed: | 544 (27%) |
My next computer will not have Linux pre-installed: | 782 (39%) |
Unsure: | 655 (33%) |
|
|
DistroWatch.com News |
Small change to search
At the top of each DistroWatch page, in the left-hand corner, is a search box labelled with the text "Type Distribution Name". This search box can be used to find open source operating systems listed in our database in on our Waiting List. This past week the search functionality was extended to also return a list of packages we track matching the typed search.
As an example, if I type a search for Kodi then I will get back two hits from our Waiting List (Kodibuntu and KODI-ICE) as well as the Kodi package. We hope this will assist our readers in finding the software they want, whether it is an individual package or a full distribution. Searches for distributions which include a specific package can be performed on our Search page.
* * * * *
DistroWatch database summary
* * * * *
This concludes this week's issue of DistroWatch Weekly. The next instalment will be published on Monday, 22 May 2017. 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: 2, value: US$25.84) |
|
|
|
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 |
ROCK Linux
ROCK was a distribution build kit, or in other words, a software development toolkit for building OS solutions. You can configure your personal build of ROCK and easily build your own distribution directly from source code. Most of the ROCK Linux development was done on ix86 hardware, But ROCK Linux also supports the Alpha AXP, PowerPC, Sparc32/Sparc64 and MIPS architectures.
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.
|
|