Advertisement
BaSs_HaXoR

XRDP - How To

Sep 24th, 2015
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. http://networkstatic.net/xrdp-an-easy-remote-desktop-setup-for-your-ubuntu-servers/
  2.  
  3. INSTALLING XRDP FOR REMOTE DESKTOP ON LINUX
  4.  
  5. Here are example installs on Fedora from Red Hat and Ubuntu platforms.
  6. ##############################################################
  7. REMOTE DESKTOP FOR FEDORA:
  8.  
  9. yum install xrdp
  10. systemctl enable xrdp.service
  11. systemctl start xrdp.service
  12. systemctl enable xrdp-sesman.service
  13. systemctl start xrdp-sesman.service
  14. ##############################################################
  15. REMOTE DESKTOP FOR UBUNTU:
  16.  
  17. yum install xrdp
  18. systemctl enable xrdp.service
  19. systemctl start xrdp.service
  20. systemctl enable xrdp-sesman.service
  21. systemctl start xrdp-sesman.service
  22. ##############################################################
  23. apt-get update
  24. sudo apt-get install ubuntu-desktop --no-install-recommends
  25. sudo apt-get install xrdp
  26. ##############################################################
  27. /*
  28. Check the startup, start if not running
  29. $ /etc/init.d/xrdp status
  30. * Checking status of Remote Desktop Protocol server xrdp [ OK ]
  31. * Checking status of RDP Session Manager sesman
  32. */
  33.  
  34. /etc/init.d/xrdp start
  35. ##############################################################
  36. apt-get update
  37. sudo apt-get install ubuntu-desktop --no-install-recommends
  38. sudo apt-get install xrdp
  39.  
  40. /*
  41. Check the startup, start if not running
  42. $ /etc/init.d/xrdp status
  43. * Checking status of Remote Desktop Protocol server xrdp [ OK ]
  44. * Checking status of RDP Session Manager sesman
  45. */
  46.  
  47. /etc/init.d/xrdp start
  48. ##############################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement