Pages

Tuesday, 19 April 2016

How to resolve over heating issue of laptop

Over Heating Issue And Its Prevensation 


One of the most common issues with aging laptops is overheating, something many people aren’t sure how to fix. We’ll help you figure out what’s causing the heat and how to keep your notebook functioning at a lower temperature.
Overheating computers can cause a lot of problems, from seemingly random blue screens to data loss. You might not even know that it’s the root of your issues, and before you know it you have a burnt-out motherboard on your hands. Let’s go step by and step and see how to deal with overheating computers. We’ll be dealing primarily with laptops, but most of the same principles apply to desktops as well.

Find the Heat Source

 Air Flow and Heat Transfer

The first thing you need to do is figure out where the heat is coming from. No air flow means no heat transfer, so figure out where the air vents are. Are they blowing hot air, or is there barely a breeze, even when the fan is overtaxed?

Most commonly, an accumulation of dust in the vents and fans through the cooling channels will be culprit in restricting air flow. Cleaning it out will work best. Turn you laptop upside-down and look at what you’ve got.

Unscrew the fan doors and you should be able to lift out the fan and clean everything with a can of compressed air.

If you find that a fan is spinning erratically, you may want to try lifting the sticker off of the axle and putting a drop of mineral oil to keep it going.

You can also try to look up the part number from your laptop’s user manual or by searching your laptop model number online. Once you have that, you can find replacements pretty easily on eBay and the like.

Dying Batteries

There are plenty of different types of batteries, and many different schools of thought on battery maintenance and life span, but one thing that seems pretty unanimous is that batteries aren’t meant to be stored at 100% or 0% capacity. I know plenty of people who buy laptops and always keep the charger in, never actually using the battery. You can definitely expect to kill your battery’s health this way, since you’re essentially storing the battery when it’s full. Bad batteries don’t just give out really quickly, they can generate heat. You can buy replacement batteries pretty easily online, even for laptops that are four years old. You just need to know what model your computer/battery is. If you can’t find one, you may consider using your laptop as a desktop and remove the overheating battery completely from the equation.

Persistent Overheating

If you’ve taken the air vents and battery out of the picture and you’re still having problems, then you might have a more persistent heat issue. Sometimes a dusty hard drive can cause heat problems and data loss. Some laptops just “run hot,” even without a major load on the CPU. Try cleaning out these areas as best you can before you move on to another solution.
Dust under the processor and RAM doors to get rid of any dust and debris. If you’ve got a netbook or a laptop without compartments underneath, things might be more difficult. You should be able to find instructions for getting the back off so you can clean things properly.


Precautions for heating issue

  1. Clean system from outside at least once in a week and inside at least in 6 months.
  2. Check Thermal Paste in two year gap.
  3. If the age of laptop is more then five year then once change Heat sink Set.
  4. Check RPM of exost fan in 3 months once.
  5. Don't use laptp on bed.if you are using in bed make sure keep some distance between bed and laptop.
  6. Use Cool pad.
  7. Don't use high end softwares.
  8. If needed increase RAM.
By following these steps we can resolve over heating issue.

                                                                              Thakns for reading........................................
Read Full

Set Up a Tor Proxy Server on pfSense

How to Set Up a Tor Proxy Server on pfSense

Updated on October 16, 2014

Why You Should Use Tor

Anyone looking to protect their identity and location should route their internet traffic through the Tor network.
Once an internet request leaves your computer it passes through multiple different networks. At any time this data can be intercepted by any of these intermediate points without you ever knowing your data was compromised.
When internet traffic passes through Tor it is automatically encrypted and decrypted as it passes through multiple randomly selected relays.
The final relay, or exit node, decrypts the final layer of encryption and transmits the original data to the intended destination.
Since the data is protected through encryption during transit your information is protected from prying eyes.
By setting up a Tor proxy on pfSense you can easliy allow multiple users on your home or business network to transmit data securely.

Download and Install the Tor Package

Since Tor isn't an officially supported pfSense package it cannot be installed through the pfSense package manager. Instead it must be manually installed using the pkg_add command.
This command can be ran through an SSH terminal, or through the diagnostics\command prompt page in the web interface.
pkg_add -r ftp://ftp-archive.freebsd.org/pub/FreeBSD-Archive/ports/i386/packages-8.1-release/Latest/tor-devel.tbz
A successful installation will display the message seen in the image below.
Installing the Tor package using the pkg_add command through the command prompt.

Libevent Error Messages

You may receive a warning message if the installer detects a conflicting version of libevent on the system. Some pfSense packages such as ntop install a version of libevent that will cause Tor to fail to start.
In order for Tor to work correctly you will need to remove any existing version of libevent , then reinstall the Tor package.
To list any versions of libevent installed on the system:
pkg_info | grep libevent
libevent-1.4.14b_1 Provides an API to execute callback functions on certain ev
libevent-1.4.14b_2 Provides an API to execute callback functions on certain ev
libevent2-2.0.16 API for executing callback functions on events or timeouts
If any conflicting versions are detected, remove them with these commands:
pkg_delete libevent-1.4.14b_1
pkg_delete libevent-1.4.14b_2
pkg_delete libevent2-2.0.16
If you see an error message stating the package cannot be deinstalled and is required by other packages you must remove the packages that depend on it.
pkg_delete: package 'libevent-1.4.14b_1' is required by these other packages
and may not be deinstalled:
ntop-5.0.1
pkg_delete ntop-5.0.1

Create the Required Directories and Log File

Tor requires the creation of two directories before it can be started, run the commands below to create them.
mkdir /var/db/tor
mkdir /var/run/tor
Tor also requires the creation of a log file before it will start.
touch /var/log/tor
Finally we must set the the Tor user as the owner of both directories and the log file.
chown -R _tor /var/db/tor/
chown -R _tor /var/log/tor
chown _tor /var/run/tor

Edit the Config File

The Tor package includes a default config file that can be used as a good starting point for most users.
The command below will create a copy of the default config file called torrc in the same directory as the sample.

cp /usr/local/etc/tor/torrc.sample /usr/local/etc/tor/torrc
There are a couple of lines in the config file that need to be modified.
You can make these changes through the command line using the Vi editor but I find it much easier to use the file editor in the web gui located in the diagnostics menu.
In the /usr/local/etc/tor/torrc file uncomment both of the lines below by removing the # sign at the beginning of the lines. Modify the ip address in the second line to reflect the LAN IP address of the pfSense router.
SocksListenAddress 127.0.0.1:9100
SocksListenAddress 192.168.0.1:9100
In order for Tor to run in daemon mode you'll need to uncomment the following line as well.
RunAsDaemon 1
Editing the Tor configuration file using the text editor in the web interface.

Edit the rc.conf File

Tor will fail to start and display an error message unless tor_enable is set to 'yes' in the rc.conf file. The command below will add the required entry to the bottom of the rc.conf file.
echo "tor_enable=yes" >> /etc/defaults/rc.conf

Creating the Tor Startup Script

When pfSense boots the system will automatically run any scripts with a .sh file extension located in /usr/local/etc/rc.d. To allow Tor to run at boot time the script must be created, and the permissions must be modified to make it executable.
The commands below will create create the tor.sh startup script, and make the script executable.
touch /usr/local/etc/rc.d/tor.sh
chmod +x /usr/local/etc/rc.d/tor.sh
After creating the script copy and paste the contents in the code section below into the file and save it.
This step can be completed using either the vi text editor (vi /usr/local/etc/rc.d/tor.sh) , or the web based file editor.

Tor.sh

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

rc_start() {
           /usr/local/etc/rc.d/tor tart
}

rc_stop() {
           /usr/local/etc/rc.d/tor stop
}

case $1 in
        start)
                rc_start
                ;;
        stop)
                rc_stop
                ;;
        restart)
                rc_stop
                rc_start
                ;;
esac

Starting the Tor Service

At this point all of the pieces are in place to start the Tor service. Run the init script created in the previous step with the 'start' parameter to start Tor.
/usr/local/etc/rc.d/tor.sh start
If the Tor daemon successfully start you'll see a message similar to the one below. If you don't see this message you may receive an error message that will provide a clue of why Tor is unable to start.
[notice] Opening Socks listener on 192.168.10.254:9100
Starting the Tor service using the startup script.
Tor is not an HTTP proxy error message.

Setting up a Proxy Server

At this point the Tor daemon should be up and running but we're not quite finished yet.
If you attempt to configure he IP and port of the server as a proxy in you web browser you'll receive a message that states "Tor is not an HTTP Proxy".
Since Tor is a SOCKS proxy it operates at a lower level then most web proxy servers which makes it necessary to run a separate web proxy server in addition to the Tor daemon.
Unfortunately the popular Squid proxy server does not support the SOCKS protocol unless it is recompiled from source. Instead of recompiling Squid I recommend installing the Polipo caching proxy service.
Polipo is a very fast, lightweight proxy service with native support for SOCKS and some other really cool features such as HTTP piplining and partial object caching.

Configuring Tor as an Upstream Proxy for Polipo

After installing Polipo it must be configured to use the Tor daemon as a parent proxy server. Edit the Polipo configuration file (/usr/local/etc/polipo/config) and uncomment both of the lines below.
socksParentProxy = "localhost:9100"
socksProxyType = socks5
Save the changes to this file once the edits have been made.
Editing the Polipo configuration file to support an upstream Tor proxy.
After the changes to the config file have been modified the Polipo service must be restarted to apply the changes.
/usr/local/etc/rc.d/polipo.sh restart

Testing the Tor Proxy

Now that Tor is running and Polipo has been configured to use Tor as a parent proxy everything is in place for testing!
If you haven't already done so configure your browser to point to the LAN IP address of pfSense on port 8123 (the default port for Polipo)
To confirm your internet traffic is being forwarded through the Tor network visithttps://check.torproject.org/. This page will run a test on your connection to determine if it is using the Tor network. If your traffic is going through Tor successfully you'll see the message below displayed.
Confirming Tor is working using the online test page.

Contributing to Tor

Since the Tor network is operated by volunteers the best way you can contribute to the project is to operate your own Tor relay.
Anyone with a reliable internet connection can operate a relay by running Tor in relay mode. Additional Tor relays add to the speed and reliability of the entire Tor network.

Setup a Wireless Tor Access Point with the Raspberry Pi

Further Protect Your Identity With Bitcoin

Once you've starting using Tor for anonymity you may want to consider protecting your financial information by making purchases with Bitcoin.
You can easily purchase Bitcoins (or mine your own) making it possible to make anonymous purchases.
Bitcoins spend like cash but can be transmitted over the internet instantly to any location in the world.



Read Full

Monday, 18 April 2016

"INSTALLATION OF PROCESSOR ON CPU AND TROUBLE SHOOT RELATED PROCESSOR"

Before getting started:-
1.      Write down important information from the of the processor such as the Model Number, Serial Number, and specifications.
2.      Ensure you are familiar with ESD and its potential dangers.
3.      When physically installing the processor, ensure the computer is off and that the power is disconnected.
Remove previous processor
If a processor is already installed in the computer it must be removed before a new processor can be added.
If the processor is a socket processor and has an attached heat sink, it must first be removed before the processor can be removed. Most socket heat sinks have a wire to supply power to the fan, first remove this wire. Next, you should notice clips on either side processor holding it in place. Pressing down on the larger end of the clip and then moving the clip away from the processor should release one end of the clip allowing for the heat sink to be removed.
Once the socket heat sink has been removed, if your processor is a ZIF processor, remove the socket processor by locating a small arm on one of the sides of the processor. This arm is a small metal bar. Moving this bar from a horizontal to a vertical position will release the processor.
If your processor is a LIF processor you need a processor and chip remove tool to remove the processor. If you are adding a new processor it is likely that this tool is included with the processor. If not, it can be purchased at a local computer shop or computer retail store. Place this tool between the processor and the socket and gently work the processor out of the socket, doing a little on each side of the processor at a time. When doing this, be careful not to bind or break any of the pins.
If your processor is a slot processor, the heat sink does not need to be removed and in most cases cannot be removed. To remove a slot processor, locate two tabs on either side of the processor. Move these slots to the outward position and the processor should be able to be removed by vertically pulling it out.
Install processor
Once no processor is currently installed in the computer, follow the steps below for installing your processor.
Socket Processor
If you are installing a ZIF socket processor into the computer, begin first by moving the metal arm located on one of the sides of the socket to a vertical position. Next, examine the top of the processor that should have a small dot in one of the corners. This dot indicates where pin one is located on the bottom of the processor. Next, examine the socket on the motherboard; this socket should have a missing hole or should have a 1 indicating pin one. Position the processor so both pin1 and hole1 match and then place the processor down.
If properly positioned, now when moving the metal arm to the down or horizontal position it should firmly connect the processor.
If you are installing a LIF socket processor, first examine the top of the processor and locate pin one, located with a small white dot. Once pin one has been located, look at the socket and locate pin one on the socket on the motherboard. Pin one on the socket will be located by either looking for a missing hole on the socket itself or by looking for a small one next to one of the four corners.
Once the pins have been aligned properly, gently press the processor into the socket until it is firmly attached.
Slot Processor
Finally, if you are installing a slot processor, first move the tabs on either side of the support brackets to the outward position. Next, install the processor by pressing the processor into the slot. Once successfully installed into the brackets the two tabs should snap into place.
Apply heat compound
Thermal grease is a special compound which you can apply to the surface of the CPU before attaching the heat sink. It helps conduct heat away from the CPU and into the sink, and can lower the temperature of your CPU. This is an optional step. If you decide to apply thermal grease, take care to distribute it evenly. It is important that heat is distributed uniformly across the processor.
Attach heat sink
Once the processor has been successfully installed and the heat compound applied, attach the computer heat sink to the processor.
Note: Users who have a socket processor, when attaching the heat sink clip, ensure not to scratch the motherboard with the clip. Also, when attaching the heat sink bracket to the plastic clip, be careful because if too much pressure is applied to the plastic clip, it will break.

Troubleshooting Computer Processor Problems

Processor Related Problems and Resolutions
Having a Computer sometimes demand basic knowledge on Computer problem solving, but this does not require formal education on Computers but basic knowledge is sometime useful when dealing with computer related problems. One of these computer related problem is the processor malfunctioning and below are some of the computer processor malfunctioning and how to troubleshoot them
Computer Problem Identification
1.    Computer System is dead, no cursor, no beeps no fan moving
Possible Cause1: Power Cord Failure
Resolution: Plug in or replace power cord, sometimes power cord can fail even though they look fine
Possible Cause 2: Computer Power Supply Unit Failure
Resolution: Replace your Power supply unit with a new one or use a similar power supply unit to test whether it’s the supply unit or something els Computer motherboard  Failure
When computer motherboard is dead or has failed to function your processor will definitely not work.
Resolution: Replace your motherboard with a new one that is working properly and then power on your computer
Memory Failure: Memory failure can also result into computer processor failure
Resolution: Remove all memory chip except bank 1 and retest. if the system still won’t boot replace bank 1
CPU


2. System is Dead, no beeps or locks up before POST begins
Possible Causes:  All components either not installed or incorrectly installed
Resolutions: Check all peripheral especially memory and graphics adapter, reseat all boards and socketed components
1.    System beeps on start up, fun is running and no cursor
Possible Cause: Improperly seated or failing adapter
Resolution: Reseat or replace graphics adapter. Use known a working compatible graphic adapter for testing
1.    Locks up during or shortly after POST
Possible Cause 1: Poor heat dissipation
Resolution: Check CPU heat sink, replace fan if necessary or use a fan with a higher capacity
Possible Cause 2: Improper voltage settings
Resolution: Set motherboard for proper core processor voltage
Possible Cause 3: Wrong motherboard bus speed
Resolution: Set proper speed for the motherboard
Possible Cause 4: Wrong CPU clock Multiplier
Resolution: proper jumper setting on motherboard for proper clock multiplier
1.    Improper CPU Identification during POST
Possible cause: Old Bios and the board is not configured properly
Resolution: Update Bios from the manufacturer. Check manual and jumper board accordingly to proper bus and multiplier settings
1.    Operating system doesn’t boot up
Possible Cause 1: Poor heat dissipation
Resolution: Check CPU fan and replace if necessary with a higher capacity heat sink
Read Full