August 2010 M T W T F S S « Jul 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 -
Twitter
- @nigelbabu oh for sure!I'm the worlds worst at laughing at other peoples misfortunes.Will be seriously considering the review for this place 5 hours ago
- Just got a fucking painful electric shock off this socket. Not cool. http://twitpic.com/2afljb 5 hours ago
- @gdb_ good call. 5 hours ago
- This is apparently a good way to prep for a night out according to wifey. As an aside it improves the audio :) http://twitpic.com/2afa0e 6 hours ago
- @littlecough ah thanks for that. Twitter wins :) 6 hours ago
- @daveewart I feel compelled to step inside. Doesn't look bigger though. 6 hours ago
- Driven the wife to Bath, now running her one. What other cities does that work with? Derby I guess. http://twitpic.com/2af755 6 hours ago
- Why is this green box outside this hotel? How odd. http://twitpic.com/2af0fi 6 hours ago
- Romans unimpressed with upgraded iphone4 camera http://twitpic.com/2aelyd 7 hours ago
- Pretty sure I saw a TARDIS in this window. http://twitpic.com/2ad40a 10 hours ago
Recent Comments
- Hari on Change for Change’s Sake?
- alan cocks on Ubuntu at Non-Technical Events
- James on Ubuntu at Non-Technical Events
- Silvi on Ubuntu at Non-Technical Events
- popey on Change for Change’s Sake?
Pages
Archives
- July 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- December 2008
- November 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
Category Archives: Advocacy
Come to OggCamp
What: OggCamp When: Sunday 25th October 2009 Where: Wolverhampton, UK Who: Ubuntu UK Podcast and Linux Outlaws Why: Hangover cure for LUGRadio Live 2009 Want to know more? Click the button.
Also posted in Fun, Linux, Ubuntu 4 Comments
UDS Karmic Videos and HTML5 Goodness
I noticed that the videos from the most recent Ubuntu Developer Summit are now online, and thought I’d have a play with the new embedded HTML5 video stuff in Firefox 3.5. Rather than view all the videos by downloading them individually I thought I’d make a page where I can view them all sequentially. Here [...]
Also posted in Fun, Linux, Ubuntu 10 Comments
Easy Script To Get And Install PPA GPG Keys
If you use Ubuntu then it's possible you'll enable a PPA or two, to install software not in the standard Ubuntu Repositories.
This is a fairly simple process, but there's a little fiddly bit of work to install the GPG key that goes along with each PPA. If you're the kind of person that plays around with a lot of PPAs, or uses PPAs on a lot of machines then you'll probably find yourself doing the GPG key dance a lot.
All round top-man Dominic Evans has crafted a neat little script which automates this process.
His script will not enable the PPAs, but for any PPA already enabled on your system it will go and get the necessary key and install it. If you have lots of PPAs enabled then this is a great way to do all the keys in one hit.
Here's what happens when you have added a PPA to your Ubuntu sources list, but haven't done the GPG key dance:-
alan@hactar:~$ sudo apt-get update [sudo] password for alan: Hit http://archive.canonical.com jaunty Release.gpg Ign http://archive.canonical.com jaunty/partner Translation-en_GB Get: 1 http://ppa.launchpad.net jaunty Release.gpg [307B]snip
Get: 31 https://private-ppa.launchpad.net jaunty/main Sources [1543B] Fetched 388kB in 3s (121kB/s) Reading package lists... Done W: GPG error: http://ppa.launchpad.net jaunty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 5A9BF3BB4E5E17B5 W: GPG error: http://ppa.launchpad.net jaunty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 3B22AB97AF1CDFA9 W: You may want to run apt-get update to correct these problemsSimilarly if you use Update Manager then you'll get a dialog box titled "An error occurred. The following details are provided:" followed by:-
W: GPG error: http://ppa.launchpad.net jaunty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 5A9BF3BB4E5E17B5 W: GPG error: http://ppa.launchpad.net jaunty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 3B22AB97AF1CDFA9Of course the number of these, and the keys that you will see displayed will be different depending upon which PPAs you have enabled. Whilst they are only warnings, they're annoying enough for most people to want them to go away. To fix this quickly and easily, just grab the script and save it somewhere like /usr/local/bin or (preferably for me) ~/bin (that's /home/alan/bin on my system). Finally make it executable by right clicking the file in nautilus and go to properties, then select the Permissions tab and enable 'Allow executing file as a program'. If you like the terminal then you can use the chmod command to do that bit. Whenever you add a PPA simply run the script in a terminal. Here's what happens when you run Dominic's funky script.
alan@hactar:~$ launchpad-update Grabbing key 4E5E17B5 for archive ppa by ~chromium-daily Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --recv-keys --keyserver keyserver.ubuntu.com 4E5E17B5 gpg: requesting key 4E5E17B5 from hkp server keyserver.ubuntu.com gpg: key 4E5E17B5: public key "Launchpad PPA for chromium-daily" imported gpg: no ultimately trusted keys found gpg: Total number processed: 1 gpg: imported: 1 (RSA: 1) Grabbing key AF1CDFA9 for archive x-updates by ~ubuntu-x-swat Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --recv-keys --keyserver keyserver.ubuntu.com AF1CDFA9 gpg: requesting key AF1CDFA9 from hkp server keyserver.ubuntu.com gpg: key AF1CDFA9: public key "Launchpad PPA for Ubuntu-X" imported gpg: Total number processed: 1 gpg: imported: 1 (RSA: 1) Already have key 3E731F79 for archive ppa by ~siretart DONEThat's it. Now when I update...
alan@hactar:~$ sudo apt-get update Hit http://archive.canonical.com jaunty Release.gpg Ign http://archive.canonical.com jaunty/partner Translation-en_GB..snip..
Hit https://private-ppa.launchpad.net jaunty/main Sources Fetched 617B in 2s (240B/s) Reading package lists... Done alan@hactar:~$No warnings! Lovely. Big hugs for Dominic. I understand that for Ubuntu Karmic (9.10) this script may become redundant as other changes come in, but for now, and for releases before 9.10 this is awesome!
Also posted in Linux, Ubuntu 32 Comments
Getting Back Into Screencasting