https://github.com/Gibbio/RDPGUI
Simple Remote Desktop Connection GUI in PyQt4
https://github.com/Gibbio/RDPGUI
Last synced: 11 months ago
JSON representation
Simple Remote Desktop Connection GUI in PyQt4
- Host: GitHub
- URL: https://github.com/Gibbio/RDPGUI
- Owner: Gibbio
- License: gpl-2.0
- Created: 2013-09-05T13:15:06.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-11T15:09:50.000Z (almost 12 years ago)
- Last Synced: 2024-11-04T08:37:06.496Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 204 KB
- Stars: 41
- Watchers: 12
- Forks: 28
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - Gibbio/RDPGUI - Simple Remote Desktop Connection GUI in PyQt4 (others)
- awesome-raspberry-pi - RDP Client
README
Simple Remote Desktop Connection Client in PyQt4
Packages needed: python-qt4, python-configparser,python-urllib3
edit rdpgui.ini to fit your server environment
config for FreeRDP > 1.0.1 (new command line release: https://github.com/FreeRDP/FreeRDP/wiki/CommandLineInterface):
[DEFAULT]
RDPBinary = xfreerdp
RDPDomain = RPiTC
RDPServer = server1.domain.lan server2.domain.lan server3.domain.lan
RDPDomainFlags = /d:
RDPServerFlags = /v:
RDPUserFlags = /u:
RDPPasswordFlags = /p:
RDPDefaulfFlags = /cert-ignore /f
RDPExtraFlags = /sound:sys:pulse /rfx /fonts
config for FreeRDP < 1.0.1 (old command line release: http://manpages.ubuntu.com/manpages/raring/man1/xfreerdp.1.html):
[DEFAULT]
RDPBinary = xfreerdp
RDPDomain = RPiTC
RDPServer = server1.domain.lan server2.domain.lan server3.domain.lan
RDPDomainFlags = "-d "
RDPServerFlags = ""
RDPUserFlags = "-u "
RDPPasswordFlags = "-p "
RDPDefaulfFlags = "-x l -f"
RDPExtraFlags = "--plugin rdpsnd -z --rfx"
config for RDesktop (command line reference: http://manpages.ubuntu.com/manpages/raring/man1/rdesktop.1.html):
[DEFAULT]
RDPBinary = rdesktop
RDPDomain = RPiTC
RDPServer = server1.domain.lan server2.domain.lan server3.domain.lan
RDPDomainFlags = "-d "
RDPServerFlags = ""
RDPUserFlags = "-u "
RDPPasswordFlags = "-p "
RDPDefaulfFlags = "-x l -f"
RDPExtraFlags = "-r sound:local:alsa -z"