AIX Commands You Should Not Leave Home Without: Shiv Dutta
AIX Commands You Should Not Leave Home Without: Shiv Dutta
Shiv Dutta
Senior Software Engineer
IBM
14 Oct 2008
Do you ever wish you could answer some of your own questions when you work with
AIX® and your System p® server? Do you ever feel you could save time by not
having to call on the support professionals all the time? Well, wish no more. Shiv
Dutta discusses some of the AIX commands that answer those questions and tells
you how to enlarge the list of such answers.
Introduction
As you know, AIX has a vast array of commands that enable you to do a multitude of
tasks. Depending on what you need to accomplish, you use only a certain subset of
these commands. These subsets differ from user to user and from need to need.
However, there are a few core commands that you commonly use. You need these
commands either to answer your own questions or to provide answers to the queries
of the support professionals.
In this article, I'll discuss some of these core commands. The intent is to provide a
list that you can use as a ready reference. While the behavior of these commands
should be identical in all releases of AIX, they have been only tested under AIX
V5.3.
Note:
The bootinfo command discussed in the following paragraphs is NOT a user-level
command and is NOT supported in AIX V4.2 or later.
Commands
Kernel
bootinfo -K
/unix is a symbolic link to the booted kernel. To find out what kernel mode is
running, enter ls -l /unix and see what file /unix it links to. The following are
the three possible outputs from the ls -l /unix command and their
corresponding kernels:
Note:
AIX 5L Version 5.3 does not support a uniprocessor kernel.
During the installation process, one of the kernels, appropriate for the AIX version
and the hardware in operation, is enabled by default. Use the method from the
previous question and assume that the 32-bit kernel is enabled. Also assume that
you want to boot it up in the 64-bit kernel mode. This can be done by executing the
following commands in sequence:
The /dev/hdiskxx directory is where the boot logical volume /dev/hd5 is located. To
find out what xx is in hdiskxx, run the following command:
lslv -m hd5
Note:
In AIX V5.2, the 32-bit kernel is installed by default. In AIX V5.3, the 64-bit kernel is
installed on 64-bit hardware and the 32-bit kernel is installed on 32-bit hardware by
default.
Hardware
AIX 5L Version 5.3 runs on all currently supported CHRP (Common Hardware
Reference Platform)-based POWER™ hardware.
Run the prtconf command. If it's a CHRP machine, the string chrp appears on
the Model Architecture line.
bootinfo -y
bootinfo -r
To list the current values of the attributes for the tape device, rmt0, type:
lsattr -l rmt0 -E
To list the default values of the attributes for the tape device, rmt0, type:
lsattr -l rmt0 -D
To list the possible values of the login attribute for the TTY device, tty0, type:
lsattr -E -l sys0
How many hard disks does my system have and which ones are in use?
lspv
To find details about hdisk1, for example, run the following command:
lspv hdisk1
lscfg
For example, to display details about the tape drive, rmt0, type:
How do I find out the chip type, system name, node name, model number, and
so forth?
AIX
oslevel -r
lslpp -h bos.rte
How can I determine which fileset updates are missing from a particular AIX
level?
To determine which fileset updates are missing from 5300-04, for example, run the
following command:
oslevel –s
5300-04-02
To see if a CSP is currently installed on the system, run the oslevel -s command.
Sample output for an AIX 5L Version 5.3 system, with TL3, and CSP installed, would
be:
oslevel –s
5300-03-CSP
The following command will create, within volume group testvg, a jfs file system of
10MB with mounting point /fs1:
The following command will create, within volume group testvg, a jfs2 file system of
10MB with mounting point /fs2 and having read-only permissions:
To increase the /usr file system size by 1000000 512-byte blocks, type:
Note:
In AIX V5.3, the size of a JFS2 file system can be shrunk, as well.
The following command will mount file system /dev/fslv02 on the /test directory:
How do I mount all default file systems (all standard file systems in the
/etc/filesystems file marked by the mount=true attribute)?
mount {-a|all}
umount /test
Type the following command to display information about all currently mounted file
systems:
mount
rmfs /test
The defragfs command can be used to improve or report the status of contiguous
space within a file system. For example, to defragment the file system /home, use
the following command:
defragfs /home
lslpp -w /usr/bin/vmstat
which_fileset svmon
lslpp -l
instfix -i | grep ML
To install APAR IY73748 from /dev/cd0, for example, enter the command:
lppchk -v
How do I get a dump of the header of the loader section and the symbol
entries in symbolic representation?
dump -Htv
lsps -a
You can use the chps -s command to dynamically increase the size of a paging
space. For example, if you want to increase the size of hd6 with 3 logical partitions,
you issue the following command:
chps -s 3 hd6
You can use the chps -d command to dynamically reduce the size of a paging
space. For example, if you want to decrease the size of hd6 with four logical
partitions, you issue the following command:
chps -d 4 hd6
If you run the smtctl command without any options, it tells you if it's enabled or not.
You can enable or disable SMT by running the smtctl command. The following is
the syntax:
If neither the -w boot or the -w now options are specified, then the mode change is
made immediately. It persists across subsequent reboots if you run the bosboot
command before the next system reboot.
Run the lsvg command on the volume group and look at the value for MAX PVs.
The value is 32 for normal, 128 for big, and 1024 for scalable volume group.
Use the following command, where s partition_size sets the number of megabytes
(MB) in each physical partition where the partition_size is expressed in units of MB
from 1 through 1024. (It's 1 through 131072 for AIX V5.3.) The partition_size variable
must be equal to a power of 2 (for example: 1, 2, 4, 8). The default value for
standard and big volume groups is the lowest value to remain within the limitation of
1016 physical partitions per physical volume. The default value for scalable volume
groups is the lowest value to accommodate 2040 physical partitions per physical
volume.
You use the following command to change the characteristics of a volume group:
chvg
To increase the size of the logical volume represented by the lv05 directory by three
logical partitions, for example, type:
extendlv lv05 3
How do I display all logical volumes that are part of a volume group (for
example, rootvg)?
You can display all logical volumes that are part of rootvg by typing the following
command:
lsvg -l rootvg
Run the following command to display information about the logical volume lv1:
lslv lv1
You can remove the logical volume lv7 by running the following command:
rmlv lv7
The rmlv command removes only the logical volume, but does not remove other
entities, such as file systems or paging spaces that were using the logical volume.
2. syncvg VolumeGroupName
You can use the rmlvcopy command to remove copies of logical partitions of a
logical volume. To reduce the number of copies of each logical partition belonging to
logical volume testlv, enter:
rmlvcopy testlv 2
Each logical partition in the logical volume now has at most two physical partitions.
lsvg
lsvg rootvg
lsvg -p rootvg
How do I find out what the maximum supported logical track group (LTG) size
of my hard disk?
You can use the lquerypv command with the -M flag. The output gives the LTG
size in KB. For instance, the LTG size for hdisk0 in the following example is 256KB.
/usr/sbin/lquerypv -M hdisk0
256
You can also run the lspv command on the hard disk and look at the value for MAX
REQUEST.
syncvg -v testvg
You can run the alt_disk_copy command to copy the current rootvg to an
alternate disk. The following example shows how to clone the rootvg to hdisk1.
alt_disk_copy -d hdisk1
Network
The no command sets or displays current or next boot values for network tuning
parameters.
ifconfig -a
host Fully_Qualified_Host_Name
Either of the following two commands will display the network interfaces:
lsdev -Cc if
ifconfig -a
To get information about one specific network interface, for example, tr0, run the
command:
ifconfig tr0
ifconfig tr0 up
For example, to deactivate the network interface tr0, run the command:
netstat -r -f inet
netstat -i -f inet
netstat -s -f inet
To record packets coming in and going out to any host on every interface, enter:
iptrace /tmp/nettrace
To record packets received on an interface en0 from a remote host airmail over the
telnet port, enter:
Workload partitions
mkwpar -f /tmp/wpar1.spec
startwpar temp
stopwpar temp
lswpar
Name State Type Hostname Directory
---------------------------------------------------------------------------------
bar A S bar.austin.ibm.com /wpars/bar
foo D S foo.austin.ibm.com /wpars/foo
trigger A A trigger /
To run the /usr/bin/ps command as user root in a workload partition named howdy,
type:
rmwpar temp
To stop and remove the workload partition called temp preserving data on its file
system, type:
rmwpar -p -s temp
vmstat
vmstat 2 5
To display a summary of the statistics for all of the workload partitions after boot,
type:
vmstat -@ ALL
To display all of the virtual memory statistics available for all of the workload
partitions, type:
To display a single set of statistics for all TTY, CPU, and Disks since boot, type:
iostat
To display a continuous disk report at 2-second intervals for the disk with the logical
name disk1, type:
iostat -d disk1 2
To display 6 reports at 2-second intervals for the disk with the logical name disk1,
type:
iostat disk1 2 6
iostat -d 2 6
To display only file system statistics for all workload partitions, type:
iostat -F -@ ALL
To display system throughput of all workload partitions along with the system, type:
iostat -s -@ ALL
topas
topas -P
topas -L
topas -D
topas -F
sar
sar -u -P 0,1
Conclusion
Admittedly, a list such as this can be helpful in quickly answering some of your own
questions. However, it does not cover everything that you might need. You can
extend the usefulness of such a list by adding other commands that answer
additional questions not addressed here.
Resources
Learn
• AIX Information Center: This site provides the latest documentation on AIX.
• Introduction to Workload Partition Management in IBM AIX Version 6.1: This
Redbook presents Workload Partitions (WPARs), a set of completely new
software-based system virtualization features introduced in IBM AIX Version
6.1.
• The AIX and UNIX developerWorks zone provides a wealth of information
relating to all aspects of AIX systems administration and expanding your UNIX
skills.
• developerWorks technical events and webcasts: Stay current with
developerWorks technical events and webcasts.
• AIX Wiki: Visit this collaborative environment for technical information related to
AIX.
• Podcasts: Tune in and catch up with IBM technical experts.
• Browse the technology bookstore for books on these and other technical topics.
Get products and technologies
• IBM trial software: Build your next development project with software for
download directly from developerWorks.
Discuss
• Participate in the AIX and UNIX forums:
• AIX Forum
• AIX Forum for developers
• Cluster Systems Management
• IBM Support Assistant Forum
• Performance Tools Forum
• Virtualization Forum
• More AIX and UNIX Forums
• AIX Networking