Nov 21, 2009

Internet Connection In Linux Through Mobile

free web hosting
Open Discussion & Free Web Hosting > General Discussion > Computer Talk

Internet Connection In Linux Through Mobile

borejk
Hi Guys!

I have been successful in connecting my phone to internet on both Ubuntu and openSUSE using BOTH the methods. I am not sure about other distros however they should work.

There are two ways to connect to the internet using a GPRS modem phone. For the phones with BLUETOOTH :

THE BLUETOOTH CONNECTION METHOD:


You need to follow the steps below to connect to the internet using a bluetooth connection:

1: Switch on bluetooth on your phone and the computer. Make both your computer and phone visible to other devices.

2: Do a search from Linux for bluetooth devices near you. For this, you need to follow as:

Open terminal / shell / console (whatever you call it)
switch to root user using the command ' su'.
pass the command ' hcitool scan '

After sometime you will get the list of devices with their device address (also called as MAC address) and the device name. . . It will look something like:

12:12:12:12:12:12 PhoneName

Note down the device address of your phone (it will appear the place of the 12:12:12:12:12:12 , but in a similar format). You will need to use it later.

3: Now, you need to find which channel on your phone is assigned to what service on the phone. For this you will need to browse the device services. To do this, pass the following command:

sdptool browse 12:12:12:12:12:12

NOTE: Replace 12:12:12:12:12:12 with your phone address.

You will get something like this (I am showing the output I get for my phone):
Code:

Browsing 00:18:13:47:13:BE .
Service Description: Sony Ericsson W810
Service RecHandle: 0x10000
Service Class ID List:
"PnP Information" (0x1200)

Service Name: OBEX SyncML Client
Service RecHandle: 0x10001
Service Class ID List:
UUID 128: 00000002-0000-1000-8000-0002ee000002
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 1
"OBEX" (0x0008)

Service Name: Dial-up Networking
Service RecHandle: 0x10002
Service Class ID List:
"Dialup Networking" (0x1103)
"Generic Networking" (0x1201)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 2
Profile Descriptor List:
"Dialup Networking" (0x1103)
Version: 0x0100

Service Name: Serial Port
Service RecHandle: 0x10003
Service Class ID List:
"Serial Port" (0x1101)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 3

Service Name: HF Voice Gateway
Service RecHandle: 0x10004
Service Class ID List:
"Handfree Audio Gateway" (0x111f)
"Generic Audio" (0x1203)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 4
Profile Descriptor List:
"Handsfree" (0x111e)
Version: 0x0101

Service Name: HS Voice Gateway
Service RecHandle: 0x10005
Service Class ID List:
"Headset Audio Gateway" (0x1112)
"Generic Audio" (0x1203)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 5
Profile Descriptor List:
"Headset" (0x1108)
Version: 0x0100

Service Name: OBEX Object Push
Service RecHandle: 0x10006
Service Class ID List:
"OBEX Object Push" (0x1105)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 6
"OBEX" (0x0008)
Profile Descriptor List:
"OBEX Object Push" (0x1105)
Version: 0x0100

Service Name: OBEX File Transfer
Service RecHandle: 0x10007
Service Class ID List:
"OBEX File Transfer" (0x1106)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 7
"OBEX" (0x0008)
Profile Descriptor List:
"OBEX File Transfer" (0x1106)
Version: 0x0100

Service Name: OBEX IrMC Sync Server
Service RecHandle: 0x10008
Service Class ID List:
"IrMC Sync" (0x1104)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 8
"OBEX" (0x0008)
Profile Descriptor List:
"IrMC Sync" (0x1104)
Version: 0x0100

Service Name: NAP service
Service Description: NAP description
Service RecHandle: 0x10009
Service Class ID List:
"Network Access Point" (0x1116)
Protocol Descriptor List:
"L2CAP" (0x0100)
PSM: 15
"BNEP" (0x000f)
Version: 0x0100
SEQ8: 0 6
Language Base Attr List:
code_ISO639: 0x656e
encoding: 0x6a
base_offset: 0x100
Profile Descriptor List:
"Network Access Point" (0x1116)
Version: 0x0100

Service Name: Mouse & Keyboard
Service Description: Remote Control
Service Provider: Sony Ericsson
Service RecHandle: 0x1000a
Service Class ID List:
"Human Interface Device" (0x1124)
Protocol Descriptor List:
"L2CAP" (0x0100)
PSM: 17
"HIDP" (0x0011)
Language Base Attr List:
code_ISO639: 0x656e
encoding: 0x6a
base_offset: 0x100
Profile Descriptor List:
"Human Interface Device" (0x1124)
Version: 0x0100



