Files
cheat-sheets/Linux/Commands.md
2022-11-01 23:44:04 +01:00

883 B

A list of good to know commands in debian terminal


File managment

Print content to the terminal from a file

cat "file"

Edit a file in the terminal

Nano "file"

Copy folder/file

cp "source" "destionation"

Move folder/file

mv "source" "destionation"

Navigation

Navigiate into a subfolder

cd folder

Navigate to the previoes folder

cd ..

Navigate to the root folder of the system

cd /

Shows the current filepath you are in

pwd

Networking

ipconfig
ip addr shpw
Ping "domain"
Hostname

Package managment

sudo apt autoremove
sudo apt install "Package"
sudo apt remove "Package"
sudo apt update
sudo apt upgrade