Quote:
Originally Posted by mariposa21
How do I remove it from an HTC EVO 3d? I tried Eckharts latest download, but my Sprint phone stops it with some kind of parse error.
|
I don't know where it is exactly, but I saw a link that had a lot of files related to CIQ, and if you could find that, then issuing this command
Code:
cd /
ls -R | grep "iq" # finds all instances of "iq" in the file name,
#that way you'll know what files you still have to get rid of .
After that just delete them or use rm.
OR...
run
Code:
find . -type f -name "CIQ" -exec rm -f {} \;
# will find and remove all files with 'CIQ' in the name...
find . -type f -name "*iq" -exec rm -f {} \;
#same but with 'iq'
Also I don't know if that'll work, I'd need to look at a list of *every file* to see if there were conflicts with legitimate files.... Looks like it'd be much easier just flash a rom lol. Also, if you do that code above and it wrecks something, sorry. Should have nandroid'd before right?