歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> 用VNC遠程控制Fedora8桌面

用VNC遠程控制Fedora8桌面

日期:2017/2/28 17:17:40   编辑:Linux教程
安裝了Fedora8,由於不能在辦公的地方放兩台電腦,因此我把其中一台放到了機房,除了ssh之外,難道不可以象windows一樣遠程控制著Linux的桌面嗎?

看到Fedora8本身就有“遠程桌面”的選項,我選擇了之後不知道該怎麼用,在網絡上查找部分資料後發現,vnc有forlinux版本的,我之前一直對vnc有個不太好的認識,認為他就是個後台軟件、黑客軟件。
今天發現這個東西功能也蠻強大的。

下面是我配置VNC的過程:

1:安裝vnc
執行命令 yum install vnc-server

安裝的過程中提示:
Importing GPG key 0x4F2A6FD2 "Fedora Project <[email protected]>" from /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora
Is this ok [y/N]: y
Importing GPG key 0xDB42A60E "Red Hat, Inc <[email protected]>" 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

結束了。
Copyright © Linux教程網 All Rights Reserved