Skip to content

Commit

Permalink
Add privleged mode...
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
calh authored and lanewei120 committed Mar 2, 2023
1 parent a664128 commit 0d6778a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DockerRun.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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` \
Expand Down

0 comments on commit 0d6778a

Please sign in to comment.