Last active
January 15, 2017 19:26
-
-
Save josef81/866ff392ac1365a48e4214b07f629109 to your computer and use it in GitHub Desktop.
Revisions
-
josef81 revised this gist
Jan 15, 2017 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,3 +16,5 @@ Cursor Setup: Source: https://raspberrypi.stackexchange.com/questions/56413/error-problem-connecting-to-raspberry-pi-3-with-xrdp axis-cgi/video.cgi?camera=1&subtype=1 -
josef81 created this gist
Jan 15, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ 1) remove the following packages : xrdp, vnc4server, tightvncserver sudo apt-get remove xrdp vnc4server tightvncserver 2) install tightvncserver followed by xrdp: sudo apt-get install tightvncserver sudo apt-get install xrdp 3) Restart. Cursor Setup: 1. Create the file ".xsessionrc" in the home directory ("/home/pi"). Note the dot at the beginning of the file name: • cd ~ • nano .xsessionrc 2. Put the following content into this file: xsetroot -cursor_name left_ptr& 3. Press ctrl + x and answer "y" to save and exit 4. make the file executable: chmod +x .xsessionrc 5. logout & then log back in. Source: https://raspberrypi.stackexchange.com/questions/56413/error-problem-connecting-to-raspberry-pi-3-with-xrdp