Configuring and using Xdmcp with gdm3 on ubuntu 18.04
On a fresh minimal ubuntu 18.04 installation, I tried to activate and use the gdm3 xdmcp server.
Here are steps I followed:
- Installation
I used the normal installation.
"Download updates during installation" was checked
"Install 3rd parties for Gfx/Wifi/.." was not checked.
- Xdmcp server
1 . Edit /etc/hosts.allow to set (cf. Gnome doc.).
ALL: ALL #Wide opened to be sure the problem isn't here
2 . Edit /etc/gdm3/custom.conf to set:
[security]
DisallowTCP=false
[xdmcp]
Enable=true
3 . Restart gdm
sudo /etc/init.d/gdm3 restart
- Xdmcp client
sudo apt install xnest
Xnest -query localhost -geometry 1024x768 :1
Unfortunately, I only have a black screen with regular white flash.
Where did I do something wrong ?
Thanks for your help.
Christophe C.
18.04 gdm xdmcp
add a comment |
On a fresh minimal ubuntu 18.04 installation, I tried to activate and use the gdm3 xdmcp server.
Here are steps I followed:
- Installation
I used the normal installation.
"Download updates during installation" was checked
"Install 3rd parties for Gfx/Wifi/.." was not checked.
- Xdmcp server
1 . Edit /etc/hosts.allow to set (cf. Gnome doc.).
ALL: ALL #Wide opened to be sure the problem isn't here
2 . Edit /etc/gdm3/custom.conf to set:
[security]
DisallowTCP=false
[xdmcp]
Enable=true
3 . Restart gdm
sudo /etc/init.d/gdm3 restart
- Xdmcp client
sudo apt install xnest
Xnest -query localhost -geometry 1024x768 :1
Unfortunately, I only have a black screen with regular white flash.
Where did I do something wrong ?
Thanks for your help.
Christophe C.
18.04 gdm xdmcp
add a comment |
On a fresh minimal ubuntu 18.04 installation, I tried to activate and use the gdm3 xdmcp server.
Here are steps I followed:
- Installation
I used the normal installation.
"Download updates during installation" was checked
"Install 3rd parties for Gfx/Wifi/.." was not checked.
- Xdmcp server
1 . Edit /etc/hosts.allow to set (cf. Gnome doc.).
ALL: ALL #Wide opened to be sure the problem isn't here
2 . Edit /etc/gdm3/custom.conf to set:
[security]
DisallowTCP=false
[xdmcp]
Enable=true
3 . Restart gdm
sudo /etc/init.d/gdm3 restart
- Xdmcp client
sudo apt install xnest
Xnest -query localhost -geometry 1024x768 :1
Unfortunately, I only have a black screen with regular white flash.
Where did I do something wrong ?
Thanks for your help.
Christophe C.
18.04 gdm xdmcp
On a fresh minimal ubuntu 18.04 installation, I tried to activate and use the gdm3 xdmcp server.
Here are steps I followed:
- Installation
I used the normal installation.
"Download updates during installation" was checked
"Install 3rd parties for Gfx/Wifi/.." was not checked.
- Xdmcp server
1 . Edit /etc/hosts.allow to set (cf. Gnome doc.).
ALL: ALL #Wide opened to be sure the problem isn't here
2 . Edit /etc/gdm3/custom.conf to set:
[security]
DisallowTCP=false
[xdmcp]
Enable=true
3 . Restart gdm
sudo /etc/init.d/gdm3 restart
- Xdmcp client
sudo apt install xnest
Xnest -query localhost -geometry 1024x768 :1
Unfortunately, I only have a black screen with regular white flash.
Where did I do something wrong ?
Thanks for your help.
Christophe C.
18.04 gdm xdmcp
18.04 gdm xdmcp
asked May 9 '18 at 13:48
user827848user827848
2113
2113
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
In case soemone else finds this question and has problems getting XDMCP to work with gdm3, I managed to get it working by setting gdm3 to use xorg instead of wayland.
/etc/gdm3/custom.conf
[daemon]
# Uncoment the line below to force the login screen to use Xorg
WaylandEnable=false
Hello Pathin, Thanks a lot for those information. I didn't yet have the time to test it but I will comment when it will be done.
– user827848
Sep 24 '18 at 19:05
add a comment |
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',
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%2faskubuntu.com%2fquestions%2f1034057%2fconfiguring-and-using-xdmcp-with-gdm3-on-ubuntu-18-04%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
In case soemone else finds this question and has problems getting XDMCP to work with gdm3, I managed to get it working by setting gdm3 to use xorg instead of wayland.
/etc/gdm3/custom.conf
[daemon]
# Uncoment the line below to force the login screen to use Xorg
WaylandEnable=false
Hello Pathin, Thanks a lot for those information. I didn't yet have the time to test it but I will comment when it will be done.
– user827848
Sep 24 '18 at 19:05
add a comment |
In case soemone else finds this question and has problems getting XDMCP to work with gdm3, I managed to get it working by setting gdm3 to use xorg instead of wayland.
/etc/gdm3/custom.conf
[daemon]
# Uncoment the line below to force the login screen to use Xorg
WaylandEnable=false
Hello Pathin, Thanks a lot for those information. I didn't yet have the time to test it but I will comment when it will be done.
– user827848
Sep 24 '18 at 19:05
add a comment |
In case soemone else finds this question and has problems getting XDMCP to work with gdm3, I managed to get it working by setting gdm3 to use xorg instead of wayland.
/etc/gdm3/custom.conf
[daemon]
# Uncoment the line below to force the login screen to use Xorg
WaylandEnable=false
In case soemone else finds this question and has problems getting XDMCP to work with gdm3, I managed to get it working by setting gdm3 to use xorg instead of wayland.
/etc/gdm3/custom.conf
[daemon]
# Uncoment the line below to force the login screen to use Xorg
WaylandEnable=false
answered Sep 7 '18 at 0:58
PathinPathin
43646
43646
Hello Pathin, Thanks a lot for those information. I didn't yet have the time to test it but I will comment when it will be done.
– user827848
Sep 24 '18 at 19:05
add a comment |
Hello Pathin, Thanks a lot for those information. I didn't yet have the time to test it but I will comment when it will be done.
– user827848
Sep 24 '18 at 19:05
Hello Pathin, Thanks a lot for those information. I didn't yet have the time to test it but I will comment when it will be done.
– user827848
Sep 24 '18 at 19:05
Hello Pathin, Thanks a lot for those information. I didn't yet have the time to test it but I will comment when it will be done.
– user827848
Sep 24 '18 at 19:05
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1034057%2fconfiguring-and-using-xdmcp-with-gdm3-on-ubuntu-18-04%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