Posts Tagged ‘tips’
Wednesday, September 13th, 2006
My wife had an unused Logitech Stereo USB Headset 250 kicking around the house that I took into the office today. Joy of joys! Ubuntu/Dapper recognized it and both the headset *and* microphone work out of the box.
Just like Microsoft Windows ;-)
Tags: dapper, General, linux, tips, ubuntu
Posted in General | 11 Comments »
Friday, September 8th, 2006
The good folks at GetDemocracyNow.com provide debian packages for Ubuntu/Dapper, but didn’t get the dependencies quite right. After intalling the two democracyplayer packages from their Ubuntu download page, I needed to also install the following packages:
$ sudo apt-get install libboost-python1.33.1 libgtk-mozembed-ruby mozilla-psm
There is a ton of great content!
Tags: dapper, General, tips, ubuntu
Posted in General | Comments Off
Sunday, July 2nd, 2006
I’ve been using f-spot since it showed up in Ubuntu/Breezy and have been keeping all my photos in a directory structure like this:
/PHOTOS/Photos/2006.06.30/
/PHOTOS/Photos/2006.07.01/
But sometimes I’ve forgotten to unclick the “Copy file to the Photos folder” box in the photos import dialog and end up with photos under ~/Photos/. Recently I checked and found there were almost a gigabytes worth of photos under there.
So this is what I did to move them to under /PHOTOS/Photos/ and keep all the tags and metadata correct.
Tags: apps, config, dapper, f-spot, General, linux, sqlite, tips, ubuntu
Posted in General | 5 Comments »
Thursday, June 29th, 2006
Mark Pilgrim has compiled his list of Ubuntu essentials — time to add some KDE goodness to ‘My Ubuntu/Dapper Configuration‘ page…
Tags: config, dapper, debian, General, linux, tips, ubuntu, useful
Posted in General | 1 Comment »
Saturday, June 24th, 2006
This is a follow on to last week’s post about Dual Monitor on Ubuntu/Dapper
I’ve been using the xorg.conf-ati.20060621 configuration at work with two monitors, but when at home the laptop didn’t degrade down to working with the one LCD monitor of the laptop. So, here is a new configuration that lets you switch between a single monitor mode (1024×768) or one large one (2048×768) that can be ’slid over to’ by using the mouse. The key press is Control-Alt-+ (the + over on the side where the number entry is). On the laptop, it is Control-Alt-blue_Fn-?
Here the is xorg.conf file:
xorg.conf-ati-works-with-one-monitor.20060624
Tags: config, debian, General, hp, laptop, linux, tips, ubuntu
Posted in General | No Comments »
Wednesday, June 21st, 2006
I’ve noticed a number of people asking about dual head support in dapper on #ubuntu, so here is my setup:
This hp/compaq nc6000 laptop/notebook that has an ATI card:
$ sudo lspci|grep VGA
0000:01:00.0 VGA compatible controller: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10]
I have two head monitors working with both the ‘ati’ and the closed source ‘fglrx’ drivers.
Here are the configuration files:
xorg.conf-fglrx.20060621 — works when booting without the second monitor
xorg.conf-ati.20060621 — when booting with out the second monitor attached, it still thinks it is there. Some windows may pop up on the unreachable monitor.
Before you start hacking around with your xorg.conf, save a copy somewhere safe.
Tags: config, debian, General, hp, laptop, linux, tips, ubuntu, useful
Posted in General | 5 Comments »
Friday, July 22nd, 2005
The stock Ubuntu repositories don’t include the w32codecs (wmvdmod.dll, etc) so xine, mplayer can play WMV and other formats. Basically the package puts 127 DLLs in /usr/lib/w32codecs.
So, I temporarily added the following line to my /etc/apt/sources.list
deb ftp://ftp.nerim.net/debian-marillat/ testing main
And then did this:
apt-get update && apt-get install w32codecs
I then commented that line out since and apt-get upgrade would have picked up a bunch of updated packages from that repository.
Tags: apps, config, General, hp, laptop, linux, tips, ubuntu
Posted in General | 24 Comments »
Tuesday, January 4th, 2005
Lately, I’ve been using the bleeding edge version of iPodder from CVS (which confusingly is in the
iSpider directory) Here is how you can grab a copy for yourself:
$ cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/ipodder login
CVS password: (press return)
$ cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/ipodder co iSpider
[tons of informational messages about downloading iSpider]
$ cd iSpider
$ export PYTHONPATH=/usr/lib/python2.3/site-packages/wx-2.5.3-gtk2-unicode:$PYTHONPATH-unicode:$PYTHONPATH
$ python iPodderGui.pyw
… And fire up your favorite dev tools!
Tags: apps, config, debian, General, linux, tips
Posted in General | No Comments »
Tuesday, January 4th, 2005
I’ve been using the ipodder beta on
my laptop that runs GNU/Linux Debian/Sarge in the command line only mode. But over the holidays there was and update to wxpython that gets the GUI working.
This is what you need to do:
$ alien –to-deb ipodder-1.1.2-1cl.noarch.rpm
$ sudo dpkg -i ipodder_1.1.2-2_all.deb
$ export PYTHONPATH=/usr/lib/python2.3/site-packages/wx-2.5.3-gtk2-unicode:$PYTHONPATH-unicode:$PYTHONPATH
$ /opt/iPodder/iPodderGui.py
and enjoy…
Tags: config, debian, General, linux, music, tips
Posted in General | 2 Comments »
Friday, November 26th, 2004
The daily comment spam is getting worse and worse — easily 100+ per day. It never makes it to the website because WordPress is setup so I need to approve all postings, but it is a PITA to weed
through the spam to find the occasionally real comments.
I’ve seen on Jeremy Zawodny’s blog that in order to post, you need to type *his* first name in one of the forms. Not rocket science if a human is making the posting, but perhaps just difficult enough for the spammer’s script to fail. The other nice thing is you can always change the question to something equally as trival. Say, “what the the color of the sky?” or “3141592 is my favorite number, what is my favorite number?”
Jeff Barr posted an entry on exactly how to do that in Wordpress. The only thing that was a little tricky was the change to wp-comments-post.php was on line 22 in my copy of the file. The difference because the file is a DOS format and emacs displayed it with ^M^M at the end of each line (essentially halving the
number of line Jeff saw.
The changes work for me…
Tags: blog, General, spam, tips, useful, web
Posted in General | 3 Comments »