Skip to content

Instantly share code, notes, and snippets.

@stevenwilliamson
Created August 2, 2017 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevenwilliamson/71b9567ef9ea54eb8d334757a5fff9f2 to your computer and use it in GitHub Desktop.
Save stevenwilliamson/71b9567ef9ea54eb8d334757a5fff9f2 to your computer and use it in GitHub Desktop.
Tested on image "e74a9cd0-f2d0-11e6-8b69-b3acf2ef87f7"
# Create /etc/X11/xorg.conf
```
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Device"
Identifier "Device0"
Driver "dummy" #Choose the driver used for this monitor
EndSection
Section "Screen"
Identifier "Screen0" #Collapse Monitor and Device section to Screen section
Device "Device0"
Monitor "Monitor0"
DefaultDepth 16 #Choose the depth (16||24)
SubSection "Display"
Depth 16
Modes "1024x768_75.00" #Choose the resolution
EndSubSection
EndSection
```
startxfce4
x11vnc -passwd "password" -display :0
Then run chrome remote desktop from the browser as normal, whcih all seems to work.
Next steps are to pick apart chrome remote desktop and look at options for automating the process to get
rid of needing x11vnc and to see what authentication options are avaible.
I should hopefully be picking this up as a project proper at some point this quater so let me know if you make any progress.
Thus far iv'e just confirmed chrome remote desktop will run.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment