[Ilugc] Free private git hosting

2013-12-09 Thread Shrinivasan T
http://codebreak.com

It provides free git hosting for private use too.
http://codebreak.com/contents/faq/about_git_hosting_service/

-- 
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 CollabNet Subversion Edge : http://www.collab.net/svnedge
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Free private git hosting

2013-12-09 Thread Manokaran K
IIRC, bitbucket.org also provides free pvt hosting for git and hg

regds,
mano


On Mon, Dec 9, 2013 at 2:21 PM, Shrinivasan T wrote:

> http://codebreak.com
>
> It provides free git hosting for private use too.
> http://codebreak.com/contents/faq/about_git_hosting_service/
>
> --
> 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 CollabNet Subversion Edge : http://www.collab.net/svnedge
> ___
> ILUGC Mailing List:
> http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
> ILUGC Mailing List Guidelines:
> http://ilugc.in/mailinglist-guidelines
>



-- 
Lord, give us the wisdom to utter words that are gentle and tender, for
tomorrow we may have to eat them.
-Sen. Morris Udall
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] Can't run inside "/bin" directory commands.Permission denied error

2013-12-09 Thread Manivel Rajendran
Hi,
  Unfortunately one of my server (Centos 6.3 -64bit ) default
permission had changed.I run any command inside "/bin", It is showing
permission denied error.

[root@server]# ls /
bash: /bin/ls: Permission denied
[root@server]# touch test
bash: /bin/touch: Permission denied

[root@server]# chmod -R 775 /bin
bash: /bin/chmod: Permission denied

[root@server]# cp -p /bin/ls /home/test
bash: /bin/cp: Permission denied
[root@iitb-mhrd manivel]#


I tried ssh also but not working

[root@backup-server ~]# ssh root@x.x.x.x
Last login: Mon Dec  9 14:41:03 2013 from x.x.x.x
/bin/bash: Permission denied
Connection to x.x.x.x closed.

Please help me to resolve this issue.


-- 


*Thanks & RegardsManivel Rajendran*
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Multiple find and replace in a text file

2013-12-09 Thread Shrinivasan T
Found some similar answer here too.
http://superuser.com/questions/618407/multiple-search-and-replace-actions-in-one-large-text-file


If you have many more search patterns, you could save them in a file
and read the substitutions from there. For example, say these are the
contents of replacements.txt:

www\.abcdef www.test.abcdef
www\.klmnop www.test.klmnop

You can then read a list of N replacements and replace them with this:

while read from to; do
  sed -i "s/$from/$to/" infile.txt ;
done < replacements.txt

NOTES:

This assumes your search strings do not contain spaces and any strange
characters need to be escaped in replacements.txt.
It will run one sed per replacement which may take a while if you have
many replacement operations.
It can deal with an arbitrary number of replacements (thousands or
millions or whatever) as long as you don't mind that it will take a
bit more time.

Another option would be to write the above as a sed script:

s/www\.abcdef/www\.test\.abcdef/g;
s/www\.kmlnop/www\.test\.klmnop/g;
s///g;
s///g;
s///g;

You can then run the script on your file and it will make all the
replacements in one go:

sed -f replace.sed infile.txt





Exploring these.

-- 
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 CollabNet Subversion Edge : http://www.collab.net/svnedge
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Can't run inside "/bin" directory commands.Permission denied error

2013-12-09 Thread Girish Venkatachalam
On Mon, Dec 9, 2013 at 3:11 PM, Manivel Rajendran  wrote:
> Hi,
>   Unfortunately one of my server (Centos 6.3 -64bit ) default
> permission had changed.I run any command inside "/bin", It is showing
> permission denied error.
>
> [root@server]# ls /
> bash: /bin/ls: Permission denied
> [root@server]# touch test
> bash: /bin/touch: Permission denied
>
> [root@server]# chmod -R 775 /bin
> bash: /bin/chmod: Permission denied
>
> [root@server]# cp -p /bin/ls /home/test
> bash: /bin/cp: Permission denied
> [root@iitb-mhrd manivel]#
>
>
> I tried ssh also but not working
>
> [root@backup-server ~]# ssh root@x.x.x.x
> Last login: Mon Dec  9 14:41:03 2013 from x.x.x.x
> /bin/bash: Permission denied
> Connection to x.x.x.x closed.
>
> Please help me to resolve this issue.
>


Try to reinstall the OS. There is some serious issue.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] Kaniyam - Release 23

2013-12-09 Thread Shrinivasan T
Happy to release the 23rd release of Kaniyam, the E magazine for
Free/Open Source Software in Tamil.

Get your copy at
http://www.kaniyam.com/release-23/

-- 
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 CollabNet Subversion Edge : http://www.collab.net/svnedge
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Can't run inside "/bin" directory commands.Permission denied error

2013-12-09 Thread Narendiran
On Tue, Dec 10, 2013 at 5:05 AM, Girish Venkatachalam
 wrote:
>
> On Mon, Dec 9, 2013 at 3:11 PM, Manivel Rajendran  
> wrote:
> > Hi,
> >   Unfortunately one of my server (Centos 6.3 -64bit ) default
> > permission had changed.I run any command inside "/bin", It is showing
> > permission denied error.
>
> >
> > Please help me to resolve this issue.
> >
>
>
> Try to reinstall the OS. There is some serious issue.
> ___


I believe SE-Linux policy is preventing you from doing it. Try disabling it.


-- 
Sincerely,

A. Narendiran

(A couple of months in the laboratory can frequently save a couple of
hours in the library.)
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] Log rotation in apache

2013-12-09 Thread hari prasadh
Hi All,

I want to know how log rotation happens in apache
if rotated then where we can find rotated log files.
Please help to get the old log files for apache.it is not present in
/etc/httpd/logs/

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


Re: [Ilugc] Can't run inside "/bin" directory commands.Permission denied error

2013-12-09 Thread Manivel Rajendran
Hi,

   Thanks for your reply. I have resolved this issue.
First I entered Rescue mode then checked all the directory permission.

Issue :
"/bin" and "/lib64" both directory permission  has been changed
( 755 to 644).

Solution :

 I have changed above mentioned directory permission from 644
to 755.



On Tue, Dec 10, 2013 at 9:44 AM, Narendiran  wrote:

> On Tue, Dec 10, 2013 at 5:05 AM, Girish Venkatachalam
>  wrote:
> >
> > On Mon, Dec 9, 2013 at 3:11 PM, Manivel Rajendran 
> wrote:
> > > Hi,
> > >   Unfortunately one of my server (Centos 6.3 -64bit ) default
> > > permission had changed.I run any command inside "/bin", It is showing
> > > permission denied error.
> >
> > >
> > > Please help me to resolve this issue.
> > >
> >
> >
> > Try to reinstall the OS. There is some serious issue.
> > ___
>
>
> I believe SE-Linux policy is preventing you from doing it. Try disabling
> it.
>
>
> --
> Sincerely,
>
> A. Narendiran
>
> (A couple of months in the laboratory can frequently save a couple of
> hours in the library.)
> ___
> ILUGC Mailing List:
> http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
> ILUGC Mailing List Guidelines:
> http://ilugc.in/mailinglist-guidelines
>






*Thanks & RegardsManivel Rajendran.*
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Log rotation in apache

2013-12-09 Thread Ganesh Hariharan
not sure which host flavour of Unix/Linux you use, try in the path
/var/log/apache*

later


On Tue, Dec 10, 2013 at 10:56 AM, hari prasadh wrote:

> Hi All,
>
> I want to know how log rotation happens in apache
> if rotated then where we can find rotated log files.
> Please help to get the old log files for apache.it is not present in
> /etc/httpd/logs/
>
> --
> Thanks & Regards,
> HariPrasadh
> ___
> 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


Re: [Ilugc] Can't run inside "/bin" directory commands.Permission denied error

2013-12-09 Thread Raman Pandarinathan
On 12/10/13, Manivel Rajendran  wrote:
> Hi,
>
>Thanks for your reply. I have resolved this issue.
> First I entered Rescue mode then checked all the directory permission.
>
> Issue :
> "/bin" and "/lib64" both directory permission  has been changed
> ( 755 to 644).
>
> Solution :
>
>  I have changed above mentioned directory permission from 644
> to 755.

You should take some extra care while fiddling with /bin or /sbin/. Do
no set blindly 755. Certain files like su, mount require set user id
also. Please compare with another clean install and then set
permission.

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] Can't run inside "/bin" directory commands.Permission denied error

2013-12-09 Thread Manivel Rajendran
Yes. i did it in the same way.( as you specified above in mail)


On Tue, Dec 10, 2013 at 11:51 AM, Raman Pandarinathan wrote:

> On 12/10/13, Manivel Rajendran  wrote:
> > Hi,
> >
> >Thanks for your reply. I have resolved this issue.
> > First I entered Rescue mode then checked all the directory permission.
> >
> > Issue :
> > "/bin" and "/lib64" both directory permission  has been
> changed
> > ( 755 to 644).
> >
> > Solution :
> >
> >  I have changed above mentioned directory permission from 644
> > to 755.
>
> You should take some extra care while fiddling with /bin or /sbin/. Do
> no set blindly 755. Certain files like su, mount require set user id
> also. Please compare with another clean install and then set
> permission.
>
> 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
>



-- 


*Thanks & RegardsManivel Rajendran*
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] Call for Speakers - December Meet

2013-12-09 Thread Shanthakumar
Friends,

We have our monthly meet on December 14,

Reply here if you are interested in giving a talk.

Provide with the following details.
Topic
Description
Links
Duration
About Yourself

Thanks.

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


[Ilugc] to conduct Workshop at hindustan university

2013-12-09 Thread Rameshkumar Krishnamoorthy
Dear ALL

Warm wishes and Greetings

I wish to conduct one day workshop related to open source programming..

Main objective of this workshop is to be

How to edit/ modify the existing code in Open source software.. (any s/w)

I need hands on training in this.. to demonstrate everything.

in this similar, i like to establish open source community in our campus..
any can help in these regards?
Please...

Thanks in Advance.

regards
Dr.K.Rameshkumar
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines