Difference between revisions of "MyWorkspace"

From LUG
Jump to navigation Jump to search
Line 13: Line 13:
 
sudo ./VMware-Horizon-Client-*.bundle --eulas-agreed</nowiki>
 
sudo ./VMware-Horizon-Client-*.bundle --eulas-agreed</nowiki>
 
Unfortunately this installer requires root to install its components - nothing you can do about that, as it wants to install USB redirection modules. Don't scan anything or register - that's not required for functionality.
 
Unfortunately this installer requires root to install its components - nothing you can do about that, as it wants to install USB redirection modules. Don't scan anything or register - that's not required for functionality.
 +
 +
  
  
Line 28: Line 30:
  
 
In Ubuntu 16.10 an old version of libpng is needed (libpng12)
 
In Ubuntu 16.10 an old version of libpng is needed (libpng12)
<nowiki>cd /tmp
+
 
 +
You can choose to install that specific version or symlink the recent one.
 +
<nowiki>cd /usr/lib/x86_64-linux-gnu
 +
ln -sf libpng16.so.16.25.0 libpng.12.so.0
 +
</nowiki>
 +
 
 +
<nowiki>cd /tmp
 
#Download
 
#Download
 
wget 'https://sourceforge.net/projects/libpng/files/libpng12/1.2.57/libpng-1.2.57.tar.xz'
 
wget 'https://sourceforge.net/projects/libpng/files/libpng12/1.2.57/libpng-1.2.57.tar.xz'
Line 53: Line 61:
 
ln -sf libgstbase-1.0.so.0 libgstbase-0.10.so.0
 
ln -sf libgstbase-1.0.so.0 libgstbase-0.10.so.0
 
ln -sf libgstreamer-1.0.so.0 libgstreamer-0.10.so.0
 
ln -sf libgstreamer-1.0.so.0 libgstreamer-0.10.so.0
 +
</nowiki>
 +
 +
== Client Deinstallation ==
 +
<nowiki>
 +
sudo ./VMware-Horizon-Client-*.bundle --uninstall-component=vmware-horizon-client
 
</nowiki>
 
</nowiki>
  
 
A detailed manual can be found at [https://www.intranet.wur.nl/nl/services/ict/klantenservice/Handleidingen/Documents/Accessing-the-virtualdesktop-client-on-Linux-210217.pdf  https://www.intranet.wur.nl/nl/services/ict/klantenservice/Handleidingen/Documents/Accessing-the-virtualdesktop-client-on-Linux-210217.pdf]
 
A detailed manual can be found at [https://www.intranet.wur.nl/nl/services/ict/klantenservice/Handleidingen/Documents/Accessing-the-virtualdesktop-client-on-Linux-210217.pdf  https://www.intranet.wur.nl/nl/services/ict/klantenservice/Handleidingen/Documents/Accessing-the-virtualdesktop-client-on-Linux-210217.pdf]

Revision as of 09:39, 6 April 2017

A newer service by Wageningen UR, this will soon provide you with the ability to have a remote machine at your will, connectable via an HTML5-compatible browser or a standalone client.

Using the VDI's with a browser

Go to https://workspace.wur.nl and select 'HTML Access', then log in. You should now be presented with a list of desktops and applications that can be run directly in your browser, no client installation required.

Depending on environment, there may be some caveats with using this - typically special keys (e.g. Ctrl) are difficult to transmit to the remote desktop, and may require the use of a full client.

Client Installation

First, you need to go get the correct client from VMware. Navigate to https://my.vmware.com/web/vmware/downloads and search for 'Horizon Client' - the latest version should provide a 64 and 32 bit Linux 'bundle'.

Download this .bundle file - it's just a bash script wrapping around a binary blob - and then set it executable and run it:

chmod +x VMware-Horizon-Client-*.bundle
sudo ./VMware-Horizon-Client-*.bundle --eulas-agreed

Unfortunately this installer requires root to install its components - nothing you can do about that, as it wants to install USB redirection modules. Don't scan anything or register - that's not required for functionality.



If you want all the functionalities to work (USB redirection, Client Drive Redirection, Smart card, etc). You can set some symlinks for specific libraries it is asking for.
!! Bear in mind Client Drive Redirection is not working in 16.xx even when we symlink the libraries

In Ubuntu 16.04:

cd /lib/x86_64-linux-gnu/
ln -sf libudev.so.1 libudev.so.0
cd /usr/lib/x86_64-linux-gnu
ln -sf libgstapp-1.0.so.0 libgstapp-0.10.so.0
ln -sf libgstbase-1.0.so.0 libgstbase-0.10.so.0
ln -sf libgstreamer-1.0.so.0 libgstreamer-0.10.so.0
ln -sf libffi.so.6 libffi.so.5

In Ubuntu 16.10 an old version of libpng is needed (libpng12)

You can choose to install that specific version or symlink the recent one. cd /usr/lib/x86_64-linux-gnu ln -sf libpng16.so.16.25.0 libpng.12.so.0

cd /tmp #Download wget 'https://sourceforge.net/projects/libpng/files/libpng12/1.2.57/libpng-1.2.57.tar.xz' #Unpack tar -xvf libpng-1.2.57.tar.xz cd libpng-1.2.57/ #build ​./configure --prefix=​/usr/local/lib/ make make install # refresh library path sudo ldconfig

In Fedora release 25:

yum install libpng12 libXScrnSaver
cd /usr/lib64/
ln -sf libudev.so.1 libudev.so.0
ln -sf libffi.so.6 libffi.so.5
ln -sf libgstapp-1.0.so.0 libgstapp-0.10.so.0
ln -sf libgstbase-1.0.so.0 libgstbase-0.10.so.0
ln -sf libgstreamer-1.0.so.0 libgstreamer-0.10.so.0

Client Deinstallation

sudo ./VMware-Horizon-Client-*.bundle --uninstall-component=vmware-horizon-client

A detailed manual can be found at https://www.intranet.wur.nl/nl/services/ict/klantenservice/Handleidingen/Documents/Accessing-the-virtualdesktop-client-on-Linux-210217.pdf