[fsug-tvm] Re: Learn the UNIX/Linux command line,10 Linux c ommands you’ve never used

2009-03-24 Thread Harish CM
thanks vinu, want to know what packages to install in debian to activate
audio vol control/mute switches on laptop
best/harish

2009/3/23 vinu 

>
> Learn the UNIX/Linux command line
> 10 Linux commands you’ve never used
>
>
> It takes years maybe decades to master the commands available to you at
> the Linux shell prompt. Here are 10 that
> you will have never heard of or used. They are in no particular order.
> My favorite is mkfifo.
>
>   1. pgrep, instead of:
>
>  # ps -ef | egrep '^root ' | awk '{print $2}'
>  1
>  2
>  3
>  4
>  5
>  20
>  21
>  38
>  39
>  ...
>  You can do this:
>  # pgrep -u root
>  1
>  2
>  3
>  4
>  5
>  20
>  21
>  38
>  39
>  ...
>   2. pstree, list the processes in a tree format. This can be VERY
> useful when working with WebSphere or other heavy duty applications.
>
>  # pstree
>  init-+-acpid
>  |-atd
>  |-crond
>  |-cups-config-dae
>  |-cupsd
>  |-dbus-daemon-1
>  |-dhclient
>  |-events/0-+-aio/0
>  | |-kacpid
>  | |-kauditd
>  | |-kblockd/0
>  | |-khelper
>  | |-kmirrord
>  | `-2*[pdflush]
>  |-gpm
>  |-hald
>  |-khubd
>  |-2*[kjournald]
>  |-klogd
>  |-kseriod
>  |-ksoftirqd/0
>  |-kswapd0
>  |-login---bash
>  |-5*[mingetty]
>  |-portmap
>  |-rpc.idmapd
>  |-rpc.statd
>  |-2*[sendmail]
>  |-smartd
>  |-sshd---sshd---bash---pstree
>  |-syslogd
>  |-udevd
>  |-vsftpd
>  |-xfs
>  `-xinetd
>   3. bc is an arbitrary precision calculator language. Which is great.
> I found it useful in that it can perform square root operations in shell
> scripts. expr does not support square roots.
>
>  # ./sqrt
>  Usage: sqrt number
>  # ./sqrt 64
>  8
>  # ./sqrt 132112
>  363
>  # ./sqrt 1321121321
>  36347
>  Here is the script:
>  # cat sqrt
>  #!/bin/bash
>  if [ $# -ne 1 ]
>  then
>  echo 'Usage: sqrt number'
>  exit 1
>  else
>  echo -e "sqrt($1)\nquit\n" | bc -q -i
>  fi
>   4. split, have a large file that you need to split into smaller
> chucks? A mysqldump maybe? split is your command. Below I split a 250MB
> file into 2 megabyte chunks all starting with the prefix LF_.
>
>  # ls -lh largefile
>  -rw-r--r-- 1 root root 251M Feb 19 10:27 largefile
>  # split -b 2m largefile LF_
>  # ls -lh LF_* | head -n 5
>  -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_aa
>  -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_ab
>  -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_ac
>  -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_ad
>  -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_ae
>  # ls -lh LF_* | wc -l
>  126
>   5. nl numbers lines. I had a script doing this for me for years until
> I found out about nl.
>
>  # head wireless.h
>  /*
>  * This file define a set of standard wireless extensions
>  *
>  * Version : 20 17.2.06
>  *
>  * Authors : Jean Tourrilhes - HPL
>  * Copyright (c) 1997-2006 Jean Tourrilhes, All Rights Reserved.
>  */#ifndef _LINUX_WIRELESS_H
>  # nl wireless.h | head
>  1 /*
>  2 * This file define a set of standard wireless extensions
>  3 *
>  4 * Version : 20 17.2.06
>  5 *
>  6 * Authors : Jean Tourrilhes - HPL
>  7 * Copyright (c) 1997-2006 Jean Tourrilhes, All Rights Reserved.
>  8 */9 #ifndef _LINUX_WIRELESS_H
>
>   6. mkfifo is the coolest one. Sure you know how to create a pipeline
> piping the output of grep to less or maybe even perl. But do you know
> how to make two commands communicate through a named pipe?First let me
> create the pipe and start writing to it:
>
>  mkfifo pipe; tail file > pipe
>
>  Then read from it:
>
>  cat pipe
>   7. ldd, want to know which Linux thread library java is linked to?
>
>  # ldd /usr/java/jre1.5.0_11/bin/java
>  libpthread.so.0 => /lib/tls/libpthread.so.0 (0x00bd4000)
>  libdl.so.2 => /lib/libdl.so.2 (0x00b87000)
>  libc.so.6 => /lib/tls/libc.so.6 (0x00a5a000)
>  /lib/ld-linux.so.2 (0x00a3c000)
>   8. col, want to save man pages as plain text?
>
>  # PAGER=cat
>  # man less | col -b > less.txt
>   9. xmlwf, need to know if a XML document is well formed? (A
> configuration file maybe..)
>
>  # curl -s 'http://bashcurescancer.com' > bcc.html
>  # xmlwf bcc.html
>  # perl -i -pe 's@@@g' bcc.html
>  # xmlwf bcc.html
>  bcc.html:104:2: mismatched tag
>  10. lsof lists open files. You can do all kinds of cool things with
> this. Like find which ports are open:
>
>  # lsof | grep TCP
>  portmap 2587 rpc 4u IPv4 5544 TCP *:sunrpc (LISTEN)
>  rpc.statd 2606 root 6u IPv4 5585 TCP *:668 (LISTEN)
>  sshd 2788 root 3u IPv6 5991 TCP *:ssh (LISTEN)
>  sendmail 2843 root 4u IPv4 6160 TCP badhd:smtp (LISTEN)
>  vsftpd 9337 root 3u IPv4 34949 TCP *:ftp (LISTE

[fsug-tvm] Tata Uses Opensourse

2009-03-24 Thread Saral Sasidharan
Tata website uses opensource
http://www.efytimes.com/efytimes/fullnews.asp?edid=3&magid=11&ntype=email&email1=saralsasidha...@gmail.com

-- 
Hav a nice day

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Agenda for one day ubuntu Re mastering workshop

2009-03-24 Thread Nikhil Nair
Hi, I am going to be out of station April 23rd to May 11th so I vote for
either early April or after the first week of May.
It would be great if we could do it in May - I imagine with the vacations
during May-June getting a room at the college for this would be less of an
issue as well.

- Nikhil

On Wed, Mar 25, 2009 at 7:47 AM, Sunil Thomas Thonikuzhiyil <
vu2...@gmail.com> wrote:

> Hi all
>  I am  out of station from 4th to 14th. I may have election duty. The
> only possible dates in April are 17h and 25th. I am free during May June (
> vacation).
>My first preference is for 25th.
> Sunil
>
>
>
> On Wed, Mar 25, 2009 at 6:55 AM, Navaneeth T  wrote:
>
>> OK then try to put in the second week
>> first week kannur university  have the  lab exam, that's why i suggested
>> the 3rd and 4th
>>
>>
>>
>>
>
>
> --
> Sunil T T
> Assistant Professor
> Dept. of Electronics
> College of Engineering
> Attingal Pin 695 101
> http://brainstorms.in
>
>
> >
>

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: java applet

2009-03-24 Thread Nikhil Nair
Another powerful cross platform IDE you can use for Java is
NetBeans -
this is the IDE for Java that was started by Sun. I have found it to load
faster in Ubuntu but I have not used it much since I don't do much Java
programming


On Wed, Mar 25, 2009 at 5:09 AM, midhun raj <
smidhunrajloveslinu...@gmail.com> wrote:

> in my college i have to write java applet programs.. we use the eclipse ide
> to do this..but when i try eclipse in my home it is getting hanged a lot of
> times .. and it is very slow to.. can anyone suggest me the method to do
> this in ubuntu...
>
> >
>

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Agenda for one day ubuntu Re mastering workshop

2009-03-24 Thread Sunil Thomas Thonikuzhiyil
Hi all
 I am  out of station from 4th to 14th. I may have election duty. The
only possible dates in April are 17h and 25th. I am free during May June (
vacation).
   My first preference is for 25th.
Sunil



On Wed, Mar 25, 2009 at 6:55 AM, Navaneeth T  wrote:

> OK then try to put in the second week
> first week kannur university  have the  lab exam, that's why i suggested
> the 3rd and 4th
>
>
> >
>


-- 
Sunil T T
Assistant Professor
Dept. of Electronics
College of Engineering
Attingal Pin 695 101
http://brainstorms.in

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: mounting problem...

2009-03-24 Thread stranger in black
didnt hibernated the s/m till now

On Tue, Mar 24, 2009 at 8:15 PM, Syam Krishnan  wrote:

>
> Aswin S wrote:
> > Did u Hibernate instead of shutting down? If so Shut down windows
> > properly.
> If it doesn't work even after that, try mounting the partition with the
> mount command.. Then post the output the command and that of:
> dmesg|tail
>
> regs,
>
> Syam
>
> >
>


-- 
junise safvan
project guidance on vhdl, image processing, embedded system designing etc

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Agenda for one day ubuntu Re mastering workshop

2009-03-24 Thread Navaneeth T
OK then try to put in the second week
first week kannur university  have the  lab exam, that's why i suggested the
3rd and 4th

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Agenda for one day ubuntu Re mastering workshop

2009-03-24 Thread Mahesh Mohan
Sunil sir can decide on this. We can carry out the workshop as early as
possible.
=
   .--.
  |o_o |
  |:_ /  |
 / / \ \
(|| )
   /'\_   _  /  `\
   \___)=(___/

http://maheshmohan.wordpress.com
Mahakavi Kumaranashan Said...

maaruvin...

allengil mattum
swayamathu ningale thaan

Switch to GNU/Linux before you are forced to.. !
=


On Wed, Mar 25, 2009 at 6:48 AM, Navaneeth T  wrote:

>
> i think it is better to be fixed in 3rd or 4th week of April
>
>
> >
>

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Agenda for one day ubuntu Re mastering workshop

2009-03-24 Thread Navaneeth T
i think it is better to be fixed in 3rd or 4th week of April

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] java applet

2009-03-24 Thread midhun raj
in my college i have to write java applet programs.. we use the eclipse ide
to do this..but when i try eclipse in my home it is getting hanged a lot of
times .. and it is very slow to.. can anyone suggest me the method to do
this in ubuntu...

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Agenda for one day ubuntu Re mastering workshop

2009-03-24 Thread Prasad SR
IMHO, why cant we do it earlier on Apr 4th, If the date is convenient to all
and Sunil sir get permission?


-- 
-- 
Regards,

Prasad.S.R

"Many will call me an adventurer - and that I am, only one of a different
sort: one of those who risks his skin to prove his platitudes." -- CHE

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Agenda for one day ubuntu Re mastering workshop

2009-03-24 Thread Navaneeth T
i will

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Malayalam Firefox

2009-03-24 Thread Anoop

All,

Malayalam Firefox 3.1 beta 3 is available here:

https://www.mozilla.com/en-US/firefox/all-beta.html

Please test it and put your comments.

-- 
With Regards,
Anoop P

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Agenda for one day ubuntu Re mastering workshop

2009-03-24 Thread Sunil Thomas Thonikuzhiyil
Ok. My  idea is to run the course  towards the end of April. We are also
having exams (CUSAT), but it will be over by first week of May.   When is
the Kerala university exams scheduled ?

 How many of you will be there if I run it in the last week of April. (
Any Saturday after Elections is fine for me)
 Please let me know.
 @ Anoop
  What is your opinion? I am yet to get permission. I may get it this week.
Sunil



On Tue, Mar 24, 2009 at 9:47 PM, midhun raj <
smidhunrajloveslinu...@gmail.com> wrote:

> Sir,
>
> i am a student from barton hill govt engineering college..
>
> i am very much interested in attending the seminar...
>
> and i will bring my laptop... sir.. but the main
>  problem is that we might be having university exams...
>
>
>
>
> >
>


-- 
Sunil T T
Assistant Professor
Dept. of Electronics
College of Engineering
Attingal Pin 695 101
http://brainstorms.in

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] text to audio converter

