[Ilugc] Disabling ETag in httpd

2014-12-04 Thread Zico
Hello Gurus,

Can you please help me anyhow on how it's possible to disable ETag in httpd
of CentOS6.x? I tried this (**) but nothing is happening.

(**)
http://www.linuxask.com/questions/turn-off-etag-in-apache

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


[Ilugc] Creating a Virutalbox compatible VM from raw files

2014-05-19 Thread Zico
Hello everyone,

First off, please pardon me if this is *not* the right place to ask such
question but I am not sure with which words I can even google on this
issue :-(

I want to create a VHD / VDI / VMDK image from raw file system. Is it
possible?


That means, I have the total file system as tarball, now I want to create
some VirtualBox compatible image from that raw file system. Is it even
possible?

Any kind of help or hint is highly appreciable.

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


Re: [Ilugc] user lost it's sudo access after changing hostname

2014-05-07 Thread Zico
On Wed, May 7, 2014 at 1:38 AM, Arun Khan knu...@gmail.com wrote:

 On Wed, May 7, 2014 at 3:02 AM, Zico mailz...@gmail.com wrote:
  Hello everyone,
 
  In one of my centOS system, lately I changed it's hostname and my user
 lost
  it's sudo rights. I tried to add this user again with usermod -a -G wheel
  test_user and with visudo I commented out %wheel  ALL=(ALL)  ALL but
  nothing is changing.
 
  Any suggestion?
 

 Along with host name changes, did you also play around with SELinux?


Hmmm... SELinux; it should be disabled; I will check. But awesome point,
Arun.

Sathya, thanks a bunch for your steps. I will try.

Arun and Sathya, thanks a lot for your responses. I will let you know the
status.



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




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


[Ilugc] user lost it's sudo access after changing hostname

2014-05-06 Thread Zico
Hello everyone,

In one of my centOS system, lately I changed it's hostname and my user lost
it's sudo rights. I tried to add this user again with usermod -a -G wheel
test_user and with visudo I commented out %wheel  ALL=(ALL)  ALL but
nothing is changing.

Any suggestion?

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


[Ilugc] Continuous increment of tomcat process

2013-08-07 Thread Zico
Hello everyone,

I am facing a strange situation in my system ( CentOS6.4 ). It is
running a Shibboleth IdP. I never faced such issue before.
Tomcat / wrapper processes are always increasing and at last it is
resulting my server outage with 'java.lang.OutOfMemoryError error.
I increased my wrapper -Xmx value to 2048M; situation is same yet.

I killed all java process one hour back and situation was:
[root@myTest ~]# ps -eLf | grep tomcat | wc -l
93

Right now, after 50 mins:

[root@myTest ~]# ps -eLf | grep tomcat | wc -l
518

Any suggestion is appreciate.

Thanks in advance!

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


Re: [Ilugc] jQuery UI drag and drop

2013-07-01 Thread Zico Mohib
On Mon, Jul 1, 2013 at 1:45 AM, Girish Venkatachalam
girishvenkatacha...@gmail.com wrote:
 I will now get to the jQuery UI project which adds a lot of
 interesting functionality to the jQuery core engine.

 This is a demo I copy pasted from it.

 http://awrdev.g3tech.in/jquery_tutorials/ui-dragdrop.html

Great one again!

One issue though: I can drag any box anywhere; that means, If I get
the upper box into lower drop zone; it is achievable; though lower
drop zone is not showing me Dropped message.

That's true for other one as well.



 Please look at the source.

 !doctype html
 html lang=en
 head
 meta charset=utf-8
 titlejQuery UI Droppable - Visual feedback/title
 link rel=stylesheet href=/css/jquery.ui.all.css
 link rel=stylesheet href=/css/demos.css

 script src=/jquery/jquery.min.js/script
 script src=/jquery/jquery.ui.core.js/script
 script src=/jquery/jquery.ui.widget.js/script
 script src=/jquery/jquery.ui.mouse.js/script
 script src=/jquery/jquery.ui.draggable.js/script
 script src=/jquery/jquery.ui.droppable.js/script
 style
 #draggable, #draggable2 { width: 90px; height: 90px; padding:
 0.5em; float: left; margin: 10px 10px 10px 0; }
 #droppable, #droppable2 { width: 120px; height: 120px;
 padding: 0.5em; float: left; margin: 10px; }
 h3 { clear: left; }
 /style
 script
 $(function() {
 $( #draggable ).draggable();
 $( #droppable ).droppable({
 hoverClass: ui-state-active,
 drop: function( event, ui ) {
 $( this )
 .addClass( ui-state-highlight )
 .find( p )
 .html( Dropped! );
 }
 });

 $( #draggable2 ).draggable();
 $( #droppable2 ).droppable({
 accept: #draggable2,
 activeClass: ui-state-hover,
 drop: function( event, ui ) {
 $( this )
 .addClass( ui-state-highlight )
 .find( p )
 .html( Dropped! );
 }
 });
 });
 /script
 /head
 body

 h3Feedback on hover:/h3

 div id=draggable class=ui-widget-content
 pDrag me to my target/p
 /div

 div id=droppable class=ui-widget-header
 pDrop here/p
 /div

 h3Feedback on activating draggable:/h3

 div id=draggable2 class=ui-widget-content
 pDrag me to my target/p
 /div

 div id=droppable2 class=ui-widget-header
 pDrop here/p
 /div

 div class=demo-description
 pChange the droppable's appearance on hover, or when the droppable
 is active (an acceptable draggable is dropped on it).
   Use the codehoverClass/code or codeactiveClass/code options
 to specify respective classes./p
 /div
 /body
 /html

 -Girish

 --
 Gayatri Hitech
 http://gayatri-hitech.com
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
 ILUGC Mailing List Guidelines:
 http://ilugc.in/mailinglist-guidelines



--
-
Kind Regards,
Zico
Lead Support Engineer
Gluu, Inc.
http://www.gluu.org/
supp...@gluu.org
office: +1 646-810-8761
mobile: +880 172-8029766
schedule your support conf call here:
http://gluusupport.youcanbook.me/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] simple jquery clock

2013-06-28 Thread Zico
On Thu, Jun 27, 2013 at 10:37 PM, Girish Venkatachalam
girishvenkatacha...@gmail.com wrote:
 is here:

 http://awrdev.g3tech.in/jquery_tutorials/


[ ... ]

Nice tutorial, Girish!

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


Re: [Ilugc] Fwd: Help:Ldap configuration in apache 2.2(redhat 6)

2013-02-11 Thread Zico
On Mon, Feb 11, 2013 at 7:51 PM, hari prasadh hariprasad...@gmail.comwrote:

 I have enable debug log in apache.
 It is throwing error as
 Stopping httpd:[  OK  ]
 Starting httpd: [Mon Feb 11 19:19:56 2013] [debug] util_ldap.c(1841): LDAP:
 SSL verify server certificate - FALSE
 [Mon Feb 11 19:19:56 2013] [debug] mod_authnz_ldap.c(1105): [29033]
 auth_ldap url parse: `ldap://
 cts.com:389/dc=cts,dc=com?sAMAccountName?sub?(objectClass=*)', Host:
 cts.com:389, Port: 389, DN: dc=cts,dc=com, attrib: sAMAccountName, scope:
 subtree, filter: (objectClass=*), connection mode: not using SSL


Hi HariPrasadh,

here are two points:

1. SSL verify server certificate - FALSE
2. connection mode: not using SSL

You might need to look at your ldap configuration; I believe, it is
checking for SSL Certificate / port: 636 somewhere.






 Please somebody help me out on this.

 Regards,
 HariPrasadh


 -- Forwarded message --
 From: hari prasadh hariprasad...@gmail.com
 Date: Sun, Feb 10, 2013 at 9:37 AM
 Subject: Help:Ldap configuration in apache 2.2(redhat 6)
 To: ilugc@ae.iitm.ac.in


 Hi Everyone,

 I have done a setup like redirecting the request from port 8080 to 80. and
 configured a ldap over there as below:

 i have changed /etc/httpd/conf/httpd.conf

 VirtualHost *:80
 ServerAdmin hariprasadh.balasubraman...@xyz.com
 DocumentRoot /var/www/html
 ServerName (hostname given correctly)
 ErrorLog /var/log/error.log
 Location /sss
  AuthBasicProvider ldap
  AuthType Basic
  AuthzLDAPAuthoritative off
  AuthName Enter ur AD username and password
  AuthLDAPURL 
 ldap://xxx.com:389/OU=yyy,DC=zzz,DC=aaa?sAMAccountName?sub?(objectClass=*)
 
  AuthLDAPBindDN emailid
  AuthLDAPBindPassword password
  require valid-user
 /Location
 ProxyPass /sss http://ipaddr:8080/sss
 ProxyPassReverse /sss http://ipaddr:8080/sss
 /VirtualHost
  When i see my error log,it is as below


 [Sun Feb 03 19:04:34 2013] [error] Exception KeyError:
 KeyError(140574763460576,) in module 'threading' from
 '/usr/lib64/python2.6/threading.pyc' ignored
 [Sun Feb 03 19:04:34 2013] [error] Exception KeyError:
 KeyError(140574763460576,) in module 'threading' from
 '/usr/lib64/python2.6/threading.pyc' ignored

 and i have changed the referals off in /etc/openldap/ldap.conf

 can somebody help me out whether the configuration is right ?
 Suggest me the right solution..

 Apart from that i have done authentication by kerberos,it works and again i
 have to bother for authorization,becoz it has to be done in ldap ( group
 based authorization.)
 i want to allow one particular group to access my url

 how to enable the debug mode in apache to see the error log clearly.

 Low priority:
 Redirecting the request from 80 to 443 in apache

 --
 Thanks  Regards,
 HariPrasadh



 --
 Thanks  Regards,
 HariPrasadh
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] my old jQuery talk

2012-12-04 Thread Zico
On Tue, Dec 4, 2012 at 12:01 PM, Girish Venkatachalam 
girishvenkatacha...@gmail.com wrote:

 Delivered in the december month meet of 2010 or 2011. Not sure.

 http://spam-cheetah.com/Misc/pdf/jquery.pdf


Beautiful! Thanks a lot, Girish! :)
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] some sockets

2012-10-17 Thread Zico
On Wed, Oct 17, 2012 at 8:12 PM, Girish Venkatachalam 
girishvenkatacha...@gmail.com wrote:


 Learning a programming language is fun if you start with sockets. The
 utility of sockets are
  so high and of practical use that this will keep you engaged sparing
 you the boredom and
  effort of knowledge acquisition.


Great! Waiting then! :)

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] How does download accelerator work?

2012-06-01 Thread Zico
On Fri, Jun 1, 2012 at 9:29 AM, Girish Venkatachalam 
girishvenkatacha...@gmail.com wrote:

 A download accelerator speeds up the download but prevents others from
 using the bandwidth fairly but still
  gets the job done for you. It is very useful just like Bittorrent or
 other p2p technology.


[ .. ]

Really fantastic! Thanks Girish. :)

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Trying to Install and config OpenLdap in GNU Linux

2012-05-31 Thread Zico
On Thu, May 31, 2012 at 2:53 PM, vijayaraghavan seshan 
msvraghavan2...@gmail.com wrote:

 Thanks Bala for the info...I got the same error after adding verbosity
 not much error information retrieved.


 # ldapadd -x -v -D cn=manager,dc=pa-wiki-01,dc=com -W -f
 /etc/openldap/pa-wiki-01.ldif
 ldap_initialize( DEFAULT )
 Enter LDAP Password:
 warning: no attributes to add (entry=dc=pa-wiki-01,dc=com
 dc:pa-wiki-01description: LDAP Admin   objectClass: dcObject
 objectClass: organizationalUnit   ou: rootobjectdn: ou=People,
 dc=pa-wiki-01,dc=com   ou: People   description: Users of pa-wiki-01
  objectClass: organizationalUnit)
 adding new entry dc=pa-wiki-01,dc=com   dc:pa-wiki-01description:
 LDAP Admin   objectClass: dcObject   objectClass: organizationalUnit
 ou: rootobjectdn: ou=People, dc=pa-wiki-01,dc=com   ou: People
 description: Users of pa-wiki-01objectClass: organizationalUnit
 modify complete
 ldapadd: Operations error (1)
additional info: 04DC: LdapErr: DSID-0C090BE8, comment: In
 order to perform this operation a successful bind must be completed on
 the connection., data 0, v1db1


I am not sure about OpenLDAP, but where is -b base in command?


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Simple VPN tutorial

2012-04-27 Thread Zico
On Fri, Apr 27, 2012 at 2:02 PM, Girish Venkatachalam 
girishvenkatacha...@gmail.com wrote:

 What is a VPN?


[ ... ]

Nice tutorial. Really appreciable. Much clear and better than other books
or random sites. Hoping that, you won't shut it down. :)


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] why embedded Linux not having swap partition.

2012-03-28 Thread Zico
On Wed, Mar 28, 2012 at 3:35 PM, Balaji Foss balajig.f...@gmail.com wrote:

 Swap memory is concerned with paging.
 http://en.wikipedia.org/wiki/Paging http://en.wikipedia.org/wiki/Paging

 Paging is part of Virtual Memory. Page tables maintain the mapping between
 the Virtual Memory and the Physical Memory.

 You have virtual memory in embedded system.

 Embedded systems generally dont have Virtual Memory because the access
 times are non deterministic.


Interesting. :)

I am sorry, but, what does it means by access times are non deterministic?
Pardon me, I don't have any knowledge on Embedded system architecture. :)

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] why embedded Linux not having swap partition.

2012-03-28 Thread Zico
On Wed, Mar 28, 2012 at 4:54 PM, Raja Subramanian rajasuper...@gmail.comwrote:

 On Wed, Mar 28, 2012 at 3:45 PM, Zico mailz...@gmail.com wrote:
  I am sorry, but, what does it means by access times are non
 deterministic?
  Pardon me, I don't have any knowledge on Embedded system architecture. :)

 non deterministic is CS lingo for unpredictable. Assume you are accessing
 a memory address, if it's in physical RAM you can read/write it in a few
 nano
 seconds. But if the kernel has moved this page to swap it takes
 several milliseconds
 to access the page and the response time of your application suffers.


[  ]


Thanks a lot, Raja. :)
-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] CPU load avg. high

2012-03-27 Thread Zico
Hello, one of my VM is running CentOS-5.8. Most of the time, it's load avg.
is high. It has 4 gigs memory and Xeon 3.48 GHz single processor.

I am not sure, why this exact VM is showing high load all the time. Same
softwares with same configuration ( 4 gigs memory + even 2.66 GHz single
processor ) are not throwing such high load averages.

I searched processes which are running, those are necessary so I can't kill
them actually ( and moreover, these processes are running in other VMs too
).

Load Average is most of the time  1.5

Any suggestion?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] CPU load avg. high

2012-03-27 Thread Zico
On Tue, Mar 27, 2012 at 5:21 PM, Karthikeyan Venkatraman 
vgkarthick...@gmail.com wrote:

 Hi,

 Pl clarify the below points.


What is PI? or it is P+L?


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] CPU load avg. high

2012-03-27 Thread Zico
On Tue, Mar 27, 2012 at 6:09 PM, Karthikeyan Venkatraman 
vgkarthick...@gmail.com wrote:



 PI - Performance Index for esx host.


Thanks a lot. But the issue is: I don't have access to ESX host. Is there
any benchmarking tool that I can use in terminal as sudo user to check if
that CPU which is showing here is dedicated to my service?


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Get latest edited line/lines from a file

2012-02-27 Thread Zico
Hi,

Just one issue came into my mind. Is it possible to get the latest added
lines in any file? I mean, say in some configuration file, I need to know,
which lines has been added recently. So, is there any way with
vim/emacs/nano or with core linux command to accomplish that?


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Get latest edited line/lines from a file

2012-02-27 Thread Zico
On Mon, Feb 27, 2012 at 8:00 PM, Mehul Ved mehul.n@gmail.com wrote:


 AFAIK, you can't. That is why version control systems were invented.
 You could version those files to get such information.


Yes, I do use version control system. But, there it is showing me that,
this file is new, but which section of this file is new? That is my
question. :)

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Get latest edited line/lines from a file

2012-02-27 Thread Zico
On Mon, Feb 27, 2012 at 8:08 PM, Mehul Ved mehul.n@gmail.com wrote:


 Then diff should show you the changes.


Unfortunately I checked out the latest version lately. So, I don't have any
other file to diff with this new one. :)

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Get latest edited line/lines from a file

2012-02-27 Thread Zico
On Mon, Feb 27, 2012 at 9:31 PM, Rajagopal Swaminathan 
raju.rajs...@gmail.com wrote:

 Greetings,



Greetings and lot of thanks for the info. But,


  Perhaps you should install Trac too. I had done it couple of years
 back. It gives ticketing,


I am using Jira.


 wiki


Using dokuwiki.


 and all those goodies.

 And you can browse a SVN repo.


And, SVN. And this is the issue which is prohibiting me from getting the
git log . :)


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] GNU Health-1.4.1 released

2011-11-02 Thread Zico
On Tue, Nov 1, 2011 at 4:49 AM, A. Mani a.mani@gmail.com wrote:

 http://health.gnu.org/

 GNU Health 1.4.1 released !
 I'm happy to announce the release of GNU Health 1.4.1, in which we
 have incorporated support for PyPI, the Python Package Index

 This version is compatible with the latest tryton release (2.2.0). Now
 GNU Health is also a set of python modules, fully integrated to the
 Python community.


Congratulations! This is really fantastic to see such a mission critical
system with such easy colorful and understandable GUI. Congratulations
again.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Problem with gcc+CentOS 5.6

2011-09-03 Thread Zico
Hi, I need to install nginx in my CentOS-5.6 box. But it is showing some
error like:

*# sh ./configure --prefix='/opt/nginx' --with-http_ssl_module
--with-cc-opt='-Wno-error'
--add-module='/var/lib/passenger-standalone/3.0.8-x86_64-ruby1.8.7-linux-gcc4.1.2-1002/support/ext/nginx'
checking for OS
 + Linux 2.6.18-238.19.1.el5 x86_64
checking for C compiler ... found but is not working

./configure: error: C compiler gcc is not found

*I have installed gcc and g++ and these are already there:

1. gcc: /usr/bin/gcc /usr/lib/gcc /usr/libexec/gcc
/usr/share/man/man1/gcc.1.gz
2. g++: /usr/bin/g++ /usr/share/man/man1/g++.1.gz

Can anyone please help me out?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] CentOS + iptables issue

2011-08-30 Thread Zico
Hi,

I have never faced such issue before regarding IPTABLES in CentOS.

I am just trying to create a vanilla httpd site which will show It Works
or the default page of httpd.

Now, I have inserted port 80 in iptables, but yet when I *start iptables, my
page is not coming. When I stop running iptables, page is coming. *

For your understanding, I am attaching my steps here:

1. opened /etc/sysconfig/iptables

2. entered this line:
*-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j
ACCEPT
*
3. restarted iptables with:  *service iptables restart

*And, here is my iptables -L output:

*Chain INPUT (policy ACCEPT)
target prot opt source   destination
RH-Firewall-1-INPUT  all  --  anywhere anywhere

Chain FORWARD (policy ACCEPT)
target prot opt source   destination
RH-Firewall-1-INPUT  all  --  anywhere anywhere

Chain OUTPUT (policy ACCEPT)
target prot opt source   destination

Chain RH-Firewall-1-INPUT (2 references)
target prot opt source   destination
ACCEPT all  --  anywhere anywhere
ACCEPT icmp --  anywhere anywhereicmp any
ACCEPT esp  --  anywhere anywhere
ACCEPT ah   --  anywhere anywhere
ACCEPT udp  --  anywhere 2xx.x.x.xxx udp dpt:mdns
ACCEPT udp  --  anywhere anywhereudp dpt:ipp
ACCEPT tcp  --  anywhere anywheretcp dpt:ipp
ACCEPT all  --  anywhere anywherestate
RELATED,ESTABLISHED
ACCEPT tcp  --  anywhere anywherestate NEW tcp
dpt:ssh
REJECT all  --  anywhere anywherereject-with
icmp-host-prohibited
ACCEPT tcp  --  anywhere anywherestate NEW tcp
dpt:http

*Can anyone please guide me something?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Port opening confusions

2011-08-18 Thread Zico
On Thu, Aug 18, 2011 at 9:40 PM, 0 0...@0throot.com wrote:

  My client want me to open the port 10050 withing ip range of
 123.45.6.0/24and
 123.45.7.0/24

 But, IPs of those servers are different like:  111.222.3.49 - eth0
 111.222.3.50 - eth1


 There are two parts to a connection, a client ip + client port and server
 ip + server port. Now, if you are hosting a service on server hosts
 111.222.3.49, 111.222.3.50 behind a firewall, then the firewall needs to be
 configured to allow certain client IPs outside your network to connect to
 server.

 If my understanding is correct, your client uses the IP range
 123.45.6.0/24 and 123.45.7.0/24.


Actually they are using 192.168.x.x for private usage. I need to configure
these new  ( *here what he wanted: port 10050 within ip range of
172.22.4.0/24 and 172.22.5.0/24 on both of servers?) *172 range there in
server.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Port opening confusions

2011-08-18 Thread Zico
On Thu, Aug 18, 2011 at 10:38 PM, 0 0...@0throot.com wrote:

  Actually they are using 192.168.x.x for private usage. I need to configure
 these new  ( *here what he wanted: port 10050 within ip range of
 172.22.4.0/24 and 172.22.5.0/24 on both of servers?) *172 range there in
 server.


 I am sorry man, i couldn't decipher what you mean. Hopefully, someone else
 in the list can understand.


This is what he wanted:

*Open port 10050 within ip range of
172.22.4.0/24 and 172.22.5.0/24 on both of servers?

*
-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Port opening confusions

2011-08-18 Thread Zico
On Thu, Aug 18, 2011 at 10:55 PM, 0 0...@0throot.com wrote:

  This is what he wanted:

 *Open port 10050 within ip range of
 172.22.4.0/24 and 172.22.5.0/24 on both of servers?


 I understand the problem better now, can you give us the following details
 ?

 1. What OS does the server run on ?


CentOS


 2. If you are running Linux, can you share the output of the command
 iptables --list ? (you need to run the command as root)


*Chain INPUT (policy DROP)
target prot opt source   destination
ACCEPT all  --  localhost.localdomain  localhost.localdomain
ACCEPT all  --  anywhere anywhere
ACCEPT all  --  anywhere anywherestate
RELATED,ESTABLISHED
ACCEPT icmp --  anywhere anywhereicmp
destination-unreachable
ACCEPT icmp --  anywhere anywhereicmp
time-exceeded
ACCEPT icmp --  anywhere anywhereicmp
echo-request
ACCEPT tcp  --  anywhere anywheretcp dpt:https
ACCEPT tcp  --  184-xxx-xxx-xx.static.my.com  anywheretcp
dpt:mysql
ACCEPT tcp  --  example.host.com  anywheretcp dpt:mysql
ACCEPT tcp  --  performance-checking-server.company.info
anywheretcp dpt:mysql
ACCEPT icmp --  anywhere anywhereicmp echo-reply

ACCEPT tcp  --  anywhere anywheretcp dpt:ssh
LOGall  --  anywhere anywherelimit: avg
40/min burst 5 LOG level warning
DROP   all  --  anywhere anywhere

Chain FORWARD (policy DROP)
target prot opt source   destination

Chain OUTPUT (policy ACCEPT)
target prot opt source   destination

*

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Missing dependency problem with installing mod_ssl

2011-07-27 Thread Zico
Target Machine: CentOS-5.5
Package: httpd / mod_ssl

Problem: I am trying to install httpd in CentOS-5.5, but getting missing
depency problem with this.

Error:
*err: //apache/Package[mod_ssl]/ensure: change from 2.2.3-45.el5.centos.1 to
2.2.17-jason.1 failed: Could not update: Execution of '/usr/bin/yum -d 0 -e
0 -y install mod_ssl' returned 1: httpd-devel-2.2.3-45.el5.centos.1.i386
from installed has depsolving problems
  -- Missing Dependency: httpd = 2.2.3-45.el5.centos.1 is needed by package
httpd-devel-2.2.3-45.el5.centos.1.i386 (installed)
Error: Missing Dependency: httpd = 2.2.3-45.el5.centos.1 is needed by
package httpd-devel-2.2.3-45.el5.centos.1.i386 (installed)
 You could try using --skip-broken to work around the problem
 You could try running: package-cleanup --problems
package-cleanup --dupes
rpm -Va --nofiles --nodigest
*

I googled for this, but didn't find sufficient result. Can anyone please
help?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Missing dependency problem with installing mod_ssl

2011-07-27 Thread Zico
On Thu, Jul 28, 2011 at 12:45 AM, Zico mailz...@gmail.com wrote:

 Target Machine: CentOS-5.5
 Package: httpd / mod_ssl

 Problem: I am trying to install httpd in CentOS-5.5, but getting missing
 depency problem with this.

 Error:
 *err: //apache/Package[mod_ssl]/ensure: change from 2.2.3-45.el5.centos.1
 to 2.2.17-jason.1 failed: Could not update: Execution of '/usr/bin/yum -d 0
 -e 0 -y install mod_ssl' returned 1: httpd-devel-2.2.3-45.el5.centos.1.i386
 from installed has depsolving problems
   -- Missing Dependency: httpd = 2.2.3-45.el5.centos.1 is needed by
 package httpd-devel-2.2.3-45.el5.centos.1.i386 (installed)
 Error: Missing Dependency: httpd = 2.2.3-45.el5.centos.1 is needed by
 package httpd-devel-2.2.3-45.el5.centos.1.i386 (installed)
  You could try using --skip-broken to work around the problem
  You could try running: package-cleanup --problems
 package-cleanup --dupes
 rpm -Va --nofiles --nodigest
 *


Ok solved! Solution:

1. Remove current httpd
2. Install mod_ssl ( httpd-2.2.17-jason.1 installed ).


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Problem with VM guest with real IP

2011-07-20 Thread Zico
Hi,

For testing purpose, I got a domain name from dyndns.com with specific IP (
public IP of my network, ISP's ). Now, I have assigned that IP in my guest
CentOS VM NAT (eth0), but I can't connect to internet now. I think, I need
to configure this in router, but I am afraid that, I actually don't know how
to do that. Can you please bring me any link or any hint regarding that?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Bootable Arch linux ISO with firefox ( flash player + html5 video enabled )

2011-05-18 Thread Zico
On Fri, May 13, 2011 at 10:29 PM, Mehul Ved mehul.n@gmail.com wrote:


 The term you are looking for is remastering. Here's the Arch wiki page for
 remastering Arch Linux ISO
 https://wiki.archlinux.org/index.php/Remastering_the_Install_ISO

 And to automatically start applications like Firefox you will need to add
 it
 to the startup script of your chosen DE/WM. e.g. in GNOME you can add it to
 System - Preferences - Startup Applications. Or in case of fluxbox you
 can
 add it to ~/.fluxbox/startup file.


Thanks Mehul. It helped me. But, now, I am confused about one issue. Say, I
want some new software like FreeNX installed there. How can I do that in
remastering live cd? I mean, 1. Do I need to install that LiveCD in any
VMware and after that, I can add software ( by apt-get or something like
that) and then again make it iso?  2. Or, can I add software from unzipped
iso file? If this is the second one, how can I actually do it?
Any hint?
-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Private Key Generation

2011-05-13 Thread Zico
Hi, is it necessary to generate private from that server in which I will
install SSL certificate? I mean, say, I want to install SSL certificate for
my www.mysite.com, now, is it necessary that, I have to generate private key
and csr from that www.mysite.com server? Or, I can also create private key
and CSR from my local machine and then apply for crt file from any
authorized CA certificate provider?


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Private Key Generation

2011-05-13 Thread Zico
On Fri, May 13, 2011 at 6:22 PM, Girish Venkatachalam 
girishvenkatacha...@gmail.com wrote:


 You don't get your private key signed by anybody. It is private and should
  not be shown to anybody.

 You generate a keypair and the private key is encrypted with a pass phrase
  or a password.

 Now your public key is what is called the certificate. But that
 becomes a certificate
  only when it is signed by the CA's private key.

 In the case of certificate your public key is appended with a
 signature of the MD5
  or SHA1 hash of the certificate data.

 Private keys are used only for document signing and for symmetric key
 encryption
  when communicating.


Thanks Girish for you nice answer. But, I am still unclear that, from where
should I generate CSR? I mean, is it OK if I generate CSR + Private key
from my home machine ( please remember, this CSR will be for my
www.myserver.com). OR, do I need to login there in www.myserver.com and then
need to create CSR+Private key for that server? Which one?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Private Key Generation

2011-05-13 Thread Zico
On Fri, May 13, 2011 at 7:14 PM, Manokaran K manoka...@gmail.com wrote:

 If your intention is only to use SSL certificates to login to your server,
 it is not necessary to apply for certificates from CAs. You can generate
 your own public - pvt key pair in your own pc and copy the public key to
 your server.


No, actually it's for my client. My client is already a valued customers of
Verisign! :) So, I must have to get certificate from verisign and must have
to implement this in server.

So, here are the steps I am following:

1. Generate private key
2. Generate CSR
3. Apply to Verisign with this CSR
4. Get certificate from them
5. Concate CRT+Private Key
6. Re-encode into PKCS12
7. Create JKS
8. Install JKS

but then again, I am confused about one things: (1) Is it really necessary
to generate private key from their server? I mean, ssh into my client's
server, run openssl command like from their server :

openssl genrsa -des3 -out server_self.key 2048

Will it create any problem if I generate private key and csr from my
home machine? And, after that applying for certificate into Verisign
with
that CSR?


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Private Key Generation

2011-05-13 Thread Zico
On Fri, May 13, 2011 at 8:02 PM, Raja Subramanian rajasuper...@gmail.comwrote:


 No need to generate the keys on the target server.  You can generate
 it on your local PC and sign it by Verisign and install the final cert on
 the target server.


THAT'S WHAT I WANTED TO KNOW! THANKS A LOT Raja Subramanian!
Thanks a lot Girish and Manokaran for their quick and resourceful answer,
those were bonus knowledge for me. :)

Anyway, my another question is: Do I really need to install JKS there in my
client's server? I mean, I am going to follow these steps one after another:

5. Concatenation CRT and Private key ( this CRT may be Self-Signed or found
from Third Party )

6. RE-ENCODE pem file into PKCS12
7. Create JKS

As I got this documentation, I don't think, that JKS is actually necessary.
What do you say?
Link: http://community.godaddy.com/help/article/5238

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Bootable Arch linux ISO with firefox ( flash player + html5 video enabled )

2011-05-10 Thread Zico
Hi, I want to make a customized Arch Linux ISO which will have firefox with
flash player and html5 video installed in it. And, when that CD will boot,
firefox will automatically pop up on desktop. Is it possible? If it is, then
can you please bring me some link? I have googled for it, but, may be for
lacking of right word choosing I haven't get any information. Can anyone
please help me out?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] The service of Amazon EC2 (N. Virginia) region was down from yesterday

2011-04-23 Thread Zico
On Sun, Apr 24, 2011 at 1:39 AM, Rahul Sundaram methe...@gmail.com wrote:


 If you outsource your infrastructure,  a certain level of lack of
 control is inevitable. Unless you have contractual safe guards in place,
 you are left exposed.  Welcome to the cloud.


Is that problem of cloud? I mean, when one node fails.. it attracts other
nodes too to be down!!


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Opends LDAP ubuntu Client Authentication.

2011-04-19 Thread Zico
On Tue, Apr 19, 2011 at 3:49 PM, Rajesh kumar rkrajeshkuma...@gmail.comwrote:

 Has anyone worked with OpenDS, Ubuntu Client authentication.

 I have installed OpenDS server and configured it. But i am stuck up with
 client authentication.


Can you please explain a little bit more? It will help me to understand the
whole situation.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Deployment of java key store

2011-04-17 Thread Zico
On Sun, Apr 17, 2011 at 12:39 PM, Natarajan V raja...@gmail.com wrote:


 I think, you should explain the problem a little bit more in detail.
 What exactly is the server running on?

 Apache is not a Java WebSerer, and so has nothing to do with JKS.

 Tomcat, JBoss, etc... are all Java based webservers and require a JKS
 for the security.


I new to renew the cert of my server, which I renewed from CAcert.org. Here,
I want to add one that, java is there in that server anyway.
Now, I have new jks which consists of newer data and time and address of
this server. I have generated jks, now I need to deploy these jks there in
that server, may be I have to use keytool or something like that. I am not
sure.

My question is: I have those jks which consists of latest data,time, private
key of that domain and cert certificate. Now, I need to deploy this jks
there in that server ( which domain name has been renewed ). I am not sure
how can I do that, so any kind of help regarding jks implementation is
needed.


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] openssl + pkcs12 conversion

2011-04-09 Thread Zico
Hi, I have been trying to convert one of my pem file into pkcs12 format with
the command:

*openssl pkcs12 -export -in *check_key.pem *-out *outfile.pkcs12 -*name
alias

*But, I am getting the error:

unable to load private key
5957:error:0906D066:PEM routines:PEM_read_bio:bad end line:pem_lib.c:749:

I googled for this, but haven't any luck.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] openssl + pkcs12 conversion

2011-04-09 Thread Zico
On Sun, Apr 10, 2011 at 9:43 AM, Girish Venkatachalam 
girishvenkatacha...@gmail.com wrote:

 Alas. Google is no substitute for relevant domain knowledge.

 In crypto PKCS12 is the standard for signatures and certificates.

 And PEM is base64 encoded data. In order for this conversion to work
 you require to
 provide a private key to decrypt and re encrypt.

 BIO stands for Basic I/O which is used by OpenSSL for all I/O operations.

 You have to provide the private key using one of OpenSSL switches like
 -key or something.


Thanks Girish for your reply. Here, I just want to add something which may
help you all to get the actual picture of my error.
I am trying to convert my one pem file to pkcs12 format using the command,
but I am getting the error:

No certificate matches private key*
*
I am using the command:
*openssl pkcs12 -export -in *filename.pem* -inkey *
ds.server.info_privatekey.pem* -out *outfile.pkcs12* -name alias

*Here:   *1. filename.pem -- concatenated file of certificate and RSA
private key
   2. ds.server.info_privatekey.pem -- the privatekey file
   3. outfile.pkcs12 -- the desired output file. *

What should I do now?


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Linux server health checkup

2011-03-10 Thread Zico
Hi, I need some advice about our Server Down condition. The thing is: our
one development server goes down after certain times. So, what steps may be
included in order to find for what actual reason this server is behaving
like this. I am sorry that, I am not finding enough keyword to search in
google, that`s why I am asking you this question.

