1

When I try to view my faillog with nano /var/log/faillog the log file is filled with nothing but "@^" over and over again. (I have also tried running the command with sudo, but the contents of the file dont' change)

What would cause the faillog to fill with these 2 characters specifically?

I'm running Ubuntu Server 16.04 LTS

Native Coder
  • 234
  • 3
  • 13

1 Answers1

4

That's a single character ^@, which stands for ctrl-@, which is the NULL (0x00) character.

As for why they're there, /var/log/faillog is a binary file that is processed by /usr/bin/faillog See man 8 faillog for more information on using it.

DerfK
  • 19,313
  • 2
  • 35
  • 51