2009-03-24 Thread midhun raj
i want to know which is the best text to audio converter for ubuntu..8.04
thanx in advance..

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: usb 1-3: new full speed USB device using ohci_hcd and address 1

2009-03-24 Thread Abdul Salam
 I do am experiencing the same problem with western digital passport
essential drive. It works after removing ehci module. If ehci is removed the
drive works in USB1 mean 12 Mbps, mean ~at 1MB with uhci moule.

 I have tried lot of option even with latest kernel 2.6.28 but nothing
worked. Think it has to do with USB2 Host controller compatibility etc..

 But any how it works perfectly in windows xp..

Thanks,
Salam

On Mon, Mar 23, 2009 at 11:33 PM, Kurian John  wrote:

>  Dear Vipin,
>
> Can you provide more info? Like the distribution you are using, kernel
> version and the hardware which's giving you trouble? Is it an external hard
> drive?
>
> I just googled the error and found some support forums suggesting removal
> of the usb-ehci kernel module for similar problems
>
>
> http://www.linuxquestions.org/questions/debian-26/problems-getting-external-usb-hard-drive-to-work-348794/
> http://ubuntuforums.org/archive/index.php/t-257512.html
>
> But these posts are all 4-5 years old and so I'm not sure if it'd apply to
> you.
>
> Kurian
>
> On 03/22/2009 10:00 AM, Vipin kumar wrote:
>
> device descriptor read/64, error -62
>
>
>
> >
>

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Agenda for one day ubuntu Re mastering workshop

