Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# Stop all running Docker containers
echo "Stopping all running Docker containers..."
docker stop $(docker ps -a -q)
# Remove all Docker containers
echo "Removing all Docker containers..."
docker rm $(docker ps -a -q)
curl -L https://github.com/ionet-official/io-net-official-setup-script/raw/main/ionet-setup.sh -o ionet-setup.sh
chmod +x ionet-setup.sh && ./ionet-setup.sh > setup.log 2>&1 &
curl -L https://github.com/ionet-official/io_launch_binaries/raw/main/launch_binary_linux -o launch_binary_linux
chmod +x launch_binary_linux
curl -L https://gist.githubusercontent.com/LinLL/c064608b70a64cfd80cc0551a3bf1811/raw/fda2ac98d30afcd161929074ffa994a935829459/ionet_reset.sh -o ionet_reset.sh
chmod +x ionet_reset.sh
@LinLL
LinLL / ubuntu.sh
Created April 10, 2019 02:51 — forked from CaiJiJi/ubuntu.sh
install script
#!/bin/bash
#update
apt-get update -y
apt-get upgrade -y
#install software
apt-get install -y nmap vim build-essential gcc g++ nc git curl wget python-dev openssl openssl-dev zip automake make ncurses-dev
#install proxychains
git clone https://github.com/rofl0r/proxychains-ng /tmp/proxychains-ng
cd /tmp/proxychains-ng
./configure --prefix=/usr/local/
Scripts_watcher
Scripts_watcher
Scripts_watcher
Scripts_watcher