本来默认不用驱动也能直接3g联网的,但是发现有linux下的驱动就折腾安装测试了下,成功了
最后完毕截图如下:
系统:ubuntu 12.10
3g无线上网卡型号:中兴ac519
默认带有linux下的驱动:
linux目录文件如下:
但是安装提示错误:
原因:ubuntu 12.10已经是QT4,木有qt3.
解决:直接编辑install.sh文件,找到qt3检测的代码注释掉
找到583行直接注释掉#check_qt3
保存再执行
又提示错误:
简单直接执行
要是提示有依赖的错误直接执行
其实也不必安装自动的驱动,默认就能直接3g上网,刚开始简单配置下就能3g上网了。安装驱动后唯一的好处就是能看到
3g流量接受了多少。不安装默认驱动,配置3g上网详情见 http://forum.ubuntu.com.cn/viewtopic.php?f=116&t=301188&p=2870789#p2870789 13楼
最后完毕截图如下:


系统:ubuntu 12.10
3g无线上网卡型号:中兴ac519
默认带有linux下的驱动:

linux目录文件如下:
代码:
$ ls Linux/CHNTEL_Linux_UI
install.sh* tools/ ZTE_1X_EVDO_Connection_Manager.tar.gz
install.sh* tools/ ZTE_1X_EVDO_Connection_Manager.tar.gz
但是安装提示错误:
引用:
This software will not run until you install "QT3 Runtime Library". You can refer to Operaing System installation CD or Homepage to find out the QT3 Runtime Library installation package. This installation process will not continue until you install QT3 Runtime Library first.
原因:ubuntu 12.10已经是QT4,木有qt3.
解决:直接编辑install.sh文件,找到qt3检测的代码注释掉
代码:
vi Linux/CHNTEL_Linux_UI/install.sh
找到583行直接注释掉#check_qt3
保存再执行
代码:
cd Linux/CHNTEL_Linux_UI/;sudo ./install.sh
又提示错误:
引用:
This software depends on "wvdial" to establish internet connection. You should install "wvdial" first.You can refer to Operating System installation CD or Homepage to find the "wvdial" installation package. This installation process will not continue until you install "wvdial
简单直接执行
代码:
sudo apt-get install wvdial
要是提示有依赖的错误直接执行
代码:
sudo apt-get install -f
即可
其实也不必安装自动的驱动,默认就能直接3g上网,刚开始简单配置下就能3g上网了。安装驱动后唯一的好处就是能看到
3g流量接受了多少。不安装默认驱动,配置3g上网详情见 http://forum.ubuntu.com.cn/viewtopic.php?f=116&t=301188&p=2870789#p2870789 13楼