#7 RHCSA - File Management | Polish Voiceover

Опубликовано: 18 Май 2026
на канале: beitadminpl
187
7

File Management in GNU/Linux. RHCSA Exam. Visit https://beitadmin.pl. More 👇👇

📚 Link to tools used:

mkdir - creates directories or subdirectories

mkdir EmptyDir

mkdir Documents

mkdir Videos

mkdir Project1 Project1 Project3

If the directory exists, an error will occur.

mkdir -p - Creates missing directories in a given path

mkdir -p Course/Chapter1 Course/Chapter2 Course/Chapter3

cp - Copy files and directories

cd Videos
touch video{1,2}.avi
cp video1.avi video3.avi

cp -r - Copy directory contents, not just individual files

cp -r Videos/ Documents/

mv - Move files

cd Videos
mv video1.avi video_copy1.avi

mv -v video1.avi ../Documents/

rm - Delete only the file

cd Documents

rm video1.avi

rm -i video2.avi
rm -f

rmdir EmptyDir
rmdir EmptyDir

rm -r - Delete the directory containing files

rm -r Videos

💡 If you have an idea for a topic or improvement, please contact us. If you'd like to share your blog as a channel, please leave a suggestion using the anonymous form.

https://beitadmin.pl/pomysly

Want to always stay up-to-date with information from the world of IT Administrators? Join my newsletter:

📩 Sign up for the newsletter:

https://beitadmin.pl/newsletter

🔔 Subscribe to my channel -

https://beitadmin.pl/obserwacja

When creating #beitadminpl (e.g., courses and tutorials), your time is of the utmost importance to me. My strategy is to get to the root of the topic and consciously eliminate unnecessary elements. This way, I explain what's truly important in simple terms. I make every effort to ensure the materials are valuable, so sometimes the videos will be longer.

You'll find videos for Windows and GNU/Linux Administrators. The main topics of my videos include: Windows Server 2016/2019, Centos/RedHat 9, but also Docker, Ansible, and databases (primarily PostgreSQL). I also ensure that the content in my videos is as up-to-date as possible.

#RHCSA
#linux
#unix
#mkdir
#cp
#mv
#rm
#AdminCourse
#beitadminpl