You are not logged in.
Pages: 1
hi
i updated grub and reboot arch
(i also copy /boot/grub.menu.lst.new(which created in grub update) to/boot/grub.menu.lst)
now when i'm trying to mount arch in grub i get eror 17
eror 17: cannot mount selected partition
so i press "e" and tried to change there somthing but it not help
root (hd0,0)
kernel /vmlinuz26 root=/dev/hda3 ro
initrd /kernel26.img
i have sata drive
so i tried to change is to sda3 -but it didn't help
have ideas? solutions?
thank you
(btw
i search solution in the forum and wiki but i didnt find answer)
oh i forgot to say that in grub i have 2 options (arch or xp)and the prob' is only on arch (windows load up normally)
Last edited by dids22 (2007-02-12 15:46:29)
Offline
Are you sure your arch partition is (hd0,0)?
Do you have a separate /boot partition?
Offline
Try the following
root (hd0,2)
kernel /vmlinuz26 root=/dev/sda3 ro
initrd /kernel26.imgIf that doesn't work.; post a copy of your /etc/fstab into your next reply
ADDED This is based on the kernel line in the code you posted. It may just be an example and NOT your actual partition.
Last edited by jwbirdsong (2007-02-08 00:41:59)
PLEASE read and try to FIX/FILE BUGS instead of assuming other have/will.
Offline
how can i get to /etc/fstab ?? (i can't get in to arch)
and for tom5760 , grub install on the mbr
Last edited by dids22 (2007-02-08 14:25:04)
Offline
how can i get to /etc/fstab ?? (i can't get in to arch)
and for tom5760 , grub install on the mbr
When you enter edit mode ("e") in Grub and you said you typed
root (hd0,0)what did the command return? What filesystem do you use?
If you can do that and that is your right boot partition, then you could do
cat /etc/fstabon whatever your root partition is. The most important part is to know if you have a different boot bartition.
Offline
i am using ext3
and i dont have partition for boot
(so if i want to get to menu.lst i need to do /boot/grub/menu.lst - for that u mean?)
and (hd0,0) is the default - i didnt change it for this
Offline
first, the main partition of arch( / ) is sda4 so it need to be root (hd0,3) ,right?
second, the filesystem is ext2, my mistake
Offline
yeah
in grub i press e and after that c
and i wrote root (hd0,3)
and its not work
i'm nor remember exactly the message it was somthing with ext2
Last edited by dids22 (2007-02-08 16:23:00)
Offline
in edit mode i need to press c right?
Offline
i write in command mode
cat /etc/fstaband the main output is :
/dev/sda2 swap swap defaults 0 0
/dev/sda4 / ext3 defaults 0 1
so i change
root (hd0,0)
kernel /vmlinuz26 root=/dev/hda3 ro
initrd /kernel26.img
for this
root (hd0,3)
kernel /vmlinuz26 root=/dev/sda4 ro
initrd /kernel26.img
and now i get error 15
file not found
Last edited by dids22 (2007-02-08 18:55:27)
Offline
someone?
Offline
change
kernel /vmlinuz26 root=/dev/sda4 ro
to
kernel /boot/vmlinuz26 root=/dev/sda4 ro
and
initrd /kernel26.img
to
initrd /boot/kernel26.img
to end up with
root (hd0,3)
kernel /boot/vmlinuz26 root=/dev/sda4 ro
initrd /boot/kernel26.imgPLEASE read and try to FIX/FILE BUGS instead of assuming other have/will.
Offline
i still get error 15
"file not found"
Offline
Well let's what is actually in you /boot folder...
Enter the GRUB "shell" and get to command mode like you did earlier...
Enter your root (hd0,3) followed by enter....you should get a message about the files system type....
Next at grub prompt enter kernel /boot then hit tab key (maybe twice not sure) and it will list ALL files in your /boot folder.
look for your vmlinuz and kernel26.img to make sure we have the names right....Once we can verify the name are right and the files are there you can just continue on in GRUB command mode and enter the next two lines (ie. kernel and initrd) with correct file name..( you will get a confirmation message after each enter if names are right)
If you get all 3 line entered in command mode and get you messages with no errors enter boot at GRUB prompt and you should boot right up....(Emphasis on should)
Hope this makes some sort of sense....I've not much coffee yet this am.
EDIT ---> when listing the files name see if you have initrd26.img instead of the kernel26.img..I just don't remember the name for the files on a stock/clean install.
Last edited by jwbirdsong (2007-02-09 13:05:47)
PLEASE read and try to FIX/FILE BUGS instead of assuming other have/will.
Offline
yeah i have initrd 26.img
ok , it's working now
thnks everybody
one little thing , how i remove file with pacman? pacman -R file path?
Offline
Glad you got it to boot...(Noticed the add user question)
For pacman use pacman -R "package-name" not file path..just like to install but use the -R switch
example ---> pacman -R madwifi-ng
Please add SOLVED to thread title.
PLEASE read and try to FIX/FILE BUGS instead of assuming other have/will.
Offline
Pages: 1