ArchLinux:Tips: Difference between revisions

From Wiki³
(Created page with "{{DISPLAYTITLE:{{TitleIcon|arch=true}} Tips & Tricks}}<metadesc>Tips and tricks for using an Arch Linux system. Most are also applicable to Linux in general.</metadesc> <div i...")
 
Line 10: Line 10:
Use {{mono|netstat}} to list open ports and show processes attached to them.
Use {{mono|netstat}} to list open ports and show processes attached to them.
{{Console|1=netstat -tulnp}}
{{Console|1=netstat -tulnp}}
Listing directories without {{mono|ls}}.
{{Console|1=echo *|2=find . -printf "%M\t%u\t%g\t%p\n"}}


[[Category:Arch Linux]]
[[Category:Arch Linux]]

Revision as of 15:29, 26 July 2017

IconUNDER CONSTRUCTION: The document is currently being modified!

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"