I have a problem when running a certain program. The execution works perfectly fine, but there is an additional line that appears before the execution : Invalid MIT-MAGIC-COOKIE-1 key
Is there a way to prevent this message to appear ? With some research, I tried different commands :
Try
xhost +local:
before runningChange the variable DISPLAY with the export command
Check if the XAUTHORITY environment exists (it does not)
Do you have any other suggestions that I can try ?
xauth list
andhostnamectl status
please. – nobody Jun 09 '20 at 09:09octave
), is trying to be smart and pipe the internal X11 display through ssh to the remote computer, and fails. Are you passing the-X
parameter to ssh? Take that off, and try passing the-Y
as in:ssh -Y youruser@yourhostname
, or if that fails try running octave from a logged in user that has access to the primary monitor display. – Eric Leschinski Jan 02 '22 at 03:00