I wanted to get some packages like hping .So I added a Debian repositories along with deb-src..
But the command apt-get update is just ignores it and gives me some errors...(I was installing aarch64 )
Please help me ....
Thanks
There is no way to make normal Debian packages work in Termux. Termux' packages are specifically patched, compiled and most importantly, prefixed (/data/data/com.termux/files/usr/bin as opposed to /bin) for Android.
So are there any plans of including hping hydra msfconsole to termux ??
First I've heard of them. You're welcome to open package requests for them. You can also use the build environment to package them yourself. Some packages are very easy to compile for Termux, others require a lot of patches. If you manage to build them you can contribute them to the repository.
How can I do it .? Is there any tutorials?
I'd absolutely love to do that
PS : I have knowledge in coding stuff...
There's a bit of a readme here: https://github.com/termux/termux-packages/blob/master/README.md
It boils down to:
./scripts/run-docker.sh ./build-package.sh <your package name>/bin/sh). >ou need to look at the error messages and fix stuff. Create patches (download source, git init, git add --all, git commit -m "0", make changes, git diff > ~/termux-packages/packages/yourpackage/<reasonable name>.patch<package>-version.deb over to your device and install it with dpkg -i <file>.deb@Auxilus Don't worry, I find it hard too :) It is a good opportunity to learn, @Neo-Oli's instructions are excellent. I might even try myself...
Most helpful comment
There's a bit of a readme here: https://github.com/termux/termux-packages/blob/master/README.md
It boils down to:
./scripts/run-docker.sh ./build-package.sh <your package name>/bin/sh). >ou need to look at the error messages and fix stuff. Create patches (download source,git init,git add --all,git commit -m "0", make changes,git diff > ~/termux-packages/packages/yourpackage/<reasonable name>.patchOnce it builds successfully it will have created a folder ./debs. You need to build for the arch of your android device.
<package>-version.debover to your device and install it withdpkg -i <file>.deb