Chinaunix首页 | 论坛 | 博客
  • 博客访问: 403958
  • 博文数量: 58
  • 博客积分: 1775
  • 博客等级: 上尉
  • 技术积分: 755
  • 用 户 组: 普通用户
  • 注册时间: 2010-12-12 15:03
文章分类

全部博文(58)

文章存档

2012年(5)

2011年(43)

2010年(10)

分类:

2010-12-31 17:07:04

1.安装 vnc-server
 ubuntu:sudo apt-get install vnc4server
 fedora 下载.rpm rpm -ivh安装
2.设置密码
 #vncpasswd
  Password: ******
  Verify:*****
3.客户端安装vncviewer
 sudo apt-get install vncviewer
 客户端登陆:vncviewer ip:1
4.设置启动

如果在 /etc/init.d 中加入一个script,还须要制作相关的link
在 /etc/rc*.d 中。K 开头是kill,S 开头是start,数字顺序代表启动的顺。
update-rc.d 可以帮你的忙。

例:
在 /etc/init.d 中建立一个叫作zope 的script , 然后
update-rc.d zope defaults
就会产生以下链結:
Adding system startup for /etc/init.d/zope ...
/etc/rc0.d/K20zope -> ../init.d/zope
/etc/rc1.d/K20zope -> ../init.d/zope
/etc/rc6.d/K20zope -> ../init.d/zope
/etc/rc2.d/S20zope -> ../init.d/zope
/etc/rc3.d/S20zope -> ../init.d/zope
/etc/rc4.d/S20zope -> ../init.d/zope
/etc/rc5.d/S20zope -> ../init.d/zope

上面的设置适用于所有程序,下面就vnc来谈

在 /etc/init.d 目录下谢一个脚本vnc.sh,内容如下:
#!/bin/sh
#svnserve  startup
vncserve -d

然后执行:
update-rc.d vnc.sh defaults

只需两步就可以让vnc在系统启动时启动

查看开机启动配置:

chkconfig --list

chkconfig --add xxx

chkconfig --del xxx

smbrave@gmail.com 2010.12.31



阅读(1360) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~