Run head -n 2 /var/log/kern.log.
head -n 2 /var/log/kern.log
Inspect simulated kernel messages for mount and network clues.
Text and logsheadgreptail
Click any instruction for the command details, the why, and the common mistake to avoid.
Run head -n 2 /var/log/kern.log.
head -n 2 /var/log/kern.log
Run grep mount /var/log/kern.log.
grep mount /var/log/kern.log
Run tail -n 2 /var/log/kern.log.
tail -n 2 /var/log/kern.log
Create a free account to sync completed lessons, XP, streaks, course status, and your next lesson across sessions.
Checking account status...
Progress sync is idle.
Progress sync stores completion IDs, scores, streaks, badges, and game settings. Terminal contents, editor snippets, lab scratch, email, and real names are never published on leaderboards or share cards.
Practice reading low-level log text.
Search for mount in kern.log.
Kernel messages can explain storage and network symptoms.
head|tail [-n N] <file>
Read the beginning or end of a file.
grep [-i] <text> <file>
Find literal text inside a file.