1

Can someone explain to me how can I determine actual values of for ulimit when the output of ulimit command is "hard" or "soft". This is on AIX machine. For example:

# ulimit -f
hard

And on another machine:

$ ulimit -m
soft

Since i don't have root access on this machines how can I know what are the exact values for this limits?

CyberMuz
  • 335
  • 1
  • 2
  • 8

1 Answers1

2

There's something odd about your bash. Are you sure you don't have either an alias for ulimit, or a non-IBM AIX version of bash?

$ which bash
/usr/bin/bash
$ bash
$ oslevel -s
6100-08-01-1245
$ ulimit -f
unlimited
$ ulimit -m
32768
EightBitTony
  • 9,311
  • 1
  • 34
  • 46