Best place to know about technology

Friday, January 13, 2017

On 5:07 PM by Unknown in    No comments

What is Linux?

Linux is the best-known and most-used open source operating system. As an operating system, Linux is software that sits underneath all of the other software on a computer, receiving requests from those programs and relaying these requests to the computer’s hardware.
For the purposes of this page, we use the term “Linux” to refer to the Linux kernel, but also the set of programs, tools, and services that are typically bundled together with the Linux kernel to provide all of the necessary components of a fully functional operating system. Some people, particularly members of the Free Software Foundation, refer to this collection as GNU/Linux, because many of the tools included are GNU components. However, not all Linux installations use GNU components as a part of their operating system. Android, for example, uses a Linux kernel but relies very little on GNU tools.

How does Linux differ from other operating systems?

In many ways Linux is similar to other operating systems you may have used before, such as Windows, OS X, or iOS. Like other operating systems, Linux has a graphical interface, and types of software you are accustomed to using on other operating systems, such as word processing applications, have Linux equivalents. In many cases, the software’s creator may have made a Linux version of the same program you use on other systems. If you can use a computer or other electronic device, you can use Linux.
But Linux also is different from other operating systems in many important ways. First, and perhaps most importantly, Linux is open source software. The code used to create Linux is free and available to the public to view, edit, and—for users with the appropriate skills—to contribute to.
Linux is also different in that, although the core pieces of the Linux operating system are generally common, there are many distributions of Linux, which include different software options. This means that Linux is incredibly customizable, because not just applications, such as word processors and web browsers, can be swapped out. Linux users also can choose core components, such as which system displays graphics, and other user-interface components.

What is the difference between Unix and Linux?

You may have heard of Unix, which is an operating system developed in the 1970s at Bell Labs by Ken Thompson, Dennis Ritchie, and others. Unix and Linux are similar in many ways, and in fact, Linux was originally created to be similar to Unix. Both have similar tools for interfacing with the systems, programming tools, filesystem layouts, and other key components. However, Unix is not free. Over the years, a number of different operating systems have been created that attempted to be “unix-like” or “unix-compatible,” but Linux has been the most successful, far surpassing its predecessors in popularity.

Who uses Linux?

You’re probably already using Linux, whether you know it or not. Depending on which user survey you look at, between one- and two-thirds of the webpages on the Internet are generated by servers running Linux.
Companies and individuals choose Linux for their servers because it is secure, and you can receive excellent support from a large community of users, in addition to companies like Canonical, SUSE, and Red Hat, which offer commercial support.
Many of the devices you own probably, such as Android phones, digital storage devices, personal video recorders, cameras, wearables, and more, also run Linux. Even your car has Linux running under the hood.

Who “owns” Linux?

By virtue of its open source licensing, Linux is freely available to anyone. However, the trademark on the name “Linux” rests with its creator, Linus Torvalds. The source code for Linux is under copyright by its many individual authors, and licensed under the GPLv2 license. Because Linux has such a large number of contributors from across multiple decades of development, contacting each individual author and getting them to agree to a new license is virtually impossible, so that Linux remaining licensed under the GPLv2 in perpetuity is all but assured.

How was Linux created?

Linux was created in 1991 by Linus Torvalds, a then-student at the University of Helsinki. Torvalds built Linux as a free and open source alternative to Minix, another Unix clone that was predominantly used in academic settings. He originally intended to name it “Freax,” but the administrator of the server Torvalds used to distribute the original code named his directory “Linux” after a combination of Torvalds’ first name and the word Unix, and the name stuck.

How can I contribute to Linux?

Most of the Linux kernel is written in the C programming language, with a little bit of assembly and other languages sprinkled in. If you’re interested in writing code for the Linux kernel itself, a good place to get started is in the Kernel Newbies FAQ, which will explain some of the concepts and processes you’ll want to be familiar with.
But the Linux community is much more than the kernel, and needs contributions from lots of other people besides programmers. Every distribution contains hundreds or thousands of programs that can be distributed along with it, and each of these programs, as well as the distribution itself, need a variety of people and skill sets to make them successful, including:
  • Testers to make sure everything works on different configurations of hardware and software, and to report the bugs when it does not.
  • Designers to create user interfaces and graphics distributed with various programs.
  • Writers who can create documentation, how-tos, and other important text distributed with software.
  • Translators to take programs and documentation from their native languages and make them accessible to people around the world.
  • Packagers to take software programs and put all the parts together to make sure they run flawlessly in different distributions.
  • Evangelists to spread the word about Linux and open source in general.
  • And of course developers to write the software itself.

How can I get started using Linux?

There’s some chance you’re using Linux already and don’t know it, but if you’d like to install Linux on your home computer to try it out, the easiest way is to pick a popular distribution that is designed for your platform (for example, laptop or tablet device) and give it a shot. Although there are numerous distributions available, most of the older, well-known distributions are good choices for beginners because they have large user communities that can help answer questions if you get stuck or can’t figure things out. Popular distributions include Debian, Fedora, Mint, and Ubuntu, but there are many others.

Wednesday, January 11, 2017

On 1:02 AM by Unknown in ,    No comments


In the Creators Update, Windows 10’s Bash shell now allows you to run Windows binaries and standard Command Prompt commands, right from Bash. You can run both Linux and Windows programs from the same Bash shell, or even incorporate Windows commands into a Bash script.
This only works in the Creators Update—you can’t do this on the current Anniversary Update. So if you want to do this, you’ll need to be running the Insider Preview builds until the Creator’s Update is released to everyone.
What You Need to Know
Here are some basic details you need to know about this feature:
  • User Account: Programs launched from the Bash shell will run as if they were launched by the current Windows user account.
  • Permissions: These programs will have the same permissions as the Bash.exe process. So, if you want these commands to have Administrator access, you’ll need to run the Bash shell as Administrator.
  • Working Directory: Windows programs share the same “working directory” as the Bash shell. So, if you run a command that lists the contents of the current directory, it will list the contents of the current working directory in the Bash shell. Use the cd command to change working directories.
With that in mind, let’s take a look at how to run a program.
How to Run a Windows Program
To run a Windows program, enter the path to the program’s .exe file in teh Bash shell. Remember that your Windows C: drive is available at /mnt/c in Bash. The Bash environment is also case-sensitive, so you have to specify the correct capitalization.
Let’s say you wanted to launch the Ping utility located at C:\Windows\System32\PING.EXE. You’d run the following command:

/mnt/c/Windows/System32/PING.EXE

The following command wouldn’t work, because Bash is case-sensitive:

/mnt/c/windows/system32/ping.exe

This is a bit more complicated if the path contains complex characters like spaces and brackets, like the Program Files folders. You have to “escape” spaces, brackets, and other complex characters by prefixing them with a “\” character.
For example, let’s say you wanted to run the Internet Explorer program located at C:\Program Files (x86)\Internet Explorer\iexplore.exe. You’d have to run the following command in Bash:

/mnt/c/Program\ Files\ \(x86\)/Internet\ Explorer/iexplore.exe

Note the “\” before the space and bracket characters. These characters must be “escaped” or Bash won’t realize the characters are part of a file path.
How to Pass an Argument to a Command
The Bash shell passes arguments directly to the commands you execute.
For example, if you wanted to ping example.com, you’d run:

/mnt/c/Windows/System32/PING.EXE example.com

Or, if you wanted to open the Windows hosts file in Notepad, you’d run:

/mnt/c/Windows/System32/notepad.exe "C:\Windows\System32\drivers\etc\hosts"


You use the standard Windows file path when passing a file path directly to a Windows program. That’s because Bash passes the argument directly. Notepad.exe and other Windows programs expect a Windows file path.
How to Run a Built-in Command
Some Windows commands aren’t .exe files, but are built into the Command Prompt itself. For example, this includes the dir command you might normally run in a Command Prompt. To run such a command, you need to run the cmd.exe binary associated with the Command Prompt and pass it the command as an argument with /C, like so:

