AIX syslog
By default, syslog is not enabled on an AIX system. The default install on an AIX install will not place entry’s in /etc/syslog.conf, leaving it empty. So to make sure…
By default, syslog is not enabled on an AIX system. The default install on an AIX install will not place entry’s in /etc/syslog.conf, leaving it empty. So to make sure…
/proc/slabinfo gives information about memory usage on the slab level. Linux kernels uses slab pools to manage memory above the page level. Commonly used objects have their own slab pools.…
In HPUX, xntpd is the daemon which sets and maintains the system time in synchronism with Internet standard time servers. xntpd reads the /etc/ntp.conf configuration file at startup time in…
In Linux, /usr/sbin/ss commmands gives the socket information similar to netstat. There are various options which are very useful. # /usr/sbin/ssState Recv-Q Send-Q Local Address:Port Peer Address:PortESTAB 0 0 192.12.2.45:1022…
Here are the steps for converting Vmware windows/linux guest to Xen format. You need qemu-img tool for the conversion. If you are converting a Vmware Windows virtual machine guest, you…
/usr/sbin/kctune is the administrative command for HP-UX kernel tunable parameters. It gives information about tunable parameters and their values, and makes changes to tunable values. To list all tunable paramters…
Snapshot – is a technology that helps to create point-in-time copies of file systems, which you can use to protect data as a backup from a single file to a…
You can use virsh to manage xen virtual servers. Here are some basic commands using virsh. To list all the xen virtual machines configured on the dom0 server : #…
Tunable TCP settings can be found on /proc/sys/net/ipv4 . Here are the details of few of them.tcp_keepalive_probes : Number of KEEPALIVE probes tcp sends out, until the server decides that…
prelink is a program which modifies ELF shared libraries and ELF dynamically linked binaries, so that the time which dynamic linker needs for their relocation at startup significantly decreases and…
sginfo command in Linux can be used to get information about the SCSI disks on the system. Display disk vendor, product code and firmware version : # sginfo /dev/sddDevice Type…
The throughput of local filesystem or an nfs mount can be captured using iozone. The below command starts throughput calculation on /d1 filesystem , with 2 IO threads working on…
Sometimes you may need additional local partition or local mountable drives, but you dont have free blocks in the parition table. In that case virtual filesystem helps. You can create…
The nfs client mount command options “rsize” and “wsize” specify the size of the chunks of data that the client and server pass back and forth to each other. If…
If you want to force fsck on the next boot, just create a file called /forcefsck . If this file is present, then during next boot – the fsck is…