LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-09-2009, 08:35 AM   #1
BlackHole051
LQ Newbie
 
Registered: Mar 2009
Posts: 8

Rep: Reputation: 0
Question slow startup - ubuntu


http://img24.imageshack.us/img24/290...d200903081.png

i'm having trouble with slow startup.

on the image (above) you can see where my laptop stuck


please answer asap

i asked on ubuntu forum but nobody helped at all
 
Old 03-09-2009, 09:31 AM   #2
Agrouf
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: LFS
Posts: 1,596

Rep: Reputation: 80
vol_id is taking too much disk I/O
delete vol_id from your udev rules and don't use uuid in your fstab
 
Old 03-09-2009, 10:16 AM   #3
BlackHole051
LQ Newbie
 
Registered: Mar 2009
Posts: 8

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Agrouf View Post
vol_id is taking too much disk I/O
delete vol_id from your udev rules and don't use uuid in your fstab
slow down, you forgot that I am a newbie

is there any tutorial ?

edit1:
i tried to delete but it's write protected.
i also tried to delete it via terminal but it said
rm: cannot remove `vol_id': Permission denied

edit2:
i deleted it with
sudo rm vol_id
i'm going to restart now. wish me luck. i hope rebooting will be done :crossfingered:

Last edited by BlackHole051; 03-09-2009 at 10:30 AM.
 
Old 03-09-2009, 10:22 AM   #4
Agrouf
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: LFS
Posts: 1,596

Rep: Reputation: 80
please post the output of 'mount' (without the quotes) and the content of the file '/etc/fstab' and I'll tell you how to edit /etc/fstab
 
Old 03-09-2009, 10:32 AM   #5
Agrouf
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: LFS
Posts: 1,596

Rep: Reputation: 80
Quote:
Originally Posted by BlackHole051 View Post
slow down, you forgot that I am a newbie

is there any tutorial ?

edit1:
i tried to delete but it's write protected.
i also tried to delete it via terminal but it said
rm: cannot remove `vol_id': Permission denied

edit2:
i deleted it with
sudo rm vol_id
i'm going to restart now. wish me luck. i hope rebooting will be done :crossfingered:
If you did that but didn't edit your fstab, then your system won't boot.
 
Old 03-09-2009, 10:42 AM   #6
BlackHole051
LQ Newbie
 
Registered: Mar 2009
Posts: 8

Original Poster
Rep: Reputation: 0
i dunno what have i done but it works

mount:
Code:
/dev/sda6 on / type ext3 (rw,relatime,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
/proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
varrun on /var/run type tmpfs (rw,nosuid,mode=0755)
varlock on /var/lock type tmpfs (rw,noexec,nosuid,nodev,mode=1777)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
lrm on /lib/modules/2.6.27-11-generic/volatile type tmpfs (rw,mode=755)
securityfs on /sys/kernel/security type securityfs (rw)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
gvfs-fuse-daemon on /home/martina/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=martina)
/dev/scd0 on /media/cdrom0 type iso9660 (ro,nosuid,nodev,utf8,user=martina)
etc/fstab:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
# /dev/sda6
UUID=ef6a1d3d-dc1a-4773-9f97-33108ad129c8 /               ext3    relatime,errors=remount-ro 0       1
# /dev/sda7
UUID=e95ff8b3-673c-4081-bbf1-5149ab48b136 none            swap    sw              0       0
/dev/scd0       /media/cdrom0   udf,iso9660 user,noauto,exec,utf8 0       0

check this out
http://img83.imageshack.us/img83/824...d200903095.png

Last edited by BlackHole051; 03-09-2009 at 10:51 AM.
 
Old 03-09-2009, 10:50 AM   #7
Agrouf
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: LFS
Posts: 1,596

Rep: Reputation: 80
Your new fstab should be:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
# /dev/sda6
/dev/sda6 /               ext3    relatime,errors=remount-ro 0       1
# /dev/sda7
/dev/sda7 none            swap    sw              0       0
/dev/scd0       /media/cdrom0   udf,iso9660 user,noauto,exec,utf8 0       0
Test to see if that boot fast and modify your /boot/grub/menu.lst to replace all instances of UUID=ef6a1d3d-dc1a-4773-9f97-33108ad129c8 to /dev/sda6
 
Old 03-09-2009, 10:53 AM   #8
BlackHole051
LQ Newbie
 
Registered: Mar 2009
Posts: 8

Original Poster
Rep: Reputation: 0
i pasted your code into etc/fstab but i don't have permission to save

ok, srry, google answered:
Quote:
cd to_directory_of_file
sudo gedit name_of_file

Last edited by BlackHole051; 03-09-2009 at 10:56 AM.
 
Old 03-09-2009, 10:55 AM   #9
Agrouf
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: LFS
Posts: 1,596

Rep: Reputation: 80
try:
sudo gedit /etc/fstab
 
Old 03-09-2009, 11:01 AM   #10
BlackHole051
LQ Newbie
 
Registered: Mar 2009
Posts: 8

Original Poster
Rep: Reputation: 0
i'm going to reboot again

you have been great help!
(linux users are lucky to have people like you)

i'm going to thanks once again after reboot. cya
 
Old 03-09-2009, 11:10 AM   #11
BlackHole051
LQ Newbie
 
Registered: Mar 2009
Posts: 8

Original Poster
Rep: Reputation: 0
Talking

SOLVED

BEFORE 95s
AFTER 35s
(chart was made with intrepid)

many thanks!!!

Last edited by BlackHole051; 03-09-2009 at 11:11 AM.
 
  


Reply

Tags
hp, startup, ubuntu



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
Ubuntu: slow navigation in folders, slow visualization of photos, blocks.... All I Want Linux - Newbie 5 10-05-2008 09:59 AM
Ubuntu hardy is very slow at startup welder_tim Linux - Desktop 1 08-07-2008 06:44 PM
Startup is very slow darknails Fedora 2 07-08-2007 02:51 PM
Slackware program startup times slow compared to ubuntu vdemuth Slackware 27 04-19-2007 03:39 PM
Slow startup sdat1333 Mandriva 2 11-24-2004 09:38 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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