Author Archives: kartook

Windows : Memory Limits for Windows Releases

To enable 4GB RAM in 32 bit Windows OS, you can use PAE, but it’s not nearly as good as just going 64 bit. For more information, you can check this MSDN Page: Physical Address Extension http://msdn.microsoft.com/en-us/library/aa366796%28VS.85%29.aspx Memory Limits for Windows Releases http://msdn.microsoft.com/en-us/library/aa366778(v=VS.85).aspx

Linux : How do I disable the ping response?

How do I disable the ping response? Add the following line to your init script for the network (the name depends on the distribution you use): echo 1 >/proc/sys/net/ipv4/icmp_echo_ignore_all This disables ping responses. To reenable, use the following command: echo 0 >/proc/sys/net/ipv4/icmp_echo_ignore_all To make this permanent set the following into /etc/sysctl.conf (if you have such […]

linux :How do I turn on telnet service on ubuntu?

TELNET (TELetype NETwork) is a network protocol used on the Internet or local area network LAN connections. The telnetd program (telnet server) is a server which supports the DARPA telnet interactive communication protocol. Telnetd is normally invoked by the internet server inetd or xinetd for requests to connect to the telnet port as indicated by […]

Linux : How to get free swap infromation

how to get free – to see swap space information in linux Command : cat /proc/meminfo ( or ) free out put from my system kartook@K:~$ cat /proc/meminfo; free MemTotal: 12320084 kB MemFree: 3508632 kB Buffers: 121068 kB Cached: 5832992 kB SwapCached: 1616 kB Active: 4625864 kB Inactive: 3571736 kB Active(anon): 1689308 kB Inactive(anon): 584088 […]