Skip to main content

Serial Attached SCSI (SAS) Linux utilities

Project description

sasutils is a set of command-line tools and a Python library to ease the administration of Serial Attached SCSI (SAS) fabrics.

https://img.shields.io/pypi/v/sasutils.svg Supported Python Versions License

CLI tools

  • sas_devices

  • sas_discover

  • ses_report

Example usage (Python)

  • the following example will list all SAS expanders found in sysfs

    from sasutils.sas import SASExpander
    from sasutils.sysfs import sysfs
    
    # sysfs is a helper to walk through sysfs (/sys)
    for node in sysfs.node('class').node('sas_expander'):
    
        # Instantiate SASExpander with the sas_expander sysfs device class
        expander = SASExpander(node.node('device'))
    
        # To get its sysfs name, use:
        print(expander.name)
        # To access its attributes, use:
        print('  %s' % expander.attrs.product_id)
        # To get attributes from the sas_device sysfs class, use:
        print('  %s' % expander.sas_device.attrs.sas_address)
Author:

Stephane Thiell

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sasutils-0.1.4.tar.gz (13.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page