Archive for category Aix
Physical memory in AIX
Posted by Lincoln Zuljewic Silva in Aix on February 18th, 2010
To check the amount of physical RAM that a AIX Server has, you can use the following commands:
| lsattr -El sys0 | grep realmem realmem 16121856 Amount of usable physical memory in Kbytes |
or
| lsattr -El mem0 goodsize 15744 Amount of usable physical memory in Mbytes False size 15744 Total amount of physical memory in Mbytes False |
or
| prtconf|grep "Memory Size" Memory Size: 15744 MB Good Memory Size: 15744 MB |
Disable file size limit in AIX
Posted by Lincoln Zuljewic Silva in Aix on December 4th, 2009
By default, if you try do copy/create a file larger than 2Gb in AIX, you will get a “file too large” message. That happen because AIX have a default limit of 2Gb for files.
To disable (or increase) this limit, edit /etc/security/limits and change the parameter fsize to “-1” or whatever value you want.
You can change it in “default” to apply to all users or change it to a specific user.
Remember that the file system should be JFS2.
Creating an user on AIX
Posted by Lincoln Zuljewic Silva in Aix on December 1st, 2009
Creating an user on AIX
On AIX, you can use the following commands to create an user
| mkuser pgrp=’primary group’ groups=’other groups’ home=’home directory’ shell=’/usr/bin/ksh’ gecos=’GECOS’ USERNAME |
Forcing an user changing the password on AIX
Posted by Lincoln Zuljewic Silva in Aix on November 30th, 2009
Forcing an user changing the password on AIX
On AIX, you can use the following commands to unlock na user and force it to change it’s password on first logon:
| pwdadm -f ADMCHG USER |
How to change user’s password in HP-UX
Posted by Lincoln Zuljewic Silva in Aix on April 30th, 2009
To change the user passwd in HP-UX, you can use the following command:
|
/usr/lbin/modprpw -x foobar passwd=dyxmuola |
It will force the user foobar to change its password in the first login.

