SUBSCRIBE FOR FREE!
If you do not currently receive LSM you can easily do so totally free of charge by clicking the 'subscribe' button and entering your email details on the following page.
|
Welcome
Ed – Jonathan Burnside
Welcome to volume 3, issue 7 of LSM. It is July the weather has picked up and we would more than likely prefer to be on the beach instead of in front of the computer in the office!
In our first article we give you 5 tips for buying the right laptop, I’m sure leaving your desktop PC behind to venture into the garden to work has crossed you mind at least once in the past few weeks?! So of course, here we are to help you choose which one would be best for you.
In our second article we look at 'Device Driver Basics'. You may have heard people talking about 'drivers' for your PC and you may know your computer probably uses them, but you haven’t a clue what they are and how they can fix your computer... so read on and find out more!
We hope this issue is useful and helps you to get out the office, even if it means you can now take your work on holiday with you! Remember if any of your PC devices stop working, it could be due to the driver required. |
5 tips for buying the right laptop computer
by
John San Filippo
It's easy to be intimidated by all the laptop models on the market today. There are literally dozens and dozens in every price range.
The key to finding the right one for you is to step back and consider exactly how you plan to use your laptop. When you define what you need before you go shopping, buying the right machine becomes much easier.
Here are 5 basic factors to consider:
1. Size
In the world of mobile computing, size definitely matters. The size of a laptop affects two key areas: portability and display size.
If you're always on the go and will be using your computer only in short bursts, a so-called ultralight will save you some shoulder strain.
On the other hand, if you're going to spend hours in front of your laptop, a larger display may be in order.
Today, some laptop displays exceed 17 inches, rivaling the display size of many desktop systems. The down side is that these monsters can easily weigh three times as much as an ultralight.
2. Hard Drive
Speaking of size, what about the size of the hard drive? One way to approach this issue is to ask yourself the following question:
Will this be my primary computer, or will it supplement my desktop system?
If the former, you should look for a bigger hard drive - 60 GB or more.
If the latter, you may be able to make it with a 20-30 GB hard drive.
But even this isn't absolute.
If, for example, you plan to copy a huge MP3 library from your desktop system to your laptop to make your music library portable, you'd be well advised to err on the side of too big.
3. Memory
In determining the right amount of system memory, or RAM, take a look at the ways in which you intend to use your laptop:
If your needs are somewhat mundane - email, spreadsheets, word processing, etc. - 256 MB of RAM should be plenty. This is a common configuration for many laptops, so it means you probably won't need to spend extra for more RAM.
On the flip side, if you're an aspiring mobile digital photographer or videographer, you should stuff your laptop with as much RAM as it can hold.
In fact, exactly how much RAM your laptop can hold may in part drive your purchase decision. Applications for editing and manipulating multimedia content are notorious resource hogs.
4. Network Connections
Thanks in no small part to the Internet, computing in the 21st century relies heavily on being connected:
Connected to the Internet, connected to a corporate network, connected to a wireless network, connected to a home network, connected to an online service.
Your life will be easier if you buy a laptop that includes built-in means to connect to them all.
5. Price
If you're considering a laptop, you're probably wondering how much money you'll need to spend.
A few years ago, you'd be hard-pressed to find one for under £1100. Today, there are plenty of laptops to be had for under £550.
What's more, most of the major manufacturers offer a variety of financing options.
Laptop prices have come down, to be sure. However, a laptop still represents a fairly major purchase for most people.
If you take the time to search for a laptop that meets your specific needs, you should get many years of use and enjoyment from this important investment.
The author, computer journalist John San Filippo, has written the definitive guide for buying a laptop computer at: http://HowToBuyALaptop.com You can also pick up your complimentary ebook titled "Computer Tips From The Experts" at: http://howtobuyalaptop.com/laptop-tips.htm
|
Device Driver Basics
by Stephen Bucaro
Most people understand that the "hardware" part of their computer is the real physical parts, like the keyboard, mouse, modem, hard drive and so on. They understand that the "software" is computer bits stored on the hard drive, CD-ROM, or other storage media. But most people are a little hazy about exactly what a "driver" is.
In this article, I'm going to reveal in plain English what a driver is, why we need drivers, and exactly where the drivers are hiding. To give you a basic understanding, I'm going to go back, way back, to the early days of computers.
The Early Days
The year is 1981 and the world is in the midst of a severe resession. IBM's main frame business has slowed and the company is losing money. Up until now they had been laughing at the array of microcomputers on the market: Atari, Commodore, Sinclair. Toys really, mostly used to play computer games.
The problem was, these "toys" were selling like hot cakes. IBM had to get into that market and get into it fast. They didn't have time to design and build a computer complete enough to compete in the market, so they built an "open system". They used commonly available electronic components and they published every design detail (including the code), and they even provided plug in slots so that others could build components for their computer.
And people did provide components for the IBM PC. They provided video cards, memory expansion cards, input-output port cards, game port cards, hard disk interface cards, and much more. How were all these various devices able to interface with the PC's operating system? That's where a "driver" comes in.
A hardware device is constructed with various electronic components using various control signals, but the software interface to the operating system is standardized. A device's interface to the operating system must follow the interface specification. A driver is a piece of software that translates the hardware's control signals to signals that the operating system expects, and translates signals from the operating system to the hardware's control signals.
When the computer is started up, it would look in the "system" directory for files with the extension ".drv" and load them into memory. Specific files like autoexec.bat, config.sys, and win.ini were used to inform the operating system about drivers. Hardware would be configured through these files, or through jumpers located on the device itself.
The driver specification evolved along with the PC. Today when a PC starts, it executes the program ntdetect.com which queries the hardware components and builds the registery key HKEY_LOCAL_MACHINE\HARDWARE\SYSTEM\CurrentControlSet. This key exists only in memory and is created each time the computer boots. If all the drivers are loaded successfully, a copy of the key is saved as ControlSet00X.
Under the registery key CurrentControlSet, the subkey "Enum" contains a subkey for each hardware device on the computer. Each device key contains fields for Hardware ID, Driver ID, Device Parameters, and other configuration data. The 32-bit drivers are files with the extension ".sys" and can be found in the folder C:/winnt/system32.
Driver Signing
Microsoft has been the brunt of much criticism because of the poor reliability of the Windows Operating System. I feel that much of this criticism is justified. On the other hand, as I described in part 1 of this article, the PC was designed by IBM as an "open" system. Anyone can sell a hardware device (or software) for the PC. Should Microsoft be held responsible for the quality from a third-party?
As I described in Part 1 of this article, the operating system doesn't interface directly to a hardware device. There is a piece of software called a "driver" that translates the hardware's control signals to signals that the operating system expects, and translates signals from operating system to the hardware's control signals. Obviously, the hardware manufacturer provides the driver.
Because the driver works between the operating system and the hardware, a bug in the driver can cause a serious problem. Many of the problems with Windows have come from bugs in third-party drivers that Microsoft had nothing to do with. For this reason, Microsoft created a Hardware Quality Lab to test drivers. A hardware manufacturer can submit their driver for testing, and if it is passes rigorous compatibility testing, it receives Microsoft's digital signature.
You may have received a message during the installation of a hardware device warning that the driver was not signed. Why would a hardware manufacturer fail to have their driver certified by Microsoft? The computer hardware market is very competitive and the manufacturer might want to bring a new product to market before thorough testing can be completed. Or maybe they don't want to or can't afford to pay Microsoft for certification. The question is, should you click on the "Continue" button to install the unsigned driver?
In my experience, I have never been able to trace a problem to an unsigned driver. If it's your home computer and you performed a back-up recently, go ahead and install the unsigned driver. If it's a computer on a corporate network, you may want to back-out of the installation and see if you can locate a signed driver first. Many times a manufacturer will release a product with an unsigned driver, then later provide a signed driver as a free download from their website.
If you decide to go ahead and install an unsigned driver, you can always update the driver later. If your computer works with the unsigned driver, I would not update the driver. When it comes to updating drivers (or the computers BIOS) I go by the old saying, "if it ain't broke don't fix it".
To update a driver, select Start | Settings | Control Panel and double-click on the "System Properties" Utility. In the "System Properties" Utility, select the "Hardware" tab and click on the "Device Manager" button. In the "Device Manager" window, right-click on the device in the list and select "Properties" in the popup menu. In the "Properties" dialog box, select the driver tab and click on the "Update Driver..." button.
In the "Properties" dialog box driver tab, you may have noticed the "Roll Back Driver" button. If your computer has problems with the new drive, you can click on the "Roll Back Driver" button to roll back to the previous the driver. Driver roll back saves only one previous driver, so if you update a driver, then update it again, the original driver is gone. If the computer has problems with the new driver, always roll back to the original driver before trying a different one. That way you'll always have the original driver to roll back to.
|