| DistroWatch Weekly |
| A d v e r t i s e m e n t |
|
|
| DistroWatch Weekly, Issue 274, 13 October 2008 |
|
Welcome to this year's 41st issue of DistroWatch Weekly! Mandriva Linux, traditionally the first among the major distribution releases, boldly unveiled its latest product late last week. Shipping with KDE 4.1.2, an updated system installer, and a variety of usability enhancements, version 2009 should have been the company's best release ever. It was somewhat spoilt by a long list of known bugs that weren't fixed in time for the release - hopefully these will be corrected through post-install package updates soon, but there are those who'd argue for a postponement of a release in such situations. No similar dilemma is ever likely to face the Debian development team. If it isn't ready, it won't be released - that's the message given to the user community which has been hoping for a timely arrival of "Lenny". And while most other distributions have been quietly fixing the bugs in their own development trees, DistroWatch has compiled another package management cheatsheet - now incorporating two distro-agnostic tools, as well as source-based distributions. Happy reading!
Content:
Listen to the Podcast edition of this week's DistroWatch Weekly in ogg (9.8MB) and mp3 (9.6MB) formats (many thanks to Russ Wenner)
Join us at irc.freenode.net #distrowatch
|
| Feature Story |
Linux package management cheatsheet, part 3
Today DistroWatch presents the third episode of its package management cheatsheet designed for those who enjoy testing different distributions. Originally envisaged as a simple table listing a few popular package management utilities and a handful of common tasks, the table has been expanding as many readers suggested new additions and package management tools. This is the most complete version so far, although it's still doubtful whether it will satisfy every distro hopper out there.
The first table lists package management tasks in the four most popular distribution groups - Debian (including Ubuntu, Linux Mint, KNOPPIX, sidux and other Debian derivatives), openSUSE, Fedora (including Red Hat Enterprise Linux, CentOS, Scientific Linux and other Fedora-based distributions), and Mandriva Linux.
| Task |
apt (deb) Debian, Ubuntu |
zypp (rpm) openSUSE |
yum (rpm) Fedora, CentOS |
urpmi (rpm) Mandriva |
| Managing software |
|
|
|
|
| Install new software from package repository |
apt-get install pkg |
zypper install pkg |
yum install pkg |
urpmi pkg |
| Install new software from package file |
dpkg -i pkg |
zypper install pkg |
yum localinstall pkg |
urpmi pkg |
| Update existing software |
apt-get install pkg |
zypper update -t package pkg |
yum update pkg |
urpmi pkg |
| Remove unwanted software |
apt-get remove pkg |
zypper remove pkg |
yum erase pkg |
urpme pkg |
| Updating the system |
|
|
|
|
| Update package list |
apt-get update |
zypper refresh |
yum check-update |
urpmi.update -a |
| Update system |
apt-get upgrade |
zypper update |
yum update |
urpmi --auto-select |
| Searching for packages |
|
|
|
|
| Search by package name |
apt-cache search pkg |
zypper search pkg |
yum list pkg |
urpmq pkg |
| Search by pattern |
apt-cache search pattern |
zypper search -t pattern pattern |
yum search pattern |
urpmq --fuzzy pkg |
| Search by file name |
apt-file search path |
zypper wp file |
yum provides file |
urpmf file |
| List installed packages |
dpkg -l |
zypper search -is |
rpm -qa |
rpm -qa |
| Configuring access to software repositories |
|
|
|
|
| List repositories |
cat /etc/apt/sources.list |
zypper repos |
yum repolist |
urpmq --list-media |
| Add repository |
(edit /etc/apt/sources.list) |
zypper addrepo path name |
(add repo to /etc/yum.repos.d/) |
urpmi.addmedia name path |
| Remove repository |
(edit /etc/apt/sources.list) |
zypper removerepo name |
(remove repo from /etc/yum.repos.d/) |
urpmi.removemedia media |
|
The second table lists package management utilities found in Slackware Linux and other Slackware-based distributions. As stated by Patrick Volkerding on several occasions, Slackware is unlikely to ever have any advanced (i.e. dependency-resolving) package management tool, so all installation, upgrade and removal tasks continue to be performed with pkgtools, a set of very simple scripts that haven't changed much in years. Nevertheless, Slackware's unsupported extra repository (available also on the installation DVD) does include slackpkg, a third-party package management tool that can be used for a more automated way of installing software on Slackware Linux. It's worth noting that some popular Slackware derivatives, such as VectorLinux, have standardised on slapt-get, another third-party utility imitating the behaviour of Debian's APT.
| Task |
pkgtools Slackware |
slackpkg Slackware |
slapt-get Vector |
| Managing software |
|
|
|
| Install new software from package repository |
-- |
slackpkg install pkg |
slapt-get --install pkg |
| Install new software from package file |
installpkg pkg |
slackpkg install pkg |
slapt-get --install pkg |
| Update existing software |
upgradepkg pkg |
slackpkg install pkg |
slapt-get --install pkg |
| Remove unwanted software |
removepkg pkg |
slackpkg remove pkg |
slapt-get --remove pkg |
| Updating the system |
|
|
|
| Update package list |
-- |
slackpkg update |
slapt-get --update |
| Update system |
-- |
slackpkg upgrade-all |
slapt-get --upgrade |
| Searching for packages |
|
|
|
| Search by package name |
-- |
slackpkg search pkg |
slapt-get --search pkg |
| Search by pattern |
-- |
slackpkg search pattern |
slapt-get --search pattern |
| Search by file name |
-- |
-- |
-- |
| List installed packages |
ls /var/log/packages/ |
ls /var/log/packages/ |
slapt-get --installed |
| Configuring access to software repositories |
|
|
|
| List repositories |
-- |
cat /etc/slackpkg/mirrors |
cat /etc/slapt-get/slapt-getrc |
| Add repository |
-- |
(edit /etc/slackpkg/mirrors) |
(edit /etc/slapt-get/slapt-getrc) |
| Remove repository |
-- |
(edit /etc/slackpkg/mirrors) |
(edit /etc/slapt-get/slapt-getrc) |
|
In the next group we have a few (mostly) independent distributions that have been gaining popularity in recent years. Sabayon Linux, although derived from Gentoo, has introduced its own command-line package management utility called equo. Arch Linux's Pacman has been around for a long time and it's often considered one of the fastest package management utilities around. Conary, developed by rPath and popularised by Foresight Linux, is a completely new approach to package management, created by well-known ex-Red Hat engineers with many years of package management experience. In contrast, PiSi by Pardus Linux is a relatively new utility, but the distribution itself has been growing fast in the last couple of years.
| Task |
equo Sabayon |
pacman Arch |
conary rPath, Foresight |
pisi Pardus |
| Managing software |
|
|
|
|
| Install new software from package repository |
equo install pkg |
pacman -S pkg |
conary update pkg |
pisi install pkg |
| Install new software from package file |
equo install pkg |
pacman -U pkg |
conary update pkg |
pisi install pkg |
| Update existing software |
equo install pkg |
pacman -S pkg |
conary update pkg |
pisi install pkg |
| Remove unwanted software |
equo remove pkg |
pacman -R pkg |
conary erase pkg |
pisi remove pkg |
| Updating the system |
|
|
|
|
| Update package list |
equo update |
pacman -Sy |
|
pisi update-repo |
| Update system |
equo world |
pacman -Su |
conary updateall |
pisi upgrade |
| Searching for packages |
|
|
|
|
| Search by package name |
equo match pkg |
pacman -Ss pkg |
conary query pkg |
pisi search pkg |
| Search by pattern |
equo search pattern |
pacman -Ss pattern |
conary query pkg |
pisi search pkg |
| Search by file name |
equo belongs file |
pacman -Qo file |
conary query --path path |
pisi search-file path |
| List installed packages |
equo list |
pacman -Q |
conary query |
pisi list-installed |
| Configuring access to software repositories |
|
|
|
|
| List repositories |
equo repoinfo |
cat /etc/pacman.conf |
|
pisi list-repo |
| Add repository |
|
(edit /etc/pacman.conf) |
|
pisi add-repo name path |
| Remove repository |
|
(edit /etc/pacman.conf) |
|
pisi remove-repo name |
|
Besides standard package management utilities that most distributions use as part of their systems, there are also some distro-agnostic ones that have been deployed with various levels of success in certain distributions. Smart, originally developed by Conectiva, hasn't been in the news lately, but some users seem to prefer it over Mandriva's urpmi or openSUSE's zypper (it also supports Debian and Slackware-based systems). More recently it is Fedora's PackageKit that has been gaining momentum as a way to manage packages across distributions and architectures. Now included in many other distributions, PackageKit's pkgcon command-line utility is effectively a unified front-end to the native package management tools of Fedora, Ubuntu, openSUSE, Mandriva and other distributions.
| Task |
smart Mandriva, openSUSE |
pkgcon Fedora, Ubuntu, openSUSE, Mandriva |
| Managing software |
|
|
|
| Install new software from package repository |
smart install pkg |
pkcon install pkg |
| Install new software from package file |
smart install pkg |
pkcon install-file pkg |
| Update existing software |
smart install pkg |
pkcon update pkg |
| Remove unwanted software |
smart remove pkg |
pkcon remove pkg |
| Updating the system |
|
|
| Update package list |
smart update |
pkcon refresh |
| Update system |
smart upgrade |
pkcon upgrade |
| Searching for packages |
|
|
| Search by package name |
smart search pkg |
pkcon search name pkg |
| Search by pattern |
smart search pattern |
pkcon search details pattern |
| Search by file name |
smart query file |
pkcon what-provides file |
| List installed packages |
smart query --installed |
-- |
| Configuring access to software repositories |
|
|
| List repositories |
smart channel --show |
pkcon repo-list |
| Add repository |
smart channel --add name path |
|
| Remove repository |
smart channel --remove name |
|
|
Finally, a table for source-based distributions. Gentoo's Portage is well-documented and widely used, but other distributions that are designed to be built from scratch don't often feature in the Linux media, so their package management systems are not particularly well-known. Sorcerer, which existed even before Gentoo Linux was conceived, uses Bash scripts to "cast spells" or download, install and compile packages. Sorcerer was later forked into Lunar Linux and Source Mage GNU/Linux, both of which are included in the table below. Unfortunately, Sorcerer doesn't offer much in terms of online documentation so it has been omitted for now.
| Task |
portage Gentoo |
lunar Lunar |
sorcery Source Mage |
| Managing software |
|
|
|
| Install new software from package repository |
emerge pkg |
lin pkg |
cast pkg |
| Install new software from package file |
|
|
|
| Update existing software |
emerge pkg |
lin pkg |
cast pkg |
| Remove unwanted software |
emerge -aC pkg |
lrm pkg |
dispel pkg |
| Updating the system |
|
|
|
| Update package list |
emerge --sync |
lin moonbase |
scribe update |
| Update system |
emerge -NuDa world |
lunar update |
sorcery upgrade |
| Searching for packages |
|
|
|
| Search by package name |
emerge --search pkg |
lvu search pkg |
gaze search -name pkg |
| Search by pattern |
emerge --search pattern |
lvu search pattern |
gaze search pattern |
| Search by file name |
|
|
gaze from file |
| List installed packages |
qlist -I |
lvu installed |
gaze installed |
| Configuring access to software repositories |
|
|
|
| List repositories |
layman -L |
-- |
scribe index |
| Add repository |
layman -a repo |
-- |
scribe add repo |
| Remove repository |
layman -d repo |
-- |
scribe remove repo |
|
As always, we welcome your comments and corrections.
|
| Miscellaneous News |
Mandriva's long errata list, Lenny release delays
The first major distribution release of the season, Mandriva Linux 2009, is out. Apart from a couple of first-look reviews, we haven't seen any comprehensive product evaluations so far, but the initial reaction seems mixed. Although the release came out on time and included a plethora of interesting improvements, some readers have questioned the logic behind declaring a distribution stable while the list of known issues is as long as the one for Mandriva 2009. But as explained by Mandriva's community manager Adam Williamson, most of the issues can be fixed with post-release updates with the same effectiveness as holding back the release and fixing them in the ISO images. In any case, the deed is done, and Mandriva Linux 2009 is now available from dozens of FTP servers around the world. If you are among the more adventurous users and don't mind a bit of post-installation work, do take it for a spin, otherwise you might consider waiting for a couple of weeks until the most pressing issues are corrected.

