In this post i am going to install OneX in termux through simple and clear commands. Installing OneX in termux helps a user to install almost 300+ tools in a single command. This tool is mostly like Tool X and DarkFly. We will know all about the OneX tool also how to install and use it.
What is OneX tool?
OneX is an open-source tool that contains more than 370+ tools. This tool is made of bash script. it contains all the Kali Linux tools with categories. The bash script is already loaded in this tool, we have to only select the tool with the specific command and it will start installing in termux. Some of these tools require root access to run. This tool is available on GitHub.
How to install OneX in termux?
Installing OneX tool is same as other tools. we have to just clone the too, followed by executable command and then install it by bashing the installation script. Follow the below steps one by one to install OneX in termux.
Step 1: First of all you have to open your terminal. Make sure your internet connection is working.
Step 2: Type pkg update && pkg upgrade
to completely update and upgrade termux packages.
pkg update && pkg upgrade -y
Step 3: Now install git in termux. Type pkg install git -y
to install Git.
pkg install git -y
Step 4: Clone the OneX repository using git clone https://github.com/jackind424/onex.git
command.
git clone https://github.com/jackind424/onex.git
Step 5: Move to the OneX folder using cd onex
command.
cd onex
Step 5: Give executable permissions to the installation file using chmod +x install
command.
chmod +x install
Step 6: Run the installation script to install OneX in termux using ./install
command.
./install
The installation process of OneX will start and will be installed shortly in your termux. After the installation is completed check if the OneX tool is properly installled or not using onex -h
command. Now i will show you how to install tools through OneX tool.
How to use OneX tool in termux?
After the process to install OneX in termux. We can use the below commands to install any tool available in OneX:
Step 1: The first thing is to select the tool you want to install in the termux for that type onex -l
command.
onex -l
Step 2: A list of tool will appear. Copy the name of the tool you want to install in termux.
Step 3: Type onex -i [tool_name]
to install the [tool_name]
in the termux. Make sure to rename [tool_name] with the tool you want to install in termux.
onex -i [tool_name]
Step 4: The tool will start installing in termux shortly. This tool can be found in the home directory. you can navigate there using cd
command.
Step 5: You can see all other commands using onex -h
command.
onex -h
How to install OneX in termux using single command?
We need to type pkg update && pkg upgrade -y && pkg install git -y && git clone https://github.com/jackind424/onex.git && cd onex && chmod +x install && ./install
command to install Onex in termux using single command.
pkg update && pkg upgrade -y && pkg install git -y && git clone https://github.com/jackind424/onex.git && cd onex && chmod +x install && ./install
Conclusion:
We have seen completely how to install OneX in termux and how to use onex in termux. This tool is being present in the repository of jackind424. It reduces most of the work of installing tool sin termux. You can also install tool x in termux and DarkFly in termux which is an alternative of this tool. if you got any error or have any question regarding this article you, you can just tell me through the contact us page. Thanks for reading
Frequently asked questions:
How to update OneX in termux?
Type onex -u
to update OneX tool in termux.
What is OneX tool used for?
OneX tool is used to install other tools present on github through a bash script.
How many tools are present in OneX?
There are almost 370+ tool available in OneX tool.