Actually, which services should I check first if our server goes down?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Ubuntu CD customisation help needed

2011-02-21 Thread Zico
Hi, I need some idea about Ubuntu CD customisation. I have a small training
centre where I need to provide Ubuntu live cd to my students. But, here, I
need little bit customisation in that Ubuntu CD. I want to remove install
Ubuntu 10.10 icon from my customised cd, is it possible? Actually, I do not
want my student to install this Ubuntu in my learning centre machine right
now, as they are very novice yet ( just 2 days )! So, I do not want any
curious student to double click that button and install it without prior
knowledge.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Ubuntu CD customisation help needed

2011-02-21 Thread Zico
On Tue, Feb 22, 2011 at 7:54 AM, balaji sivanath starbala2...@gmail.comwrote:


 My opinion is instead of customizing the cd you can tell them what are
 the installation types, how to install it  i think it will not take
 much time to explain it.


I am going to explain and train them about installation two weeks later,
that`s what my course training says. But, not right now. And, I am little
bit afraid that, if anyone of them became too much curious like before and
install it by themselves, they are going to destroy the hard drive
partitions and others.


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Ubuntu CD customisation help needed

2011-02-21 Thread Zico
On Tue, Feb 22, 2011 at 11:26 AM, Narendra Sisodiya 
naren...@narendrasisodiya.com wrote:



 On Tue, Feb 22, 2011 at 3:58 AM, Zico mailz...@gmail.com wrote:

 Hi, I need some idea about Ubuntu CD customisation. I have a small
 training
 centre where I need to provide Ubuntu live cd to my students. But, here, I
 need little bit customisation in that Ubuntu CD. I want to remove install
 Ubuntu 10.10 icon from my customised cd, is it possible?


 Yes, While customization, just remove using rm command.
 But for this purpose you need not to do customization. If you create a
 bootable live pendrive of ubuntu then you can just delete the icon. because
 you are running a persistent file system , that icon will not come again.


I have tried that, but I didn`t work. Say, the contents of desktops are in
/etc/skel/Desktop/ for live CD. But, I didn`t find anything there in this
directory. Then, where is the soft link of Install Ubuntu 10.10 button?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Connecting two virtual OSs in same machine

2011-02-10 Thread Zico
Hi, My host OS is: Ubuntu 10.10. One of my virtual OS is: Ubuntu 9.04 and
another one is: Ubuntu 10.04. All of these virtualisation has been completed
with Virtualbox. Now, I need to replicate those two servers, one server is
running  in Ubuntu 9.04 and another one is running in Ubuntu 10.04. Is it
possible? If yes, can you please provide me some help?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Connecting two virtual OSs in same machine

2011-02-10 Thread Zico
On Fri, Feb 11, 2011 at 6:43 AM, Girish Venkatachalam 
girishvenkatacha...@gmail.com wrote:

 I do ALL my work with qemu.

 Every qemu instance is a separate OS!

 Yes. It is amazing. Even low end atom PCs that are available for 2900
 rupees
  in Richie street supports this.

 Read my article:

 http://aplawrence.com/Girish/qemu.html

 Just start qemu like this:

 $ qemu -hda ubuntu1010.bin


[ ... ]

Thanks a lot Girish for your nice article. But, I am afraid that, I was not
able to make the actual thing clear to you, I guess.

Host: Ubuntu 10.10
Guest 1: Ubuntu 9.04
Guest 2: Ubuntu 10.04

Job: Must have to run two guests at a time. Because, two LDAP of two guests
need to replicate. Now, If I try to get the first Guest ( hostname:
mohib-laptop ) from second Guest ( hostname: zaman-laptop ), it is not
getting!

Do I need to change IP address of those both Guests? Or are there anything
which will make it possible?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] A guest speaker needed at Abacus 2011 @ ANNA UNIVERSITY

2011-01-22 Thread Zico
On Sat, Jan 22, 2011 at 12:21 PM, Narendra Sisodiya 
naren...@narendrasisodiya.com wrote:

 I won't be able to join, Please Contact Sri if anyone want to speak on
 FOSS.


I am Mohibuzzaman Zico from Dhaka, Bangladesh. I have been working in Open
Source World for last 7 years. I am really happy that, I have also
experiences of working in Education sector of Bangladesh. As for example, I
implemented DSpace ( an open source institutional repository ) and KOHA (
an open source Integrated Library Management System ) in BRAC University,
Dhaka, Bangladesh. I hope, it will be really great if I can share my
knowledge with students and associates related to Academic Institution.

-- 
Best,
Mohibuzzaman Zico
DSpace Ambassador of Bangladesh
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Nagios in virtual ubuntu

2011-01-09 Thread Zico
On Wed, Dec 29, 2010 at 12:36 PM, Arun Khan knu...@gmail.com wrote:

 Your OP described the Nagios server with IP number as 120.x.x.x, I
 presumed it was in the cloud.  However, from above post it appears you
 have these systems in some kind of a DMZ which has a public IP
 subnet and that you have a functional Nagios setup i.e. you have
 figured out your specific problem in your OP.

 http://localhost/nagios will work only when you are logged into
 desktop running the Nagios system.  From any other desktop you will
 have to give the IP/hostname.

 A clear picture of your network topology is extremely essential to
 make any suggestion.

 From the possible solutions you have mentioned:

 (a) Reverse Proxy rule is the quickest solution.

 (b) VPN will give you a lot more flexibility but also require time to
 setup and test.


[ .. ]

Thanks Arun for your nice reply. I have tried your option, but now a new
problem arises. Though my nagios is running, it`s not listening.

here is my output:

If it's running it's not listening -

z...@monitoring:~$ netstat -atpn | grep LISTEN
(No info could be read for -p: geteuid()=1000 but you should be root.)
tcp0  0 0.0.0.0:22  0.0.0.0:*
LISTEN  -
tcp0  0 0.0.0.0:80240.0.0.0:*
LISTEN  -
tcp6   0  0 :::22   :::*
LISTEN  -
tcp6   0  0 :::8024 :::*
LISTEN  -



-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] LDP installation problem

2010-12-30 Thread Zico
Hi, I have been trying to install LDAP server in one of my remote virtual
server which is running Ubuntu 10.10.  I am following this documentation:
http://www.ghacks.net/2010/08/31/set-up-your-ldap-server-on-ubuntu-10-04/

http://www.ghacks.net/2010/08/31/set-up-your-ldap-server-on-ubuntu-10-04/And,
just copy-pasted the code given here : http://pastebin.com/qGk9CzQ9

http://pastebin.com/qGk9CzQ9Here, I have changed my password, dc1=myhome
 dc2=co.uk

Then, when I run the script ldap_script.sh ( according to the documentation
), I got the following error:


Enter LDAP Password: *here, I just gave the exact password, which I gave in
passwd of the very beginning of my script*
*ldap_bind: Invalid credentials (49)*
*
*
Can you help me out?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Nagios in virtual ubuntu

2010-12-28 Thread Zico
On Mon, Dec 27, 2010 at 10:48 AM, Arun Khan knu...@gmail.com wrote:


     What is the objective i.e. what exactly are you monitoring, by
 putting your Nagios setup in the cloud?


By the way, this is a little bit messy!!! Say, I am out of office today...
so.. I cannot monitor my server because, all the time I need to use Nagios
with *http://localhost/nagios . *Is it possible to make it little bit *open*
.. say for my own purpose??

What do you suggest? Should I roll out the VPN as the next thing or use a
reverse proxy from the apache on *dev.abc.co.bd *??

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Nagios in virtual ubuntu

2010-12-26 Thread Zico
Hi, I have just installed Nagios, an open source monitoring system, remotely
in one of my remote virtual system which is running Ubuntu. But, the problem
is, I cannot launch that Nagios with http://120.x.x.x/nagios3/
Here, 120.x.x.x is the real ip of my remote virtual Ubuntu. When I tries to
get the web interface with http://120.x.x.x/nagios3/   then, this message
comes:
*
SSH-2.0-OpenSSH_5.5p1 Debian-4ubuntu4*

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Nagios in virtual ubuntu

2010-12-26 Thread Zico
On Mon, Dec 27, 2010 at 10:48 AM, Arun Khan knu...@gmail.com wrote:

     What is the objective i.e. what exactly are you monitoring, by
 putting your Nagios setup in the cloud?


Total condition of that server and other peer workstations connected to it?


 What mechanism(s) have you put in place so that every John/Jane Doe does
 not
 have access to it?


Username + Password.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Need some advice regarding LDAP system

2010-12-17 Thread Zico
On Fri, Dec 17, 2010 at 3:20 PM, Arun Khan knu...@gmail.com wrote:


 BTW, I am assuming you have a DNS server for the domain you plan to
 implement in the LDAP server.


No.  I use dnsmasq inside the office network - everything else just uses the
DNS service provided by the company I brought the domain names from.
Should we set one up then?

What are your thoughts regarding all of this operating behind a consumer
(domestic) ADSL line? Should we be considering colocating a server?


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Need some advice regarding LDAP system

2010-12-17 Thread Zico
On Fri, Dec 17, 2010 at 10:05 PM, Arun Khan knu...@gmail.com wrote:

 I do not understand why you are bringing up colocation (presumably in the
 cloud)  as an option.  IMO it is not necessary.  It would be helpful if you
 can elaborate on your network setup.



Sure.
I have a rented VPS that provides the web server and mail server. This is
provided by slicehost.

My office network is behind a NAT router and I use DYNDNS to get a domain
name to it.
I sometimes work on the move.
My office network exposes port 22 and port 80 to the outside world.
Port 22 is routed through to the domain0 on the server here, a sun X4150
RAID 5, 4GB RAM.
On this server is a virtual machine that provides the development server, on
here apache at port 80 proxies through to 8080 where tomcat is running
various services for my dev environment (hudson, nexus, jira, sonar). Port
80 from the outside world is routed to port 80 on the virtual dev server.
Apache also provides the SugarCRM service.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Need some advice regarding LDAP system

2010-12-16 Thread Zico
What is the best way to set up an LDAP server in terms of availability and
security? I have one big server in my office and also I have rented VPS from
one company. Should we use an existing server to host it from or acquire a
new VPS for it? Alternatively if we are going to be paying for many
commercial VPS's we might want to consider colocating one of my servers.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Need some advice regarding LDAP system

2010-12-16 Thread Zico
On Thu, Dec 16, 2010 at 11:00 PM, Arun Khan knu...@gmail.com wrote:


 I would suggest you familiarize yourself with LDAP concepts (O'Reilly
 title on openLDAP covers the basics) before jumping into
 implementation.  This is critical to help you plan your Directory Tree
 structure.

 openLDAP, Apache DS,  389 DS (Fedora) are some of the implementation.

  one company. Should we use an existing server to host it from or acquire
 a
  new VPS for it? Alternatively if we are going to be paying for many
  commercial VPS's we might want to consider colocating one of my servers.

 (a) How many user entries in your Directory Server?


Well I don't have a directory server outside of Crowd which is only
currently used for JIRA. I have about 5 or so users for the email systems
and most other systems have 2 users - root/admin and 'zico' as a
non-priviledged account. I may have contractors coming and going for certain
jobs and I would like to be able to add and remove permissions as needed
from one place.


(b) How many systems (*nix/Mac OS X) will bind with your LDAP server?


In terms of physical machines 2 or 3, in terms of services the ones I listed


 (c) How many MS systems (MS Domain) will bind with your LDAP server?


None



 These are some of the questions you need to answer to engineer your
 LDAP server(s).

 To distribute the connections, I would suggest configure multiple LDAP
 servers (running on guest OS in Virtual Machines) with
 replication/sync between them.


I appreciate the need for redundancy but I'm a bit short of RAM on the
office
machine at the moment,

Okay, if I set up a clean new VM inside the office network and
access to it is that the best way to proceed?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Problem with symlink

2010-11-17 Thread Zico
On Wed, Nov 17, 2010 at 10:15 PM, steve st...@lonetwin.net wrote:

 What have you got so far and where are you facing problems ? All 4 steps
 above contain the exact command you need to for the operation.


Hi Steve! Thanks for replying. It`s solved already with the command: *find /
-type l -exec ls -l {} \;*

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT] Job Proposal

2010-11-11 Thread Zico
On Thu, Nov 11, 2010 at 6:10 PM, vipin narayanan vipin.na...@gmail.comwrote:

 Hi ,

 There is an opening for Linux system administrator in my company (
 www.spectrumme.com) , if any of you are willing to apply , please send
 your
 resume to my mail address .


Is it possible to work from abroad? I mean I am from Dhaka, Bangladesh.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Linux scripting: need some idea

2010-11-01 Thread Zico
On Mon, Nov 1, 2010 at 9:31 AM, Mehul Ved mehul.n@gmail.com wrote:


 Does this help you?

 $ touch bv_001.3gp

 $ basename bv_001.3gp .3gp | cut -d _ -f 2
 001

 $ FOO=`basename bv_001.3gp .3gp | cut -d _ -f 2`

 $ echo $FOO
 001

 $ echo `expr $FOO + 1`
 2


[ ... ]

Thanks a lot for the help. It gave me lot of thought.
Anyway, I have a little bit complex system here to apply these scripts. :)
Situation is:

1. I have a file named 11001_mtv_2200.3gp
2. I need to rename this file as  bv_001.3gp ... bv_002.3gp till
bv_020.3gp
3. And, also this renaming will be reverse from bv_020.3gp. When another
file after bv_020.3gp will come that new file will be named
bv_001.3gp ... bv_002.3gp and so on...

So, here I am facing jammed with:

1. How will I remove that big 1101_mtv_2200 ... and replace it with
bv_xx.3gp??

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Linux scripting: need some idea

2010-10-31 Thread Zico
On Mon, Oct 18, 2010 at 2:10 AM, Siddhesh Poyarekar  wrote:


 You're basically looking to replace the oldest file at all times,
 kinda like log rotation, so you can simply follow the logic:

 n=$(ls -1|wc -l)
 lf n  5 then
   create the n+1th file
 else
   replace the file you get with ls -1t|tail -1
 end if


I am trying to use your logic here, but It`s not working because of my
ignorance.

My script can find the file and what I need to do is:

rename my file; is there any command of mv which can rename my file which
starts with bv_001.3gp? Here, I just need to change the number, but
every other words bv and .3gp will be same? Are there any mv command
to do so??

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ffmpeg + unknown encoder h263

2010-10-30 Thread Zico
On Wed, Oct 27, 2010 at 7:15 AM, Mehul Ved  wrote:



 ffmpeg in Ubuntu doesn't have inbuilt support for amr. I guess, the
 same applies for debian. In the past I have compiled ffmpeg from
 sources, it's not too difficult.


Thanks a lot. According to your suggestion the previous 'unknown encoder
h263' is gone after compiling ffmpeg from source. But, now getting new error
with audio codec. If I use the command with codec aac, then I don`t get
any sound from my converted 3gp file:

/opt/ffmpeg-0.6.1/ffmpeg -i TV_output -s qcif -vcodec h263 *-strict
experimental -acodec aac** *-ac 1 -ar 8000 -r 25 -ab 32 -y TV_output.3gp

After using this, I can play my video but no audio.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ffmpeg + unknown encoder h263

2010-10-30 Thread Zico
On Sat, Oct 30, 2010 at 10:01 PM, Mehul Ved mehul.n@gmail.com wrote:


 See
 http://goinggnu.wordpress.com/2007/02/13/convert-avi-to-3gp-using-ffmpeg/


Thanks for providing your link. But, I have already tested that. When I went
with your command:

/opt/ffmpeg-0.6.1/ffmpeg -i Test_TV -s qcif -vcodec h263 -acodec aac -ac 1
-ar 8000 -r 25 -ab 32 -y Output_TV.3gp

Then, this error ( or not! ) comes:

*encoder 'aac' is experimental and might produce bad results.*
*Add '-strict experimental' if you want to use it.*
*
*
After that, I used that -strict experimental option and it converts
without any audio, as I mentioned in my previous email.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ffmpeg + unknown encoder h263

2010-10-30 Thread Zico
On Sat, Oct 30, 2010 at 10:20 PM, Mehul Ved mehul.n@gmail.com wrote:


 Then you can try using mp3 or amr audio codecs.


Yes, I tried earlier with mp3 but it shows,

unknown encoder 'mp3'

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ffmpeg + unknown encoder h263

2010-10-30 Thread Zico
On Sat, Oct 30, 2010 at 10:47 PM, Mehul Ved mehul.n@gmail.com wrote:


 For lame you can use libmp3lame, make sure you enabled it while compiling.


This is really frustrating I have installed libmp3lame0 from
debian-multimedia.org repo.
And, then tried the command:

/opt/ffmpeg-0.6.1/ffmpeg -i Test_TV -s qcif -vcodec h263 -acodec libmp3lame0
-ac 1 -ar 16000 -r 25 -ab 32 -y Output_TV.3gp

But, again, error:

*Unknown encoder 'libmp3lame0'*
*
*
-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ffmpeg + unknown encoder h263

2010-10-30 Thread Zico
On Sun, Oct 31, 2010 at 12:17 AM, Mehul Ved mehul.n@gmail.com wrote:



 And the acodec has to be libmp3lame, not libmp3lame0.


There is nothing called libmp3lame, but only there are (1) libmp3lame0 (2)
libmp3lame-dev

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ffmpeg + unknown encoder h263

2010-10-29 Thread Zico
On Thu, Oct 28, 2010 at 12:02 AM, Arun Venkataswamy arun...@gmail.comwrote:

 On Wed, Oct 27, 2010 at 3:05 AM, Zico mailz...@gmail.com wrote:


 You can check all the supported formats by
 ffmpeg -formats


After inserting this command, I found h263, h264 like this:

 D V D  h261
 D VSDT h263
 D VSD  h263i
 D V DT h264


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] ffmpeg + unknown encoder h263

2010-10-26 Thread Zico
Hi, I have been trying to run the ffmpeg command to convert my Mpeg file to
3gp. I have installed ffmpeg, libavcodec51, libavcodec-dev for that. But,
yet, I am getting the error when I run the command:

ffmpeg -i MELT.MPG -ab 8.85k -acodec libamr_wb -ac 1 -ar 16000 -vcodec h263
-s qcif melt.3gp

By the way, I am running Debian 5.0.4

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Correct pronunciation of vi !

2010-10-21 Thread Zico
On Fri, Oct 22, 2010 at 12:25 AM, Shrinivasan T tshriniva...@gmail.comwrote:

 Follow the link to know how to call the vi editor

 http://www.glowfoto.com/static_image/21-130004L/7885/jpg/10/2010/img4/glowfoto



hahha :D

A Patchy server!!! :D :D

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Correct pronunciation of vi !

2010-10-21 Thread Zico
On Fri, Oct 22, 2010 at 1:57 AM, Madan U Sreenivasan mada...@gmail.comwrote:

 Funny as it is - thats true...

 http://en.wikipedia.org/wiki/Apache_HTTP_Server


:D :D This is funny too!!! Why did you provide this link by the way :D
:D

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Correct pronunciation of vi !

2010-10-21 Thread Zico
On Fri, Oct 22, 2010 at 2:09 AM, Madan U Sreenivasan mada...@gmail.comwrote:

 so that you can search for the word 'patchy' :D :D :D :D :D :D


:D I know what A-Patchy means... and that`s why it made me laugh a lot!!! :D
:D

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Linux scripting: need some idea

2010-10-18 Thread Zico
On Mon, Oct 18, 2010 at 8:53 AM, Siddhesh Poyarekar 
siddhesh.poyare...@gmail.com wrote:

 On Mon, Oct 18, 2010 at 2:10 AM, Zico mailz...@gmail.com wrote:
  Thank you again. But, if I call the variable as n, the whole name of
 the
  file becomes *n. *

 I gave you the logic for it and expected that you would try to
 implement it yourself in shell script.


Thanks! Thanks a lot! Actually you gave me more than you expected! :)

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Linux scripting: need some idea

2010-10-17 Thread Zico
Hi, I need some idea regarding scripting. I need to run a script, which will
search for the (latest-1) file from a folder. Here, (Latest-1) means: this
script will find the file which is not the last edited/saved file but the
immediate previous edited/saved file of that lastest one? Is it possible?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Linux scripting: need some idea

2010-10-17 Thread Zico
On Mon, Oct 18, 2010 at 1:52 AM, Siddhesh Poyarekar 
siddhesh.poyare...@gmail.com wrote:


 Or of course,

 ls -1t | head -2 | tail -1


Thanks a lot! Now, Say, there are five files... 1 2 3 4  5. Now, I want to
rename and replace the new inserted sixth file as 1, seventh file as 2 ...
and so on. What should be my script command? By the way, there will be no
more than five modified files there!!

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Linux scripting: need some idea

2010-10-17 Thread Zico
On Mon, Oct 18, 2010 at 2:10 AM, Siddhesh Poyarekar 
siddhesh.poyare...@gmail.com wrote:

 You're basically looking to replace the oldest file at all times,
 kinda like log rotation, so you can simply follow the logic:

 n=$(ls -1|wc -l)
 lf n  5 then
   create the n+1th file
 else
   replace the file you get with ls -1t|tail -1
 end if


Thank you again. But, if I call the variable as n, the whole name of the
file becomes *n. *

