Active Topics

 



Notices


Reply
Thread Tools
Posts: 57 | Thanked: 28 times | Joined on Jan 2010 @ Poland
#1
I'm installed rootsh because the required need, when I wanted to uninstall jumped a message from "Can not delete application" is there some other way to get rid of it?


I can not even install again

Last edited by pabloniss; 2010-01-26 at 21:21.
 
Posts: 374 | Thanked: 75 times | Joined on Nov 2009 @ Hungary
#2
open terminal
root
dpkg --remove rootsh
 
Posts: 8 | Thanked: 0 times | Joined on Nov 2009
#3
Originally Posted by taril View Post
open terminal
root
dpkg --remove rootsh
Nokia-N900-51-1:~# dpkg --remove rootsh
(Reading database ... 24169 files and directories currently installed.)
Removing rootsh ...
/var/lib/dpkg/info/rootsh.prerm: line 5: syntax error: "fi" unexpected (expecting "then")
dpkg: error processing rootsh (--remove):
subprocess pre-removal script returned error exit status 2
Errors were encountered while processing:
rootsh
 
m2cm2c's Avatar
Posts: 100 | Thanked: 240 times | Joined on Feb 2010 @ The South Pole O.o
#4
please post us the result of:
cat /var/lib/dpkg/info/rootsh.prerm
thanks
 
Posts: 8 | Thanked: 0 times | Joined on Nov 2009
#5
Ok, /var/lib/dpkg/info/rootsh.prerm is malformed. The if statement line must end with "; then"...
Once solved this it removes normally
 
Posts: 8 | Thanked: 0 times | Joined on Nov 2009
#6
Originally Posted by m2cm2c View Post
please post us the result of:
cat /var/lib/dpkg/info/rootsh.prerm
thanks
I don't have this file anymore but it was something like

if [ blahblahblahblah ]
...
fi
 
m2cm2c's Avatar
Posts: 100 | Thanked: 240 times | Joined on Feb 2010 @ The South Pole O.o
#7
good to hear
[edit]
Originally Posted by lostevil View Post
I don't have this file anymore but it was something like

if [ blahblahblahblah ]
...
fi

heh I didn't notice that post
heres what mine looks like

Code:
if [ -x /usr/sbin/gainroot.old ]
     mv /usr/sbin/gainroot.old /usr/sbin/gainroot
fi


I think it should look like this


Code:
if [ -x /usr/sbin/gainroot.old ]
then    
  mv /usr/sbin/gainroot.old /usr/sbin/gainroot
fi

Last edited by m2cm2c; 2010-03-12 at 00:45. Reason: fixed the "then" location
 
Posts: 8 | Thanked: 0 times | Joined on Nov 2009
#8
Originally Posted by m2cm2c View Post
good to hear
[edit]



heh I didn't notice that post
heres what mine looks like

Code:
if [ -x /usr/sbin/gainroot.old ]
     mv /usr/sbin/gainroot.old /usr/sbin/gainroot
fi
That's it! And it should be:

Code:
if [ -x /usr/sbin/gainroot.old ] ; then
     mv /usr/sbin/gainroot.old /usr/sbin/gainroot
fi
 
Posts: 25 | Thanked: 0 times | Joined on Feb 2008 @ Minnesota
#9
ok what is the simplest way to do this?
 
Posts: 8 | Thanked: 0 times | Joined on Nov 2009
#10
Originally Posted by T-unit View Post
ok what is the simplest way to do this?
I think that the simplest way should be copying this:
Code:
if [ -x /usr/sbin/gainroot.old ] ; then
     mv /usr/sbin/gainroot.old /usr/sbin/gainroot
fi
to a new file called rootsh.prerm
(I suppose that doing this with your computer would be simpler)
Now copy it to your N900 and enter this on your terminal (as root):
Code:
mv ./MyDocs/rootsh.prerm /var/lib/dpkg/info/rootsh.prerm
I don't know if it's simple enough.
 
Reply


 
Forum Jump


All times are GMT. The time now is 04:58.