Linux tr1.turkishost.com 5.14.0-570.52.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 15 06:39:08 EDT 2025 x86_64
LiteSpeed
Server IP : 194.146.50.96 & Your IP : 10.1.24.45
Domains :
Cant Read [ /etc/named.conf ]
User : lakemima
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-04-11 02:38
rules.d
[ DIR ]
drwxr-xr-x
2026-04-11 02:38
ata_id
19.27
KB
-rwxr-xr-x
2026-04-07 22:13
cdrom_id
31.42
KB
-rwxr-xr-x
2026-04-07 22:13
dmi_memory_id
27.36
KB
-rwxr-xr-x
2026-04-07 22:13
fc_wwpn_id
1.11
KB
-rwxr-xr-x
2021-01-04 09:17
fido_id
23.27
KB
-rwxr-xr-x
2026-04-07 22:13
kdump-udev-throttler
1.41
KB
-rwxr-xr-x
2025-09-24 09:15
kpartx_id
2.33
KB
-rwxr-xr-x
2026-01-28 12:19
mtd_probe
15.23
KB
-rwxr-xr-x
2026-04-07 22:13
prefixdevname
1.45
MB
-rwxr-xr-x
2022-03-25 18:11
rename_device
15.17
KB
-rwxr-xr-x
2025-05-14 17:50
scsi_id
35.95
KB
-rwxr-xr-x
2026-04-07 22:13
v4l_id
15.23
KB
-rwxr-xr-x
2026-04-07 22:13
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