linux初学者~
发布时间:2014-07-08 09:19:53
1、安装命令如下,感觉前2个命令运不运行影响不大。sudo apt-get updatesudo apt-get upgradesudo apt-get install --no-install-recommends ubuntu-desktop2、配置使root可以登陆图形界面。创建/etc/lightdm/ lightdm.conf,增加如下内容:[SeatDefaults]user-session=ubuntugreeter-session=unity-greeter.........【阅读全文】
发布时间:2014-07-07 15:26:06
我的环境:ubuntu server 14.04有2个网卡,eth0是能上外网的地址,配置了ip,网关,mask,eth1是为内网提供各种服务,比如pppoe, dhcp,只配置了ip和mask。根据之前的文章(http://blog.chinaunix.net/uid-563939-id-4340396.html),pppoe客户端已经能够能获取到地址,掩码,网关和DNS,但是此时客户端是不能上网的,.........【阅读全文】
发布时间:2014-07-05 14:25:55
1、安装pppoe服务器sudo apt-get install pppoe2、配置pppoe服务器(1) 修改/etc/ppp/chap-secrets,增加拨号用户名,密码:增加一行:"chap" * "chap" *(2) 新增/etc/ppp/pppoe-server-options增加一行:+ipv6(加号不能省略,否则拨号失败)(3) 修改/etc/ppp/options增加一行:ipv6 ,.........【阅读全文】
发布时间:2014-07-05 09:32:17
1、安装pppoe服务器sudo apt-get install pppoe2、配置pppoe服务器(1) 修改/etc/ppp/chap-secrets,增加拨号用户名,密码:增加一行:"chap" * "chap" *(2) 新增/etc/ppp/pppoe-server-options空文件,里面不需要任何内容。如果不增加此文件,客户端拨号会提示619错误。3、启动pppoe.........【阅读全文】