/var/adm/wtmp Truncation

From UNIX Systems Administration
Jump to navigation Jump to search

Truncating /var/adm/wtmp

  1. Convert /var/adm/wtmp file to ASCII.
    # /usr/sbin/acct/fwtmp < /var/adm/wtmp > /tmp/wtmp.out
  2. Output the last 50 entries to a new file.
    # tail -50 /tmp/wtmp.out > /tmp/wtmp.in
  3. Convert the /tmp/wtmp.in file to wtmp format, and read it back in.
    # /usr/sbin/acct/fwtmp -ic < /tmp/wtmp.in > /var/adm/wtmp
  4. Remove the /tmp/wtmp.out and /tmp/wtmp.in files.

Further Reading

  1. Computers-it. AIX - How to truncate /var/adm/wtmp