Linux ih01.iridiumhosting.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.226
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
rpm /
Delete
Unzip
Name
Size
Permission
Date
Action
fileattrs
[ DIR ]
drwxr-xr-x
2026-05-06 08:42
lua
[ DIR ]
drwxr-xr-x
2025-10-01 07:58
macros.d
[ DIR ]
drwxr-xr-x
2026-05-06 08:42
platform
[ DIR ]
drwxr-xr-x
2025-10-01 07:58
redhat
[ DIR ]
drwxr-xr-x
2025-12-24 05:04
brp-boot-efi-times
1.43
KB
-rwxr-xr-x
2025-09-17 07:08
gstreamer1.prov
950
B
-rwxr-xr-x
2025-03-13 09:20
macros
43.75
KB
-rw-r--r--
2025-10-01 07:58
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
sysusers.generate-pre.sh
2.22
KB
-rwxr-xr-x
2026-05-05 15:58
sysusers.prov
605
B
-rwxr-xr-x
2026-05-05 15:58
tgpg
937
B
-rwxr-xr-x
2020-05-28 10:04
Save
Rename
#!/usr/bin/sh # # Script to install in: # /usr/lib/rpm/redhat/find-provides.d # # Transform GStreamer auto install info into RPM provides # # Author: Bastien Nocera <hadess@hadess.net> # Based on other provides scripts from RPM # filelist=`grep -e '^.*/gstreamer-1.0/lib.*.so$' | sed "s/['\"]/\\\&/g"` # --- Alpha does not mark 64bit dependencies• case `uname -m` in alpha*) mark64="" ;; *) mark64="()(64bit)" ;; esac solist=$(echo $filelist | \ xargs file -L 2>/dev/null | grep "ELF" | cut -d: -f1 ) function getmark() { lib64=`if file -L $1 2>/dev/null | \ grep "ELF 64-bit" >/dev/null; then echo -n "$mark64"; fi` } function libdir() { buildlibdir=`dirname $1` buildlibdir=`dirname $buildlibdir` } for so in $solist ; do getmark $so libdir $so LD_LIBRARY_PATH=$buildlibdir gst-inspect-1.0 --print-plugin-auto-install-info --rpm $so 2> /dev/null | while read line ; do echo -n "$line"; echo -n "$lib64" echo done done