4: We need to see which channel is assigned to the service "Dial Up networking". Do not be worried by the long output. It is easy to find it. In the above output (in the code box), search for the lines which say "Service Name" and fins the one which says "Dial Up networking". Then follow look through it till you come across another "Service Name". You can see that in the above output, the block below matches our requirements:
Quote:

Service Name: Dial-up Networking
Service RecHandle: 0x10002
Service Class ID List:
"Dialup Networking" (0x1103)
"Generic Networking" (0x1201)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 2
Profile Descriptor List:
"Dialup Networking" (0x1103)
Version: 0x0100



In this entry, the channel number is given. We see that the channel is '2' (as shown by the line Channel : 2).

Note down the channel number. We will need in the next step.

5: Now you have all the required information for the work to be done. Now you need your computer to recognize the phone as the modem. for this, pass the following command:
Code:
00:0D:92:23:FC:25
rfcomm bind 0 12:12:12:12:12:12 2



Remember to replace the address 12:12:12:12:12:12 with your device address and the number '2' at the end with the channel number you will get for YOUR phone.






That was the Bluetooth way. However , if your device is detcted by Linux via Data cable as a modem, things are much easier. You will, in this case have to follow the following steps: Quote:

1: Connect the data cable to the phone.

2: Some phones as for selection of modes e.g. nokia phones ask to select either the data mode or PC suite mode and Sony Phones ask to select either the 'file transfer' mode or 'phone mode'. Select the one which you use on Windows to connect to internet (on nokia it is PC suite mode or Nokia mode and on Sony phones it is 'phone mode'). Wait for 2-3 seconds to get the device detected by Linux.

3: launch the terminal and switch to root by passing the command: su . Enter the password and you will get the # prompt.

4: go to the /dev directory by passing the command: cd /dev

5: Check for the ttyACM devices. issue the command : ls ttyACM*. It should show either ttyACM0 or ttyACM1 as output.

NOTE: If it does not show any output, then your phone is not detected !

6: Note the output which is mostly either ttyACM0 or ttyACM1.




So till now, you have made Linux recognize the phone as a modem either via Bluetooth or via Data cable OR BOTH WAYS. Now you need to dial to connect to the internet. For this you will have to copy the following as save it as /etc/wvdial.conf using the root account:
Code:

[Modem0]
Modem = /dev/rfcomm0
Baud = 230400
SetVolume = 0
DialCommand = ATDT
FlowControl = Hardware(CRTSCTS)

[Modem1]
Modem = /dev/ttyACM0
Baud = 230400
SetVolume = 0
DialCommand = ATDT
FlowControl = Hardware(CRTSCTS)

[Dialer GPRS]
Username = 1
Password = 1
Phone = *99***1#
Mode = 1
Inherits = Modem0

[Dialer DATA]
Username = <>
Password = <>
Phone = *99***1#
Mode = 1
Inherits = Modem1

[Dialer Defaults]
Modem = /dev/rfcomm0
Baud = 230400
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init3 = AT+CGDCONT=1,"IP","airtelgprs.com"
ISDN = 0
Modem Type = Analog Modem
Area Code =
Phone = *99***1#
Username = <>
Password = <>
Ask Password = 0
Dial Command = ATDT
Stupid Mode = 1
Compuserve = 0
Force Address =
Idle Seconds = 3600
DialMessage1 =
DialMessage2 =
ISDN = 0
Auto DNS = 1




Now when dialing via Bluetooth, you will have to pass the following command:
Code:
sudo wvdial GPRS



It will ask for the root password. Enter it and it should connect.

For dialing via data cable, you will have to pass the command:
Code:
sudo wvdial DATA



This will also ask for the root password. Enter the password and it should proceed.

If you have a problem with that, you can reply back with the problem.

 

 

 


Comment/Reply (w/o sign-up)

xboxrulz
My friend was successful in connecting her Macbook to the GPRS on her cellphone I was impressed since she was computer-illiterate to a certain point.

xboxrulz

Comment/Reply (w/o sign-up)

Zohan
QUOTE(borejk @ Sep 6 2008, 02:27 AM) *
Hi Guys!

I have been successful in connecting my phone to internet on both Ubuntu and openSUSE using BOTH the methods. I am not sure about other distros however they should work.

There are two ways to connect to the internet using a GPRS modem phone. For the phones with BLUETOOTH :

THE BLUETOOTH CONNECTION METHOD:
You need to follow the steps below to connect to the internet using a bluetooth connection:

1: Switch on bluetooth on your phone and the computer. Make both your computer and phone visible to other devices.

2: Do a search from Linux for bluetooth devices near you. For this, you need to follow as:

Open terminal / shell / console (whatever you call it)
switch to root user using the command ' su'.
pass the command ' hcitool scan '

After sometime you will get the list of devices with their device address (also called as MAC address) and the device name. . . It will look something like:

12:12:12:12:12:12 PhoneName

Note down the device address of your phone (it will appear the place of the 12:12:12:12:12:12 , but in a similar format). You will need to use it later.

3: Now, you need to find which channel on your phone is assigned to what service on the phone. For this you will need to browse the device services. To do this, pass the following command:

sdptool browse 12:12:12:12:12:12

NOTE: Replace 12:12:12:12:12:12 with your phone address.

You will get something like this (I am showing the output I get for my phone):
Code:

Browsing 00:18:13:47:13:BE .
Service Description: Sony Ericsson W810
Service RecHandle: 0x10000
Service Class ID List:
"PnP Information" (0x1200)

Service Name: OBEX SyncML Client
Service RecHandle: 0x10001
Service Class ID List:
UUID 128: 00000002-0000-1000-8000-0002ee000002
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 1
"OBEX" (0x0008)

Service Name: Dial-up Networking
Service RecHandle: 0x10002
Service Class ID List:
"Dialup Networking" (0x1103)
"Generic Networking" (0x1201)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 2
Profile Descriptor List:
"Dialup Networking" (0x1103)
Version: 0x0100

Service Name: Serial Port
Service RecHandle: 0x10003
Service Class ID List:
"Serial Port" (0x1101)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 3

Service Name: HF Voice Gateway
Service RecHandle: 0x10004
Service Class ID List:
"Handfree Audio Gateway" (0x111f)
"Generic Audio" (0x1203)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 4
Profile Descriptor List:
"Handsfree" (0x111e)
Version: 0x0101

Service Name: HS Voice Gateway
Service RecHandle: 0x10005
Service Class ID List:
"Headset Audio Gateway" (0x1112)
"Generic Audio" (0x1203)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 5
Profile Descriptor List:
"Headset" (0x1108)
Version: 0x0100

Service Name: OBEX Object Push
Service RecHandle: 0x10006
Service Class ID List:
"OBEX Object Push" (0x1105)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 6
"OBEX" (0x0008)
Profile Descriptor List:
"OBEX Object Push" (0x1105)
Version: 0x0100

Service Name: OBEX File Transfer
Service RecHandle: 0x10007
Service Class ID List:
"OBEX File Transfer" (0x1106)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 7
"OBEX" (0x0008)
Profile Descriptor List:
"OBEX File Transfer" (0x1106)
Version: 0x0100

Service Name: OBEX IrMC Sync Server
Service RecHandle: 0x10008
Service Class ID List:
"IrMC Sync" (0x1104)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 8
"OBEX" (0x0008)
Profile Descriptor List:
"IrMC Sync" (0x1104)
Version: 0x0100

Service Name: NAP service
Service Description: NAP description
Service RecHandle: 0x10009
Service Class ID List:
"Network Access Point" (0x1116)
Protocol Descriptor List:
"L2CAP" (0x0100)
PSM: 15
"BNEP" (0x000f)
Version: 0x0100
SEQ8: 0 6
Language Base Attr List:
code_ISO639: 0x656e
encoding: 0x6a
base_offset: 0x100
Profile Descriptor List:
"Network Access Point" (0x1116)
Version: 0x0100

Service Name: Mouse & Keyboard
Service Description: Remote Control
Service Provider: Sony Ericsson
Service RecHandle: 0x1000a
Service Class ID List:
"Human Interface Device" (0x1124)
Protocol Descriptor List:
"L2CAP" (0x0100)
PSM: 17
"HIDP" (0x0011)
Language Base Attr List:
code_ISO639: 0x656e
encoding: 0x6a
base_offset: 0x100
Profile Descriptor List:
"Human Interface Device" (0x1124)
Version: 0x0100
4: We need to see which channel is assigned to the service "Dial Up networking". Do not be worried by the long output. It is easy to find it. In the above output (in the code box), search for the lines which say "Service Name" and fins the one which says "Dial Up networking". Then follow look through it till you come across another "Service Name". You can see that in the above output, the block below matches our requirements:
Quote:

Service Name: Dial-up Networking
Service RecHandle: 0x10002
Service Class ID List:
"Dialup Networking" (0x1103)
"Generic Networking" (0x1201)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 2
Profile Descriptor List:
"Dialup Networking" (0x1103)
Version: 0x0100
In this entry, the channel number is given. We see that the channel is '2' (as shown by the line Channel : 2).

Note down the channel number. We will need in the next step.

5: Now you have all the required information for the work to be done. Now you need your computer to recognize the phone as the modem. for this, pass the following command:
Code:
00:0D:92:23:FC:25
rfcomm bind 0 12:12:12:12:12:12 2
Remember to replace the address 12:12:12:12:12:12 with your device address and the number '2' at the end with the channel number you will get for YOUR phone.
That was the Bluetooth way. However , if your device is detcted by Linux via Data cable as a modem, things are much easier. You will, in this case have to follow the following steps: Quote:

1: Connect the data cable to the phone.

2: Some phones as for selection of modes e.g. nokia phones ask to select either the data mode or PC suite mode and Sony Phones ask to select either the 'file transfer' mode or 'phone mode'. Select the one which you use on Windows to connect to internet (on nokia it is PC suite mode or Nokia mode and on Sony phones it is 'phone mode'). Wait for 2-3 seconds to get the device detected by Linux.

3: launch the terminal and switch to root by passing the command: su . Enter the password and you will get the # prompt.

4: go to the /dev directory by passing the command: cd /dev

5: Check for the ttyACM devices. issue the command : ls ttyACM*. It should show either ttyACM0 or ttyACM1 as output.

NOTE: If it does not show any output, then your phone is not detected !

6: Note the output which is mostly either ttyACM0 or ttyACM1.
So till now, you have made Linux recognize the phone as a modem either via Bluetooth or via Data cable OR BOTH WAYS. Now you need to dial to connect to the internet. For this you will have to copy the following as save it as /etc/wvdial.conf using the root account:
Code:

[Modem0]
Modem = /dev/rfcomm0
Baud = 230400
SetVolume = 0
DialCommand = ATDT
FlowControl = Hardware(CRTSCTS)

[Modem1]
Modem = /dev/ttyACM0
Baud = 230400
SetVolume = 0
DialCommand = ATDT
FlowControl = Hardware(CRTSCTS)

[Dialer GPRS]
Username = 1
Password = 1
Phone = *99***1#
Mode = 1
Inherits = Modem0

[Dialer DATA]
Username = <>
Password = <>
Phone = *99***1#
Mode = 1
Inherits = Modem1

[Dialer Defaults]
Modem = /dev/rfcomm0
Baud = 230400
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init3 = AT+CGDCONT=1,"IP","airtelgprs.com"
ISDN = 0
Modem Type = Analog Modem
Area Code =
Phone = *99***1#
Username = <>
Password = <>
Ask Password = 0
Dial Command = ATDT
Stupid Mode = 1
Compuserve = 0
Force Address =
Idle Seconds = 3600
DialMessage1 =
DialMessage2 =
ISDN = 0
Auto DNS = 1
Now when dialing via Bluetooth, you will have to pass the following command:
Code:
sudo wvdial GPRS
It will ask for the root password. Enter it and it should connect.

For dialing via data cable, you will have to pass the command:
Code:
sudo wvdial DATA
This will also ask for the root password. Enter the password and it should proceed.

If you have a problem with that, you can reply back with the problem.


Wow thanks for this, i'm using Ubuntu, no problems here smile.gif

 

 

 


Comment/Reply (w/o sign-up)

borejk
QUOTE(Zohan @ Sep 7 2008, 02:44 PM) *
Wow thanks for this, i'm using Ubuntu, no problems here smile.gif

First of all welcome to Astahost. And it really feels great if I am giving something to the commuity.... smile.gif

Comment/Reply (w/o sign-up)

iGuest-Andreas
wvdial wont work
Internet Connection In Linux Through Mobile

Hi
Everything works until I have to fix with my wvdial.
I first copied yours and tried and I only get Cannot open /dev/rfcomm0: Host is down

I googled a bit for the wvdial but it did not work either.

