LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-26-2012, 03:21 PM   #1
aspireone
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Rep: Reputation: Disabled
Angry Linux won't boot up


Hi guys, can anyone help?

Acer Aspire One running Linux has suddendly stopped booting up with the following message:

Failed to start message bus: failed to bind socket "/var/run/dbus/system_bus_socket": Address already in use
sudo:sudo please use single character optionsplease
sudo:sudo no passwd entry for linpus
FATAL: Module speedstep_lib not found
Starting acpi daemon:acpid:starting up
OK
acpid: 1 rule loaded
setpci: Warning: No devices selected for AE47
/etc/rc.d/rc.last.ctrl:line 17 /sys/bus/usb/devices/5-5/power/level:No such file or directory

All of which means nothing to me but the thing ain't working! Any help would be greatly appreciated
 
Old 07-26-2012, 03:35 PM   #2
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
what did you last do?
install some program ?

also WHAT operating system is this ?
this is an acer netbook so i am guessing "limpus light"
that is about 5 years out of date and was loosely based on the very OLD fedora 8 ( from 5 years ago)
 
1 members found this post helpful.
Old 07-26-2012, 03:45 PM   #3
aspireone
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Original Poster
Rep: Reputation: Disabled
Hi John

Thanks for the quick reply, yes it is a netbook, two years old. Think it is limpus lite.

Only ever used for surfing the web. Nothing installed recently, shut down as normal last night, won't boot this morning.

Any ideas what's up?
 
Old 07-26-2012, 11:57 PM   #4
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
can you boot into single user mode or text only
( think of it as "safe mode" on Windows)
during the 3 sec. count down at the very beginning of booting
hit < enter>
then < e> for edit

use the down arrow to move to the boot line and a the number 1 to the end

a space then 1 or a 3 for text boot
then hit <b> for boot
if so then read the boor log file for the error
/var/log
the boot.0.log and xorg.log and messages

in those 3 files will be the error

Last edited by John VV; 07-27-2012 at 12:00 AM.
 
1 members found this post helpful.
Old 07-27-2012, 02:06 PM   #5
aspireone
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Original Poster
Rep: Reputation: Disabled
Have tried to boot into single user mode as you suggested but nothing happens just get the blue aspire one screen same as before?

Thanks
 
Old 07-27-2012, 03:00 PM   #6
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
without knowing what the logs say ... i can only guess


things like the ram becoming unseated can cause it to error
or some of the ram has gone bad
or
some of the hardware became disconnected or has gone bad

there is no dvd drive
so if you "can" boot using a live USB image ?
then you can read the logs
 
1 members found this post helpful.
Old 07-27-2012, 04:27 PM   #7
aspireone
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Original Poster
Rep: Reputation: Disabled
Worth a try but I don't know how to do that, can you advise?
 
Old 07-28-2012, 08:31 PM   #8
Linux_420
LQ Newbie
 
Registered: Dec 2011
Distribution: Fedora
Posts: 27

Rep: Reputation: Disabled
ram / harddrive not being seated properly can cause something of the sort... try to boot from a live distro and access your hard drive to ensure that it is seated (or just open the laptop, remove the hard drive/ram, then reseat the hard drive/ram).
 
1 members found this post helpful.
Old 07-28-2012, 08:53 PM   #9
Karl Godt
Member
 
Registered: Mar 2010
Location: Kiel , Germany
Distribution: once:SuSE6.2,Debian3.1, aurox9.2+3,Mandrake?,DSL? then:W7st,WVHB, #!8.10.02,PUPPY4.3.1 now:Macpup
Posts: 314

Rep: Reputation: 45
I think you had a hard poweroff and dbus was not able to delete the file /var/run/dbus/system_bus_socket .

Code:
find /var -name dbus -exec ls -R {} \;
gives me

/var/lib/dbus:
machine-id

/var/run/dbus:
pid system_bus_socket

The existing pid file might be the main problem .

You should organize some USB Pendrive bootable linux, boot it, mount the main partition, navigate to the /var directory and delete the dbus files (not the directories) .

[Another thing is ownership and permissions of the dbus files/directories.]

dbus itself on Puppy Linux for example gets launched by /etc/init.d/01_messagebus script .

*

Nevertheless your system boots, but refuses to launch the desktop/windowmanager .

The "blue screen" must be some sort of "/bin/whiptail" or "/bin/dialog" started by a script.
 
1 members found this post helpful.
Old 07-29-2012, 06:28 AM   #10
aspireone
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Original Poster
Rep: Reputation: Disabled
Ok thanks,think I understand. Can you suggest a site or program for the USB bootable linux?
 
Old 07-29-2012, 12:33 PM   #11
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Quote:
Originally Posted by aspireone View Post
Ok thanks,think I understand. Can you suggest a site or program for the USB bootable linux?
Unetbootin will prepare your usb drive for any live distro
http://unetbootin.sourceforge.net/
What version are you using?
http://distrowatch.com/table.php?distribution=linpus

Last edited by EDDY1; 07-29-2012 at 12:36 PM.
 
1 members found this post helpful.
Old 07-29-2012, 02:06 PM   #12
Karl Godt
Member
 
Registered: Mar 2010
Location: Kiel , Germany
Distribution: once:SuSE6.2,Debian3.1, aurox9.2+3,Mandrake?,DSL? then:W7st,WVHB, #!8.10.02,PUPPY4.3.1 now:Macpup
Posts: 314

Rep: Reputation: 45
Wink

Quote:
Originally Posted by aspireone View Post
Ok thanks,think I understand. Can you suggest a site or program for the USB bootable linux?
Puppy Linux.

Linux is not for beginners.
Especially Puppy Linux because it lacks the manpages, which are accessible via the internet though.

I was a beginner once.
 
1 members found this post helpful.
Old 07-29-2012, 02:48 PM   #13
aspireone
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Original Poster
Rep: Reputation: Disabled
Hey guys I've fixed it!

Followed your advice and booted with linuxliveusb.com

Have upgraded to Ubuntu, working perfectly.

Thank you, one and all

Best regards

Gary
 
Old 07-29-2012, 10:09 PM   #14
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Congrats aspireone!
 
  


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
Just Finished Cloning my Dual Boot Setup, but Linux OS won't boot kuyalfinator Linux - Virtualization and Cloud 8 03-07-2011 11:38 PM
Linux won't boot Bondspy007 Linux - Newbie 13 09-09-2005 02:44 AM
linux boot! why won't you! cascamorto Linux - Newbie 1 12-25-2003 11:03 AM
linux won't boot whitout boot disk grizz Linux - Newbie 2 08-12-2003 02:21 PM
Linux won't boot Lokious Linux - Software 0 01-21-2002 07:47 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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