2009-03-24 Thread midhun raj
Sir,

i am a student from barton hill govt engineering college..

i am very much interested in attending the seminar...

and i will bring my laptop... sir.. but the main
 problem is that we might be having university exams...

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: BSNL WLL Clarity Modem

2009-03-24 Thread Navaneeth T
i am not copied anything man i give the link http://brainstorms.in/?p=194 in
the post of fsug-knr

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: mounting problem...

2009-03-24 Thread Syam Krishnan

Aswin S wrote:
> Did u Hibernate instead of shutting down? If so Shut down windows 
> properly.
If it doesn't work even after that, try mounting the partition with the 
mount command.. Then post the output the command and that of:
dmesg|tail

regs,

Syam

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: mounting problem...

2009-03-24 Thread Aswin S
Did u Hibernate instead of shutting down? If so Shut down windows properly.

2009/3/24 stranger in black 

> while trying to mount my windows primary ntfs partition (hd0,0) i am
> getting an error message which is attached with this mail.
>
>
> --
> junise safvan
> project guidance on vhdl, image processing, embedded system designing etc
>
> >
>


-- 
http://www.aswinatgec.wordpress.com/
i would love to change the world. but they wont give me the source
code...

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Voice Chat in Ubuntu

2009-03-24 Thread Anoop Jacob Thomas
This should give you a start.

http://wiki.ekiga.org/index.php/Configuring_Ekiga

http://wiki.ekiga.org/index.php/Calling

http://wiki.ekiga.org/index.php/Main_Page

also http://www.gtalk2voip.com/gtalk_service_yahoo.shtml
-- 
Anoop Jacob Thomas

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Bsnl Broadband

2009-03-24 Thread Visakh

Hi,
  Thanks for the clarification! I guess you don't have a choice, but
to use a bridge. However, the important information to me is that your
net speed increased. I am still trying to figure out how that is
possible. I still hope someone can point out to me how - or else I
will have to keep searching for an answer.

Regards,
Gokul Das

On Mar 24, 5:36 pm, Santhosh സന്തോഷ് VS 
wrote:
> The above stated points are right from my research on the matter using
> google :)
> But for me it is the BSNL person asked to change config to bridge, as iam
> unable to connect
> through PPPoE. It seems to be faster but yes the open port issue exist
> still.
> Also one doc from BSNL culcutta is another online source. it also say the
> same
> for all modem types.Iam also struggling to change connection to PPPoE .
> For a lookhttp://www.calcutta.bsnl.co.in/dataoneinstall/pppoe10a.swf
>
>
>
> On Tue, Mar 24, 2009 at 1:42 AM, Visakh  wrote:
>
> > Santhosh സന്തോഷ് VS  wrote:
> > > Some soggession is there saying swtching from pppoe to bridge is good
> > with a
> > > firewall.This could be also done with the above instructions.
>
> > I heard the same suggestion from my friend, but to date I have found
> > no explanation why it is so. Infact, it looks like PPPoE is better due
> > to following factors:
>
> > a) PPPoE allows you to connect more than one system simultaneously.
> > b) PPPoE gives an 'always ON' connection whereas bridged connection
> > gets terminated when your system is shut down.
> > c) PPPoE reconnects automatically when link fails. Bridge doesn't.
> > d) PPPoE also allows you to login automatically. Bridge requires login
> > from your system
> > e) In PPPoE mode, gateway acts like a firewall (no open ports). In
> > bridged mode, the system is vulnerable.
> > f) Slight increase in speed is reported with bridging, with no
> > explanations whatsoever. Looks like they were predestined to judge the
> > bridged mode faster.
>
> > Looks to me like it is an unsubstantiated rumour or myth. Can somebody
> > please throw some light on this?
>
> > Regards,
> > Gokul Das
>
> --
> My Sitehttp://everlovingyouth.googlepages.com
> My Technical Writehttp://acutedeveloper.blogspot.com
--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Voice Chat in Ubuntu

