commit 34c9137c590d9162b72075c066c8ff498d826f6c Author: Spencer Killen Date: Sun May 19 16:08:04 2024 -0600 notes 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