Re: [Ilugc] [[Need help]] Few *nix questions

2016-02-23 Thread Shakthi Kannan
Hi,

--- On Tue, Feb 23, 2016 at 7:06 PM, sahil साहिल
 wrote:
| ... wasting my time with you on
| this forum.
\--

I shall encourage you to work in a free and open source software
project, gain experience, and you will better understand what we have
been trying to explain to you.

Best wishes!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] [OT] [[Need help]] Few *nix questions

2016-02-23 Thread Shakthi Kannan
Sahil,

--- On Tue, Feb 23, 2016 at 5:04 PM, sahil साहिल
 wrote:
| No one raised concern about questions or approach.
\--

You received two technical replies from both Arun and me. So, the
above is not true.

  http://www.ae.iitm.ac.in/pipermail/ilugc/2016-February/083323.html

  http://www.ae.iitm.ac.in/pipermail/ilugc/2016-February/083322.html

Cheers!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] [OT] [[Need help]] Few *nix questions

2016-02-23 Thread Shakthi Kannan
Hi,

--- On Tue, Feb 23, 2016 at 4:57 PM, Ganesh Ranganathan
 wrote:
| No, it's a matter of list etiquette. There is a common language of
| communication agreed upon by the users of this mailing list and that is
| English.
|
| "Namaste" is not Indian culture, it's a salutation in a regional language
| spoken in one region of the country. Just like Tamil or Kannada posters
| don't use vanakkam or namaskara in the mail body, it's similarly pointless
| to use Namaste and then claim that it's Indian culture.
\--

Very well said. The sad part is that the OP didn't comprehend the
above, and took it personal.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [[Need help]] Few *nix questions

2016-02-22 Thread Shakthi Kannan
Hi,

--- On Tue, Feb 23, 2016 at 11:12 AM, sahil साहिल
 wrote:
| And, so what if its homework for a job-seeker. If you would have gotten
| such questions from your interviewer to anaylze your skill-set then would
| you reject or deny to solve these because it looks like homework.
|
| Shakthi, at least I never expected such reply from you.
\--

You missed the point again (and I shall forgive you for your
inexperience). If you are seeking a job with an employer who asks such
questions, then you are seeking the wrong employer.

A good employer would see your GitHub profile, or work that you have
done with a free and open source project.

---
| If you think you are ...
\--

Please stick to technical discussions only.

Cheers!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] [[Need help]] Few *nix questions

2016-02-22 Thread Shakthi Kannan
Hi,

--- On Tue, Feb 23, 2016 at 12:39 AM, sahil साहिल
 wrote:
| I think I did a mistake by posting questions on this group.
\--

These did look like homework questions. I did help because you made an
effort to solve some of them.

Such job, interview and quiz questions are not encouraged, because
you, as an individual, need to make an effort to find, answer and
analyze the solutions yourself. Yes, it is part of the learning
process. Only when you make an effort and learn it the hard way, will
you remember them.

"Give a man a fish and you feed him for a day; teach a man to fish and
you feed him for a lifetime."

In F/OSS, we prefer to teach. Spoon-feeding is discouraged.

Cheers!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] [[Need help]] Few *nix questions

2016-02-22 Thread Shakthi Kannan
Hi,

--- On Tue, Feb 23, 2016 at 12:02 AM, MohanR  wrote:
| If you think reading questions like this will improve your knowledge on
| *nix, then I'm sorry. If you think answering these kind of questions
| can get you a job, then I'm really sorry. start contributing to a
| opensource project, that will fetch you a good job.
\--

ACK. Very well said!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [[Need help]] Few *nix questions

2016-02-22 Thread Shakthi Kannan
Hi,

--- On Mon, Feb 22, 2016 at 1:08 PM, sahil साहिल
 wrote:
| * Identify which IP address and port the Apache daemon listens on.
\--

Check its configuration file.

---
| Is it a valid solution? I think by scanning on port 80 using nmap we can
| find out what ip's apache daemon listens.
\--

How can you tell if it isn't another web server running on port 80?

---
| * Find all IP addresses between your server and www.google.com
\--

What do you mean by "between"?

---
| * Create an empty directory and change the permissions so that the owner
| can execute, read and write, the group can execute and read and the others
| cannot do anything.
| # mkdir demo && chmod 750 demo
\--

You are creating the directory as a root user. So, you will also need
to specify the owner using chown, chgrp commands.

---
| * Print all the lines from /var/log/demon.log having the string ntp and NTP
| but not NtP.
\--

What does demon.log contain?

  $ sed -n '/ntp\|NTP/p' /var/log/demon.log

---
| * Write a shell script to get the third element delimited by ":"
| ...
| Do not use 
\--

Why not?

---
| I hope such questions will help others too.
\--

Where did you find such questions?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] Is it time to say good bye?

2016-02-19 Thread Shakthi Kannan
Hi,

--- On Fri, Feb 19, 2016 at 10:27 PM, MohanR  wrote:
| I think it is possible (...) if someone
| is willing to put a routing entry in the MTA (running in www.ae.iitm.ac
| .in) which will route all incoming mails with "To: ilugc@ae.iitm.ac.in"
| to  in their transport/routing configuration (eg:
| postfix's transport file).
\--

Yes, indeed.

  "Hiding implementation is about abstractions!" ~ Robert C. Martin

---
| 1. copy current mailman archives/data to new server (https://www.debian
| -administration.org/article/567/Migrating_mailman_lists)
\--

The work done by Bala Kumar that aggregated past ILUG-C e-mails into
Elasticsearch can also be used along with a Kibana dashboard to
visualize or view old e-mails. The gmane interface is another
alternative. These are secondary steps though.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Is it time to say good bye?

2016-02-19 Thread Shakthi Kannan
Hi,

--- On Fri, Feb 19, 2016 at 5:31 PM, Sahasranaman M S  wrote:
| If we move to freelists.org,  then according to their website, we might
| have to give up this email address and get a new one like
| il...@freelists.org.
\--

Why do you think it is not possible to setup a forwarder from
ilugc@ae.iitm.ac.in to another domain?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Job Posting /Reference - reg

2016-02-17 Thread Shakthi Kannan
Hi,

--- On Wed, Feb 17, 2016 at 7:58 PM, Manigandan Venkataraman
 wrote:
| Kindly guide me the email id / page , where i can email / post Job Openings.
\--

You can send any F/OSS related job postings to this mailing list. Just
tag the subject line with [Job][Commercial].

Please avoid sharing your mobile numbers in your e-mail. The mailing
list discussions are archived and publicly available.

http://www.ae.iitm.ac.in/pipermail/ilugc/2016-February/083303.html

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Force to delete database.

2016-02-17 Thread Shakthi Kannan
Hi,

--- On Thu, Feb 18, 2016 at 11:29 AM, Kumar  wrote:
| Thanks, I read manual and it keep on same stage. No sign of delete. Even I
| tried use database.
| Nothing is showing.
\--

You have to paste the exact error that you get, and also check your
MySQL server logs.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Force to delete database.

2016-02-17 Thread Shakthi Kannan
Hi,

--- On Thu, Feb 18, 2016 at 11:14 AM, Kumar  wrote:
| mysql> DROP DATABASE ;
\--

You have to specify a database name. See the syntax:

  http://dev.mysql.com/doc/refman/5.7/en/drop-database.html

Please also learn to use a search engine in future for such questions.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] In PDF showing only Black boxes instead of images

2016-02-14 Thread Shakthi Kannan
Hi,

--- On Mon, Feb 15, 2016 at 7:44 AM, sooraj kenoth
 wrote:
| Ok, Shall I CC you in the mail?
\--

Yes, please.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] In PDF showing only Black boxes instead of images

2016-02-14 Thread Shakthi Kannan
Hi,

--- On Sun, Feb 14, 2016 at 2:42 PM, sooraj kenoth
 wrote:
| I am not sure about it. If he is open to that, he would say it in that
| mail itself.
\--

I didn't see you asking it explicitly in your e-mail.

---
| I forwarded the content of your mail. In that it is
| clearly stated "If the LaTeX sources of the book are made available".
| Asking repeated questions is not a good idea.
\--

Instead of making assumptions, why don't you clearly ask the author
how you intend to help generate the PDF, if the book sources are made
available.

---
| In free software as far as I know the best IDE is TexMaker.
\--

There is no best ice-cream. Everyone has their favourite one.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] In PDF showing only Black boxes instead of images

2016-02-13 Thread Shakthi Kannan
Hi,

--- On Sun, Feb 14, 2016 at 10:46 AM, sooraj kenoth
 wrote:
| It would be nice if we can assist him.
\--

You can always ask him if he is willing to release the content (text
source). But, that can be a personal decision.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Is it time to say good bye?

2016-02-13 Thread Shakthi Kannan
Hi,

--- On Sat, Feb 13, 2016 at 9:32 PM, Bala Kumar  wrote:
| Do we have any plans?
\--

Yes. Stay tuned. Do not panic.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] In PDF showing only Black boxes instead of images

2016-02-13 Thread Shakthi Kannan
Hi,

--- On Sun, Feb 14, 2016 at 8:49 AM, sooraj kenoth
 wrote:
| This the response I got from the author. Overall it is positive.
| Moreover that book is not at all restricted. So what we can do?
|
| > From: Gary Johnson
| > Give me a link to a pdf generator that you think might work, and I
| > will see what  I can do.
\--

You need to ask if the author is willing to provide the text source of
the book. I didn't see that in your e-mail to Gary.

It looks like the author himself wants to re-generate the PDF using
LaTeX. Fair enough.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Need help - HTML to PDF with Custom Fonts

2016-02-12 Thread Shakthi Kannan
Hi,

--- On Sat, Feb 13, 2016 at 5:36 AM, Shrinivasan T
 wrote:
| Is it possible to convert this file to A4 pdf and 6 inch PDF (9cm x 12 cm)
| automatically ?
\--

You are confusing content and presentation.

I already mentioned this to you earlier [1] that you need to get the
content in plain text format. Later, you have the option of generating
the book in any format for any medium.

Converting to a specific format may or may not fully solve your
current problem, but, it will not scale!

SK

[1] http://www.ae.iitm.ac.in/pipermail/ilugc/2015-July/082579.html

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] In PDF showing only Black boxes instead of images

2016-02-12 Thread Shakthi Kannan
Hi,

--- On Fri, Feb 12, 2016 at 8:23 PM, sooraj kenoth
 wrote:
| No, according to file properties, it done by PCTeX 5.1 Distiller + dvips
\--

Yes, but you need to ask the author how it was it generated in the
software, and what configuration options were used!

Anyways, that is a proprietary product and you need to ask the writers
of the software for help.

If the LaTeX sources of the book are made available, we can try to
build it with existing free and open source software.

Cheers!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] In PDF showing only Black boxes instead of images

2016-02-12 Thread Shakthi Kannan
Hi,

--- On Fri, Feb 12, 2016 at 1:15 PM, sooraj kenoth
 wrote:
| 2016-02-10 10:17 GMT+05:30 Arun Khan
|
| >> As SK suggests, contact the author.   We don't know how s/he generated
| >> the PDF.  Describe (in detail) the problem to him/her.
|
| I contacted the author  and this is his reply.
\--

Did you ask how the PDF was generated in the first place?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] [Commercial][Job] Dev Ops Engineer at System Insights, Chennai

2016-02-09 Thread Shakthi Kannan
Dev Ops Engineer @ System Insights, Chennai

You will be responsible for monitoring, managing, and maintaining the
VIMANA platform for SaaS and on-site deployments. You will be working
closely with our developers in Berkeley, CA and Chennai, India.

Required Skills:

Strong experience in deploying, configuring and managing applications
using cloud infrastructure.
Skills in mongodb and SQL: Replication, sharding, tuning.
Experience in application monitoring and log file management for
multi-function, multi-tenant applications.
System administration skills for GNU/Linux (Ubuntu, Centos) and other
*nix systems.
Work with a 24x7 distributed global team.
Automated infrastructure provisioning tools such as Ansible.
Familiarity with scripting languages (Shell, Python, ...).
Knowledge of virtualization and Linux containers (Docker).
Good troubleshooting, problem-solving and communication skills.

Tools we use:

UI: React, SemanticUI, NodeJS, Express, D3, dc.js, Coffescript, ES6
Messaging: Websockets, Kafka, RabbitMQ, MQTT, ActiveMQ
Server: Scala, Akka, ESPER, Drools, Rails, NodeJS
Infrastructure: Private clouds, Consul, Docker, Ansible, Mesos
Databases: MySQL, PostgreSQL, MongoDB, LevelDB, Redshift, InfluxDB
Analytics: R, Python, Elasticsearch
Mobile: Applications using the Cordova platform.

If interested, please apply at:

  https://systeminsights.bamboohr.com/jobs/view.php?id=4

Regards,

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] In PDF showing only Black boxes instead of images

2016-02-09 Thread Shakthi Kannan
Hi,

--- On Tue, Feb 9, 2016 at 3:42 PM, sooraj kenoth
 wrote:
| What can be the problem?
\--

You are asking the wrong people! You need to write to the author of
the book asking why the images are not being rendered when viewed
locally.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly Meet on 13th Feb 2016

2016-02-09 Thread Shakthi Kannan
Hi,

My session:

* Topic: Project Kalam

Description: Community initiated free and open source software
projects to cater to ILUG-C. Discussion on mailing list migration and
fossconf.in.

Duration: 20 minutes

About yourself: Shakthi Kannan is a Free Software enthusiast who blogs
at shakthimaan.com.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] In PDF showing only Black boxes instead of images

2016-02-09 Thread Shakthi Kannan
Hi,

--- On Tue, Feb 9, 2016 at 1:17 PM, sooraj kenoth
 wrote:
| I downloaded a pdf file from this
| link<http://ece.k-state.edu/people/faculty/gjohnson/files/Windbook.pdf>.
| Some the images in the book are not showing properly.
\--

Why don't you write to the author of the book and ask?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] icinga2 remote windows custom service check.

2016-02-08 Thread Ajeesh Kannan
Hi ,

I have installed NSClient++ on remote windows machine and installed Icinga2
on a centos server.

After enabling the remote arguments in nsclient++ I can now check the
remote custom service using the check_nrpe command.

 /usr/lib64/nagios/plugins/check_nrpe -H 54.152.213.244 -c CheckProcState
-a icinga2.exe=started ShowAll
OK: All processes are running.|'icinga2.exe'=2;0;1

But while configuring the command in Icinga server, I am getting the
following error::
Icinga2 error :: no handler command.

commands are not recognizing in icinga2. My configuration as below.

/etc/icinga2/repository.d/hosts/ec2-.compute-1.amazonaws.com.conf

object Service "custom_process" {
   import "generic-service"
   host_name = "ec2-.compute-1.amazonaws.com."
   check_command = "check_nsc_prcoess"
 # vars.remote_nrpe_command = "alias_process_icinga2"
#  check_command = "/usr/local/nagios/libexec/check_nrpe -H 54.152.213.244
-c CheckProcState -a icinga2.exe=started ShowAll"
}


/etc/icinga2/conf.d/commands.conf

object CheckCommand "check_nsc_prcoess" {
import "plugin-check-command"
command = [
PluginDir + "/check_nrpe",
"-H", "$address$",
"-c", "$check_nsc_prcoess!CheckProcState!5666!icinga2.exe!started$",
"-a", "$icinga2.exe=started ShowAll$"
  ]
}

Can you please help to fix this problem for configuring a custom service in
innga2 for a windows server.


-- 
With Regards,
Ajeesh B.Kannan
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Is it time to say good bye?

2016-02-07 Thread Shakthi Kannan
Hi,

--- On Sun, Feb 7, 2016 at 4:39 PM, p sriram  wrote:
| If any of you know how to do this, pl. get in touch with me (off
list). If I don’t get the
| help, it may be time for us all to say good bye to the list. Thanks.
\--

Do you have a timeframe?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] Need help - HTML to PDF with Custom Fonts

2016-02-06 Thread Shakthi Kannan
Hi,

--- On Sat, Feb 6, 2016 at 2:30 AM, Shrinivasan T
 wrote:
| We are looking for a solution to convert html pages to A4 pdf and B7 pdf
| for FreeTamilEbooks.com project
\--

I have just released a XeTeX book template (under MIT license) to
generate PDF from Emacs org-mode (plain text).

  https://github.com/shakthimaan/xetex-book-template

You can use multiple natural languages in the same book. The example/
in the sources has both Tamil and English. A sample PDF generated is
available at:

  http://shakthimaan.com/dump/book.pdf

The content in the book is just to fill up the page. Most of the
ground work is done, but, I am still working on styling.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] FOSSConf 2016

2016-02-04 Thread Shakthi Kannan
Hi,

I have initiated a discussion with Thiagarajar College of Engineering
[1], Madurai regarding hosting FOSSConf 2016.

They had hosted the event in 2009, and are interested in hosting it
during Software Freedom Day this year (Saturday, September 17, 2016).

I have registered the domain fossconf.in, and it now redirects to ilugc.in.

If you are interested in volunteering (organization, technical) please
do reply on how you wish to contribute to the event.

Thanks!

SK

[1] TCE, Madurai. http://www.tce.edu/

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [ILUGC] FTP over SSL - Handshake failed

2016-02-03 Thread Shakthi Kannan
Hi,

--- On Wed, Feb 3, 2016 at 5:59 PM, JITHIN K  wrote:
| I have tried all the solutions by searching in google and other search
| engines.
\--

That doesn't tell us what you did. Please describe the steps you
followed and what error/output you got. Also read:

http://www.chiark.greenend.org.uk/~sgtatham/bugs.html

http://www.catb.org/esr/faqs/smart-questions.html

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [ILUGC] FTP over SSL - Handshake failed

2016-02-03 Thread Shakthi Kannan
Hi,

--- On Wed, Feb 3, 2016 at 4:49 PM, JITHIN K  wrote:
| Error: GnuTLS error -8: A record packet with illegal version was received.
| ...
| Any idea ?
\--

You are expected to make an attempt to solve the problem before
sending an e-mail.

  http://lmgtfy.com/?q=A+record+packet+with+illegal+version+was+received

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 23, 2016, 1500 IST

2016-02-02 Thread Shakthi Kannan
Hi,

For the next ILUG-C meet (Saturday, February 13, 2016), I shall
request Raman P to send the invite for the talks.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Ubuntu 14.04 LTS dual booting with Window 7 Partition problem (Arun Khan)

2016-01-30 Thread Shakthi Kannan
Hi,

--- On Sat, Jan 30, 2016 at 12:42 PM, Dhanagopal R
 wrote:
| The HDD is having 5 following partitions as per windows disk manager.
| 1, OEM partion 39mb (Shown as primary)
| 2, Recovery partition 29 Gb (Shown as primary)
| 3. C: Primary partition 352 Gb (Primary)
| 4. D: Logical  partition 166 Gb
| 5, E: Logical partition 158 Gb
\--

So, the fourth partition is an extended partition divided into logical
partitions.

---
| In the laptop bios, legacy boot is enabled and secure boot is disabled.
\--

As per the documentation if you want to use GPT, you need to use EFI.
You cannot disable secure boot.

---
| My intention was to install Grub boot loader in the /boot partition and use
| the default Windows boot loader by appropriately modifying the entries
| using Easy BCD (to overcome any unforeseen problem while the nagging
| upgrade to Windows 10 happens).
\--

Easy BCD is a proprietary product, and since you are paying for it,
you can ask them for support.

---
| Though I can use Ubuntu, still I need to
| keep windows.
\--

What "use"? You could also consider running Ubuntu as a Virtual
Machine (VirtualBox, for example).

---
| whether is it possible to install
| Ubuntu by creating all the partitions as logical?
\--

Yes.

---
| Is it mandatory to have all the Linux partition as primary?
\--

No.

---
| How to ascertain GUID Partition Table (GPT) is used in a computer ( My
| laptop was shilled in 2013)?
\--

Please use a search engine for such questions. For a start:

  
http://askubuntu.com/questions/387351/how-can-i-detect-whether-my-disk-is-using-gpt-or-mbr-from-a-terminal

---
| Is it possible to change windows primary partition into logical (except C:
| the boot partition) using Ubuntu partition utility while installing?
\--

Why do you want to do that?

If you are in Chennai, I'd suggest you bring your laptop to the
monthly meet-up so that we can take a look at it, and also clarify
your doubts.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Wave form viewer gEDA

2016-01-30 Thread Shakthi Kannan
Hi,

--- On Sat, Jan 30, 2016 at 12:29 PM, sooraj kenoth
 wrote:
| From gEDA mailing list I
| came across a project <http://repo.or.cz/w/oscopy.git> by Arnaud
| Gardelein. But a lot work has to be done. I am trying to install it.
| Till this time I could not not successfully complete the installation.
| :(
\--

Again. When you say "could not successfully complete the
installation', can you also mention in your e-mail what steps you
followed, what error you got etc., instead of we having to ask you
every time?

Just making a statement is not going to help us help you. Please read:

How to report bugs effectively:
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html

How to ask questions the smart way:
http://www.catb.org/esr/faqs/smart-questions.html

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Limit of maximum 4 primary partition vs linux installation

2016-01-28 Thread Shakthi Kannan
Hi,

--- On Thu, Jan 28, 2016 at 10:34 PM, Dhanagopal R
 wrote:
| The 4-partition limit no longer exists with disks that use the GUID
| Partition Table (GPT). <http://en.wikipedia.org/wiki/GUID_Partition_Table>
| GPT supports up to 128 partitions by default and does not include the
| concepts of primary, extended, or logical partitions (although many tools
| refer to all GPT partitions as "primary partitions," simply because those
| tools were written with the older MBR system in mind).
\--

What is your laptop model and hardware specification?

---
| Thus, increasing numbers of readers of this question are likely
| to find that there is no problem; if the disk is partitioned using GPT, the
| 4-partition limit simply doesn't exist.
\--

They still use the first 512 bytes as a "protective MBR" to prevent
over-writing GPT. It is a logical hack to overcome the limitation,
but, you are forced to use EFI.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Wave form viewer gEDA

2016-01-28 Thread Shakthi Kannan
Hi,

--- On Thu, Jan 28, 2016 at 7:01 PM, sooraj kenoth
 wrote:
| ...
| Before sending my first mail I tried Oregano
| <https://github.com/drahnr/oregano>. That seemed to solve my problem,
| actually it didn't. Using that software we can draw a circuit place
| the probe and do simulation. But that is not the output I am looking
| for.
|
| ...
|
| What I am thinking is draw a circuit, place a probe where I want to
| see the voltage wave form and click run and see the wave form as we
| can see in the oscilloscope.
\--

Why didn't you share all this information when writing your first e-mail?

In software, the logic is usually a mathematical function with little
or no external variance, and hence you can calculate a value in any
instant of time. But, in the real world, there are a number of varying
parameters, and hence you need an oscilloscope.

Please don't top post in this list. Use interleaved, trimmed, bottom posting.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Ubuntu 14.04 LTS dual booting with Window 7 Partition problem (Dhanagopal R)

2016-01-27 Thread Shakthi Kannan
Hi,

--- On Wed, Jan 27, 2016 at 1:10 PM, Dhanagopal R  wrote:
| 1, OEM 39mb OEM partion (Not sure logical or primary)
| 2, Recovery partition 29 Gb (Not sure logical or primary)
\--

Do these show up when you install Ubuntu?

---
| As I am not sure whether the first two partitions or primary or logical,
\--

Check in the UI or in fdisk output when you boot from the Live CD.

---
| I preferred a
| /boot partition to install boot loader there to use windows  boot loader
\--

The bootloader gets installed in the first 512 bytes and is called the
Master Boot Record (MBR). You really don't need a large /boot.

---
| As somebody suggested, I can also wait for the release of Ubuntu 16.04 LTS.
\--

If you have run out of primary partitions, waiting for Ubuntu 16.04 is
not going to solve anything. Please check your primary partitions.

Regards,

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Ubuntu 14.04 LTS dual booting with Window 7 Partition problem

2016-01-26 Thread Shakthi Kannan
Hi,

--- On Tue, Jan 26, 2016 at 10:11 PM, Dhanagopal R
 wrote:
| 2. Selected the free space using the Ubuntu partition utility
| 3. Created 1gb /boot logical partition ext4 - no problem
| 3. Then created a 30 gb / root logical  partition ext4 - no problem
| 4. Then created a 130 gb /home logical partition ext4 - There was problem.
| I could not proceed to create /swap partition.
\--

Firstly, that is a very well written e-mail. You have provided all the
steps that you had followed for us to understand what you are
experimenting with.

#1 Why are you creating logical partitions? You can create upto four
primary partitions.

#2 You do not need 1 GB for /boot. Try installing with separate /,
/home and swap primary partitions.

#3 Can you also check if there are no other primary partitions on the
hard drive?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] IRC channel

2016-01-23 Thread Shakthi Kannan
Hi,

--- On Sun, Jan 24, 2016 at 12:21 PM, Sathish Kumar
 wrote:
| I just subscribed to this mailing list. I would like to know the IRC server
| and channel for this group.
\--

I don't know if there is an active IRC channel. But, you can use
##linux-india on irc.freenode.net which has existed for many years.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Wave form viewer gEDA

2016-01-23 Thread Shakthi Kannan
Hi,

--- On Sat, Jan 23, 2016 at 4:00 PM, sooraj kenoth
 wrote:
| How can I create VCD file using gEDA?
|
| I just want to know how to simulate a simple electronic circuit, say
| opmp PWM, and view the wave form.
\--

For a start:

  http://wiki.geda-project.org/geda:ngspice_and_gschem

  http://wiki.geda-project.org/geda:faq-simulation

  http://wiki.geda-project.org/geda:csygas

Please learn to use a search engine.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 23, 2016, 1500 IST

2016-01-23 Thread Shakthi Kannan
Hi,

The link that I mentioned during our discussion is "GPG in 10 minutes":

  http://shakthimaan.com/downloads/glv/gpg/gpg-10-minutes.html

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 23, 2016, 1500 IST

2016-01-20 Thread Shakthi Kannan
Hi,

--- On Wed, Jan 20, 2016 at 1:47 PM, Udaya Kumar  wrote:
|  Accommodate this, if there is slot.
|
| Topic  : Go & postgres.
|  Description : Interfacing Go with postgres.
|  Duration : 30mins
|  About Yourself : Sw Eng
\--

Sure. If time permits, you can present the same.

Thanks!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 23, 2016, 1500 IST

2016-01-18 Thread Shakthi Kannan
Hi,

--- On Mon, Jan 18, 2016 at 7:38 PM, Sahasranaman M S  wrote:
| 3. Topic - Contributing to LibreOffice - Talk 5
\--

ACK. This talk can be the second session.

SK

--
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 23, 2016, 1500 IST

2016-01-17 Thread Shakthi Kannan
Hi,

We are happy to have both Siri Reiter and Jonas Smedegaard as speakers
for this month's meet.

1. Topic: Debian Pure Blends

Speakers: Siri Reiter and Jonas Smedegaard

Description: We would like to present a vision to make Debian Pure
Blends so flexible to customize, that forking becomes obsolete, and
talk about our quest to learn from desktop distributions in India with
that long term goal.

Duration: 40 minutes.

About speakers: Siri - http://sirireiter.dk/ and Jones - http://dr.jones.dk/.

2. Topic: Project Euler

Speaker: Shakthi Kannan

Description: Community initiated free and open source software
projects to cater to ILUG-C.

Duration: 15 Minutes

About me: Shakthi Kannan is a Free Software enthusiast who blogs at
shakthimaan.com.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] For give instruction

2016-01-13 Thread Shakthi Kannan
Hi,

--- On Wed, Jan 13, 2016 at 10:16 PM, Anju.S Ashok  wrote:
| i am fresher .At present i am doing a course in networking and
| can u help and give the main area for pointing
| and the oppurtunities...plss help me.
\--

It is a very generic question, and it depends on your area of interest.

Please don't use SMS language when sending e-mails. Refer:

  ILUGC Mailing List Guidelines:
  http://ilugc.in/mailinglist-guidelines

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] Monthly meet ILUG-C - Saturday, January 23, 2016, 1500 IST

2016-01-13 Thread Shakthi Kannan
Hi,

Indian Linux Users Group, Chennai [ ILUGC ] is spreading awareness on
Free/Open Source Software (F/OSS) in Chennai since January 1998.

We usually meet on the second Saturday of every month, and the
sessions consist of technical talks and discussions. For the first
meet in the new year, we shall meet on Saturday, January 23 2016 at
1500 IST.

Venue: Classroom No 1,
 Aerospace Engineering,
 Near Gajendra Circle,
 IIT Madras.
 Link for the Map: http://bit.ly/iitm-aero

You can give a talk or present a demo on F/OSS. Please provide the
following details if you are interested:

  Topic
  Description
  Duration
  About Yourself

Entry is free.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2016-01-11 Thread Shakthi Kannan
Hi,

--- On Mon, Jan 11, 2016 at 6:56 PM, Sahasranaman M S  wrote:
| Just wanted to check if we would meet next weekend (16th Jan) instead.
\--

It is the long weekend holiday, and hence people will be travelling.
Let's meet on Saturday, January 23, 2016.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Making Pi as personal VPN and want to access in from outside

2016-01-11 Thread Shakthi Kannan
Hi,

--- On Mon, Jan 11, 2016 at 12:05 PM, sahil साहिल
 wrote:
| I want to make my Pi as personal VPN and want to access it from outside
| home network. My Pi is connected to internet (BSNL Broadband) 24X7 having
| dynamic IP address.
|
| Can I make it as VPN so that I can access it from outside my home network?
\--

Try OpenVPN with DDNS:

  
https://openvpn.net/index.php/open-source/faq/77-server/299-can-openvpn-handle-the-situation-where-both-ends-of-the-connection-are-dynamic.html

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2016-01-08 Thread Shakthi Kannan
Hi,

Let us postpone this meeting because there is some wiring work being
done in the department and the classrooms are not available. This work
was apparently started yesterday evening.

Regards,

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly Meet - talk

2016-01-08 Thread Shakthi Kannan
Hi,

--- On Fri, Jan 8, 2016 at 2:49 PM, S Suresh  wrote:
| Sorry. I  have some personal work (couldn't avoid it) tomorrow.
| So, i suggest the co-ordinate to postpone the session "KaanalNet" . I
| will take this on some other monthly meet.
\--

Okay. No problem.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2016-01-07 Thread Shakthi Kannan
Hi,

--- On Wed, Jan 6, 2016 at 5:56 PM, Sahasranaman M S  wrote:
| 3. Topic - Contributing to LibreOffice - Talk 5
|
| Description - A quick talk about 3 easyhacks
| ...
\--

ACK. You could have only sent your topic changes, instead of
re-posting everything.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Containers (Docker) Workshop in Chennai (9th Jan'16)

2016-01-06 Thread Shakthi Kannan
Hi,

--- On Wed, Jan 6, 2016 at 6:21 PM, Udaya Kumar  wrote:
| I gone ahead and registered and this is the response i got. OP, kindly note
| we don't encourage such schemes in FOSS groups.
\--

I didn't see anything wrong with it. Moreover, the OP said that the
money will be given back to you on the day of the workshop, and it is
thus a free workshop.

Since the capacity is limited, this method ensures that only the
people who are serious about attending the workshop sign up, and not
prevent genuine people from giving a chance to attend.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2016-01-04 Thread Shakthi Kannan
Hi,

--- On Sun, Jan 3, 2016 at 2:13 PM, Sahasranaman M S  wrote:
| We'll just do the Libreoffice talk this month.
\--

ACK. Final agenda:

1.  Topic: Containers Workshop

Description: Docker
Duration: 20 minutes
About yourself:

Neependra Khare is the author of Docker Cookbook (
https://www.packtpub.com/virtualization-and-cloud/docker-cookbook
<https://www.google.com/url?q=https://www.packtpub.com/virtualization-and-cloud/docker-cookbook&sa=D&ust=1451388090023000&usg=AFQjCNFenxxtw_A7amxldzYtUfXxIkN7Vw>)
and has been co-organising Docker meetup group in Bangalore for more than a
year now (http://www.meetup.com/Docker-Bangalore/
<https://www.google.com/url?q=http://www.meetup.com/Docker-Bangalore/&sa=D&ust=1451388090023000&usg=AFQjCNGuZY60OI3aCwTyBJz_yjn2Zz8jYg>).
He has more 11 years to IT experience and earlier worked as System
Administration, Support Engineer, File System Developer and Performance
Engineer. Currently he is doing training and consulting for container
technologies like Docker, Kubernetes, Project Atomic, CoreOS.

2. Topic:  KaanalNet

Description: A  Open source  SDN Test Bed / Network Emulator
Software. developed on NodeJS.
http://kaanalnet.org/
https://github.com/sureshkvl/kaanalnet/wiki
Duration: 30minutes
About yourself: Suresh

3. Topic - Contributing to LibreOffice - Talk 5

Description - Still need to decide which bug to talk about, will update.
Duration - 20 minutes
About yourself: Sahas is a LibreOffice contributor.

4. Topic: Project Kalam

Description: Community initiated free and open source software
projects to cater to ILUG-C.
Duration: 20 minutes
About yourself: Shakthi Kannan is a Free Software enthusiast who blogs
at shakthimaan.com.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2016-01-02 Thread Shakthi Kannan
Hi,

--- On Sat, Jan 2, 2016 at 1:16 PM, Udaya Kumar  wrote:
| Topic : Introduction to golang
\--

There are already four talks. Can we move it to the next month?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2016-01-02 Thread Shakthi Kannan
Hi,

--- On Thu, Dec 31, 2015 at 1:32 PM, Sahasranaman M S  wrote:
| I would like to register for two talks for this meet.
\--

We already have three talks, and there is room for one. I'd like to
give some buffer time.

Can you decide on which one you would like to present?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Data Scientist for free

2016-01-02 Thread Shakthi Kannan
Hi,

--- On Sat, Jan 2, 2016 at 11:25 PM, Sathish  wrote:
| Can i join with you ...
\--

In future, please reply directly to the OP, and not to the mailing list.

---
| If you are ok with me please ping me @ 999 ...
\--

Please avoid sending sensitive phone numbers to the mailing list.
These are archived for public access.

  http://www.ae.iitm.ac.in/pipermail/ilugc/

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [FREELANCE] [JOB] Qt/HTML5 Developers

2015-12-31 Thread Shakthi Kannan
Hi,

--- On Fri, Jan 1, 2016 at 12:08 PM, poovizhi rajan
 wrote:
| We are interested in the project for more details kindly Send us sample
| files so that we send processed data.
\--

Please send a private e-mail to the OP, and not to the list!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Containers (Docker) Workshop in Chennai (9th Jan'16)

2015-12-31 Thread Shakthi Kannan
Hi,

--- On Fri, Jan 1, 2016 at 11:57 AM, Neependra Khare
 wrote:
| I am fine with hosting the workshop at the
| Management of System Insights.
\--

s/the Management of//

Thanks for the confirmation. I shall proceed with the necessary logistics.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Containers (Docker) Workshop in Chennai (9th Jan'16)

2015-12-31 Thread Shakthi Kannan
Hi Neependra,

--- On Fri, Jan 1, 2016 at 7:00 AM, Neependra Khare
 wrote:
| As this is a free workshop I am looking for a community space or a
| reasonable paid place with 10-12 desk with internet connection.
\--

I checked with the Management of System Insights (Tambaram East) and
they are happy to host it for free. They also said they can sponsor
food.

I had earlier organized two installfests at the venue.

Can you please let me know if this is fine with you?

Thanks!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2015-12-30 Thread Shakthi Kannan
Hi,

--- On Thu, Dec 31, 2015 at 4:42 AM, Neependra Khare
 wrote:
| Please ACK that. I definitely would like to talk at ILUG-C.
\--

ACK for the 20 minute ILUG-C talk on Docker. You will be the first speaker.

SK

--
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2015-12-30 Thread Shakthi Kannan
Hi,

3. Topic: Project Kalam

Description: Community initiated free and open source software
projects to cater to ILUG-C.

Duration: 20 minutes

About yourself: Shakthi Kannan is a Free Software enthusiast who blogs
at shakthimaan.com.

SK

P.S.: Formerly was called "Project Euler".

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2015-12-29 Thread Shakthi Kannan
Hi Neependra,

Will let you know if I come to know of any place for your workshop.

We do not have Wi-Fi in the classrooms that we use in the Aerospace
department. Even the USB dongles sometimes do not work at certain
locations. You might need to arrange for Internet connection.

The 20 minute talk is possible during the ILUG-C meet.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2015-12-29 Thread Shakthi Kannan
Hi,

--- On Wed, Dec 30, 2015 at 9:40 AM, S Suresh  wrote:
|  Topic   :  KaanalNet
|  Description : A  Open source  SDN Test Bed / Network Emulator
|  Software. developed on NodeJS.
|  http://kaanalnet.org/
|  https://github.com/sureshkvl/kaanalnet/wiki
|
|  Duration : 30mins
|  About Yourself : Suresh
\--

ACK.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2015-12-29 Thread Shakthi Kannan
Hi,

--- On Wed, Dec 30, 2015 at 4:26 AM, Neependra Khare
 wrote:
| I already have few people signed up for full day workshop
\--

Where is this scheduled?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2015-12-29 Thread Shakthi Kannan
Hi,

--- On Tue, Dec 29, 2015 at 4:00 PM, Neependra Khare
 wrote:
| Topic : Containers Workshop
|  Description : Docker Hands on
|  Duration : Min. 2 hours
|  About Yourself
\--

Would it be possible for you to do a 20 minute technical talk?
Depending on interest you can perhaps schedule the workshop on another
day?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] Monthly meet ILUG-C - Saturday, January 9, 2016, 1500 IST

2015-12-28 Thread Shakthi Kannan
Hi,

Indian Linux Users Group, Chennai [ ILUGC ] is spreading awareness on
Free/Open Source Software (F/OSS) in Chennai since January 1998.

We usually meet on the second Saturday of every month, and the
sessions consist of technical talks and discussions. For the first
meet in new year, we shall meet on Saturday, January 9 2016 at 1500
IST.

Venue: Classroom No 1,
 Aerospace Engineering,
 Near Gajendra Circle,
 IIT Madras.
 Link for the Map: http://bit.ly/iitm-aero

You can give a talk or present a demo on F/OSS. Please provide the
following details if you are interested:

  Topic
  Description
  Duration
  About Yourself

Entry is free.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] request reg compilation of linux distro

2015-12-27 Thread Shakthi Kannan
Hi,

--- On Sun, Dec 27, 2015 at 10:39 AM, Purushothaman M
 wrote:
| I want to make a linux distro
| with softwares of my choice for my use in office.
\--

How do you plan to install the distribution?

Unless you have time to maintain them, you can simply install the base
OS, and write a script to install your required packages.

SK

--
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Node.js Module Error - Reg

2015-12-24 Thread Shakthi Kannan
Hi,

--- On Thu, Dec 24, 2015 at 5:18 PM, Yuvaraj Yuvaa  wrote:
| i m using Ubuntu Linux 12.04 LTS in
|
| npm ERR! Error: failed to fetch from registry: request
|
| npm ERR! node -v v0.6.12
| npm ERR! npm -v 1.1.4
\--

How did you install Node.js? See:

  
http://stackoverflow.com/questions/12913141/message-failed-to-fetch-from-registry-while-trying-to-install-any-module/21715730#21715730

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, December 19, 2015, 1500 IST

2015-12-23 Thread Shakthi Kannan
Hi,

--- On Sun, Dec 20, 2015 at 6:22 AM, Bala Kumar  wrote:
| Members who were present today for the session here is the link to Kibana
| instance which has our archive data.
\--

This is good work. We have slowly moved from solving Euler problems
into taking up community projects. We shall change the topic from
"Project Euler" to something else in the new year.

Thanks!

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, December 19, 2015, 1500 IST

2015-12-19 Thread Shakthi Kannan
Hi,

--- On Sat, Dec 19, 2015 at 3:00 PM, Bala Kumar  wrote:
| In case if they are not allowing inside at main gate. Show this email and
| come. Got in just now after all hassle.
\--

What did you tell them? I just said I am going to Aerospace department.

SK

--
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, December 19, 2015, 1500 IST

2015-12-17 Thread Shakthi Kannan
Hi Udaya Kumar,

--- On Thu, Dec 17, 2015 at 3:14 PM, Udaya Kumar  wrote:
| Talk 3
|
| Topic : Introduction to Perl
|
| Description : Basics of Perl language.
|
| Duration :30mins
|
| About Yourself :SW Eng.
\--

ACK. You can be the second speaker.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, December 19, 2015, 1500 IST

2015-12-16 Thread Shakthi Kannan
Hi,

--- On Thu, Dec 17, 2015 at 1:10 AM, Sahasranaman M S  wrote:
| I would like to present a talk on LibreOffice development and if time
| permits, would like to do a couple of lightning talks as well.
|
| Talk 2
\--

ACK. You can be the first speaker.

SK

--
Shakthi Kannan
https://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] Monthly meet ILUG-C - Saturday, December 19, 2015, 1500 IST

2015-12-16 Thread Shakthi Kannan
Hi,

Indian Linux Users Group, Chennai ILUGC spreading awareness on
Free/Open Source Software (F/OSS) in Chennai since January 1998.

We usually meet on the second Saturday of every month, and the
sessions consist of technical talks and discussions. For this month,
we shall meet on Saturday, December 19 2015 at 1500 IST.

Venue: Classroom No 1,
   Aerospace Engineering,
   Near Gajendra Circle,
   IIT Madras.
   Link for the Map: http://bit.ly/iitm-aero

Time: 1500-1800 IST

Talk 1

Topic: Project Euler

Speaker: Shakthi Kannan

Duration: 30 Minutes

Description:  Simple computational problems for participants to solve
in 10 minutes. You can use pen/pencil and a paper, or a laptop or any
other machine. Please bring your solutions from the previous meet-up.
We can review it before proceeding to a newer challenge.

About me: Shakthi Kannan is a Free Software enthusiast who blogs at
shakthimaan.com.

The floor will be open after these sessions for any discussions or
lightning talks.

Entry is free.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [[Doubts]] Installing Bitmask and bypassing fortinet firewall

2015-12-14 Thread Shakthi Kannan
Hi,

--- On Tue, Dec 15, 2015 at 10:09 AM, sahil साहिल
 wrote:
| Description:Ubuntu 14.04.1 LTS
\--

Okay, it is LTS.

---
| I have done this too and did google on the error (unmet dependencies)
\--

So, there is a package dependency problem. You could file a bug with Ubuntu.

---
|  https://bitmask.net/en/install/linux
|
| Followed instructions too but failed to install the same.
\--

What error did you get?

---
| But I want to
| know what type of events fortinet firewall triggers if someone wants to
| establish a vpn connection.
\--

You need to ask Fortinet, because they are the people who wrote it.

---
| Rest I don't have any bad intention.
\--

Just making sure you understand what you are doing.

Regards,

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] Git server set up in local network

2015-12-13 Thread Shakthi Kannan
Hi,

--- On Sun, Dec 13, 2015 at 8:37 PM, Sundar Raj  wrote:
| How do i create a GIT local repository in our ubuntu 15.10 server
\--

Use gitolite. Please use a search engine to learn more.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [[Doubts]] Installing Bitmask and bypassing fortinet firewall

2015-12-13 Thread Shakthi Kannan
Hi,

--- On Sun, Dec 13, 2015 at 11:55 AM, sahil साहिल
 wrote:
| Package dependencies cannot be resolved
\--

Is your Ubuntu version LTS? Open a terminal, and paste the output of
the following command:

  $ lsb_release -a

From a terminal, can you try do an "apt-get update" first, and then
install the package?

  $ apt-get update

The instructions are here:

  https://bitmask.net/en/install/linux

You can try this at home, but, please don't do such things in your
organization without their consent. You are responsible for your
actions.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] opensource monitoring tool

2015-12-13 Thread Shakthi Kannan
Hi,

--- On Sun, Dec 13, 2015 at 11:43 AM, Gopal Krishna
 wrote:
| check Riemann monitoring tool.
|
| On Sat, Dec 5, 2015 at 1:05 AM, Ajeesh Kannan 
| wrote:
|
| Hi,
\--

Please don't top-post in this list. Use, interleaved, trimmed, bottom
posting. See:

  ILUGC Mailing List Guidelines:
  http://ilugc.in/mailinglist-guidelines

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] ILUG-C Meetup group page

2015-12-11 Thread Shakthi Kannan
Hi,

I had requested Shanthakumar to add me as a co-organizer at the ILUG-C
Meetup group, where I shall try to update the agenda before our
monthly meets.

  http://www.meetup.com/ILUG-C/

I shall request the Meetup members to subscribe to this mailing list
as this will be our primary communication channel.

Shanthakumar will continue to be the organizer at Meetup for our group.

With kind regards,

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Error in CentOS EL 7- Configuration of OpenStack-Libraty

2015-12-10 Thread Shakthi Kannan
Hi,

--- On Tue, Dec 1, 2015 at 3:50 PM, Waqar Ali Khan  wrote:
| oslo_config.cfg.ConfigFileParseError: Failed to parse
/etc/neutron/neutron.conf: at /etc/neutron/neutron.conf:92,
| Unexpected continuation line: ' auth_strategy = keystone'
\--

Did you check line number #92 in /etc/neutron/neutron.conf for
'auth_strategy' as mentioned in the error?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, December 12, 2015

2015-12-09 Thread Shakthi Kannan
Hi,

--- On Wed, Dec 9, 2015 at 1:22 PM, Bala Kumar  wrote:
| Can we have the meet on 19 Dec. I haven't checked clashes with other
| events. Just a suggestion since I feel it will take this weekend off for
| the people to settle from the floods and also many are involved in relief
| volunteering efforts.
\--

Fair enough. I checked with the Aerospace department, and they are
fine with having our meet next Saturday, December 19, 2015.

Regards.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [[Doubts]] Installing Bitmask and bypassing fortinet firewall

2015-12-09 Thread Shakthi Kannan
Hi,

--- On Thu, Dec 10, 2015 at 10:02 AM, sahil साहिल
 wrote:
| I don't think so that if I ask them then they will allow me. They have even
| blocked Ted.com and plenty of other education related video sites.
\--

You are bound by the terms and conditions put forth by the
organization. So, you will only need to work with them in this regard.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] [[Doubts]] Installing Bitmask and bypassing fortinet firewall

2015-12-09 Thread Shakthi Kannan
Hi,

--- On Thu, Dec 10, 2015 at 9:29 AM, sahil साहिल
 wrote:
| There is some error related to Python Leap.
\--

Please paste the exact error.

---
| One more doubt I want to clear is that I want to access INTERNET (blocked
| sites via fortinet firewall) from an organization's network. Will it
| trigger an alarm if I try to access blocked websites via bitmask if bitmask
| allow me to access sites?
\--

You need to ask the organization.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] opensource monitoring tool

2015-12-09 Thread Ajeesh Kannan
On Tue, Dec 8, 2015 at 7:05 AM, Thala Ajith  wrote:

> Thanks
> On 07-Dec-2015 6:49 pm, "Vikas Tara"  wrote:
>
> > On 04/12/15 19:35, Ajeesh Kannan wrote:
> > > Hi,
> > >
> > > I am looking for an Opensource monitoring tool with the following
> > facility.
> > >
> > > 1. White Labeled dash board for each company [ for each company they
> > need a
> > > separate dash board and logins, users of one organization cannot see
> > others
> > > servers.]
> > Use nagios or zabbix as your central tool and then create individual
> > dashboards with something like
> > http://grafana.org/
> >
> > This way you centralise monitoring but give customers they're own view.
> > > 2. Have a report (pdf/jpg/etc) generating facility.
> > Store the grafnar data and use a reporting engine (BIRT, jasper reports)
> > against it
> > >
> > Hope this helps, if you make loads of money from your new business,
> > contribute some to ILUGC :)
> >
> >
> > Vik
> >
> > --
> > Founder - Hamara Linux
> > www.hamaralinux.org
> > www.twitter.com/hamaralinux
> >
> > ___
> > ILUGC Mailing List:
> > http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
> > ILUGC Mailing List Guidelines:
> > http://ilugc.in/mailinglist-guidelines
> >
> ___
> ILUGC Mailing List:
> http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
> ILUGC Mailing List Guidelines:
> http://ilugc.in/mailinglist-guidelines
>


Thank you for all your updates.
-- 
With Regards,
Ajeesh B.Kannan
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUG-C - Saturday, December 12, 2015

2015-12-08 Thread Shakthi Kannan
Hi,

I checked with the Aerospace department people and they said that we
can have the meet this Saturday. If you are able to attend, please
enter the campus via the main gate.

Let us continue with our community project initiatives.

Topic: Project Euler

Speaker: Shakthi Kannan

Duration: 30 Minutes

Description:  Simple computational problems for participants to solve.
You can use pen/pencil and a paper, or a laptop or any other machine.
Please bring your solutions from the previous meet-up. We can review
it before proceeding to a newer challenge.

About me: Shakthi Kannan is a Free Software enthusiast who blogs at
shakthimaan.com.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] opensource monitoring tool

2015-12-05 Thread Shakthi Kannan
Hi,

--- On Sat, Dec 5, 2015 at 1:05 AM, Ajeesh Kannan
 wrote:
| Checked Nagios /zabbix/shinken/opsview etc, but they  don't have facilities
| like separate logins/report generate etc.
\--

You can either develop the customizations yourself, or write to the
developers of these projects for help.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] opensource monitoring tool

2015-12-05 Thread Ajeesh Kannan
Hi,

I am looking for an Opensource monitoring tool with the following facility.

1. White Labeled dash board for each company [ for each company they need a
separate dash board and logins, users of one organization cannot see others
servers.]
2. Have a report (pdf/jpg/etc) generating facility.
3. Good to have RMM [ tools like reboot , ssh etc ]

Checked Nagios /zabbix/shinken/opsview etc, but they  don't have facilities
like separate logins/report generate etc.

-- 
With Regards,
Ajeesh B.Kannan
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Ubuntu server proxy setting

2015-11-30 Thread Shakthi Kannan
Hi,

--- On Tue, Dec 1, 2015 at 12:56 PM, Sundar Raj  wrote:
| It gives me error .How do i do it.
\--

What error? Please try to write in detailed when posting a question.

vsphere is from VMWare and you need to ask them for support. This
mailing list is for free and open source software discussions.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] SSL handshake failed: SSL error: A TLS warning alert has been received

2015-11-30 Thread Shakthi Kannan
Hi,

--- On Mon, Nov 30, 2015 at 10:14 PM, JITHIN K  wrote:
| I only face issues with *Ubuntu 10.04 and Ubuntu 9.10. *
\--

Are these Ubuntu distributions LTS?

Please trim your posts when you reply. Only keep the text that is
relevant. We follow trimmed, interleaved, bottom posting.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] SSL handshake failed: SSL error: A TLS warning alert has been received

2015-11-30 Thread Shakthi Kannan
Hi,

--- On Mon, Nov 30, 2015 at 9:39 PM, JITHIN K  wrote:
| Output "svn: OPTIONS of 'https://192.168.0.1.1/svn/AJ': SSL handshake
| failed: SSL error: A TLS warning alert has been received. (
| https://192.168.1.1)"
\--

How were the SSL certificates generated?

Try these (for a start):

  http://stackoverflow.com/questions/16805298/svn-and-ssl-handshake-failure

  
http://e-mats.org/2012/11/svn-options-of-ssl-handshake-failed-ssl-error-a-tls-warning-alert-has-been-received/

  
http://www.kpsolution.com/linux/svn-ssl-handshake-failed-ssl-error-a-tls-warning-alert-has-been-received/146/

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Issue in ubuntu server installtion version 15.10

2015-11-30 Thread Shakthi Kannan
Hi,

--- On Mon, Nov 30, 2015 at 7:46 PM, Sundar Raj  wrote:
| I am trying to install additional packages but couldn't...i am not getting
| gui
\--

Please bottom-post when you reply.

#1 What is your hardware?

#2 What packages do you want to install?

You can try:

  $ sudo apt-get install ubuntu-gnome-desktop

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Issue in ubuntu server installtion version 15.10

2015-11-30 Thread Shakthi Kannan
Hi,

--- On Mon, Nov 30, 2015 at 7:38 PM, Sundar Raj  wrote:
| Facing some problem in ubuntu .Installed O/s but now i could not
| install additional packages , GUI, etc...
| When i try to install rpm using the following command it says the following
| error.
|
| sudo apt-get install rpm
\--

Ubuntu is a Debian-based distribution, and it uses apt as its package
manager, while RPM-based distributions use rpm.

Why do you want to install rpm in Ubuntu?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] Monthly meet ILUG-C - Saturday, December 12, 2015

2015-11-29 Thread Shakthi Kannan
Hi,

Indian Linux Users Group, Chennai [ ILUGC ] is spreading awareness on
Free/Open Source Software (F/OSS) in Chennai since January 1998.

We usually meet on the second Saturday of every month, and the
sessions consist of technical talks and discussions. Our next meet is
on Saturday, December 12 2015 at 1500 IST.

Venue: Classroom No 1,
 Aerospace Engineering,
 Near Gajendra Circle,
 IIT Madras.
 Link for the Map: http://bit.ly/iitm-aero

You can give a talk or present a demo on F/OSS. Please provide the
following details if you are interested:

  Topic
  Description
  Duration
  About Yourself

Entry is free.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Opensource UTM and Session Border Controller

2015-11-27 Thread Shakthi Kannan
Hi,

--- On Fri, Nov 27, 2015 at 4:46 PM, Gireesh thenayil rajappan nair
 wrote:
| The Session Border Controller its open now
|
| pls check this link
|
| https://github.com/blox-org/
|
| ...and for SHIELD UTM we are in the process of setting up an github ...let
| you know in detls soon .
\--

Just wanted to check if it is free and open source software, and not freeware.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Opensource UTM and Session Border Controller

2015-11-27 Thread Shakthi Kannan
Hi,

--- On Fri, Nov 27, 2015 at 2:18 PM, Gireesh thenayil rajappan nair
 wrote:
| Opensource UTM firewall  and Session Border Controller for securing VoIP
| traffic available for free download .
\--

Can you provide link to source code?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] curl error 28 connection timed-out

2015-11-26 Thread Shakthi Kannan
Hi,

--- On Thu, Nov 26, 2015 at 8:19 PM, zeal san  wrote:
| i am getting HTTP ERROR: cURL ERROR: 28: connect() timed out! when calling
| the api url through code.
\--

Which API? What are you trying to do? Please give some more info.

---
| might be the problem?
\--

You can use "-" option with curl to produce a more verbose output.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Ilugc co-ordination

2015-11-25 Thread Shakthi Kannan
Hi,

--- On Wed, Nov 25, 2015 at 11:30 PM, Sahasranaman M S  wrote:
| You sent the meet invitation last time,  I was wondering if you are
| planning to continue?
\--

As a volunteer, yes.

---
| If that's so,  my offer to coordinate on a temporary
| or permanent basis is not required.
\--

These are better discussed in our monthly meets amongst people who attend.

---
| I noticed that the website has not been updated since June.  I would be
| happy to update the website with meeting time and list of talks a couple of
| days before the meeting.
\--

Thanks for volunteering. You might want to contact Shrini (in CC).

Regards,

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Ilugc co-ordination

2015-11-25 Thread Shakthi Kannan
Hi,

--- On Tue, Nov 24, 2015 at 2:56 PM, Thyagarajan தியாகராஜன்
 wrote:
| Those were not proposals, but a suggestion.
\--

You lost me there!

---
| please do not discredit my work.
\--

Nobody spoke about your work.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] Ilugc co-ordination

2015-11-24 Thread Shakthi Kannan
Hi,

--- On Thu, Nov 12, 2015 at 5:39 PM, Thyagarajan தியாகராஜன்
 wrote:
| Some of us proposed to democratically elect a volunteer and a name was
| proposed and it was some how not materialized even when a youngster came
| forward.
\--

The first thing one should do when a volunteer moves on, is to make
sure that you step up and ensure that the monthly meet actually
happens ...

---
| I would like to reiterate the mechanism and allow a candidate to be
| democratically elected.
\--

... and not send proposals.

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] Monthly meet ILUGC - Saturday, 21 November, 2015

2015-11-19 Thread Shakthi Kannan
Hi,

Indian Linux Users Group, Chennai [ ILUGC ] is spreading awareness on
Free/Open Source Software (F/OSS) in Chennai since January 1998.

We usually meet on the second Saturday of every month, and the
sessions consist of technical talks and discussions. For this month,
we shall meet on Saturday, 21st November 2015 at 1500 IST.

Venue: Classroom No 1,
 Aerospace Engineering,
 Near Gajendra Circle,
 IIT Madras.
 Link for the Map: http://bit.ly/iitm-aero

Time: 1500-1800 IST

Talk 1

Topic: Contributing to LibreOffice - Calc (III)

Speaker: Sahasranaman M S

Duration: 30 mins

Description:
- How to select a bug to work on
- Enhancement description
- Searching LO codebase

About me:  I work for Libre Data Consultancy Services (www.ldcs.co.in)

Talk 2

Topic: Project Euler

Speaker: Shakthi Kannan

Duration: 30 Minutes

Description:  Simple computational problems for participants to solve
in 10 minutes. You can use pen/pencil and a paper, or a laptop or any
other machine. Please bring your solutions from the previous meet-up.
We can review it before proceeding to a newer challenge.

About me: Shakthi Kannan is a Free Software enthusiast who blogs at
shakthimaan.com.

The floor will be open after these sessions for any discussions or
lightning talks.

Entry is free.

SK

P.S.: I checked with few folks from IIT-Madras, and they said that
there isn't much water logging in the campus.

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Monthly meet ILUGC - Saturday, 21 November, 2015

2015-11-19 Thread Shakthi Kannan
Hi,

--- On Wed, Nov 18, 2015 at 7:34 PM, Sahasranaman M S  wrote:
| About me:  I work for Libre Data Consultancy Services (www.ldcs.co.in)
\--

In a community, the focus is more on which Free and Open Source
Software (F/OSS) project you are contributing to. The above could have
been written as a "contributor to the LibreOffice project".

It doesn't matter whether one is a President, or Vice-President or CTO
in a company. Everyone is a volunteer here.

Regards,

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Master and Slave configuration in mysql

2015-11-16 Thread Shakthi Kannan
Hi,

--- On Mon, Nov 16, 2015 at 6:34 PM, Gls
 wrote:
|  How to configure the master and slave configuration in mysql..?
\--

Please use a search engine (like DuckDuckGo or Google) before posting
such questions. For a start:

  https://dev.mysql.com/doc/refman/5.7/en/replication-howto.html

  https://www.howtoforge.com/mysql_database_replication

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


  1   2   3   4   5   6   7   8   9   >