From the course: Complete Guide to Navigating Linux: Working with Users, Files, and Networks

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Command overview

Command overview

- We're now at the end of this lesson, let's check out the commands that we've seen. Nano is a easy to use editor. Vim is more powerful but more difficult. That's why you might want to use vimtutor to get a quick tutorial. Cut allows you to filter columns out of text files, and sort allows you to sort output or text files. Grep is a universal filtering utility. Awk is like cut, but it offers a more programmatic way of getting information out of text files. Journalctl is what you use to read the systemd journal, which is the main system log on most modern Linux distributions. Lsblk lists block devices and mount is showing everything that is mounted so far. Findmnt is doing the same where you can see the mounted device and the directory it is mounted on. If ever you plugged in a device and you want to disconnect, you need umount. But before doing so, you might want to use sync to synchronize uncommitted text to disk. And if you have a problem doing a umount because of open files, lsof…

Contents