Install Firefox 9 on Ubuntu

Mozilla has released Firefox 9, which brings speed improvements and uses less memory than previous releases. In fact, this release effectively puts Firefox back on a level playing field with Google Chrome when it comes to speed.

If you’d like to try out Firefox 9, then follow following howto to intall Firefox 9 on Ubuntu

Step 1 Open a terminal, and run following command.

sudo apt-add-repository ppa:mozillateam/firefox-next

Step 2 Finally, run the commands below to update your system and install Firefox 9.0

sudo apt-get update
sudo apt-get install firefox

That’s it.

Factory Reset Samsung Galaxy Nexus

This tutorial is for factory resetting Samsung Galaxy Nexus before going forward with root and other subsequent awesomeness.

In this tutorial you will get full factory restore ODIN with radios (both LTE and CDMA), kernel and recovery. This will bring you back to the current unrooted 4.0.2 release of Android for the Galaxy Nexus.

Before going further please note
Flashing this will wipe ALL userdata and your sdcard partition! Make a backup and copy it off of your phone.
It will bring your device back to stock running Android 4.0.2 Build ICL53F with EK05 CDMA and EK02 LTE radios.
It will not relock the boot loader. You must relock your bootloader after flashing this ODIN to be 100% factory.

Files to download
File: VzW-SCHi515-FactoryODIN-ICL53F-4.0.2.7z
Link: http://www.mediafire.com/?cnqab1sg2b1u93p
md5 : b94776ca0102f8be02ccea90dcaaf271
Size: 158 MB

File: Odin3_v1.3.exe
Link: http://www.mediafire.com/?wks4lmg5hetq7pe
md5 : a93c47f0589153249f453375be7d8643
Size: 406 KB

Inside the 7zip file:

File: VzW-PDA-ODIN-I515EL03_ICL53F_signed.tar
md5 : 6ff33e5b0d6b2da1c13824e0d90e97d9

File: VzW-PHONE-ODIN-SCH-I515.EK02_LTE.tar
md5 : b8d16828a1b777e4938834cba9e8f601

Instructions:
Step 1 This assumes that you already have the Samsung driver installed, the phone is unplugged from the computer and turned off.
Step 2 Download the 7zip file and Odin3.
Step 3 Open Odin3
Step 4 Connect the phone to the computer
Step 5 Enter download mode (hold the vol down key and press power). Odin3 should now see the phone.
Step 6 In Odin3 click ‘PDA’ and select the PDA ODIN file from the archive
Step 7 In Odin3 click ‘PHONE’ and select the PHONE ODIN file from the archive
Step 8 Click Start. After it is completed the phone will reboot. The Odin3 screen should look following

Step 9 Now check the version.

For more details and updates please follow this thread @XDA-Forum

How to get JRE (Java) working under Chrome Fedora

I recently couldn’t get Java to work under Chrome. Hopefully this can help someone else with the same problem.

Make sure you have java installed. You can do this by running

yum list jre

in the terminal. If it is installed it will be listed under “Installed packages.”

If you do not have Java installed, you can download it here. The download is a .bin file. Navigate to the folder you downloaded it to and issue the command:

chmod +x jre-6u##-linux-i586-rpm.bin

Substitute ## for the update number you downloaded, currently it would be

chmod +x jre-6u27-linux-i586-rpm.bin

(This allows the file to be executed as a program.)

Extract and install JRE by running

sudo bash jre-6u##-linux-i586-rpm.bin

Again substituting ## for the update you downloaded.
So currently it would be

sudo bash jre-6u27-linux-i586-rpm.bin

You will be asked if you want to replace the JRE RPM. I selected yes. You also have the option of no, all, none and rename.

Once you have JRE installed, or if it was already installed, create a link between JRE’s plugin file and Firefox’s plugins folder by issuing this in a terminal.

sudo ln -s /usr/java/jre1.6.0_##/lib/i386/libnpjp2.so /usr/lib/mozilla/plugins/libnpjp2.so

Again, make sure to substitute ## for the current update number so it would be (currently)

ln -s /usr/java/jre1.6.0_27/lib/i386/libnpjp2.so /usr/lib/mozilla/plugins/libnpjp2.so

Restart Chrome. You can check if Java is working here.

Password Less SSH using PUTTY

Secure Shell (SSH) is a network protocol for secure data communication, remote shell services or command execution and other secure network services between two networked computers that it connects via a secure channel over an insecure network: a server and a client (running SSH server and SSH client programs, respectively).

In SSH when a client computer connects to the server, the server requires the client to authenticate itself. There are different ways a client can authenticate itself to the server. A typical authentication mode will be to enter a password when logging into a remote system. In this tutorial we can explore another mode of authentication in which server doesn’t require a password to be entered by the user.