2009-03-24 Thread BINNY THOMAS
How to use Ekiga softphone? All it shows is a Keypad like a phone?

On Tue, Mar 24, 2009 at 4:48 PM, Anoop Jacob Thomas wrote:

> It worked for me for two days after installation. And now no life, sorry.
> Only text works.
>
> Meanwhile to call you friends, you can try ekiga.
> --
> Anoop Jacob Thomas
>
>
>
> >
>

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Bsnl Broadband

2009-03-24 Thread Santhosh സന്തോഷ് VS
The above stated points are right from my research on the matter using
google :)
But for me it is the BSNL person asked to change config to bridge, as iam
unable to connect
through PPPoE. It seems to be faster but yes the open port issue exist
still.
Also one doc from BSNL culcutta is another online source. it also say the
same
for all modem types.Iam also struggling to change connection to PPPoE .
For a look
http://www.calcutta.bsnl.co.in/dataoneinstall/pppoe10a.swf

On Tue, Mar 24, 2009 at 1:42 AM, Visakh  wrote:

>
> Santhosh സന്തോഷ് VS  wrote:
> > Some soggession is there saying swtching from pppoe to bridge is good
> with a
> > firewall.This could be also done with the above instructions.
>
>
> I heard the same suggestion from my friend, but to date I have found
> no explanation why it is so. Infact, it looks like PPPoE is better due
> to following factors:
>
> a) PPPoE allows you to connect more than one system simultaneously.
> b) PPPoE gives an 'always ON' connection whereas bridged connection
> gets terminated when your system is shut down.
> c) PPPoE reconnects automatically when link fails. Bridge doesn't.
> d) PPPoE also allows you to login automatically. Bridge requires login
> from your system
> e) In PPPoE mode, gateway acts like a firewall (no open ports). In
> bridged mode, the system is vulnerable.
> f) Slight increase in speed is reported with bridging, with no
> explanations whatsoever. Looks like they were predestined to judge the
> bridged mode faster.
>
> Looks to me like it is an unsubstantiated rumour or myth. Can somebody
> please throw some light on this?
>
> Regards,
> Gokul Das
>  >
>


-- 
My Site
http://everlovingyouth.googlepages.com
My Technical Write
http://acutedeveloper.blogspot.com

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Please Review, what about this?

2009-03-24 Thread Anoop Jacob Thomas
I back all the suggestions. +1.

That would make it much simple and pretty.

-- 
Anoop Jacob Thomas

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Error 15 file not found

2009-03-24 Thread vasanth tm
Dear arun,
   This error is due to missing initrd.So boot your linux
box to rescue,and install initrd. chroot /mnt/sysimage, mkinitrd
/boot/initrd-unmae-r.img unme-r
On Tue, Mar 24, 2009 at 12:24 PM, Arun v vempan wrote:

> Hi all,
>
> I am using Fedora core 6.when i boot my server i got an error message
>
> Error 15:File not found
> press any key to continue.
>
> I want my server back in same condition.How to solve this Error.
>
>
> Thanks in Advance
> Regards Arun.v
>
> >
>

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Voice Chat in Ubuntu

2009-03-24 Thread Anoop Jacob Thomas
It worked for me for two days after installation. And now no life, sorry.
Only text works.

Meanwhile to call you friends, you can try ekiga.
-- 
Anoop Jacob Thomas

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Bsnl Broadband

2009-03-24 Thread Visakh

