LINUX ESSENTIALS //2 - Navigation and Working with Files

Опубликовано: 02 Август 2026
на канале: cauchemar IT
8
0

in this video I'll show how to navigate trough directories and work with files in Linux (Ubuntu).

-Navigation
pwd — show current directory
ls — list files and folders
ls -a — list all, including hidden
cd folder — go into folder
cd .. — go back one step
cd ~ — go to home directory
cd / — go to root directory

-Files & Directories
touch file.txt — create a file
mkdir folder — create a folder
cp file.txt copy.txt — copy a file
cp -r folder newfolder — copy a folder
mv old.txt new.txt — rename a file
mv file.txt folder/ — move a file
rm file.txt — delete a file
rm -r folder — delete a folder with contents

please, leave a comment if you have anu suggestions or problems! I will answer as soon as possible!