update skill

This commit is contained in:
Кобылкевич Фёдор 2026-03-26 23:28:35 +03:00
parent 7832c30cc0
commit aa7927a316
8 changed files with 7 additions and 325 deletions

View file

@ -13,15 +13,18 @@ fluxbox >/tmp/fluxbox.log 2>&1 &
x11vnc -display :99 -forever -shared -rfbport 5900 -nopw >/tmp/x11vnc.log 2>&1 &
websockify --web=/usr/share/novnc/ 6080 localhost:5900 >/tmp/novnc.log 2>&1 &
socat TCP-LISTEN:9223,fork,bind=0.0.0.0 TCP:127.0.0.1:9222 >/tmp/socat.log 2>&1 &
# Проксирование CDP на все адреса используя socat
# Chromium слушает на ::1:9223 (IPv6 localhost)
socat TCP-LISTEN:9223,reuseaddr,fork TCP6:[::1]:9223 >/tmp/socat.log 2>&1 &
exec chromium \
--no-sandbox \
--disable-dev-shm-usage \
--disable-gpu \
--disable-setuid-sandbox \
--remote-debugging-address=0.0.0.0 \
--remote-debugging-port=9222 \
--remote-debugging-address=127.0.0.1 \
--remote-debugging-port=9223 \
--user-data-dir=/tmp/chromium-profile \
--window-size=1920,1080 \
--no-first-run \