public inbox for linux-newbie@vger.kernel.org
 help / color / mirror / Atom feed
* copy of linux OS
@ 2005-08-07 10:00 rekha vn
  0 siblings, 0 replies; 5+ messages in thread
From: rekha vn @ 2005-08-07 10:00 UTC (permalink / raw)
  To: linux-newbie

hi.i have both linux & win98 .i'm trying to create a
third option as TESTLINUX (a copy of existing
linux)for experimenting on the kernel.even if it
crashes i can work on the original linux OS.
i've changed the /boot/grub/grub.conf .now how do i go
about the rest of the process?
reply asap


		
____________________________________________________
Start your day with Yahoo! - make it your home page 
http://www.yahoo.com/r/hs 
 
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: copy of linux OS
       [not found] <1123412636.5023.3.camel@localhost.localdomain>
@ 2005-08-07 12:10 ` rekha vn
  2005-08-07 17:40   ` Arturas Moskvinas
  2005-08-08  4:59   ` Stephen Samuel
  0 siblings, 2 replies; 5+ messages in thread
From: rekha vn @ 2005-08-07 12:10 UTC (permalink / raw)
  To: mail, linux-newbie

thanks.
I'd like to have a copy of the kernel.
which folder has the whole of the kernel?
how do i specify this path for this copy of kernel in
my grub.conf.i have red hat kernel version 2.4.21-4.EL



		
__________________________________ 
Yahoo! Mail for Mobile 
Take Yahoo! Mail with you! Check email on your mobile phone. 
http://mobile.yahoo.com/learn/mail 
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: copy of linux OS
  2005-08-07 12:10 ` copy of linux OS rekha vn
@ 2005-08-07 17:40   ` Arturas Moskvinas
  2005-08-08  4:59   ` Stephen Samuel
  1 sibling, 0 replies; 5+ messages in thread
From: Arturas Moskvinas @ 2005-08-07 17:40 UTC (permalink / raw)
  To: rekha vn; +Cc: mail, linux-newbie

> thanks.
> I'd like to have a copy of the kernel.
> which folder has the whole of the kernel?
> how do i specify this path for this copy of kernel in
> my grub.conf.i have red hat kernel version 2.4.21-4.EL

By standart, you'll find your kernel in /boot directory, and kernel
modules in /lib/<kernel_version> directory.

Arturas Moskvinas
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: copy of linux OS
  2005-08-07 12:10 ` copy of linux OS rekha vn
  2005-08-07 17:40   ` Arturas Moskvinas
@ 2005-08-08  4:59   ` Stephen Samuel
  2005-09-06 17:13     ` Kari Hurtta
  1 sibling, 1 reply; 5+ messages in thread
From: Stephen Samuel @ 2005-08-08  4:59 UTC (permalink / raw)
  To: rekha vn; +Cc: mail, linux-newbie

Looking at the following:
============================================
[samuel@me ~]$ ls /lib/modules
2.6.11-1.1369_FC4  2.6.12-1.1398_FC4
[samuel@me ~]$ echo

[samuel@me ~]$ ls /boot
System.map-2.6.11-1.1369_FC4  grub                          vmlinuz-2.6.11-1.1369_FC4
System.map-2.6.12-1.1398_FC4  initrd-2.6.11-1.1369_FC4.img  vmlinuz-2.6.12-1.1398_FC4
config-2.6.11-1.1369_FC4      initrd-2.6.12-1.1398_FC4.img
config-2.6.12-1.1398_FC4      kernel.h
[samuel@me ~]$
============================================

I have two kernels:
2.6.12-1.1398_FC4  and 2.6.11-1.1369_FC4

The directories in /lib/modules are created when the kernel
is installed.

in /boot the important files are: System.map-$VERSION,
initrd-$VERSION.img   and  vmlinuz-$VERSION

As far as I know, config-$VERSION is only needed if you
want to know how the kernel was built... It should be possible
to copy it into the /usr/src/linux directory ( or wherever you're
building your kernel) and use it to config a build the same as
the kernel it's associated with.


rekha vn wrote:
> thanks.
> I'd like to have a copy of the kernel.
> which folder has the whole of the kernel?
> how do i specify this path for this copy of kernel in
> my grub.conf.i have red hat kernel version 2.4.21-4.EL

-- 
Stephen Samuel +1(604)876-0426                samuel@bcgreen.com
		   http://www.bcgreen.com/~samuel/
    Powerful committed communication. Transformation touching
      the jewel within each person and bringing it to light.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: copy of linux OS
  2005-08-08  4:59   ` Stephen Samuel
@ 2005-09-06 17:13     ` Kari Hurtta
  0 siblings, 0 replies; 5+ messages in thread
From: Kari Hurtta @ 2005-09-06 17:13 UTC (permalink / raw)
  To: Linux newbie



And then one addition:   

initrd files includes system root for boot
process before real partition is mounted. initrd includes some
subset of modules from /lib/modules/{kernel-version}.  It is probably generated 
with command mkinitrd.

> Looking at the following:
> ============================================
> [samuel@me ~]$ ls /lib/modules
> 2.6.11-1.1369_FC4  2.6.12-1.1398_FC4
> [samuel@me ~]$ echo
> 
> [samuel@me ~]$ ls /boot
> System.map-2.6.11-1.1369_FC4  grub                          vmlinuz-2.6.11-1.1369_FC4
> System.map-2.6.12-1.1398_FC4  initrd-2.6.11-1.1369_FC4.img  vmlinuz-2.6.12-1.1398_FC4
> config-2.6.11-1.1369_FC4      initrd-2.6.12-1.1398_FC4.img
> config-2.6.12-1.1398_FC4      kernel.h
> [samuel@me ~]$
> ============================================
> 
> I have two kernels:
> 2.6.12-1.1398_FC4  and 2.6.11-1.1369_FC4
> 
> The directories in /lib/modules are created when the kernel
> is installed.
> 
> in /boot the important files are: System.map-$VERSION,
> initrd-$VERSION.img   and  vmlinuz-$VERSION
> 
> As far as I know, config-$VERSION is only needed if you
> want to know how the kernel was built... It should be possible
> to copy it into the /usr/src/linux directory ( or wherever you're
> building your kernel) and use it to config a build the same as
> the kernel it's associated with.
> 
> 
> rekha vn wrote:
> > thanks.
> > I'd like to have a copy of the kernel.
> > which folder has the whole of the kernel?
> > how do i specify this path for this copy of kernel in
> > my grub.conf.i have red hat kernel version 2.4.21-4.EL
> 
> -- 
> Stephen Samuel +1(604)876-0426                samuel@bcgreen.com
> 		   http://www.bcgreen.com/~samuel/
>     Powerful committed communication. Transformation touching
>       the jewel within each person and bringing it to light.
> -
> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.linux-learn.org/faqs
> 
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-09-06 17:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1123412636.5023.3.camel@localhost.localdomain>
2005-08-07 12:10 ` copy of linux OS rekha vn
2005-08-07 17:40   ` Arturas Moskvinas
2005-08-08  4:59   ` Stephen Samuel
2005-09-06 17:13     ` Kari Hurtta
2005-08-07 10:00 rekha vn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox