Remmina - The GTK+ Remote Desktop Client  v1.4.2
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
Compile-on-Ubuntu-18.04.md
Go to the documentation of this file.
1 # Quick and dirty guide for compiling remmina on ubuntu 18.04
2 
3 These are instructions for people or software developers who want to contribute to the latest version of Remmina on Ubuntu 18.04.
4 
5 If you are an end user and you want to install the latest version of remmina, please use the "Remmina Team Ubuntu PPA - next branch", as explained on the [homepage of the wiki](https://gitlab.com/Remmina/Remmina/wikis/home).
6 
7 By following these instructions, you will get Remmina and FreeRDP compiled under the /opt/remmina_devel/ subdir, so they will not mess up your system too much. This is ideal for testing remmina.
8 
9 You will also find the uninstall instructions at the bottom of this page.
10 
11 **1.** Install all packages required to build freerdp and remmina:
12 ```
13 sudo apt install build-essential git-core cmake libssl-dev libx11-dev libxext-dev libxinerama-dev \
14  libxcursor-dev libxdamage-dev libxv-dev libxkbfile-dev libasound2-dev libcups2-dev libxml2 libxml2-dev \
15  libxrandr-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
16  libxi-dev libavutil-dev \
17  libavcodec-dev libxtst-dev libgtk-3-dev libgcrypt11-dev libssh-dev libpulse-dev \
18  libvte-2.91-dev libxkbfile-dev libtelepathy-glib-dev libjpeg-dev \
19  libgnutls28-dev libgnome-keyring-dev libavahi-ui-gtk3-dev libvncserver-dev \
20  libappindicator3-dev intltool libsecret-1-dev libwebkit2gtk-4.0-dev libsystemd-dev \
21  libsoup2.4-dev libjson-glib-dev libavresample-dev libsodium-dev \
22  libusb-1.0-0-dev
23 ```
24 **2.** Remove freerdp-x11 package and all packages containing the string remmina in the package name.
25 ```
26 sudo apt purge "remmina*" "libfreerdp*" "libwinpr*" "freerdp*"
27 ```
28 
29 **3.** Create a new directory for development in your home directory, and cd into it
30 ```
31 mkdir ~/remmina_devel
32 cd ~/remmina_devel
33 ```
34 **4.** Download the latest source code of FreeRDP from its master branch
35 ```
36 git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git
37 cd FreeRDP
38 ```
39 **5.** Configure FreeRDP for compilation (don't forget to include -DWITH_PULSE=ON)
40 ```
41 cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_SSE2=ON -DWITH_CUPS=on -DWITH_WAYLAND=off -DWITH_PULSE=on -DCMAKE_INSTALL_PREFIX:PATH=/opt/remmina_devel/freerdp .
42 ```
43 Please note that the above line will make FreeRDP install in /opt/remmina_devel/freerdp
44 
45 **6.** Compile FreeRDP and install
46 ```
47 make && sudo make install
48 ```
49 **7.** Make your system dynamic loader aware of the new libraries you installed. For Ubuntu x64:
50 ```
51 echo /opt/remmina_devel/freerdp/lib | sudo tee /etc/ld.so.conf.d/freerdp_devel.conf > /dev/null
52 sudo ldconfig
53 ```
54 
55 **8.** Create a symbolik link to the executable in /usr/local/bin
56 ```
57 sudo ln -s /opt/remmina_devel/freerdp/bin/xfreerdp /usr/local/bin/
58 ```
59 **9.** Test the new freerdp by connecting to a RDP host
60 ```
61 xfreerdp +clipboard /sound:rate:44100,channel:2 /v:hostname /u:username
62 ```
63 
64 **10.** Now clone remmina repository to your devel dir:
65 ```
66 cd ~/remmina_devel
67 git clone https://gitlab.com/Remmina/Remmina.git
68 ```
69 
70 **11.** Configure Remmina for compilation
71 ```
72 cd Remmina
73 cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX:PATH=/opt/remmina_devel/remmina -DCMAKE_PREFIX_PATH=/opt/remmina_devel/freerdp --build=build .
74 ```
75 **12.** Compile remmina and install it
76 ```
77 make && sudo make install
78 ```
79 **13.** Create a symbolik link to the the executable
80 ```
81 sudo ln -s /opt/remmina_devel/remmina/bin/remmina /usr/local/bin/
82 ```
83 **14.** Run remmina
84 ```
85 remmina
86 ```
87 Please note that icons and launcher files are not installed, so don't search for remmina using Unity Dash.
88 
89 ## Uninstall everything
90 **1.** Remove the devel directory
91 ```
92 rm -rf ~/remmina_devel/
93 ```
94 **2.** Remove the binary directory
95 ```
96 sudo rm -rf /opt/remmina_devel/
97 ```
98 **3.** Cleanup symlinks and dynamic loader
99 ```
100 sudo rm /etc/ld.so.conf.d/freerdp_devel.conf /usr/local/bin/remmina /usr/local/bin/xfreerdp
101 sudo ldconfig
102 ```