/mnt/c/Windows/System32/cmd.exe /C command

For example, to run the dir command built into the Command Prompt, you’d run the following command:

/mnt/c/Windows/System32/cmd.exe /C dir
How to Add Directories to the Path
The Windows Services for Linux environment treats Windows executables similar to the way it treats Linux binaries. This means that you can add a directory containing .exe files to the path and then execute those .exe files directly. For example, to add the System32 directory to your path, you’d run:

export PATH=$PATH:/mnt/c/Windows/System32
You could then run Windows .exe files located in the System32 folder directly, like so:
PING.exe example.com
notepad.exe
cmd.exe /C dir


How to Pipe the Output of One Command to Another
The output of a Windows command can be piped to a Linux command, and vice versa. For example, you can use the ipconfig.exe -all command to list details about your network interfaces and pipe it to the Linux grep command to search the output. For example, to list all information about your connection and search for sections matching “IPv4 Address”, you’d run:

/mnt/c/Windows/System32/ipconfig.exe -all | grep "IPv4 Address"

That’s the basic process. These commands will also work when incorporated into a Bash script, so you can write a Bash script that incorporates both Windows commands and Linux utilities. If it runs in the Bash shell, it will work in a Bash script.
And, if you want to go the other way, you can use the “bash -c” command to run Bash commands from the standard Windows Command Prompt.

Monday, January 9, 2017

On 1:25 AM by Unknown in    No comments
This document has been created to give you a better understanding of how the personal computer works and what it does each time you press the power button.

Powering on the computer

When you first press the power button, the computer sends a signal to the computer power supply, which converts the alternating current (AC) to a direct current (DC). This supplies the computer and its components with the proper amount of voltage and electricity.
Once the computer and its components have received ample power and the power supply reports no errors it sends a signal (using transistors) to the motherboard and the computer processor (CPU). While this is happening, the processor will clear any leftover data in the memory registers and give the CPU program counter a F000 hexadecimal number. This number is the location of the first instruction and tells the CPU that it's ready to process the instructions contained in the basic input/output system (BIOS).

BIOS and the POST

When the computer first looks at the BIOS, it begins the power-on self-test (POST) sequence to make sure the components in the computer are present and functioning properly. If the computer does not pass any of these tests, it will encounter an irregular POST. An irregular POST is a beep code that is different from the standard one or two beeps. For example, an irregular POST could generate no beeps at all or a combination of different beeps to indicate the cause of the failure.
If the computer passes POST, it looks at the first 64-bytes of memory located in the CMOS chip, which is kept alive by the CMOS battery even when the computer is turned off. This chip contains information such as the system time and date and information about all the hardware installed in your computer.
After loading the CMOS information, the POST will begin inspecting and comparing the system settings with what is installed in the computer. If no errors are found it will then load the basic device drivers and interrupt handlers for hardware such as the hard drive, keyboard, mouse, floppy drive. These basic drivers allow the CPU to communicate with these hardware devices and allow the computer to continue its boot process.
Next, the POST will check the real-time clock (RTC) or system timer and the computer system bus to make sure both of these are properly working on the computer. Finally, you'll get a picture on your display after the POST has loaded the memory contained on the display adapter and has made it part of the overall system BIOS.
Next, the BIOS checks to see if it's performing a cold boot or warm boot (reboot) by looking at the memory address 0000:0472. If it sees 1234h the BIOS knows that this is a reboot and skips the remainder of the POST steps.
If 1234h is not seen, the BIOS knows that this is a cold boot and will continue running additional POST steps. Next, it tests the computer memory (RAM) installed in the computer by writing to each chip. With early computers, you can see it performing the step as it counts the total installed memory as it's booting.
Finally, the POST will send signals to the computer floppy, optical, and hard drive to test these drives. If all drives pass the test, the POST is complete and instruct the computer to start the process of loading the operating system.

Booting the operating system

After the computer has passed the POST, the computer will start the boot process. This process is what loads the operating system and all of it's associated files. Because Microsoft Windows is the most commonly used operating system, this section will cover the process of loading Microsoft Windows.
The BIOS first hands control over to the bootstrap loader, which looks at the boot sector of the hard drive. If your boot sequence in CMOS setup is not setup to look at the hard drive first, it may look at the boot sector on any inserted floppy disk drive or optical disc first before doing this.
In this example, the Microsoft Windows XP NT Loader (NTLDR) is found on the boot sector and tells the computer where to find the remaining code on the hard drive. Next, Windows loads the ntdetect.com file, which displays the Windows splash screen and loads the Windows Registry. After loading the Registry, Windows begins to load dozens of low-level programs that make up the operating system into memory. Many of the initially loaded programs are what allow Windows to communicate with the essential hardware and other programs running on the computer.
After the Registry has loaded the initial basic hardware devices, it begins to load Plug-and-Play devices, PCI, and ISA devices. After loading all these devices, Windows loads full support of the hard drive, partitions, and any other disk drives and then moves to all other drivers that have been installed.
Finally, after successfully completing the above steps any additional required services are loaded and Windows starts.

Hardware devices communicating with the computer

After the computer has loaded the operating system, hardware attached to the computer must be able to communicate with the CPU. Hardware communication is done by using an interrupt request (IRQ). Each time hardware needs the attention of the computer the interrupt controller sends the request (INTR) to the CPU to stop what it is doing to process the request. Anything that was being currently done by the CPU is put on hold and stored as a memory address in the memory stack and is returned to after the interrupt request is processed.
On 1:17 AM by Unknown in    No comments
This document is for anyone interested in learning more about their computer and how it works. Here you will find all related documents throughout Computer Hope that can teach you everything you want to know about your computer.

Computer Overview

Understanding each of the major hardware components that make up a computer is always a good first step in learning more about computers. To learn more about each of the components in the computer, its connections, as well as a full explanation of each of the internal parts of a computer.

15 computer topics

  1. Transistors - The computer contains millions of transistors, which are used to create machine language using logic gates that turn on and off the circuits.
  2. Machine language - All computers and electronic devices communicate in binary, which is a series of 0's and 1's or Off and On electrical signals. All software written on your computer is created in a high-level programming language that humans can understand. When complete, the program is compiled into a low-level machine language that computers understand.
  3. ASCII codes - Each binary 0 or 1 is considered a bit and each number, letter, or other character is made up of eight bits (one byte). A common method for storing and editing text is done with ASCII codes, which is one byte of binary. For example, the lowercase letter "a" has a ASCII code decimal value of 97, which is 01100001 in binary.
  4. Motherboard - The Motherboard is the largest circuit board in the computer that holds and connects everything together. Without the motherboard, components like your processor and memory could not communicate with each other.
  5. Computer memory - Not to be confused with disk storage, the computer memory (RAM) is volatile memory and is used to store currently running applications. When the computer is turned off, all data in the memory is lost.
  6. Computer disk storage - A non-volatile type of memory, disk storage like a hard drive is what stores your information even when the computer is turned off. All of your personal files, documents, songs, photos, etc. are stored in a storage device.
  7. ROM - Another type of memory, read-only memory (ROM) is a memory chip that has data which can only be read. Most computers today have a programmable read-only memory (PROM), which is still read-only, but can be re-programmed if needed through a firmware update.
  8. Memory capacity - All memory and storage has a total capacity that is written using abbreviations such as KB, MB, GB, and TB.
  9. Processor - The Central Processing Unit (CPU) is the component responsible for processing all instructions from software and hardware.
  10. Software and Hardware - Software is instructions and code installed into the computer, like the Internet browser you're using to view this page. Hardware is a physical device you can touch, like the monitor you're using to display this page.
  11. Input/Output - A computer works with a human by inputting data using an input device such as a keyboard, having the processor process that data, and then displaying the output on an output device such as a monitor. The printer is also another output device and is what allows you to get a hard copy of documents and pictures stored on the computer.
  12. Expansion cards - An expansion card is a card that can be added to the computer to give it additional capabilities. A video card, modem, network card, and sound card are all examples of expansion cards. However, many computers may also have on-board devices, such as a sound card and network card that are built onto the motherboard. For a laptop computer, additional cards are added into the PC Card slot.
  13. Programming - All software running on the computer has been created using a programming language by a computer programmer.
  14. Operating system - Every computer must have an operating system for software to communicate with the hardware. For example, most IBM compatible computers run the Microsoft Windows operating system and have the option to run alternative operating systems, such as a Linux variant. Apple computers only run macOS.
  15. Network - Computers communicate with other computers over a network using a network interface card (NIC) or Wi-Fi that connects to a router. There are two primary types of networks: a local area network (LAN) and a wide area network (WAN). The Internet is also considered a network, which uses the TCP/IP protocol.

How does a computer work?

Knowing how the computer works after you press the power button is also an excellent way to learn more about your computer.

How to use a computer

If you are new to using a computer and need additional help or want to gain a better understanding on how to use a computer see our how to use a computer document.

Computer history

The history of computers and how they have progressed over the years is another great way get a better understanding of computers. We've listed several thousand key events in our computer history section and list hundreds of computer pioneers who have made the computer industry what it is today.

Keep informed

Computers and their hardware and related software are constantly evolving. Try to keep as up-to-date as possible by reading computer related news, blogs, RSS feeds, newsletters, forums, and following computer people on social networking sites like Twitter.


Online free books

There are hundreds of thousands of online computer books and computer related e-books that can be downloaded. See the eBook definition for a full listing of places to find books online for free and legally.
On 1:10 AM by Unknown in ,    No comments
Although hacker has many definitions, we believe most people asking this question are interested in malicious coding. Computer Hope does not teach or condone cracking, stealing, breaking, or otherwise illegal cyber activity. However, a hacker may also be defined as someone with an advanced understanding of computers and programming. If you want to learn more about this side of hacker, see the suggestions below.

Learn more about computers

Computer basics - Having a good understanding of a computer, its components, and how it works is essential for anyone, not just hackers.
 
Books - Make it a goal to read computer books that cover your interests. Visiting popular online bookstores, such as Amazon, and browse through the top 100 books on your subject is a great place to start. Audible has an enormous selection of e-books, if you prefer that method of reading.
 
Know the jargon - The computer industry has thousands of acronyms and terms.
 
Participate in forums - The Internet is full of online forums, where thousands of other users participate with each other in answering questions or talking about what they love to do. Participating in these forums will not only allow you to test your understanding of the subject, but also learn from others.
 
Build a computer - If you want to learn more about the hardware aspect of a computer, there is nothing more educational than putting one together. Not only will this help broaden your knowledge of computer hardware, but can help with diagnosing hardware problems, and teach you more about how computers work. There are plenty of websites with instructions on how to build your own machine.

Pick up a programming language

Learning how software works by studying a programming language is an invaluable tool. It teaches you how to create your own programs, and how to debug them. It also gives you a better understanding of how programs work. Our programming language definition lists many of the more popular programming languages.
Also, learning scripting languages such as Perl and PHP and even the basics of HTML web design, are advantageous for anyone interested in setting up and tweaking websites.
If you need more experience with programming, creating your own open source project or helping with another open project can be a helpful learning experience. Creating your own website can also be another great learning experience as it shows the details behind website design and setup.

Learn alternative operating system

Many people today run some version of Microsoft Windows, which is fine for home and office use, but it is also a good idea to learn alternative operating systems such as Linux. Learning a Linux distro not only helps broaden your experience, but is a necessity when wanting to navigate Linux based servers running websites and other web services.
Tip: If you have access to a server that is hosting your website, you may have access to SSH, which allows you to connect to a server and is another good way to learn the Linux command line.
If you are new to Linux, Ubuntu is a good distro for new users to try. This distro of Linux can also be run by booting it off of a CD. However, if you want a full experience, it is better to install Ubuntu or another distro on the computer.
Also, having a good understanding of the Linux command line commands is also a must. See our Linux page for a full listing of commands and the syntax for those commands.

Learn more on networking

Networks run the Internet and connect home or office computers together. It is important to know as much as you can on how networks operate, including basics like an IP address, OSI, port, protocol, router, and subnet mask.
Also, setting up your own home network, especially a network with multiple computers and different operating systems, can be a very helpful.

Related Questions

Will you teach me to hack?
Everything you need to know is mentioned above.
How old do you have to be to hack?
There is no age requirement for someone to become a hacker. It often comes down to that individual's drive and overall knowledge of computers, networking, and programming.
How will I know when I am a hacker?
If you are doing or have already done all of the above, you are consider a hacker. If you are hacking for good you are considered a white hat hacker if you are doing anything malicious you are considered a black hat hacker.
How do I know if someone else is a hacker?
Anyone who is good with computer, programming, and networking may be considered a hacker. However, trying to determine if a malicious hacker hacked into your computer is difficult, since it usually requires a hacker or computer expert to detect malicious activity.

Saturday, January 7, 2017

On 11:46 PM by Unknown in    No comments
Tip: This page only covers an overall slow computer and not a computer that has a slow boot up or slow Internet.
Below are steps for Microsoft Windows users that can help speed up the computer or determine why the computer is running slow.

Reboot

If your computer has not been rebooted recently, make sure to reboot it before following any of the steps below.

Background programs

One of the most common reasons for a slow computer are programs running in the background. Remove or disable any TSRs and startup programs that automatically start each time the computer boots.
Tip: To see what programs are running in the background and how much memory and CPU they are using, open Task Manager. If you are running Windows 7 or higher, run Resmon to get a better understanding of how your computer is being used.
If you have an antivirus scanner on the computer, spyware protection program, or another security utility, make sure it is not scanning your computer in the background. If a scan is in progress, it can decrease the overall performance of your computer. If this is the case, allow the scan to complete, and the computer's performance should improve.

Delete temp files

As a computer runs programs, temporary files are stored on the hard drive. Deleting these temp files can help improve computer performance.
First, we suggest using the Windows Disk Cleanup utility to delete temporary files and other files no longer needed on the computer.
Unfortunately, the Disk Cleanup may not delete every file in the temp directory. Therefore, we also suggest deleting temporary files manually. To do this, open the Start menu and type %temp% in the Search field. In Windows XP and prior, click the Run option in the Start menu and enter %temp% in the Run field. Press Enter and a Temp folder should open. You can delete all files found in this folder and, if any files are in use and cannot be deleted, they can be skipped.

Free hard drive space

Verify that there is at least 200-500MB of free hard drive space. This available space allows the computer to have room for the swap file to increase in size, as well as room for temporary files.
  • Determining available hard drive space.
  • Regaining computer hard drive space.

Bad, corrupted or fragmented hard drive

  • Run ScanDisk, chkdsk, or something equivalent to verify there is nothing physically wrong with the computer's hard drive.
  • Run Defrag to help ensure that data is arranged in the best possible order.
  • Use other software tools to test the hard drive for any errors by looking at the SMART of the drive.

Scan for malware

Today, spyware and other malware is a big cause of many computer problems, including a slow computer. Even if an antivirus scanner is installed on the computer, we recommend running a malware scan on the computer. Use the free version of Malwarebytes to scan your computer for malware.

Scan for viruses

If your computer is infected with one or more viruses, this can cause your computer to run slow. If your computer does not have an antivirus program installed, you can run Trend Micro's free Housecall online utility to scan for viruses on your computer, as well as remove them. It is also recommended that you install an antivirus program for active protection against viruses.

Hardware conflicts

  • Verify that the Device Manager has no conflicts. If any exist, resolve these issues as they could be the cause of your problem.

Update Windows

  • Make sure you have all the latest Windows updates installed on the computer.
  • If you are on the Internet when your computer is slow, make sure all browser plugins are up-to-date. You can also try disabling browser plug-ins to see if one of them is causing the slowness.

