Remote Desktop XRDP install
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
lubuntu remote xrdp
add a comment |Â
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
lubuntu remote xrdp
1
I can't remember for sure, but doesn't it need to readstart 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
add a comment |Â
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
lubuntu remote xrdp
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
lubuntu remote xrdp
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 readstart 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
add a comment |Â
1
I can't remember for sure, but doesn't it need to readstart 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
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
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
answered Apr 28 at 9:50
Griffon
694411
694411
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
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