jjproxy

(★ 22)

No description available.

File Explorer

  • README.md
  • squid-centos.conf
  • squid.conf

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

apt-get

View Details ▼

Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.

sudo apt-get update

Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):

sudo apt-get install {{package}}

Install a package, or update it to the latest available version:

sudo apt-get remove {{package}}

Remove a package:

🔍

setenforce

View Details ▼

Toggle SELinux between enforcing and permissive modes.
To enable or disable SELinux, edit `/etc/selinux/config` instead.
See also: `getenforce`, `semanage-permissive`.

setenforce {{1|Enforcing}}

Put SELinux in enforcing mode:

setenforce {{0|Permissive}}

Put SELinux in permissive mode:

🔍

yum

View Details ▼

This command is an alias of `dnf` on modern distros.
For older distros (e.g. CentOS 7), `yum` is a distinct program from `dnf`. Some subcommands and options may be different.

tldr dnf

View documentation for the original command:

// repository documentation