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
/
usr /
lib /
udev /
Delete
Unzip
Name
Size
Permission
Date
Action
hwdb.d
[ DIR ]
drwxr-xr-x
2025-08-15 18:20
rules.d
[ DIR ]
drwxr-xr-x
2025-08-15 18:39
ata_id
19.27
KB
-rwxr-xr-x
2025-06-24 13:02
cdrom_id
31.42
KB
-rwxr-xr-x
2025-06-24 13:02
dmi_memory_id
27.36
KB
-rwxr-xr-x
2025-06-24 13:02
fc_wwpn_id
1.11
KB
-rwxr-xr-x
2021-01-04 06:17
fido_id
23.27
KB
-rwxr-xr-x
2025-06-24 13:02
kdump-udev-throttler
1.41
KB
-rwxr-xr-x
2025-08-15 07:54
kpartx_id
2.33
KB
-rwxr-xr-x
2025-06-24 13:12
mtd_probe
15.23
KB
-rwxr-xr-x
2025-06-24 13:02
prefixdevname
1.45
MB
-rwxr-xr-x
2022-03-25 15:11
rename_device
15.17
KB
-rwxr-xr-x
2025-05-14 14:50
scsi_id
35.95
KB
-rwxr-xr-x
2025-06-24 13:02
v4l_id
15.23
KB
-rwxr-xr-x
2025-06-24 13:02
Save
Rename
#!/usr/bin/bash # # fc_wwpn_id # # Generates device node names links based on FC WWPN # Copyright (c) 2016-2021 Hannes Reinecke, SUSE Linux GmbH # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation version 2 of the License. # DEVPATH=$1 SCSIPATH=$(cd -P "/sys$DEVPATH/device" || exit; echo "$PWD") d=$SCSIPATH [ -d "$d/scsi_disk" ] || exit 0 target_lun=${d##*:} while [ -n "$d" ] ; do d=${d%/*} e=${d##*/} case "$e" in rport*) rport=$e rport_dir="/sys/class/fc_remote_ports/$rport" if [ -d "$rport_dir" ] ; then rport_wwpn=$(cat "$rport_dir/port_name") fi ;; host*) host=$e host_dir="/sys/class/fc_host/$host" if [ -d "$host_dir" ] ; then host_wwpn=$(cat "$host_dir/port_name") break; fi esac done if [ -n "$rport_wwpn" ] || [ -n "$host_wwpn" ] ; then echo "FC_TARGET_LUN=$target_lun" fi if [ -n "$rport_wwpn" ] ; then echo "FC_TARGET_WWPN=$rport_wwpn" fi if [ -n "$host_wwpn" ] ; then echo "FC_INITIATOR_WWPN=$host_wwpn" fi