Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.217.173
Domains :
Cant Read [ /etc/named.conf ]
User : celfico1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
pm-utils /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
pm-action
2.86
KB
-rwxr-xr-x
2014-09-16 18:20
pm-pmu
7.03
KB
-rwxr-xr-x
2014-09-16 18:20
pm-reset-swap
11.1
KB
-rwxr-xr-x
2014-09-16 18:20
service
841
B
-rwxr-xr-x
2014-09-16 18:20
Save
Rename
#!/bin/sh # Handle service invocation on distros that do not have a "service" command. # It handles LSB by default, and other distros that the maintainer is aware of. REL="/etc/slackware-release /etc/slackware-version /etc/arch-release" svc="/etc/init.d/$1" exists() { [ -x "$svc" ]; } start() { "$svc" start; } stop() { "$svc" stop; } status() { "$svc" status; } for rel in $REL; do [ -f "$rel" ] || continue case $rel in *slackware*) svc="/etc/rc.d/rc.$1";; *arch*) svc="/etc/rc.d/$1" status() { [ -e "/var/run/daemons/$1" ] && echo "$1 running"; } ;; esac break done exists || { echo "$1: unrecognized service or non-LSB Linux distro"; exit 1; } case $2 in start|stop|status) "$2" ;; restart) stop; start ;; *) echo "$2: Unrecognized service command" exit 1 ;; esac