Installing and configuring squid take just 5 minutes maximum.
Installing
root@d:~$ apt-get install squid
and squid is installed, now all we need is to just add and change few options in configuration file.
Path to squid configuration is
/etc/squid/squid.conf
Open configuration file and add your ip
acl myip src xxx.xxx.xxx.xxx
If you want to add a complete ip range then you can use
acl myip src xxx.xxx.xxx.xxx/24
After that add... [ Continue reading... ]
Screen ... It let you have multiple virtual windows in one physical terminal session, and very necessary to use if you are compiling remotely and your internet connection is not reliable.
1) Download latest RPM
http://www.rpmfind.net/linux/rpm2html/search.php?query=screen
2) Install screen dependencies
#yum -y install ncurses-devel texinfo pam-devel libtool
3) Install screen
#rpmbuild --rebuild screen-4.0.2-5.src.rpm
#rpm -ivh... [ Continue reading... ]
Shore line firewall known as "Shorewall", it is a very high level firewall and very easy to install and ocnfigure
How to install :-
sudo apt-get install shorewall
configuring shorewall startup service :-
nano /etc/default/shorewall
#Now simply change the line below from 0 to 1
startup = 0
to
startup = 1
#save, and exit.
Shorewall configuration files are stored in two separate places
/etc/shorewall stores all the program... [ Continue reading... ]