Cloudflare: Difference between revisions
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
deb [arch=$(dpkg --print-architecture)\ | deb [arch=$(dpkg --print-architecture)\ | ||
signed-by=/etc/apt/keyrings/cloudflare.asc]\ | signed-by=/etc/apt/keyrings/cloudflare.asc]\ | ||
https://pkg.cloudflareclient.com/ $ | https://pkg.cloudflareclient.com/ ${DISTRIBUTION} main | ||
SRC | SRC | ||
cat << EXE | sudo bash | |||
apt-get update;echo | |||
apt list -a --upgradable | |||
apt-get install -y cloudflare-warp | |||
EXE | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 19:57, 6 November 2024
Client » Ubuntu
curl -fsSL https://pkg.cloudflareclient.com/pubkey.gpg \
| sudo tee /etc/apt/keyrings/cloudflare.asc >/dev/null
DISTRIBUTION=$(. /etc/os-release && echo "${VERSION_CODENAME}");\
cat << SRC | sudo tee /etc/apt/sources.list.d/cloudflare.list >/dev/null
deb [arch=$(dpkg --print-architecture)\
signed-by=/etc/apt/keyrings/cloudflare.asc]\
https://pkg.cloudflareclient.com/ ${DISTRIBUTION} main
SRC
cat << EXE | sudo bash
apt-get update;echo
apt list -a --upgradable
apt-get install -y cloudflare-warp
EXE
References
| ||