Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
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
2026-02-18 11:42
rules.d
[ DIR ]
drwxr-xr-x
2026-02-18 15:53
ata_id
40.73
KB
-rwxr-xr-x
2026-01-26 15:00
cdrom_id
32.51
KB
-rwxr-xr-x
2026-01-26 15:00
collect
20.57
KB
-rwxr-xr-x
2026-01-26 15:00
fc_wwpn_id
1.1
KB
-rwxr-xr-x
2022-10-08 17:19
fido_id
16.43
KB
-rwxr-xr-x
2026-01-26 15:00
kdump-udev-throttler
1.41
KB
-rwxr-xr-x
2026-02-10 22:54
kpartx_id
2.33
KB
-rwxr-xr-x
2025-04-22 07:25
mtd_probe
12.41
KB
-rwxr-xr-x
2026-01-26 15:00
prefixdevname
1.46
MB
-rwxr-xr-x
2019-12-17 01:22
rename_device
16.48
KB
-rwxr-xr-x
2025-11-10 16:12
scsi_id
53.7
KB
-rwxr-xr-x
2026-01-26 15:00
v4l_id
12
KB
-rwxr-xr-x
2026-01-26 15:00
Save
Rename
#!/bin/bash # # fc_wwpn_id # # Generates device node names links based on FC WWPN # Copyright (c) 2016 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