Unity launcher doesn't appear in VNC session
I'd like to have a unity desktop accessible via VNC on a precise server machine I have running. I installed the ubuntu-desktop
package. I'm launching a VNC session with the following in my ~/.vnc/xstartup
file:
#!/bin/sh
xrdb $HOME/.Xresources
xsetroot -solid grey
export XKL_XMODMAP_DISABLE=1
gnome-session --session=ubuntu-2d
What could the issue be here? The content of my /usr/share/gnome-session/sessions/ubuntu-2d.session
file (this is what 12.04 puts there by default) is:
[GNOME Session]
Name=Ubuntu 2D
RequiredComponents=gnome-settings-daemon;
RequiredProviders=windowmanager;panel;shell;
DefaultProvider-windowmanager=metacity
DefaultProvider-panel=unity-2d-panel
DefaultProvider-shell=unity-2d-shell
DesktopName=Unity
I don't know anything about unity-2d, but I guessed that the default session was not configured to use the launcher. I tried making the following modifications:
[GNOME Session]
Name=Ubuntu 2D
RequiredComponents=gnome-settings-daemon;
RequiredProviders=windowmanager;panel;shell;launcher;
DefaultProvider-windowmanager=metacity
DefaultProvider-panel=unity-2d-panel
DefaultProvider-shell=unity-2d-shell
DefaultProvider-launcher=unity-2d-launcher
DesktopName=Unity
But I got the following warning in my VNC log file:
gnome-session[10354]: WARNING: Unable to find default provider 'qr' of required provider 'launcher'
And the VNC session wouldn't even start with that configuration.
12.04 unity unity-2d vnc
add a comment |
I'd like to have a unity desktop accessible via VNC on a precise server machine I have running. I installed the ubuntu-desktop
package. I'm launching a VNC session with the following in my ~/.vnc/xstartup
file:
#!/bin/sh
xrdb $HOME/.Xresources
xsetroot -solid grey
export XKL_XMODMAP_DISABLE=1
gnome-session --session=ubuntu-2d
What could the issue be here? The content of my /usr/share/gnome-session/sessions/ubuntu-2d.session
file (this is what 12.04 puts there by default) is:
[GNOME Session]
Name=Ubuntu 2D
RequiredComponents=gnome-settings-daemon;
RequiredProviders=windowmanager;panel;shell;
DefaultProvider-windowmanager=metacity
DefaultProvider-panel=unity-2d-panel
DefaultProvider-shell=unity-2d-shell
DesktopName=Unity
I don't know anything about unity-2d, but I guessed that the default session was not configured to use the launcher. I tried making the following modifications:
[GNOME Session]
Name=Ubuntu 2D
RequiredComponents=gnome-settings-daemon;
RequiredProviders=windowmanager;panel;shell;launcher;
DefaultProvider-windowmanager=metacity
DefaultProvider-panel=unity-2d-panel
DefaultProvider-shell=unity-2d-shell
DefaultProvider-launcher=unity-2d-launcher
DesktopName=Unity
But I got the following warning in my VNC log file:
gnome-session[10354]: WARNING: Unable to find default provider 'qr' of required provider 'launcher'
And the VNC session wouldn't even start with that configuration.
12.04 unity unity-2d vnc
4
Can whoever has voted to close this as off-topic explain why?
– Eliah Kagan
Oct 1 '12 at 1:35
add a comment |
I'd like to have a unity desktop accessible via VNC on a precise server machine I have running. I installed the ubuntu-desktop
package. I'm launching a VNC session with the following in my ~/.vnc/xstartup
file:
#!/bin/sh
xrdb $HOME/.Xresources
xsetroot -solid grey
export XKL_XMODMAP_DISABLE=1
gnome-session --session=ubuntu-2d
What could the issue be here? The content of my /usr/share/gnome-session/sessions/ubuntu-2d.session
file (this is what 12.04 puts there by default) is:
[GNOME Session]
Name=Ubuntu 2D
RequiredComponents=gnome-settings-daemon;
RequiredProviders=windowmanager;panel;shell;
DefaultProvider-windowmanager=metacity
DefaultProvider-panel=unity-2d-panel
DefaultProvider-shell=unity-2d-shell
DesktopName=Unity
I don't know anything about unity-2d, but I guessed that the default session was not configured to use the launcher. I tried making the following modifications:
[GNOME Session]
Name=Ubuntu 2D
RequiredComponents=gnome-settings-daemon;
RequiredProviders=windowmanager;panel;shell;launcher;
DefaultProvider-windowmanager=metacity
DefaultProvider-panel=unity-2d-panel
DefaultProvider-shell=unity-2d-shell
DefaultProvider-launcher=unity-2d-launcher
DesktopName=Unity
But I got the following warning in my VNC log file:
gnome-session[10354]: WARNING: Unable to find default provider 'qr' of required provider 'launcher'
And the VNC session wouldn't even start with that configuration.
12.04 unity unity-2d vnc
I'd like to have a unity desktop accessible via VNC on a precise server machine I have running. I installed the ubuntu-desktop
package. I'm launching a VNC session with the following in my ~/.vnc/xstartup
file:
#!/bin/sh
xrdb $HOME/.Xresources
xsetroot -solid grey
export XKL_XMODMAP_DISABLE=1
gnome-session --session=ubuntu-2d
What could the issue be here? The content of my /usr/share/gnome-session/sessions/ubuntu-2d.session
file (this is what 12.04 puts there by default) is:
[GNOME Session]
Name=Ubuntu 2D
RequiredComponents=gnome-settings-daemon;
RequiredProviders=windowmanager;panel;shell;
DefaultProvider-windowmanager=metacity
DefaultProvider-panel=unity-2d-panel
DefaultProvider-shell=unity-2d-shell
DesktopName=Unity
I don't know anything about unity-2d, but I guessed that the default session was not configured to use the launcher. I tried making the following modifications:
[GNOME Session]
Name=Ubuntu 2D
RequiredComponents=gnome-settings-daemon;
RequiredProviders=windowmanager;panel;shell;launcher;
DefaultProvider-windowmanager=metacity
DefaultProvider-panel=unity-2d-panel
DefaultProvider-shell=unity-2d-shell
DefaultProvider-launcher=unity-2d-launcher
DesktopName=Unity
But I got the following warning in my VNC log file:
gnome-session[10354]: WARNING: Unable to find default provider 'qr' of required provider 'launcher'
And the VNC session wouldn't even start with that configuration.
12.04 unity unity-2d vnc
12.04 unity unity-2d vnc
edited Jul 5 '12 at 22:03
Lorin Hochstein
asked Jul 5 '12 at 21:21
Lorin HochsteinLorin Hochstein
1,94061929
1,94061929
4
Can whoever has voted to close this as off-topic explain why?
– Eliah Kagan
Oct 1 '12 at 1:35
add a comment |
4
Can whoever has voted to close this as off-topic explain why?
– Eliah Kagan
Oct 1 '12 at 1:35
4
4
Can whoever has voted to close this as off-topic explain why?
– Eliah Kagan
Oct 1 '12 at 1:35
Can whoever has voted to close this as off-topic explain why?
– Eliah Kagan
Oct 1 '12 at 1:35
add a comment |
3 Answers
3
active
oldest
votes
I found this over on the realvnc knowledge base. It works for my set up, I can vnc to my Ubuntu box and the launcher is there ready to go.
Adding just a link as answer is not recommended , while you can modify the answer according to the asked question and present it here and ofcourse cite its source for further reference.
– atenz
Jul 7 '12 at 16:28
add a comment |
Do you have Docky or any other launchers running? If so it might be that. I had the exact same problem and after closing Docky the Unity launcher appeared.
If Unity launcher doesn't appear after you close Docky or whatever other launcher(s) you were running, take Docky out of startup apps and reboot.
See if it works then.
add a comment |
Your configuration is for Gnome shell
.
For vnc
, Xfce
is best.
you can install and configure it from this link
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%2f160160%2funity-launcher-doesnt-appear-in-vnc-session%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I found this over on the realvnc knowledge base. It works for my set up, I can vnc to my Ubuntu box and the launcher is there ready to go.
Adding just a link as answer is not recommended , while you can modify the answer according to the asked question and present it here and ofcourse cite its source for further reference.
– atenz
Jul 7 '12 at 16:28
add a comment |
I found this over on the realvnc knowledge base. It works for my set up, I can vnc to my Ubuntu box and the launcher is there ready to go.
Adding just a link as answer is not recommended , while you can modify the answer according to the asked question and present it here and ofcourse cite its source for further reference.
– atenz
Jul 7 '12 at 16:28
add a comment |
I found this over on the realvnc knowledge base. It works for my set up, I can vnc to my Ubuntu box and the launcher is there ready to go.
I found this over on the realvnc knowledge base. It works for my set up, I can vnc to my Ubuntu box and the launcher is there ready to go.
answered Jul 7 '12 at 16:17
fitofito
1
1
Adding just a link as answer is not recommended , while you can modify the answer according to the asked question and present it here and ofcourse cite its source for further reference.
– atenz
Jul 7 '12 at 16:28
add a comment |
Adding just a link as answer is not recommended , while you can modify the answer according to the asked question and present it here and ofcourse cite its source for further reference.
– atenz
Jul 7 '12 at 16:28
Adding just a link as answer is not recommended , while you can modify the answer according to the asked question and present it here and ofcourse cite its source for further reference.
– atenz
Jul 7 '12 at 16:28
Adding just a link as answer is not recommended , while you can modify the answer according to the asked question and present it here and ofcourse cite its source for further reference.
– atenz
Jul 7 '12 at 16:28
add a comment |
Do you have Docky or any other launchers running? If so it might be that. I had the exact same problem and after closing Docky the Unity launcher appeared.
If Unity launcher doesn't appear after you close Docky or whatever other launcher(s) you were running, take Docky out of startup apps and reboot.
See if it works then.
add a comment |
Do you have Docky or any other launchers running? If so it might be that. I had the exact same problem and after closing Docky the Unity launcher appeared.
If Unity launcher doesn't appear after you close Docky or whatever other launcher(s) you were running, take Docky out of startup apps and reboot.
See if it works then.
add a comment |
Do you have Docky or any other launchers running? If so it might be that. I had the exact same problem and after closing Docky the Unity launcher appeared.
If Unity launcher doesn't appear after you close Docky or whatever other launcher(s) you were running, take Docky out of startup apps and reboot.
See if it works then.
Do you have Docky or any other launchers running? If so it might be that. I had the exact same problem and after closing Docky the Unity launcher appeared.
If Unity launcher doesn't appear after you close Docky or whatever other launcher(s) you were running, take Docky out of startup apps and reboot.
See if it works then.
edited Jul 31 '12 at 0:07
Eliah Kagan
81.7k21227364
81.7k21227364
answered Jul 30 '12 at 19:02
RichieRichie
1
1
add a comment |
add a comment |
Your configuration is for Gnome shell
.
For vnc
, Xfce
is best.
you can install and configure it from this link
add a comment |
Your configuration is for Gnome shell
.
For vnc
, Xfce
is best.
you can install and configure it from this link
add a comment |
Your configuration is for Gnome shell
.
For vnc
, Xfce
is best.
you can install and configure it from this link
Your configuration is for Gnome shell
.
For vnc
, Xfce
is best.
you can install and configure it from this link
answered Aug 6 '17 at 6:34
NasirNasir
535
535
add a comment |
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%2f160160%2funity-launcher-doesnt-appear-in-vnc-session%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
4
Can whoever has voted to close this as off-topic explain why?
– Eliah Kagan
Oct 1 '12 at 1:35