Absolute OS 12.2.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Absolute OS 12.2.0 (Default branch)
# 1  
Old 12-19-2008
Absolute OS 12.2.0 (Default branch)

ImageAbsolute Linux is a lightweight Slackwarederivative that uses an Icewm, pcmanfm, ROX-Filer,ivman, and others to create a lightweight yet easyto use distribution. Installation is text-basedbut simplified, and all packages are installed atonce. It can run on a Pentium II and above,including SMP systems. A minimum 128MB RAM isrecommended. It features ease of browsing anyconnected device in pcmanfm and an auto-popup menufor inserted playable media. "Restricted" codecsare available to those eligible via a root-userinstaller. There is a large range of softwareavailable, including OpenOffice, Mplayer, GIMP,and K3B.License: GNU General Public License (GPL)Changes:
This version is current with the Slack 12.2 release. There are no base installer changes since rc1, but absolute-current in the repository is updated to 3.0.5. Absolute now has a new homepage, an additional repository, and a new forum. FTP on absolutelinux.org also has an /incoming folder to allow user uploads of packages.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
NetApp::Filer::Version(3pm)				User Contributed Perl Documentation			       NetApp::Filer::Version(3pm)

NAME
NetApp::Filer::Version -- OO Class for representing NetApp Filer versions SYNOPSIS
use NetApp::Filer; my $filer = NetApp::Filer->new({ ... }); # The "version" is: NetApp Release 7.2.2: Sat Mar 24 20:38:59 PDT 2007 my $version = $filer->get_version; # $version->isa("NetApp::Filer::Version") print $version->get_release, " "; # prints "7.2.2" print $version->get_date, " "; # prints "Sat Mar 24 20:38:59 PDT 2007" print $version->get_string, " "; print "$version "; # Both print the same thing, the second one through operator overloading, # namely the original, unparsed version string print $version->get_version, " "; # prints "v7.2.2" DESCRIPTION
This class is used to encapsulate the NetApp Filer version string, and provide access to the components of the string as a numeric release, a perl version, and a date string. METHODS
get_release Returns the NetApp numerical release as a string, for example: 7.2.2 get_date Returns the NetApp release date as a string, for example: Sat Mar 24 20:38:59 PDT 2007 get_string Returns the unparsed version string in it's entirety: NetApp Release 7.2.2: Sat Mar 24 20:38:59 PDT 2007 get_version Returns the NetApp release as a perl version object. perl v5.14.2 2008-11-26 NetApp::Filer::Version(3pm)