搭建一个ubuntu 12.04的环境
ssh, ftp, samba
在公司内网,需要设代理的情况
apt-get install software-name -c ~/apt-get-proxy.conf
apt-get-proxy.conf里边是
Acquire::http::proxy "http://用户名:密码@代理服务器IP:代理服务器端口";
Acquire::https::proxy "https://用户名:密码@代理服务器IP:代理服务器端口";
Acquire::ftp::proxy "ftp://用户名:密码@代理服务器IP:代理服务器端口";
apt-get install software-name -o Acquire::http::proxy="http://用户名:密码@代理服务器IP:代理服务器端口";
export http_proxy不知道行不行
更新源
更新文件/etc/apt/source.list
apt-get update,就是根据source.list里的更新
设置代理之后
selinux, ssh之类的,终于可以顺利安装
apt-get install openssh-server
apt-get install samba
apt-get install openssh-server
vsftpd
配置匿名用户登录费了好长好长时间
就是anon_root文件夹的属组必须是ftp,权限不能是777
网上的配置方法大都没提到这一点,很难发现