Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 3.133.122.83
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
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
2025-04-24 08:41
rules.d
[ DIR ]
drwxr-xr-x
2025-04-24 08:41
ata_id
40.73
KB
-rwxr-xr-x
2025-04-22 01:58
cdrom_id
32.51
KB
-rwxr-xr-x
2025-04-22 01:58
collect
20.57
KB
-rwxr-xr-x
2025-04-22 01:58
fc_wwpn_id
1.1
KB
-rwxr-xr-x
2022-10-08 11:49
fido_id
16.43
KB
-rwxr-xr-x
2025-04-22 01:58
kdump-udev-throttler
1.41
KB
-rwxr-xr-x
2024-09-24 08:36
kpartx_id
2.33
KB
-rwxr-xr-x
2025-04-22 01:55
libinput-device-group
16.29
KB
-rwxr-xr-x
2022-06-29 09:12
libinput-fuzz-extract
20.66
KB
-rwxr-xr-x
2022-06-29 09:12
libinput-fuzz-to-zero
11.88
KB
-rwxr-xr-x
2022-06-29 09:12
mtd_probe
12.41
KB
-rwxr-xr-x
2025-04-22 01:58
prefixdevname
1.46
MB
-rwxr-xr-x
2019-12-16 19:52
rename_device
16.46
KB
-rwxr-xr-x
2022-11-10 08:01
scsi_id
53.7
KB
-rwxr-xr-x
2025-04-22 01:58
v4l_id
11.99
KB
-rwxr-xr-x
2025-04-22 01:58
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