Thread
:
Nokia 770 (OS 2006) and watchdogs
View Single Post
ddouthitt
2007-02-05 , 02:53
Posts: 4 | Thanked: 1 time | Joined on Jan 2007
#
6
I came upon another much simpler solution - though, again, this requires a bit of typing at the command line. This solution utilizes the fact that the Nokia 770 comes up in run level 2.
Using the xterm (osso-xterm) - or better yet, ssh in using a ssh daemon - and perform these commands as root (without the prompts shown):
Code:
# cd /etc/rc2.d # ls S*
Now, if you know what you want to remove, then you can use the rm command. For example, consider the ssh daemon:
Code:
# rm -f S??ssh
This will take care of it. Level 3 and up still have the automatic startup, and the script remains available in /etc/init.d. To start the ssh daemon manually, use:
Code:
# /etc/init.d/ssh start
...and off it goes.
This lets one keep commands available and let the system kick in right away. If you really want everything running (after cleaning out the excessive startups) just do:
Code:
# init 3
...and it should start things up right. Can't say as any unknown items (included on the Nokia) would start up, but there you go.
Quote & Reply
|
ddouthitt
View Public Profile
Find all posts by ddouthitt