Showing posts with label Hardware. Show all posts
Showing posts with label Hardware. Show all posts

Thursday, February 13, 2014

Fix for Ralink WiFi card issue with Linux on HP laptops


1. Connect a wired cable connection to the computer to have Internet connection for the moment while you do the steps below.

2. Open a terminal and execute the following line to install everything needed to compile your very own wireless drivers:

sudo apt-get update && sudo apt-get install build-essential linux-headers-generic

3. Go to Mediatek and download the Ralink RT3290 Driver for Linux

4. Rename the file to 2012_0508_RT3290_Linux_STA_v2.6.0.0.tar.bz2

5. Extract the file and it should contain a folder named DPO_RT3290_LinuxSTA_V2600_20120508

6. Go to DPO_RT3290_LinuxSTA_V2600_20120508/os/linux/ and edit the file config.mk

7. Find the following variable:

HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n
 
change it to

HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y

and save the file.

8. On Terminal, go to your main extracted folder (It should be the DPO_RT3290_LinuxSTA_V2600_20120508 folder) and type the following:

make
sudo make install

9. If everything compiled correctly do the following: modprobe rt3290sta

10. If step 9 runs without any problems, add the module to the list of modules to loaded upon every boot:

sudo gedit /etc/modules/

and add rt3290sta at the end of the file. Save and exit.

References:

Tuesday, October 9, 2012

How to check whether a SMPS is in working condition?


SMPS stands for Switched mode Power Supply. It gives power to all the components in your computer system.
If your computer is dead and even not a single lights glow on your Motherboard, the basic need is to check is SMPS. To do so, remove power cable from SMPS and unplug all connections of peripherals (Hard disk, Motherboard, DVD etc). Now you can check SMPS easily by connecting/shorting a small wire between green color(PS_ON) and adjacent black color wire (COM). After connecting, plugin power cable and switch on the SMPS. If SMPS fan runs, SMPS is working.
There are many other problem too, if computer is dead, but please try this step first.

Monday, September 17, 2012

Calculation of UPS or Inverter Backup

Before calculating the Battery Backup, let us know a few factors that vary battery backup.

For UPS with 875VA we can us a maximum load of 640 watts and 677VA we can us a maximum load of 540 watts. The main thing we have understand is that what ever may be the UPS wattage the battery backup will not vary. The battery backup will only vary depending on the battery Ah and the Usage Load.

To calculate UPS backup, We have a simple formula:
                      UPS Backup = Battery Ah * (Volts/Load) * (1/Powerfactor)

Example: Let us calculate the backup for a system UPS

Load is the usage power, suppose we are running a PC then the load is around 300 watts
Power Factor varies for device to device, the average power factor is 1.4
Voltage is the voltage of the battery. For a single battery the voltage is 12v. If the batteries are connected in a series   Voltage = 12 * no. of batteries.
Battery Ah is the battery ampere used for the ups, System UPS battery AH is 7

                     Then   Battery Backup = 7 * (12/300) * (1/1.4)
                                                       = 7 * (0.04) * (0.7)
                                                       = 0.19 hours
                                                       = 19 Minutes

Note: You can use the same formula for calculating the battery backup for home UPS or an INVERTER.