Use Thunderbird’s addressbook to dial a Phone

March 2, 2010

Working in my home office a have a phone connected to my laptop. With a self written application I can dial this phone.

With Thunderbird 3 predecessors I used a modified version of the FireFox plugin Fritz!BoxDial to dial the phone.

With Thunderbird 3 this does no longer work.

Recently I read the feature list of the Thunderbird plugin MoreFunctionsforAddressbook see
https://nic-nac-project.org/~kaosmos/morecols-en.html.
and I found

option to have phone numbers like “callto” links

It works like a charme (0.5.6.4 with TB 3.0.1).

Give it a try !

syncevolution: The first tool for me to get contacts + events from thunderbird to my Nokia

November 17, 2011

syncevolution synchronizes personal information management (PIM) data via SyncML (among others, see http://syncevolution.org).

So it seemed to be the tool of choice for me (my Nokia E66 is a SyncML device). But syncevolution relies on the evolution mail suite.

With a lot of help from syncevolution’s main developer I finally came up with a working configuration which takes contacts and events from files exported by thunderbird and transfers the items to my Nokia. This is one way only, which is no problem for me, as I prefer to change these data in thunderbird.

I wrapped everything up in a little script. You have to have Ubuntu Oneiric to use this. I tried Natty, but this failed due to problems with the evolution-data-server.

See http://syncevolution.org/wiki/thunderbird-phone-sync, if you are interested.

xfce4: xfwm4: Tune the windowmanager to switch from one workspace to another and back

May 23, 2011

As already mentionend in this blog, I use xfce4 with 10 different workspaces. Important applications run on dedicated workspaces, e.g. firefox on #3, emacs on #4 and so on.

You may switch from one workspace to another very conveniently by keyboard (per default e.g. for workspace #3).

There is one more configuration option, which is unfortunately off by default. You will find it in the xfce-config tools under “Detailed configuration of the window manager”. Select the tab Workspaces. There is a line reading similar to “Remember last workspace, use it again when changing via keyboard shortcuts”. If you check this, bring you to the workspace #n. Pressing the same shortcut again, it will you bring back where you came from.

IMHO very convenient.

Using a shell you may set this via xfconf-query:


xfconf-query -c xfwm4 -p /general/toggle_workspaces -s true

natty install crashed rendering system unbootable: Using grub-install to make it bootable

May 9, 2011

Using a dual boot system since years, I always have one partition for my productive system (currently for various reasons still Karmic 9.10) and another partition to test new releases.

Recently I upgraded an Maverick 10.10 to Natty 11.04. All went well. Today I tried to do a fresh install of Natty. This failed twice (ubiquity crashed).

It turned out that the system was no longer bootable (I got a prompt saying grub rescue, neither help nor ? gave me helpful information).

I again started from USB stick, selecting rescue mode. I then mounted my productive root partitition and then issued

grub-install –boot-directory=/mnt/boot /dev/sda

On restarting the system I luckily had a proper grub list again. After some strange error messages my productive system booted.

When it was finally up and running, I again ran grub-install, this time using

grub-install /dev/sda

The mentioned strange messages are gone – may be this is a version issue (grub-install in Natty using files from Karmic).

I will retry the Natty installation but in the first place I will make a really fine backup …

Customizing Cups Default Printer using NetworkManager

February 16, 2010

Recently I discovered the scripting abilities of NetworkManager. I
finally wrote a very small script which calls lpadmin depending on my
current network environment.

NetworkManager looks for scripts in
/etc/NetworkManager/dispatcher.d. Currently I have:


lulu:/etc/NetworkManager/dispatcher.d> ls
01ifupdown 97customize-lulu

01ifupdown came with Karmic, 97customize-lulu is my new script.
NetworkManager calls the scripts in /etc/NetworkManager/dispatcher.d
with two arguments. If I e.g. plug in a patch cable with WLAN
disabled, the scripts will be run like so:


01ifupdown eth0 up
97customize-lulu eth0 up

In my 97customize-lulu, I figure out the current IPADDRESS using the
ip-command and a bit of perl. In a simple case I call lpadmin
appropriately. Finally I call logger to get some information in my
/var/log/messages.

When the script is called to unconfigure a nic, I umount all NFS and
CIFS based filesystems to avoid hanging IOs.

NIC=$1
ACTION=$2

case "$2" in
up)
IPADDRESS=`ip -o addr show $NIC | perl -ne 'if(/inet ([\d\.]*)\/\d\d/) {print $1, "\n";}'`
case "$IPADDRESS" in
192.168.178.*) lpadmin -d Home-HP-OfficeJet-G85
;;
172.26.0.74)
lpadmin -d Lab-X
;;
172.18.*.*) lpadmin -d Site-Foo
;;
esac
logger 97customize-lulu: NIC: $NIC ACTION: $ACTION IP: $IPADDRESS
;;
down)
umount -a -t nfs,cifs
logger 97customize-lulu: NIC: $NIC ACTION: $ACTION IP: $IPADDRESS RC$
;;
esac

jaunty: Resizing mpg using tcrequant gives bad quality output with lots of artifacts

December 19, 2009

Running Hardy for a year or so I used tcrequant without any problems. I use the tool to resize mpg files so that they fit onto a dvd. My wife prefers watching our home recorded videos this way …

After upgrading to Jaunty I realized that resized records came with artifacts. It turned out that tcrequant caused it.

In Hardy, I had:


root@jojo:~# /usr/bin/tcrequant -v
tcrequant (transcode v1.0.2) (C) 2003 Antoine Missout

With Jaunty came:


root@jojo:~# /usr/bin/tcrequant -v
tcrequant (transcode v1.0.7) (C) 2003 Antoine Missout

I found no way around and finally ended up with replacing the Jaunty binary by the old Hardy tcrequant binary. Yes – this is ugly …

If you are asking: Why do you use tcrequant anyway ? It’s said to be deprecated in Transcode ! May be – but have you ever compared the run time of avidemux or mencoder with tcrequant ? The latter is far quicker. Obviously quite different algorithms are used. But I’m lucky with the output of tcrequant 1.02 …

Karmic: Happy with vmplayer, no longer searching the web for a any-any patch to get vmware-server running

December 19, 2009

For a couple of years I used vmware-server on my laptop. This was a hassle with all new kernels, as the vmware-drivers never built out of the box. It was always necessary to patch the driver sources to get them going.

I’m no kernel hacker and sometimes it was difficult to find the right patches on the web. At least once after a Ubuntu security kernel update the vmware-config.pl failed until I again managed to find a better (newer) patch.

Forget about this trouble. Use VMware Player 3.0.0. After a kernel update starting vmplayer gave me:

Hitting “Install” I got another screen informing me nicely about what was going on:

And I was done ! It simply worked !

But I forgot one important new feature of vmplayer 3.0.0: You can create new machines:

Karmic: ApacheDirectorStudio no longer usable and Workaround

December 2, 2009

I used ApacheDirectorStudio with sun-java5 without problems for at least a year. After changing to Karmic I installed sun-java6 and did a short test of ApacheDirectorStudio. I did not notice any problems.

Today I again ran ApacheDirectorStudio and this time I ran into trouble. No error message, but a button simply did not appear to work.

Being in trouble to do the real work done, I rebooted into my old Intrepid and did what had to be done.

Now I got a second to analyse the problem and finally found an hint on the Download page of ApacheDirectorStudio

Set

export GDK_NATIVE_WINDOWS=1

and then start ApacheDirectorStudio. Now the application works as expected. So the rootcause was not java6 vs. java5, but Gnome !

Karmic: Keyring + Figaro’s Password Manager 2 fpm2

December 1, 2009

IMHO gnome-keyring has all components for a password manager application. But AFAIK there is no such application using libgnome-keyring0 and gnome-keyring.

But I can’t live without. So I recently checked the Karmic repositories for suitable applications and finally decided to give fpm2 Figaro’s Password Manager 2 a try.

Since then I use fpm2 on a regular basis. It’s fast, it’s straightforward and there are some features I really like.

For each entry you can define a so called Starter-Application. If e.g. you want to put your Launchpad-account into fpm2, you would add https://launchpad.net/ as URL and Web as starter-app. BTW, the default gnome-moz-remote does not really make sense in Ubuntu, because this command is unknown. Simply change the Web starter to


/usr/bin/firefox $a

Click on User and the defined username will be inserted into the cut buffer. Paste it into the webform. Same procedure for password and you’re done.

Xfce 4.6: Change default settings to use workspaces more efficient

November 29, 2009

I use 10 workspaces to virtually enhance my screen’s size. My personal best practice is to have certain important applications on dedicated workspaces, e.g. thunderbird on no 2, firefox on no 3 and emacs on no 4.

If I get an email with an URL, clicking on that URL will bring up a new TAB in my running firefox. Unfortunately standard Xfce 4.6 in Karmic will switch the firefox window from workspace no 3 to the thunderbird workspace no 2.

I do not like this. I want the apps keep running on the workspace I started them on.

Finally I found this to make things work:


xfconf-query -c xfwm4 -p /general/activate_action -s switch

I really can recommend this – give it a try !


Follow

Get every new post delivered to your Inbox.