[ilugd] Problem with MSCHAP authentication in FreeRadius

2012-01-20 Thread Dhiraj Gaur
Hi

I have been trying to implement radius authetication server at my
workplace. The idea is to have all wifi access points authenticate against
a radius server.
The radius server needs to pass authentication to a backend Active
Directory server. I have been sucessful in authenticating wifi users
against file based and SQL based authentication in radius. NTLM_AUTH using
PAP also works fine, wherein plaintext password is sucessfully
authenticated against the AD and I get an "Access-Accept". However when I
pass the same credentials over CHAP, MSCHAP or EAP_MSCHAP the same is not
working and I end up in a "Access-Reject". Seems like that the ntlm_auth
program is not parsing the received encrypted password hence the
authetication fails. MSCHAP is a requirement as wifi clients at my place
mostly have eap supplicant. (Read in freeradius documentation that eap and
ldap doesnt go hand in hand, I may be wrong at interpreting the same)

The freeradius logs for all the cases is listed below. Radius gurus please
point me to the right direction as to make MS_CHAP authentication owrk over
ntlm_auth or ldap(if possible).

PS: I did all the testing using JRadius simulator.

Regards
Dhiraj Gaur

-- LOGS --
rad_recv: Access-Request packet from host 192.168.3.210 port 32854, id=22,
length=69
User-Name = "01546"
User-Password = "xxx" --> (Plian Text password)
NAS-IP-Address = 192.168.0.199
Message-Authenticator = 0x008294e58343b74ea977c228f5b5ec5d
Fri Jan 20 18:28:42 2012 : Info: +- entering group authorize {...}
Fri Jan 20 18:28:42 2012 : Info: ++[preprocess] returns ok
Fri Jan 20 18:28:42 2012 : Info: ++[chap] returns noop
Fri Jan 20 18:28:42 2012 : Info: ++[mschap] returns noop
Fri Jan 20 18:28:42 2012 : Info: [suffix] No '@' in User-Name = "01546",
looking up realm NULL
Fri Jan 20 18:28:42 2012 : Info: [suffix] No such realm "NULL"
Fri Jan 20 18:28:42 2012 : Info: ++[suffix] returns noop
Fri Jan 20 18:28:42 2012 : Info: [eap] No EAP-Message, not doing EAP
Fri Jan 20 18:28:42 2012 : Info: ++[eap] returns noop
Fri Jan 20 18:28:42 2012 : Info: [ntlm_auth]expand:
--username=%{mschap:User-Name} -> --username=01546
Fri Jan 20 18:28:42 2012 : Info: [ntlm_auth]expand:
--password=%{User-Password} -> --password=x --> (We can see the
password in plaintext)
Fri Jan 20 18:28:42 2012 : Debug: Exec-Program output: NT_STATUS_OK:
Success (0x0)
Fri Jan 20 18:28:42 2012 : Debug: Exec-Program-Wait: plaintext:
NT_STATUS_OK: Success (0x0)
Fri Jan 20 18:28:42 2012 : Debug: Exec-Program: returned: 0
Fri Jan 20 18:28:42 2012 : Info: ++[ntlm_auth] returns ok
Fri Jan 20 18:28:42 2012 : Info: ++[expiration] returns noop
Fri Jan 20 18:28:42 2012 : Info: ++[logintime] returns noop
Fri Jan 20 18:28:42 2012 : Info: [pap] WARNING! No "known good" password
found for the user.  Authentication may fail because of this.
Fri Jan 20 18:28:42 2012 : Info: ++[pap] returns noop
Fri Jan 20 18:28:42 2012 : Info: ++? if (!control:Auth-Type)
Fri Jan 20 18:28:42 2012 : Info: ? Evaluating !(control:Auth-Type) -> TRUE
Fri Jan 20 18:28:42 2012 : Info: ++? if (!control:Auth-Type) -> TRUE
Fri Jan 20 18:28:42 2012 : Info: ++- entering if (!control:Auth-Type) {...}
Fri Jan 20 18:28:42 2012 : Info: +++[control] returns noop
Fri Jan 20 18:28:42 2012 : Info: ++- if (!control:Auth-Type) returns noop
Fri Jan 20 18:28:42 2012 : Info: Found Auth-Type = ntlm_auth
Fri Jan 20 18:28:42 2012 : Info: +- entering group NTLM_AUTH {...}
Fri Jan 20 18:28:42 2012 : Info: [ntlm_auth]expand:
--username=%{mschap:User-Name} -> --username=01546
Fri Jan 20 18:28:42 2012 : Info: [ntlm_auth]expand:
--password=%{User-Password} -> --password=
Fri Jan 20 18:28:42 2012 : Debug: Exec-Program output: NT_STATUS_OK:
Success (0x0)
Fri Jan 20 18:28:42 2012 : Debug: Exec-Program-Wait: plaintext:
NT_STATUS_OK: Success (0x0)
Fri Jan 20 18:28:42 2012 : Debug: Exec-Program: returned: 0
Fri Jan 20 18:28:42 2012 : Info: ++[ntlm_auth] returns ok
Fri Jan 20 18:28:42 2012 : Info: +- entering group post-auth {...}
Fri Jan 20 18:28:42 2012 : Info: [ntlm_auth]expand:
--username=%{mschap:User-Name} -> --username=01546
Fri Jan 20 18:28:42 2012 : Info: [ntlm_auth]expand:
--password=%{User-Password} -> --password=
Fri Jan 20 18:28:42 2012 : Debug: Exec-Program output: NT_STATUS_OK:
Success (0x0)
Fri Jan 20 18:28:42 2012 : Debug: Exec-Program-Wait: plaintext:
NT_STATUS_OK: Success (0x0)
Fri Jan 20 18:28:42 2012 : Debug: Exec-Program: returned: 0
Fri Jan 20 18:28:42 2012 : Info: ++[ntlm_auth] returns ok
Fri Jan 20 18:28:42 2012 : Info: ++[exec] returns noop
Sending Access-Accept of id 22 to 192.168.3.210 port 32854

JRADIUS CLINET LOG

Sending RADIUS Packet:
--

Class: class net.jradius.packet.AccessRequest
Attributes:

Re: [ilugd] unable to install packages in ubuntu 11.04

2011-10-13 Thread Dhiraj Gaur
Please check if you have any proxy settings requirements as the same may be
applied just to the browser and not "system-wide". If that is the case then
export http_proxy=http://:port may help you.

Alternately if proxy settings is not an issue you may check the shell with
simple commands like ping www.yahoo.com and see if you are getting a reply
right. Most times DNS settings are an issue.

Hope it helps

Regards
Dhiraj Gaur

On Fri, Oct 14, 2011 at 12:53 AM, RUPALI DUBEY wrote:

> yes i am able to browse other sites
>
> On Thu, Oct 13, 2011 at 10:00 PM, Mahesh T. Pai 
> wrote:
>
> > RUPALI DUBEY said on Thu, Oct 13, 2011 at 07:04:37PM +0530,:
> >
> >  > Hello,
> >  > I just had a query that whenever i try to install packages in ubuntu
> > 11.04
> >  > it gives an error failed to install package files check your internet
> >  > connection,
> >  > even when the connection is ok.
> >
> > What exactly do you mean by "even when the connection is ok"?? Can you
> > browse other sites?
> >
> > What are contents of
> >
> > /etc/apt/sources.list ?
> >
> > /etc/resolv.conf ?
> >
> > --
> > Mahesh T. Pai   ||
> > Encryption:   A   powerful  algorithmic   encoding
> >technique employed  in the creation of
> >computer manuals.
> >
> > ___
> > Ilugd mailing list
> > Ilugd@lists.linux-delhi.org
> > http://frodo.hserus.net/mailman/listinfo/ilugd
> >
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>



-- 
Regards

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


[ilugd] Koha and DSpace Implementation Agencies

2011-05-31 Thread Dhiraj Gaur
Hi all
I am looking for companies and commercial entities who have experience of
Koha and Dsapce installation. Please forward suggestions/contacts if any as
we are planning to deploy Koha and DSpace within our organisation.

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


Re: [ilugd] Need Linux People Resumes

2010-11-11 Thread Dhiraj Gaur
I guess Tech Mahindra is the name of the BIG MNC..   :P

On Thu, Nov 11, 2010 at 8:15 PM, saurabh vadhera
wrote:

> FOlks
>
>
> Please provide me Resumes and CV's for people who are interested in
> Joining a Big MNC in Noida
>
> The Candidate should have very good experience in Linux (4-6 Yrs)
>
> --
> We grow by dreams.
> -- Woodrow Wilson
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Job in Linux Administration

2010-09-27 Thread Dhiraj Gaur
In my opinion a majority of people who do RHCE is with the view that we will
do it and the job is ready for us because there is a "shortage" of skilled
linux guys. I would say that its not their fault its rather "marketed" that
way. Of Course the shortage is there but of those people who live beyond the
"click click next next" syndrome and can do their hands dirty with the
internal of the system(this includes scripting and programming, if
required). Major RHCE coaching institutes just focus on making people equip
with the bare minimum so that they clear the exam and get certified and
there is hardly any effort on the scripting aspect of system
administration.
I have been working on Linux for the past 7 years and never felt the need to
get certified and in fact most of the linux gurus whom i recall none of them
are certified too.

Regards
Dhiraj Gaur

On Tue, Sep 28, 2010 at 9:02 AM, Shrinivasan T wrote:

> >>
> >> The answers are here.
> >> http://goinggnu.wordpress.com/2009/10/28/how-to-get-a-linux-admin-job/
> >
> > Thats a good post and something that really gets into the basics of
> things.
> > Things often overlooked. A couple of things though :
> >
> > - you say that its hard to hire a fresh RHCE holder because they have no
> > experience : I would say you need to perhaps consider how they got the
> rhce
> > in that case, since a part of the rhce idea is to only let people though
> who
> > can demonstrate that they have onhands admin ability. If that sytem is
> > broken, someone should be concerned!
>
> I agree.
>
> It depends on how a person gets the RHCE certificate.
> Most of my friends and known persons,
> just do a crash course on "How to crack RHCE?" for 5 days
> and win the exams.
>
> In my personal experience with interviewing those kind of persons
> for linux admin job for my company,
> 90% of RHCE people have only certificate, not the real knowledge or
> experience.
>
> There are some real hardworkers and real learners.
> Kudos to them.
>
>
>
> >
> > - There are quite a lot of jobs out there which have nothing to do with
> > admin at all. Remember that one only needs 1 admin to run many machines,
> > services, process instances; but there is always a need to write the code
> in
> > the first place.
>
> Thats right.
> But most of the RHCE people, have tons of fears on programming.
> They are ready run away even to read a piece of code.
> They think that admin is the easiest job and coding is the toughest one.
>
> Again, the above is my own experience on interviewing many RHCE holders.
> Not to hurt anyone.
>
> Thanks.
>
> Hope the OP can be a part of community by sharing his knowledge and
> experience.
>
> Wishes.
>
>
> --
> Regards,
> T.Shrinivasan
>
>
> My Life with GNU/Linux : http://goinggnu.wordpress.com
> Free/Open Source Jobs : http://fossjobs.in
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Meetup at JNU 19th September

2010-09-13 Thread Dhiraj Gaur
HI
I would like to join in and discuss about "Enterprise Maturity Model for
FOSS" and would like to have a few inputs from you all. I have taken up this
topic as a part of my MBA dissertation and would like to have views of FOSS
enthusiasts on the same.

Regards

Dhiraj Gaur
9717890982

On Mon, Sep 13, 2010 at 2:10 PM, Shayon Pal  wrote:

> Ohkay, I am in.
>
> Regards,
> Shayon Pal
>
> Blog: http://shayonpal.com
> Mob: +91 98807 13750
>
>
> On Mon, Sep 13, 2010 at 1:46 PM, Gaurav Mishra  >wrote:
>
> > Guys,
> >
> > Let's meetup on tuesday at JNU for a small discussions over possibility
> of
> > events in and around delhi. Also, it would be fun to meet more like
> minded
> > people around FOSS.
> > If anybody is interested to hear on any topic or want to speak on any
> > topic,
> > please drop in a comment on this thread.
> >
> >  Event:FOSS meetup
> >
> >  Date: Sun., Sep. 19th, 2010
> >
> >  Time: 2pm-4PM
> >  Agenda:
> >
> >   - FOSS based events around delhi.
> >   - Catching up with old/new FOSS buddies.
> >
> >  Participants: All on this list
> >
> >  Venue:School of Information Technology, JNU. For
> >  directions, see Area 5 on the map at
> >
> > http://www.jnu.ac.in/main.asp?sendval=<
> > http://www.jnu.ac.in/main.asp?sendval=JNUCampus>
> >
> >  Contact:  +91 9911264089/+91 9871448520
> >
> >
> > Regards,
> > Gaurav Mishra
> >
> > Co-Founder
> > - Media Redefined -
> > " A social media branding & consulting studio. "
> >
> > # Web: http://www.mediaredefined.com
> > # Blog: http://www.gmishra.com
> > # Twitter: http://www.twitter.com/gmishra
> > # LinkedIn:http://www.linkedin.com/in/gauravmishra7
> > ___
> > Ilugd mailing list
> > Ilugd@lists.linux-delhi.org
> > http://frodo.hserus.net/mailman/listinfo/ilugd
> >
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [OT] Now Big Brother wants your DNS...

2009-12-04 Thread Dhiraj Gaur
Dumped OpenDNS ... on GOOGLE DNS now :)

Regards
Dhiraj Gaur

On Fri, Dec 4, 2009 at 9:41 PM, Anupam Jain  wrote:

> On Fri, Dec 4, 2009 at 9:08 PM, Arun Khan  wrote:
> > On Friday 04 Dec 2009, narendra sisodiya wrote:
> >> what happend to openDNS ?
> >
> > It is still there :D... anyway I prefer my own cacheing DNS servers on
> > the intranet as well on my laptop.
>
> OpenDNS will direct you to it's own search pages when you enter a non
> existent domain name. This makes it quite useless..
>
> -- Anupam
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Advice needed: which notebook

2009-10-02 Thread Dhiraj Gaur
I guess if you can wait, wait for Netbooks which will soon start shipping
with NVIDIA Ion graphics processor. The ATOM  + Ion combo just rocks. Offers
HDMI and 1080p kind of resolution and affordably priced in $400 price  ~ 20k
- 25k.
Regards
Dhiraj Gaur

On Fri, Oct 2, 2009 at 3:06 PM, Pranith Kumar  wrote:

> On Fri, Oct 2, 2009 at 2:46 PM, M.K.Pai 
> wrote:
> > Hi,
> >
> > I need your advice/ opinions/ rants/ whatever.
> >
> > I would like buy a notebook. I think even a netbook will do. Please
> > let me know the most economical gadget given my needs which are
> >
> > Whats important:
> >
> > a. X should preferably not need closed-source hacks
> >
> > b. I'd prefer networking that just works with the standard kernel
> >
> > c. as long a battery life as possible - 3 hours at least, more if
> possible
> >
> > d. should not heat up
> >
> > e. lightweight
> >
> > f. cheap, cheap, cheap :D
> >
>
> Dell Inspiron Mini 12. Comes with Ubuntu Linux.
>
>
> http://www1.ap.dell.com/in/en/home/notebooks/laptop-inspiron-12/pd.aspx?refid=laptop-inspiron-12&s=dhs&cs=indhs1
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Zimbra OSS - GAL question

2009-08-31 Thread Dhiraj Gaur
Found this from ZIMBRA FAQs

Sharing other address information.  If you want to share address books with
other information, such as outside addresses, you may share any one of your
address books with delegated privileges to any other mailbox on the same
server (even across domain).

Modifiable company address books.  If you want to maintain one or more
company address books that are not shared from any single employee's
mailbox, best practices is to create a dummy mailbox, called something like
comp...@yourdomain.com, from which to share the address book.  Using this
method, you may delegate admin privileges to certain employees, who can keep
it up to date and also share the address book to new users.  You may decide
that other users may only have the ability to manage (add or delete
contacts) the address books(s), or even only view them.

link : http://faqs.01.com/zimbra/questions/84/Company+Address+Book+%28GAL%29

Hope you find it useful. Do keep us updated if you are able to achieve one.
Regards

Dhiraj Gaur

On Mon, Aug 31, 2009 at 2:24 PM, Amit Sharma  wrote:

> Hi
>
> I have configured Zimbra Release 5.0.18_GA_3011.RHEL5_20090707164432 RHEL5
> FOSS edition.
>
> [zim...@zimbra root]$ zmcontrol status
> Host zimbra.linux.com
>antispamRunning
>antivirus   Running
>ldapRunning
>logger  Running
>mailbox Running
>mta Running
>snmpRunning
>spell   Running
>stats   Running
>
> I am unable to configure GAL. My requirement is that if a user has shared
> his address bok, his/her contacts should be available for other users.
>
> Any pointers?
>
> regards,
> amit
>
>
>  See the Web's breaking stories, chosen by people like you. Check out
> Yahoo! Buzz. http://in.buzz.yahoo.com/
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] knowledge managment(km) software

2009-08-21 Thread Dhiraj Gaur
Alfresco and Knowledge Tree are the ones I know.

Regards
Dhiraj Gaur

On Fri, Aug 21, 2009 at 10:39 AM, Sudev Barar  wrote:

> 2009/8/21 bipin sartape :
> >any idea about gpl km software . pls share...
> >
>
> Would it be too much to ask what all you have searched / researched till
> now?
>
> --
> Regards,
> Sudev Barar
> Read http://blog.sudev.in for topics ranging from here to there.
>
> PS: Replying using bottom post/in-line post makes email conversations
> whole lot easier for meaningful dialogue. Snip out what is not
> relevant. Adopt this and spread the message.
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Court bans Microsoft from selling Word in US

2009-08-13 Thread Dhiraj Gaur
Good to know the news has created enough heat at ilug list :). Though my
idea was not bashing Microsux (good one Raj :D) but to share the info with
you all.

Regards
Dhiraj Gaur

On Thu, Aug 13, 2009 at 2:12 PM, Yashpal Nagar  wrote:

> On Wed, Aug 12, 2009 at 11:29 AM, Dhiraj Gaur 
> wrote:
> >
> > A United States judge on Tuesday ordered Microsoft
> > <http://search.rediff.com/imgsrch/default.php?MT=microsoft> Corporation
> to
> > stop selling Microsoft Word in its current form in the US as it infringes
> > upon a patent owned by a Canadian company, i4i.
>
> Little disappointed with the URLs provided,  thought of looking for
> more information. This is not the first and last news from M$ on
> violation of the patents, but the important thing is the "Ruling" by
> the court this time. Which has ordered M$ to ban selling the M$ word
> in the USA. Which is quite remarkable ruling.
>
> Apparently the same new is spreaded across all the major news and
> leading technology news websites.
> some of them are
>
> http://www.usatoday.com/tech/news/2009-08-12-microsoft-lawsuit_N.htm
>
> which clearly tell how exactly Microsux ( kudos to Raj for inventing
> ludicrously innovative term) violated the patents.
>
> I4i, which mainly makes software for drug and defense companies,
> obtained the patent for a "customized XML" tool in 1998. XML is a
> specialized alphabet that can capture any kind of computer file as a
> regular text.
>
> Microsoft started using XML as an alternative way to save Word files
> in Word 2003 and made it the default format for all Office files in
> Office 2007.
>
> This made it easier for Microsoft and its partners to create programs
> such as accounting software that generates reports in Word formats,
> says Rob Helm, analyst at research firm Directions on Microsoft.
>
> http://news.bbc.co.uk/1/hi/technology/8197990.stm
>
> &
>
> http://www.channelregister.co.uk/2009/08/13/microsoft_priates_settled/
>
> Regards,
> Yash
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] Court bans Microsoft from selling Word in US

2009-08-12 Thread Dhiraj Gaur
A United States judge on Tuesday ordered Microsoft
 Corporation to
stop selling Microsoft Word in its current form in the US as it infringes
upon a patent owned by a Canadian company, i4i.

Judge Leonard Davis of the US District Court for the Eastern District of
Texas passed an injunction to this effect and has given Microsoft 2 months
within which the software giant must comply with the order.

A patent infringement lawsuit was filed by i4i in 2007 against Micrsoft. The
judge on Tuesday forbade Microsoft from selling Word products which let
people create custom XML documents. Microsoft has now been banned from
selling or importing into the US any Word products which can open .XML,
.DOCX, or DOCM files containing custom XML.

Microsoft Word allows users to create custom XML documents. i4i, based in
Toronto, Canada ,
owns US Patent No 5,787,449, which the court said Microsoft had infringed
upon.

The Texas judge also ordered Microsoft to pay the Toronto-based software
developer $200 million in damages as reasonable royalty. Apart from that,
Microsoft was also told to pay an additional $40 million for willful patent
infringement and another $37 million-plus in interest, taking the total
damages to over $287 million.

However, reports say that with Microsoft Corporation planning to appeal
against the order, its sales of Word are not likely to be affected. Experts
hint that even if the injunction stands, the software giant could find a
remove the XML functionality from Word or find some other way to bypass the
infringement.

*The court order:*

'Microsoft Corporation is hereby permanently enjoined from performing the
following actions with Microsoft Word 2003, Microsoft Word 2007, and
Microsoft Word products not more than colorably different from Microsoft
Word 2003 or Microsoft Word 2007 (collectively "Infringing and Future Word
Products") during the term of U.S. Patent No. 5,787,449:

1. selling, offering to sell, and/or importing in or into the United States
any Infringing and Future Word Products that have the capability of opening
a .XML, .DOCX, or .DOCM file ("an XML file") containing custom XML;

2. using any Infringing and Future Word Products to open an XML file
containing custom XML;

3. instructing or encouraging anyone to use any Infringing and Future Word
Products to open an XML file containing custom XML;

4. providing support or assistance to anyone that describes how to use any
infringing and Future Word Products to open an XML file containing custom
XML; and

5. testing, demonstrating, or marketing the ability of the Infringing and
Future Word Products to open an XML file containing custom XML.'


Source : rediff.com
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Efiling IT returns on linux?

2009-07-28 Thread Dhiraj Gaur
HI
 I filled my ITR online yesterday. First of all the excel utility provided
by Income tax dept has a lot of macros which do not run on Open Office :(
After much struggling I had to resort back to M$ Excel.
Even in Excel macros security needs to be set to 'Low' and then the utility
works generating Excel.

One more piece of tip: before 1st July versions of Excel utility provided by
ITD filling of UTN field was mandatory. In case you did not fill UTN no then
XML will not be generated. So download an updated 1st July version of .xls
file. and use the same to generate the requisite XML without UTN no.

Regards
Dhiraj Gaur

On Wed, Jul 29, 2009 at 10:43 AM, narendra sisodiya <
narendra.sisod...@gmail.com> wrote:

> I think we all should bombard letters and email to income tax department !!
> Here is a smaple letter by Guru -
> http://lists.fosscom.in/pipermail/network-fosscom.in/2009-July/000678.html
>
>
> --
> ┌─┐
> │Narendra Sisodiya ( नरेन्द्र सिसोदिया )
> │R&D Engineer
> │Web : http://narendra.techfandu.org
> │Twitter : http://tinyurl.com/dz7e4a
> └─┘
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] reg. KM s/w for novice

2009-07-10 Thread Dhiraj Gaur
Even Alfreco can be useful. USP of alfresco being that it can be linked to
the network drives via CIFS and you can do effective knowledge management at
the time of document creation.
Good thing is that community and enterprise support is available in India
which may be viable requirement for this huge setup.

Regards

Dhiraj Gaur

On Fri, Jul 10, 2009 at 1:45 PM, Chetan Thapliyal  wrote:

> Try having a look at knowledgeTree.
>
> http://www.knowledgetree.com
>
>
> On Fri, Jul 10, 2009 at 10:11 AM, bipin sartape 
> wrote:
>
> >
> > hi everyone,
> >anyone can please suggest a knowledge management software
> (user
> > friendly, short learning curve ) for a organistaion of 20k people (steel
> > plant)
> >
> > thanks
> >
> >
> >
> >
> > ___
> > ilugd mailinglist -- ilugd@lists.linux-delhi.org
> > http://frodo.hserus.net/mailman/listinfo/ilugd
> > Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> > http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
> >
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] [Jobs] Bangalore Openings - Unix/Linux Admin - KPIT Cummins Infosystems(A level 5 Co)

2009-05-10 Thread Dhiraj Gaur
 *
* Note:KPIT Cummins is looking for those candidates who can join them within
10-15 days.Pl revert with your updated profile as soon as possible.

Hi,

This is Varsha representing JAV Consultancy Services Mumbai. Today I take
the opportunity to introduce you to few best openings of various "IT
Companies" in Bangalore.

If you are looking out for a change then this is the place to be.

Don"t hold back yourself and immediately reply to this mail with ur updated
word format CV along with ur friends references.

Company : Kpit Cummins Infosystems. ( CMM Level 5 Co.)

Mandatory Skills:
Should have minimum of 2yrs months of experience in Unix/Linux
Excellent knowledge of Operating Systems including (Windows 2000, 2003, XP /
Linux, Unix Solaris)
Good understanding of Server PC Architecture
Experience in troubleshooting in Linux/ Unix environment (RHCE, etc)
Experience in troubleshooting hardware related issues
Good working knowledge of Networking
Desired Experience: Experience in Storage and any virtualization concepts
would be added advantageous

Job description:-

The Engineer would be responsible for giving technical solution

Resolve technical issues through diligent research, reproduction, and
troubleshooting

· Work directly with other technical Support Partners, quality assurance,
engineering, sales, marketing,operations, and administration to resolve
problems

·Document all technical inquiries, develop and review content for knowledge
base

·Help test alpha and beta products

Job Location : Bangalore

Exp: 2-4 Yrs


Just revert back with below Detail

Full Name (First -Middle -Last)
Date of Birth:
Passport Details :
Qualification:
Current Role :
Total Exp:
Unix/Linux Admin Exp in Months /Years :
Troubleshooting Exp in Linux/ Unix environment in Months / Years:
Do u have Knowledge on Server PC Architecture :-
Do u have Exp in Troubleshooting Hardware Related issues :
Communication - Self Rating(Out of 10) :-
R u ready to work in Rotational Shift :
Reason for Change :
Current Location :
Current Salary :
Expected Salary :
Earliest date of Joining :
R u Interested to relocate to Bangalore:
Have u been earlier applied or interviewed by Kpit Cummins Earlier :

Don"t stop yourself sharing these requirements with your friends and
colleagues.

Regards
Varsha Sinha I Recruitment I JAV Consultancy Services I Board : 022 25624130


Disclaimer Clause :-
Your CV has been electronically selected, based on certain standard
Parameters. You are free to forward this email to candidates who fit the job
description. Please ignore this email if you are working for our client M/s
Kpit Cummins.
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Open Source Powers TATA Nano Website

2009-03-23 Thread Dhiraj Gaur
Thanks for the Info.

2009/3/23 Arun SAG 

> >The website is developed in PHP and the good thing is the following
> >declearation on the website.
>
> Its joomla ;-)
> --
> A computer is like air conditioning: it becomes useless when you open
> windows.
> <-Fighting 4 Freedom->
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] Open Source Powers TATA Nano Website

2009-03-23 Thread Dhiraj Gaur
Dear Friends

Another great achievement of open source. I was going through the website of
tata nano at www.tatanano.com.
The website is developed in PHP and the good thing is the following
declearation on the website.

"The entire portal has been built on open source technologies, involving
minimum investment, following the essence of the Nano - *low cost, but high
technology.*"

Another achievement for Open Source in INDIA, Jai Ho!!

Regards

Dhiraj Gaur
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] PM Office switches to Open Source Mailing Solution

2009-03-18 Thread Dhiraj Gaur
RTI surley seems to be a good bet. Well in that case why just PMO, lets
shoot and RTI query to major government establishments in our respective
regions, this would surely be an eye opener to the LUGs accross the country.
This way we ll have a decent idea about the actual adoption of open source
by the goverment enterprises and it would be an eye opener for most of the
goverment office.

Any suggestions and feedback are welcome.

Regards
Dhiraj Gaur


On Wed, Mar 18, 2009 at 11:40 PM, Sudhanwa Jogalekar  wrote:

> Hi,
>
> On Wed, Mar 18, 2009 at 1:20 PM, Dhiraj Gaur 
> wrote:
> > Well I was equally intrigued when I read the news piece. Moreover the
> > article never talks of mail server and rather talks of the mail client.
> In
> > my views this is what might have happened
> >
> > 1. Virus problems might be common at PMO and they might have asked to
> switch
> > to a virus free mail solution, especially in view to save their face in
> the
> > RTI query.
> > 2. The vendor/operator/administrator might have suggested switching to
> some
> > linux based solution.
> > 3. They might have migrated the mail server to sendmail/postfix/qmail or
> any
> > other linux based mailing solution with Squirrel mail as the web access
> > tool.
> > 4. I am not sure about the protocols or the mail clients now being used,
> but
> > the environment is surely on Windows based on the desktop PCs accesing
> > Squirrel Mail.
> >
> > People in touch with NIC or PMO may kindly throw more light on these
> dobuts.
> > But I am happy that at least they started off something which is someway
> > connected to open source.
> >
>
> Getting info from NIC or PMO office contacts is a good idea but may be
> difficult one.
> RTI application to get the answers could be a workable solution to get
> the official answers.
>
> -Sudhanwa
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] PM Office switches to Open Source Mailing Solution

2009-03-18 Thread Dhiraj Gaur
Well I was equally intrigued when I read the news piece. Moreover the
article never talks of mail server and rather talks of the mail client. In
my views this is what might have happened

1. Virus problems might be common at PMO and they might have asked to switch
to a virus free mail solution, especially in view to save their face in the
RTI query.
2. The vendor/operator/administrator might have suggested switching to some
linux based solution.
3. They might have migrated the mail server to sendmail/postfix/qmail or any
other linux based mailing solution with Squirrel mail as the web access
tool.
4. I am not sure about the protocols or the mail clients now being used, but
the environment is surely on Windows based on the desktop PCs accesing
Squirrel Mail.

People in touch with NIC or PMO may kindly throw more light on these dobuts.
But I am happy that at least they started off something which is someway
connected to open source.

Regards
Dhiraj Gaur


On Wed, Mar 18, 2009 at 1:02 PM, Sandip Bhattacharya wrote:

> On Monday 16 March 2009 09:29:01 Dhiraj Gaur wrote:
> > most of the emails addressed to it were not received. The problem was
> > detected only in late April after which the Microsoft Outlook Express
> > email software was discontinued and replaced by — Squirrel mail.
>
> I am more puzzled by this bit than anything else.
>
> How much of the problem does replacing Outlook Express by Squirrelmail
> solve?
>
> - Is the IMAP server behind Squirrelmail an open source one? Or is it
> Exchange?
>
> - Is the machine on which Squirrelmail is accessed Windows or not?
>
> - Would downloading/executing attachments, which is the most likely
> cause of the virus attack, cause a similar attack on the host computer
> or not?
>
> --
>  Sandip
>
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] PM Office switches to Open Source Mailing Solution

2009-03-15 Thread Dhiraj Gaur
Dear All

Just read it this morning in TOI at page 7. PM Office has migrated to Linux
based mailing solution. Its a great achievent for the Open Source Community
in India.

Here goes the complete report

BUGGED Virus gripped PMO’s email for 3 months
New Delhi: Email system of the Prime Minister’s Office was under the grip of
a computer virus for three months last year forcing officials to replace the
software. The technical glitch plagued the email communication system of the
PMO, which was based on the Microsoft Outlook Express, from February to
April in 2008.
Although the extent of damage was uncertain, the PMO said that most of
the emails addressed to it were not received. The problem was detected only
in late April after which the Microsoft Outlook Express email software was
discontinued and replaced by — Squirrel mail.
The matter came to light during one of the hearings of the CIC where the
PMO submitted that “there was virus problem during the months of Feb-Mar-Apr
that was diagnosed only late in April”. The CIC was hearing the plea of one
retired Air Commodore Lokesh Batra, who had complained to PMO, through an
email, about discrepancies in the Hindi version of the RTI Act. AGENCIES


Source : Times of India (Page 7) , dated 16/03/2009.

Regards

Dhiraj Gaur
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] [Freed] Meetup of people interested in the OpenMoko, and other open hardware

2009-01-29 Thread Dhiraj Gaur
Well that is precisely i never wanted to do. i.e. remember one more username
password .
Anyways I have added there.

On Thu, Jan 29, 2009 at 3:13 PM, Gora Mohanty  wrote:

> On Thu, 29 Jan 2009 14:50:55 +0530
> Dhiraj Gaur  wrote:
>
> > HI
> > I am not registered at Twiki so please add my name there.
> [...]
>
> It is a public Wiki. You can register yourself via the
> "Register" link on a blue background towards the top of
> the left-hand sidebar.
>
> Regards,
> Gora
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] [Freed] Meetup of people interested in the OpenMoko, and other open hardware

2009-01-29 Thread Dhiraj Gaur
HI
I am not registered at Twiki so please add my name there.

Regards
Dhiraj Gaur

On Thu, Jan 29, 2009 at 2:42 PM, Gora Mohanty  wrote:

> Hi,
>  As there is growing interest from people in coming to
> this meeting, and as it is on a Sat., it might make sense
> to make reservations at the pub. In order to do that, we
> will need to have an estimate of the number of people
> planning to attend. So, please add your name at the
> bottom of the Wiki page for the event:
> http://wiki.linux-delhi.org/cgi-bin/twiki/Main/OpenMokoMeet
> by Fri., 5pm at the latest. Else, seating cannot be
> guaranteed.
>
> Regards,
> Gora
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] [Freed] Meetup of people interested in the OpenMoko, and other open hardware

2009-01-26 Thread Dhiraj Gaur
Count me In, I ll be there for sure.

Regards

Dhiraj gaur

On Fri, Jan 23, 2009 at 7:15 PM, shirish  wrote:

> Reply in-line :-
>
> On Thu, Jan 22, 2009 at 11:58, Gora Mohanty  wrote:
> > Hi,
>
> Hi all,
>
> >  Some people interested in the OpenMoko are planning to
> > meet up at the new micro-brewery in Gurgaon on the 31st
> > of Jan., the Sat. after the coming one. Everyone is
> > welcome to attend, especially people interested in other
> > open-source hardware, or others looking to get involved.
> > Please see details below:
> >
> >   Event:OpenMoko enthusiasts meeting
> >   Date: Sat., Jan 31st
> >   Time: 6.30pm onwards
> >   Agenda:   Get-together of people interested in the
> > OpenMoko, and other open-source hardware
> >   Participants: All on this list
> >   Venue:Howzzat: The micro-brewry pub in Gurgaon.
> > Galaxy Mall, behind the 32nd Milestone place.
> > <
> http://www.openstreetmap.org/?lat=28.4629&lon=77.0489&zoom=16&layers=B000FTF
> >
> >   Contact:  Me (9868527992)
>
> Dang. Wish were there. Hopefully there is an Openmoko/open hardware
> track on freed.in as such. It would be nice to know if somebody has
> also played with coreboot.
>
> http://www.coreboot.org/
>
>  Perhaps something which could also include the recent FSF-DLink spat
> as well. Just an idea/thought.
>
> Slightly OT
>
> Gora, btw one of the addresses in the CC isn't complete. After
> p...@sarai.net it shows Free/Libre but nothing after that :(
>
> > Regards,
> > Gora
>
> --
>  Regards,
>  Shirish Agarwal
>  My quotes in this email licensed under CC 3.0
> http://creativecommons.org/licenses/by-nc/3.0/
> http://flossexperiences.wordpress.com
> 065C 6D79 A68C E7EA 52B3  8D70 950D 53FB 729A 8B17
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] dimdim anyone?

2009-01-16 Thread Dhiraj Gaur
Pretty good is what I would comment. A good and tough open source competitor
to Webex I must say.

I have tried doing conference with DIM DIM with quite a few of my friends
and everybody is impressed (including ardent fans of Webex).Though webex
boasts of its superior network and service uptime i never found problem with
DIM DIM network. The maximum number of participants being 20 in a web
conference for the community edition. But experience on similar products
tells me that 6 or 8 people in a web conference are more than enough else it
becomes more like a crowd.

I have plans to integrate DIM DIM with asterisk and jabber and create some
more magic. If anyone has attempted anything similar please share your
experiences. I also wonder how many enterprises are using DIM DIM coz many
are already using Jabber for instant messaging.

Niyam I went through your blog post on improving spoken and written english.
Thank you for the same.I am trying to follow some of the suggestions however
i may take time to achieve perfection.

Regards
Dhiraj Gaur

On Sat, Jan 17, 2009 at 5:07 AM, Linux Lingam  wrote:

> dimdim is a sophisticated web-conferencing solution, under gpl, but
> also under various other licenses:
> http://www.dimdim.com/opensource/dimdim_gpl.html
>
> looks like it's geared to take on webex, adobe, and everybody else in
> the web-conf arena.
>
> what's your experience with dimdim?
>
> the 'about us' page reveals a whole bunch of indian-origin people:
> http://www.dimdim.com/aboutus/dimdim_managementteam.html
>
> i remember andrew mentioning dimdim several months ago.
>
> --
> niyam bhushan
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Help needed in Bengaluru

2008-06-08 Thread Dhiraj Gaur
HI raj

I am reaching bangalore on 23rd and would be there for a month if he
can wait that long, I can go there and resolve his issues.

Regards

Dhiraj Gaur


On 6/8/08, Raj Mathur <[EMAIL PROTECTED]> wrote:
> Hi,
>
> My uncle in Bengaluru took the bold step (yes, at 80+ it's bold!) of
> switching to Linux on his PC, discarding the assembler-installed
> Winduhs in the process.  Unfortunately, he didn't consult me before
> doing so (he wasn't even aware that I know Linux), and ended up with
> BOSS Linux.
>
> Now he's running into a few problems, mostly media and desktop related,
> which I can't help him debug remotely.  Anyone near Jayanagar who can
> pop over to his place and help him sort out his problems?  If you're
> reasonably familiar w/ Linux it shouldn't take you more than an hour or
> so.
>
> Specifically, he's unable to do the following:
>
> - View his encrypted PDF bank statements
> - Use his printer
> - Play DVDs and VCDs (totem refuses to open them)
>
> Apart from that he gets occasional screen freezes and vanishing icons,
> which looks like a hardware problem to me (though I could be wrong).  A
> memtest should rule out or confirm bad RAM as a possibility, at least.
>
> Mail me for his contact details if you can help,
>
> Regards,
>
> -- Raju
> --
> Raj Mathur[EMAIL PROTECTED]  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 mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Next Event: http://freed.in - February 22-24, 2008
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22-24, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] [OT] Load balancing router

2008-05-25 Thread Dhiraj Gaur
If an old PC is available then do try considering Endian Firewall Community
Edition. I have been using it for quite sometime in my office. Works great
as well as unattended and most features are supported out of the box. a few
cyber cafes in my areas have started using it as well and they are pretty
much satisfied with it and its web interface makes it easy for the dumb as
well. And yes it does support load balancing as well.

Regarding HW based thing I guess u may try a hand at Linksys WiFi Router
upgrade their firmware with a linux firmware like DD-WRT and have fun, but I
guess for load balancing you may require two such routers.

http://www.dd-wrt.com/dd-wrtv3/

http://www.wi-fiplanet.com/tutorials/article.php/3562391

http://www.wrtrouters.com/guides/upgradetolinux/

You may read about a few other such distros at

http://ezinearticles.com/?WRT54g-Linux-Firmware-Distributions&id=118837


Regards

Dhiraj Gaur

On Mon, May 26, 2008 at 6:27 AM, Raj Mathur <[EMAIL PROTECTED]> wrote:

> On Monday 26 May 2008, Karanbir Singh wrote:
> > [snip]
> > I've seen a couple of SMC barracuda ADSL routers that will handle
> > dual links and do some failover stuff. I'd guess you already had
> > modems for those links ?
>
> That helps.  Finally found the following 4 that seem to fit the bill, no
> clue about availability in India:
>
> http://d-link.ca/products/?pid=452&sec=2 (around $130)
>
>
> http://www.zyxel.com/web/product_family_detail.php?PC1indexflag=20040908175941&CategoryGroupNo=53C4D3B9-98B3-4F1F-A7B2-BED2BBA2A7CA
> (~450 UKP)
>
> http://www.xrio.com/website/ (~UKP 550)
>
>
> http://www.smc-asia.com/v2/index.php?option=com_content&task=view&id=458&Itemid=60
> (~ $450)
>
> Also considering setting up a USB stick which would do all this and have
> a web front-end for management of links, IP addresses, load balancing
> configuration, etc.  Is such a thing available?
>
> Regards,
>
> -- Raju
> --
> Raj Mathur[EMAIL PROTECTED]  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 mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Next Event: http://freed.in - February 22-24, 2008
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22-24, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Fwd: Fwd: M$ Tax Refund Quest

2008-05-16 Thread Dhiraj Gaur
Niyam

I think we need to make him clear that  suppose I  want  a BRAND X  laptop
and the company is not offering a model without  windows installed in it
(as is the  case with certain high end models of HP  and  Lenovo where they
proudly say " COMPANY recommends Windows Vista")  in such a case the buyer
has no option but to buy his preferred  configuration and BRAND along with
the win OS. It is in this case a LINUX user is left with no choice but to
claim refund. Rather the user is at the mercy of the OEM/retailer if at all
he/she will get a refund.

Regards

Dhiraj Gaur

>
>
> have exchanged a few emails with the editor of Express Computer as
> well. he, well, for lack of a better word, expressed, his views on the
> topic, and wondered why buy a laptop with windows if you do not want
> that OS, just go ahead and buy the one with gnulinux. he also stated
> what he thought would be the process for such a refund.
>
>
> --
> niyam bhushan
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Next Event: http://freed.in - February 22-24, 2008
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22-24, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Offtopic: Caution

2008-04-27 Thread Dhiraj Gaur
And Indiatimes mail as well, the mail service itself is spammed by
advertisements of the times group

On Sun, Apr 27, 2008 at 2:50 PM, Kenneth Gonsalves <[EMAIL PROTECTED]>
wrote:

> and with naughty.com
>
> On 26-Apr-08, at 9:28 PM, narendra sisodiya wrote:
>
> > Same with ZDNet
> >
> > On Sat, Apr 26, 2008 at 12:07 PM, Anil Seth <[EMAIL PROTECTED]>
> > wrote:
> >
> >> Hi,
> >>
> >> Please do not register on http://moneycontrol.com/
> >> I found myself getting spam. They have an un-subscribe option which
> >> seems to be ignored.
> >> I unsubscribed at least 6 times and no effect.
> >> Anyway, Google's spam filtering gets rid of all their mails. But I
> >> would not trust their site now for anything.
> >>
> >> Regards
> >> Anil
> >>
> >> ___
> >> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> >> http://frodo.hserus.net/mailman/listinfo/ilugd
> >> Next Event: http://freed.in - February 22-24, 2008
> >> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> >> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
> >>
> >
> >
> >
> > --
> > Narendra Sisodiya
> > ___
> > ilugd mailinglist -- ilugd@lists.linux-delhi.org
> > http://frodo.hserus.net/mailman/listinfo/ilugd
> > Next Event: http://freed.in - February 22-24, 2008
> > Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> > http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
>
> --
> regards
>
> Kenneth Gonsalves
> Associate, NRC-FOSS
> [EMAIL PROTECTED]
> http://nrcfosshelpline.in/code/
>
>
>
>
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Next Event: http://freed.in - February 22-24, 2008
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22-24, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] Gartner says Open source will quietly take over

2008-04-11 Thread Dhiraj Gaur
Dear LUG users
Now even the industry is feeling the heat off open source. The latest
gartner report confirms that Open Source is here to stay.

Read more at

http://news.zdnet.co.uk/software/0,100121,39379900,00.htm

Regards

Dhiraj
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22-24, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] what news of OSIW

2008-02-15 Thread Dhiraj Gaur
Same here niyam, I also skipped it this time but i ll attend freed.in for
sure.

Dhiraj Gaur

