LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-21-2011, 08:14 AM   #1
dspjm
Member
 
Registered: Dec 2010
Distribution: Scientific Linux Slackware
Posts: 91

Rep: Reputation: 2
Network and grub


I am new to install slackware, i am using scientific linux 6 and first, I don't know how to detect the wireless network and I don't know how to write the grub in my sl, I define the kernel to /boot/vmlinuz, which is a symbolic link, linking to the large single user mode, how can I use different kernels and it's easy to load the kernel but the config file, how should i edit the grub.conf
 
Old 07-21-2011, 09:49 AM   #2
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
Regarding GRUB:

You can use the /boot/vmlinuz sym link for one of the systems, but to boot the other system you will need to use the full name of that particular kernel.

Perhaps the following will help:

Installing GRUB
Multibooting Tips
 
Old 07-21-2011, 10:01 AM   #3
dspjm
Member
 
Registered: Dec 2010
Distribution: Scientific Linux Slackware
Posts: 91

Original Poster
Rep: Reputation: 2
Yes, but when I switch the kernel to for instance vmlinuz-generic-2.6.37*, it tells me impossible to find the root directory, I think that's because it didn't load the right configure file, config-generic-2.6.37*,and the System.map-generic-2.6.37*...
 
Old 07-21-2011, 11:06 AM   #4
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
Is your /boot file system on a separate partition or part of each operating system's file system? If /boot is part of each operating system's file system, then the menu.lst/grub.conf needs to be defined as such.

For example, if Slackware is installed on /dev/sda1 and /boot is part of that file system partition, then the location in grub to the Slackware kernel is something like this:

kernel (hd0,0)/boot/vmlinuz-2.6.33.15-smp-1

If SL6 is on the same drive but partition sda2, then the kernel location for that system would look something like this:

kernel (hd0,1)/boot/vmlinuz-2.6.33.15-smp-1

If /boot is a separate partition, say the first partition, then the configuration would look something like this:

kernel (hd0,0)/vmlinuz-2.6.33.15-smp-1

The menu.lst/grub.conf kernel directive is different from the root directive. The kernel directive provides the location of the kernel file. The root directive provides the location of the operating system.

Thus, if Slackware is located on sda1 and SL6 on sda2, the respective root directives would be like this:

root=/dev/sda1
root=/dev/sda2

The kernel and root locations are not necessarily the same place. For example, on my systems I use a separate partition for /boot. Therefore my kernel files are all located in a different location than the operating system partitions.
 
Old 07-21-2011, 12:17 PM   #5
gnashley
Amigo developer
 
Registered: Dec 2003
Location: Germany
Distribution: Slackware
Posts: 4,928

Rep: Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612
If you use any of the kernels name *generic*, then you nee to use an initrd with it since the kernel does not include any filesystem support. The initrd will load the correct kernel modules to add that support at boot-time.
 
Old 07-22-2011, 12:38 AM   #6
dspjm
Member
 
Registered: Dec 2010
Distribution: Scientific Linux Slackware
Posts: 91

Original Poster
Rep: Reputation: 2
This is my grub file

Code:
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/sda3
#          initrd /initrd-[generic-]version.img
#boot=/dev/sda
default saved
timeout=30
fallback 0
splashimage=(hd0,0)/grub/splash.xpm.gz
title Scientific Linux (2.6.32-131.0.15.el6.i686)
	root (hd0,0)
	kernel /vmlinuz-2.6.32-131.0.15.el6.i686 ro root=UUID=972b0fcb-ae43-4e62-8772-e40c34100101 rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=auto rhgb quiet
	initrd /initramfs-2.6.32-131.0.15.el6.i686.img
	savedefault

title Slackware Linux
	root (hd0,5)
	kernel (hd0,5)/boot/vmlinuz ro root=/dev/sda6
	savedefault fallback
This is my list of file in '/boot' of slackware
Code:
.
..
boot.0806
boot_message.txt
config
config-generic-2.6.37.6
config-generic-smp-2.6.37.6-smp
config-huge-2.6.37.6
config-huge-smp-2.6.37.6-smp
diag1.img
diag2.img
map
README.initrd
slack.bmp
System.map
System.map-generic-2.6.37.6
System.map-generic-smp-2.6.37.6-smp
System.map-huge-2.6.37.6
System.map-huge-smp-2.6.37.6-smp
vmlinuz
vmlinuz-generic-2.6.37.6
vmlinuz-generic-smp-2.6.37.6-smp
vmlinuz-huge-2.6.37.6
vmlinuz-huge-smp-2.6.37.6-smp
the README.initrd is a bad file. And it must not be an intrid.

how should i write the grub.conf?

if i load the vmlinuz-generic* for kernel, it can load it, but it says can't mount the root directory on an unknown block.
 
Old 07-22-2011, 02:47 AM   #7
gnashley
Amigo developer
 
Registered: Dec 2003
Location: Germany
Distribution: Slackware
Posts: 4,928

Rep: Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612
*Read* the file README.initrd for instructions on how to *create* the initrd that you need. In fact AlienBob supplied a script (command) which can generate the command-line needed to generate your initrd using the mkinitrd command. There are surely many threads in this forum section which will guide you to boot using a generic kernel.

As I said, the generic kernels do not include file-system support (ext3,ext4, etc). The initrd you create matches the filesystem you have on '/' and includes and loads the kernel module for that filesystem.
 
1 members found this post helpful.
Old 07-22-2011, 07:45 AM   #8
dspjm
Member
 
Registered: Dec 2010
Distribution: Scientific Linux Slackware
Posts: 91

Original Poster
Rep: Reputation: 2
Thank you for answering my question, I have solved the grub problem according to your post.
Here's my solution

first, login as root
second, install the mkinitrd if you haven't have it yet, it's in /slackware/a of the disc.
third, use mkinitrd to create your initrd.gz
last, load the initrd.gz in your grub.

hope it help the others

and i find it's still necessary to login as a user in cli first. slackware doesn't provide a gui login interface.
but, I still can get to the wireless network, the driver is ok, but I don't know how to connect to the network around me.
 
Old 07-22-2011, 08:31 AM   #9
gnashley
Amigo developer
 
Registered: Dec 2003
Location: Germany
Distribution: Slackware
Posts: 4,928

Rep: Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612
"slackware doesn't provide a gui login interface" It does, if you have installed the kde series and edit /etc/inittab to use default runlevel 4 instead of 3.
 
Old 07-22-2011, 09:37 AM   #10
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
Or add 4 to the kernel line(s) in your grub.conf file.
 
Old 07-22-2011, 10:51 AM   #11
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
Quote:
and i find it's still necessary to login as a user in cli first. slackware doesn't provide a gui login interface.
Perhaps the following will help:

Configuring Slackware for a GUI and a Command Line Startup

The default login manager for Slackware is KDM, the KDE login manager. If KDE is not installed then Slackware defaults to XDM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Boot OS from GRUB over network Trabeken General 0 09-08-2008 09:53 AM
repair grub loader over network is it possible? kissthis66 Linux - Newbie 4 02-15-2007 09:32 AM
can you repair grub over network? kissthis66 Linux - Laptop and Netbook 1 02-14-2007 03:24 PM
boot disk for grub; network config; printer pb abd_bela Debian 3 05-03-2006 12:20 PM
Trying to network boot from Grub (tftp) HazzaHSV Linux - Distributions 1 11-26-2004 04:06 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 12:17 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration