Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
rpm /
redhat /
Delete
Unzip
Name
Size
Permission
Date
Action
brp-fix-pyc-reproducibility
560
B
-rwxr-xr-x
2025-05-14 08:35
brp-ldconfig
417
B
-rwxr-xr-x
2025-05-14 08:35
brp-llvm-compile-lto-elf
1.88
KB
-rwxr-xr-x
2025-05-14 08:35
brp-mangle-shebangs
4.41
KB
-rwxr-xr-x
2025-05-14 08:35
brp-python-bytecompile
5.64
KB
-rwxr-xr-x
2025-05-14 08:35
brp-strip-lto
558
B
-rwxr-xr-x
2025-05-14 08:35
compileall2.py
21.59
KB
-rw-r--r--
2024-10-01 12:46
config.guess
42.91
KB
-rwxr-xr-x
2025-05-14 08:35
config.sub
35.46
KB
-rwxr-xr-x
2025-05-14 08:35
dist.sh
1.94
KB
-rwxr-xr-x
2025-05-14 08:35
find-provides
1.19
KB
-rwxr-xr-x
2025-05-14 08:35
find-requires
1013
B
-rwxr-xr-x
2025-05-14 08:35
gpgverify
3.54
KB
-rwxr-xr-x
2025-05-14 08:35
kmodtool
9.03
KB
-rwxr-xr-x
2023-09-27 01:14
macros
16.02
KB
-rw-r--r--
2025-05-14 08:35
redhat-annobin-cc1
89
B
-r--r--r--
2025-05-14 08:35
redhat-annobin-plugin-select.sh
6.05
KB
-rwxr-xr-x
2025-05-14 08:35
redhat-annobin-select-annobin-built-plugin
89
B
-r--r--r--
2025-05-14 08:35
redhat-annobin-select-gcc-built-plugin
93
B
-r--r--r--
2025-05-14 08:35
redhat-hardened-cc1
153
B
-r--r--r--
2025-05-14 08:35
redhat-hardened-clang.cfg
6
B
-r--r--r--
2025-05-14 08:35
redhat-hardened-ld
47
B
-r--r--r--
2025-05-14 08:35
rpmrc
5.52
KB
-rw-r--r--
2025-05-14 08:35
rpmsort
2.11
KB
-rwxr-xr-x
2023-09-27 01:14
Save
Rename
#!/usr/bin/bash # dist.sh # Author: Tom "spot" Callaway <tcallawa@redhat.com> # License: GPL # This is a script to output the value for the %{dist} # tag. The dist tag takes the following format: .$type$num # Where $type is one of: el, fc, rh # (for RHEL, Fedora Core, and RHL, respectively) # And $num is the version number of the distribution. # NOTE: We can't detect Rawhide or Fedora Test builds properly. # If we successfully detect the version number, we output the # dist tag. Otherwise, we exit with no output. RELEASEFILE=/etc/redhat-release function check_num { MAINVER=`cut -d "(" -f 1 < $RELEASEFILE | \ sed -e "s/[^0-9.]//g" -e "s/$//g" | cut -d "." -f 1` echo $MAINVER | grep -q '[0-9]' && echo $MAINVER } function check_rhl { grep -q "Red Hat Linux" $RELEASEFILE && ! grep -q "Advanced" $RELEASEFILE && echo $DISTNUM } function check_rhel { egrep -q "(Enterprise|Advanced|CentOS|CloudLinux)" $RELEASEFILE && echo $DISTNUM } function check_fedora { grep -q Fedora $RELEASEFILE && echo $DISTNUM } DISTNUM=`check_num` DISTFC=`check_fedora` DISTRHL=`check_rhl` DISTRHEL=`check_rhel` if [ -n "$DISTNUM" ]; then if [ -n "$DISTFC" ]; then DISTTYPE=fc elif [ -n "$DISTRHEL" ]; then DISTTYPE=el elif [ -n "$DISTRHL" ]; then DISTTYPE=rhl fi fi [ -n "$DISTTYPE" -a -n "$DISTNUM" ] && DISTTAG=".${DISTTYPE}${DISTNUM}" case "$1" in --el) echo -n "$DISTRHEL" ;; --fc) echo -n "$DISTFC" ;; --rhl) echo -n "$DISTRHL" ;; --distnum) echo -n "$DISTNUM" ;; --disttype) echo -n "$DISTTYPE" ;; --help) printf "Usage: $0 [OPTIONS]\n" printf " Default mode is --dist. Possible options:\n" printf " --el\t\tfor RHEL version (if RHEL)\n" printf " --fc\t\tfor Fedora version (if Fedora)\n" printf " --rhl\t\tfor RHL version (if RHL)\n" printf " --dist\t\tfor distribution tag\n" printf " --distnum\tfor distribution number (major)\n" printf " --disttype\tfor distribution type\n" ;; *) echo -n "$DISTTAG" ;; esac