I thought I would post something I noticed with one of my systems booting slow with Fedora 16. My system booted very fast with Fedora 15 before and I was seeing much slower boot times with Fedora 16.
I saw this "failed" message in my /var/log/boot.log-20111204 file:
# grep -i fail /var/log/boot.log-20111204
Starting /dev/disk/by-uuid/c6d5573f-87c2-4ce4-b497-5bf314800688 aborted because a dependency failed.
It turns out, that c6d5573f-87c2-4ce4-b497-5bf314800688 number was for my swap partition entry in /etc/fstab. For some reason I had 2 different swap entries in my /etc/fstab file, like so:
# grep swap /etc/fstab
/dev/mapper/vg_w2-lv_swap swap swap defaults 0 0
UUID=c6d5573f-87c2-4ce4-b497-5bf314800688 swap swap defaults 0 0
I commented the extra line with the UUID entry in /etc/fstab like so:
# grep swap /etc/fstab
/dev/mapper/vg_w2-lv_swap swap swap defaults 0 0
#UUID=c6d5573f-87c2-4ce4-b497-5bf314800688 swap swap defaults 0 0
This change made my system boot much faster. Something to consider if your system is booting slow with Fedora 16 and was booting fast with Fedora 15.