Open-source 2-of-3 policy-enforced threshold HSM: auto-signs cold→hot treasury refills under on-device Coldcard policy, no human in the loop. Includes the full operator manual + quick-start, the reference coordinator/signing code, and a signer-host bootstrap. No keys, seeds, or secrets — placeholders only. Live signet demo: https://multisighsm.mineracks.com Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
8 lines
332 B
Bash
8 lines
332 B
Bash
#!/usr/bin/env bash
|
|
exec > /tmp/gui_setup.log 2>&1
|
|
set -x
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
sudo apt-get install -y -qq x11vnc websockify novnc fonts-dejavu-core >/dev/null 2>&1
|
|
which x11vnc websockify; ls /usr/share/novnc/vnc.html 2>/dev/null || ls /usr/share/webapps/novnc 2>/dev/null || echo "novnc path?"
|
|
echo GUI_DEPS_DONE
|