1836356 Members
1918 Online
110100 Solutions
New Discussion

Re: The system is ready.

 
SOLVED
Go to solution
Jeff Hagstrom
Regular Advisor

The system is ready.

The system is ready.
Does anybody know where this is held at?
8 REPLIES 8
Jeff Schussele
Honored Contributor

Re: The system is ready.

Hi Jeff,

I don't understand your question.
Could you rephrase, please?

Rgds,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
Pete Randall
Outstanding Contributor
Solution

Re: The system is ready.

You've got it, Jeff - he wants to know where the phrase "the system is ready" comes from: what script, what process, etc, issues that phrase.

Pete

Pete
Jeff Hagstrom
Regular Advisor

Re: The system is ready.

/sbin/rc
Jeff Schussele
Honored Contributor

Re: The system is ready.

Found it in /sbin/rc
Do a
strings /sbin/rc | grep -i ready
You'll see it.

Rgds,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
Jeff Schussele
Honored Contributor

Re: The system is ready.

Give yourself a big tenner Jeff!

I see you found it before I did. Loved the chase though...interesting question.
Knew it would be in /sbin....

Cheers,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
James R. Ferguson
Acclaimed Contributor

Re: The system is ready.

Hi Jeff:

'/sbin/rc' is nothing more than a script, albeit one very important one!

Regards!

...JRF...
Kelli Ward
Trusted Contributor

Re: The system is ready.

Hi Jeff,
If you're ever looking for something like that again, you can always try:

find / -type f -exec grep -l 'The system is ready' {} \;

This can use a bit of a system's resources and will take some time (it will search through every file in your filesystem for the string) but I have found it usefull on occasion.

Happy Hunting.

Kel
The more I learn, the more I realize how much more I have to learn. Isn't it GREAT!
Chris Vail
Honored Contributor

Re: The system is ready.

"at" is in the /bin directory......



:-)


Chris