mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	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.
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			879 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			879 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
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 \
 | 
						|
#  If there's problems with the X display, try this
 | 
						|
#  -v /tmp/.X11-unix:/tmp/.X11-unix \
 | 
						|
docker run \
 | 
						|
  `# Use the hosts networking.  Printer wifi and also dbus communication` \
 | 
						|
  --net=host \
 | 
						|
  `# Run as your workstations username to keep permissions the same` \
 | 
						|
  -u $USER \
 | 
						|
  `# Bind mount your home directory into the container for loading/saving files` \
 | 
						|
  -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` \
 | 
						|
  bambustudio $* 
 | 
						|
  
 |