Pages

Showing posts with label programs. Show all posts
Showing posts with label programs. Show all posts

Wednesday, April 16, 2014

What Programs are Accessing the Internet

Computer

You only have a couple of websites open on userr screen and yet the data activity light of the modem / router is constantly flashing indicating that one or more programs are actively uploading or geting data from the Internet.

How can user easily find out which programs on userr computer are accessing the Internet and what websites are they connecting to?




You have quite a few options. If user are on Windows 7 or Vista, user can use the built-inPerformance monitor utility to see a list of all running processes that are currently accessing the Internet.
Alternatively, if user are on a different version of Windows or want something less complex, try TCPEye 1.0. This is a free network monitoring utility that creates a self-updating list of all processes that are currently using userr network connection.
What makes TCPEye a bit different is that it also lists the websites / servers that the programs are communicating with and the location (country) where those servers are located. Most other network monitoring tools only mention IP addresses and thus it is up to the user to determine the underlying server name.
If user notice an unwanted connection or a suspicious entry in the TCPEye log, just right click to end the process.


Read More..

Monday, April 14, 2014

SHELL PROGRAMS

THE SUM OF n DIFFERENT NUMBERS

echo"Enter the number of elements:"
read n
s=0
for((i=1;i<=n;i++))
do 
echo"Enter the number: "
read no 
s=expr $s+$no
done
echo"This sum is :$s"

REVERSE OF A GIVEN NUMBER 

if  [ $# -eq 1 ]
then 
if [ $1 -gt 0 ]
then 
num=$1
sumi=0
while [ $num -ne 0 ]
do 
lnum=expr $num % 10
sumi=expr $num * 10  + $lnum 
num=expr $num / 10
done
echo"Reverse of digits is $sumi of $1 "else
echo"Number is less than  0"
fi
else
echo"Insert only one parameter "
fi
Read More..

Wednesday, March 19, 2014

Structure and Interpretation of Computer Programs

Structure and Interpretation of Computer Programs (Adelson/Sussman)
Read More..