ubuntu19.10 配置拨号上网 ASDL 不使用pppoeconf

最近在自己电脑上安装了ubuntu19.10,安装之后对其进行了ASDL配置,其方式不同于之前的方法。

传统方式

使用如下命令配置ASDL账号即可

sudo pppoeconf   # 按照提示输入账号和密码,其他默认
#连接
sudo pon dsl-provider
#断开
sudo poff -a
#配置
sudo gedit /etc/ppp/optipns  修改  lcp-echo-failure   为 40

但在ubuntu19.10中没有pppoeconf,解决方法1,可以自行下载pppoeconf;2,采用如下命令配置:

新方法

sudo nmcli con edit type pppoe con-name "xxxxxx"

ubuntu19.10 配置拨号上网 ASDL 不使用pppoeconf_第1张图片

set pppoe.username   你的账号

ubuntu19.10 配置拨号上网 ASDL 不使用pppoeconf_第2张图片

点击系统设置–>网络,输入你的账号和密码,点击save。即可上网拉!

ubuntu19.10 配置拨号上网 ASDL 不使用pppoeconf_第3张图片

配置源并更新

sudo gedit  /etc/apt/sources.list

头部加入

deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

执行

sudo apt-get update
sudo apt-get upgrade        

你可能感兴趣的:(Linux)