Update your drivers

Make sure you have the latest drivers for your computer hardware, especially the latest video drivers. Having out-of-date drivers can cause an assortment of issues, including slow performance.

Reboot computer again

If you have done any of the above steps but your computer is still acting slow try rebooting the computer again at this point.

Memory upgrade

If you have had your computer for more than two years, you may need more memory. Today, we suggest computers have a minimum of 1GB of memory (RAM) for 32-bit system and 2GB for a 64-bit system. By having enough memory for programs to run within memory, your computer will not need to swap information stored in memory to the swap file. If the hard drive light is constantly active, it can be an indication the computer is frequently swapping information between your memory and hard drive.

Hard drive upgrade

One of the biggest bottlenecks of a computer is the hard disk drive. For anyone with a slow computer or just looking for the best component to upgrade, upgrading from a hard drive to a Solid State Drive (SSD) can significantly improve the performance of a computer.

Run Registry cleaner

We normally do not recommend Registry cleaners. However, if you have followed all of the above steps and your computer is still slow, try running a Registry cleaner on the computer.

Computer or processor is overheating

Make sure your computer and processor is not overheating. Excessive heat can cause a significant decrease in computer performance because most processors automatically reduce the speed of the processor to help compensate for heat-related issues.
Dust, dirt, and hair can also constrict proper airflow inside your computer, which can cause a computer to overheat. Make sure your computer case is clean and fans are not obstructed.

Erase computer and start over

If none of the above solutions resolve your issues, another option is to either reinstall Windows or erase everything and then start over.
Erasing everything and starting over can increase performance by getting rid of old software or drivers that may be on the computer and causing the computer to be slow. Installing a fresh copy of Windows, software programs, and the latest drivers help verify there are no software related issues causing your computer to be slow.

Hardware issues

Finally, if your computer is still slow after trying all of the above recommendations, there may have a more serious hardware related issue, such as a failing component in the computer. Examples of failing hardware could include a failing or bad hard drive, CPU, RAM, motherboard, or another component.
You can run hardware diagnostic tests using the Ultimate Boot CD (UBCD) utility. This utility provides many diagnostic tests that you can run and determine if your computer has a bad piece of hardware.

Old computer

If your computer is more than five years old, the age of the computer could be the cause of the slow performance. As more advanced software programs are released, they are optimized to run more efficiently on newer computers. Older computers are not able to run these new programs as well, which can cause them to perform more slowly. We recommend that you consider purchasing a new computer or accept that your computer is not going to be as fast as a newer computer.
On 10:11 PM by Unknown   No comments

Disclaimer for Psyco-Techno

If you require any more information or have any questions about our site's disclaimer, please feel free to contact us by email at http://psyco-techno.blogspot.co.id/p/blog-page_15.html.

Disclaimers for http://psyco-techno.blogspot.co.id/:

All the information on this website is published in good faith and for general information purpose only. http://psyco-techno.blogspot.co.id/ does not make any warranties about the completeness, reliability and accuracy of this information. Any action you take upon the information you find on this website (http://psyco-techno.blogspot.co.id/), is strictly at your own risk. http://psyco-techno.blogspot.co.id/ will not be liable for any losses and/or damages in connection with the use of our website.

From our website, you can visit other websites by following hyperlinks to such external sites. While we strive to provide only quality links to useful and ethical websites, we have no control over the content and nature of these sites. These links to other websites do not imply a recommendation for all the content found on these sites. Site owners and content may change without notice and may occur before we have the opportunity to remove a link which may have gone 'bad'.

Please be also aware that when you leave our website, other sites may have different privacy policies and terms which are beyond our control. Please be sure to check the Privacy Policies of these sites as well as their "Terms of Service" before engaging in any business or uploading any information.

Consent

By using our website, you hereby consent to our disclaimer and agree to its terms.

Update

This site disclaimer was last updated on: Saturday, January 7th, 2017
· Should we update, amend or make any changes to this document, those changes will be prominently posted here.


loading...