Remmina failed to load RDP plugins in Kali Linux

Source: Internet
Author: User
Tags locale kali linux freerdp remmina

When installing Remmina new host, I find that there is no RDP in the Protocol drop-down list.

1. Check the RDP plugins to confirm that it is installed:

[Email protected]:~# dpkg-l|grep remmina|grep RDP
II REMMINA-PLUGIN-RDP 1.0.0-4+DEB7U1 i386 RDP plugin for Remmina remote Desktop Client
----

[Email protected]:~# ll/usr/lib/remmina/plugins/remmina-plugin*
-rwxrwxrwx 1 root root 43232 Mar 2013/usr/lib/remmina/plugins/remmina-plugin-nx.so
-rwxrwxrwx 1 root root 68256 Mar 2013/usr/lib/remmina/plugins/remmina-plugin-rdp.so
-rwxrwxrwx 1 root root 5772 Mar 2013/usr/lib/remmina/plugins/remmina-plugins-gnome.so
-rwxrwxrwx 1 root root 5400 Mar 2013/usr/lib/remmina/plugins/remmina-plugin-telepathy.so
-rwxrwxrwx 1 root root 38976 Mar 2013/usr/lib/remmina/plugins/remmina-plugin-vnc.so
-rwxrwxrwx 1 root root 13896 Mar 2013/usr/lib/remmina/plugins/remmina-plugin-xdmcp.so

2, start Remmina under command line:

Failed to load plugin:/usr/lib/remmina/plugins/remmina-plugin-rdp.so

LD View confirm Dependent Library:

[Email protected]:/etc/apt# ld/usr/lib/remmina/plugins/remmina-plugin-rdp.so
ld:warning:libfreerdp-gdi.so.1.0, needed by/usr/lib/remmina/plugins/remmina-plugin-rdp.so, not found (try using- Rpath Or-rpath-link)
ld:warning:libfreerdp-kbd.so.1.0, needed by/usr/lib/remmina/plugins/remmina-plugin-rdp.so, not found (try using- Rpath Or-rpath-link)
ld:warning:libfreerdp-rail.so.1.0, needed by/usr/lib/remmina/plugins/remmina-plugin-rdp.so, not found (try using- Rpath Or-rpath-link)
ld:warning:libfreerdp-codec.so.1.0, needed by/usr/lib/remmina/plugins/remmina-plugin-rdp.so, not found (try using- Rpath Or-rpath-link)
ld:warning:libfreerdp-channels.so.1.0, needed by/usr/lib/remmina/plugins/remmina-plugin-rdp.so, not found (try using -rpath Or-rpath-link)

The version of the FREERDP library file is installed:

[Email protected]:/etc/apt# ll/usr/lib/i386-linux-gnu/libfree
Libfreerdp-cache.so libfreerdp-gdi.so.1.1
libfreerdp-cache.so.1.1 libfreerdp-gdi.so.1.1.0
libfreerdp-cache.so.1.1.0 libfreerdp-locale.so
Libfreerdp-client.so libfreerdp-locale.so.1.1
libfreerdp-client.so.1.1 libfreerdp-locale.so.1.1.0
libfreerdp-client.so.1.1.0 libfreerdp-primitives.so
Libfreerdp-codec.so libfreerdp-primitives.so.1.1
libfreerdp-codec.so.1.1 libfreerdp-primitives.so.1.1.0
libfreerdp-codec.so.1.1.0 libfreerdp-rail.so
Libfreerdp-common.so libfreerdp-rail.so.1.1
libfreerdp-common.so.1.1.0 libfreerdp-rail.so.1.1.0
Libfreerdp-common.so.1.1.0-beta1 libfreerdp-utils.so
Libfreerdp-core.so libfreerdp-utils.so.1.1
libfreerdp-core.so.1.1 libfreerdp-utils.so.1.1.0
libfreerdp-core.so.1.1.0 Libfreetype.a
Libfreerdp-crypto.so libfreetype.la
libfreerdp-crypto.so.1.1 libfreetype.so
libfreerdp-crypto.so.1.1.0 libfreetype.so.6
Libfreerdp-gdi.so libfreetype.so.6.8.1


Obviously a small version is higher:

A, go to Debian7 repository and find a lower version of LIBFREERDP1.

wget Http://ftp.de.debian.org/debian/pool/main/f/freerdp/freerdp-dbg_1.0.1-1.1+deb7u3_i386.deb

Dpkg-i Freerdp-dbg_1.0.1-1.1+deb7u3_i386.deb

Check the confirmation, the version is correct, start REMMINA,RDP has been supported;

[Email protected]:~# dpkg-l LIBFREERDP1
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/libfreerdp1
/usr/share/doc/libfreerdp1/changelog. Debian.gz
/usr/share/doc/libfreerdp1/changelog.gz
/usr/share/doc/libfreerdp1/copyright
/usr/lib
/usr/lib/i386-linux-gnu
/usr/lib/i386-linux-gnu/libfreerdp-cache.so.1.0.1
/usr/lib/i386-linux-gnu/libfreerdp-channels.so.1.0.1
/usr/lib/i386-linux-gnu/libfreerdp-codec.so.1.0.1
/usr/lib/i386-linux-gnu/libfreerdp-core.so.1.0.1
/usr/lib/i386-linux-gnu/libfreerdp-gdi.so.1.0.1
/usr/lib/i386-linux-gnu/libfreerdp-kbd.so.1.0.1
/usr/lib/i386-linux-gnu/libfreerdp-rail.so.1.0.1
/usr/lib/i386-linux-gnu/libfreerdp-utils.so.1.0.1
/usr/lib/i386-linux-gnu/libfreerdp-utils.so.1.0
/usr/lib/i386-linux-gnu/libfreerdp-rail.so.1.0
/usr/lib/i386-linux-gnu/libfreerdp-kbd.so.1.0
/usr/lib/i386-linux-gnu/libfreerdp-gdi.so.1.0
/usr/lib/i386-linux-gnu/libfreerdp-core.so.1.0
/usr/lib/i386-linux-gnu/libfreerdp-codec.so.1.0
/usr/lib/i386-linux-gnu/libfreerdp-channels.so.1.0
/usr/lib/i386-linux-gnu/libfreerdp-cache.so.1.0

------------------------------------------------

Of course, you can also try a soft link corresponding to the new version of the library file;



This article from "Security_newbie" blog, declined reprint!

Remmina failed to load RDP plugins in Kali Linux

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.