安装了Fedora8,由于不能在办公的地方放两台电脑,因此我把其中一台放到了机房,除了ssh之外,难道不可以象windows一样远程控制着Linux的桌面吗?
看到Fedora8本身就有“远程桌面”的选项,我选择了之后不知道该怎么用,在网络上查找部分资料后发现,vnc有forlinux版本的,我之前一直对vnc有个不太好的认识,认为他就是个后台软件、黑客软件。
今天发现这个东西功能也蛮强大的。
下面是我配置VNC的过程:
1:安装vnc
执行命令 yum install vnc-server
安装的过程中提示:
Importing GPG key 0x4F2A6FD2 "Fedora Project <
fedora@RedHat.com>" from /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora
Is this ok [y/N]: y
Importing GPG key 0xDB42A60E "Red Hat, Inc <
security@redhat.com>" from /etc/pki/rpm-gpg/RPM-GPG-KEY
Is this ok [y/N]: y
我全部选择了y。
2:启动vncserver:
[root@localhost ~]# vncserver
You will require a password to access your desktops.
Password:
Verify:
xauth: creating new authority file /root/.Xauthority
New "localhost.localdomain:1 (root)" desktop is localhost.localdomain:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/localhost.localdomain:1.log
3:编辑xstartup,修改成如下内容:
vi /root/.vnc/xstartup
[root@localhost ~]# vi /root/.vnc/xstartup
# 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" &
#twm &
配制iptables:
[root@localhost ~]# iptables -I INPUT 1 -p TCP --dport 5901 -j ACCEPT
[root@localhost ~]# iptables -I INPUT 1 -p TCP --dport 5801 -j ACCEPT
查看iptables内容:
[root@localhost ~]# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:5801
ACCEPT tcp -- anywhere anywhere tcp dpt:5901
不要忘记保存
service iptables save
结束了。文本模式启动ubuntu 7.10基于Linux平台的可编程控制器软PLC设计相关资讯 Fedora8
- Fedora8下aMule和Azureus设置心得 (06/11/2008 05:56:35)
- Fedora8 Gnome桌面环境下安装EVA (05/13/2008 05:46:47)
- Fedora 8下用Wine 0.9.58 跑QQ2008 (05/11/2008 13:14:05)
| - Fedora7、Fedora8、Fedora9 安装截 (06/03/2008 06:20:25)
- Fedora 8 更新提示插入光盘问题的 (05/11/2008 16:16:55)
- Fedora 8下DHCP获取DNS信息的问题 (05/10/2008 05:31:02)
|
本文评论 查看全部评论 (0)