How to enable full core on AIX

1- To obtain full core files on AIX, set the following ulimit options:
ulimit -c unlimited turn on corefiles with unlimited size
ulimit -n unlimited allows an unlimited number of open file
descriptors
ulimit -d unlimited sets the user data limit to unlimited
ulimit -f unlimited sets the file limit to unlimited

You can display the current ulimit settings with:
ulimit -a

2- Set the following in smitty:
1. Start smitty as root
2. Go to System Environments -> Change/Show Characteristics of Operating System
3. Set the
Enable full CORE dump option to TRUE

Alternatively, you can run chdev -l sys0 -a fullcore=’true’ as root.

You can check the setting with lsattr -D -c sys -a fullcore -H, which should produce output similar to this:
attribute deflt description user_settable
fullcore false Enable full CORE dump True

Reference: IBM Web Site, AIX Help

Tagged , , , | Leave a comment

Accesing Linux partitions (ext2/ext3) from Windows

If you need to gain read/write access for Linux partitions from windows box, http://www.fs-driver.org/ provides you with a simple program that enables you to gain read/write access to ext2/ext3 partitions.

Tagged , , , | Leave a comment

Easiest way to install programs in OpenSUSE

Go here : http://software.opensuse.org/search
in the search box write search key, and then on the list below, click “1-click install” button.

Tagged | Leave a comment

Add a job to crontab that runs every minute on AIX

  • crontab -e
  • 0-59 * * * * hobba
crontab -e: opens a text file (via vi) to add your job
0-59: is to run every minute
hobba: is the command to run, it’s either a Unix command or a script
Tagged , | Leave a comment

crontab logs on AIX 5.3

/var/adm/cron/log

Tagged , , | Leave a comment