Aşağıdaki kodu /etc/udev/rules.d/ altında ZTEMF622.rules olarak kopyalayın.
ACTION!="add", GOTO="ZTE_End"
# Is this the ZeroCD device?
SUBSYSTEM=="usb", SYSFS{idProduct}=="2000",
SYSFS{idVendor}=="19d2",
GOTO="ZTE_ZeroCD"
# Is this the actual modem?
SUBSYSTEM=="usb",
SYSFS{idProduct}=="0001",
SYSFS{idVendor}=="19d2", GOTO="ZTE_Modem"
LABEL="ZTE_ZeroCD"
# This is the ZeroCD part of the card, remove
# the usb_storage kernel module so
# it does not get treated like a
storage device
RUN+="/usr/src/usb_modeswitch-0.9.2/usb_modeswitch -d 1 -v
0x19d2 -p 0x2000 -V 0x19d2 -P 0x0001"
LABEL="ZTE_Modem"
# This is the Modem part of the card, let's
# load usbserial with the
correct vendor
# and product ID's so we get our usb serial
devices
RUN+="/sbin/modprobe usbserial vendor=0x19d2
product=0x0001",
# Make users belonging to the dialout group
# able to
use the usb serial devices.
MODE="660",
GROUP="dialout"
LABEL="ZTE_End"
Daha Sonra /etc/wvdial.conf dosyasını edit edip içerisine aşağıdaki kodu yazın:
[Dialer Defaults]
Init2 = ATZ
Init3 = AT+CGDCONT=1,"IP","internet","",0,0
Stupid Mode = 1
Modem Type = Analog Modem
ISDN = 0
Phone = *99#
Modem = /dev/ttyUSB0
Username = user
Dial Command = ATDT
Password = pass
Baud = 460800
Son olarak "sudo wvdial" komutunu çalıştırdığınızda aşağıdaki gibi bir bilgi alırsanız bekleyin bağlantı biraz geç geliyor.
--> Initializing modem.
--> Sending: ATZ
ATZ
OK
--> Sending: ATZ
ATZ
OK
--> Sending: AT+CGDCONT=1,"IP","internet","",0,0
AT+CGDCONT=1,"IP","internet","",0,0
OK
--> Modem initialized.
--> Sending: ATDT*99#
--> Waiting for carrier.
ATDT*99#
CONNECT
--> Carrier detected. Starting PPP immediately.
--> Starting pppd at Wed Mar 4 12:14:12 2009
--> Pid of pppd: 10842
--> Using interface ppp0
--> local IP address 213.43.167.205
--> remote IP address 10.64.64.64
--> primary DNS address 86.108.136.27
--> secondary DNS address 86.108.136.26
Detaylı bilgiyi http://ubuntuforums.org/showthread.php?t=665332 adresindeki makaleden edinebilirsiniz.