Redian新闻
>
问个linux的"remote desktop"的问题。
avatar
问个linux的"remote desktop"的问题。# Linux - Linux 操作系统
b*a
1
我的问题就是fedora下面有没有类似windows的remote desktop这样的软件, 远程登录
上,可以看见当前kde/gnome的桌面。
windows下面可以用remote desktop,或者是VNC,Fedora下面的VNC,就是新开一个term
inal或者新的x-windows而已,或者说我俺没有发掘出怎样显示当前的桌面。
谢谢。
avatar
a*e
2
fedora/vnc give u a new x-windows, that can be either kde or gnome or xfce
desktop, right?
isn't it what u wanted?
also u can try freenx.
If u are talkign about resuming an existing session like winxp, i don't know
how to do it but i believe there is a way to do it in linux as well. One
more thing, winxp can only allow one remote desktop, sucks big time.

term

【在 b******a 的大作中提到】
: 我的问题就是fedora下面有没有类似windows的remote desktop这样的软件, 远程登录
: 上,可以看见当前kde/gnome的桌面。
: windows下面可以用remote desktop,或者是VNC,Fedora下面的VNC,就是新开一个term
: inal或者新的x-windows而已,或者说我俺没有发掘出怎样显示当前的桌面。
: 谢谢。

avatar
z*r
3
VNC可以呀,port 5900就是当前窗口

term

【在 b******a 的大作中提到】
: 我的问题就是fedora下面有没有类似windows的remote desktop这样的软件, 远程登录
: 上,可以看见当前kde/gnome的桌面。
: windows下面可以用remote desktop,或者是VNC,Fedora下面的VNC,就是新开一个term
: inal或者新的x-windows而已,或者说我俺没有发掘出怎样显示当前的桌面。
: 谢谢。

avatar
a*e
4
what kind bandwith can support vnc or freenx?
I am using a cable and frenx, found it's too slow, cable is $30/month, i am
not sure upload speed.

【在 z**r 的大作中提到】
: VNC可以呀,port 5900就是当前窗口
:
: term

avatar
z*r
5
384kbps is ok for freenx
768kbps is ok for VNC
go to speakeasy.net/speedtest to test your both downstream/upstream speed

am

【在 a*******e 的大作中提到】
: what kind bandwith can support vnc or freenx?
: I am using a cable and frenx, found it's too slow, cable is $30/month, i am
: not sure upload speed.

avatar
N*w
6
freenx always wins.

【在 z**r 的大作中提到】
: 384kbps is ok for freenx
: 768kbps is ok for VNC
: go to speakeasy.net/speedtest to test your both downstream/upstream speed
:
: am

avatar
F*e
7
Freenx is 'true' rdp. while VNC transfers images which can be a problem if
you have slow network.
avatar
o*u
8
I used x11vnc for this purpose. Modem was ok as long as you were patient
enough, hehe
avatar
b*a
9
do I need change /etc/sysconfig/vncservers?
so should I be root?

【在 z**r 的大作中提到】
: VNC可以呀,port 5900就是当前窗口
:
: term

avatar
b*a
10
yes. I want to resume an existing session. not open a new x session.
For example, in KDE/gnome, I opened a new terminal and ran a script in my la
b, and I want to see the result of this script from home using VNC, how can
I do this?

know

【在 a*******e 的大作中提到】
: fedora/vnc give u a new x-windows, that can be either kde or gnome or xfce
: desktop, right?
: isn't it what u wanted?
: also u can try freenx.
: If u are talkign about resuming an existing session like winxp, i don't know
: how to do it but i believe there is a way to do it in linux as well. One
: more thing, winxp can only allow one remote desktop, sucks big time.
:
: term

avatar
a*e
11
if it's only script, no X involved, u don't need VNC, ssh and screen are
enough
if freenx is necessary, search FreeNX session suspend/resume
I didn't do it, but I guess u can start from there.

la
can

【在 b******a 的大作中提到】
: yes. I want to resume an existing session. not open a new x session.
: For example, in KDE/gnome, I opened a new terminal and ran a script in my la
: b, and I want to see the result of this script from home using VNC, how can
: I do this?
:
: know

avatar
z*r
12
not really, freenx is not that stable comparing to VNC

【在 N****w 的大作中提到】
: freenx always wins.
avatar
s*n
13
vi $HOME/.vnc/xstartup
make it look like this:
#!/bin/sh
# Uncomment the following two lines for normal desktop:
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" &
startx &

la
can

【在 b******a 的大作中提到】
: yes. I want to resume an existing session. not open a new x session.
: For example, in KDE/gnome, I opened a new terminal and ran a script in my la
: b, and I want to see the result of this script from home using VNC, how can
: I do this?
:
: know

avatar
b*a
14
no. X is involved. I have several other software is running under X window,
so I need to resume it.

【在 a*******e 的大作中提到】
: if it's only script, no X involved, u don't need VNC, ssh and screen are
: enough
: if freenx is necessary, search FreeNX session suspend/resume
: I didn't do it, but I guess u can start from there.
:
: la
: can

avatar
b*a
15
Yes. mine is the same.
I also changed /etc/sysconfig/vncservers liks this:
VNCSERVERS="1:my_username"
VNCSERVERARGS[1]="-geometry 1280x1024 -depth 8"
and restart vncservice, but this way can only open a new X window, not
resume the old ones, which I am running my Apps.
thanks.

【在 s****n 的大作中提到】
: vi $HOME/.vnc/xstartup
: make it look like this:
: #!/bin/sh
: # Uncomment the following two lines for normal desktop:
: 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 &

avatar
a*i
16

Well, considering how slow VNC is, FreeNX is good enough. :) I get like one
disconnect every 30 hours of nonstop using it. And the chance of not able to
resume that session is quite low.

【在 z**r 的大作中提到】
: not really, freenx is not that stable comparing to VNC
avatar
b*a
17
how can you configure to use 5900 directly?
I change /etc/sysconfig/vncservers, and it requires you must start from 1,
which means port 5900+1, if you change to 0, VNC client even can not connect
to the server.
thanks.

【在 z**r 的大作中提到】
: VNC可以呀,port 5900就是当前窗口
:
: term

avatar
i*r
18
rdesktop works exactly the same as remote desktop in Windows
avatar
o*u
19
try x11vnc, its default is mapping your current desktop at 5900
avatar
a*e
20
俺家里上载480kbps用freenx还是觉得慢的很阿,鼠标响应得1妙以上

【在 z**r 的大作中提到】
: not really, freenx is not that stable comparing to VNC
avatar
e*c
21
同用x11vnc。
avatar
s*y
22

connect
Is this what you want to connect to display 0?
http://www.realvnc.com/products/free/4.1/x0.html
I can access my Linux desktop from a vnc client.

【在 b******a 的大作中提到】
: how can you configure to use 5900 directly?
: I change /etc/sysconfig/vncservers, and it requires you must start from 1,
: which means port 5900+1, if you change to 0, VNC client even can not connect
: to the server.
: thanks.

avatar
b*a
23
yes. thank you soooooooooooooooooooooooooooooooooooo much!!!!

【在 s****y 的大作中提到】
:
: connect
: Is this what you want to connect to display 0?
: http://www.realvnc.com/products/free/4.1/x0.html
: I can access my Linux desktop from a vnc client.

avatar
p*3
24
试试 tsclient
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。