This commit is contained in:
Luk Lu
2023-01-14 12:33:11 +08:00
parent b234cc5bbe
commit 393552e69d
8 changed files with 68 additions and 3 deletions

30
debian-show-version.sh Normal file
View File

@@ -0,0 +1,30 @@
#!/bin/bash
echo ">>> cat /etc/issue"
cat /etc/issue
echo
echo ">>> cat /etc/debian_version"
cat /etc/debian_version
echo
echo ">>> cat /etc/os-release"
cat /etc/os-release
echo
echo ">>> cat /etc/cpuinfo"
cat /etc/cpuinfo
echo
# echo ">>> lsb-release"
# apt install lsb-release
# lsb-release -a
# echo
echo ">>> hostnamectl"
hostnamectl
echo
echo ">>> uname -a"
uname -a
echo