Linux localhost 6.1.10-x86_64-linode159 #1 SMP PREEMPT_DYNAMIC Wed Feb 8 14:14:45 EST 2023 x86_64
Apache/2.4.25 (Debian)
Server IP : 45.33.61.127 & Your IP : 216.73.216.187
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
zsh /
vendor-completions /
Delete
Unzip
Name
Size
Permission
Date
Action
_bootctl
1.04
KB
-rw-r--r--
2019-07-21 18:43
_busctl
3
KB
-rw-r--r--
2019-07-21 18:43
_curl
12.6
KB
-rw-r--r--
2020-12-17 19:12
_hostnamectl
2.17
KB
-rw-r--r--
2019-07-21 18:43
_journalctl
5.8
KB
-rw-r--r--
2019-07-21 18:43
_kernel-install
614
B
-rw-r--r--
2019-07-21 18:43
_localectl
3.46
KB
-rw-r--r--
2019-07-21 18:43
_loginctl
5.63
KB
-rw-r--r--
2019-07-21 18:43
_sd_hosts_or_user_at_host
79
B
-rw-r--r--
2019-07-21 18:43
_sd_outputmodes
224
B
-rw-r--r--
2019-07-21 18:43
_sd_unit_files
226
B
-rw-r--r--
2019-07-21 18:43
_systemctl
14.41
KB
-rw-r--r--
2019-07-21 18:43
_systemd
3.71
KB
-rw-r--r--
2019-07-21 18:43
_systemd-analyze
2.34
KB
-rw-r--r--
2019-07-21 18:43
_systemd-delta
527
B
-rw-r--r--
2019-07-21 18:43
_systemd-inhibit
1
KB
-rw-r--r--
2019-07-21 18:43
_systemd-resolve
2.29
KB
-rw-r--r--
2019-07-21 18:43
_systemd-run
3.04
KB
-rw-r--r--
2019-07-21 18:43
_systemd-tmpfiles
699
B
-rw-r--r--
2019-07-21 18:43
_timedatectl
1.96
KB
-rw-r--r--
2019-07-21 18:43
_udevadm
5.82
KB
-rw-r--r--
2019-07-21 18:43
Save
Rename
#compdef systemd-analyze _systemd_analyze_set-log-level() { local -a _levels _levels=(debug info notice warning err crit alert emerg) _describe -t level 'logging level' _levels || compadd "$@" } _systemd_analyze_verify() { _sd_unit_files } _systemd_analyze_command(){ local -a _systemd_analyze_cmds # Descriptions taken from systemd-analyze --help. _systemd_analyze_cmds=( 'time:Print time spent in the kernel before reaching userspace' 'blame:Print list of running units ordered by time to init' 'critical-chain:Print a tree of the time critical chain of units' 'plot:Output SVG graphic showing service initialization' 'dot:Dump dependency graph (in dot(1) format)' 'dump:Dump server status' 'set-log-level:Set systemd log threshold' 'verify:Check unit files for correctness' ) if (( CURRENT == 1 )); then _describe "options" _systemd_analyze_cmds else local curcontext="$curcontext" cmd="${${_systemd_analyze_cmds[(r)$words[1]:*]%%:*}}" if (( $#cmd )); then if (( $+functions[_systemd_analyze_$cmd] )) && (( CURRENT == 2 )); then _systemd_analyze_$cmd else _message "no more options" fi else _message "unknown systemd-analyze command: $words[1]" fi fi } _arguments \ {-h,--help}'[Show help text]' \ '--version[Show package version]' \ '--system[Operate on system systemd instance]' \ '--user[Operate on user systemd instance]' \ '--no-pager[Do not pipe output into a pager]' \ '--man=[Do (not) check for existence of man pages]:boolean:(1 0)' \ '--order[When generating graph for dot, show only order]' \ '--require[When generating graph for dot, show only requirement]' \ '--fuzz=[When printing the tree of the critical chain, print also services, which finished TIMESPAN earlier, than the latest in the branch]:TIMESPAN' \ '--from-pattern=[When generating a dependency graph, filter only origins]:GLOB' \ '--to-pattern=[When generating a dependency graph, filter only destinations]:GLOB' \ {-H+,--host=}'[Operate on remote host]:userathost:_sd_hosts_or_user_at_host' \ {-M+,--machine=}'[Operate on local container]:machine:_sd_machines' \ '*::systemd-analyze commands:_systemd_analyze_command'