Basic Linux Commands
Basic Linux Commands
Here are some basic Linux commands that are commonly used:
- `ls -l`: Lists with detailed information (permissions, owner, size, modification date).
- `ls -a`: Lists all files, including hidden ones (those starting with a dot).
- `tail -f file_name`: Follows the file and displays new lines as they are added (useful for logs).
- `df -h`: Shows disk usage in a human-readable format (e.g., GB, MB).
- **`du`**: Displays disk usage of files and directories.
- `uname -a`: Shows all available system information (kernel version, machine type, etc.).
### Networking
### Others
- `find /path/to/search -name "file_name"`: Searches for `file_name` starting from `/path/to/search`.
These commands cover a broad range of common tasks. If you have specific needs or questions about
any of these commands, feel free to ask!