Jalankan sebagai root, buka terminal atau file editor, buat sebuah file bernama 15-zte-mf622.rules isinya:
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+=”/sbin/rmmod usb_storage”
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=0×19d2 product=0×0001″,
# Make users belonging to the dialout group
# able to use the usb serial devices.
MODE=”660″, GROUP=”dialout”
LABEL=”ZTE_End”
simpan file tersebut di dalam direktori /etc/udev/rules.d
file ini berasal dari sini. Intinya rules tersebut menghilangkan fitur usb storage yg dimilik modem ini. di linux, belum adanya fitur usb mode switch, sehingga jika tidak menggunakan rules diatas, maka modem tidak akan dikenali sebagai USB modem, tetapi sebagai usb storage. Walaupun demikian, ada aplikasi kecil yang berfungsi menambahkan fitur usb switch di linux. ![]()
Setelah itu jangan lupa direboot linux-nya untuk mengaktifkan-nya. Langkah berikutnya adalah mensetup dial-up networking di linux. Ada beberapa cara, antara lain mensetting secara manual wvdial.conf, menggunakan GNOME PPP, dsb. Dengan cara manual yaitu mengedit file /etc/wvdial.conf :
[Dialer Defaults]
Init2 = ATZ
Init3 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init5 = AT+CGDCONT=1,”IP”,”indosatm2″
Stupid Mode = 1
Modem Type = Analog Modem
ISDN = 0
Phone = *99#
Modem = /dev/ttyUSB0
Username = user
Password = pass
Dial Command = ATDT
Baud = 460800
jika tidak menggunakan IndosatM2, silahkan diubah access point name “indosatm2″ sesuai konfigurasi masing-masing provider.
Untuk melakukan koneksi, buka terminal, jalankan perintah wvdial, untuk mematikan tekan tombol ctrl+c. bisa juga dibuatkan shortcut di desktop biar gak usah buka-buka terminal.
Selamat mencoba!
![]()