You are not logged in.

#1 2009-04-14 11:10:10

bashphoenux
Member
Registered: 2009-04-14
Posts: 10

Grub/Menu.lst

Hello people ..i am new to arch linux .. with the help of wikiarch .. i installed arch linux and am in the stage of setting up grub .. well in the grub/menu.lst ..i see arch and windows .. but i also have a fedora 10 insalled on my system.. well i want to know if i have to add that in the menu.lst ??? if so pls direct me in the right direction as to how !!!
THank YOU in advance

Offline

#2 2009-04-14 11:18:55

FrozenFox
Member
From: College Station, TX
Registered: 2008-03-23
Posts: 422
Website

Re: Grub/Menu.lst

http://wiki.archlinux.org/index.php/Grub

This didn't help you in the wiki?

Yes, you need to add your fedora entry if you want to boot into it from grub.

Please note that you will need to know the kernel name and image name from your fedora partition and set it correctly in menu.lst, as it's not the same as arch's. You can just mount your fedora root partition (assuming your / and /boot are the same partition in your fedora setup) and look in /boot for that information. You just plug the correct information in to your fedora entry in menu.lst, after following the 'skeleton' in the wiki.

Last edited by FrozenFox (2009-04-14 11:29:07)

Offline

#3 2009-04-14 11:31:49

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: Grub/Menu.lst

you can specify grub to load menu.lst from fedora with configfile command.
title Fedora
root (hd0,1) #fedora root partition
configfile /boot/grub/menu.st

something like that.

Last edited by wonder (2009-04-14 11:32:40)


Give what you have. To someone, it may be better than you dare to think.

Offline

#4 2009-04-14 11:38:37

bashphoenux
Member
Registered: 2009-04-14
Posts: 10

Re: Grub/Menu.lst

thanks will try that .. and wat do i login as ????
i am in the login screen

Offline

#5 2009-04-14 12:27:31

Mr.Elendig
#archlinux@freenode channel op
From: The intertubes
Registered: 2004-11-07
Posts: 4,092

Re: Grub/Menu.lst

You should read the beginners guide.


Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest

Offline

#6 2009-04-14 14:36:03

bashphoenux
Member
Registered: 2009-04-14
Posts: 10

Re: Grub/Menu.lst

when ever i  do pacman -S alsa-utils
i get
Rerieving packages from exra....
warning: failed to rerieve some files from extra
error: failed to commit transaction(unexpected error)
Errors occured , no packages upgraded

wat do i do ???

Offline

#7 2009-04-14 14:40:45

Netsu
Member
From: Poland
Registered: 2009-04-04
Posts: 182

Re: Grub/Menu.lst

Is your internet connection set up properly? Do you have your mirrorlist configured?
As Elendig said, read the beginners guide.


My Elegant Pattern GTK theme.
My game development blog, now on a new site.

'~/.xinitrc is an Archer's DE' - moljac024

Offline

#8 2009-04-14 14:41:46

bashphoenux
Member
Registered: 2009-04-14
Posts: 10

Re: Grub/Menu.lst

yes the mirrorlist is configured ...
and the above command also came along way the steps to setting archlinux

Last edited by bashphoenux (2009-04-14 14:58:10)

Offline

#9 2009-04-14 14:53:53

Netsu
Member
From: Poland
Registered: 2009-04-04
Posts: 182

Re: Grub/Menu.lst

Nobody will help a person that doesn't bother to use such inventions as grammar or comprehensive reading.


My Elegant Pattern GTK theme.
My game development blog, now on a new site.

'~/.xinitrc is an Archer's DE' - moljac024

Offline

#10 2009-04-14 14:58:54

bashphoenux
Member
Registered: 2009-04-14
Posts: 10

Re: Grub/Menu.lst

i am sorry i didnt get you

wat does the above error exactly mean..???

Last edited by bashphoenux (2009-04-14 15:04:55)

Offline

#11 2009-04-14 15:28:45

mcmillan
Member
Registered: 2006-04-06
Posts: 737

Re: Grub/Menu.lst

The error means it couldn't find the package. The two most likely explanations are misconfigured repositories, or not having internet working like Netsu said. You haven't said whether or not the network is working. You also might post your pacman.conf file and mirrorlist file so we can know for sure you have those set right.

Offline

#12 2009-04-14 15:39:27

bashphoenux
Member
Registered: 2009-04-14
Posts: 10

Re: Grub/Menu.lst

#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives

#
# GENERAL OPTIONS
#
[options]
# The following paths are commented out with their default values listed.
# If you wish to use different paths, uncomment and update the paths.
#RootDir     = /
#DBPath      = /var/lib/pacman/
#CacheDir    = /var/cache/pacman/pkg/
#LogFile     = /var/log/pacman.log
HoldPkg     = pacman glibc
# If upgrades are available for these packages they will be asked for first
SyncFirst   = pacman
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#XferCommand = /usr/bin/curl %u > %o

# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg   =
#IgnoreGroup =

#NoUpgrade   =
#NoExtract   =

# Misc options (all disabled by default)
#NoPassiveFtp
#UseSyslog
#ShowSize
#UseDelta
#TotalDownload
#
# REPOSITORIES
#   - can be defined here or included from another file
#   - pacman will search repositories in the order defined here
#   - local/custom mirrors can be added here or in separate files
#   - repositories listed first will take precedence when packages
#     have identical names, regardless of version number
#   - URLs will have $repo replaced by the name of the current repo
#
# Repository entries are of the format:
#       [repo-name]
#       Server = ServerName
#       Include = IncludePath
#
# The header [repo-name] is crucial - it must be present and
# uncommented to enable the repo.
# 

# Testing is disabled by default.  To enable, uncomment the following
# two lines.  You can add preferred servers immediately after the header,
# and they will be used before the default mirrors.
#[testing]
#Include = /etc/pacman.d/mirrorlist

[core]
# Add your preferred servers here, they will be used first
Include = /etc/pacman.d/mirrorlist

[extra]
# Add your preferred servers here, they will be used first
Include = /etc/pacman.d/mirrorlist 

[community]
# Add your preferred servers here, they will be used first
Include = /etc/pacman.d/mirrorlist

# An example of a custom package repository.  See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#Server = file:///home/custompkgs

yes my network is working as i did a full sysem updgrade using pacman -Syu

Offline

#13 2009-04-14 15:45:15

Netsu
Member
From: Poland
Registered: 2009-04-04
Posts: 182

Re: Grub/Menu.lst

Maybe the package is corrupted or missing on your preferred mirror? In the etc/pacman.d/mirrorlist try to make the archlinux.org server to be the first on the list, and then try pacman -Sy alsa-utils.


My Elegant Pattern GTK theme.
My game development blog, now on a new site.

'~/.xinitrc is an Archer's DE' - moljac024

Offline

#14 2009-04-14 16:10:06

bashphoenux
Member
Registered: 2009-04-14
Posts: 10

Re: Grub/Menu.lst

thankssssssssss alot netsu ... its working now !! big_smile as you said something wrong with the mirrorlist
thanks alot !! :cheers:

Offline

Board footer

Powered by FluxBB