Instance Info

Download : https://github.com/samanweb/instance-info.git Code By : Saman Wijseinghe Version : 1.0 License : GNU GENERAL PUBLIC LICENSE Platform : Arch Linux or Linux compatible distributions The “Instance Info” tool is a simple Bash script that provides an interactive way to access key system information on your computer. With a user-friendly menu, it allows you to effortlessly view details about your system’s RAM, hard disk, battery (if available), and processor. Additionally, the tool offers an “About” option to provide a brief introduction to itself, making it a handy utility for quickly accessing essential system data....

November 5, 2023 · 1 min · 104 words · Saman Wijesinghe

Unveiling Your System: Linux Terminal Tips

Display information about your PC’s processor You can use the lscpu command in a Linux terminal to display information about your PC’s processor. Here’s a simple Bash program that runs the lscpu command and displays the processor information: #!/bin/bash echo "Processor Information:" lscpu You can save this script to a file, for example, processor_info.sh, and make it executable using the following command: chmod +x processor_info.sh Then, you can run the script in your terminal:...

November 3, 2023 · 3 min · 613 words · Saman Wijesinghe