Sunday 26 October 2014

Things to do after installing Ubuntu 14.04 LTS


  1. Setting -> Appearances ->  Behavior -> Enable Workspaces

  2. Settings -> Security & Privacy ->Search -> Include online results : Set this to off if you don't want online results like the Amazon results in your Unity Dashboard. You can remove it altogether with

    • sudo apt-get remove unity-lens-shopping

  3. Install "nautilus-open-terminal" and "nautilus-terminal" plugins for nautilus file manager so that it would be easier to open terminal directly from specific directories and embed terminal directly in explorer. Refer Enabling "open command prompt" from folder and embed terminal in explorer in ubuntu
  4. vi or vim editor may sometime give different characters in pressing arrow keys. To resolve that follow -

    If you dont already have a .vimrc file in your home directory, create one using this:

    vi $HOME/.vimrc

    Add then add following line to the top of the file:

    set nocompatible

    save the file and exit. This should fix the issue.

    How to display or hide line numbers in vi or vim text editor

  5. Installing Java (Oracle JDK)


    • sudo apt-get install python-software-properties
    • sudo add-apt-repository ppa:webupd8team/java
    • sudo apt-get update
    • sudo apt-get install oracle-java7-installer
    • Add line JAVA_HOME="/usr/lib/jvm/java-7-oracle" to /etc/environment file. Then reload the file using source /etc/environment. You can verify this setup with echo $JAVA_HOME  and java -version

  6. Install and configure Compiz (For proper Cube Set Horizontal Virtual size to 4 and Vertical Virtual Size to 1 in General Options -> Desktop Size) (I also like wobbly windows effect)

    • sudo apt-get install compiz compizconfig-settings-manager compiz-plugins




  7. Install latest Eclipse
    • Download Eclipse from its official site
    • Run the following commands -
      • cd /opt/
      • sudo tar -zxvf ~/Downloads/eclipse-*.tar.gz
      • sudo gedit /usr/share/applications/eclipse.desktop
        Add the following content -

        [Desktop Entry]
        Name=Eclipse 4
        Type=Application
        Exec=/opt/eclipse/eclipse
        Terminal=false
        Icon=/opt/eclipse/icon.xpm
        Comment=Integrated Development Environment
        NoDisplay=false
        Categories=Development;IDE;
        Name[en]=Eclipse

    • You can then launch eclipse from unity dashboard. 
    • Also see Configuring Intellij IDEA
     
     
  8. Install Gimp : sudo apt-get install gimp . It is an image editing software like photoshop.

  9. Configure pidgin -
    1. How to configure Pidgin for Google Talk in Ubuntu
    2. How to disable Pidgin Notifications in Ubuntu? 

  10. Install Skype :
    • sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner"
    • sudo apt-get update && sudo apt-get install skype

  11.  Install Maven
    1. How to install maven on Ubuntu?

  12.  Install Google Chrome
    1. How to install Google chrome on Ubuntu ?

  13.  Install Intellij Idea IDE
    1.  Install Intellij Idea in Ubuntu
  14.  How to delete recently opened files history in ubuntu 14.04

  15. Installing Gradle.
    1.  Gradle ships with it's own groovy library so no need to explicitly install groovy.
    2. To install Gradle open a command prompt and execute following commands - 
      1. sudo add-apt-repository ppa:cwchien/gradle
      2. sudo apt-get update
      3. sudo apt-get install gradle
      4. gradle -v (or which gradle) - to verify installation

Note : I am going to keep updating this List as an when I find something useful. If you want to add something to this list do post it in comments.


Related Links

t> UA-39527780-1 back to top