From 34c9137c590d9162b72075c066c8ff498d826f6c Mon Sep 17 00:00:00 2001 From: Spencer Killen Date: Sun, 19 May 2024 16:08:04 -0600 Subject: [PATCH] notes --- README.md | 5 +++++ init_server.bash | 7 +++++++ 2 files changed, 12 insertions(+) create mode 100644 README.md create mode 100644 init_server.bash diff --git a/README.md b/README.md new file mode 100644 index 0000000..a67dfba --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +## Resources +- https://stackoverflow.com/questions/20548509/forwarding-x11-without-ssh-how-do-i-run-local-apps-on-another-pc-running-x-serv/20549473#20549473 +- https://github.com/mviereck/x11docker/wiki/How-to-access-X-over-TCP-IP-network +- https://askubuntu.com/questions/203173/run-application-on-local-machine-and-show-gui-on-remote-display +- https://askubuntu.com/questions/615139/how-to-make-x-org-listen-tcp-port-to-remote-connections diff --git a/init_server.bash b/init_server.bash new file mode 100644 index 0000000..4138cb8 --- /dev/null +++ b/init_server.bash @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Expose X server port +sudo ufw allow 6000 + +# Disable authentication +# sudo xhost + \ No newline at end of file