Page 12 of 12 FirstFirst ... 2101112
Results 111 to 119 of 119

Thread: Howto: Connect ZTE MF627 3G modem with NM0.7

  1. #111
    Join Date
    Sep 2009
    Beans
    2

    Re: Howto: Connect ZTE MF627 3G modem with NM0.7

    I am using karmic, I am on the three mobile network in UK, I have a SKYPE S2 mobile phone and a ZTE MF627 HSDPA USB dongle

    I followed the above the instructions above and got my ZTE modem working straight away, I am currently swapping my sim card between my phone and modem but I would like to use my phone as a USB modem but I am unable to figure out how to get it to work via USB

    how can I get the SKYPE S2 mobile phone working as a USB modem?

    peter@HP-dv6000-Ubuntu:~$ lsusb
    Bus 004 Device 009: ID 1614:0407 Amoi Electronics
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 002 Device 004: ID 19d2:0031 ONDA Communication S.p.A.
    Bus 002 Device 002: ID 0c45:62c0 Microdia Sonix USB 2.0 Camera
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

    cheers

  2. #112
    Join Date
    Aug 2009
    Location
    LSK, ELC, SOI
    Beans
    35
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Howto: Connect ZTE MF627 3G modem with NM0.7

    wow,,, thnx for this info!! really need this!!
    anyway, if i wanna connect it with gammu, is it posible?
    or gammu doesnt support this modem??
    and another Question is, is this modem GSM/CDMA?
    thnx a lot!

  3. #113
    Join Date
    Nov 2009
    Beans
    1

    Re: Howto: Connect ZTE MF627 3G modem with NM0.7

    Hi folks!

    I have a MF627 modem as well, and Ubuntu 9.10. But I have not the "LINUXFILES" on my dongle as Pablo180 and cresswell has.

    I received the ZTE MF627 today from 3 UK, the customer service people and technical support all told me it worked on Linux but I was a little sceptical.

    Amazingly I plugged it in and it does have Linux drivers on the USB drive - and they work in Ubuntu!
    From where can I download the file 3UK_PC_LinuxUI.tar.gz or the "Linuxfiles" directory, because I did not find them on the ZTE's webpage neither.

    Thanks

  4. #114
    Join Date
    Oct 2008
    Location
    Philippines
    Beans
    98
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Howto: Connect ZTE MF627 3G modem with NM0.7

    Quote Originally Posted by jfernyhough View Post
    Updated
    With Jaunty this is now not necessary and there is an easier way around. First, install udev-extras:

    $ sudo aptitude install udev-extras

    Depending on if/when my patch* gets accepted you will likely need to add information about the modem to the HAL infomation:

    $ sudo cp /usr/share/hal/fdi/information/10freedesktop/10-modem.fdi /etc/hal/fdi/information/
    $ gksudo gedit /etc/hal/fdi/information/10-modem.fdi

    Add the following:
    Code:
            <!-- ZTE MF627 HSDPA USB dongle -->
            <match key="@info.parent:usb.product_id" int="0x0031">
              <match key="@info.parent:usb.interface.number" int="3">
                <append key="modem.command_sets" type="strlist">GSM-07.07</append>
                <append key="modem.command_sets" type="strlist">GSM-07.05</append>
              </match>
            </match>
    and save the file.

    Now plug in your modem. It should mount as the ZeroCD device (1). Now right-click the icon on the desktop and eject. Wait a moment, and the light on the modem will go dark, then relight red then green. It should now mount as a modem and be detected by Network Manager (2).

    A note should be made about udev-extras, though:YMMV.

    1)lsusb:
    Code:
    ID 19d2:2000 ONDA Communication S.p.A.
    2)lsusb:
    Code:
    ID 19d2:0031 ONDA Communication S.p.A.
    *
    https://bugs.launchpad.net/ubuntu/+s...fo/+bug/407679
    ########

    I recently bought a 3G mobile broadband modem and then realised I'd bought the wrong model - instead of getting a Huawei E160 or E169 that reportedly work OOTB with Intrepid I got a ZTE MF627 for which no information exists. On the plus side, it has a built-in MicroSD reader...

    I initially submitted a bug report here. Since then, however, I have got it working and so here is a how-to. I hope someone else finds this useful.

    1) Download and install usb_modeswitch

    Go here and download the deb file. A direct link is here. Then install it.

    This provides a way of switching the USB modem from its initial useless mode to its correct, functional modes. It will need configuring to apply to the modem.

    2) Edit /etc/usb_modeswitch.conf to apply to the MF628+

    Either comment the first modem configuration out, then find and uncomment the section for the MF628+, or (more easily) replace the content of the file with:

    Code:
    ########################################################
    # ZTE MF628+ (tested version from Telia / Sweden)
    #
    # Contributor: Joakim Wennergren
    #
    # Also applies to MF627 (Tested 3 UK) JF
    
    DefaultVendor=  0x19d2
    DefaultProduct= 0x2000
    
    TargetVendor=   0x19d2
    TargetProduct=  0x0031
    
    MessageEndpoint=0x01
    MessageContent="55534243123456782000000080000c85010101180101010101000000000000"
    Save it.

    3) Create a udev rule to automatically run usb_modeswitch when the modem is plugged in

    Create a new file called 999-zte-rules:
    gksudo gedit /etc/udev/rules.d/999-zte.rules

    Its content should be as follows:
    Code:
    SUBSYSTEM=="usb", SYSFS{idProduct}=="2000", SYSFS{idVendor}=="19d2", RUN+="/usr/sbin/usb_modeswitch"
    This will trigger usb_modeswitch every time you plug in the modem. Which is useful if you want it to work automatically. You can of course run it manually if you want.

    4) Add device information to HAL so network-manager recognises the device as a modem

    Finally, in order for Network Manager to recognise the modem information has to be added to HAL.

    Create a new file:
    gksudo gedit /usr/share/hal/fdi/information/20thirdparty/20-zte-mf627.fdi

    Its content should be as follows:
    Code:
    <!-- -*- SGML -*- -->
    <deviceinfo version="0.2">
      <device>
          <!-- ZTE MF627 HSDPA USB dongle -->
          <match key="@info.parent:usb.vendor_id" int="0x19d2">
            <match key="@info.parent:usb.product_id" int="0x0031">
              <match key="@info.parent:usb.interface.number" int="3">
                <append key="modem.command_sets" type="strlist">GSM-07.07</append>
                <append key="modem.command_sets" type="strlist">GSM-07.05</append>
                <append key="info.capabilities" type="strlist">modem</append>
              </match>
            </match>
          </match>
      </device>
    </deviceinfo>
    Save it.

    5) Plug in the modem
    Make sure the SIM card is in the modem (and if you're using 3 UK make sure you're in a 3G area. otherwise it won't work) and plug it into your PC.

    After a little while (several seconds) the LED should light red as it powers up, then switch to blue when it finds a network. You can check it's working by checking dmesg. Once modeswitch has been triggered and the modem reboots you will be presented with the ZeroCD device (e.g. containing the 3connect software), a USB MicroSD card reader, and if everything has gone correctly, Network Manager will detect a new mobile broadband modem.

    Feel free to ignore the ZeroCD device and unmount it from the desktop.

    If everything has gone correctly dmesg should read something like:
    Code:
    [52189.029694] usb 5-1: new high speed USB device using ehci_hcd and address 32
    [52189.177064] usb 5-1: configuration #1 chosen from 1 choice
    [52189.192061] usb-storage: device ignored
    [52194.546308] usb 5-1: USB disconnect, address 32
    [52200.032140] usb 5-1: new high speed USB device using ehci_hcd and address 33
    [52200.183440] usb 5-1: configuration #1 chosen from 1 choice
    [52200.184979] option 5-1:1.0: GSM modem (1-port) converter detected
    [52200.185184] usb 5-1: GSM modem (1-port) converter now attached to ttyUSB0
    [52200.185453] option 5-1:1.1: GSM modem (1-port) converter detected
    [52200.185592] usb 5-1: GSM modem (1-port) converter now attached to ttyUSB1
    [52200.200858] scsi28 : SCSI emulation for USB Mass Storage devices
    [52200.204904] usb-storage: device found at 33
    [52200.204909] usb-storage: waiting for device to settle before scanning
    [52200.205113] option 5-1:1.3: GSM modem (1-port) converter detected
    [52200.205304] usb 5-1: GSM modem (1-port) converter now attached to ttyUSB2
    [52205.205580] usb-storage: device scan complete
    [52205.207696] scsi 28:0:0:0: Direct-Access     ZTE      MMC Storage      2.31 PQ: 0 ANSI: 2
    [52205.210603] scsi 28:0:0:1: CD-ROM            ZTE      USB SCSI CD-ROM  2.31 PQ: 0 ANSI: 2
    [52205.226669] sd 28:0:0:0: [sdb] Attached SCSI removable disk
    [52205.228914] sd 28:0:0:0: Attached scsi generic sg2 type 0
    [52205.345654] sr1: scsi-1 drive
    [52205.345837] sr 28:0:0:1: Attached scsi CD-ROM sr1
    [52205.346023] sr 28:0:0:1: Attached scsi generic sg3 type 5
    [52218.692468] ISO 9660 Extensions: Microsoft Joliet Level 1
    [52218.699732] ISOFS: changing to secondary root
    References:
    http://www.draisberghof.de/usb_modeswitch/
    http://blog.ufsoft.org/2007/11/30/zt...em-under-linux
    https://bugs.launchpad.net/ubuntu/+s...al/+bug/267727
    https://bugs.launchpad.net/ubuntu/+s...er/+bug/259028
    https://answers.launchpad.net/ubuntu...question/48520
    Probably some others I've forgotten.


    Hey you all!!!

    I just want to share this....
    I am using a Smart Broadband USB Model: ZTE MF 627. I worked for so many hours but haven't get it.

    Finally I found this post on a blog and I got my broadband working great.

    So, here's the link to the post. Hope you'll also enjoy your broadband:

    http://knightlust.blogspot.com/2009/...tu-jaunty.html


    Enjoy!!!
    Need BloggerVince's Expertise???


  5. #115
    Join Date
    Oct 2008
    Location
    Philippines
    Beans
    98
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Howto: Connect ZTE MF627 3G modem with NM0.7

    Hello guys, I just want to ask a question. I have ZTE MF-627. I was able to activate it. However, with the solutions posted that I tried to follow in the earlier post of this thread, my laptop booting up went up very slow. Before it only takes me 15-20 seconds of booting time, now it takes me 3-4 minutes booting time. Any solutions my friends?
    Need BloggerVince's Expertise???


  6. #116
    Join Date
    Feb 2009
    Location
    Oslo
    Beans
    2
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Howto: Connect ZTE MF627 3G modem with NM0.7

    Hi,

    I'm trying to get ZTE MF636 to be connectable under Ubuntu 9.10 and have observed and performed your suggested installs and additions to the configuration files. Alas I still have a stable red light and no recognition as amodem by the NM app.Regarding the .fdi file, I am not experienced to know the significance of the statement
    <match key="@info.parent:usb.interface.number""int=3". Can you please explain.
    I am connecting from Norway and I was wondering if this has a bearing on the value to be set.

    Regards
    Chris

  7. #117
    Join Date
    Aug 2008
    Location
    Athens Greece
    Beans
    973
    Distro
    Ubuntu Mate

    Re: Howto: Connect ZTE MF627 3G modem with NM0.7

    Hi ChrisinNorway,
    MF636 will or not ( ! ) work directly with Ubuntu 9.10 and 10.04...
    Some users can connect, I cannot ... (ZTE MF636 from cosmote Greece)

    bug#408555 is active

    My relatively stable connection comes using the following procedure:
    - boot without modem
    - from terminal:
    Code:
    sudo stop network-manager
    sudo killall modem-manager
    - attach modem
    - at 9.10 wait for the cd-rom icon to appear, right click & eject it
    (fully updated 9.10 may not need the eject as 10.04 does not need it)
    - connect using alternative methods (wvdial, gnome-ppp, long pppd command)

    For more info, read: http://ubuntuforums.org/showthread.php?t=1466490

    Regards,
    George

  8. #118
    Join Date
    Aug 2008
    Beans
    65

    Re: Howto: Connect ZTE MF627 3G modem with NM0.7

    Thanks Allot ! ! !



    Ubuntu can do anything

  9. #119
    Join Date
    Nov 2007
    Beans
    2

    Re: Howto: Connect ZTE MF627 3G modem with NM0.7

    It seems complicated !

    Is there more easier way like a new setup program or some Shell script ?

Page 12 of 12 FirstFirst ... 2101112

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •