Remote Desktop XRDP install

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite












I followed the directions for installing a remote desktop server XRDP on my Lubuntu virtual machine. On the third step I am supposed to update the file
sudo nano /etc/xrdp/startwm.sh , for that update do I just go to the bottom of the file and add startxfce4 ?



I did that and it still does not work



Please advise, thank you



Follow these steps :



Step 1 – Install xRDP



Open Terminal (Crtl+Alt+T) and execute the following commands:



sudo apt-get update
sudo apt-get install xrdp


Step 2 – Install XFCE4 ( Unity doesn't seem to support xRDP in Ubuntu 14.04; although, in Ubuntu 12.04 it was supported ). That's why we install Xfce4.



sudo apt-get install xfce4


Step 3 – Configure xRDP



In this step, we modify two files to make sure xRDP uses Xfce4. First we need to create, or edit, our .xsession file in our home directory. We can either use nano or simply redirect an echo statement (easier):



echo xfce4-session >~/.xsession


The second file we need to edit is the startup file for xRDP, so it will start Xfce4.



sudo nano /etc/xrdp/startwm.sh


The content should look like this (pay attention to the last line and ignore . /etc/X11/Xsession):



#!/bin/sh
if [ -r /etc/default/locale ]; then
. /etc/default/locale
export LANG LANGUAGE
fi
startxfce4


Step 4 – Restart xRDP










share|improve this question



















  • 1




    I can't remember for sure, but doesn't it need to read start xfce4?
    – Robby1212
    Mar 5 at 19:00










  • Please edit your question and provide the link to the original web page where you got the four steps from. What does "it still does not work" mean? Please copy and paste all error and output messages you see into the question above.
    – user68186
    Mar 5 at 19:04














up vote
0
down vote

favorite












I followed the directions for installing a remote desktop server XRDP on my Lubuntu virtual machine. On the third step I am supposed to update the file
sudo nano /etc/xrdp/startwm.sh , for that update do I just go to the bottom of the file and add startxfce4 ?



I did that and it still does not work



Please advise, thank you



Follow these steps :



Step 1 – Install xRDP



Open Terminal (Crtl+Alt+T) and execute the following commands:



sudo apt-get update
sudo apt-get install xrdp


Step 2 – Install XFCE4 ( Unity doesn't seem to support xRDP in Ubuntu 14.04; although, in Ubuntu 12.04 it was supported ). That's why we install Xfce4.



sudo apt-get install xfce4


Step 3 – Configure xRDP



In this step, we modify two files to make sure xRDP uses Xfce4. First we need to create, or edit, our .xsession file in our home directory. We can either use nano or simply redirect an echo statement (easier):



echo xfce4-session >~/.xsession


The second file we need to edit is the startup file for xRDP, so it will start Xfce4.



sudo nano /etc/xrdp/startwm.sh


The content should look like this (pay attention to the last line and ignore . /etc/X11/Xsession):



#!/bin/sh
if [ -r /etc/default/locale ]; then
. /etc/default/locale
export LANG LANGUAGE
fi
startxfce4


Step 4 – Restart xRDP










share|improve this question



















  • 1




    I can't remember for sure, but doesn't it need to read start xfce4?
    – Robby1212
    Mar 5 at 19:00










  • Please edit your question and provide the link to the original web page where you got the four steps from. What does "it still does not work" mean? Please copy and paste all error and output messages you see into the question above.
    – user68186
    Mar 5 at 19:04












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I followed the directions for installing a remote desktop server XRDP on my Lubuntu virtual machine. On the third step I am supposed to update the file
sudo nano /etc/xrdp/startwm.sh , for that update do I just go to the bottom of the file and add startxfce4 ?



I did that and it still does not work



Please advise, thank you



Follow these steps :



Step 1 – Install xRDP



Open Terminal (Crtl+Alt+T) and execute the following commands:



sudo apt-get update
sudo apt-get install xrdp


Step 2 – Install XFCE4 ( Unity doesn't seem to support xRDP in Ubuntu 14.04; although, in Ubuntu 12.04 it was supported ). That's why we install Xfce4.



sudo apt-get install xfce4


Step 3 – Configure xRDP



In this step, we modify two files to make sure xRDP uses Xfce4. First we need to create, or edit, our .xsession file in our home directory. We can either use nano or simply redirect an echo statement (easier):



echo xfce4-session >~/.xsession


The second file we need to edit is the startup file for xRDP, so it will start Xfce4.



sudo nano /etc/xrdp/startwm.sh


The content should look like this (pay attention to the last line and ignore . /etc/X11/Xsession):



#!/bin/sh
if [ -r /etc/default/locale ]; then
. /etc/default/locale
export LANG LANGUAGE
fi
startxfce4


Step 4 – Restart xRDP










share|improve this question















I followed the directions for installing a remote desktop server XRDP on my Lubuntu virtual machine. On the third step I am supposed to update the file
sudo nano /etc/xrdp/startwm.sh , for that update do I just go to the bottom of the file and add startxfce4 ?



I did that and it still does not work



Please advise, thank you



Follow these steps :



Step 1 – Install xRDP



Open Terminal (Crtl+Alt+T) and execute the following commands:



sudo apt-get update
sudo apt-get install xrdp


Step 2 – Install XFCE4 ( Unity doesn't seem to support xRDP in Ubuntu 14.04; although, in Ubuntu 12.04 it was supported ). That's why we install Xfce4.



sudo apt-get install xfce4


Step 3 – Configure xRDP



In this step, we modify two files to make sure xRDP uses Xfce4. First we need to create, or edit, our .xsession file in our home directory. We can either use nano or simply redirect an echo statement (easier):



echo xfce4-session >~/.xsession


The second file we need to edit is the startup file for xRDP, so it will start Xfce4.



sudo nano /etc/xrdp/startwm.sh


The content should look like this (pay attention to the last line and ignore . /etc/X11/Xsession):



#!/bin/sh
if [ -r /etc/default/locale ]; then
. /etc/default/locale
export LANG LANGUAGE
fi
startxfce4


Step 4 – Restart xRDP







lubuntu remote xrdp






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 5 at 19:00









user68186

14.4k84461




14.4k84461










asked Mar 5 at 18:13









Nathan

11




11







  • 1




    I can't remember for sure, but doesn't it need to read start xfce4?
    – Robby1212
    Mar 5 at 19:00










  • Please edit your question and provide the link to the original web page where you got the four steps from. What does "it still does not work" mean? Please copy and paste all error and output messages you see into the question above.
    – user68186
    Mar 5 at 19:04












  • 1




    I can't remember for sure, but doesn't it need to read start xfce4?
    – Robby1212
    Mar 5 at 19:00










  • Please edit your question and provide the link to the original web page where you got the four steps from. What does "it still does not work" mean? Please copy and paste all error and output messages you see into the question above.
    – user68186
    Mar 5 at 19:04







1




1




I can't remember for sure, but doesn't it need to read start xfce4?
– Robby1212
Mar 5 at 19:00




I can't remember for sure, but doesn't it need to read start xfce4?
– Robby1212
Mar 5 at 19:00












Please edit your question and provide the link to the original web page where you got the four steps from. What does "it still does not work" mean? Please copy and paste all error and output messages you see into the question above.
– user68186
Mar 5 at 19:04




Please edit your question and provide the link to the original web page where you got the four steps from. What does "it still does not work" mean? Please copy and paste all error and output messages you see into the question above.
– user68186
Mar 5 at 19:04










1 Answer
1






active

oldest

votes

















up vote
0
down vote













You should edit only one file to have xfce desktop environment started



if you are the only user needing remote access, you can simply edit (or create) the ~/.xsession file and add the following line



  • echo xfce4-session >~/.xsession

or if multiple users are using the system, you can edit the /etc/xrdp/startwm.sh and add the following line at the end



  • echo xfce4-session >~/.xsession

This command will automatically populate the .xsession file o all the users



If you are using Ubuntu 14.04 (as mentioned in your question somewhere), you can try to get more information in the step by step guide provided here



Hope this help
Till next time
See ya






share|improve this answer




















    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "89"
    ;
    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',
    convertImagesToLinks: true,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1012146%2fremote-desktop-xrdp-install%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    You should edit only one file to have xfce desktop environment started



    if you are the only user needing remote access, you can simply edit (or create) the ~/.xsession file and add the following line



    • echo xfce4-session >~/.xsession

    or if multiple users are using the system, you can edit the /etc/xrdp/startwm.sh and add the following line at the end



    • echo xfce4-session >~/.xsession

    This command will automatically populate the .xsession file o all the users



    If you are using Ubuntu 14.04 (as mentioned in your question somewhere), you can try to get more information in the step by step guide provided here



    Hope this help
    Till next time
    See ya






    share|improve this answer
























      up vote
      0
      down vote













      You should edit only one file to have xfce desktop environment started



      if you are the only user needing remote access, you can simply edit (or create) the ~/.xsession file and add the following line



      • echo xfce4-session >~/.xsession

      or if multiple users are using the system, you can edit the /etc/xrdp/startwm.sh and add the following line at the end



      • echo xfce4-session >~/.xsession

      This command will automatically populate the .xsession file o all the users



      If you are using Ubuntu 14.04 (as mentioned in your question somewhere), you can try to get more information in the step by step guide provided here



      Hope this help
      Till next time
      See ya






      share|improve this answer






















        up vote
        0
        down vote










        up vote
        0
        down vote









        You should edit only one file to have xfce desktop environment started



        if you are the only user needing remote access, you can simply edit (or create) the ~/.xsession file and add the following line



        • echo xfce4-session >~/.xsession

        or if multiple users are using the system, you can edit the /etc/xrdp/startwm.sh and add the following line at the end



        • echo xfce4-session >~/.xsession

        This command will automatically populate the .xsession file o all the users



        If you are using Ubuntu 14.04 (as mentioned in your question somewhere), you can try to get more information in the step by step guide provided here



        Hope this help
        Till next time
        See ya






        share|improve this answer












        You should edit only one file to have xfce desktop environment started



        if you are the only user needing remote access, you can simply edit (or create) the ~/.xsession file and add the following line



        • echo xfce4-session >~/.xsession

        or if multiple users are using the system, you can edit the /etc/xrdp/startwm.sh and add the following line at the end



        • echo xfce4-session >~/.xsession

        This command will automatically populate the .xsession file o all the users



        If you are using Ubuntu 14.04 (as mentioned in your question somewhere), you can try to get more information in the step by step guide provided here



        Hope this help
        Till next time
        See ya







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Apr 28 at 9:50









        Griffon

        694411




        694411



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1012146%2fremote-desktop-xrdp-install%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            pylint3 and pip3 broken

            Missing snmpget and snmpwalk

            How to enroll fingerprints to Ubuntu 17.10 with VFS491