From 0d6778a9d450e4017dc83e318cb0b498c9812d34 Mon Sep 17 00:00:00 2001 From: Cal Heldenbrand Date: Thu, 23 Feb 2023 11:38:14 -0600 Subject: [PATCH] Add privleged mode... The popover window to select printers acts strange and fuzzes out. I see errors trying to access the raw video card device using libGL, and other errors with dbus access. Turning on privileged mode fixes this. --- DockerRun.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DockerRun.sh b/DockerRun.sh index 30fd215b8..31319fb81 100755 --- a/DockerRun.sh +++ b/DockerRun.sh @@ -3,8 +3,6 @@ set -x # Just in case, here's some other things that might help: # Force the container's hostname to be the same as your workstation # -h $HOSTNAME \ -# just give it all privileges if there's a wierd error -# --privileged=true \ # If there's problems with the X display, try this # -v /tmp/.X11-unix:/tmp/.X11-unix \ docker run \ @@ -16,6 +14,8 @@ docker run \ -v $HOME:/home/$USER \ `# Pass the X display number to the container` \ -e DISPLAY=$DISPLAY \ + `# It seems that libGL and dbus things need privileged mode` \ + --privileged=true \ `# Attach tty for running bambu with command line things` \ -ti \ `# Pass all parameters from this script to the bambu ENTRYPOINT binary` \