How to use USB 3G dongle/stick Huawei E169/E620/E800 ( Chip used Qualcomm e1750) in Linux (China and world)
Using this 3G module in Linux is so great. I want it. So I made it.
The 3G dongle of Huawei E169/E620/E800 is made from chip Qualcomm e1750. Yes, yet an American company. Huawei understands business.
+
I am using KDE based on ubuntu 14.04 AMD64.
After you pluging the dongle into computer, you would see this:
The Huawei Modem is recognized by Linux kernel and its modules.
Here are several ways of doing so.
1. Using system GUI -- networkmanager
Add a mobile boardband connection.
Choose Qualcomm E1750 if your system can detect it.
Then
Go on
Go on
Go on
Leave the username and password blank. If you are in China, then make sure the number is *99#
APN: 3gnet
Click ok.
Then go to connect it from your network manager.
2. Using KDE kppp (GUI)
You should install these packages before doing so.
sudo apt-get install ppp kppp wvdial -y
kppp has its GUI.
wvdial is the backend tool which kppp uses. Or you can use wvdial later in console only.
This would come out if it is sucessfully connected to the internet.
Leave the Login ID and password empty.
In tab Accounts, "New" a profile. And make it look like this.
Click configure and create a profile for connection.
Make sure number to be *99# if you are in China.
And authentication to be Terminal-based.
Then click ok to save it.
Then go to tab Modems. "New" a profile named "huawei3g".
And edit it.
Make sure it looks like this.
device: /dev/ttyUSB0
(it depends on how many devices you have sometimes. Everytime you plug in the 3G dongle, there would be 3 devices came out. They would be /dev/ttyUSB0 ,/dev/ttyUSB1, /dev/ttyUSB2 . ( ttyUSB0 is used for controlling the 3G dongle. And it supports AT commands. Others are some other stuff about voice call and so on)
Click OK to save it.
Then go back, and hit connect in kppp.
This is what you gonna see.
3. Using wvdial in command lines
sudo apt-get install ppp wvdial -y
then go to configure the wvdial
Make the file look like this:
[Dialer Defaults]
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0= &C1 &D2 +FCLASS=
Modem Type = Analog Modem
Baud =
New PPPD = yes
Modem = /dev/ttyUSB0
ISDN =
; Phone = <Target Phone Number>
; Password = <Your Password>
; Username = <Your Login Name>
Phone = *#
; Phone = *99***1# ; If you are in America or somewhere
Password = 3gnet
Username = 3gnet
And connect to internet in console:
Now you would see successfully we are connected to internet.
There is another interface called ppp0 here.
Hit Ctrl + C in console to disconnect.
4. Using Sakis3G GUI / commands scripts
Here are something from http://www.sakis3g.com/
First check that you have ppp installed
sudo apt-get install ppp
Now download the Sakis3g package
sudo wget "http://www.sakis3g.com/downloads/sakis3g.tar.gz" -O sakis3g.tar.gz
Then unzip the file
sudo tar -xzvf sakis3g.tar.gz
Make the file executable
sudo chmod +x sakis3g
And finally launch it
sudo ./sakis3g --interactive
more options:
then you are gonna see
Then
then
But I see this:
This really does not work. :(
So I go to commands.
sudo ./sakis3g "--sudo" OTHER="USBMODEM" USBMODEM="12d1:1001" "FORCE_APN=internet.public" \
USBINTERFACE="" APN_USER="user" APN_PASS="user" "connect" "info"
Remember this:
12d1 is the vendor ID, 1001 is the product ID.
And then try these in console.
It failed again... If you see:
Here are some knowledge from
Network Manager and Sakis3G don't really work well together. Sometimes you need to run Sakis3g twice or remove and plug the device back in to get it to work. This is because ModemManager can be quite forceful by locking device ports. Alternatively, you can switch the device using Sakis3G (at which point Network Manager should pick it up) and then connecting using Network Manager.
As for the pin - either remove the required pin from the sim card by putting it in a normal mobile phone or provide your pin for switching in /etc/sakis3g.conf using the SIM_PIN="" variable.
To be continued.
Chip live debugging
If you want to check out what this module is shipped with. You could get into it's heart using CuteCom via Serial ports.
Happy hacking!
How to use USB 3G dongle/stick Huawei E169/E620/E800 ( Chip used Qualcomm e1750) in Linux (China and world)的更多相关文章
- Raspberry Pi - Huawei HiLink E3256 3G modem to ethernet adapter
Raspberry Pi - Huawei HiLink E3256 3G modem to ethernet adapter This page documents how to configure ...
- Yocto开发笔记之《驱动调试-华为3G模块》(QQ交流群:519230208)
QQ群:519230208,为避免广告骚扰,申请时请注明 “开发者” 字样 ======================================================== 参考:ht ...
- openwrt固件支持3G和4G上网卡
http://wiki.openwrt.org/doc/howtobuild/wireless-router-with-a-3g-dongle Building image with support ...
- Android——4.2 - 3G移植之路之 reference-ril .pppd 拨号上网 (三)
Android的RIL机制中的 reference-ril.c 即为厂商提供的驱动接口.这个驱动源代码各个厂商都是有提供的,网上也有下载.我如今用的就是huawei wcdma的.最后编译成libre ...
- openwrt使用3G上网卡
尊敬的大大.感谢你抽空指导我 我的设备是db120 mu350 和广东无限卡 版本是OpenWrt Backfire 10.03.336 DIY full 一. 没有安装到kmod-us ...
- 2 WAN 和1 Evo/3g Routeros PCC 方法负载平衡
陕西中际现代包装科技:Routeros 2 WAN 和1 Evo/3g PCC 方法负载平衡 (Routeros多线负载平衡) 我们将要讨论2Wan和1个Evo/3G 的负载平衡.负载平衡就是在不同 ...
- linux下的usb抓包方法【转】
转自:http://blog.chinaunix.net/uid-11848011-id-4508834.html 1.配置内核使能usb monitor: make menuconfig ...
- Linux下的硬件驱动——USB设备(转载)
usb_bulk_msg函数 当对usb设备进行一次读或者写时,usb_bulk_msg 函数是非常有用的; 然而, 当你需要连续地对设备进行读/写时,建议你建立一个自己的urbs,同时将urbs 提 ...
- 【转载】linux下的usb抓包方法
1 linux下的usb抓包方法 1.配置内核使能usb monitor: make menuconfig Device Drivers --> ...
随机推荐
- easyui datagrid load 封装 参数问题 js 作用域
var temp = { LoginAccount: $('#LoginAccount').val(), ShopName: $('#ShopName').val() }; function doSe ...
- IOS程序启动的过程
IOS程序启动按照以下5个步骤执行 1.main函数 IOS程序启动首先执行main函数 2.UIApplicationMain 执行main函数中的UIApplicationMain函数,这个函数会 ...
- Objective-c中的单例
单例是指静态分配的实例,就是只开辟一块内存,不会重新开辟内存,而 iphone sdk 中全是这种实例,例如[UIApplication sharedApplication] 返回一个指向代表应用程序 ...
- 程序员面试必备经典CTCI,谷歌面试官经典作品!
1.1 判断一个字符串中的字符是否唯一 1.2 字符串翻转 1.3 去除字符串中重复字符 1.8 利用已知函数判断字符串是否为另一字符串的子串 2.1 从链表中移除重复结点 2.2 实现一个算法从一个 ...
- [DevEpxress]GridControl 显示Gif动画
原文:[DevEpxress]GridControl 显示Gif动画 如果没有对进行设置,那么GridControl列中gif在编辑状态下,才能显示动画效果,如果要设置列自动显示动画效果,可以进行如下 ...
- JS模块与命名空间的介绍二
区别一:
- 在地图中使用Java
Map以按键/数值对的形式存储数据,和数组很类似,在数组中存在的索引,它们本身也是对象. Map的接口 Map---实现Map Map.Entry--Map的内部类 ...
- 在vi中使用perltidy格式化perl代码
格式优美的perl代码不但让人赏心悦目,并且能够方便阅读. perltidy的是sourceforge的一个小项目,在我们写完乱七八糟的代码后,他能像变魔术一样把代码整理得漂美丽亮,快来体验一下吧!! ...
- WebIM(4)----Comet的特殊之处
WebIM系列文章 在一步一步打造WebIM(1)一文中已经使用Comet实现了一个简单的WebIM,那么,Comet究竟和一般的打开网页有何区别,本文将通过编写一个简单的HTTP服务器来说明两者的区 ...
- unbuntu下的root 用户和 sudo 命令
参考: http://james23dier.iteye.com/blog/721246 http://blog.csdn.net/shichexixi/article/details/5969993 ...