Saturday, 24 January 2015

[Solved] Chrome waits for a few seconds for new tabs

My chrome started waiting for a few seconds before the url typed was fetched. I disabled a feature in chrome settings which solved the issue.
Go to Settings > Show advanced settings > Privacy
In this section uncheck the option that reads 'Predict network actions to improve page load performance'

I hope this will be helpful to you too.

Friday, 29 August 2014

[Solved] Android to Ubuntu file transfer over bluetooth shows "Connection failure" error

I got this error while I was trying to transfer the files from my Android phone to my laptop, which have Ubuntu installed. I had the devices paired, but still the file transfer from my phone to laptop would not happen. I have done the following to configure Ubuntu to accept files from bluetooth devices that solved the problem.
Open the Personal File Sharing in the dash and check both the checkboxes under "Recieve Files over Bluetooth" section.

Sunday, 4 May 2014

Ubuntu - Google Hangout/Chat : A plugin is needed to display this content

Error
Chrome - No Plug-in available to display this content
Firefox - A plugin is needed to display this content

Got the error when trying to set the webcam settings in google chat. I got the error in Chrome and Firefox browsers in Ubuntu 12.04. I solved it by installing the icedtea plugin. sudo apt-get install icedtea-7-plugin

Monday, 31 March 2014

Always open google chrome in incognito mode in Ubuntu

In Ubuntu, we can modify the google-chrome.desktop file to make google chrome always open in incognito mode. Here is how we can do it
  1. Take a backup of the google-chrome.desktop file. Use the following command in terminal
    sudo cp /usr/share/applications/google-chrome.desktop /usr/share/applications/google-chrome.desktop.backup
  2. Open the google-chrome.desktop file for editing. Use the following command in terminal
    sudo gedit /usr/share/applications/google-chrome.desktop
  3. Find the line(line 108 for me)Exec=/usr/bin/google-chrome-stable %UReplace it with Exec=/usr/bin/google-chrome-stable --incognito %U
Note: If the chrome shortcut is locked in the launcher, you may need to unlock it and restart chrome, before locking it back to the launcher, next time the launcher icon of chrome is clicked, chrome opens in incognito mode.

Saturday, 29 March 2014

Setup Hot corners in Ubuntu 12.04

Use the following steps to setup hot corners in Ubuntu 12.04
  1. Install 'CompizConfig Settings Manager' from 'Ubuntu Software Center'
  2. Go to Category > General > General Options > Key bindings > Show Desktop > Click on 'Disabled' button
  3. Select the corner that need to be enabled

Note: In some cases, the hot corner that is set will be forgotten after restarting the machine. In that case, do the following to fix this issue.
  1. Install gconf-editor (type gconf-editor in terminal, the command to install will be shown if it is not installed already)
  2. After setting the hot corners using CompizConfigSetting Manager, open terminal and type gconf-editor
  3. In the Configuration Editor, go to apps > compiz-1 > general > screen0 > options
  4. Double click on active_plugins
  5. In the Edit Key dialog, move 'scale' to the end of the list, move 'expo' to second last in the list

Tuesday, 25 March 2014

Setup Firefox in Ubuntu 12.04

It was surprising to know that there is no direct way to install firefox in Ubuntu. No worries, I'm not a Windows user!
After I installed Ubuntu 12.04, I have installed firefox, in a not so direct way(double click a .deb, I meant). I'm listing below the steps to get the latest build of firefox setup.
  1. Download firefox from www.mozilla.org
  2. Extract the firefox-_____.tar.bz2 to a directory firefox
  3. Run the following command in terminal, to move the directory into /opt/
    sudo mv firefox /opt/firefox
  4. Using the following command, take a backup of the default firefox symbolic link in /usr/bin/ directory
    sudo mv /usr/bin/firefox /usr/bin/firefox_backup
  5. Create a symbolic link in the /usr/bin/ directory that points to the newly downloaded firefox binary. Use the following command
    sudo ln -s /opt/firefox/firefox /usr/bin/firefox

The firefox browser is installed on the machine now. We need to do the sync setup, plugins setup for the firefox to be fully functional.
  1. Open Tools > Setup Sync and follow instructions to complete the sync setup
  2. Install Adobe Flash Player plugin. This is needed to play video files in youtube. Use the following command to install
    sudo apt-get install flashplugin-installer
  3. After that install Adobe Flash Player, visit the url www.adobe.com/software/flash/about/ to ensure that the plugin is installed

Sunday, 23 March 2014

Install gnome 3 themes on Ubuntu 12.04

Recently I upgraded my laptop to Ubuntu 12.04. Its better that the best. :-)
While browsing the net for something I stumbled on a very pleasing UI theme for Ubuntu 12.04. I read along following all the links in the page and got to know much about GNOME 3. The themes collection available for GNOME3 was plenty and beautiful. I installed GNOME3 shell on my Ubuntu and then imported some very nice themes, icons from gnome-look.org.
GNOME 3
sudo apt-get install gnome-shell
Download themes
Follow instructions in the theme package about installation, usually the themes are copied to ~/.themes folder, icons are copied to ~/.icons and custom fonts needs to be copied to ~/.fonts.

GNOME tweak tool
This is a tool used to set the themes for UI. Very useful.
sudo apt-get install gnome-tweak-tool

Note:~/ refers to home directory. i.e., '/home/username/'