Run grep install /var/log/dpkg.log.
grep install /var/log/dpkg.log
Inspect simulated package activity without installing anything.
Text and logsgreptailwc
Click any instruction for the command details, the why, and the common mistake to avoid.
Run grep install /var/log/dpkg.log.
grep install /var/log/dpkg.log
Run tail -n 2 /var/log/dpkg.log.
tail -n 2 /var/log/dpkg.log
Run wc -l /var/log/dpkg.log.
wc -l /var/log/dpkg.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.
Read package install and upgrade traces.
Search for install in dpkg.log.
Recent package changes can explain new failures.
grep [-i] <text> <file>
Find literal text inside a file.
wc [-l] <file>
Count lines, words, and characters.