Mandriva Linux 2009 "Free" edition comes as a classic installation DVD with a choice of desktop environments. (full image size: 392kB, screen resolution: 1280x1024 pixels)
* * * * *
For a while it looked as if "Lenny", the upcoming release of Debian GNU/Linux, might arrive as originally planned - in September 2008. But as the month "M" past by without any update from the release team, it has become clear that the project's much awaited version 5.0 has not achieved the required levels of stability and reduction in the number of bugs to be released to the general public. However, for those readers who are new to Linux, it's worth reminding that Debian does not have a fixed release schedule and all of its stable version have followed the "released when ready" policy. Of course, the next question is: when will it be ready? Unfortunately, the answer is unlikely to please those who expect a timely release as the removal of the remaining release-critical bugs might still take months rather than weeks - according to some estimates. So is there any way to speed up the release? Yes, says Alexander Reichle-Schmehl. Anybody, even those without any programming skills, can help with making the release possible.
|
| Released Last Week |
Puppy Linux 4.1
Barry Kauler has announced the release of Puppy Linux 4.1: "Version 4.1 continues the hectic pace of development, with ground-breaking new applications and under-the-hood architectural improvements over 4.00. Ground-breaking applications include our new Psip VOIP and PPLOG personal blog. Under-the-hood includes faster boot times, much better hardware detection, and new 'pup_event' architecture (including desktop drive icons). Here is a summary of milestones: 2.6.25.16, 2.6.21.7 kernels; more drivers; SCSI kernels; LZMA-enabled kernel; improved PCMCIA support; hardware detection; new pup_event system; faster boot; Psip VoIP; PPLOG blog; Pmusic audio player; Ayttm chat client; virus checker; network wizard; huge number of updated applications...." Read the comprehensive release notes for further details.

