Tips & Tricks

From Wiki³
Revision as of 03:34, 3 August 2017 by Kyau (talk | contribs) (→‎fish)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
IconUNDER CONSTRUCTION: The document is currently being modified!

Icon Terminal

Icon fish

To install fisher the fish plugin manager.

# curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs https://git.io/fisher

Install the sol prompt theme.

# fisher sol

Use sudo to obtain root and repeat the process.

# sudo -s

Icon Unformatted

Reboot into firmware.

# systemctl reboot --firmware

Process list with tree and cpu/ram usage.

# ps xawuf

Use netstat to list open ports and show processes attached to them.

# netstat -tulnp

Listing directories without ls.

# echo *
# find . -printf "%M\t%u\t%g\t%p\n"