What is the easiest approach to get freeRDP installed onto Amazon Linux?How to find out all the software...
Can I run 125kHz RF circuit on a breadboard?
Usage of an old photo with expired copyright
Showing mass murder in a kid's book
Isometric embedding of a genus g surface
How do I prevent inappropriate ads from appearing in my game?
Pre-Employment Background Check With Consent For Future Checks
How would a solely written language work mechanically
Why is participating in the European Parliamentary elections used as a threat?
How can I safely use "Thalidomide" in my novel while respecting the trademark?
How to test the sharpness of a knife?
Check if object is null and return null
Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?
Are Captain Marvel's powers affected by Thanos breaking the Tesseract and claiming the stone?
How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?
How do you justify more code being written by following clean code practices?
What the heck is gets(stdin) on site coderbyte?
Is it feasible to let a newcomer play the "Gandalf"-like figure I created for my campaign?
Unable to disable Microsoft Store in domain environment
Why does a 97 / 92 key piano exist by Bösendorfer?
How to make a list of partial sums using forEach
Do I have to take mana from my deck or hand when tapping a dual land?
Why didn't Voldemort know what Grindelwald looked like?
Can I say "fingers" when referring to toes?
Do I have to know the General Relativity theory to understand the concept of inertial frame?
What is the easiest approach to get freeRDP installed onto Amazon Linux?
How to find out all the software packages installed by default on a linux install?Where are my installed files on Amazon?how do I install scripts like pg_lsclusters on a Amazon AWS Linux AMIvsFTPd on Amazon Linux EC2 instanceFFMPEG Install on EC2 - Amazon LinuxWhat is your approach on sync two linux server in AWSFull Update to PHP5.5 on Amazon LinuxAWS opsworks build lifecycle and amazon linuxUsing Webdriver with Chrome — missing Shared LibrariesHow to install Certbot on Amazon Linux EC2
What is the easiest approach to get freeRDP installed onto Amazon Linux?
I've tried using RPMForge but am not having luck. Getting errors that dependencies like libpulse.so.0
are missing.
Would appreciate any suggestions.
linux amazon-ec2
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
What is the easiest approach to get freeRDP installed onto Amazon Linux?
I've tried using RPMForge but am not having luck. Getting errors that dependencies like libpulse.so.0
are missing.
Would appreciate any suggestions.
linux amazon-ec2
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
What is the easiest approach to get freeRDP installed onto Amazon Linux?
I've tried using RPMForge but am not having luck. Getting errors that dependencies like libpulse.so.0
are missing.
Would appreciate any suggestions.
linux amazon-ec2
What is the easiest approach to get freeRDP installed onto Amazon Linux?
I've tried using RPMForge but am not having luck. Getting errors that dependencies like libpulse.so.0
are missing.
Would appreciate any suggestions.
linux amazon-ec2
linux amazon-ec2
edited Sep 17 '14 at 7:46
Kate
612518
612518
asked Sep 17 '14 at 1:54
davewolfsdavewolfs
15516
15516
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can follow below steps to compile freeRDP
git clone git://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
Build:
make
Install:
sudo make install
Now create /etc/ld.so.conf.d/freerdp.conf and add the following line to it:
/usr/local/lib/freerdp
For a 64-bit rhel based OS add:
/usr/local/lib64/freerdp
Depending on your OS/distribution, you may also need to add this line:
/usr/local/lib
Run ldconfig. You should now have xfreerdp installed in /usr/local/bin:
which xfreerdp
/usr/local/bin/xfreerdp
Plugins are installed in /usr/local/lib/freerdp:
/usr/local/lib/freerdp$ ls
cliprdr.so disk.so drdynvc.so printer.so rail.so rdpdbg.so rdpdr.so rdpsnd_alsa.so rdpsnd.so
keymaps are installed in /usr/local/share/freerdp:
/usr/local/share/freerdp$ ls keymaps/
aliases ataritt empty fujitsu ibm macosx sony xfree86 xkb.pl
amiga digital_vndr evdev hp macintosh sgi_vndr sun xfree98
After launching FreeRDP at least once, ~/.freerdp will be created to store known hosts:
~/.freerdp$ ls
cacert known_hosts
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f629067%2fwhat-is-the-easiest-approach-to-get-freerdp-installed-onto-amazon-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can follow below steps to compile freeRDP
git clone git://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
Build:
make
Install:
sudo make install
Now create /etc/ld.so.conf.d/freerdp.conf and add the following line to it:
/usr/local/lib/freerdp
For a 64-bit rhel based OS add:
/usr/local/lib64/freerdp
Depending on your OS/distribution, you may also need to add this line:
/usr/local/lib
Run ldconfig. You should now have xfreerdp installed in /usr/local/bin:
which xfreerdp
/usr/local/bin/xfreerdp
Plugins are installed in /usr/local/lib/freerdp:
/usr/local/lib/freerdp$ ls
cliprdr.so disk.so drdynvc.so printer.so rail.so rdpdbg.so rdpdr.so rdpsnd_alsa.so rdpsnd.so
keymaps are installed in /usr/local/share/freerdp:
/usr/local/share/freerdp$ ls keymaps/
aliases ataritt empty fujitsu ibm macosx sony xfree86 xkb.pl
amiga digital_vndr evdev hp macintosh sgi_vndr sun xfree98
After launching FreeRDP at least once, ~/.freerdp will be created to store known hosts:
~/.freerdp$ ls
cacert known_hosts
add a comment |
You can follow below steps to compile freeRDP
git clone git://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
Build:
make
Install:
sudo make install
Now create /etc/ld.so.conf.d/freerdp.conf and add the following line to it:
/usr/local/lib/freerdp
For a 64-bit rhel based OS add:
/usr/local/lib64/freerdp
Depending on your OS/distribution, you may also need to add this line:
/usr/local/lib
Run ldconfig. You should now have xfreerdp installed in /usr/local/bin:
which xfreerdp
/usr/local/bin/xfreerdp
Plugins are installed in /usr/local/lib/freerdp:
/usr/local/lib/freerdp$ ls
cliprdr.so disk.so drdynvc.so printer.so rail.so rdpdbg.so rdpdr.so rdpsnd_alsa.so rdpsnd.so
keymaps are installed in /usr/local/share/freerdp:
/usr/local/share/freerdp$ ls keymaps/
aliases ataritt empty fujitsu ibm macosx sony xfree86 xkb.pl
amiga digital_vndr evdev hp macintosh sgi_vndr sun xfree98
After launching FreeRDP at least once, ~/.freerdp will be created to store known hosts:
~/.freerdp$ ls
cacert known_hosts
add a comment |
You can follow below steps to compile freeRDP
git clone git://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
Build:
make
Install:
sudo make install
Now create /etc/ld.so.conf.d/freerdp.conf and add the following line to it:
/usr/local/lib/freerdp
For a 64-bit rhel based OS add:
/usr/local/lib64/freerdp
Depending on your OS/distribution, you may also need to add this line:
/usr/local/lib
Run ldconfig. You should now have xfreerdp installed in /usr/local/bin:
which xfreerdp
/usr/local/bin/xfreerdp
Plugins are installed in /usr/local/lib/freerdp:
/usr/local/lib/freerdp$ ls
cliprdr.so disk.so drdynvc.so printer.so rail.so rdpdbg.so rdpdr.so rdpsnd_alsa.so rdpsnd.so
keymaps are installed in /usr/local/share/freerdp:
/usr/local/share/freerdp$ ls keymaps/
aliases ataritt empty fujitsu ibm macosx sony xfree86 xkb.pl
amiga digital_vndr evdev hp macintosh sgi_vndr sun xfree98
After launching FreeRDP at least once, ~/.freerdp will be created to store known hosts:
~/.freerdp$ ls
cacert known_hosts
You can follow below steps to compile freeRDP
git clone git://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
Build:
make
Install:
sudo make install
Now create /etc/ld.so.conf.d/freerdp.conf and add the following line to it:
/usr/local/lib/freerdp
For a 64-bit rhel based OS add:
/usr/local/lib64/freerdp
Depending on your OS/distribution, you may also need to add this line:
/usr/local/lib
Run ldconfig. You should now have xfreerdp installed in /usr/local/bin:
which xfreerdp
/usr/local/bin/xfreerdp
Plugins are installed in /usr/local/lib/freerdp:
/usr/local/lib/freerdp$ ls
cliprdr.so disk.so drdynvc.so printer.so rail.so rdpdbg.so rdpdr.so rdpsnd_alsa.so rdpsnd.so
keymaps are installed in /usr/local/share/freerdp:
/usr/local/share/freerdp$ ls keymaps/
aliases ataritt empty fujitsu ibm macosx sony xfree86 xkb.pl
amiga digital_vndr evdev hp macintosh sgi_vndr sun xfree98
After launching FreeRDP at least once, ~/.freerdp will be created to store known hosts:
~/.freerdp$ ls
cacert known_hosts
answered Sep 17 '14 at 8:07
Abhishek Anand AmralkarAbhishek Anand Amralkar
1,760914
1,760914
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f629067%2fwhat-is-the-easiest-approach-to-get-freerdp-installed-onto-amazon-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown