Module: Ronin::Web::UserAgents::OS::Linux Private

Defined in:
lib/ronin/web/user_agents/os/linux.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Defines information about the Linux Operating System (OS).

Constant Summary collapse

DISTROS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Common Linux Distros.

{
  ubuntu: 'Ubuntu',
  fedora: 'Fedora',
  arch:   'Arch',

  nil => nil
}
ARCHES =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Architectures supported by Linux.

{
  x86_64:  'x86_64',
  aarch64: 'aarch64',
  arm64:   'aarch64',
  i686:    'i686',
  x86:     'i686'
}