Results 1 to 10 of 10
i have been using ubuntu since a month now and i find that it runs much slow than it used to
therefor i don't know how to speed it up
...
- 03-10-2009 #1Just Joined!
- Join Date
- Feb 2009
- Posts
- 31
ubuntu runs really slow
i have been using ubuntu since a month now and i find that it runs much slow than it used to
therefor i don't know how to speed it up
i deleted my firefox history
i'm sure there is more to delete
my computer is pretty fast, i have a single core ht 3GHz 2gb of ram. XP used to run pretty quick but ubuntu is running slower than windows
i was told linux loads much faster
therefore can i get some help and or explanation
- 03-10-2009 #2
Execute this
Post output here.Code:sudo lspci | grep -i vga grep -i driver /etc/X11/xorg.conf uname -a df -h
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-10-2009 #3Just Joined!
- Join Date
- Feb 2009
- Posts
- 31
[sudo] password for ahmad:
00:02.0 VGA compatible controller: Intel Corporation 82915G/GV/910GL Integrated Graphics Controller (rev 04)
ahmad@ahmad-desktop:~$ grep -i driver /etc/X11/xorg.conf
Driver "kbd"
Driver "mouse"
ahmad@ahmad-desktop:~$ uname -a
Linux ahmad-desktop 2.6.24-23-generic #1 SMP Mon Jan 26 00:13:11 UTC 2009 i686 GNU/Linux
ahmad@ahmad-desktop:~$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 182G 43G 131G 25% /
varrun 1010M 112K 1010M 1% /var/run
varlock 1010M 0 1010M 0% /var/lock
udev 1010M 76K 1010M 1% /dev
devshm 1010M 12K 1010M 1% /dev/shm
lrm 1010M 39M 971M 4% /lib/modules/2.6.24-23-generic/volatile
gvfs-fuse-daemon 182G 43G 131G 25% /home/ahmad/.gvfs
/dev/sdb1 233G 41G 192G 18% /media/disk
ahmad@ahmad-desktop:~$
- 03-10-2009 #4
Execute this
Above command will open xorg.conf file in nano editor.Code:sudo apt-get clean all sudo nano /etc/X11/xorg.conf
Add Driver "vesa" in Video Card section.
Press Ctrl+X, Y and hit Enter key to save file.Code:Section "Device" Identifier "Configured Vidoe Card" Driver "vesa" EndSection
Reboot machine.
There are a lot of unnecessary services that start during boot up process and you can stop those easily to decrease boot up time and increase overall performance.
Execute this
Post output here.Code:ls /etc/rc2.d
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-10-2009 #5Just Joined!
- Join Date
- Feb 2009
- Posts
- 31
GNU nano 2.0.7 File: /etc/X11/xorg.conf
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection
Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
EndSection
and how do i excecute that command?
- 03-10-2009 #6Which command? xorg.conf is using "vesa" driver only. Did you edit xorg.conf file?and how do i excecute that command?
Is there any performance differnece now?
Execute this command in Terminal and post output here
Code:ls /etc/rc2.d
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-10-2009 #7Just Joined!
- Join Date
- Feb 2009
- Posts
- 31
hmad@ahmad-desktop:~$ ls /etc/rc2.d
README S20apport S30gdm
S01policykit S20cupsys S89anacron
S05vbesave S20hotkey-setup S89atd
S10acpid S20nvidia-kernel S89cron
S10powernowd.early S20powernowd S90binfmt-support
S10sysklogd S20rsync S98usplash
S10xserver-xorg-input-wacom S20winbind S99acpi-support
S11klogd S24dhcdbd S99laptop-mode
S12dbus S24hal S99rc.local
S18avahi-daemon S25bluetooth S99rmnologin
S20apmd S25pulseaudio S99stop-readahead
how do i execute this??
yes i did edit xorg.conf file and i see a difference!!
- 03-11-2009 #8
Stop these services :
How to stop these :S20apport
S20cupsys
S89anacron
S89atd
S10acpid
S20nvidia-kernel
S89cron
S20rsync
S10xserver-xorg-input-wacom
S99acpi-support
S99laptop-mode
S25bluetooth
S20apmd
Replace S with K and (100 - two digit number) in filenames.
Execute this to stop S20apport
Do the same with other files listed above.Code:cd /etc/rc2.d sudo mv S20apport K80apport
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-12-2009 #9Just Joined!
- Join Date
- Feb 2009
- Posts
- 31
- 03-12-2009 #10
Do not delete files. You should rename those using mv command as I suggested in earlier post.
Code:cd /etc/rc2.d sudo mv S20apport K80apport
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First


Reply With Quote
