X7ROOT File Manager
Current Path:
/usr/local/bin
usr
/
local
/
bin
/
📁
..
📄
MegaCli
(2.59 MB)
📄
cachedel
(12.09 KB)
📄
cachestats
(16.43 KB)
📄
check_openmanage
(184.83 KB)
📄
cleanup-maildir
(19.2 KB)
📄
crontab
(1.84 MB)
📄
docroot.py
(4.28 KB)
📄
dstat
(100.09 KB)
📄
du-tree
(7.27 KB)
📄
ea-php54
(4.8 MB)
📄
ea-php55
(4.9 MB)
📄
ea-php56
(4.92 MB)
📄
ea-php70
(5 MB)
📄
ea-php71
(5.27 MB)
📄
ea-php72
(5.55 MB)
📄
ea-php73
(3.92 MB)
📄
ea-php74
(6.09 MB)
📄
ea-php80
(7.62 MB)
📄
ea-php81
(7.72 MB)
📄
ea-php82
(7.78 MB)
📄
ea-php83
(7.8 MB)
📄
ea-php84
(7.86 MB)
📄
ea_convert_php_ini
(39.85 KB)
📄
ea_current_to_profile
(8.4 KB)
📄
ea_install_profile
(7.1 KB)
📄
ea_sync_user_phpini_settings
(6.73 KB)
📄
imap-archiver
(5.5 KB)
📄
imh-apache-exporter
(12.45 MB)
📄
imh-mysqld-exporter
(11.99 MB)
📄
imh-node-exporter
(15.08 MB)
📄
imh-procwatch
(25.38 KB)
📄
imh-scan
(14.33 KB)
📄
instmodsh
(4.1 KB)
📄
json_xs
(6.85 KB)
📄
kreboot
(1.18 KB)
📄
lsphp
(937 B)
📄
nocache
(395 B)
📄
passwd
(3.49 MB)
📄
pear
(935 B)
📄
pecl
(299 B)
📄
perl
(12.44 KB)
📄
php
(933 B)
📄
php-config
(6.13 KB)
📄
postgres_cpanel_integration.pl
(655 B)
📄
prepare-utmp-cagefs
(257 B)
📄
tpage
(8.86 KB)
📄
ttree
(12.24 KB)
📄
validate_postgresql_connection.sh
(355 B)
📄
wp
(6.61 MB)
📄
wp-cli.phar
(6.61 MB)
📄
wp-toolkit
(167 B)
📄
xsubpp
(4.96 KB)
Editing: kreboot
#!/bin/bash ### ### kexec wrapper for faster reboots. ### kernel="" for arg in "$@"; do case "$arg" in "latest" ) kernel="latest" ;; "current" ) kernel="current" ;; --help | -h) echo "kreboot: Immediately sync then reinitialize the current or latest kernel using kexec instead of a hardware reboot" echo "usage: kreboot [current|latest]" echo "The purpose of this tool is to provide the option of faster recovery in reboots unrelated to hardware issues" ;; * ) echo "usage: kreboot [current|latest]" ;; esac done if [[ -z $kernel ]]; then echo "Please select a kernel between \"current\" or \"latest\"." else echo "Loading $kernel kernel" if [[ $kernel == "current" ]]; then set -x kexec -l /boot/vmlinuz-$(uname -r) --initrd=/boot/initramfs-$(uname -r).img --reuse-cmdline && sync && kexec -e elif [[ $kernel == "latest" ]]; then set -x kexec -l $(find /boot/vmlinuz-* | sort -V | tail -1) --initrd=$(find /boot/initramfs-*.img -not -name "*kdump.img" | sort -V | tail -1) --reuse-cmdline && sync && kexec -e fi fi
Upload File
Create Folder