Santhosh സന്തോഷ് VS  wrote:
> Some soggession is there saying swtching from pppoe to bridge is good with a
> firewall.This could be also done with the above instructions.


I heard the same suggestion from my friend, but to date I have found
no explanation why it is so. Infact, it looks like PPPoE is better due
to following factors:

a) PPPoE allows you to connect more than one system simultaneously.
b) PPPoE gives an 'always ON' connection whereas bridged connection
gets terminated when your system is shut down.
c) PPPoE reconnects automatically when link fails. Bridge doesn't.
d) PPPoE also allows you to login automatically. Bridge requires login
from your system
e) In PPPoE mode, gateway acts like a firewall (no open ports). In
bridged mode, the system is vulnerable.
f) Slight increase in speed is reported with bridging, with no
explanations whatsoever. Looks like they were predestined to judge the
bridged mode faster.

Looks to me like it is an unsubstantiated rumour or myth. Can somebody
please throw some light on this?

Regards,
Gokul Das
--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Google talk

2009-03-24 Thread Nikhil Nair
http://synapse.im/It is primarily a jabber client and its in alpha right
now.
The GTalk voice is not supported... but it does have some cool social stuff
like activity feeds, etc...

On Tue, Mar 24, 2009 at 1:12 PM, BINNY THOMAS  wrote:

> Does it have voice support?
>
>
> On Mon, Mar 23, 2009 at 10:31 PM, Anish .C  wrote:
>
>> I have no idea how can I add gmail account in that.
>>
>>
>> Dur jaake bhi mujse
>> tum mere yaadon mein rehnaa...
>>
>> (¯`·._.·[-=|äñÎsh|=-]·._.·´¯)
>>
>> http://thecoderinc.blogspot.com
>>
>>
>>
>> On Mon, Mar 23, 2009 at 7:33 PM, Sebin Jacob wrote:
>>
>>> Synapse Brings Elegant Jabber/Google Talk to Linux
>>> http://tinyurl.com/cht5ta
>>>
>>> --
>>> ...if I fought with you, if i fell wounded and allowed no one to learn of
>>> my suffering, if I never turned my back to the enemy: Give me your blessing!
>>> (Nikos Kazantzakis)
>>>
>>>
>>>
>>
>>
>>
>
> >
>

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: BSNL WLL Clarity Modem

2009-03-24 Thread Dipin Krishna

Hello dude this is my blog contenthow can u copy it without asking
me.

On Mar 9, 9:03 am, arun kamal  wrote:
> *Install bsnl wll clarity phone in linux(ubuntu)*
>
> Hello linuxians,
> Failed to access internet through your bsnl clarity phone….
> Here is a easy way
>
> 1. Just download this executable…..bsnlclarity and save it to your home
> folder.
>
> 2. Connect your phone to the system with the usb cable.
>
> 3. Now at terminal type
>
> $ sudo ./bsnlclarity
>
> You will be asked for your username and password for accessing the internet
> enter it …..
> now start surffing
>
> Ctrl+C to stop
> *
> Here is the step by step method*
>
> 1) Step 1 Load the driver
>
> $ sudo /sbin/modprobe usbserial vendor=0×15eb product=0×0001
>
> 2) load ppp driver
>
> $ sudo /sbin/modprobe ppp_generic
>
> 3) Check dmesg output
>
> $ sudo dmesg
>
> I got
> [ 227.271459] /build/buildd/linux-2.6.24/drivers/usb/serial/usb-serial.c:
> USB Serial support registered for generic
> [ 227.271485] usbserial_generic 2-1:1.0: generic converter detected
> [ 227.271616] usb 2-1: generic converter now attached to ttyUSB0
> [ 227.271627] usbserial_generic 2-1:1.1: generic converter detected
> [ 227.271687] usb 2-1: generic converter now attached to ttyUSB1
> [ 227.271697] usbcore: registered new interface driver usbserial_generic
> [ 227.271700] /build/buildd/linux-2.6.24/drivers/usb/serial/usb-serial.c:
> USB Serial Driver core
> [ 276.412779] PPP generic driver version 2.4.2
>
> 4) run wvdialconf
>
> $ sudo wvdial.conf
>
> This create a skeleton wvdial.conf
>
> 5) Edit it so that it looks like
>
> $ sudo gedit /etc/widial.conf
>
> [Dialer Defaults]
> Init1 = ATZ
> Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
> Init3 = at+crm=1;+cmux=1;+cps=33;+cta=0
> Modem Type = Analog Modem
> ISDN = 0
> Phone = #777
> Modem = /dev/ttyUSB0
> Username = YOUR_USERNAME
> Password = YOUR_PASSWORD
> Baud = 460800
> Stupid Mode = 1
> Auto DNS
> Check Def Route
>
> Enter your username and password…username is your phone number including
> your std code but no zero at first….password is the last four digits of your
> phone number..
>
> eg: My phone number is 0470-2150026 , so my username and password is :
> Username : 4702150026
> Password : 0026
>
> 6) run wvdial to connect
>
> $ wvdial
>
> I got
>
> –> Ignoring malformed input line: “Auto DNS”
> –> Ignoring malformed input line: “Check Def Route”
> –> WvDial: Internet dialer version 1.60
> –> Cannot get information for serial port.
> –> Initializing modem.
> –> Sending: ATZ
> ATZ
> OK
> –> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
> ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
> OK
> –> Sending: at+crm=1;+cmux=1;+cps=33;+cta=0
> at+crm=1;+cmux=1;+cps=33;+cta=0
> OK
> –> Modem initialized.
> –> Sending: ATDT#777
> –> Waiting for carrier.
> ATDT#777
> CONNECT
> –> Carrier detected. Starting PPP immediately.
> –> Starting pppd at Wed Oct 22 21:30:16 2008
> –> Pid of pppd: 6442
> –> Using interface ppp0
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
> –> local IP address 10.2.3.219
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
> –> remote IP address 10.64.64.64
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
> –> primary DNS address 218.248.240.79
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
> –> secondary DNS address 218.248.240.24
> –> pppd: [17][07][08]X[16][07][08] [18][07][08]
>
> CRTL+C to disconnect
>
> Enjoy surffing…..

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Google talk

2009-03-24 Thread BINNY THOMAS
Does it have voice support?

On Mon, Mar 23, 2009 at 10:31 PM, Anish .C  wrote:

> I have no idea how can I add gmail account in that.
>
>
> Dur jaake bhi mujse
> tum mere yaadon mein rehnaa...
>
> (¯`·._.·[-=|äñÎsh|=-]·._.·´¯)
>
> http://thecoderinc.blogspot.com
>
>
>
> On Mon, Mar 23, 2009 at 7:33 PM, Sebin Jacob wrote:
>
>> Synapse Brings Elegant Jabber/Google Talk to Linux
>> http://tinyurl.com/cht5ta
>>
>> --
>> ...if I fought with you, if i fell wounded and allowed no one to learn of
>> my suffering, if I never turned my back to the enemy: Give me your blessing!
>> (Nikos Kazantzakis)
>>
>>
>>
>
> >
>

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---



