Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
etc /
rc5.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01speech-dispatcher
1.99
KB
-rwxr-xr-x
S01acpid
2.22
KB
-rwxr-xr-x
S01anacron
2.01
KB
-rwxr-xr-x
S01apport
2.85
KB
-rwxr-xr-x
S01avahi-daemon
2.34
KB
-rwxr-xr-x
S01bluetooth
2.9
KB
-rwxr-xr-x
S01console-setup.sh
1.2
KB
-rwxr-xr-x
S01cron
2.99
KB
-rwxr-xr-x
S01cups
2.74
KB
-rwxr-xr-x
S01cups-browsed
1.92
KB
-rwxr-xr-x
S01dbus
3.08
KB
-rwxr-xr-x
S01gdm3
2.96
KB
-rwxr-xr-x
S01grub-common
985
B
-rwxr-xr-x
S01irqbalance
2.58
KB
-rwxr-xr-x
S01kerneloops
3.06
KB
-rwxr-xr-x
S01named
3.46
KB
-rwxr-xr-x
S01openvpn
8.92
KB
-rwxr-xr-x
S01plymouth
1.35
KB
-rwxr-xr-x
S01pulseaudio-enable-autospawn
469
B
-rwxr-xr-x
S01rsync
4.31
KB
-rwxr-xr-x
S01saned
2.17
KB
-rwxr-xr-x
S01spice-vdagent
2.43
KB
-rwxr-xr-x
S01ssh
3.96
KB
-rwxr-xr-x
S01unattended-upgrades
1.36
KB
-rwxr-xr-x
S01uuidd
1.28
KB
-rwxr-xr-x
S01whoopsie
485
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S01spice-vdagent
#!/bin/sh # # spice-vdagent Agent daemon for Spice guests # # chkconfig: 345 70 30 # description: Together with a per X-session agent process the spice agent \ # daemon enhances the spice guest user experience with client \ # mouse mode, guest <-> client copy and paste support and more. ### BEGIN INIT INFO # Provides: spice-vdagent # Required-Start: $local_fs $remote_fs # Required-Stop: $local_fs $remote_fs # Should-Start: dbus # Should-Stop: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Agent daemon for Spice guests # Description: Together with a per X-session agent process the spice agent # daemon enhances the spice guest user experience with client # mouse mode, guest <-> client copy and paste support and more. ### END INIT INFO exec="/usr/sbin/spice-vdagentd" prog="spice-vdagentd" pidfile="/var/run/spice-vdagentd/spice-vdagentd.pid" port="/dev/virtio-ports/com.redhat.spice.0" [ -e /etc/default/$prog ] && . /etc/default/$prog [ ! -d /var/run/spice-vdagentd ] && mkdir -p /var/run/spice-vdagentd . /lib/lsb/init-functions lockfile=/var/lock/$prog start() { [ -x $exec ] || exit 5 [ -c $port ] || exit 0 modprobe uinput > /dev/null 2>&1 # In case the previous running vdagentd crashed rm -f /var/run/spice-vdagentd/spice-vdagent-sock log_daemon_msg "Starting Agent daemon for Spice guests" "spice-vdagent" if start-stop-daemon --start --quiet --oknodo --pidfile $pidfile --exec $exec -- $SPICE_VDAGENTD_EXTRA_ARGS ; then log_end_msg 0 else log_end_msg 1 fi } stop() { log_daemon_msg "Stopping Agent daemon for Spice guests" "spice-vdagent" if start-stop-daemon --stop --quiet --oknodo --pidfile $pidfile; then log_end_msg 0 else log_end_msg 1 fi } restart() { stop start } reload() { restart } force_reload() { restart } status() { status_of_proc -p $pidfile $exec $prog && exit 0 || exit $? } case "$1" in start) $1 ;; stop) $1 ;; restart) $1 ;; reload) $1 ;; force-reload) force_reload ;; status) status ;; condrestart|try-restart) status || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $?
Close