1.第一次使用apt-get来安装程序前,需要做两件事
修改/etc/apt/sources.list,将其中注释掉的网页打开。sudovi/etc/apt/sources.list
#deb http://cn.archive.ubuntu.com/ubuntu gustymain restricted
#deb-scr http://cn.archive.ubuntu.com/ubuntu gustymain restricted
......
更新可用程序列表 sudo apt-get update
2.安装 配置 启动服务
1.FTP服务
安装服务 sudo apt-get install vsftpd修改文件 vi /etc/vsftpd.conf 去掉下面几行的“#”
#local_enable=YES // 表示是否允许本地用户登录
#write_enbale=YES //表示是否允许上传文件
修改完重启服务 sudo /etc/init.d/vsftpd restart
2. SSH服务
安装服务 sudo apt-get install openssh-server配置文件 /etc/sshd_config 使用默认配置
3. NFS服务
安装服务 sudo apt-get install nfs-kernel-server portmap配置文件 /etc/exports 修改如下 以后将通过网络文件系统访问目录/home/broadon/min210
/home/broadon/min210*(rw,sync,no_root_squash)
修改完重启服务 sudo /etc/init.d/nfs-kernel-server restart
以上3个服务使用apt-get后已经启动,以后每次开机都会启动,如果要取消某个服务,需要执行
Linux->systerm->系统管理->网络,在对话框中取消。
4. 安装基本开发环境
1.在虚拟机上挂上iso的linux镜像文件
2.sudoapt-get install build-essential // 基本开发环境
3.sudoapt-get install bison flex // bison flex 语法词法分析器
4.sudoapt-get install bison manpages-dev//c函数库的man手册 |