[Ilugc] Learn PHP in Tamil - Ebook

2016-02-02 Thread Shrinivasan T
Kaniyam.com team is happy to release an Ebook on PHP in Tamil.

Get your copy at
http://www.kaniyam.com/learn-php-in-tamil-ebook/

For epub, mobi, 6 inch PDF versions to read in handheld devices
http://freetamilebooks.com/ebooks/learn-php-in-tamil/

-- 
Regards,
T.Shrinivasan


My Life with GNU/Linux : http://goinggnu.wordpress.com
Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com

Get Free Tamil Ebooks for Android, iOS, Kindle, Computer :
http://FreeTamilEbooks.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


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

2016-02-02 Thread JITHIN K
Hi All,

I configured VSFTPD over SSL but failed with "Received TPL alert from
Server.Handshake failed (40)" while accessing from FTP client (Filezilla).
FTP without SSL is working.

*Steps followed*
1. Created self signed certificate.
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout
/etc/ssl/ftp.key -out /etc/ssl/ftp.crt

2. Configuration in  vsftpd.conf

ssl_enable=YES
debug_ssl=YES
allow_anon_ssl=NO
force_local_data_ssl=YES
force_local_logins_ssl=YES
ssl_tlsv1=YES
ssl_sslv2=NO
ssl_sslv3=NO
rsa_cert_file=/etc/ssl/ftp.crt
rsa_private_key_file=/etc/ssl/ftp.key

3. vsftp logs shows ""SSL_accept failed: error:1408A0C1:SSL
routines:SSL3_GET_CLIENT_HELLO:no shared cipher"
"

4. netstat -plnt shows , vsftpd is listening on 21.

5. Used URL , ftpes://ftpserverip via Chrome browser and created a site
manager in filezilla with,
Host : ftpserverip
Protocol : ftp
Encryption : Require explicit FTP over TLS
Logon type : Ask for password.

But failed with ""Received TPL alert from Server.Handshake failed (40)"

Could you please tell me if you have any suggestion.


FTP package : VSFTPD 2.3.x
OS :Ubuntu 12.04

Regards,
Jithin K
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Rupee Symbol

2016-02-02 Thread Sahasranaman M S


On Tuesday 02 February 2016 10:39 PM, Arun Khan wrote:
> I guess, the question is about how to have the ₹ symbol mapped to a key.
> So when you "type" that key, it will output the ₹ symbol just like the
> $ on an US keyboard.

I guess on most machines,  if we have English (India) keyboard 
installed,  the right Alt + 4 is the ₹ sign.  Just like Shift + 4 is the 
$ sign.
___
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


[Ilugc] Monthly Meet on 13th Feb 2016

2016-02-02 Thread Raman Pandarinathan
Dear all,

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.

Next monthly meet is scheduled  on Saturday, Feb 13th 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.


Raman.P
-- 
blog:http://ramanchennai.wordpress.com/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Rupee Symbol

2016-02-02 Thread Arun Khan
On Mon, Feb 1, 2016 at 4:45 AM, Rengaraj D  wrote:
> On 1 February 2016 at 16:00, Abhijit Navale  wrote:
>> How to print the rupee symbol on TVS Bharat Gold Keyboard on linux.
>> I know that on linux using ubuntu font we can use a specific keyboard
>> shortcut.
>> But I wanted to know if there is any direct way to print the Rupee symbol
>> in linux which is present on TVS Bharat Gold keyboard.
>> I am using Centos and Ubuntu (VM).
>
> I am not sure INR symbol work specific with keyboard.
> Bur You can try open a terminal and type * 2 0 b 9.*
> This will display INR symbol on stdout
> ___

Indeed the above sequence will give you the ₹ symbol in the text.

I guess, the question is about how to have the ₹ symbol mapped to a key.
So when you "type" that key, it will output the ₹ symbol just like the
$ on an US keyboard.

@OP, please confirm if I understood your query.

-- Arun Khan
___
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-02 Thread Arun Khan
On Tue, Feb 2, 2016 at 4:28 PM, JITHIN K  wrote:
> Hi All,
>
> 2. Configuration in  vsftpd.conf
>
> ssl_enable=YES
> debug_ssl=YES
> allow_anon_ssl=NO
> force_local_data_ssl=YES
> force_local_logins_ssl=YES
> ssl_tlsv1=YES
> ssl_sslv2=NO
> ssl_sslv3=NO
> rsa_cert_file=/etc/ssl/ftp.crt
> rsa_private_key_file=/etc/ssl/ftp.key
>
> 3. vsftp logs shows ""SSL_accept failed: error:1408A0C1:SSL
> routines:SSL3_GET_CLIENT_HELLO:no shared cipher"

BTW, I copy/pasted the above string and uncle Google listed a possible solution

  go to the
bottom of the blog.

Did you try this yourself?

-- Arun Khan
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] Accidentally replied to digest messages in hurry

2016-02-02 Thread Abhijit Navale
Sorry for that.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines