Linux spg20.cloudpowerdns.com 5.14.0-611.35.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 25 03:46:09 EST 2026 x86_64
LiteSpeed
Server IP : 46.4.120.162 & Your IP : 216.73.216.249
Domains :
Cant Read [ /etc/named.conf ]
User : seatingsolutions
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
rpm /
Delete
Unzip
Name
Size
Permission
Date
Action
fileattrs
[ DIR ]
drwxr-xr-x
2026-03-01 09:58
lua
[ DIR ]
drwxr-xr-x
2026-03-01 06:59
macros.d
[ DIR ]
drwxr-xr-x
2026-03-04 18:42
platform
[ DIR ]
drwxr-xr-x
2026-01-20 15:51
redhat
[ DIR ]
drwxr-xr-x
2026-03-01 08:03
alt-nodejs10_native.req
70
B
-rwxr-xr-x
2022-12-15 17:53
alt-nodejs11_native.req
70
B
-rwxr-xr-x
2022-12-13 13:03
alt-nodejs12_native.req
70
B
-rwxr-xr-x
2022-12-14 06:46
alt-nodejs14_native.req
70
B
-rwxr-xr-x
2026-02-02 17:43
alt-nodejs16_native.req
40
B
-rwxr-xr-x
2023-11-03 14:58
alt-nodejs18_native.req
40
B
-rwxr-xr-x
2025-07-10 13:57
alt-nodejs19_native.req
43
B
-rwxr-xr-x
2023-12-06 19:04
alt-nodejs20_native.req
44
B
-rwxr-xr-x
2026-02-03 17:32
alt-nodejs22_native.req
44
B
-rwxr-xr-x
2026-02-03 22:49
alt-nodejs24_native.req
44
B
-rwxr-xr-x
2026-02-04 02:55
alt-nodejs6_native.req
64
B
-rwxr-xr-x
2022-12-14 09:56
alt-nodejs8_native.req
68
B
-rwxr-xr-x
2022-12-15 17:35
alt-nodejs9_native.req
68
B
-rwxr-xr-x
2022-12-14 09:01
brp-boot-efi-times
1.43
KB
-rwxr-xr-x
2025-09-17 07:08
brp-scl-compress
1.77
KB
-rwxr-xr-x
2021-07-27 15:14
brp-scl-python-bytecompile
3.04
KB
-rwxr-xr-x
2021-07-27 15:14
gstreamer1.prov
950
B
-rwxr-xr-x
2025-03-13 09:20
macros
43.75
KB
-rw-r--r--
2025-10-01 07:58
nodejs_native.req
74
B
-rwxr-xr-x
2024-05-20 06:02
rpm.daily
296
B
-rw-r--r--
2020-05-28 10:04
rpm.log
61
B
-rw-r--r--
2020-05-28 10:04
rpm.supp
688
B
-rw-r--r--
2020-05-28 10:04
rpm2cpio.sh
1.56
KB
-rwxr-xr-x
2025-10-01 07:57
rpmdb_dump
41
B
-rwxr-xr-x
2020-05-28 10:04
rpmdb_load
41
B
-rwxr-xr-x
2020-05-28 10:04
rpmpopt-4.16.1.3
11.83
KB
-rw-r--r--
2025-10-01 07:57
rpmrc
17.24
KB
-rw-r--r--
2025-10-01 07:57
scldeps.sh
258
B
-rwxr-xr-x
2021-07-27 15:14
sysusers.generate-pre.sh
2.22
KB
-rwxr-xr-x
2025-12-04 08:30
sysusers.prov
605
B
-rwxr-xr-x
2025-12-04 08:30
tgpg
937
B
-rwxr-xr-x
2020-05-28 10:04
Save
Rename
#!/usr/bin/sh # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi scl_path=${1:-opt/*} cd "$RPM_BUILD_ROOT" # Compress man pages COMPRESS="gzip -9 -n" COMPRESS_EXT=.gz for d in ./usr/man/man* ./usr/man/*/man* ./usr/info \ ./usr/share/man/man* ./usr/share/man/*/man* ./usr/share/info \ ./usr/kerberos/man ./usr/X11R6/man/man* ./usr/lib/perl5/man/man* \ ./usr/share/doc/*/man/man* ./usr/lib/*/man/man* \ ./$scl_path/usr/man/man* ./$scl_path/usr/man/*/man* ./$scl_path/usr/info \ ./$scl_path/usr/share/man/man* ./$scl_path/usr/share/man/*/man* ./$scl_path/usr/share/info \ ./$scl_path/usr/kerberos/man ./$scl_path/usr/X11R6/man/man* ./$scl_path/usr/lib/perl5/man/man* \ ./$scl_path/usr/share/doc/*/man/man* ./$scl_path/usr/lib/*/man/man* do [ -d $d ] || continue for f in `find $d -type f ! -name dir` do [ -f "$f" ] || continue case "$f" in *.gz|*.Z) gunzip -f $f; b=`echo $f | sed -e 's/\.\(gz\|Z\)$//'`;; *.bz2) bunzip2 -f $f; b=`echo $f | sed -e 's/\.bz2$//'`;; *.xz|*.lzma) unxz -f $f; b=`echo $f | sed -e 's/\.\(xz\|lzma\)$//'`;; *) b=$f;; esac $COMPRESS $b </dev/null 2>/dev/null || { inode=`ls -i $b | awk '{ print $1 }'` others=`find $d -type f -inum $inode` if [ -n "$others" ]; then for afile in $others ; do [ "$afile" != "$b" ] && rm -f $afile done $COMPRESS -f $b for afile in $others ; do [ "$afile" != "$b" ] && ln $b$COMPRESS_EXT $afile$COMPRESS_EXT done else $COMPRESS -f $b fi } done for f in `find $d -type l` do l=`ls -l $f | sed -e 's/.* -> //' -e 's/\.\(gz\|Z\|bz2\|xz\|lzma\)$//'` rm -f $f b=`echo $f | sed -e 's/\.\(gz\|Z\|bz2\|xz\|lzma\)$//'` ln -sf $l$COMPRESS_EXT $b$COMPRESS_EXT done done