The module subprocess in Python

Method II : Direct method

Inserting commands directly instead as string. This is something similar to the first method. You can simply put the commands directly into the subprocess.call function. Bookmark the Index page and read more about Python.

See the examples pasted below:

To get Kernel details: Eg 1

subprocess.call(["uname", "-a"])

To display disk usage details: Eg 2

subprocess.call(["df", "-h"])

Method III : Executing as Python script in a file with .py extension

Step 1 : SSH to server.
Step 2 : Create a file with .py extension.
Step 3 : Give x permission.

chmod +x file.py

Step 4 : Create code like:

#!/usr/bin/python
import subprocess
print "Total disk details using df command:"
subprocess.call(["df", "-h"])

Step 5 : Execute it:

python filename.py

You got it!!

Try it and let me know if you have any questions..

Post navigation

Arunlal A

Senior System Developer at Zeta. Linux lover. Traveller. Let's connect! Whether you're a seasoned DevOps pro or just starting your journey, I'm always eager to engage with like-minded individuals. Follow my blog for regular updates, connect on social media, and let's embark on this DevOps adventure together! Happy coding and deploying!

Leave a Reply

Your email address will not be published. Required fields are marked *