Puppy Linux 4.1 - introducing a variety of new lightweight applications (full image size: 1,189kB, screen resolution: 1280x1024 pixels)
Bluewhite64 Linux 12.1R1 "LiveDVD"
Attila Crăciun has announced the release of Bluewhite64 Linux 12.1R1 "LiveDVD", a Slackware-based live DVD for 64-bit processors: "New revised version of Bluewhite64 Linux 12.1R1 'KDE3 LiveDVD' is available. Also, we are introducing a Bluewhite64 Linux 12.1R1 'KDE4 LiveDVD'. The 'KDE3 LiveDVD' has received important security and stability updates. These updates include new versions of the KDE, X.Org, Pidgin, ALICE, OpenSSH and OpenSSL, Mozilla Firefox, Thunderbird and SeaMonkey, BIND, Amarok and many more. New feature, BW64installer, which is a GUI installation program for installing Bluewhite64 Linux Live to a hard drive, has been added. Bluewhite64 Linux 12.1R1 'KDE4 LiveDVD' contains KDE 4.1.2 with dependencies and some extra KDE 4 packages created by the Bluewhite64 community." Here is the full release announcement.
ALT Linux 4.1 "Desktop"
Alexey Rusakov has announced the release of ALT Linux 4.1 "Desktop" edition, a general-purpose GNU/Linux distribution intended for use on desktops, laptops and netbooks: "We're happy to announce our new release, ALT Linux 4.1 'Desktop'. Changes since version 4.0: based on the new stable 4.1 repository branch; 2.6.25 kernel with better hardware support; KDE 3.5.10 (GNOME 2.22 and Xfce 4.4.2 can be installed from DVD); Firefox 3; NetworkManager allows managing any network interface without root privileges; a new look of the system management center; updated bootloader and display management modules; Kaffeine as the default player of audio and video files; updated and revised menu; new applications - QtEmu (QEMU with a GUI), VirtualBox." See the detailed release notes for further information.

ALT Linux 4.1 "Desktop" remains faithful to the stable and well-tested KDE 3.5. (full image size: 609kB, screen resolution: 1280x1024 pixels)
EnGarde Secure Linux 3.0.21
Guardian Digital has announced the release of EnGarde Secure Linux 3.0.21, a server distribution featuring a web-based system administration tool: "Guardian Digital is happy to announce the release of EnGarde Secure Community 3.0.21. This release includes many updated packages and bug fixes and some feature enhancements to Guardian Digital WebTool and the SELinux policy. New features include: a totally redesigned Health Center backend which should yield much more reliable and accurate results, you can help us improve this new backend by following the instructions below, immediately following this section; a new package, perl-Convert-ASN1 (0.22); the latest stable versions of MySQL (5.0.67), Asterisk (1.4.21.2), Dovecot (1.1.3), Linux kernel (2.6.26.5), OpenLDAP (2.4.11), OpenSSH (5.1p1), PostgreSQL (8.2.10), Samba (3.2.4)...." Read the rest of the release notes for more details.
Mandriva Linux 2009
Mandriva Linux 2009 has been released: "We have released Mandriva Linux 2009, the new release of our distribution. 2009 is a bold release which brings the new KDE 4.1 as the default desktop, along with a re-designed installer and Mandriva Control Center, and many other new features. Other significant updates include GNOME 2.24, OpenOffice.org 3, Mozilla Firefox 3, and kernel 2.6.27. Key features include new graphical in-line upgrade capability, netbook compatibility, class-leading hardware support, and support for working with mobile devices." Read the release announcement and release notes for more information, but also check out the errata page for a list of known issues and workarounds.
Momonga Linux 5
Masahiro Takahata has announced the release of Momonga Linux 5, a Japanese community distribution (with support for Japanese and English) loosely modelled on Fedora. Some of the main features and changes compared to the project's previous version include: reduced the size of the installation media to one DVD (additional packages can be installed via yum); Linux kernel 2.6.26 with extended hardware support, virtualisation and support for new file systems (btrfs and nilfs, reiser4fs); X.Org 7.4 and Mesa 7.1 with improved graphics card support and Compiz compatibility; replaced SysVInit with Canonical's Upstart for faster booting; switched to the GCC compiler 4.3 series; replaced Sun Java with OpenJDK 1.6; introduced support for virtualisation with OpenVZ and Xen. Read the release announcement and release notes (both links in Japanese) for a detailed introduction to the Momonga project's latest release.

