|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
当你经过一段时间的学习后就应该扩充自己的知识,多学习linux命令,但是不要在初学阶段就系统的学习linux命令。
1、安装VNCSERVER
#yuminstallvnc-server
2、修正设置文件/etc/sysconfig/vncservers
VNCSERVERS="1:root2:yangxiaoli3:test"
VNCSERVERARGS[3]="-geometry800x600-nolistentcp-nohttpd-localhost"
3、设置vnc上岸暗码
我这里测试的用户用的是root,以是实行以下操纵:
#vncpasswd
注重:假如用其他用户,要先切换到其他用户(用su命令)再实行vncpasswd
4、修正~/.vnc/xstartup
在最初加正文#twm&
到场:gnome-session&如许就能够用gnome上岸了
5、启动VNCSERVER
#servicevncserverstart
6、从头启动体系
#init6
7、如需增加其他用户,能够反复23456步骤
注重:必要先切换到其他用户下才干实行vncpasswd
8、然后运转vncserver
root@.vnc#vncserver
Newlocalhost.localdomain:1(root)desktopislocalhost.localdomain:1
Startingapplicationsspecifiedin/root/.vnc/xstartup
Logfileis/root/.vnc/localhost.localdomain:1.log
如今就能够在windows客户端接纳VNCviewer上岸
</p>
在linux中学习命令的最好办法是学习Shell脚本编程,Shell脚本比起其他语言来学习简单,但是功能却十分强大.通过学习Shell编程,能让你掌握大量的linux命令。 |
|