I am trying to run this script on Debian;
#!/bin/bash
#
# Debian
#
set -v
apt-get -y update
apt-get install -y ntpdate
apt-get install -y squid3 apache2-utils
cp /etc/squid3/squid.conf /etc/squid3/squid.conf.bak
cat << EOF > /etc/squid3/squid.conf
http_port 3128
http_access allow all
cache deny all
forwarded_for delete
request_header_access Via deny all
EOF
/etc/init.d/squid3 restart
echo "IP ADDRESS"
curl ifconfig.co
#Be sure to shutdown/terminate your VM after you are done!
When I upload it and run the script using;
chmod +x proxy-debian-linux_.sh
sudo ./proxy-debian-linux_.sh
I get the error; cannot access:"Proxy-Debian-Linux" no such file or directory. How is this? Why is this? Thank you so much for you help.