Install ADB fedora 20

I just downloaded and unzipped the adt-bundle-linux for my 64-bit system.

Just upon launching the eclipse I stumbled upon an error like, adb : no such file or directory (/path/to/adt-bundle/sdk/adb) though the adb was actually there.

 

I had to install a few packages to this working.

$ sudo yum install glibc zlib libstdc++ ncurses-libs mesa-libGL-devel adb

 

Note: this is for 64-bit fedora

 

That’s it, just relaunched the eclipse to start on my way !!!

Sync firefox open tabs

I just had to start using a new laptop given by my office. I had at least 30 tabs open in my old laptop. I just needed those open tabs in my new laptop too (opened).

Using sync did not solve my problem. Sync just helped me to sync my history, bookmarks but did get my “open” tabs be “open” in my new firefox.

 

Copying the sessionstore.js from my firefox folder to the new one fixed the problem.

 

Example:

I just scp’ed the sessionstore.js from my old laptop to the new one.

$ scp ~/.mozilla/firefox/mye4weo0.default/sessionstore.js hostname:/home/username/.mozilla/firefox/mye4wad0.default/sessionstore.js

 

I got all my open tabs opened my new firefox 🙂

Fix screen resolution issue zBook (Fedora 20)

I am using HPZBook workstation. Happily installed Fedora 20 in it. I restarted the system only to see a screen resolution problem. Basically my screen resolution was not detected by the nouveau. Have to install NVIDIA drivers.

Upon restart I saw something similar to,

<snip>

[   34.393155] nouveau E[    PBUS][0000:01:00.0] MMIO read of 0x00000000 FAULT at 0x300000 [ IBUS ]
[   34.393201] nouveau E[   PIBUS][0000:01:00.0] GPC0: 0x419eb4 0xbadf1000 (0x3800820c)
[   36.395442] nouveau E[  PGRAPH][0000:01:00.0] HUB_INIT timed out
[   36.395451] nouveau E[  PGRAPH][0000:01:00.0] 409000 - done 0x00000244
[   36.395462] nouveau E[  PGRAPH][0000:01:00.0] 409000 - stat 0x00000000 0x00000000 0x00000000 0x00000000
[   36.395472] nouveau E[  PGRAPH][0000:01:00.0] 409000 - stat 0x00000000 0x00000000 0x00000002 0x00000009
[   36.395477] nouveau E[  PGRAPH][0000:01:00.0] 502000 - done 0x00000300
[   36.395484] nouveau E[  PGRAPH][0000:01:00.0] 502000 - stat 0x00000000 0x00000000 0x00000000 0x00000000
[   36.395490] nouveau E[  PGRAPH][0000:01:00.0] 502000 - stat 0x00000000 0x00000000 0x00000000 0x00000000
[   36.395492] nouveau E[  PGRAPH][0000:01:00.0] init failed, -16

</snip>

So I used the "liveusb" to get in to my terminal and update the driver.

 

$ lspci | grep VGA

01:00.0 VGA compatible controller: NVIDIA Corporation GK106GLM [Quadro K2100M] (rev a1)

Add the rpmfusion repo to the local yum repo

$ sudo yum localinstall –nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm

 

Search for the nvidia related packages

$ yum search nvidia

 

Install the following packages

$ sudo yum install xorg-x11-drv-nvidia.x86_64

$ sudo yum install akmod-nvidia.x86_64

 

Reboot and enjoy !!!