Why VNC not showing actual Remote Desktop
Clash Royale CLAN TAG#URR8PPP
Ok i installed vnc server on RHEL 5.9 and also installed Tightvnc viewer on windows 7 and from RHEL i started vncserver and assigned the password using vncpasswd.
Then from tightvnc viewer i gave the IP and listening port xxx.xxx.xxx.xxx:1. It successfully connected with VNC server installed and running on RHEL. And then I gave the password and then BOOOM it gave me this hideous interface
When Actual Desktop is like this
Ok people tell me what Im missing
rhel vnc
add a comment |
Ok i installed vnc server on RHEL 5.9 and also installed Tightvnc viewer on windows 7 and from RHEL i started vncserver and assigned the password using vncpasswd.
Then from tightvnc viewer i gave the IP and listening port xxx.xxx.xxx.xxx:1. It successfully connected with VNC server installed and running on RHEL. And then I gave the password and then BOOOM it gave me this hideous interface
When Actual Desktop is like this
Ok people tell me what Im missing
rhel vnc
7
What you are missing is an appreciation of the minimalistic beauty of twm.
– Warren Young
Jan 18 '13 at 14:27
@WarrenYoung: Indeed, which is the hideous one again?
– sr_
Jan 18 '13 at 14:28
add a comment |
Ok i installed vnc server on RHEL 5.9 and also installed Tightvnc viewer on windows 7 and from RHEL i started vncserver and assigned the password using vncpasswd.
Then from tightvnc viewer i gave the IP and listening port xxx.xxx.xxx.xxx:1. It successfully connected with VNC server installed and running on RHEL. And then I gave the password and then BOOOM it gave me this hideous interface
When Actual Desktop is like this
Ok people tell me what Im missing
rhel vnc
Ok i installed vnc server on RHEL 5.9 and also installed Tightvnc viewer on windows 7 and from RHEL i started vncserver and assigned the password using vncpasswd.
Then from tightvnc viewer i gave the IP and listening port xxx.xxx.xxx.xxx:1. It successfully connected with VNC server installed and running on RHEL. And then I gave the password and then BOOOM it gave me this hideous interface
When Actual Desktop is like this
Ok people tell me what Im missing
rhel vnc
rhel vnc
asked Jan 18 '13 at 14:00
OmiPenguinOmiPenguin
1,550265890
1,550265890
7
What you are missing is an appreciation of the minimalistic beauty of twm.
– Warren Young
Jan 18 '13 at 14:27
@WarrenYoung: Indeed, which is the hideous one again?
– sr_
Jan 18 '13 at 14:28
add a comment |
7
What you are missing is an appreciation of the minimalistic beauty of twm.
– Warren Young
Jan 18 '13 at 14:27
@WarrenYoung: Indeed, which is the hideous one again?
– sr_
Jan 18 '13 at 14:28
7
7
What you are missing is an appreciation of the minimalistic beauty of twm.
– Warren Young
Jan 18 '13 at 14:27
What you are missing is an appreciation of the minimalistic beauty of twm.
– Warren Young
Jan 18 '13 at 14:27
@WarrenYoung: Indeed, which is the hideous one again?
– sr_
Jan 18 '13 at 14:28
@WarrenYoung: Indeed, which is the hideous one again?
– sr_
Jan 18 '13 at 14:28
add a comment |
5 Answers
5
active
oldest
votes
What you see probably is the X11 session defined in ~/.vnc/xstartup
, a minimal X11 session, maybe something like (this is how it looks like on Debian)
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &
on another display, probably :1
.
There're two things you can do:
- To access a different desktop that looks the same, you have to start it in this
xstartup
file, e.g.
withexec gnome-session
or something similar, have a look for
documentation onxinitrc
orxsession[rc]
) - To access the same desktop session, you need a different VNC server.
x11vnc
can do desktop sharing; in your GNOME environment, Vino is probably the preferable choice (as Ignacio pointed out)
Great info. Just one quick question I have three users on server and I want only TWO users to have access to vnc server. root and emerg users can use the vnc. HOW TO DO THIS
– OmiPenguin
Jan 19 '13 at 8:27
(If I guessed the VNC server you use right,) you might be able to useXvnc
withinetd
as described in its man page (last paragraph of the linked section). Another (kind of high-overhead but neat) solution might be using the Guacamole remote desktop gateway and configuring access there.
– sr_
Jan 19 '13 at 11:47
add a comment |
vncserver
doesn't connect to the actual desktop; it creates a virtual desktop that is configured separately. If you want to access the actual desktop then you need to use either the VNC X extension or Vino.
7
Could you please provide a bit more information of how to do this
– OmiPenguin
Jan 18 '13 at 14:13
@Ignacio, Could you please add few details. That will definitely help beginner. Since, I couldn't understand, what to do with VNC X extension
– Ravi
Jan 5 '16 at 6:16
add a comment |
Please uncomment following two lines in xstartup file under ~/.vnc/xstartup
:
Before:
#unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
After:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
Please could you explain in your answer what those lines do?
– mwfearnley
Mar 14 '17 at 11:08
add a comment |
I faced the same issue on solaris 11 and after a little search I found out the gnome desktop is not even installed. So I installed it using:
pkg install --accept solaris-desktop
Then killed the running vnc-server:
vncserver -kill :1
and after running vnc again using this command
vncserver -kill :1
I was able to see the real desktop using vnc-viewer
.
add a comment |
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
gnome-session &
Add gnome-session &
at the end of the xstartup file
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f61750%2fwhy-vnc-not-showing-actual-remote-desktop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
What you see probably is the X11 session defined in ~/.vnc/xstartup
, a minimal X11 session, maybe something like (this is how it looks like on Debian)
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &
on another display, probably :1
.
There're two things you can do:
- To access a different desktop that looks the same, you have to start it in this
xstartup
file, e.g.
withexec gnome-session
or something similar, have a look for
documentation onxinitrc
orxsession[rc]
) - To access the same desktop session, you need a different VNC server.
x11vnc
can do desktop sharing; in your GNOME environment, Vino is probably the preferable choice (as Ignacio pointed out)
Great info. Just one quick question I have three users on server and I want only TWO users to have access to vnc server. root and emerg users can use the vnc. HOW TO DO THIS
– OmiPenguin
Jan 19 '13 at 8:27
(If I guessed the VNC server you use right,) you might be able to useXvnc
withinetd
as described in its man page (last paragraph of the linked section). Another (kind of high-overhead but neat) solution might be using the Guacamole remote desktop gateway and configuring access there.
– sr_
Jan 19 '13 at 11:47
add a comment |
What you see probably is the X11 session defined in ~/.vnc/xstartup
, a minimal X11 session, maybe something like (this is how it looks like on Debian)
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &
on another display, probably :1
.
There're two things you can do:
- To access a different desktop that looks the same, you have to start it in this
xstartup
file, e.g.
withexec gnome-session
or something similar, have a look for
documentation onxinitrc
orxsession[rc]
) - To access the same desktop session, you need a different VNC server.
x11vnc
can do desktop sharing; in your GNOME environment, Vino is probably the preferable choice (as Ignacio pointed out)
Great info. Just one quick question I have three users on server and I want only TWO users to have access to vnc server. root and emerg users can use the vnc. HOW TO DO THIS
– OmiPenguin
Jan 19 '13 at 8:27
(If I guessed the VNC server you use right,) you might be able to useXvnc
withinetd
as described in its man page (last paragraph of the linked section). Another (kind of high-overhead but neat) solution might be using the Guacamole remote desktop gateway and configuring access there.
– sr_
Jan 19 '13 at 11:47
add a comment |
What you see probably is the X11 session defined in ~/.vnc/xstartup
, a minimal X11 session, maybe something like (this is how it looks like on Debian)
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &
on another display, probably :1
.
There're two things you can do:
- To access a different desktop that looks the same, you have to start it in this
xstartup
file, e.g.
withexec gnome-session
or something similar, have a look for
documentation onxinitrc
orxsession[rc]
) - To access the same desktop session, you need a different VNC server.
x11vnc
can do desktop sharing; in your GNOME environment, Vino is probably the preferable choice (as Ignacio pointed out)
What you see probably is the X11 session defined in ~/.vnc/xstartup
, a minimal X11 session, maybe something like (this is how it looks like on Debian)
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &
on another display, probably :1
.
There're two things you can do:
- To access a different desktop that looks the same, you have to start it in this
xstartup
file, e.g.
withexec gnome-session
or something similar, have a look for
documentation onxinitrc
orxsession[rc]
) - To access the same desktop session, you need a different VNC server.
x11vnc
can do desktop sharing; in your GNOME environment, Vino is probably the preferable choice (as Ignacio pointed out)
edited Apr 13 '17 at 12:36
Community♦
1
1
answered Jan 18 '13 at 14:27
sr_sr_
13.1k3445
13.1k3445
Great info. Just one quick question I have three users on server and I want only TWO users to have access to vnc server. root and emerg users can use the vnc. HOW TO DO THIS
– OmiPenguin
Jan 19 '13 at 8:27
(If I guessed the VNC server you use right,) you might be able to useXvnc
withinetd
as described in its man page (last paragraph of the linked section). Another (kind of high-overhead but neat) solution might be using the Guacamole remote desktop gateway and configuring access there.
– sr_
Jan 19 '13 at 11:47
add a comment |
Great info. Just one quick question I have three users on server and I want only TWO users to have access to vnc server. root and emerg users can use the vnc. HOW TO DO THIS
– OmiPenguin
Jan 19 '13 at 8:27
(If I guessed the VNC server you use right,) you might be able to useXvnc
withinetd
as described in its man page (last paragraph of the linked section). Another (kind of high-overhead but neat) solution might be using the Guacamole remote desktop gateway and configuring access there.
– sr_
Jan 19 '13 at 11:47
Great info. Just one quick question I have three users on server and I want only TWO users to have access to vnc server. root and emerg users can use the vnc. HOW TO DO THIS
– OmiPenguin
Jan 19 '13 at 8:27
Great info. Just one quick question I have three users on server and I want only TWO users to have access to vnc server. root and emerg users can use the vnc. HOW TO DO THIS
– OmiPenguin
Jan 19 '13 at 8:27
(If I guessed the VNC server you use right,) you might be able to use
Xvnc
with inetd
as described in its man page (last paragraph of the linked section). Another (kind of high-overhead but neat) solution might be using the Guacamole remote desktop gateway and configuring access there.– sr_
Jan 19 '13 at 11:47
(If I guessed the VNC server you use right,) you might be able to use
Xvnc
with inetd
as described in its man page (last paragraph of the linked section). Another (kind of high-overhead but neat) solution might be using the Guacamole remote desktop gateway and configuring access there.– sr_
Jan 19 '13 at 11:47
add a comment |
vncserver
doesn't connect to the actual desktop; it creates a virtual desktop that is configured separately. If you want to access the actual desktop then you need to use either the VNC X extension or Vino.
7
Could you please provide a bit more information of how to do this
– OmiPenguin
Jan 18 '13 at 14:13
@Ignacio, Could you please add few details. That will definitely help beginner. Since, I couldn't understand, what to do with VNC X extension
– Ravi
Jan 5 '16 at 6:16
add a comment |
vncserver
doesn't connect to the actual desktop; it creates a virtual desktop that is configured separately. If you want to access the actual desktop then you need to use either the VNC X extension or Vino.
7
Could you please provide a bit more information of how to do this
– OmiPenguin
Jan 18 '13 at 14:13
@Ignacio, Could you please add few details. That will definitely help beginner. Since, I couldn't understand, what to do with VNC X extension
– Ravi
Jan 5 '16 at 6:16
add a comment |
vncserver
doesn't connect to the actual desktop; it creates a virtual desktop that is configured separately. If you want to access the actual desktop then you need to use either the VNC X extension or Vino.
vncserver
doesn't connect to the actual desktop; it creates a virtual desktop that is configured separately. If you want to access the actual desktop then you need to use either the VNC X extension or Vino.
answered Jan 18 '13 at 14:07
Ignacio Vazquez-AbramsIgnacio Vazquez-Abrams
33.6k66982
33.6k66982
7
Could you please provide a bit more information of how to do this
– OmiPenguin
Jan 18 '13 at 14:13
@Ignacio, Could you please add few details. That will definitely help beginner. Since, I couldn't understand, what to do with VNC X extension
– Ravi
Jan 5 '16 at 6:16
add a comment |
7
Could you please provide a bit more information of how to do this
– OmiPenguin
Jan 18 '13 at 14:13
@Ignacio, Could you please add few details. That will definitely help beginner. Since, I couldn't understand, what to do with VNC X extension
– Ravi
Jan 5 '16 at 6:16
7
7
Could you please provide a bit more information of how to do this
– OmiPenguin
Jan 18 '13 at 14:13
Could you please provide a bit more information of how to do this
– OmiPenguin
Jan 18 '13 at 14:13
@Ignacio, Could you please add few details. That will definitely help beginner. Since, I couldn't understand, what to do with VNC X extension
– Ravi
Jan 5 '16 at 6:16
@Ignacio, Could you please add few details. That will definitely help beginner. Since, I couldn't understand, what to do with VNC X extension
– Ravi
Jan 5 '16 at 6:16
add a comment |
Please uncomment following two lines in xstartup file under ~/.vnc/xstartup
:
Before:
#unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
After:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
Please could you explain in your answer what those lines do?
– mwfearnley
Mar 14 '17 at 11:08
add a comment |
Please uncomment following two lines in xstartup file under ~/.vnc/xstartup
:
Before:
#unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
After:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
Please could you explain in your answer what those lines do?
– mwfearnley
Mar 14 '17 at 11:08
add a comment |
Please uncomment following two lines in xstartup file under ~/.vnc/xstartup
:
Before:
#unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
After:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
Please uncomment following two lines in xstartup file under ~/.vnc/xstartup
:
Before:
#unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
After:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
edited Oct 30 '15 at 7:30
garethTheRed
24.8k36381
24.8k36381
answered Oct 30 '15 at 7:18
Gaurav KaseraGaurav Kasera
111
111
Please could you explain in your answer what those lines do?
– mwfearnley
Mar 14 '17 at 11:08
add a comment |
Please could you explain in your answer what those lines do?
– mwfearnley
Mar 14 '17 at 11:08
Please could you explain in your answer what those lines do?
– mwfearnley
Mar 14 '17 at 11:08
Please could you explain in your answer what those lines do?
– mwfearnley
Mar 14 '17 at 11:08
add a comment |
I faced the same issue on solaris 11 and after a little search I found out the gnome desktop is not even installed. So I installed it using:
pkg install --accept solaris-desktop
Then killed the running vnc-server:
vncserver -kill :1
and after running vnc again using this command
vncserver -kill :1
I was able to see the real desktop using vnc-viewer
.
add a comment |
I faced the same issue on solaris 11 and after a little search I found out the gnome desktop is not even installed. So I installed it using:
pkg install --accept solaris-desktop
Then killed the running vnc-server:
vncserver -kill :1
and after running vnc again using this command
vncserver -kill :1
I was able to see the real desktop using vnc-viewer
.
add a comment |
I faced the same issue on solaris 11 and after a little search I found out the gnome desktop is not even installed. So I installed it using:
pkg install --accept solaris-desktop
Then killed the running vnc-server:
vncserver -kill :1
and after running vnc again using this command
vncserver -kill :1
I was able to see the real desktop using vnc-viewer
.
I faced the same issue on solaris 11 and after a little search I found out the gnome desktop is not even installed. So I installed it using:
pkg install --accept solaris-desktop
Then killed the running vnc-server:
vncserver -kill :1
and after running vnc again using this command
vncserver -kill :1
I was able to see the real desktop using vnc-viewer
.
answered Feb 19 at 13:17
Vahid FVahid F
134
134
add a comment |
add a comment |
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
gnome-session &
Add gnome-session &
at the end of the xstartup file
add a comment |
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
gnome-session &
Add gnome-session &
at the end of the xstartup file
add a comment |
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
gnome-session &
Add gnome-session &
at the end of the xstartup file
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
gnome-session &
Add gnome-session &
at the end of the xstartup file
edited Jul 15 '15 at 13:12
Community♦
1
1
answered Apr 2 '15 at 11:21
UmerUmer
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f61750%2fwhy-vnc-not-showing-actual-remote-desktop%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
7
What you are missing is an appreciation of the minimalistic beauty of twm.
– Warren Young
Jan 18 '13 at 14:27
@WarrenYoung: Indeed, which is the hideous one again?
– sr_
Jan 18 '13 at 14:28