Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 793 Bytes

File metadata and controls

36 lines (25 loc) · 793 Bytes

Linux Overview.

Complete Linux Course: Beginner to Power User! https://www.youtube.com/watch?v=wBp0Rb-ZJak

Linux Distributions

Linux Commands

Administrative Privileges

ls -l
chmod 777

Summary of important linux commands

grep // To find stuff
ps aux // to display what process is running
ps aux | grep liri-browser. //Dispaly process & pipe that to grep to filter liri-browser process
kill -9 <pid> // kill specific commands

top
htop //to show cpu usage/ram usage

bmon // to show network connections

vim // Code editors 
nano

systemctl start nginx //( to stop and start services)
crontab -e // will open a crontab file ( m h dom mon dow command)

vim /etc/host // allows u to change this machine local dns. (eg. can redirect subdomains to local applications)