Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python3-pyserial /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
at_protocol.py
4.82
KB
-rw-r--r--
2016-06-25 20:28
port_publisher.py
19.45
KB
-rwxr-xr-x
2017-05-08 21:16
port_publisher.sh
1.03
KB
-rwxr-xr-x
2015-08-02 22:00
rfc2217_server.py
6
KB
-rwxr-xr-x
2016-12-17 21:15
setup-miniterm-py2exe.py
794
B
-rw-r--r--
2016-02-02 03:04
setup-rfc2217_server-py2exe.py
780
B
-rw-r--r--
2016-01-24 22:51
setup-wxTerminal-py2exe.py
1
KB
-rw-r--r--
2016-02-02 03:05
tcp_serial_redirect.py
6.93
KB
-rwxr-xr-x
2016-12-09 20:00
wxSerialConfigDialog.py
12.91
KB
-rwxr-xr-x
2016-06-21 18:50
wxSerialConfigDialog.wxg
13.29
KB
-rw-r--r--
2015-10-16 01:57
wxTerminal.py
14.37
KB
-rwxr-xr-x
2016-06-21 18:52
wxTerminal.wxg
6.74
KB
-rw-r--r--
2015-10-16 01:57
Save
Rename
#! /bin/sh # daemon starter script # based on skeleton from Debian GNU/Linux # cliechti at gmx.net PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/local/bin/port_publisher.py NAME=port_publisher DESC="serial port avahi device publisher" test -f $DAEMON || exit 0 set -e case "$1" in start) echo -n "Starting $DESC: " $DAEMON --daemon --pidfile /var/run/$NAME.pid echo "$NAME." ;; stop) echo -n "Stopping $DESC: " start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid # \ --exec $DAEMON echo "$NAME." ;; restart|force-reload) echo -n "Restarting $DESC: " start-stop-daemon --stop --quiet --pidfile \ /var/run/$NAME.pid # --exec $DAEMON sleep 1 $DAEMON --daemon --pidfile /var/run/$NAME.pid echo "$NAME." ;; *) N=/etc/init.d/$NAME echo "Usage: $N {start|stop|restart|force-reload}" >&2 exit 1 ;; esac exit 0