-
Install Chromium in Ubuntu 10.04 (Lucid)
Posted on May 19th, 2010 1 commentChromium is the open source version of google chrome.
Installing Chromium in Ubuntu 10.04 is a very simple and quick process. Just run the following three commands in your terminal (Applications/Accessories/Terminal):
sudo add-apt-repository ppa:chromium-daily/ppa
sudo apt-get update
sudo apt-get install chromium-browserIntegrating Chromium into new ubuntu theme:
http://ubuntuguide.net/integrate-chromechromium-to-new-ubuntu-theme-in-ubuntu-10-04
-
Copy SSH Key to Server in One Line
Posted on September 26th, 2009 No commentsHere is a simple way to copy your public key from your computer to your server (which can allow password-free login):
ssh user@hostname "echo `cat ~/.ssh/id_rsa.pub` >> ~/.ssh/authorized_keys"If you receive an error about ~/.ssh/id_rsa.pub not existing, run the following to create it first:
ssh-keygen -t rsa

