Puppy Linux 4.00 is barking up the right tree


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Puppy Linux 4.00 is barking up the right tree
# 1  
Old 06-10-2008
Puppy Linux 4.00 is barking up the right tree

Tue, 10 Jun 2008 18:00:00 GMT
With the recent release of Puppy Linux 4.00, developer Barry Kauler and his team have provided a lightweight but functional Linux operating system. To help reduce size and include more functionality over the previous binary-package-based Puppy 3.01, Puppy 4.00 has been compiled from a Slackware 12-based source. Yet despite its small size -- the ISO file is a meager 87.1MB -- Puppy has an abundance of applications, with more than enough for an average user.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Linux

Puppy Linux

Does anyone have installed Puppy Linux on a formatted hard disk without any partition? I have just gotten the cd iso live but I do not know howto install it permanently. :confused: Someone can help me? Thank you (0 Replies)
Discussion started by: sergio_italy
0 Replies

2. Linux

puppy linux

i used puppylinux(only 95mb) good OS.i have some doubts raised 1.)how a bootable drive is different from a unbootable drive(drive=a harddisk or pendrive or a cd etc..)? 2.)how puppylinux is able to play sounds without audiodriver installation (which is needed in windows)? (2 Replies)
Discussion started by: villanarun
2 Replies
Login or Register to Ask a Question
Linux::Distribution(3pm)				User Contributed Perl Documentation				  Linux::Distribution(3pm)

NAME
Linux::Distribution - Perl extension to detect on which Linux distribution we are running. SYNOPSIS
use Linux::Distribution qw(distribution_name distribution_version); if(my $distro = distribution_name) { my $version = distribution_version(); print "you are running $distro, version $version "; } else { print "distribution unknown "; } Or else do it OO: use Linux::Distribution qw(distribution_name distribution_version); my $linux = Linux::Distribution->new; if(my $distro = $linux->distribution_name()) { my $version = $linux->distribution_version(); print "you are running $distro, version $version "; } else { print "distribution unknown "; } DESCRIPTION
This is a simple module that tries to guess on what linux distribution we are running by looking for release's files in /etc. It now looks for 'lsb-release' first as that should be the most correct and adds ubuntu support. Secondly, it will look for the distro specific files. It currently recognizes slackware, debian, suse, fedora, redhat, turbolinux, yellowdog, knoppix, mandrake, conectiva, immunix, tinysofa, va-linux, trustix, adamantix, yoper, arch-linux, libranet, gentoo, ubuntu, scientific, oracle enterprise linux and redflag. It has function to get the version for debian, suse, fedora, redhat, gentoo, slackware, scientific, oracle enterprise linux, redflag and ubuntu(lsb). People running unsupported distro's are greatly encouraged to submit patches :-) EXPORT None by default. TODO
Add the capability of recognize the version of the distribution for all recognized distributions. AUTHORS
Alexandr Ciornii <alexchorny@gmail.com>, <http://chorny.net> Alberto Re, <alberto@accidia.net> Judith Lebzelter, <judith@osdl.org> COPYRIGHT AND LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2012-03-18 Linux::Distribution(3pm)