免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 961 | 回复: 0
打印 上一主题 下一主题

QT2410入门实践02 --- PC(宿主机)环境安装及配置 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-12-01 15:07 |只看该作者 |倒序浏览

                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
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/27204/showart_433964.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP