How to Install SVN Server on Ubuntu 14.04

Posted by: Shailesh Posted on: May 7, 2017 Comments: 0

Here the easiest way to Install SVN Server on Ubuntu 14.04 and test with client. In this post we will install SVN Server on Ubuntu 14.04 and Apache/2.4.7 are used. The client used is Tortoise for Windows. INSTALL SVN SERVER IN UBUNTU Execute the following commands to update the Ubuntu repository list and install apache + svn. sudo apt-get update sudo apt-get install subversion apache2 libapache2-svn apache2-utils *If asked type…

Mount NFS- One server to other server

Posted by: Shailesh Posted on: April 18, 2017 Comments: 0

Mount NFS- One server to other server #Vi /etc/export # then put the folder path and accessing server IP and permissions x.x.x.x(rw) #exportfs -r # refresh export #mount -t nfs x.x.x.x:/Share// /Share/ # on server x.x.x.x

Url Redirection

Posted by: Shailesh Posted on: January 21, 2014 Comments: 0

How to redirect webpage to other webpage. Write below lines in simple notepad & save it with name “index.php”. Keep this file in Public_html folder. < ?php header( 'Location: http://url.com/' ) ; ?>

Important Linux Monitoring Command

Posted by: Shailesh Posted on: January 13, 2013 Comments: 0

1) netstat -rn 2 )netstat -plan | grep :80 | awk ‘{print $5}’ | cut -d: -f 1 | sort | uniq -c | sort -n 3) netstat -plan | grep :25 | awk ‘{print $5}’ | cut -d: -f 1 | sort | uniq -c | sort -n 4) pstree -paul 5) cd /tmp 6) rm -f dos-* sess_* .spamassassin* 7) find . -user nobody -exec rm -f ‘{}’…