How to Search TEXT in files
#grep -r “text name” * (if you give star it will search on all files located on system) OR #grep -r “text name” /root/file. (Path of file in which the … Continue Reading →
A Pandit of Server Technologies
#grep -r “text name” * (if you give star it will search on all files located on system) OR #grep -r “text name” /root/file. (Path of file in which the … Continue Reading →
Before you can compile ices you need the libshout library. First download it: # cd /usr/src/icecast # wget http://downloads.us.xiph.org/releases/libshout/libshout-2.3.1.tar.gz Then extract the tar file and change into the new directory: … Continue Reading →
This tutorial explains creating your own streaming audio server with Icecast (OGG/MP3). Icecast was designed to stream any audio file if a appropiate streaming client is available. For OGG/Vorbis you … Continue Reading →
Authentication through Htaccess #Shell> vi .htaccess AuthUserFile /public_html/private/.htpasswd AuthName “Secret Stuff” AuthType Basic require valid-user Authentication for Single File access on Apache (Linux) through htaccess Edit httpd.conf file and add … Continue Reading →