LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 06-21-2009, 12:07 PM   #1
Lancelot1
Member
 
Registered: Dec 2007
Location: Amsterdam
Distribution: (K)Ubuntu
Posts: 102

Rep: Reputation: 15
Exclamation Kernel panic! unable to sync.. Trying to kill init....


Hi,

I'm trying to install Kubuntu 8.04 LTS on my new Laptop.

I have several versions of Kubun tu and don't want to install 9.04 just yet.

Allas i'm getting Kernel Panic! issue with all the installations.

I get Kernel panic! unable to sync.. Trying to kill init.... or something like that.

My laptop is akoya. intel 2.16mhz with 4gb mem, nvidia 9600m geforce and currently running on win 7 which i want to remove.

i have no hardware issues and the releases i try to install have all install/worked om my desktop.

any help would be much appretiated.

After many tries i got it to install by adding acpi=off to the boot installer.

But now after installing I only get to the prompt (after some error messages) and the KDE gui isn't started.

Do I need to ad something to the boot-loader? If so pls help with the syntax. I'm experienced but not super experienced with linux

tx

Last edited by Lancelot1; 06-21-2009 at 12:10 PM.
 
Old 06-21-2009, 01:26 PM   #2
raskin
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: approximately NixOS (http://nixos.org)
Posts: 1,900

Rep: Reputation: 69
Try logging in and running "startx". Does that start a graphical session and KDE? Does "sudo init 5" start a graphical session (with a login prompt)? Please also post your /etc/inittab contents.
 
Old 06-21-2009, 02:01 PM   #3
Lancelot1
Member
 
Registered: Dec 2007
Location: Amsterdam
Distribution: (K)Ubuntu
Posts: 102

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by raskin View Post
Try logging in and running "startx". Does that start a graphical session and KDE? Does "sudo init 5" start a graphical session (with a login prompt)? Please also post your /etc/inittab contents.
on the startx i get:

fatal error:

no screens found

sudo init 5 doesn't do anything

Last edited by Lancelot1; 06-21-2009 at 02:08 PM.
 
Old 06-21-2009, 02:09 PM   #4
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Have you tried any non-ubuntu livecd's just to see if they work?
Try to use a process of elimination to find the problem
 
Old 06-21-2009, 02:17 PM   #5
Lancelot1
Member
 
Registered: Dec 2007
Location: Amsterdam
Distribution: (K)Ubuntu
Posts: 102

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by linus72 View Post
Have you tried any non-ubuntu livecd's just to see if they work?
Try to use a process of elimination to find the problem
am dl-ing zenwork now but will not install yet...

trying to resolve ubuntu first
 
Old 06-21-2009, 02:36 PM   #6
Lancelot1
Member
 
Registered: Dec 2007
Location: Amsterdam
Distribution: (K)Ubuntu
Posts: 102

Original Poster
Rep: Reputation: 15
would the option vga711 during installation help with this issue coz I guess that it's not installing the graphics card properly??
 
Old 06-21-2009, 04:56 PM   #7
Lancelot1
Member
 
Registered: Dec 2007
Location: Amsterdam
Distribution: (K)Ubuntu
Posts: 102

Original Poster
Rep: Reputation: 15
Ok tried zenwalk but it also chrashed on the x-server with the no screens found option.

I installed it with the 2 extra options ata-vga aCPI=off and it installed but wouldn't boot the x-server

tried different screen setting and low as possible resolution with no luck

please any help would be great
 
Old 06-21-2009, 04:58 PM   #8
raskin
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: approximately NixOS (http://nixos.org)
Posts: 1,900

Rep: Reputation: 69
I would try finding Driver "something" in /etc/X11/xorg.conf and replacing it with Driver "vesa"
 
Old 06-21-2009, 05:01 PM   #9
Lancelot1
Member
 
Registered: Dec 2007
Location: Amsterdam
Distribution: (K)Ubuntu
Posts: 102

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by raskin View Post
I would try finding Driver "something" in /etc/X11/xorg.conf and replacing it with Driver "vesa"
so what do i use to open the /etc/x11/xorg.conf...

sorry i'm so used to gui that command line things don't come to me as second nature
 
Old 06-21-2009, 05:23 PM   #10
raskin
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: approximately NixOS (http://nixos.org)
Posts: 1,900

Rep: Reputation: 69
There are a few command-line text editors. emacs and vim work fine in command line, so you can use them if you previously used their GUI versions. There is also probably nano and mcedit.
 
Old 06-21-2009, 07:49 PM   #11
Drakeo
Senior Member
 
Registered: Jan 2008
Location: Urbana IL
Distribution: Slackware, Slacko,
Posts: 3,716
Blog Entries: 3

Rep: Reputation: 483Reputation: 483Reputation: 483Reputation: 483Reputation: 483
A kernel panic means only a few things the system boot loader (grub) is not loading the initrd.img or if it fails with no sync
Quote:
Kernel panic! unable to sync.
then it is not in sync with your drive partition uuid other wise grub is not pointed to your / root partition it must match your /etc/fsatb file/ and ubuntu uses uuid for drive ID. So if everything matches then this tells me you added a new drive.
So if you added a hard drive and loaded a new ubuntu OS it will change the hardware devices. so your sda1, could now be your sdb1.


So figure out your drive sudo fdisk -l and then add this to your /boot/grub/menu.1st
Quote:
title Linux sdxx
root (hd0,0) <------------------change this to the drive you want to load
configfile /boot/grub/menu.lst
Then grub will go to that drive and look for /boot/grub/menu.1st and load it.
now you may have a good chance of it booting but if the fstab is not in sync with the grub loader it will be a kernel panic.
 
Old 06-21-2009, 08:59 PM   #12
Lancelot1
Member
 
Registered: Dec 2007
Location: Amsterdam
Distribution: (K)Ubuntu
Posts: 102

Original Poster
Rep: Reputation: 15
Ok found the issue.

Was a restricted driver issue from Nvidia. Never saw it comming. I was able to finaly install ubuntu 8.04 without these drives and x-server booted.

Tx guys now i'm able to find the rest....I hope
 
  


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
/sbin/init: Kernel panic - not syncing: Attempted to kill init! jalejo08 Linux - Kernel 7 07-02-2009 01:16 PM
kernel panic: tried to kill init Javasnob Debian 6 09-29-2005 08:57 PM
Kernel panic: Attempted to kill init HoreC Debian 1 11-25-2004 08:56 PM
kernel panic: attempted to kill init fanche Linux - Newbie 4 02-13-2004 05:20 AM
kernel panic attempted to kill init ! Stingreen Linux - Software 12 12-05-2002 07:01 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 07:51 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