Real-time Linux system monitoring dashboard with Go backend and Svelte
Dashboard
|
CPU Usage
|
Process Termination
|
System Info
|
Backend
UI/client
this installation is newer version(if you find any bugs just report into email nfatihulx@gmail.com)
./install.sh
./start.sh
If you do not have Go installed and see "command not found go", install Go using your Linux distribution package manager.
Examples:
sudo dnf install go
sudo pacman -S go
sudo apt update
sudo apt install golang-go
sudo zypper install go
sudo apt install golang-go
After installation, verify the version:
go version
Make sure the output shows Go 1.25 or newer.
"command not found: pnpm"
If you need to install npm with sudo, use the appropriate command for your distro:
Ubuntu/Debian-based systems:
sudo apt update
sudo apt install npm
Fedora/RHEL-based systems:
sudo dnf install npm
Arch Linux:
sudo pacman -S npm
After installing npm, install pnpm globally:
npm install -g pnpm