here is a pretty serious one i can't uninstall sun-j2sdk and i can't install anything else until it gets fixed<br>
here is the ouput:<br>
<br>
Reading package lists... Done<br>
Building dependency tree... Done<br>
Correcting dependencies... Done<br>
The following packages will be REMOVED:<br>
&nbsp; sun-j2sdk1.5.0<br>
0 upgraded, 0 newly installed, 1 to remove and 96 not upgraded.<br>
Need to get 0B of archives.<br>
After unpacking 140MB disk space will be freed.<br>
Do you want to continue [Y/n]? y<br>
(Reading database ... 122467 files and directories currently installed.)<br>
Removing sun-j2sdk1.5.0 ...<br>
rm: cannot remove `/usr/bin/apt': No such file or directory<br>
dpkg: error processing sun-j2sdk1.5.0 (--remove):<br>
&nbsp;subprocess pre-removal script returned error exit status 1<br>
Errors were encountered while processing:<br>
&nbsp;sun-j2sdk1.5.0<br>
<br>
i tried touching the &quot;missing&quot; files (hell java trying to remove is
very wrong but i'm desparate my system is hosed anyways). ther's a
whole bunch of them so i even went as far as coinning an ugly script
together:<br>
<br>
#!/bin/bash<br>
errFile=&quot;not null&quot;<br>
until [ -z &quot;$errFile&quot; ]; do<br>
&nbsp; for i in $(cat touchy); do<br>
&nbsp;&nbsp;&nbsp; sudo touch $i<br>
&nbsp;&nbsp;&nbsp; echo &quot;touching:$i&quot;<br>
&nbsp; done<br>
&nbsp; if ! sudo dpkg --force-all --remove sun-j2sdk1.5.0 2&gt; out &gt;/dev/null; then<br>
&nbsp;&nbsp;&nbsp; errFile=&quot;$(head -n 1 out | sed -e&quot;s|rm: cannot remove .\(.*\).:.*|\1|&quot;)&quot;<br>
&nbsp;&nbsp;&nbsp; echo &quot;$errFile&quot; | tee -a touchy<br>
&nbsp; fi<br>
done<br>
<br>
but it loops on /usr/bin/javah. aparentky touching isn't enough here. help needed<br>
<br>
till<br>
<br>
p.s.: excuse me for the caps etc.. i'm typing from my breezy box and shift doesn't work.<br>
<br>