212k views
2 votes
You need to view the contents of /var/log/auth.log to get information about the users that have been logging on to the system. The auth.log file is a plain text, file so you decide to use the cat command to review the file. However, the display fills with text for several pages, and you can't see the entire file. What commands can you use to view the content of the auth.log file page by page? (Select TWO).

User Fedd
by
4.1k points

1 Answer

4 votes

Answer:

more /var/log/auth.log

less /var/log/auth.log

Step-by-step explanation:

The commands that can be used to view the content of the auth.log file page by page are:

more /var/log/auth.log

less /var/log/auth.log

User Schernichkin
by
4.0k points