View previous topic :: View next topic |
Author |
Message |
alexanderliu n00b
Joined: 15 Apr 2004 Posts: 10
|
Posted: Mon Apr 19, 2004 11:28 pm Post subject: help! i forgot to copy the System.map to boot |
|
|
i forgot to copy the System.map to /boot/. i just try to use the lived cd to boot and copy it, but i could not get into the /usr/src/linux
ls linux -l
l....... linux ... linux->linux-2.6.3
help!
thank you! |
|
Back to top |
|
|
MadBassist Apprentice
Joined: 10 Apr 2004 Posts: 200
|
Posted: Mon Apr 19, 2004 11:34 pm Post subject: |
|
|
is this a kernel you compiled during install or afterwards? once you boot into the livecd remember to mount your partitions and you should be able to copy the system.map from there. _________________ System
---------
AMD Athlon XP 2800 Barton
512 Corsair XMS LLPT DDRRAM
Nvidia GeForce FX5900
Audigy2
gentoo-dev-sources 2.6.8-r3 |
|
Back to top |
|
|
alexanderliu n00b
Joined: 15 Apr 2004 Posts: 10
|
Posted: Mon Apr 19, 2004 11:37 pm Post subject: after i compiled it. i mount that. but i could not |
|
|
when i type cd linux , it say no such file or ...
when i type ls linux -l ,it reply
l........ linux .... linux->linux-2.6.3
thank you |
|
Back to top |
|
|
thm Tux's lil' helper
Joined: 15 Dec 2003 Posts: 77 Location: Munich
|
Posted: Mon Apr 19, 2004 11:38 pm Post subject: |
|
|
Try
Code: | mount $YOUR_ROOT_PARTITION /mnt/gentoo
mount $YOUR_BOOT_PARTITION /mnt/gentoo/boot
|
followed by
Code: | cd /mnt/gentoo/usr/src/linux |
or
Code: | ls /mnt/gentoo/usr/src/linux |
or
Code: | ls -l /mnt/gentoo/usr/src/linux/ |
Note the trailing slash.
Also, take a look at
later on to review the basic concept of a symbolic link. _________________ Thomas
Last edited by thm on Mon Apr 19, 2004 11:46 pm; edited 1 time in total |
|
Back to top |
|
|
MadBassist Apprentice
Joined: 10 Apr 2004 Posts: 200
|
Posted: Mon Apr 19, 2004 11:40 pm Post subject: |
|
|
are you sure you've mounted the partitions? _________________ System
---------
AMD Athlon XP 2800 Barton
512 Corsair XMS LLPT DDRRAM
Nvidia GeForce FX5900
Audigy2
gentoo-dev-sources 2.6.8-r3 |
|
Back to top |
|
|
alexanderliu n00b
Joined: 15 Apr 2004 Posts: 10
|
Posted: Mon Apr 19, 2004 11:51 pm Post subject: sure it still does not work |
|
|
i can see that floder
but can not get in
mkdir k
mount /dev/hda4 /k
cd /k/usr/src/linux
no such file .......
cd /k/usr/src
ls linux
linux
ls linux -l
lw....... linux.... linux->linux-2.6.3 |
|
Back to top |
|
|
Rainmaker Veteran
Joined: 12 Feb 2004 Posts: 1650 Location: /home/NL/ehv/
|
Posted: Tue Apr 20, 2004 12:11 am Post subject: |
|
|
what kernel-sources did you emerge?
do
I think your simlink is pointing at the wrong dir |
|
Back to top |
|
|
alexanderliu n00b
Joined: 15 Apr 2004 Posts: 10
|
Posted: Tue Apr 20, 2004 12:19 am Post subject: i just recompile my kernel 2.6.3 |
|
|
after recompile i copy the bzImage to boot but forgot to copy the System.map to there, then i reboot ..... now i use the lived cd to boot, want to use it to copy the system.map to my boot again but... i could not get in the linux floder,
after i mount
i can see that linux
but could not get in,
ls linux
reply : linux |
|
Back to top |
|
|
Chris W l33t
Joined: 25 Jun 2002 Posts: 972 Location: Brisbane, Australia
|
Posted: Tue Apr 20, 2004 6:55 am Post subject: |
|
|
Is this a new feature of Linux 2.6? System.map is not needed to boot a system on 2.4 kernels. _________________ Cheers,
Chris W
"Common sense: The collection of prejudices acquired by age 18." -- Einstein |
|
Back to top |
|
|
Nate_S Guru
Joined: 18 Mar 2004 Posts: 414
|
Posted: Tue Apr 20, 2004 4:41 pm Post subject: |
|
|
I believe that the system.map is for debugging purposes in case of a kernel oops, but I think your problem here is that your symlink is wrong.
what are the entire contents of your /usr/src folder? From your posts it sounds like it's just the symlink and no directorys?
Code: |
mount /dev/hd?? /mnt/gentoo
cd /mnt/gentoo/usr/src
ls -l
|
what does that show? for example mine is:
Code: |
nate@natescomp nate $ cd /usr/src
nate@natescomp src $ ls -l
total 5
lrwxrwxrwx 1 root root 30 Apr 16 08:44 linux -> /usr/src/linux-2.6.3-gentoo-r1
drwxr-xr-x 16 root root 808 Feb 1 11:44 linux-2.4.22-gentoo-r5
drwxr-xr-x 16 root root 624 Feb 19 06:15 linux-2.4.22-gentoo-r7
drwxr-xr-x 19 root root 1432 Apr 17 08:48 linux-2.6.3-gentoo-r1
drwxr-xr-x 18 root root 664 Mar 9 03:00 linux-2.6.3-gentoo-r2
nate@natescomp src $ |
I believe reading somewhere that there is a search path for system.map which includes /usr/src/linux/System.map as well as /boot/System.map; the reason the install guide says to copy it is that backups are good. I don't think it will keep the kernel from booting if it can't find it.
Hope that helps
Nate[/code] |
|
Back to top |
|
|
|