博客首页 注册 建议与交流 排行榜 加入友情链接
推荐 投诉 搜索: 帮助

JordonWu's Blog

  jordonwu.cublog.cn

关于作者
姓名:
职业:
年龄:
位置:
个性介绍:大部分文章是本人
学习过程中收集于网络上各位
大侠高人的文章,如有侵权请
来信告知,我将会尽快删除。
谢谢!!
|| << >> ||
我的分类


QT2410入门实践02 --- PC(宿主机)环境安装及配置
2007/10/21
===================================================================================================
Host OS install and environment build
===================================================================================================
1. Linux host OS: Ubuntu-7.10

2. On linux host, execute command after installed
$sudo apt-get upgrade
$sudo apt-get update

3. Install build-essential - this will install a complete devlopement environment for linux
$sudo apt-get install build-essential libncurses5-dev bison flex texinfo zlib1g-dev gettext autoconf

4. Install nfs
$sudo apt-get install nfs-kernel-server
$edit /etc/exports, add /opt/nfs *(sync,rw)
$sudo /etc/init.d/nfs-kernel-server restart

5. Install tftp
1) Install tftpd and related packages.
$sudo apt-get install xinetd tftpd tftp
2) Create /etc/xinetd.d/tftp and put this entry:
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tftpboot
disable = no
}
3) Make /tftpboot directory
$sudo mkdir /tftpboot
$sudo chmod -R 777 /tftpboot
$sudo chown -R nobody /tftpboot
4) Start tftpd through xinetd
$sudo /etc/init.d/xinetd start

发表于: 2007-12-01,修改于: 2007-12-01 15:12,已浏览331次,有评论1条 推荐 投诉


网友评论
网友: aUmbrella 时间:2008-04-07 04:54:06 IP地址:211.74.117.★
您好!我執行#$chown -R nobody /tftpboot,出現錯誤!
chmod: invalid mode: `nobody'
Try `chmod --help' for more information
請問哪裡出問題? 謝謝!

 发表评论