Thank you for being a valued part of the CNET community. As of December 1, 2020, the forums are in read-only format. In early 2021, CNET Forums will no longer be available. We are grateful for the participation and advice you have provided to one another over the years.

Thanks,

CNET Support

General discussion

My New Modem for Mobile Broadband

Aug 18, 2010 12:22AM PDT

I just purchased a USB760 Modem from Verizon. It says on the Verizon website that it is compatable with Linux. But I can't get it to install. Can anyone give me some help?

Thank you so much!
__________________
Nora

Discussion is locked

- Collapse -
I found this in other forums (2008 data) hope it helps:
Aug 18, 2010 11:57PM PDT

sudo gedit /etc/udev/rules.d/70-persistent-cd.rules
find the line that contains "Novatel_Mass_Storage" and append the following to it:
RUN+="/usr/bin/eject %k"

save and close

sudo gedit /usr/share/hal/fdi/information/10freedesktop/10-modem.fdi
Add this in there:

<!-- Verizon USB760-->
<match key="@info.parent:usb.vendor_id" int="0x1410">
<match key="@info.parent:usb.product_id" int="0x6000">
<match key="@info.parent:usb.interface.number" int="0">
<append key="info.capabilities" type="strlist">modem</append>
<append key="modem.command_sets" type="strlist">IS-707-A</append>
</match>
</match>
</match>

save and close

Now plug in your card and make sure it didn't mount anything (Places -> Computer USB Drive shouldn't be mounted)
Now left click the network applet and select 'Auto mobile broadband (CDMA) connection'
It connect. If it doesn't make sure to go into VZAccessManager on a Windows machine and activate your USB760. VerizonWireless that works with Linux but it is on the enterprise section of www.vzam.net so call up or email VZW and ask to have it moved to the consumer downloads. They say the USB760 supports Linux on their site so be sure they provide the resources!

- Collapse -
Verizon Novatel USB760 Modem
Aug 19, 2010 11:04AM PDT

Thank you so much! But I am a novice, and have no idea what sudo gedit /etc/udev/rules.d/70-persistent-cd.rules means. I would have no idea where to type this.

Same with this. I wouldn't know how to begin.

sudo gedit /usr/share/hal/fdi/information/10freedesktop/10-modem.fdi
Add this in there:

<!-- Verizon USB760-->
<match key="@info.parent:usb.vendor_id" int="0x1410">
<match key="@info.parent:usb.product_id" int="0x6000">
<match key="@info.parent:usb.interface.number" int="0">
<append key="info.capabilities" type="strlist">modem</append>
<append key="modem.command_sets" type="strlist">IS-707-A</append>
</match>
</match>
</match>

Also, I don't know what mounted means.

I did activate this modem on my Vista laptop, and it works fine.

Verizon told me they did not support Linux. I tried that download, while I talked to Verizon Tech Support, but it wouldn't install.

Thank you so much for your detailed reply. But I guess I am too much of a novice to attempt this.

- Collapse -
Really it is easy ;)
Aug 20, 2010 1:02AM PDT

>have no idea what sudo gedit /etc/udev/rules.d/70-persistent-cd.rules means. I would have no idea where to type this.
You do not have to understand in deep what it means to use it. It is terminal command you have to type (copy->paste) it into terminal.
You can find terminal in start like other programs.
---
Detailed explanation (not so important skip this if not interested):
sudo - asks to execute following command in root mode. Perform changes in system configuration. For security you will have to enter system pasword later if you ask sudo.
gedit - asks to start text editor gedit which is similar to windows notepad.
/etc/udev/rules.d/70-persistent-cd.rules - just system configuration text file we will edit.
---
mounted means connected on folder. On Linux drives are not A:, B:, ... like on windows. On Linux every connected drive gets file in /dev folder and after this it may be manually mounted or in all modern distributions automatically mounted on some kind of folder no matter where. On example C: can be something like /media/windows_disk, or it can be remounted to /home/me/my_windows_files
---
If still not clear ask more Wink

- Collapse -
Novatel USB760
Aug 20, 2010 6:26AM PDT

Thank you! I will look for Terminal. I have never done anything like this. All I have ever done on a computer is email, shop, read news, and and read forums.

Do I type everything, includig the < >? And what about the 3 lines of <match> at the bottom?

How will I know if something is mounted?

Thank you again. You can see what a beginner I am. But I do want to get this working on the netbook. It works great on the Vista laptop.

- Collapse -
Hmm
Aug 20, 2010 9:27PM PDT

You have to type that line with sudo ... only then text editor opens up and you add the text into it. Better copy paste everything because one typo can be critical mistake.

You can know what is mounted by looking into graphical file manager. If you can access files it means it is mounted. Another method is over CLI mount command. Its text output shows all mounts.