We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xterm
Once you restart your Mac, you can directly login your remote host ssh -Y yourUserName@host test xterm, it will open a new window on your Mac.
ssh -Y yourUserName@host
DO NOT export DISPLAY=IP address in your .bashrcfile
export DISPLAY=IP address
.bashrc
Using the steps above, I succeeded in solving problem like 'Gtk-WARNING **: cannot open display:'
Hope these tips will help someone in the same trouble like me.
Good luck!
The text was updated successfully, but these errors were encountered:
Instead of using -Y you should use -X You will need to add the following to .ssh/config on the mac side:
-Y
-X
.ssh/config
Host * XAuthLocation /opt/X11/bin/xauth
this is because xauth lives in a different location on macos than it normally would on linux
xauth
Sorry, something went wrong.
Instead of using -Y you should use -X You will need to add the following to .ssh/config on the mac side: Host * XAuthLocation /opt/X11/bin/xauth this is because xauth lives in a different location on macos than it normally would on linux
Received with thanks;D
No branches or pull requests
For MacOS Catalina
xterm
to testFor Linux
Once you restart your Mac, you can directly login your remote host
ssh -Y yourUserName@host
test
xterm
, it will open a new window on your Mac.DO NOT
export DISPLAY=IP address
in your.bashrc
fileUsing the steps above, I succeeded in solving problem like 'Gtk-WARNING **: cannot open display:'
Hope these tips will help someone in the same trouble like me.
Good luck!
The text was updated successfully, but these errors were encountered: