Open In App

Python | os.minor() method

Improve
Improve
Like Article
Like
Save
Share
Report

OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.

os.minor() method in Python is used to extract the device minor number from the specified raw device number (Usually the value of st_dev or st_rdev attribute of ‘os.stat_result’ object returned by os.stat() method). .

In Unix, everything is file, some are ordinary files while some are special files. Special files can be found under /dev directory. These special files are called device files. Character and block devices are the most common type of device files. These device files are represented as a pair of numbers ( major device number and minor device number) by Linux kernel.
Major device number indicates that which driver is used to access the hardware. Each driver in the system has a unique major number and all the device files whose major device number is same is controlled by the same driver.
While minor device number is used by the driver to distinguish between the various hardware it controls. Minor device number tells the kernel special characteristics of the device to be accessed.

Note: This method is available only on UNIX platforms.

Syntax: os.minor(device)

Parameter:
device: An integer value representing the raw device number

Return Type: This method returns an integer value which represents the device minor number.

Code: Use of os.minor() method to extract the device minor number from a raw device number




# Python program to explain os.minor() method  
  
# importing os module 
import os
  
# Get the raw device number
# of the home directory
device = os.stat("/home").st_dev
  
# Print the raw device number
print("Raw device number:", device)
  
# Extract the device minor number
# from the above raw device number
minor = os.minor(device)
  
# Print the device minor number  
print("Device minor number:", minor)


Output:

Raw device number: 2056
Device minor number: 8

Reference: https://docs.python.org/3/library/os.html#os.minor


Last Updated : 25 Jun, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads