vimwiki/tech/unix.wiki

52 lines
867 B
Plaintext
Raw Normal View History

2021-10-11 03:22:53 +00:00
= Unix =
The bell labs proposal for the best OS design ever
== Standard Utilities ==
* [[../lang/Bash]]
* [[ls]]
* [[cd]]
* [[pwd]]
* [[grep]]
* [[awk]]
* [[sed]]
* [[sort]]
* [[uniq]]
* [[shuf]]
* [[tar]]
2022-01-12 01:15:01 +00:00
== Other utils ==
* [[vifm]]
* [[calcurse]]
2022-02-02 04:15:01 +00:00
* [[latex]]
2022-01-12 01:15:01 +00:00
2021-10-11 03:22:53 +00:00
== Gentoo ==
* [[gentoo_cheat_sheet|Gentoo Cheat Sheet]]
* [[openrc|Openrc]]
* [[kernel|Kernel updates and configuration]]
2022-11-11 01:08:11 +00:00
- [[kernel#Updating the kernel]] - Steps to update the kernel
2021-10-11 03:22:53 +00:00
* [[cross_toolchain|Cross toolchain]] - Setting up a cross compiling toolchain
2022-04-06 15:30:01 +00:00
== Artix ==
* When in doubt and when kernel API mismatch happens, try
`sudo pacman -S linux-headers` as well as `sudo mkinitcpio -p linux`
2021-10-11 03:22:53 +00:00
== Cool stuff ==
* [[wireless_usb]]
2021-11-04 18:15:01 +00:00
* [[bluetooth]]
2021-10-11 03:22:53 +00:00
2022-03-09 21:30:01 +00:00
== Common Operations ==
=== Scan for wifi ===
`sudo iw dev wlan0 scan | grep SSID`
Substituite `wlan0` for any interface
2021-10-11 03:22:53 +00:00
[[index]]