Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : klinikpe
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
site-packages /
sos /
policies /
Delete
Unzip
Name
Size
Permission
Date
Action
auth
[ DIR ]
drwxr-xr-x
2026-08-05 18:17
__init__.py
45.8
KB
-rw-r--r--
2026-07-06 16:00
__init__.pyc
47.52
KB
-rw-r--r--
2026-07-06 16:00
__init__.pyo
47.52
KB
-rw-r--r--
2026-07-06 16:00
amazon.py
1.11
KB
-rw-r--r--
2026-07-06 16:00
amazon.pyc
1.26
KB
-rw-r--r--
2026-07-06 16:00
amazon.pyo
1.26
KB
-rw-r--r--
2026-07-06 16:00
debian.py
1.77
KB
-rw-r--r--
2026-07-06 16:00
debian.pyc
2.36
KB
-rw-r--r--
2026-07-06 16:00
debian.pyo
2.36
KB
-rw-r--r--
2026-07-06 16:00
ibmkvm.py
2.12
KB
-rw-r--r--
2026-07-06 16:00
ibmkvm.pyc
2.86
KB
-rw-r--r--
2026-07-06 16:00
ibmkvm.pyo
2.86
KB
-rw-r--r--
2026-07-06 16:00
osx.py
303
B
-rw-r--r--
2026-07-06 16:00
osx.pyc
764
B
-rw-r--r--
2026-07-06 16:00
osx.pyo
764
B
-rw-r--r--
2026-07-06 16:00
redhat.py
22.33
KB
-rw-r--r--
2026-07-06 16:00
redhat.pyc
21.96
KB
-rw-r--r--
2026-07-06 16:00
redhat.pyo
21.96
KB
-rw-r--r--
2026-07-06 16:00
suse.py
3.33
KB
-rw-r--r--
2026-07-06 16:00
suse.pyc
4.1
KB
-rw-r--r--
2026-07-06 16:00
suse.pyo
4.1
KB
-rw-r--r--
2026-07-06 16:00
ubuntu.py
2.12
KB
-rw-r--r--
2026-07-06 16:00
ubuntu.pyc
3.02
KB
-rw-r--r--
2026-07-06 16:00
ubuntu.pyo
3.02
KB
-rw-r--r--
2026-07-06 16:00
Save
Rename
# Copyright (C) IBM Corporation, 2015 # # Authors: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com> # # This file is part of the sos project: https://github.com/sosreport/sos # # This copyrighted material is made available to anyone wishing to use, # modify, copy, or redistribute it subject to the terms and conditions of # version 2 of the GNU General Public License. # # See the LICENSE file in the source distribution for further information. from __future__ import print_function from sos.plugins import PowerKVMPlugin, ZKVMPlugin, RedHatPlugin from sos.policies.redhat import RedHatPolicy import os class PowerKVMPolicy(RedHatPolicy): distro = "PowerKVM" vendor = "IBM" vendor_url = "http://www-03.ibm.com/systems/power/software/linux/powerkvm" def __init__(self, sysroot=None): super(PowerKVMPolicy, self).__init__(sysroot=sysroot) self.valid_subclasses = [PowerKVMPlugin, RedHatPlugin] @classmethod def check(cls): """This method checks to see if we are running on PowerKVM. It returns True or False.""" return os.path.isfile('/etc/ibm_powerkvm-release') def dist_version(self): try: with open('/etc/ibm_powerkvm-release', 'r') as fp: version_string = fp.read() return version_string[2][0] except IOError: return False class ZKVMPolicy(RedHatPolicy): distro = "IBM Hypervisor" vendor = "IBM Hypervisor" vendor_url = "http://www.ibm.com/systems/z/linux/IBMHypervisor/support/" def __init__(self, sysroot=None): super(ZKVMPolicy, self).__init__(sysroot=sysroot) self.valid_subclasses = [ZKVMPlugin, RedHatPlugin] @classmethod def check(cls): """This method checks to see if we are running on IBM Z KVM. It returns True or False.""" return os.path.isfile('/etc/base-release') def dist_version(self): try: with open('/etc/base-release', 'r') as fp: version_string = fp.read() return version_string.split(' ', 4)[3][0] except IOError: return False # vim: set ts=4 sw=4