23 lines
527 B
Bash
23 lines
527 B
Bash
#!/bin/bash
|
|
|
|
#set GPU Power profile to COMPUTE
|
|
/usr/bin/rocm-smi --setprofile 4
|
|
|
|
rm -f /tmp/.X99-lock
|
|
mkdir /run/dbus
|
|
|
|
/usr/bin/dbus-daemon --fork --system
|
|
Xvfb :99 -screen 0 1920x1080x16 &
|
|
sleep 2
|
|
# -----------------------------------
|
|
|
|
/squashfs-root/lm-studio --no-sandbox --threads 12 &
|
|
sleep 30
|
|
~/.lmstudio/bin/lms server start --cors &
|
|
|
|
sleep 20
|
|
cp -f /http-server-config.json /root/.lmstudio/.internal/http-server-config.json
|
|
x11vnc -display :99 -forever -rfbauth /root/.vnc/passwd -quiet -listen 0.0.0.0 -xkb
|
|
|
|
/bin/bash
|