So lets Start :

Client Configuration (WINDOWS)

1. Go to the client computer. We are using windows as client computer. Download Putty and Puttygen from following

URL
PUTTY
PUTTYGEN

Using the Puttygen tool we will generate an authentication key. This key will serve as a substitute for the password that will be entered during login.

2. Start puttygen.

3. The following window opens up. Leave the default ‘SSH-2 RSA’ selection and click on the ‘Generate’ button.

4. The following window opens. Move mouse randomly over the empty space below the progress bar to create some randomness in the generated key.

5. Don’t enter any key phrase. Click on ‘Save private Key’ button. Click ‘Yes’ on the window asking for confirmation for saving the key without a password.

6. Save the key file to a safe location. We will be saving the file in C:\Vidyadhar as 192.168.1.2.ppk. 192.168.1.2 is my SSH server ip. Now you can close the Puttygen window.

7. Open the 192.168.1.2.ppk file in a notepad. Copy the four lines under ‘Public-Lines’ section to windows clipboard

Server Configuration (UBUNTU)

1. Now open putty and connect to the remote system using the user id you want to use for future no password connections. At my system I am going to login through vidyadhar user. This time when you login, you have to provide the password at the prompt. Future logins won’t require this password

2. Under the logged in user’s home directory there will be .ssh directory, under that create a new file called authorized_keys using a text editor such as vi.
In our case the file will be created under /home/vidyadhar/.ssh/authorized_keys

cd ~/.ssh/
vi authorized_keys

3. Type the word ssh-rsa (including spaces on both ends of the word) and paste the 4 lines copied from step 7 from client configuration. Remove the carriage return at end of each line, merging four lines into one single line.
Be careful not to delete any characters while doing that. Final output should like the following window.

4. Save the file and quit the text editor. Assign rw permissions only for the owner.

chmod 600 ~/.ssh/authorized_keys

5. Now we have configured SSH server, its time to test our setup.

Testing

On the Client system (Windows), open Putty, enter the ip address details of the remote system. Now from the left navigation, select Connection -> Data. Enter vidyadhar as Auto-login username on the right panel.

Again from the left navigation menu, scroll down and select Connection -> SSH -> Auth. Enter the path of the saved private key file, In our case C:\vidyadhar\192.168.1.2.ppk. Leave other defaults as such and press open button.

Now the putty connects to the remote SSH server and there won’t be any password prompt here after.

Installing OS on Dead Blackberry

I am using Blackberry bold 9000 for last 1 year, recently I was having some problem with it. In one fine morning my phone was in hung mode. So I did a routine battery pull. While blackberry was rebooting, the progress bar on the loading screen went to 1/3 and then the phone rebooted again. The process goes on and on and at the end the phone got dead. If i hook the phone to the wall charger I am getting the same thing. I took out my SIM card and memory card but no use. I have tried every possible thing to troubleshoot this problem.

In short my BlackBerry was stuck in a permanent reboot cycle and it was completely unusable.

At the end I have decided to reload Blackberry OS to fix this problem.

Pre-requesites:
1. Blackberry Device OS 5.0. You can download the same from here or else do google search for download blackberry os 5 for blackberry bold 9000

2. Data cable

A. Remove battery from the blackberry device.

B. Install Blackberry Device OS which you have downloaded earlier.
By default it will get installed in C:\Program Files\Common Files\Research In Motion

C. Now go to C:\Program Files\Common Files\Research In Motion\AppLoader and rename Vendor.xml to Vendor.xml.bak else you will get the following screen while reloading your Blackberry OS.


Note : We have renamed vendor.xml because we are getting the blackberry desktop software does not have blackberry device software for the device that you have connected to the computer error

D. Now double click on Loader.exe. You will get Loader.exe in C:\Program Files\Common Files\Research In Motion\AppLoader folder

E. Click on Next button.

F. In next window you have to select Connection as USB-PIN: UNKNOWN from drop down list.

G. If you have set any password earlier you have enter the same in next screen

H. In the Device Application Selection screen, you have to select language and application you want to install on your blackberry Device.

I. In next Windows it will show you the options summary you have selected.

J. Now it will start updating your device.

On device you will see following screen

K. Now here is the trick. While doing above process I have removed battery from my device. We have to put the battery back in the device when you see Wait for device initialization in Application loading wizard.

L. Once the device initialized successfully it will start loading modules in your Blackberry.

M. After a successful installation you will get the completion message. That’s it. Remaining configuration you have to do on your blackberry handset.

Page 6 of 17« First...«456789»10...Last »
rss twitter facbook

Categories

Archives