LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Gentoo
User Name
Password
Gentoo This forum is for the discussion of Gentoo Linux.

Notices


Reply
  Search this Thread
Old 05-24-2009, 10:47 PM   #1
theabcasian
LQ Newbie
 
Registered: May 2009
Location: Southern California
Distribution: Fedora, Ubuntu, starting gentoo
Posts: 27

Rep: Reputation: 15
Exclamation noob issue with gentoo


hello Linux Questions

im a bit of a noob hare trying to setup a gentoo system, I'm trying to gain some OS experience and i have to say in the first two days I've learned a lot. so here's my problem i got all the way past setting up lilo as the boot loader mostly following the instructions on gentoo's web site however after reboot the kernel panics

Code:
VFS: Cannot open root device "303" or unknown-block(3,3) 
Please append a correct "root=" boot option; here are the available partitions:
0800       58605120 sda driver: sd
0801       40131 sda1
0802       506047 sda2
0803       58058910 sda3
Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(3,3)
ive been doing some digging on google and i see a lot of half answers none of which have worked for me.

this system is being installed on a fujitsu stylistic 4120 tablet

hardware details
Microprocessor
Mobile Intel® Pentium® III Processor - M Ultra Low Voltage(933 MHz, 512 K L2 cache, 133 MHz FSB)
Display
10.4" XGA LCD, indoor viewable or indoor/outdoor viewable
Electromagnetic (active) digitizer

Chipset
Intel 830MG

System Memory
256MB onboard, one DIMM slot available; upgrade with 256 MB or 512 MB SDRAM;
maximum memory to 768 MB (512 MB x 1)

Hard Drives1
60 GB ATA 100, shock-mounted hard drive

Graphics
Intel 830MG

Video Controller
Integrated Intel® Direct AGP graphics with up to 48 MB Dynamic Video Memory Technology

Audio
SigmaTel® STAC9767 with wavetable, 3D effect, and 3D positioning; Dolby® Headphone
Utility to emulate realistic surround sound using conventional stereo headphones on DVD
models; built-in microphone; headphone, microphone, and stereo line-in jacks.

Communications
Multinational 2 56K3 V.90 modem, 10/100 Base-TX Ethernet

System Ports
2 USB 1.1 ports
Infrared port (IrDA 1.1-compatible, 4 MBps)
External monitor connector
Modem (RJ-11) jack
Ethernet (RJ-45) jack
IEEE 1394 connector
Wireless IR keyboard receiver
System interface connector

PC Card Slot
One Type I or Type II slot; 32-bit PC CardBus architecture

I am using the latest minimal install cd from gentoo's site and the latest builds from the mirrors!

thanks for any help

-Carl

Last edited by theabcasian; 05-24-2009 at 11:08 PM.
 
Old 05-24-2009, 11:02 PM   #2
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,153

Rep: Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125
LFS is a specific distro, as is gentoo - this should be elsewhere; maybe a moderator will move it.
I can think of easier places to get a Linux grounding, but gentoo is a fine distro. Which filesystem did you uses on that partition ?. Is in included in the kernel, or if not, is it in the initrd ?. Are you building your own kernel, or using genkernel ?.
 
Old 05-24-2009, 11:13 PM   #3
theabcasian
LQ Newbie
 
Registered: May 2009
Location: Southern California
Distribution: Fedora, Ubuntu, starting gentoo
Posts: 27

Original Poster
Rep: Reputation: 15
if any mods read this i hope it gets moved to a better location i didn't know LFS was its own thing and i didnt see a gentoo section
i'm using a jfs file system trying to get a little extra speed out of an old system on all but swap i emerged it into the kernel and i built the kernel myself needed some extra parts for the tablet input as far as i know.
 
Old 05-24-2009, 11:37 PM   #4
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,153

Rep: Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125Reputation: 4125
It appears discussions are under way to get a gentoo forum here at last.
Run this against your .config - from the liveCD will be fine, but make sure you do it against wherever you mount your disk partition.
Code:
grep -i jfs /mnt/gentoo/boot/<your-config-file>
 
Old 05-26-2009, 02:45 PM   #5
NeddySeagoon
Gentoo support team
 
Registered: May 2009
Location: 56N 3W
Distribution: Gentoo
Posts: 178

Rep: Reputation: 41
theabcasian,

Code:
VFS: Cannot open root device "303" or unknown-block(3,3)
Tells that your boot loader is trying to mount /dev/hda3 as root but you have made the drive appear as SCSI
Code:
0801       40131 sda1
0802       506047 sda2
0803       58058910 sda3
Check your grub.conf file and /etc/fstab
Wherever your have /dev/hd* in those files, change it to /dev/sd*
 
Old 05-27-2009, 09:50 PM   #6
theabcasian
LQ Newbie
 
Registered: May 2009
Location: Southern California
Distribution: Fedora, Ubuntu, starting gentoo
Posts: 27

Original Poster
Rep: Reputation: 15
changing to sda dosent do it the system recognizes the HDD as HDA from what i understand sda is for Sata drives. correct me if im wrong im not in a position to correct just to learn
 
Old 05-27-2009, 11:43 PM   #7
veerain
Senior Member
 
Registered: Mar 2005
Location: Earth bound to Helios
Distribution: Custom
Posts: 2,524

Rep: Reputation: 319Reputation: 319Reputation: 319Reputation: 319
Your first PATA hard disk is called as
/dev/hda
and subsequent one as
/dev/hdb
/dev/hdc
and so on.
for SATA it is called as
/dev/sda
/dev/sdb
/dev/sdc
and so on.

And the partitions on a single hard drive for example /dev/hda is named as
/dev/hda1
/dev/hda2
and so on

Similarly for second disk
/dev/hdb1
/dev/hdb2
and like that.

Hope it helps.
 
Old 05-28-2009, 12:12 PM   #8
NeddySeagoon
Gentoo support team
 
Registered: May 2009
Location: 56N 3W
Distribution: Gentoo
Posts: 178

Rep: Reputation: 41
theabcasian,

There are two sets of drivers in the kernel for PATA drives. If you use the old set under the
Code:
< > ATA/ATAPI/MFM/RLL support  --->
menu, your PATA drives will have the old /dev/hd.. names

The other drivers are under
Code:
<*> Serial ATA (prod) and Parallel ATA (experimental) drivers  -->
if you use these drivers your PATA drives will be allocated /dev/sd.. names.
This menu contains only the low level chip set controller code, you also need the correct selections on the
Code:
SCSI device support  --->
menu.

When your system failed to boot , it was looking for /dev/hda3, which is what
Code:
unknown-block(3,3)
means, (see /usr/src/linux/Documentation/devices.txt) but it found /dev/sda1, /dev/sda2 and /dev/sda3.

When you changed your grub.conf, did you get a different error message ?
if so, what was it?

Please post your grub.conf
 
Old 06-02-2009, 01:37 AM   #9
theabcasian
LQ Newbie
 
Registered: May 2009
Location: Southern California
Distribution: Fedora, Ubuntu, starting gentoo
Posts: 27

Original Poster
Rep: Reputation: 15
well im not sure what did it but i rebuilt the whole system all i changed was i used genkernel and switched back from lilo to grub.
 
Old 06-03-2009, 12:52 PM   #10
NeddySeagoon
Gentoo support team
 
Registered: May 2009
Location: 56N 3W
Distribution: Gentoo
Posts: 178

Rep: Reputation: 41
theabcasian,

Thats a little drastic for your problem and by reinstalling, you have lost the learning opportunity that it provided. Still, there will be plenty more.

Welcome to Gentoo
 
  


Reply

Tags
gentoo, kernel, panic, syncing, vfs



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
Gentoo or FreeBSD for noob w/VERY little UNIX smarts? Getwild2 *BSD 25 08-21-2006 01:09 AM
Gentoo or FreeBSD for noob w/VERY little UNIX smarts? Getwild2 Linux - Distributions 4 05-06-2006 07:08 AM
noob - Looking to install gentoo on dual PPro box vsop Linux - Distributions 0 02-02-2005 02:08 PM

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

All times are GMT -5. The time now is 11:25 PM.

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