Last active
December 20, 2025 09:05
-
-
Save Randy420Marsh/cde4c7e37406d3d54b8fb4206c63d445 to your computer and use it in GitHub Desktop.
Get the distro basic info
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| echo "Linux Info:" ;\ | |
| echo "" ;\ | |
| echo "kernel info:" ;\ | |
| uname -a ;\ | |
| echo "" ;\ | |
| echo "Distro info:" ;\ | |
| lsb_release -a ;\ | |
| echo "" ;\ | |
| echo "Gnome version:" ;\ | |
| gnome-shell --version ;\ | |
| echo "" ;\ | |
| hostnamectl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment