LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-06-2003, 05:31 PM   #1
dibblethewrecke
Member
 
Registered: Nov 2003
Location: UK
Distribution: Arch Linux
Posts: 210

Rep: Reputation: 30
Non-interactive LILO boot


I read somewhere that you can boot LILO non interactive but still go interactive by holding down ctrl at start up or something, how do you do this? I don't really want to screw about in the boot sector much more without clear instructions as i worry for it's health....

Last edited by dibblethewrecke; 11-06-2003 at 05:32 PM.
 
Old 11-06-2003, 05:50 PM   #2
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Quoting the lilo-readme
Code:
The boot prompt
===============

Immediately after it's loaded, LILO checks whether one of the following is 
happening:

  - any of the [Shift], [Control] or [Alt] keys is pressed. 
  - [CapsLock] or [ScrollLock] is set. 

If this is the case, LILO displays the boot: prompt and waits for the name 
of a boot image (i.e. Linux kernel or other operating system). Otherwise, 
it boots the default boot image* or - if a delay has been specified - waits 
for one of the listed activities until that amount of time has passed.
Cheers,
Tink

P.S.: If I managed to find it, so could you ;)
 
Old 11-06-2003, 05:57 PM   #3
dibblethewrecke
Member
 
Registered: Nov 2003
Location: UK
Distribution: Arch Linux
Posts: 210

Original Poster
Rep: Reputation: 30
assumptions, patronising comments and sarcasm are the pleasure of most experienced linux users it seems, something i better get used to obviously... - you assume i would even know where to look for said readme and an indication of how you did find it would be much more helpful, rather than vague terse replies ended with a friendly dig

and i'll return your wink ;-)

Last edited by dibblethewrecke; 11-06-2003 at 06:08 PM.
 
Old 11-06-2003, 07:40 PM   #4
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Originally posted by dibblethewrecke
assumptions, patronising comments and sarcasm are the pleasure of most experienced linux users it seems, something i better get used to obviously... - you assume i would even know where to look for said readme and an indication of how you did find it would be much more helpful, rather than vague terse replies ended with a friendly dig

and i'll return your wink ;-)
What to say :}

Unfortunately the locations of files are
fairly distro dependent... a way to find
the readme in a generic fashion would
be to
Code:
[tink@notbock:~]$locate README | grep lilo
In my distro of choice, Slackware, all pre-installed
readme's live in
/usr/doc/<program name/version mumble>

As a rule of thumb, there's nothing you can't
find (given it's installled properly) using
either of the following things or combinations
thereof:
man -k <topic>
man -k <topic> | grep <narrow down>
locate <thing in question if it's software>

HIH ... and I didn't mean to be patronising,
but just plain evil ;}


Cheers,
Tink
 
Old 11-07-2003, 02:54 AM   #5
dibblethewrecke
Member
 
Registered: Nov 2003
Location: UK
Distribution: Arch Linux
Posts: 210

Original Poster
Rep: Reputation: 30
Cool.

In your answer you have a few, er, commands for the command line:

locate - which seems self explan
grep - ? seen it about but what does it mean, no wait, i figured it out myself, that'd be the name of what you're looking for.
man - suspect it has something to do with manuals but dunno

I know "-k " would therefore be an option for man but what's -k for?

And, before anyone says anything, yes, I could prolly find all this stuff on google or by reading all the manuals (if i knew where they were) and when i get a clue i will, till then i'll be making full use of this forum cos that's what it's here for.

Cheers, Tink, that helped.


Last edited by dibblethewrecke; 11-07-2003 at 02:57 AM.
 
Old 11-07-2003, 05:58 AM   #6
MartinN
Member
 
Registered: Nov 2003
Location: Ronneby, Sweden
Posts: 555

Rep: Reputation: 30
Hi!

man is for reading manuals. If you type
man ls
in a terminal you would get the manual for 'ls'

man -k means search man pages for keyword. If you type
man -k boot
you would get a list of all man pages containing the keyword boot. Lilo is in that list (at least on my machine).

grep takes lines from standard input and returns lines with a special keyword. If you have a text file "myfriends.txt" with phone numbers to all of your friends and want all numbers to people named "Martin" you'd type
cat myfriends.txt | grep Martin

Regards
Martin
 
Old 11-07-2003, 11:57 AM   #7
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Originally posted by dibblethewrecke
In your answer you have a few, er, commands for the command line:
Betcha ;) ... that's the "power of tux"!

Quote:
locate - which seems self explan
grep - ? seen it about but what does it mean, no wait, i figured it out myself, that'd be the name of what you're looking for.
man - suspect it has something to do with manuals but dunno

I know "-k " would therefore be an option for man but what's -k for?
Martin already said it, but a
man man
would have been the way to go ;)

Quote:
And, before anyone says anything, yes, I could prolly find all this stuff on google or by reading all the manuals (if i knew where they were) and when i get a clue i will, till then i'll be making full use of this forum cos that's what it's here for.

Cheers, Tink, that helped.

:D
Well now ... we've stated how to find man pages,
now you have no more excuses ;)
Some of which, one has to say, are not as good
as they could be. Some are too brief, others too
exhaustive. But in general you should be getting
along with man quite well (And the program related
readme and other doc's that is ;})

Cheers,
Tink
 
Old 11-08-2003, 05:00 AM   #8
dibblethewrecke
Member
 
Registered: Nov 2003
Location: UK
Distribution: Arch Linux
Posts: 210

Original Poster
Rep: Reputation: 30
Smile

cheers, guys, that's all really useful. ill be trying all that, i take it

man man

is a manuals manual?

and as far as reading the readme's goes...i always read 'em! it's just i've not known where to find them with linux. now i know, i'lll do my best but i'll be back, oh yes.....

mwaaahahahahaha

etc

cheers,
phil
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Cannot enter Interactive boot in mandrake 10.1 devanb Linux - Newbie 2 12-31-2004 02:42 PM
Gentoo - interactive boot[?] Ph0enix2003 Linux - Distributions 3 09-20-2004 04:12 PM
Lilo lost, Install disk failing to restore Lilo on dual boot? Dobie Linux - Newbie 2 05-05-2004 05:00 PM
Wont boot into interactive startup HELP! Fear58 Linux - Newbie 5 02-15-2004 01:49 AM
disable pcmcia in interactive boot themartinm Linux - Laptop and Netbook 2 09-02-2003 11:41 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:11 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration