Know about /proc/meminfo
/proc/meminfo is one of the more commonly used files in the /proc/, as it reports a large amount of valuable information about the Linux system’s memory. Here is the brief…
open source for cloud lovers
/proc/meminfo is one of the more commonly used files in the /proc/, as it reports a large amount of valuable information about the Linux system’s memory. Here is the brief…
ext3 filesytem is a journal’d filesystem. The command “tune2fs“ can add a journal to an existing ext2 file system and convert it to ext3, without altering the data already on…
The steps for creating network boding in Linux is available in http://unixfoo.blogspot.com/search/label/networking. RHEL bonding supports 7 possible “modes” for bonded interfaces. These modes determine the way in which traffic sent…
Here are some simple steps to do it, using Network Address Translation (NAT) Enable packet forwarding . Make it permanent by adding “net.ipv4.ip_forward = 1” to /etc/sysctl.conf echo “1” >…
The AIX kernel is available in 32-bit or 64-bit mode. If a 32-bit kernel is running and you want to switch to 64-bit kernel , use the following command. (…
What is the “sticky bit”? (t and T) The sticky bit is primarily used on shared directories. It is useful for shared directories such as /var/tmp and /tmp/ because users…
Here is a list of few benchmarking tools put together Bonnie++ : This is a benchmark suite that is aimed at performing a number of simple tests of hard drive…
Nmon : A free performance monitoring script for Linux and AIX systems. It gives lot of performance information and can output the performance analysis results in many format. nmon Document…
A file is simply a collection of data stored on media. When a process wants to access data from a file, the operating system brings the data into main memory,…
file-max : The Linux Operating system kernel allocates file handles dynamically and the value in file-max denotes the maximum number of file handles that the Linux kernel will allocate. When…
Here is a simple program to calculate Network address and broadcast address, given input of IP address and netmask. Perl code : #!/usr/bin/perl # Get ipaddress and netmask from user…
modproble – This command is used for listing and loads the modules on a linux machine. # modprobe -c | less# Generated by modprobe -c (2.4.25)path=/lib/modules/bootpath=/lib/modules/2.4.21-40.ELsmppath=/lib/modules/2.4path=/lib/modules/updatespath=/lib/modules/kernelpath=/lib/modules/fspath=/lib/modules/netpath=/lib/modules/scsi<snip> lsmod – This command…
How to find the processors on an AIX server? # lsdev -C -c processor -S aproc0 Available 00-00 Processor# How to identify the disks attached to an AIX server? #…
How to enable SNMP on a netapp filerfiler1> options snmp.enable on filer1> options snmp snmp.access legacy snmp.enable on filer1> How to set and modify SNMP configration values?filer1*> snmp contact unixfoo@un1xf00.org…
A quick guide to setup IP SAN using Linux-Netapp-iscsi. On Linux server : Install iSCSI initiator (iscsi-initiator-utils rpm) on your linux machine. This will create the necessary binaries and will…