**I have given my total script below which will get the file, immediate
previous one of latest one. Then, a command will be applied on that... and
after that, the new modified file will be saved in a new directory.
*
*
*cd /home/mohib/Desktop/Raw/*
*n=$(ls -1t|head -2|tail -1)*
*/opt/gpac/bin/gcc/MP4Box -hint -latm n*
*cp n /home/mohib/Desktop/Final/*
*
*
*n=$(ls -1|wc -l)*
*lf n  5 then*
*  create the n+1th file*
*else*
*  replace the file you get with ls -1t|tail -1*
*end if*

Whats wrong I have made here?
-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Debian 5.0 + network problem

2010-10-11 Thread Zico
Hi, I have been using Debian for a long time but I have never faced such
network connectivity problem before. I am facing problem like:

In on laptop of office, I installed Debian 5.0 for test purpose. Darwin
Streaming Server is running there. But, sometimes, suddenly, network stopped
it`s work!! Then, I cannot ssh or my clients ( now, my fellow team members )
cannot connect to that server.

And, If I physically plug out and then plug in that cable, it becomes ok.

What do you think, what may be the problem?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Streaming Server + Network down

2010-10-06 Thread Zico
Hi, I am facing a weird problem now a days. I am running a test streaming
server. For such issue I used Apple`s open source Darwin Streaming Server.
Here, some times ( in fact, it`s now and then now ) that server loose it`s
internet connectivity. If I restart that Debian machine, it becomes ok but
after some days, it starts the same thing again.

By the way, we are not serving live streaming, but, the streaming is serving
from hard drive contents with rtsp protocol.

Can you suggest me anything?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Linux-Windows sharing folder problem

2010-10-01 Thread Zico
Hi, I need to share a folder named check which is under /usrl/local/ tree.
I am running in Debian. I have made that folder shared. After that, we I
tried to access that folder from Windows machine, I tried to made a shared
link into that folder / machine, my root password of Debian is not
becoming effective from Windows machine. That means, when I tried to create
shared link in Windows machine and I am putting root password, it shows me
that, Wrong Password, I know that password is 100% ok.

What I need to do now? I think, I am missing some steps here. By the way, I
have installed samba in Debian box. What do you suggest me to do?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Linux-Windows sharing folder problem

2010-10-01 Thread Zico
On Fri, Oct 1, 2010 at 9:02 PM, Raja Subramanian rajasuper...@gmail.comwrote:

 1. Linux File System Heirarchy Standard does not recommend sharing
 /usr/local with Windows systems.  Read the docs on how to do this the
 correct way.


Lot of thanks for your helpful reply. Here, regarding your suggestion number
1: I know that, samba file should be in some places of /var/ftp or something
like that. But, my problem is: My Software system is running and saving it`s
data in /usr/local/check directory and that check directory need to be
accessed by my colleague who will insert new raw data there in that
directory for processing. :)


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Linux-Windows sharing folder problem

2010-10-01 Thread Zico
On Sat, Oct 2, 2010 at 9:17 AM, Girish Venkatachalam 
girishvenkatacha...@gmail.com wrote:


 Zico,

 What are you trying to do?

 Try to do something that might work. :)


That`s why I need help from you. :)

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] RTSP + 3gp in CentOS

2010-09-29 Thread Zico
Hi, I have been trying to run a 3gp file with *rtsp*. This file is in
/usr/local/movies of one CentOS machine. I cannot load that video from my
blackberry or VLC / MPlayer. It shows me the error: Unable to Load. Though
that file is there in that directory with perfect permission status.

Here is the mp4info of that file:
*
mp4info version 1.6
test_video.3gp:
TrackTypeInfo
1videoH.263, 387.400 secs, 45 kbps, 176x144 @ 15.00 fps
2audioAMR, 387.360 secs, 13 kbps, 8000 Hz
65536hintPayload (null) for track 1
65537hintPayload (null) for track 2
*

Can you suggest me what I need to do?
-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Cannot Write in FTP

2010-09-29 Thread Zico
Hi, I have just installed a FTP server for providing some files among my
students. I want to set permission in such a way that:

 (1) Anonymous user can read / copy the file but no write permission
 (2) My students who will login with their ID, will able to read / copy and
*even write in that FTP* site.

My server is CentOS 5. And, I am using vsftpd for this purpose. I am
providing my vsftpd-anon.conf file here for your kind information:

*#
# Sample anonymous FTP server configuration
#
# Mandatory directives
#
listen=YES
local_enable=YES
anonymous_enable=YES
write_enable=YES
local_umask=077
anon_upload_enable=YES
anon_root=/usr/local/movies
#chroot_list_enables=YES
#
# Optional directives
#
anon_max_rate=2048000
xferlog_enable=YES
listen_address=x.x.x.x
listen_port=21
*

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ISO of open source system software

2010-09-23 Thread Zico
On Thu, Sep 23, 2010 at 2:15 PM, Parin Sharma parin.sha...@gmail.comwrote:

 you can make Virtual Machine appliance or an ISO using TKLPatch a look at
 http://www.turnkeylinux.org/docs/tklpatch for more info!!


I am afraid to let you know that, I cannot understand it! Because, my
scenario is:

1. My Koha is installed in /usr/local/koha/
2. It needs apache2 which is installed in configured in different
directories like /etc/  ... and... /usr/..
3. Koha needs perl dependencies, so, perl language is installed and
configured in various direction.

So, my point is: how can I make ISO from various sources of directories with
turnkeylinux?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ISO of open source system software

2010-09-23 Thread Zico
On Fri, Sep 24, 2010 at 9:18 AM, Arun SAG saga...@gmail.com wrote:



 Try koha LiveCD http://mizstik.com/projects/koha-livecd/ . It is pretty
 decent.


Thanks. But, I cannot use it because, I have to add my customisations here
in my live cd for this coming workshop.


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] ISO of open source system software

2010-09-22 Thread Zico
Hi, I need to make an ISO / Live cd of my customised Koha ( Open source
integrated library management system ) for one workshop. Is it possible to
make live cd  for such customised system? Which live cd will help
participants to run Koha in their pc within one minute after inserting that
cd into cdrom?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Open Source game engine

2010-09-12 Thread Zico
Hi, I have been searching for any kind of open source graphics software
which will do some job like:

1. Flashing inserted data all over the web page. As for example: I inserted
some datas from Share Market Web Sites, some random data... those data will
produce some dancing bubble figure all over the window. Or, say those data
collaboratively produce one human figure or just tickers from bottom of
the webpage to top of the page.

2. I am not talking about Flash! I need some game engine which will play
such thing. As for example: in any game scores blinks or bumps or changes
with various colors after increment or decrement! I want something.

Is it possible with any kind of open source game engine? Or, What do you
suggest me to use?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] OpenSuse 11.2 + Chrome9 video driver

2010-09-04 Thread Zico
Hi, I am trying to use OpenSuse 11.2. My on board graphics chip is
K8M890CE/K8N890CE [Chrome 9]. I tried to get the unichrome driver for
opensuse but didn`t find any suitable drive. I also tried the Webpin (
http://packages.opensuse-community.org/ ) , which cannot give me any driver
for my Chrome 9 chip.

Is there any way to get or enable my perfect graphics?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [Tip] Fast and Clever at the command line

2010-08-21 Thread Zico
On Sat, Aug 21, 2010 at 11:18 PM, Tha.Suresh jemenisur...@gmail.com wrote:

 Get lightning fast and clever at the command line

 You can use keyboard shortcuts and other command line tricks to make
 entering commands easier and faster. You might already know about the
 ‘tab’ key which completes partial commands and even file and directory
 names.

 Here are some other keyboard shortcuts you can use within terminal:

 Ctrl-aMove to the start of the line.
 Ctrl-eMove to the end of the line.
 Alt-] x   Moves the cursor forward to the next occurrence of x.
 Alt-Ctrl-] x Moves the cursor backwards to the previous occurrence of
 x.
 Ctrl-uDelete from the cursor to the beginning of the line.
 Ctrl-kDelete from the cursor to the end of the line.
 Ctrl-yPastes text from the clipboard.
 Ctrl-lClear the screen leaving the current line at the top of the
 screen.
 Ctrl-x Ctrl-uUndo the last changes. Ctrl-_
 Alt-r Undo all changes to the line.
 Alt-  Ctrl-eExpand command line.
 Ctrl-rIncremental reverse search of history.
 Alt-pNon-incremental reverse search of history.
 !! Execute last command in history
 !abc Execute last command in history beginning with abc
 !nExecute nth command in history
 ^abc^xyz Replace first occurrence of abc with xyz in last
 command and execute it



Nice!!! Very nice!!! Thanks.


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Contents in /var/www of Debian

2010-08-17 Thread Zico
On Tue, Aug 17, 2010 at 3:45 PM, ashwin kesavan ashwin@gmail.comwrote:

 The problem is apache is listening on 127.0.0.1 instead of 192.168.1.250
 thats why you are facing this. I have faced this before and solved it.
 Look for the line called Listen
 If it is only 80 then it listens on all ip available in the machine.
 If it has some specific ip then it listens on only that ip. So you
 might be facing this problem.


I have added *Listen 8081 *and *Listen 8080 *in /etc/apache2/ports.conf  So,
total number of Listen`s are three there.

*Listen 80
Listen 8081
Listen 8080*

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Contents in /var/www of Debian

2010-08-16 Thread Zico
I am facing an annoying problem with KOHA ( Open Source Integrated Library
Management System ) OPAC modification in test server, which is
http://192.168.1.235/

As I did before, My all library sites are in /var/www/

But, when I tries to go from *http://192.168.1.235/index.php?show=aboutlib*,
it shows 404 error. But, If I put this with *
http://localhost/index.php?show=aboutlib*, it comes. I have checked apache
configuration file for hosts problem, but there is nothing there which may
create problem.

What problems may exists there?
-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] A Specialised System

2010-08-14 Thread Zico
On Sat, Aug 14, 2010 at 9:39 PM, Rajagopal Swaminathan 
raju.rajs...@gmail.com wrote:

 Greetings,


 If you are prepared to wrestle with opengroupware, Let it be.


Why is that??? :D What have we done to opengroupware?? :D

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Urgent help needed regarding Debian 5.0 release 0 server

2010-08-05 Thread Zico
On Thu, Aug 5, 2010 at 10:53 AM, Arun Khan knu...@gmail.com wrote:


 You have *not* posted any error message (if any).


Ok, I have tried with livecd in server, but the problem occurs now is:
Inpu/Output Error of /var directory, where my postgresql data files are
there.
I have retrieved pdf files but not the sql file, because it is in
/var/postgresq directory. Is there any possibility of retrieving data from
that Input/Outpu Error /var directory? Here, I want to mention that, my
RAID also crashed and the vendor changed it already.


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Urgent help needed regarding Debian 5.0 release 0 server

2010-08-05 Thread Zico
2010/8/5 சிவகுமார் மா masivaku...@gmail.com


 The dreaded question! When is the last backup you have taken?


Last week!


-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Urgent help needed regarding Debian 5.0 release 0 server

2010-08-05 Thread Zico
On Thu, Aug 5, 2010 at 3:08 AM, Arun Khan knu...@gmail.com wrote:


 I am afraid your options may be limited to going back to your last db
 backup.

 What RAID configuration were you using - RAID1, RAID5, or RAID6?


RAID5.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Urgent help needed regarding Debian 5.0 release 0 server

2010-08-05 Thread Zico
On Thu, Aug 5, 2010 at 5:01 AM, Raman.P raam...@yahoo.co.in wrote:




 With huge hard disk spaces available backing up data over network in
 another system is the best method. Haveing a cronjob do this automatically
 using ssh+rsync/rdiffbackup will give peace of mind.

 Unashamed self publicity -look here for simple tutorial

 http://ramanchennai.wordpress.com/2009/10/17/a-simple-autotmated-backup-system/


Oh! Great!! I will apply this after this disaster!!! My management is
driving road roller on me! :( :(

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Urgent help needed regarding Debian 5.0 release 0 server

2010-08-04 Thread Zico
Hi, One of my server crashed last night! It was a hardware crash,
motherboard burned! Today, my IBM local vendor changed the motherboard and
now, my Debian 5.0 release 0 is not booting! Here, the point is, I had
postgresql and mysql database there and those had lot of data. Now, I really
need to get back those data and I do not want to change my any configuration
of that server. Say, I had postgresql 8.3 installed, I need exactly
postgresql 8.3 now too. Is it possible to bring back that server with it`s
previous data?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Urgent help needed regarding Debian 5.0 release 0 server

2010-08-04 Thread Zico
2010/8/5 சிவகுமார் மா masivaku...@gmail.com


 2. You installed postgresql and mysql from source or from Debian binary?


I installed Debian from binary.


 If you can installed Debian 5.0 in another disc, install your pg
 version, mount the partitions from earlier disc, copy the data
 directory (for postgresql) to the new installation and get your data
 back


But, I have not dumped any sql file from postgresql!!



 1. Why installed Debian 5.0 is not booting? What is the error message?


I don`t know! My IBM vendor took that server today and I am going to check
that tomorrow.

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Urgent help needed regarding Debian 5.0 release 0 server

2010-08-04 Thread Zico
2010/8/5 சிவகுமார் மா masivaku...@gmail.com

 If you can install same version in another disc, you can copy the data
 directory and access data. But, it would be far easier to trouble
 shoot the booting problem recover the installation.


Thanks Sivakumar for your valuable tips. I will keep these in my mind.



-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Urgent help needed regarding Debian 5.0 release 0 server

2010-08-04 Thread Zico
On Thu, Aug 5, 2010 at 8:52 AM, Girish Venkatachalam 
girishvenkatacha...@gmail.com wrote:

 pg_dump will help you recover postgres DB.

 Moreover you can do a dump/restore with SystemliveCD with Debian.


What is SystemliveCD in Debian?

-- 
Best,
Zico
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


  1   2   3   >