Useful Commands: Difference between revisions
Jump to navigation
Jump to search
| (46 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
= Overview = | |||
= | |||
{| class="wikitable" | {| class="wikitable" | ||
! | ! style="width:200px;" | 🌐 Networking | ||
! style="width:200px;" | 💻 OS | |||
! style="width:200px;" | 🛠️ Hardware | |||
|- | |- | ||
| | | valign="top" | | ||
* [[Useful Commands/Networking|Networking]] | |||
* [[Useful Commands/Security|Security]]: ssh, socat | |||
| valign="top" | | |||
* [[Useful Commands/Service Management|Service Management]] | |||
* [[Useful Commands/System Management|System Management]] | |||
* [[Useful Commands/System Status|System Status]] | |||
* [[Useful Commands/Windows only|Windows only]] | |||
* [[Useful Commands/MacOS only|MacOS only]] | |||
| valign="top" | | |||
* [[Useful Commands/Hardware|Hardware]] | |||
|- | |- | ||
! 📦 Packages | |||
! 📁 File System | |||
! 📊 Data | |||
! | |||
|- | |- | ||
| | | valign="top" | | ||
* [[Useful Commands/Package Management|Package Management]] | |||
| | * [[Useful Commands/Package Compilation|Package Compilation]] | ||
| | | valign="top" | | ||
* [[Git]] | |||
* [[Useful Commands/File Processing|File Processing]] | |||
| | * [[Useful Commands/Compression|Compression]] | ||
| | * [[Useful Commands/Remote File Access|Remote File Access]] | ||
* [[Useful Commands/Low Level IO|Low Level IO]] | |||
| valign="top" | | |||
| | * [[Useful Commands/Text Processing|Text Processing]] | ||
* [[Useful Commands/Date & Time|Date & Time]] | |||
* [[Useful Commands/Arithmetic|Arithmetic]] | |||
| | |||
| | |||
| | |||
| | |||
| | |||
| | |||
| | |||
| | |||
|} | |} | ||
= | = Trouble shooting = | ||
{| class="wikitable" | {| class="wikitable" | ||
! | ! 🎯 Purpose || ⌨️ Command | ||
|- | |- | ||
| | | Verify $PATH by line. || | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
echo $PATH | tr ':' '\n' | |||
echo $PATH | tr ':' '\n' | grep 'snap' | |||
| | |||
| | |||
| | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Latest revision as of 01:53, 17 September 2026
Overview
| 🌐 Networking | 💻 OS | 🛠️ Hardware |
|---|---|---|
|
||
| 📦 Packages | 📁 File System | 📊 Data |
Trouble shooting
| 🎯 Purpose | ⌨️ Command |
|---|---|
| Verify $PATH by line. |
echo $PATH | tr ':' '\n'
echo $PATH | tr ':' '\n' | grep 'snap'
|