@@ -15,7 +15,7 @@ ROX-Filer creates a very minimalist way to manage the files and icons on the des
15
15
16
16
![ Docker L] ( image/docker-desktop.png " Docker-Desktop ")
17
17
18
- OBS: The client machine needs to have a X11 server installed. See the "Notes" below.
18
+ OBS: The client machine needs to have a X11 server installed (Xpra) . See the "Notes" below.
19
19
20
20
##Docker Installation
21
21
@@ -74,16 +74,25 @@ $ docker port $CONTAINER_ID 22
74
74
75
75
###Connecting to the container
76
76
77
+ ####Starting the a new session
78
+
77
79
```
78
80
$ ifconfig | grep "inet addr:"
79
81
inet addr:192.168.56.102 Bcast:192.168.56.255 Mask:255.255.255.0 # This is the LAN's IP for this machine
80
82
81
- $ ssh -YC -c blowfish [email protected] -p 49153 ./docker-desktop # Here is where we use the external port
82
- [email protected] 's password: xxxxxxxxxxxx # The Desktop should open up automatically after you type the password
83
+ $ ssh [email protected] -p 49153 ./docker-desktop -s 800x600 -d 10 # Here is where we use the external port
84
+ [email protected] 's password: xxxxxxxxxxxx
85
+
86
+ -s = Screen Resolution
87
+ -d = Session Number
88
+ ```
89
+
90
+ ####Attaching to the session started
91
+
92
+ ```
93
+ $ xpra --ssh="ssh -p 49153" attach ssh:[email protected] :10 # user@ip_address:session_number
94
+ [email protected] 's password: xxxxxxxxxxxx
83
95
84
- -Y = Trusted X11 Forwarding
85
- -C = Use compression
86
- -c blowfish = It's one of the fastest compression type available
87
96
```
88
97
Once you establish the connection, the file /home/docker/docker-desktop is executed. It takes care of attaching to the previous session or creating a new one, if it doesn’t exist.
89
98
@@ -93,13 +102,15 @@ If you are connecting from a Windows Machine, you can use Putty. Please check th
93
102
94
103
###On Windows:
95
104
Requirements:
96
- - Xming (http://sourceforge.net/projects/xming/ )
97
- - Putty (http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html )
98
- - Configuration Tutorial (https://wiki.utdallas.edu/wiki/display/FAQ/X11+Forwarding+using+Xming+and+PuTTY )
105
+ - Xpra (https://www.xpra.org/dists/windows/ )
106
+ - Path: C:\Program Files(x86)\Xpra\Xpra_cmd.exe
99
107
100
108
###On OS X:
101
109
Requirements:
102
- - XQuartz (http://xquartz.macosforge.org/landing/ )
110
+ - Xpra (https://www.xpra.org/dists/osx/x86/ )
111
+ - Path: /Applications/Xpra.app/Contents/Helpers/xpra
103
112
104
113
###On Linux:
105
- There is no requiment. If you have a Linux Desktop you should have X11 server installed already.
114
+ Requirements:
115
+ - Xpra: You can use apt-get to install it -> apt-get install xpra
116
+ - Path: /usr/bin/xpra
0 commit comments