UbuntuでPDOを使おうとしてエラー

Ubuntu9上のapache2+php5で WordPress + PDO (SQLite) For Wordpress をお試しで動かそうと思い立ち、着手。
http://example.com/WordPress/wp-admin/install.php にアクセスしたところ、以下のエラーが出た。

Invalid or missing PDO Driver
Your PHP installation appears not to have the right PDO drivers loaded. These are required for this version of Wordpress and the type of database you have specified.

そういや、PDO入ってないよな…と思い、入れようとすると以下のエラー。

sudo pecl install pdo
[sudo] password for tmftake: 
downloading PDO-1.0.3.tgz ...
Starting to download PDO-1.0.3.tgz (52,613 bytes)
.............done: 52,613 bytes
12 source files, building
running: phpize
sh: phpize: not found
ERROR: `phpize' failed

原因について調べたらあっさり見つかりました。

この記事で本当にいいたいのは、表題の通り、「UbuntuでPDOを使うときには、php5-devパッケージが必要」だ、ということです。

[Ubuntu][PHP][PDO] UbuntuでPDOを使うときには、php5-devパッケージが必要。 - SumiTomohikoの日記

というわけで早速入れてみました。