[Solved] How to fix broken glibc(reinstallation) in termux
EDIT: ONLY nuke glibc, don't bother with reinstalling the packages!
The package manager is supposed to know what packages are needed once you install using
apt install glibc-repo
Solution:Jump to solution
Here's how to remove EVERY GLIBC PACKAGE FROM TERMUX
```
dpkg -r --force-depends $(dpkg -l | grep 'glibc' | awk '{print $2}')
...
2 Replies