Tag Archives: linux

Linux Grep – how to show only filenames with matches

Tweet Voila! find . -name \*.php | xargs -n 10000 grep -snH “SOME_SEARCH_TERM”| cut -f1 -d’:’

Don’t run PPTP and Squid on mission critical Linux boxes

Tweet Apparently PPTP does a lot of disk IO… and it can lock up your Linux server. *sigh* Learned the hard way. To remove these services… /etc/init.d/pptp stop /etc/init.d/cron stop update-rc.d -f pptp remove update-rc.d -f cron remove

How to set up PPTP VPN on Ubuntu Linux

Tweet Ah jyeeah.. 1) http://forums.bit-tech.net/showthread.php?t=132029 … and if you have problems: 2) http://www.linode.com/forums/viewtopic.php?p=23695