Thanks for the great howto btw


-question by Andreas

Comment/Reply (w/o sign-up)

(G)Rossen helfin
Suse problem
Internet Connection In Linux Through Mobile

I m using suse 11.0 since 1 year but till I didnt see a movie and I'm not able to download any codec or plugin for my gnome desk.I use my pc without internet connection and codecs may be directly installed so thats why I m trying to connect my phone .I am working since 4 month to connect with data cable but thats not working .Always I try to install mplayer,vlc and others but not installing so Please any body show how to connect bluetooth or data cable because bluetooth is not working on my pc by given method or if somebody have any player or codec pack or rpm noarch file then Please send on my e id -reply by Rossen helfin

Comment/Reply (w/o sign-up)

(G)vishwanath
but i got an error
Internet Connection In Linux Through Mobile

I followed all the same procedure as u said, but I got this message as error:

"Using interface ppp0
--> pppd: �BL[08]
--> pppd: �BL[08]
--> pppd: �BL[08]
--> pppd: �BL[08]
--> pppd: �BL[08]
--> pppd: �BL[08]
--> Disconnecting at Thu Nov 19 23:04:50 2009
--> The PPP daemon has died: A modem hung up the phone (exit code = 16)
--> man pppd explains pppd error codes in more detail.
--> Try again and look into /var/log/messages and the wvdial and pppd man pages for more information. "

 

Can u say, what's the problem?

Thnks

-question by vishwanath

 


