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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
11-06-2003, 05:31 PM
|
#1
|
Member
Registered: Nov 2003
Location: UK
Distribution: Arch Linux
Posts: 210
Rep:
|
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.
|
|
|
11-06-2003, 05:50 PM
|
#2
|
Moderator
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
|
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 ;)
|
|
|
11-06-2003, 05:57 PM
|
#3
|
Member
Registered: Nov 2003
Location: UK
Distribution: Arch Linux
Posts: 210
Original Poster
Rep:
|
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.
|
|
|
11-06-2003, 07:40 PM
|
#4
|
Moderator
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
|
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
|
|
|
11-07-2003, 02:54 AM
|
#5
|
Member
Registered: Nov 2003
Location: UK
Distribution: Arch Linux
Posts: 210
Original Poster
Rep:
|
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.
|
|
|
11-07-2003, 05:58 AM
|
#6
|
Member
Registered: Nov 2003
Location: Ronneby, Sweden
Posts: 555
Rep:
|
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
|
|
|
11-07-2003, 11:57 AM
|
#7
|
Moderator
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
|
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
|
|
|
11-08-2003, 05:00 AM
|
#8
|
Member
Registered: Nov 2003
Location: UK
Distribution: Arch Linux
Posts: 210
Original Poster
Rep:
|
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 
|
|
|
All times are GMT -5. The time now is 06:26 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|