You are not logged in.
I broke our work server after upgrading via Pacman. This is the first time, so I'm in need of knowing where to start.
It hangs with the message "Can not request iomem region..."
I just looked back through my remote terminal and saw some errors that popped up during the upgrade.
Thanks so much in advance!!

Offline
Your initramfs's didn't build correctly. It's not obvious to me why, but my first suggestion would be to try to rebuild them and see if you get the errors again. If you do, then it's time to start figuring them out, but if not, you may be set.
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
Here is the image: http://postimage.org/image/6n6bnjw1z/full/. See this thread: https://bbs.archlinux.org/viewtopic.php?id=140390. Just chroot to your system and run "mkinitcpio -p linux".
Offline
Awesome! That worked.
It still is showing "ERROR: module not found 'mdadm'", but all seems to be working fine. Any idea?
Thanks for your help!
Offline
Please edit your original post and use a meaningful title: https://wiki.archlinux.org/index.php/Fo … ow_to_Post
Is mdadm in your hooks?
Offline
It still is showing "ERROR: module not found 'mdadm'", but all seems to be working fine. Any idea?
I'm not sure what the answer is, but I don't think it's anything to worry about. See here from my own logs:
[2012-05-05 12:42] ==> Starting build: 3.3.4-2-ARCH
[2012-05-05 12:42] -> Parsing hook: [base]
[2012-05-05 12:42] -> Parsing hook: [udev]
[2012-05-05 12:42] -> Parsing hook: [pata]
[2012-05-05 12:42] -> Parsing hook: [scsi]
[2012-05-05 12:42] -> Parsing hook: [sata]
[2012-05-05 12:42] -> Parsing hook: [keymap]
[2012-05-05 12:42] -> Parsing hook: [lvm2]
[2012-05-05 12:42] ==> ERROR: module not found: `dm-mod'
[2012-05-05 12:42] -> Parsing hook: [encrypt]
[2012-05-05 12:42] ==> ERROR: module not found: `dm-crypt'
[2012-05-05 12:42] -> Parsing hook: [lvm2]
[2012-05-05 12:42] ==> ERROR: module not found: `dm-mod'
[2012-05-05 12:42] -> Parsing hook: [resume]
[2012-05-05 12:42] -> Parsing hook: [filesystems]
[2012-05-05 12:42] -> Parsing hook: [usbinput]
[2012-05-05 12:42] -> Parsing hook: [fsck]
[2012-05-05 12:42] ==> Generating module dependencies
[2012-05-05 12:42] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
[2012-05-05 12:42] ==> WARNING: errors were encountered during the build. The image may not be complete.This kind of output is nothing new and it doesn't seem to hurt. Probably there's a simple fix but I've been too lazy to look into it.
Offline
I have in my modules list:
dm_mod dm_cryptOffline
I have in my modules list:
dm_mod dm_crypt
Do you mean the modules list in mkinitcpio.conf? I tried like so:
$ grep ^MODULES /etc/mkinitcpio.conf
MODULES="dm_mod dm_crypt"both with underscores and with dashes instead. Still, the same thing:
$ sudo mkinitcpio -p linux
==> Building image from preset: 'default'
-> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
==> Starting build: 3.3.4-2-ARCH
-> Parsing hook: [base]
-> Parsing hook: [udev]
-> Parsing hook: [autodetect]
-> Parsing hook: [pata]
-> Parsing hook: [scsi]
-> Parsing hook: [sata]
-> Parsing hook: [keymap]
-> Parsing hook: [lvm2]
==> ERROR: module not found: `dm-mod'
-> Parsing hook: [encrypt]
==> ERROR: module not found: `dm-crypt'
-> Parsing hook: [lvm2]
==> ERROR: module not found: `dm-mod'
-> Parsing hook: [resume]
-> Parsing hook: [filesystems]
-> Parsing hook: [usbinput]
-> Parsing hook: [fsck]
==> ERROR: module not found: `dm_mod'
==> ERROR: module not found: `dm_crypt'
==> Generating module dependencies
==> Creating gzip initcpio image: /boot/initramfs-linux.img
==> WARNING: errors were encountered during the build. The image may not be complete.
==> Image generation successful
< ... snip ... >Offline
...and your lvm2 hook is parsed twice. Odd.
Offline
...and your lvm2 hook is parsed twice. Odd.
I have a LVM-LUKS-LVM sandwich ;-)
Offline