Initial commit with translated description

This commit is contained in:
2026-03-29 13:18:25 +08:00
commit 4ca4dbf396
19 changed files with 803 additions and 0 deletions

16
scripts/vnc_stop.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Stop VNC services
echo "Stopping VNC services..."
pkill -f x11vnc 2>/dev/null
pkill -f websockify 2>/dev/null
sleep 1
if ! pgrep -f x11vnc > /dev/null && ! pgrep -f websockify > /dev/null; then
echo "✓ VNC services stopped"
else
echo "✗ Some processes may still be running"
ps aux | grep -E "(x11vnc|websockify)" | grep -v grep
fi