When trying to install Cloudflare using the github script bash -c “$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/cloudflared.sh)” It doesn’t show the LXC install wizard, instead it just creates a new blank line.
I can’t be the only one to experience this.
Thanks in advance!
@Dorkasoris Can you run
bash -c "$(wget -LO - https://github.com/tteck/Proxmox/raw/main/ct/cloudflared.sh)"
bash -c
: This command tells the system to run the string that follows as a command in the bash
shell.
$(...)
: Command substitution, which runs the command inside the parentheses and substitutes its output into the outer command.
wget -qLO -
: This is the wget
command with several options:
-q
: Quiet mode, which suppresses the output to the terminal.
-L
: Follow redirects.
-O -
: Write the output to standard output (the terminal).
https://github.com/tteck/Proxmox/raw/main/ct/cloudflared.sh
: The URL to the raw shell script that you want to download and execute.
We will remove the q so we can see the output of the command.
Let me know the output.
I appreciate the help on this! Unfortunately I got a, wget: unable to resolve host address ‘github.com’ error.
I am able to ping google, so I know it has connectivity.
@dragonfire1119 with that output I was able to do some research and figure out that my nameserver wasn’t correct in /etc/resolv.conf
. I recently did a home network reconfiguration and completely forgot to change it. 
I do thank you for your time though!
Awesome, glad you got it working! 
Just changing /etc/resolv.conf
might not actually persist though.