logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Sys::Info::Driver::Linux::OS::Distribution - Linux distribution probe

Author

       Burak Gursoy

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 and redflag.

       It has function to get the version for debian, suse, redhat, gentoo, slackware, redflag and ubuntu(lsb).
       People running unsupported distro's are greatly encouraged to submit patches.

Linux::Distribution Authors

       Some parts of this module were originally taken from "Linux::Distribution" and it's authors are:

           Alberto Re       E<lt>alberto@accidia.netE<gt>
           Judith Lebzelter E<lt>judith@osdl.orgE<gt>
           Alexandr Ciornii E<lt>alexchorny@gmail.com<gt>

Methods

buildbuild_dateeditionkernelmanufacturernamenewraw_nameversion

Name

       Sys::Info::Driver::Linux::OS::Distribution - Linux distribution probe

Synopsis

           use Sys::Info::Driver::Linux::OS::Distribution;
           my $distro = Sys::Info::Driver::Linux::OS::Distribution->new;
           my $name   = $distro->name;
           if( $name ) {
               my $version = $distro->version;
               print "you are running $distro, version $version\n";
           }
           else {
               print "distribution unknown\n";
           }

Todo

       Add the capability of recognize the version of the distribution for all recognized distributions.

Version

       version 0.7908

See Also