Remove Chromium from Ubuntu Keyring

Remove keyring dependency with the following:

Try taking the passwords off of your keyring. This would work well for a virtual environment.

  • Open Applications -> Accessories -> Password and Encryption Keys.
  • Click View -> "By keyring"
  • Right-click on the "login" keyring.
  • Select "Change password"
  • Enter your old password and leave the new password blank.

This did not work...

Go to (Unity button)/Passwords and Keys
On tab Passwords choose the proper key (I'd got only one, so you may need to find proper key). Right-click on it and Delete.
Restart Chromium

It'll ask for password --- do not type any and continue.
Choose "Use unsafe storage"

Update Git

Refer: https://askubuntu.com/questions/579589/upgrade-git-version-on-ubuntu-14-04

$ sudo add-apt-repository ppa:git-core/ppa
$ sudo apt-get update
$ sudo apt-get install git
$ git --version

Ubuntu Command Line Short Cuts (CLI)

Some useful line editing key bindings provided by the Readline library:

  • Ctrl-A: go to the beginning of line
  • Ctrl-E: go to the end of line
  • Alt-B: skip one word backward
  • Alt-F: skip one word forward
  • Ctrl-U: delete to the beginning of line
  • Ctrl-K: delete to the end of line
  • Alt-D: delete to the end of word

Add desktop icon for Gnome

Save the following in a file with the extension: .desktop

#!/usr/bin/env xdg-open

[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=command to run here
Name=visible name here
Comment=comment here
Icon=icon path here