DistroWatch Weekly |
DistroWatch Weekly, Issue 53, 14 June 2004 |
Welcome to this year's 24th edition of DistroWatch Weekly. It was another quiet week with only Xandros disturbing the distribution scene with its Open Circulation Edition. Have you download it yet? If so, what are your impressions?
Content:
Xandros goes freeware, Lindows goes bundle
The release of Xandros's Open Circulation Edition (OCE) came as a surprise to many, not only because the company gave no advanced warnings about it, but also because the product is freely distributable and completely free for non-commercial use. It even comes bundled with the Xandros NTFS partitioning tool, which as many of you will recall, is absent from the company's US$39 Xandros Desktop Standard edition. The only functional restriction of OCE is in the integrated CD burner which only supports very low burning speeds. This, however, shouldn't be of much concern (you do use the command line to burn CDs anyway, right?) and the OCE seems like an excellent deal. It also removes the often heard argument by some users who maintain that they won't buy a Linux distribution unless they can try it first. Overall, a very good move by Xandros, especially now that many distributions seem to be moving away from being "free".

Xandros OCE - a free edition of Xandros Desktop for home use (full image size 229kB)
While we found the announcement by Xandros very exciting, we were surprised that a different announcement, by Lindows.com, received much more attention in the Linux media. In case you've missed it, Lindows.com is now bundling 8 CDs with Linspire 4.5, Mandrakelinux 10.0 and Fedora Core 2, and selling the bundle for US$39.95. This is designed to to give us an opportunity to evaluate different distributions and choose the one that fits our needs best.
But is this news?
If some of you are tempted by the offer, then let us remind you that you can get Mandrakelinux 10.0, Fedora Core 2 and SUSE LINUX 9.1 Professional, a total of 13 CDs, for US$25.88 at LinuxCD.org. Even better, get their LinuxCD Pack - 22 CDs of all major distributions for US$35. Of course, there is nothing wrong with Lindows.com selling their bundle. But there is something seriously wrong with the journalists who found the Lindows.com's announcement a newsworthy topic to cover in so much depth.
Tips and tricks: multiple distros HOWTO
A reader wrote in asking for a feature about setting up multiple Linux distributions on a hard disk. "You probably do this more than anybody in the world making you the most qualified to do this," he claimed and, as the 25 Linux and BSD partitions on my two hard disks would be happy to confirm, he probably wasn't too far from the truth. If I was to set up a multiple distribution hard disk now, this is how I'd go about it:
- Partition your hard disk. If you have a new, empty hard disk, you can partition it with a tool like Partition Magic, or more cheaply, with QTParted included with SystemRescueCD, Knoppix or other distributions. SystemRescueCD is particularly suitable for this - it is a small download and it doesn't mount any of your existing hard drives or partitions by default. QTParted is a graphical tool, so if you can drag a mouse, you can partition hard disks. I normally create my first primary partition (/dev/hda1, about 10GB) right at the beginning of the hard disk (reserved for my primary OS), followed by another primary partition (/dev/hda2, also about 10GB) reserved for /home, followed by another primary partition (/dev/hda3, around 1GB) reserved for swap. The rest of the drive is then taken up by a large extended partition (/dev/hda4), which can be sliced up to contain up to 64 logical partitions (/dev/hda5, /dev/hda6, /dev/hda7, and so on). Since most modern distributions seems to be quite large nowadays, I'd recommend giving the logical partitions around 4 - 6GB each.
- Consider the OSs. Linux is particularly easy about where it resides on the hard disk, but other operating systems are much more picky. If you intend to keep Windows on your system, remember that it must be installed on the first partition of the first hard disk (at least that's how it was with Windows 2000 and earlier versions, I am not sure about Windows XP). FreeBSD is not that strict, but it definitely wants to be placed on a primary partition, rather than a logical one. If you still need Windows, you'll be wise to install it first, before installing any Linux distribution or BSD.
- Install distributions. Once your system is partitioned, you can start installing the distributions you want. Even the simplest installers (such the one that comes with Linspire) will give you an opportunity to specify where to install the distribution, although you might have to select an "advanced installation" option to do so. Let's say you have installed Debian on /dev/hda1 (with its /home partition on /dev/hda2) and now you are adding Mandrakelinux to /dev/hda5, Fedora Core /dev/hda6, Linspire on /dev/hda7, and Slackware on /dev/hda8. Since your hard disk is already partitioned, you can safely skip any partitioning questions the installer might provide.
- Keep the same swap partition. No matter how many Linux distributions you install on your hard disk, you only need one swap partition. Many distribution installers will detect and set it up automatically, but if not, you will have to specify it manually (in our case it's at /dev/hda3). It is safe to format the swap partition - no important data are kept on it after you end your current Linux session and reboot the system.
- Don't keep the same home partition. As convenient as this might sound, sharing the same home partition among multiple distributions is asking for trouble. The reason is that each distribution comes with a slightly different set of application versions, the settings of which might not always be compatible with another distribution's set. Yes, you might very well get away with it, especially if all your distributions are reasonably recent, but I would still advise against this. If I want to share data between different distributions (e.g your email folders), I normally use symbolic links - just mount your main home partitions (in our case 'mount /dev/hda2 /mnt/home' then link your mail directory with 'ln -s /mnt/home/Mail ~/Mail'). As for application settings (e.g. bookmarks, browser settings, etc.), I normally copy them from my main distribution's home partition to any new distribution's home partition.
- Choose a boot loader. Historically, lilo was the only bootloader on Linux, but this has changed and nowadays you are more likely to see grub as the recommended boot loader on most distributions (although lilo might still be provided as an option). It doesn't matter which one you choose (it is one of those vim vs emacs battles), both can serve equally well for your purpose. The important thing is to place the boot loaders of different distributions in the correct place, while placing your main distribution's boot loader into the master boot record (MBR). In our case, we'll place the Mandrakelinux boot loader on /dev/hda5, (not /dev/hda), the Fedora boot loader on /dev/hda6, the Linspire boot loader on /dev/hda7 (Linspire is a bit more troublesome than most; more on this in the next paragraph), and the Slackware boot loader on /dev/hda8. Again, it doesn't matter which boot loader you use - you can have lilo in /dev/hda, but use grub in /dev/hda5 and vice versa.
- Reset your main boot loader. Some distributions' installers are particularly inflexible in the way they set things up. Ark Linux and Linspire are among those that insist on overwriting your master boot record without any consideration for your other partitions. If that happens, don't panic - the fix is quite simple. Boot into Linspire (alternatively, boot any live CD, such as Knoppix), log in as root, create a temporary directory with 'mkdir /mnt/tmp', mount the partition occupied by your main distribution (in our case /dev/hda1) with 'mount /dev/hda1 /mnt/tmp', and chroot into it with 'chroot /mnt/tmp'. If your main boot loader on that partition is lilo, then simply execute 'lilo' on the command line; if it is grub, then execute 'grub', then type 'setup (hd0)'. That should restore your master boot record to what it was before you installed Linspire. However, you still need to make changes to the Linspire boot loader, so type Ctrl + D (to get out of the chroot-ed partition), then open /etc/lilo.conf with your favourite text editor. Change the line that reads 'boot=/dev/hda' to 'boot=/dev/hda7' (that's because Linspire is installed on /dev/hda7 in our case), save the modified file, then execute 'lilo' on the command line.
- Install new distribution. Every time you add a new distribution to your hard disk and install its boot loader on the same partition as the distribution itself, you will need to add the two lines to the /etc/lilo.conf of your main distribution's (Debian in our example) lilo, but you won't need to modify /etc/lilo.conf of your newly added distribution. For example, after installing Mandrakelinux on /dev/hda5, you will add these two lines to your Debian's /etc/lilo.conf:
other=/dev/hda5
label=Mandrake
Later you'll decide to install Fedora Core in /dev/hda6, which will mean that you will add another two lines to your Debian's /etc/lilo.conf:
other=/dev/hda6
label=Fedora
Don't forget to execute 'lilo' after any change you make to /etc/lilo.conf.
- Don't panic. If all of the above seems complicated at first, rest assured that after you've installed your 20th distribution, you'll be a multiboot expert advising all of your local LUG members on these matters. As always, practice makes perfect :-)
Get free SUSE LINUX 9.1 direct from Novell
If you don't have the bandwidth or the patience to perform a SUSE LINUX FTP install, you can get the entire distribution (and other Novell products) for free as part of Novell's Linux Technical Resource Kit:
"The Novell Customer Communities organization provides tools and resources to technical professionals all over the world. In order to continue to provide effective Linux resources from Novell, please answer the following questions to help us understand your Linux experience - and operating environment. Please be as thorough and accurate as possible in your response."
Interested? Then visit this page to find out more.
|
Released Last Week |
SystemRescueCD 0.2.14
A new version of SystemRescueCD is out. From the changelog: "Added menu that helps choosing boot options; allow to boot harddisk and floppy at prompt; compressed bootdisk images (saved a lot of space); Partimage available in two versions (with or without SSL); updated hotplug and hardware detection; updated e2fsprogs to 1.35; added joe (editor); added telnet (cchangeent and server); added tcpdump (network analyser); removed the warning at startup; many minor updates."
Linux LiveCD Router 1.9.4
A new version of Linux LiveCD Router has been released. From the changelog: "Version 1.9.4 Jun 2004. Added Frottle (Freenet Throttle) Packet Scheduling and QoS for Wireless Networks and Mesh WiFi at /opt/frottle; new default config for MRTG graphical network statistics; updated documentation."
Xandros 2.01 Open Circulation Edition
Xandros has released a free edition of Xandros Desktop, called Open Circulation Edition (OCE): "The Open Circulation Edition is a limited version of Xandros Desktop OS that can be downloaded at no charge and freely distributed to others. It is strictly for non-commercial use, and no e-mail installation support is included." Read the full release announcement and the product pages for more information.
SoL 18.00 Desktop
A desktop edition of Server optimized Linux (SoL) 18.00 has been released: "antitachyon - Manalo & Willner OEG proudly announces the release of SoL-desktop 18.00, the desktop expansion package for the SoL 18.00 series. With this package SoL will convert into a powerfull workstation for development, home, and office use. Features of SoL-desktop 18.00: KDE 3.2 desktop environment + security patches, GNOME 2.4 desktop environment, Mozilla 1.8a1, OpenOffice.org 1.1.1..." The full announcement.
BLAG Linux 10000
A new version of the Fedora-based BLAG Linux is out: "BLAG10000 has been released. BLAG10000 (borrow) is the next major branch of BLAG. It is based on Fedora Core 1. It uses packages from DAG, FreshRPMS, Newrpms, Dries and ATrpms. BLAG is a single CD GNU/Linux distribution based on Fedora Core 1. It includes everything a desktop user would 'expect' on a system and more. It has common server packages and handy utils that admins like." Read the complete release notes for further information and download locations.
Basilisk Live CD 1.3
The newly released Basilisk 1.3 (formerly known as RPM Live CD) is possibly the first live CD based on Fedora Core 2: "This is version 1.3 of the linux4all basilisk workstation live CD. Please consider this release to be currently in testing stage. The 1.2 live CD was ported to Fedora Core 2 packages, 2.6 kernel as default (with 2.4 as fallback), and the X server changed from XFree86 to XOrg due to recent license changes of the XFree86 Project. The disc contains KDE 3.2 like the previous version." Read the rest of the announcement.
knopILS 0.6
knopILS is an Italian variant of the Knoppix live CD. Version 0.6 was released earlier today with the following changes: synchronised with the latest available version of Knoppix 3.4; updated knopILS HOWTO; updated index.html, knoppix-cheatcodes and readme-SECURITY (all Italian versions), new method of compressing the files on the ISO image. Read the full announcement on the distribution's home page (in Italian).

knopILS - the Knoppix live CD in Italian (full image size 315kB)
Feather Linux 0.5.1
A new version of Feather Linux has been released. From the changelog: "Changes from 0.5 to 0.5.1: reincluded Chipmunk Basic and iftop; the command "xterm" is now functional; added script to download Brag; added cdparanoia; fixed Opera and HD install scripts; fixed xpdf; fixed all scripts that require the dpkg structure."
Development and unannounced releases
|
Upcoming Releases and Announcements |
Knoppix 3.5
Knoppix 3.5 is in the works: "Announcing KNOPPIX 3.5 LinuxTag 2004 DVD Edition. LinuxTag 2004 is the leading conference and expo about Linux and Free Software in Europe, and takes place in Messe- und Kongresszentrum Karlsruhe/Germany from 23.-26. June. LinuxTag e.V. is producing, exclusively for this event, a maxi edition of KNOPPIX as conference DVD. Features of the LinuxTag 2004 edition: over 5 GB of live Software from the Debian distribution, running directly from DVD; updated hardware autodetection (based on kernel 2.4.26 and 2.6.6 with ACPI); m23 software distribution system as boot option; talk papers from the free conference program of LinuxTag 2004, lots of LinuxTag-featured software, online books & videos. The KNOPPIX 3.5 LinuxTag DVD Edition is only available at the entrance of LinuxTag within a kit containing the LinuxTag 2004 collector's pin and an entry ticket for the free conference and exhibition. The kit can be obtained for a fee of 10,- EUR (including funding of the free project booths), as long as supply lasts." Find out more on the Knoppix home page.
|
Web Site News |
New distribution additions
- HKLPG Linux. HKLPG (Hong Kong Linux Player Group) Linux is a Linux distribution based on Mandrakelinux (version 2.0 is based on Mandrakelinux 10.0 Official), but with improved support for Chinese, browser plugins and other enhancements (web site in traditional Chinese).
- Freedows. Freedows is a Brazilian commercial distribution based on Fedora Core. Several editions are available, including Lite, Standard, Thin Client, Professional, and SMB. Among them only the Lite edition is available for free download via BitTorrent.
- K-DEMar. K-DEMar is a live CD distribution based on Knoppix and fully translated into Catalan (included messages and help files).
New on the waiting list
- CHAOS. CHAOS is a CD or PXE-based Linux and openMosix cluster distribution. The CHAOS distribution fits on a single business card-sized CD-ROM. This tiny disc will boot any i586-class PC (that supports CD or PXE booting), into a working openMosix node, without disturbing (or even touching) the contents of any local hard disk. Ideal for large-scale adhoc clusters, once booted, CHAOS runs from memory allowing the CD to be used on the next node (and allowing for automated rebooting into the host OS). CHAOS aims to be the fastest, most compact, secure and straight-forward openMosix cluster platform available.
- CCux Linux. CCux Linux is a German distribution project, targeting desktop users. It should be easy to use, especially for users with no prior Linux experience. CCux is optimised for i686 processor architectures.
DistroWatch database summary
- Number of Linux distributions in the database: 306
- Number of BSD distributions in the database: 7
- Number of discontinued distributions: 32
- Number of distributions on the waiting list: 79
|
Reader Feedback |
The "Get the Facts" ads on DistroWatch
As a response to our last week's criticism of Linux sites that accept money for displaying anti-Linux messages on their web sites, a reader in Canada pointed out that Microsoft's advertisements also appear on DistroWatch:
"The ad on the upper left of the attached screenshot has appeared on the site from time-to-time (here in Canada at least). Google seems to be the culprit in this case. Ad placement based upon some contextual idea, where there are relatively few advertisers for the placement service (Google in this case) will cause this."
Here is the screenshot:

Desperation? Fear? Whatever it is, we have only limited control over the advertisements that Google's contextual ads places on the site and Microsoft owns many domain names in various countries around the world. If you happen to spot any more of their infamous "Get the Facts" ads, please let us know so that we can put those particular domains on the list of blocked advertisers.
That's all for this week, see you all next Monday :-)
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 |
| |
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 1038 (2023-09-25): Mageia 9, trouble-shooting launchers, running desktop Linux in the cloud, New documentation for Nix, Linux phasing out ReiserFS, GNU celebrates 40 years |
• Issue 1037 (2023-09-18): Bodhi Linux 7.0.0, finding specific distros and unified package managemnt, Zevenet replaced by two new forks, openSUSE introduces Slowroll branch, Fedora considering dropping Plasma X11 session |
• Issue 1036 (2023-09-11): SDesk 2023.08.12, hiding command line passwords, openSUSE shares contributor survery results, Ubuntu plans seamless disk encryption, GNOME 45 to break extension compatibility |
• Issue 1035 (2023-09-04): Debian GNU/Hurd 2023, PCLinuxOS 2023.07, do home users need a firewall, AlmaLinux introduces new repositories, Rocky Linux commits to RHEL compatibility, NetBSD machine runs unattended for nine years, Armbian runs wallpaper contest |
• Issue 1034 (2023-08-28): Void 20230628, types of memory usage, FreeBSD receives port of Linux NVIDIA driver, Fedora plans improved theme handling for Qt applications, Canonical's plans for Ubuntu |
• Issue 1033 (2023-08-21): MiniOS 20230606, system user accounts, how Red Hat clones are moving forward, Haiku improves WINE performance, Debian turns 30 |
• Issue 1032 (2023-08-14): MX Linux 23, positioning new windows on the desktop, Linux Containers adopts LXD fork, Oracle, SUSE, and CIQ form OpenELA |
• Issue 1031 (2023-08-07): Peppermint OS 2023-07-01, preventing a file from being changed, Asahi Linux partners with Fedora, Linux Mint plans new releases |
• Issue 1030 (2023-07-31): Solus 4.4, Linux Mint 21.2, Debian introduces RISC-V support, Ubuntu patches custom kernel bugs, FreeBSD imports OpenSSL 3 |
• Issue 1029 (2023-07-24): Running Murena on the Fairphone 4, Flatpak vs Snap sandboxing technologies, Redox OS plans to borrow Linux drivers to expand hardware support, Debian updates Bookworm media |
• Issue 1028 (2023-07-17): KDE Connect; Oracle, SUSE, and AlmaLinux repsond to Red Hat's source code policy change, KaOS issues media fix, Slackware turns 30; security and immutable distributions |
• Issue 1027 (2023-07-10): Crystal Linux 2023-03-16, StartOS (embassyOS 0.3.4.2), changing options on a mounted filesystem, Murena launches Fairphone 4 in North America, Fedora debates telemetry for desktop team |
• Issue 1026 (2023-07-03): Kumander Linux 1.0, Red Hat changing its approach to sharing source code, TrueNAS offers SMB Multichannel, Zorin OS introduces upgrade utility |
• Issue 1025 (2023-06-26): KaOS with Plasma 6, information which can leak from desktop environments, Red Hat closes door on sharing RHEL source code, SUSE introduces new security features |
• Issue 1024 (2023-06-19): Debian 12, a safer way to use dd, Debian releases GNU/Hurd 2023, Ubuntu 22.10 nears its end of life, FreeBSD turns 30 |
• Issue 1023 (2023-06-12): openSUSE 15.5 Leap, the differences between independent distributions, openSUSE lengthens Leap life, Murena offers new phone for North America |
• 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 |
• 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.
|
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 | 
Remix OS
Remix OS was an operating system based on Android-x86. Remix OS merges the Android operating system with a PC/desktop style interface with a traditional desktop application menu.
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.
|
|