25 lines
381 B
Bash
Executable File
25 lines
381 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##
|
|
## This script installs stuff
|
|
## to set up a linux server
|
|
## suitable for newbies.
|
|
##
|
|
## This linux server will be hosted under
|
|
## linux.softwareshinobi.digital
|
|
##
|
|
## Before you go, check read around my blog!
|
|
##
|
|
## https://www.softwareshinobi.digital
|
|
##
|
|
|
|
|
|
## Install more software
|
|
|
|
apt-get install -y wget net-tools curl nslookup
|
|
|
|
|
|
##
|
|
|
|
echo "fin."
|