On Fri, Feb 15, 2008 at 4:23 PM, Linux Lingam <[EMAIL PROTECTED]> wrote:

> dear all,
>
> this is the *first* time that i've skipped LinuxAsia renamed now to OSIW.
>
> thought i'd see some discussions or posts on ilug-d.
> am sure people are attending. what's happening?
> how's it going?
> haven't been able to stumble across any news from the mumbai and
> bangalore segments either.
> strangely the site doesn't have the daily update somewhere, either.
>
>
> regards
> niyam
>
> --
> niyam bhushan
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Next Event: http://freed.in - February 22-24, 2008
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22-24, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Help with laptop in Delhi

2008-02-08 Thread Dhiraj Gaur
Alternativly u may come down to my office in Katwaria sarai or my home in
Gurgaon  and I may try to help u out.

Regards
Dhiraj

On Feb 9, 2008 12:49 PM, Sudhir Gandotra <[EMAIL PROTECTED]> wrote:

> On Fri, 2008-02-08 at 15:01 +0530, Frederick Noronha [फ़रेदरिक नोरोनया]
> wrote:
> > Dear All, My journo friend Arnab has just gone in for an Acer with
> > GNU/Linux and is having some challenges in getting it started. I'd be
> > very grateful if you could offer any help! Thanks so much... FN
> > --
> > Frederick Noronha http://fn.goa-india.org Ph +91-832-2409490
> > The Goa books blog: http://goabooks.wordpress.com
> > Goa1556 (alt.publishing.goa): http://goa1556.goa-india.org
>
> Dear Fred,
>
> If you want, your friend can visit my office at Delhi (address given
> below) and we can do the OpenLX Linux installation for him, as
> complimentary.
>
> OpenLX Linux works fine on these laptops.
>
>
> With best wishes for Unity in thinking, feeling and action.
>
> Sudhir Gandotra.  98-101-20918
>
> IIPL: B-220/2, 2nd Fl., Savitri Nagar, Malviya Nagar, New Delhi 110017,
> India
> 1/G, Shrikrishna Sansthan Building, Bistupur, Jamshedpur 831001, India
> Phone : +91-11-26014670, 71, 72.   Fax : +91-11-26014672
>
> OpenLX Linux OS, Linux Training, Support, Services, Product Development
> Legal.Software @ Fractional Cost : http://kalculate.com
> http://www.openlx.com/openlx.html - Linux from India for your PC
>http://openlx.com/features.html - OpenLX Linux features
>
> You don't need violence to shake the world
> Treat Others As You Would Have Them Treat You
>  www.humanistmovement.org
>
>
>
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Next Event: http://freed.in - February 22-24, 2008
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22-24, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Trouble Ticket Management System

2008-01-29 Thread Dhiraj Gaur
GLPI meets all ur requirements except escalation, however it does support
priority on tickets.
Written in PHP and MYSQL. The GUI is rich and works well.

The link for the same

http://glpi-project.org/?lang=en

Regards

Dhiraj

On Jan 29, 2008 4:50 PM, Pratik Singh <[EMAIL PROTECTED]> wrote:

> On Jan 29, 2008 12:01 PM,  <[EMAIL PROTECTED]> wrote:
> > Does anyone know which is a good Open-Source based Online Trouble Ticket
> > Management System?
> >
> > It should have the following.
> > - MySQL/php based
> > - Separate Login for each client
> > - Separate login for each Support executive
> > - Client should be assigned to a particular Support executive
> > - Preferably some level some escalation (not necessarily)
> > - And all other basic features
> > - Various kind of Report generation is also desirable
>
> OTRS would also be useful.
> http://otrs.org/
>
> Regards, Pratik
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Next Event: http://freed.in - February 22/23, 2008
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22/23, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Trouble Ticket Management System

2008-01-28 Thread Dhiraj Gaur
Try GLPI , I am using it effectively for helpdesk functions at my place.

On Jan 29, 2008 12:01 PM, <[EMAIL PROTECTED]> wrote:

> Does anyone know which is a good Open-Source based Online Trouble Ticket
> Management System?
>
> It should have the following.
> - MySQL/php based
> - Separate Login for each client
> - Separate login for each Support executive
> - Client should be assigned to a particular Support executive
> - Preferably some level some escalation (not necessarily)
> - And all other basic features
> - Various kind of Report generation is also desirable
>
> Would appreciate if anyone can suggest me any tool.
>
> Regards,
> Ravi Sagar
> ravisagar.in
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Next Event: http://freed.in - February 22/23, 2008
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22/23, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] [COMMERCIAL] MySQL session at OSIW; let's design the programme together

2008-01-09 Thread Dhiraj Gaur
I would be intrested for sure

On Jan 9, 2008 1:30 PM, Atanu Datta <[EMAIL PROTECTED]> wrote:

> On Wednesday 09 Jan 2008 1:11:27 pm Raj Mathur wrote:
> > On Wednesday 09 Jan 2008, Atanu Datta wrote:
> > > Hi all!
> > >
> > > MySQL will conduct a session in Bangalore and Delhi during the OSIW
> > > (Open Source India Week) where they want feedback on the topics the
> > > attendees will be interested in knowing more about. Following are a
> > > few topics that came forth when we were cooking the programme with
> > > MySQL's David Axmark and Brian Aker.
> > >
> > > 1. Zero hassles transition from MS Access/Oracle to MySQL
> > > 2. How to do Stored Procedures, Triggers & Views in MySQL
> > > 3. How to write storage engines for MySQL
> > >
> > > Those are some of the things that our DBA wants to know more about.
> > > Obviously, there should be many more topics that you all want covered
> > > or wanna discuss. Please throw your ideas, we'll put all of 'em in
> > > the melting pot, and hand it over to the Brian so that he can design
> > > the final programme.
> >
> > Is participation in the sessions free?  If not, will the people who make
> > suggestions be paid for improving the quality of the course? :)
> >
> > -- Raju
>
> The question was bang on target. ;-)
>
> People whose suggested topic(s) are included in the workshop will be
> invited
> to attend the workshop for free. Some of the early registrants from iLUG-D
> will also be registered for free. Rest of the participants will be charged
> a
> nominal fee. And people like me are not invited at all, cuz I don't even
> understand the basics of an RDBMS. The workshop is only targeted to the
> techies. :-(
>
> Best,
> Atanu
>
>
>
> ___
> ilugd mailinglist -- ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
> Next Event: http://freed.in - February 22/23, 2008
> Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
> http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
>
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22/23, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/