كيفيه الحصول علي نظام لينكس كامل linux shell علي هاتفك الاندرويد
·
الحصول علي نظام لينكس كامل علي هاتفك
السلام عليكم اصدقائي اليوم سوف نتعرف علي لينكس وكيفيه الحصول علي نظام كامل متكامل علي هاتفك الاندرويد .
في البدايه يجب عليك معرفه الانظمه من الصميم اولا , وكيف تتكون حيث ان الانظمه مختلفه من ( ماك وويندوز ولينكس واندرويد وايفون ).
والموضوع المهم عندنا هوا الاندرويد , حيث ان الاندرويد قائم علي نواه يونكس مثل الكالي والباروت لينكس والانظمه الاخري .
كيف يمكن تشغيل لينكس علي الاندرويد
يمكن تشغيل لينكس باكتر من طريقه والسؤال المهم هوا كيف ؟
الاجابه بسيطه حيث يوجد اكثر من طريقه اولا عن طريق الاتصال باجهزه خارجيه مثل RDP و vps
والطريقه الثانيه والمجانيه والاسهل وهيا عن طريق تيرمكس , المتواجد بكثره علي الانظمه وعلي متجر جوجل بلاي بشكل مجاني .
هو تطبيق للأندرويد يوفر للمستخدم واجهة Terminal مبنيه على اللينكس في هاتفك الذكي ، يمكنك من خلال التطبيق تنصيب مجموعة من الاكواد والاؤامر التي تتيح لك استخدام الكثير من الخصائص في التطبيق والاسكربتات والتطبيقات وتعلم البرمجه ويمكنك ايضا تنزيل البرمجيات وأدوات اختبار الاختراق من الموقع المشهور Github ، ومن اهم المميزات انه لا يحتاج الى الروت فيمكن العمل عليه بعد تثبيته من المتجر مباشرة .
لماذا نستخدم Termux ؟
بما ان التطبيق يعمل على الهاتف فأنه يعتبر وسيلة للكثير من الاشخاص الذين يريدون البدء في تعلم اوامر اللينكس او تعلم البرمجة او تعلم بعض وسائل اختبار الاختراق ولا يملكون جهاز الكومبيوتر او أي اسباب اخرى فإن التطبيق يعتبر مثالي جدا لهذي العمليات.
الاؤامر المستعمله في الفديو
1: pkg update
2: pkg upgrade
3: pkg install python
4: pkg install python2
5: pkg install python3
6: pkg install ruby
7: pkg install git
8: pkg install php
9: pkg install java
10: pkg install google
11: pkg install bash
12: pkg install perl
13: pkg install nmap
14: pkg install clang
15: pkg install macchanger
16: pkg install nano
17:pkg install figlet
18: pkg install cowsay
19: pkg install curl
20: pkg install tar
21: pkg install zip
22: pkg install unzip
23: pkg install tor
24: pkg install sudo
25: pkg install wget
26: pkg install wcalc
27: pkg install openssl
28: pkg install bmon
In tools that call for (y/n), put y and enter
cd command
The "cd" command is used to move to a specific folder. For example, if you are in the Home folder, and you want to move to the Downloads folder, you can type
cd Downloads
Assuming that Download is the name of the folder you want to access.
ls command
The ls command is used to display files and folders in the desired folder; Type the ls command in your terminal and it will display a list of files and folders located in your Home folder.
You can show the names of hidden files using the "ls -a" command.
ls -a
The command pwd
pwd - This command shows you the path to the folder you are currently in.
pwd
The command mkdir
We use the mkdir command, which means make directory, meaning creating a folder, for example
mkdir myfolder
Here we have created a folder named myfolder.
The command rmdir and rm
To delete a folder, we use the rmdir command, meaning remove directory, and to delete a file, we use the rm command
Example:
Delete the myfolder folder
rmdir myfolder
Delete a file
rm myimage.jpg
Assuming myimage.jpg is an image file.
command touch
The touch command is used to create a new file, whether it is an empty txt text file or an empty doc file. For example:
touch log. txt
The cat command
We use the cat command to view the contents of a specific file, such as the file we created previously, for example.
cat log. txt
The cp command
Use the cp command to copy files from one folder to another. The command requires two variables: the first is the path of the file to be copied and the second is the target folder into which the file is to be copied.
For example, we will copy a file found in Downloads and place it in the Home folder
cp /Downloads/onsec.jpg /Home/onsec.jpg
mv command
Use the mv command to transfer files via the command line. We can also use the mv command to rename files. For example, if we want to rename the "text" file to the "new" file, we can use the command "mv old new" and to move it we use the same copy method.
mv oldName newName
The command echo
It is used to print any writing on the terminal, for example echo Hello CortexHacker, and if we want to write it inside a file, we use the < arrow, for example
echo Hello > file.txt
We wrote the word Hello in a file we called file.txt. If the file does not exist, it will be created automatically.
If you want to add a word to an existing file, we use the arrows << Example
echo World >> file.txt
command nano and vi
You can consider them a text editor, such as Notepad, through which you can modify or edit a text file by writing the name of the tool and passing it the path of the file you want to open and modify, for example.
nano /Downloads/site.txt
zip and unzip command
Use the zip command to compress files into a compressed archive, and unzip to decompress and extract files from the compressed archive. The command may not work at first and command not found appears. The reason is that it does not come by default, but rather you install it first via the command.
pkg install zip
If you want to unzip a file, use the unzip command and pass the path to the compressed file
Example:
unzip /Downloads/ cortexhacker.zip
Command to delete a folder or tool
rm-rif
Example :
mr-rif black-max
The black-max tool will be deleted

