[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
etc
/
alternatives
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 jre
SET
[ DEL ]
📁 jre_11
SET
[ DEL ]
📁 jre_11_openjdk
SET
[ DEL ]
📁 jre_openjdk
SET
[ DEL ]
📄 alt-java
16,392 B
SET
[ EDIT ]
|
[ DEL ]
📄 alt-java.1.gz
25,514 B
SET
[ EDIT ]
|
[ DEL ]
📄 cifs-idmap-plugin
11,760 B
SET
[ EDIT ]
|
[ DEL ]
📄 easy_install-3
246 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifdown
2,123 B
SET
[ EDIT ]
|
[ DEL ]
📄 ifup
5,463 B
SET
[ EDIT ]
|
[ DEL ]
📄 java
15,912 B
SET
[ EDIT ]
|
[ DEL ]
📄 java.1.gz
25,467 B
SET
[ EDIT ]
|
[ DEL ]
📄 jcmd
15,936 B
SET
[ EDIT ]
|
[ DEL ]
📄 jcmd.1.gz
2,481 B
SET
[ EDIT ]
|
[ DEL ]
📄 jjs
15,968 B
SET
[ EDIT ]
|
[ DEL ]
📄 jjs.1.gz
2,395 B
SET
[ EDIT ]
|
[ DEL ]
📄 keytool
15,944 B
SET
[ EDIT ]
|
[ DEL ]
📄 keytool.1.gz
22,183 B
SET
[ EDIT ]
|
[ DEL ]
📄 ld
1,789,080 B
SET
[ EDIT ]
|
[ DEL ]
📄 libnssckbi.so.x86_64
255,224 B
SET
[ EDIT ]
|
[ DEL ]
📄 module.1.gz
15,505 B
SET
[ EDIT ]
|
[ DEL ]
📄 modulecmd
393,980 B
SET
[ EDIT ]
|
[ DEL ]
📄 modulefile.4.gz
10,287 B
SET
[ EDIT ]
|
[ DEL ]
📄 modules.csh
105 B
SET
[ EDIT ]
|
[ DEL ]
📄 modules.sh
448 B
SET
[ EDIT ]
|
[ DEL ]
📄 ncman
6,311 B
SET
[ EDIT ]
|
[ DEL ]
📄 nmap
50,528 B
SET
[ EDIT ]
|
[ DEL ]
📄 pack200
15,944 B
SET
[ EDIT ]
|
[ DEL ]
📄 pack200.1.gz
4,325 B
SET
[ EDIT ]
|
[ DEL ]
📄 pip-3
209 B
SET
[ EDIT ]
|
[ DEL ]
📄 pip3
209 B
SET
[ EDIT ]
|
[ DEL ]
📄 pydoc-3
89 B
SET
[ EDIT ]
|
[ DEL ]
📄 pydoc3
89 B
SET
[ EDIT ]
|
[ DEL ]
📄 python
157 B
SET
[ EDIT ]
|
[ DEL ]
📄 python3
11,872 B
SET
[ EDIT ]
|
[ DEL ]
📄 python3-config
204 B
SET
[ EDIT ]
|
[ DEL ]
📄 python3-man
5,226 B
SET
[ EDIT ]
|
[ DEL ]
📄 pyvenv-3
446 B
SET
[ EDIT ]
|
[ DEL ]
📄 rmid
15,936 B
SET
[ EDIT ]
|
[ DEL ]
📄 rmid.1.gz
4,933 B
SET
[ EDIT ]
|
[ DEL ]
📄 rmiregistry
15,944 B
SET
[ EDIT ]
|
[ DEL ]
📄 rmiregistry.1.gz
1,793 B
SET
[ EDIT ]
|
[ DEL ]
📄 unpack200
238,976 B
SET
[ EDIT ]
|
[ DEL ]
📄 unpack200.1.gz
2,161 B
SET
[ EDIT ]
|
[ DEL ]
📄 unversioned-python-man
603 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ifdown
#!/bin/bash unset WINDOW # defined by screen, conflicts with our usage . /etc/init.d/functions cd /etc/sysconfig/network-scripts . ./network-functions [ -f ../network ] && . ../network CONFIG=$1 [ -z "$CONFIG" ] && { echo $"usage: ifdown <configuration>" >&2 exit 1 } if ! [ -f /etc/sysconfig/disable-deprecation-warnings ] && ! is_true ${DEPRECATION_WARNING_ISSUED}; then net_log $"You are using 'ifdown' script provided by 'network-scripts', which are now deprecated." warning ifdown >&2 net_log $"'network-scripts' will be removed in one of the next major releases of RHEL." warning ifdown >&2 net_log $"It is advised to switch to 'NetworkManager' instead - it provides 'ifup/ifdown' scripts as well." warning ifdown >&2 fi need_config "${CONFIG}" [ -f "$CONFIG" ] || { echo $"usage: ifdown <configuration>" >&2 exit 1 } if [ $UID != 0 ]; then if [ -x /usr/sbin/usernetctl ]; then source_config if /usr/sbin/usernetctl ${CONFIG} report ; then exec /usr/sbin/usernetctl ${CONFIG} down fi fi echo $"Users cannot control this device." >&2 exit 1 fi source_config if [ -n "$IN_HOTPLUG" ] && [ "${HOTPLUG}" = "no" -o "${HOTPLUG}" = "NO" ] then exit 0 fi if [ "$_use_nm" = "true" ]; then if [ -n "$UUID" -a -z "$DEVICE" ]; then DEVICE=$(nmcli -t --fields uuid,device con show --active | awk -F ':' "\$1 == \"$UUID\" { print \$2 }") fi if [ -n "$DEVICE" ] && ! is_nm_device_unmanaged "$DEVICE" ; then if ! LC_ALL=C nmcli -t -f STATE,DEVICE dev status | grep -Eq "^(failed|disconnected|unmanaged|unavailable):$DEVICE$"; then nmcli dev disconnect "$DEVICE" exit $? fi exit 0 fi fi if [ -x /sbin/ifdown-pre-local ]; then /sbin/ifdown-pre-local ${DEVICE} fi OTHERSCRIPT="/etc/sysconfig/network-scripts/ifdown-${DEVICETYPE}" if [ ! -x ${OTHERSCRIPT} ]; then OTHERSCRIPT="/etc/sysconfig/network-scripts/ifdown-${TYPE}" fi if [ ! -x ${OTHERSCRIPT} ]; then OTHERSCRIPT="/etc/sysconfig/network-scripts/ifdown-eth" fi exec ${OTHERSCRIPT} ${CONFIG} $2