1
0
mirror of https://github.com/jlevy/the-art-of-command-line.git synced 2025-02-11 13:39:02 +02:00

Merge pull request #273 from aneasystone/inode

Cover inode
This commit is contained in:
Joshua Levy 2015-09-22 19:41:11 -07:00
commit d19b67ab05

View File

@ -59,7 +59,7 @@ Notes:
- Know `ssh`, and the basics of passwordless authentication, via `ssh-agent`, `ssh-add`, etc.
- Basic file management: `ls` and `ls -l` (in particular, learn what every column in `ls -l` means), `less`, `head`, `tail` and `tail -f` (or even better, `less +F`), `ln` and `ln -s` (learn the differences and advantages of hard versus soft links), `chown`, `chmod`, `du` (for a quick summary of disk usage: `du -hs *`). For filesystem management, `df`, `mount`, `fdisk`, `mkfs`, `lsblk`.
- Basic file management: `ls` and `ls -l` (in particular, learn what every column in `ls -l` means), `less`, `head`, `tail` and `tail -f` (or even better, `less +F`), `ln` and `ln -s` (learn the differences and advantages of hard versus soft links), `chown`, `chmod`, `du` (for a quick summary of disk usage: `du -hs *`). For filesystem management, `df`, `mount`, `fdisk`, `mkfs`, `lsblk`. In addition, learn what an inode is, use `ls -i` or `df -i` to perform a deep exploration.
- Basic network management: `ip` or `ifconfig`, `dig`.