[fsug-tvm] Re: Mikrophone

2009-03-24 Thread BINNY THOMAS
Yes I tried everything. It only worked in hardy heron(That was the only good
thing about it).

Thanks

On Mon, Mar 23, 2009 at 10:29 PM, Kurian John  wrote:

>
> Did you check your volume and switches in the mixer? Many soundcards
> share mic jacks with line-in or rear/side speakers.
> For that you can either use the mixer from the volume control icon in
> the notification area or run alsamixer -c0 from the command line
>
> On 03/23/2009 09:34 PM, BINNY THOMAS wrote:
> > Hi
> >  I cant get my microphone to work in Ubuntu Intrepid.This has been
> > troubling me from my first experience with Linux aka Gutsy. I have
> > downloaded the realtek drivers for Linux and I would like someone's
> > advice before  I do anything drastic.
> >
> > Thanks in advance
> >
> > >
>
> >
>

--~--~-~--~~~---~--~~
"Freedom is the only law". 
"Freedom Unplugged"
http://www.ilug-tvm.org

You received this message because you are subscribed to the Google
Groups "ilug-tvm" group.
To post to this group, send email to ilug-tvm@googlegroups.com
To unsubscribe from this group, send email to
ilug-tvm-unsubscr...@googlegroups.com

For details visit the website: www.ilug-tvm.org or the google group page: 
http://groups.google.com/group/ilug-tvm?hl=en
-~--~~~~--~~--~--~---