mirror of
https://github.com/mii443/sindan-client.git
synced 2025-08-22 16:25:41 +00:00
17 lines
374 B
Bash
Executable File
17 lines
374 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## apt install
|
|
echo "installing required packages..."
|
|
sudo apt update -y
|
|
sudo apt install -y uuid-runtime wireless-tools ndisc6 dnsutils curl traceroute
|
|
|
|
## for nodejs
|
|
echo "installing required packages for nodejs..."
|
|
mkdir -p trace-json
|
|
sudo apt install -y chromium-browser nodejs npm
|
|
|
|
echo "installing required node packages using npm..."
|
|
npm install
|
|
|
|
exit 0
|