[ilugd] BSNL EVDO dongle on Fedora 14

2011-10-04 Thread gurteshwar singh
Hi,

I am trying to help somebody get a BSNL EVDO card  running on Fedora 14.
From lsusb, I get that device is (15eb:1231) . Problem is that Fedora
14 sees it just as a storage device
and is not detected as a modem. I had a similar problem with my
reliance card but usb_modeswitch solved that.
However, configuring usb_modeswitch.conf in this case does  not help.
When usb_modeswitch is run, it ends up
giving the error : 'response endpoint not given or found' . Any help
to get this working would be much appreciated.

Thanks
Gurteshwar

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] BSNL EVDO dongle on Fedora 14

2011-10-04 Thread Mahesh T. Pai
gurteshwar singh said on Tue, Oct 04, 2011 at 03:32:30PM +0530,:
  I am trying to help somebody get a BSNL EVDO card  running on Fedora 14.
  From lsusb, I get that device is (15eb:1231) . Problem is that Fedora
  14 sees it just as a storage device
  and is not detected as a modem. I had a similar problem with my
  reliance card but usb_modeswitch solved that.
  However, configuring usb_modeswitch.conf in this case does  not help.
  When usb_modeswitch is run, it ends up
  giving the error : 'response endpoint not given or found' . Any help
  to get this working would be much appreciated.

Tried udev rules? 

That will force the system to recognise the device as a modem.
However, you will need to look elsewhere (other than me, that is) for
info on how to go about actually doing this.

Sorry, I have to admit my ignorance on writing udev rules.   


-- 
Mahesh T. Pai   ||
It's not the software that's free; it's you.

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] CentOS 5.6 ( Multiple Problems )

2011-10-04 Thread Gaurang Aggarwal
Hello guys ,

I am using CentOS 5.6 on my VPS , and I am having multiple problems .
1.
 /etc/init.d/httpd reload
Reloading httpd:   [FAILED]
[root@ip-1-- /]# /etc/init.d/httpd start
Starting httpd:[FAILED]
[root@ip-1--  /]# /etc/init.d/httpd stop
Stopping httpd:[FAILED]

I couldn't start or restart the httpd .

c/init.d/httpd restart
Stopping httpd:[FAILED]
Starting httpd: (13)Permission denied: make_sock: could not bind to address
[::]:80
(13)Permission denied: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
   [FAILED]


2. Also service command is not installed

root@ip /]# service httpd start
bash: service: command not found

[root@ip-xx ]#

How to install service ?

Please suggest what to do ?
-- 
-- 
Regards
Gaurang Agrawal
http://gaurang.me
http://uni2versity.com
Twitter : gnaruag
Email : m...@gaurang.me
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] CentOS 5.6 ( Multiple Problems )

2011-10-04 Thread Kumar Appaiah
On Wed, Oct 05, 2011 at 09:23:04AM +0530, Gaurang Aggarwal wrote:
 I couldn't start or restart the httpd .
 
 c/init.d/httpd restart
 Stopping httpd:[FAILED]
 Starting httpd: (13)Permission denied: make_sock: could not bind to address
 [::]:80
 (13)Permission denied: make_sock: could not bind to address 0.0.0.0:80
 no listening sockets available, shutting down
 Unable to open logs
[FAILED]

You should check the permission of /var/log (and the corresponding
subdirectories for Apache on CentOS).

 
 2. Also service command is not installed
 
 root@ip /]# service httpd start
 bash: service: command not found
 
 [root@ip-xx ]#
 
 How to install service ?

This might be due to the PATH environment variable; could you please
try /sbin/service httpd start? In any case, I don't believe this is
the cause of your trouble.

Thanks.

Kumar
-- 
:
[ GNU/Linux One Stanza Tip (LOST) ]###

Sub : Converting email data [#2] LOST #566

Some useful links for Email Data Conversion:
http://lists.ethernal.org/cantlug-0209/msg00277.html
http://people.freenet.de/ukrebs/dbxconv.html
http://www.joshie.com/projects/dawn/
http://www.interguru.com/mailconv.htm
http://www.interguru.com/MailInformation.htm
 
[abhiramkushwah (at) rediffmail.com###
:

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] CentOS 5.6 ( Multiple Problems )

2011-10-04 Thread Raj Mathur (राज माथुर)
On Wednesday 05 Oct 2011, Gaurang Aggarwal wrote:
 c/init.d/httpd restart
 Stopping httpd:[FAILED]
 Starting httpd: (13)Permission denied: make_sock: could not bind to
 address [::]:80
 (13)Permission denied: make_sock: could not bind to address
 0.0.0.0:80 no listening sockets available, shutting down
 Unable to open logs
[FAILED]

Apache is trying to bind to IPv6 instead of IPv4.  Is that what you 
really want?  If not, try changing your Listen directive from:

  Listen 80

to

  Listen 0.0.0.0:80

Regards,

-- Raj
-- 
Raj Mathurr...@kandalaya.org  http://kandalaya.org/
   GPG: 78D4 FC67 367F 40E2 0DD5  0FEF C968 D0EF CC68 D17F
PsyTrance  Chill: http://schizoid.in/   ||   It is the mind that moves

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] CentOS 5.6 ( Multiple Problems )

2011-10-04 Thread sam
Hi,

Can show us the logs.

As far as service command is concerned,you can install it using the
package manager
or check its installed or not.

rpm -qa |grep service



2011/10/5 Raj Mathur (राज माथुर) r...@linux-delhi.org:
 On Wednesday 05 Oct 2011, Gaurang Aggarwal wrote:
 c/init.d/httpd restart
 Stopping httpd:                                            [FAILED]
 Starting httpd: (13)Permission denied: make_sock: could not bind to
 address [::]:80
 (13)Permission denied: make_sock: could not bind to address
 0.0.0.0:80 no listening sockets available, shutting down
 Unable to open logs
                                                            [FAILED]

 Apache is trying to bind to IPv6 instead of IPv4.  Is that what you
 really want?  If not, try changing your Listen directive from:

  Listen 80

 to

  Listen 0.0.0.0:80

 Regards,

 -- Raj
 --
 Raj Mathur                r...@kandalaya.org      http://kandalaya.org/
       GPG: 78D4 FC67 367F 40E2 0DD5  0FEF C968 D0EF CC68 D17F
 PsyTrance  Chill: http://schizoid.in/   ||   It is the mind that moves

 ___
 Ilugd mailing list
 Ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd




-- 
Best Regards,
Suresh Kumar Prajapati
Linux System Admin
E-mail: er.sureshprajap...@gmail.com
Mob No: +91-8800920533

Theory is when you know all and nothing works. Practice is when all
works and nobody knows why. In this case we have put together theory
and practice: nothing works... and nobody knows why!

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd