What makes a computer slow?

3

0

Why does it take so long to start up a computer or run an application? What's the bottleneck? How can we improve it?


Well, I mean, what takes so much time to boot, or run an application?

So far, I got a pretty good answer:

1.The Hard disk is too slow.

Anything else?

Qian

Posted 2010-08-17T07:23:07.423

Reputation: 411

2

Unless you edit your question to specify which program in particular is slow on your computer or what are your computer specs, this question in such a general state sounds very similar to Why does hardware get slower with time?.

– Gnoupi – 2010-08-17T07:37:00.960

Answers

10

Today, the bottleneck is the harddisk. The main memory is about 10-1'000 times slower than the internal caches of the CPU. The harddisk currently is about 1'000 to 1'000'000 times slower than that. On the negative side, applications get bigger all the time (more fancy icons, more functionality), take more memory (so you need to swap to disk -> slow).

Aaron Digulla

Posted 2010-08-17T07:23:07.423

Reputation: 6 035

I feel this should say the bottleneck is most often the hard disk. – PJTraill – 2017-06-30T18:36:29.937

This is a valid point. Also, it gets even worse if the filesystem is heavily fragmented and big files must be loaded at start. – vtest – 2011-10-30T09:43:44.480

3

Some good answers to most of your question. I'll address this part-

How can we improve it?

Here is a list in increasing rough order of cost.

Finding the optimal video driver for your application, especially if you have a non-Intel graphics adapter like Matrox, Nvidia or ATi. Sometimes the optimal one is not the latest one.

Minimize autoload and system tray clutter. Remove unused drivers and applications. Clean the registry with a tool such as CCleaner. If your Windows install is more than 2 years old, consider a backup and reinstall.

Defrag your hard disk. Check your hard disk for retry errors and replace if degraded.

Having more RAM than O/S + Application can avoid swapping to disk.

If you are running Vista, upgrade to Windows 7 (speed improvements in most cases, especially boot time).

Upgrade from a 5,400 or 5,700 RPM hard disk to a 7,400 or 10,000 RPM HDD.

An SSD (Solid State Hard Disk) can improve boot time and application load time, by replacing the slowest part of the system (the hard disk) with storage with a retrieval time more in line with the rest of the system. You can still use your Hard Disk for data storage, as SSD's are merely comparable in Write Time, and may have longevity issues if written to constantly.

Upgrade the CPU to the fastest available for your given socket (may not be an option for soldered systems like some laptops).

Upgrade from a single disk to a stripped array on a caching controller such as 3Ware.

kmarsh

Posted 2010-08-17T07:23:07.423

Reputation: 4 632

I completely turn off paging in windows and it helps a lot. – Joe Phillips – 2010-08-19T14:54:36.477

@Joe Phillips: In some situations, turning paging off can make the computer slower - Windows pages early, so stuff that you don't need gets paged out and your apps have more free RAM. The same is true for setting the page file to a fixed size - this can confuse Windows when it tries to optimize the paging settings. – Aaron Digulla – 2011-10-31T08:30:54.013

1

This looks like very very broad and general question. You have not specified your OS. So I will assume that you use one of the Microsoft systems. All of them can be tuned a bit. You can switch off some services using services.msc Here is a description of Windows XP services. http://bloggerdigest.blogspot.com/2007/01/disable-unwanted-windows-xp-services.html You do not need helps/schedules. One hint if you do not understand if service is needed make it run manually not turned off. You can make a size of swap file constant - decreases boot time. Remove many many tray applications (msconfig or use startup.cpl) Use lighter anti-virus like NOD 32/other instead heavy big and slow Symantec.

Hardware boost can be done by switching hard drive to SSD and using it only for operating system, data stored on traditional HDD. In case of Linux system rules are similar - investigate boot sequence. Switch off not needed services basing on rule if I do not need that service it does not have to run.

Switch off wallpaper and complex GUI layout make it barebone like AK-47 pure functionality. Remove skype/IM from autorun you can launch it when system starts up.

Stani

Posted 2010-08-17T07:23:07.423

Reputation: 609

1

It's not just that the hard disk is slow, but often that multiple programs are competing simultaneously for access to the hard disk, and that makes it EXTRAORDINARILY slow!

Worst offenders are systems with more than 1 realtime antivirus/malware scanner running simultaneously. Pick 1 good antivirus (like Microsoft Security Essentials - free) and stick with that one. Be aware that Windows 7 comes with its own Windows Defender that could compete against a third party AV product. If you install MSE, it upgrades and overtakes Windows Defender.

Any other software like disk indexers, that runs all the time and constantly accesses the HD, would be a primary culprit of computer slowness.

Syclone0044

Posted 2010-08-17T07:23:07.423

Reputation: 1 222

0

Increasing your additional devices like ,G-card,Sound card,DVD Drive,TV-Tuner card ,Inbuilt Modem ,WiFi Adapter etc., might slowdown our computer during start-up . Because all the devices mentioned above loads their driver first before we see our log-in screen of windows .

Secondly the RAM plays important roll in loading these drivers and services .So low memory will take more time to start-up.

And the processor speed important to start a application fast ,and multitasking .

Desingh

Posted 2010-08-17T07:23:07.423

Reputation: 775