8b0172d793
Prepares the move to the NVIDIA-GPU Ubuntu VM where M0/M2 run (macOS can't drive the Wayland/GPU stack). The repo carries the context, since Claude Code sessions are machine-local and don't transfer. - CLAUDE.md: project state + design invariants + don't-regress security notes. Auto-loads every session, so a fresh session on the VM continues from here. - scripts/bootstrap-ubuntu.sh: verifies the (already-installed) NVIDIA/NVENC stack, installs rustup + PipeWire/portal/wlroots/Sway + DRM/EGL/GBM/VA dev deps; GATES the FFmpeg -dev headers so apt can't clobber a custom NVENC build; checks nvidia-drm.modeset. - scripts/headless/: headless-Sway + xdg-desktop-portal-wlr config templates, the NVIDIA-wlroots env workarounds, run-headless-sway.sh, and a wf-recorder->hevc_nvenc capture smoke test (proves capture->NVENC with no Rust). - docs/linux-setup.md: M0 walkthrough + verified gotchas (modeset, headless backend, vGPU NVENC licensing, dmabuf->NVENC CPU-copy fallback, FFmpeg-dev gate, crate versions). Ubuntu 24.04 package names/versions verified against the live archive; scripts pass shellcheck and `bash -n`. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
21 lines
872 B
Bash
Executable File
21 lines
872 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Launch headless Sway on the NVIDIA VM with a private D-Bus session so the ScreenCast
|
|
# portal activates. Prints the WAYLAND_DISPLAY (default wayland-1) to use from other shells.
|
|
#
|
|
# Prereq: scripts/bootstrap-ubuntu.sh has run and nvidia-drm.modeset=Y (reboot if not).
|
|
set -euo pipefail
|
|
|
|
HERE="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
# shellcheck disable=SC1091
|
|
source "$HERE/env.sh"
|
|
mkdir -p "$XDG_RUNTIME_DIR" 2>/dev/null || true
|
|
chmod 700 "$XDG_RUNTIME_DIR" 2>/dev/null || true
|
|
|
|
echo "starting headless Sway (renderer=$WLR_RENDERER). From another shell on this user:"
|
|
echo " export XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR WAYLAND_DISPLAY=wayland-1"
|
|
echo " swaymsg -t get_outputs # expect HEADLESS-1"
|
|
echo
|
|
|
|
# --unsupported-gpu is mandatory on Sway 1.9 with the proprietary NVIDIA driver.
|
|
exec dbus-run-session -- sway --unsupported-gpu
|