Comment/Reply (w/o sign-up)


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : internet, connection, linux, mobile

  1. Internet - Error Code 500
    (1)
  2. So Many Kinds Of Linux, Which Will You Choose?
    So many kinds of linux,which will you choose? (24)
    1.Debian 2.Fedora 3.Gentoo 4.Mepis 5.Nitix 6.Mandrake 7.Red Hat 8.SUSE 9.Slackware 10.Santa Fe
    Linux 11.Yellow Dog /rolleyes.gif" style="vertical-align:middle" emoid=":rolleyes:" border="0"
    alt="rolleyes.gif" />....
  3. Fedora Core 5
    My troubles with Linux... (3)
    Well first I would like to say 'hello' to everyone, this is my first post! /biggrin.gif"
    style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> Ok, a few months ago I
    decided to abandon WindowsXP and convert to Linux. I chose to install FC5 (Fedora Core 5) and the
    install went smoothly. I had to tweak some of the display settings because it didn't auto-detect
    my monitor type and was having some graphical glitches, but overall it was working great. I
    installed GAIM (AIM and ICQ), aMule (eMule), and Wine (Windows Emulator). I had hoped I co....
  4. AOL Internet Acts Strange Without AOL Browser
    acts a bit strange (3)
    two of my friends have aol internet, dial up and broadband. and both of them normally get annoyed
    when i use firefox on their pcs. they normally use the aol one becasue it is 'faster'. i
    cant really cope becasue it is just so ugly is not a proper browser. but they seem to have a point
    on speed, firefox does seem to perform badly on their computers. it is far better on mine at home.
    is there some way in which the aol browser has some way of optimising for the internet. or slowing
    down ff. it annoys me as the aol browser is rubbish. as proved today when by friend ....
  5. Internet Explorer Tips And Tricks
    (8)
    Internet Explorer Tips and Tricks How to remove IE Tools Menu Items You can remove items on the
    Tools Menu, for example those left over by uninstalled applications 1- Click Start Menu > select
    Run, type "regedit" (without quotes) to run Windows Registry Editor. 2- Find and go to
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Extensions 3- Delete any of the keys you
    don't want to show 4- Close Registry Editor and reboot your computer. How to see page last
    updated date You can easily determine when a web page was last updated. Enter "java script:alert....
  6. Psp And Wirlees Internet - On Security Threats
    (3)
    on the psp there is now a download which gives u internet, i was just wonderin if by intercepting
    someone elses wifi through the air is stealing there internet from their computer giving them a
    worst connection.....
  7. Rich Internet Application Using Openlaszlo
    Rich Internet Application Using openlasz (1)
    Open laszlo is xml to flash server Open laszlo is a platform for rich Internet applications that
    are easy to develop and deploy. The OpenLaszlo system architecture combines the power and usability
    of client/server design with the administrative advantages and cost effectiveness of web
    applications Small Example: CODE               Hello Worl !     Above code
    is to display "Hello World" in a window it has rich collection of components like
    (menu,table,tabstrip), and it supports xmlrpc,webservice,and xmlhttp request. ....
  8. Make Firefox Look Like Internet Explorer
    (12)
    hi Now you can make Firefox look like Internet Explorer!!? /cool.gif' border='0'
    style='vertical-align:middle' alt='cool.gif' /> Here is screen shot
    http://johnhaller.com/jh/mozilla/firefox_i...rer/screenshot/ just go to below website and follow
    steps http://johnhaller.com/jh/mozilla/firefox_internet_explorer/ /cool.gif' border='0'
    style='vertical-align:middle' alt='cool.gif' /> ....
  9. How To Remove Internet Options Features
    (12)
    How to remove Internet (IE) Options features Click Start > Click Run > and type “regedit” (without
    quote) and then click OK. Find and go to following key: HKEY_CURRENT_USER \ Software \ Policies \
    Microsoft \ Internet Explorer Under Internet Explorer key create a new key and name it “Control
    Panel”. To remove features, create any of the following strings under Control Panel key.
    AdvancedTab = Advanced tab ConnectionsTab = Connections tab ContentTab = Content tab GeneralTab =
    General tab ProgramsTab = Programs tab SecurityTab = Security tab And give value of 1 To resto....
  10. Comparison -> Freebsd Vs. Linux Vs. Windows 2000
    (1)
    Here is a comparison between 3 operating systems. Click Here ....
  11. Broadband Dialup Connection Help
    (3)
    I'm using broadband dialup internet connection(PPPOE) using XP pro operating system.Now i
    wan't this dialup connection to be connected automatically whenever i switch on my computer.so
    is it possible? Thanks, sunny....
  12. What Is Your Internet Connection Speed ?
    -- (37)
    So how fast internet connection speed you have? myself i have 2048/768kbits/sec /rolleyes.gif"
    style="vertical-align:middle" emoid=":rolleyes:" border="0" alt="rolleyes.gif" />....
  13. I Hate Internet
    its sooo typical (25)
    my pc pisses me off I hate waiting for sites to pop up I hate going to astahost for free hosting and
    I hate sucking at neopets ....
  14. How To Reinstall Internet Explorer?
    (6)
    How to reinstall Internet Explorer? Just as you know, you can’t reinstall Internet Explorer by
    default, and when you want to reinstall Internet Explorer, setup display following message error:
    Setup has detected a newer version of Internet Explorer already installed on this system. Setup
    cannot continue You have two ways to reinstall Internet Explorer in your system: reinstall Windows
    again!!! Or install another Browser!? But I want to teach you third way!? To remove message error
    and reinstall All components of Internet Explorer 06: 1) Run “registry editor” (go to ....
  15. Centrino Vs Mobile Pentium4
    (3)
    I wan't to buy a powerful processor laptop amd my requirement speed is above 3 Ghz and recently
    Intel released new centrino processor in place of previous Mobile pentium4 with HT technology.so
    which processor is ideal for getting above 3 Ghz speed. Waiting for your reply, sunny.....
  16. Great Internet Radio For Those Liberals On Here!
    (8)
    If you have not yet heard of it, There is a liberal talk show (democrats who are left of the dial
    you can say) station called Air america. The link is here Airamericaradio.com check it out and tune
    in they will give you the honest truth.....
  17. Running Linux On Ps2
    Tried it? (2)
    I have seen many sites selling hard drives and stuffs for ps2 to be able to run linux. Did someone
    here tried it already? It looks decent.......
  18. What Linux Distro Do You Use?
    If you use linux post what Distro u use! (12)
    Hey, As you know the underground OS is coming up to the surface and this is a topic to tell each
    other what Distro you use! Currently im a n00b and i use SuSE 9.1....
  19. Internet Explorer
    internet explorer (5)
    after i go on to internet explorer...in about 30 seconds the page shuts off...does ne1 kno wats
    wrong with it? or do you guys have the problem too?....
  20. Ripping DVD's in linux
    (3)
    You only need install K3b 0.11.7 when all your plugins. Then you install this program, open it and
    go to option tools and codifying video. You can canvert the dvd in avi. this is screenshut to view
    K3B: http://www.radikalsoft.bravehost.com/img/K3B.jpg ....

    1. Looking for internet, connection, linux, mobile

See Also,

*SIMILAR VIDEOS*
Searching Video's for internet, connection, linux, mobile
advertisement



Internet Connection In Linux Through Mobile

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com