Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2025-08-04 20:16:56 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-08-04 20:16:56 +0300
commit6a17285935cad302286d1aed0bb2357b56cf173f (patch)
tree2b7052ba141de9e6d2bfb035735e83ee83b66c8c
parent4b03e9d91976732b3811f898d1504b2a90ea1cc9 (diff)
remove: glibc check
now you can install on all OS like ubuntu 20 or 18
-rw-r--r--install.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/install.sh b/install.sh
index a1398712..d3e6dd1b 100644
--- a/install.sh
+++ b/install.sh
@@ -40,19 +40,6 @@ arch() {
echo "Arch: $(arch)"
-check_glibc_version() {
- glibc_version=$(ldd --version | head -n1 | awk '{print $NF}')
-
- required_version="2.32"
- if [[ "$(printf '%s\n' "$required_version" "$glibc_version" | sort -V | head -n1)" != "$required_version" ]]; then
- echo -e "${red}GLIBC version $glibc_version is too old! Required: 2.32 or higher${plain}"
- echo "Please upgrade to a newer version of your operating system to get a higher GLIBC version."
- exit 1
- fi
- echo "GLIBC version: $glibc_version (meets requirement of 2.32+)"
-}
-check_glibc_version
-
install_base() {
case "${release}" in
ubuntu | debian | armbian)