Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.103
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python34 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
2to3-3.4
108
B
-rwxr-xr-x
2024-04-17 20:39
easy_install-3.4
246
B
-rwxr-xr-x
2023-11-14 00:51
egg2wheel
316
B
-rwxr-xr-x
2019-10-18 23:34
idle3
106
B
-rwxr-xr-x
2024-04-17 20:39
idle3.4
106
B
-rwxr-xr-x
2024-04-17 20:39
lswsgi
110.92
KB
-rwxr-xr-x
2021-02-24 18:59
pip
218
B
-rwxr-xr-x
2023-11-14 00:50
pip3
218
B
-rwxr-xr-x
2023-11-14 00:50
pip3.4
218
B
-rwxr-xr-x
2023-11-14 00:50
pydoc3
91
B
-rwxr-xr-x
2024-04-17 20:39
pydoc3.4
91
B
-rwxr-xr-x
2024-04-17 20:39
python3
11.77
KB
-rwxr-xr-x
2024-04-17 20:40
python3-2to3
108
B
-rwxr-xr-x
2024-04-17 20:39
python3-config
173
B
-rwxr-xr-x
2024-04-17 20:40
python3-debug
11.76
KB
-rwxr-xr-x
2024-04-17 20:40
python3.4
11.77
KB
-rwxr-xr-x
2024-04-17 20:40
python3.4-config
173
B
-rwxr-xr-x
2024-04-17 20:40
python3.4dm
11.76
KB
-rwxr-xr-x
2024-04-17 20:40
python3.4dm-config
3.71
KB
-rwxr-xr-x
2024-04-17 20:36
python3.4m
11.77
KB
-rwxr-xr-x
2024-04-17 20:40
python3.4m-config
173
B
-rwxr-xr-x
2024-04-17 20:40
python3.4m-x86_64-config
3.72
KB
-rwxr-xr-x
2024-04-17 20:38
pyvenv
243
B
-rwxr-xr-x
2024-04-17 20:39
pyvenv-3.4
243
B
-rwxr-xr-x
2024-04-17 20:39
wheel
308
B
-rwxr-xr-x
2019-10-18 23:34
wininst2wheel
324
B
-rwxr-xr-x
2019-10-18 23:34
xmlwf
120.02
KB
-rwxr-xr-x
2020-05-26 07:27
Save
Rename
#!/bin/sh # Keep this script in sync with python-config.in exit_with_usage () { echo "Usage: $0 --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--abiflags|--configdir" exit $1 } if [ "$1" = "" ] ; then exit_with_usage 1 fi # Returns the actual prefix where this script was installed to. installed_prefix () { RESULT=$(dirname $(cd $(dirname "$1") && pwd -P)) if which readlink >/dev/null 2>&1 ; then if readlink -f "$RESULT" >/dev/null 2>&1; then RESULT=$(readlink -f "$RESULT") fi fi echo $RESULT } prefix_build="/opt/alt/python34" prefix_real=$(installed_prefix "$0") # Use sed to fix paths from their built-to locations to their installed-to # locations. prefix=$(echo "$prefix_build" | sed "s#$prefix_build#$prefix_real#") exec_prefix_build="/opt/alt/python34" exec_prefix=$(echo "$exec_prefix_build" | sed "s#$exec_prefix_build#$prefix_real#") includedir=$(echo "/opt/alt/python34/include" | sed "s#$prefix_build#$prefix_real#") libdir=$(echo "/opt/alt/python34/lib64" | sed "s#$prefix_build#$prefix_real#") CFLAGS=$(echo "-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -I/usr/include/tirpc" | sed "s#$prefix_build#$prefix_real#") VERSION="3.4" LIBM="-lm" LIBC="" SYSLIBS="$LIBM $LIBC" ABIFLAGS="dm" LIBS="-lpython${VERSION}${ABIFLAGS} -lpthread -ldl -lutil $SYSLIBS" BASECFLAGS=" -Wno-unused-result" LDLIBRARY="libpython${LDVERSION}.so" LINKFORSHARED="-Xlinker -export-dynamic" OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv" PY_ENABLE_SHARED="1" LDVERSION="${VERSION}${ABIFLAGS}" LIBDEST=${prefix}/lib/python${VERSION} LIBPL=$(echo "${prefix}/lib/python3.4/config-${VERSION}${ABIFLAGS}" | sed "s#$prefix_build#$prefix_real#") SO=".cpython-34dm.so" PYTHONFRAMEWORK="" INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" # Scan for --help or unknown argument. for ARG in $* do case $ARG in --help) exit_with_usage 0 ;; --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--abiflags|--configdir) ;; *) exit_with_usage 1 ;; esac done for ARG in "$@" do case "$ARG" in --prefix) echo "$prefix" ;; --exec-prefix) echo "$exec_prefix" ;; --includes) echo "$INCDIR $PLATINCDIR" ;; --cflags) echo "$INCDIR $PLATINCDIR $BASECFLAGS $CFLAGS $OPT" ;; --libs) echo "$LIBS" ;; --ldflags) LINKFORSHAREDUSED= if [ -z "$PYTHONFRAMEWORK" ] ; then LINKFORSHAREDUSED=$LINKFORSHARED fi LIBPLUSED= if [ "$PY_ENABLE_SHARED" = "0" ] ; then LIBPLUSED="-L$LIBPL" fi echo "$LIBPLUSED -L$libdir $LIBS $LINKFORSHAREDUSED" ;; --extension-suffix) echo "$SO" ;; --abiflags) echo "$ABIFLAGS" ;; --configdir) echo "$LIBPL" ;; esac done