Security + Linux Terminal commands
Linux Terminal
Terminal commands:
◼ cd 🡪 change directory
◼ ls 🡪 list the files inside this directory
◼ ls /home/ 🡪 listing of specified folder
◼ ls -l 🡪 long listing of specified folder
◼ ls -la 🡪 to show the hidden files
◼ cd .. 🡪 one step back in the directory
◼ cd ~ 🡪 move to home directory
◼ Clear 🡪 to clear the terminal
◼ pwd 🡪 prints working directory
◼ cp 🡪to copy file
◼ cp -help 🡪 gives you some help to argument
◼ mv 🡪 to move file from place to another or rename files
◼ cat 🡪 will read everything in the file
◼ nano🡪 read and create files
◼ grep 🡪 you will pull something, grep something from somewhere
◼ echo : it will echo these words
◼ touch : quick way to create files
◼ mkdir : making directory
◼ chmod : allows you to change file permission.
Example:
لدينا ملف يحمل اسم 123
┌──(riyadh㉿kali)-[~/Desktop]
└─$ echo "hhhhhhhhhhh">123 يمسح بيانات الملف القديم ويكتب هذا فقط
┌──(riyadh㉿kali)-[~/Desktop]
└─$ echo "ssssssssssss">>123 يضيف على ماهوا بالملف سابقا وما يمسح بسبب >>
──(riyadh㉿kali)-[~/Desktop]
└─$ chmod +x 123 تصريح السماح بالتعديل على الملف
┌──(riyadh㉿kali)-[~/Desktop]
└─$ rm 123 أمر حذف الملف
----------------------------
mkdir Folder1
◼ This command will create a new folder named Folder1
◼ ls
◼ The new folder Folder1 should be there
◼ cd Folder1
◼ This command will move us to Folder1 folder
◼ ls
◼ The newly created Folder1 doesn’t contain any files
------------------------------------
شرح أوامر كالي أهم 30 أمر في الكالي لينكس أهم أوامر نظام الكالي
ليست هناك تعليقات :