Momonga Linux 5 - a new major release from the former developers of Kondara MNU/Linux (full image size: 392kB, screen resolution: 1280x1024 pixels)
CDlinux 0.6.2
Ben Zhao has announced the release of CDlinux 0.6.2, a minimalist live CD combining the Xfce desktop with a careful selection of lightweight applications: "We are pleased to announce the release of CDlinux 0.6.2. This release features great enhancements over version 0.6.1: smart handling codepage (FAT/NTFS) of hotplugable media; power management support (ACPI/CPUfreq); auto guessing current time zone; multimedia keyboard support; booting from Linux RAID and ATA RAID; improved support for newer hardware (video, WLAN, Linux UVC), and several new GUI configuration tools (more details in the changelog). This release ships with Linux kernel 2.6.26.6, X.Org 7.3, Xfce 4.4.2, and a bundle of carefully selected popular applications." Visit the project's news page to read the full release announcement.
Absolute Linux 12.1.08
Paul Sherman has announced the release of Absolute Linux 12.1.08, a lightweight modification of Slackware Linux with the IceWM window manager. What's new? "OpenOffice.org upgraded to version 3.0.0 on CD2, supports latest MS Office format; rebuilt AbiWord 2.6.4 against updated Enchant, libgnomeprint and libgnomecups, also includes support for MS Word and OpenOffice.org docs; HTMLpage, the Firefox 'View Source' viewer and editor has been updated to 2.0, now uses Python's urllib to grab online pages; finished testing with updated UTF-8 settings; updated XULRunner 1.9.0.3, updated and recompiled Firefox 3.0.3, compiled Thunderbird, which now replaces Sylpheed as the default mail program; Updated to Slackware 'current' with latest HAL, dbus, udev, glibc; updated GIMP to 2.6.0...." Find more details in the changelog.
* * * * *
Development, unannounced and minor bug-fix releases
|
| Upcoming Releases and Announcements |
|
Summary of expected upcoming releases
|
| DistroWatch.com News |
New distributions added to database
- iMagic OS. iMagic OS is a commercial desktop Linux distribution based on Kubuntu. Its major features are ease of use, bleeding-edge desktop, easy installation, and compatibility with Microsoft software.
* * * * *
New distributions added to waiting list
* * * * *
DistroWatch database summary
* * * * *
And this concludes the latest issue of DistroWatch Weekly. The next instalment will be published on Monday, 20 October 2008. Until next week,
Ladislav Bodnar
|
|
|
| Archives |
| • Issue 340 (2010-02-08): Interview with Kris Moore, FreeBSD history, Fedora newbie guide, backups |
| • Issue 339 (2010-02-01): GNOBSD, end of Sun, Ubuntu Yahoo deal, converting ext3 to ext4 |
| • Issue 338 (2010-01-25): Hymera and commercial Linux, Lubuntu and Qimo 4 Kids updates, Linux on Mac hardware |
| • Issue 337 (2010-01-18): First look at Jibbed, Fedora Community Remix, better applications, online CD sales |
| • Issue 336 (2010-01-11): Examining SliTaz, Debian installer changes, restoring GRUB |
| • Issue 335 (2010-01-04): Look at MINIX 3, 2009 PHR statistics, optimising 64-bit distributions |
| • Issue 334 (2009-12-21): SheevaPlug as Debian MythTV server, Canonical management changes, Mandriva "InstantOn", LSB |
| • Issue 333 (2009-12-14): Look at LinuxConsole 1.0.2009, KDE-centric distros, Archiso-live, Katana security suite |
| • Issue 332 (2009-12-07): Look at FreeBSD 8.0, Fedora 12 LXDE, ClearOS for small business, FreeNAS switch, 32-bit vs 64-bit |
| • Issue 331 (2009-11-30): Look at Kubuntu Netbook Remix 9.10, FreeBSD 8.0 features, Mandriva community spins, office suites |
| • Issue 330 (2009-11-23): Look at Fedora 12, Chromium OS source code, updating FreeBSD, Qimo 4 Kids interview |
| • Issue 329 (2009-11-16): Look at openSUSE 11.2, Fedora 12 goes gold, five years of pfSense |
| • Issue 328 (2009-11-09): Look at Mandriva 2010, Ubuntu media coverage, real-time kernels |
| • Issue 327 (2009-11-02): Overview of Ubuntu variants, upgrading openSUSE and Mandriva development builds |
| • Issue 326 (2009-10-26): Review of GNOME SlackBuild, Ubuntu and Mandriva nearing release, Funtoo "fork" |
| • Issue 325 (2009-10-19): Look at iMagic OS 2009.9, Arch Linux Handbook, Linux Mint 8 Update |
| • Issue 324 (2009-10-12): Sabayon Linux 5.0 review, Debian develops kFreeBSD port, Mandriva re-introduces itself |
| • Issue 323 (2009-10-05): Slackware 13.0 review, updating openSUSE with "zypper", Red Hat vs software patents |
| • Issue 322 (2009-09-28): First look at HP Mini 110, netbook news roundup, Slackware package management |
| • Issue 321 (2009-09-21): Security basics - authentication, openSLES, Ubuntu "Lucid Lynx", Linux Mint plans |
| • Issue 320 (2009-09-14): Distro Odyssey part 2 - Arch Linux, Solaris and OpenSolaris updates, Ubuntu artwork |
| • Issue 319 (2009-09-07): Look at xPUD, Lubuntu test images, DesktopBSD 1.7, RHEL 5.4 features |
| • Issue 318 (2009-08-31): Look at Colibri, Slackware 13.0 features, ClarkConnect becomes ClearOS |
| • Issue 317 (2009-08-24): Look at Puppy Linux 4.2.1, openSUSE and KDE, Mandriva and Sabayon updates |
| • Issue 316 (2009-08-17): Status of Intel video drivers, running "Rawhide", Ubuntu Netbook Remix interface update |
| • Issue 315 (2009-08-10): Look at Pardus 2009, KDE 4.3 in distributions, Mandriva "Cooker" and Sabayon 5.0 updates |
| • Issue 314 (2009-08-03): Look at Slax 6.1.1 "Core", open letter to CentOS co-founder, Debian's time-based freezes |
| • Issue 313 (2009-07-27): Distro odyssey, ten years of Gentoo, paper on FreeBSD engineering |
| • Issue 312 (2009-07-20): Installing CentOS 5.3 on a Netbook, Mandriva products, distro and upstream relationship |
| • Issue 311 (2009-07-13): Great Linux distributions that did not survive, Google announces Chrome OS |
| • Issue 310 (2009-07-06): CDLinux 0.9.2 Community Edition, Debian and Ubuntu say Mono is no threat, "Fit and Finish" |
| • Issue 309 (2009-06-29): LinuxTag 2009, kernel 2.6.30 for "Lenny", Slackware user guide |
| • Issue 308 (2009-06-22): Interview with Robert Lange, VectorLinux, One Hundred Paper Cuts |
| • Issue 307 (2009-06-15): Fedora 11 review, custom FreeBSD images, sidux and non-free firmware |
| • Issue 306 (2009-06-08): Look at Absolute Linux, Fedora prepares "Leonidas", Mandriva Community Ideas |
| • Issue 305 (2009-06-01): Look at Debris Linux, running openSUSE "Factory", OpenSolaris 2009.06, Ubuntu User magazine |
| • Issue 304 (2009-05-25): First look at Mandriva 2009.1, Slackware64, Archlive-iso, Mobile Linux round-up |
| • Issue 303 (2009-05-18): Running Slackware "Current", Fedora 12 features, Ubuntu One, Debian "Lenny" with KDE 4 |
| • Issue 302 (2009-05-11): Future of Moblin, running "Cooker", Debian and eglibc, Slackware's new TXZ packages |
| • Issue 301 (2009-05-04): Minimal Xubuntu, Mandriva updates, BSD release galore, Arch Linux magazine |
| • Issue 300 (2009-04-27): Xubuntu 9.04 vs Debian 5.0 Xfce, Jaunty Jackalope, Fedora 10 re-spins |
| • Issue 299 (2009-04-20): Central bug tracker, reverting to older Ubuntu kernel, ShipIt 9.04, Easy Peasy updates |
| • Issue 298 (2009-04-13): First look at PC-BSD 7.1, Novell's Online Build Service, FreeBSD's 20,00 ports, Ubunchu! |
| • Issue 297 (2009-04-06): Review of Parted Magic 4.0, Linux Foundation to control Moblin, GNOME 3.0 |
| • Issue 296 (2009-03-30): First look at Tiny Core Linux 1.2, PCLinuxOS troubles, Fedora tests Nouveau |
| • Issue 295 (2009-03-23): Interview with Robert Shingledecker, Tiny Core Linux, Ubuntu 9.04 beta freeze |
| • Issue 294 (2009-03-16): Installing Linux with LVM, KDE 4 in Slackware current, ext4 and data loss |
| • Issue 293 (2009-03-09): Introduction to LVM, openSUSE and Ubuntu release plans, ULTILEX |
| • Issue 292 (2009-03-02): First look at SimplyMEPIS 8.0, openSUSE system upgrades with Zypper, Red Hat and the desktop |
| • Issue 291 (2009-02-23): Minimalist openSUSE 11.1, Ubuntu "Karmic Koala", VirtualBSD, Linux companies in recession |
| • Issue 290 (2009-02-16): Look at Debian "Lenny" live and netinst CDs, OpenSolaris Bible, Nova |
| • Issue 289 (2009-02-09): First look at Moblin, from Puppy to Woof, Mandriva Assembly, SlackFind.net |
| • Issue 288 (2009-02-02): Interview with Linus Torvalds, KDE 4.2 in Fedora, Easy Peasy and Moblin |
| • Issue 287 (2009-01-26): Linux.conf.au 2009, ext4 in Fedora and Ubuntu, ex-Mandriva developers move to Red Hat |
| • Issue 286 (2009-01-19): Arch Linux in review, Debian on Android, mini distros |
| • Issue 285 (2009-01-12): Interview with Paul Sherman, Absolute Linux, new Debian and openSUSE CD images |
| • Issue 284 (2009-01-05): Linux and distributions through years, 2008 PHR stats, Debian clears Lenny firmware holdup |
| • List of all DWW issues |
|