Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
udev /
Delete
Unzip
Name
Size
Permission
Date
Action
hwdb.d
[ DIR ]
drwxr-xr-x
2026-05-27 07:00
rules.d
[ DIR ]
drwxr-xr-x
2026-05-27 07:02
ata_id
19.6
KB
-rwxr-xr-x
2026-05-20 00:00
cdrom_id
31.75
KB
-rwxr-xr-x
2026-05-20 00:00
dmi_memory_id
23.67
KB
-rwxr-xr-x
2026-05-20 00:00
fc_wwpn_id
1.11
KB
-rwxr-xr-x
2021-01-04 06:17
fido_id
23.59
KB
-rwxr-xr-x
2026-05-20 00:00
iocost
27.85
KB
-rwxr-xr-x
2026-05-20 00:00
iocost.conf
865
B
-rw-r--r--
2024-12-10 19:23
kdump-udev-throttler
1.63
KB
-rwxr-xr-x
2026-02-02 00:00
kpartx_id
2.34
KB
-rwxr-xr-x
2026-02-19 00:00
mtd_probe
15.56
KB
-rwxr-xr-x
2026-05-20 00:00
prefixdevname
1.99
MB
-rwxr-xr-x
2024-10-29 00:00
rename_device
15.48
KB
-rwxr-xr-x
2024-10-29 00:00
scsi_id
36.29
KB
-rwxr-xr-x
2026-05-20 00:00
udev.conf
305
B
-rw-r--r--
2024-12-10 19:23
v4l_id
15.56
KB
-rwxr-xr-x
2026-05-20 00:00
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