On Tue, Sep 29, 2009 at 11:53 AM, Cameron <[email protected]> wrote:
> One particular area/folder/drive?

  "Filesystem" is the Unixy term.

> ... is running low on drive space ...

  The "df" command will show you Disk Free space.   Some variants will
accept "df -h" to give human-friendly numbers.

> These files are “failedlogin” and “failedlogin1”.
> The question is....can I just delete these files ...

  I don't know much about AIX in particular, but

        http://www.google.com/search?q=aix+failedlogin

suggests you should truncate the file, rather than just deleting it.
The command would be:

        > /etc/security/failedlogin

  Note that the right-pointing chevron (>) is part of the command line
you type.  You're redirecting a null command to a file, which
overwrites it with the null output.

  You can delete (remove) the old (rotated) file:

        rm /etc/security/failedlogin1

-- Ben

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

Reply via email to