Generate wrong toolpaths
Running dxf2gcode with --quiet flag is not really quiet. It needs to open GUI for a brief moment to initialize graphic objects. Thus, if you want to run with no physic display, run it with a virtual display like xvfb On linux: # Install and start xvfb $ sudo apt update -y && apt install xvfb $ Xvfb :1 -screen 0 1024x768x16 & # Set pernament environments export QT_DEBUG_PLUGINS=1 export QT_QPA_PLATFORM=xcb export DISPLAY=:1 It worked well, i was tested
Running dxf2gcode with --quiet flag is not really quiet. It needs to open GUI for a brief moment to initialize graphic objects. Thus, if you want to run with no physic display, run it with a virtual display like xvfb On linux: # Install and start xvfb $ sudo apt update -y && apt install xvfb $ Xvfb :1 -screen 0 1024x768x16 & # Set pernament environment export QT_DEBUG_PLUGINS=1 export QT_QPA_PLATFORM=xcb export DISPLAY=:1 It worked well, i was tested