You are not logged in.
[root@localhost ~]# systemctl status systemd-modules-load.service
● systemd-modules-load.service - Load Kernel Modules
Loaded: loaded (/usr/lib/systemd/system/systemd-modules-load.service; static; vendor preset: disabled)
Active: failed (Result: exit-code) since Fri 2014-12-19 11:36:15 CST; 6min ago
Docs: man:systemd-modules-load.service(8)
man:modules-load.d(5)
Process: 140 ExecStart=/usr/lib/systemd/systemd-modules-load (code=exited, status=1/FAILURE)
Main PID: 140 (code=exited, status=1/FAILURE)
Dec 19 11:36:15 localhost systemd-modules-load[140]: Failed to insert 'xen_gn...
Dec 19 11:36:15 localhost systemd-modules-load[140]: Failed to insert 'xen_gn...
Dec 19 11:36:15 localhost systemd-modules-load[140]: Failed to insert 'xen_bl...
Dec 19 11:36:15 localhost systemd-modules-load[140]: Failed to insert 'xen_ne...
Dec 19 11:36:15 localhost systemd-modules-load[140]: Failed to insert 'xen_pc...
Dec 19 11:36:15 localhost systemd-modules-load[140]: Failed to insert 'xen_ac...
Dec 19 11:36:15 localhost systemd[1]: systemd-modules-load.service: main pr...RE
Dec 19 11:36:15 localhost systemd[1]: Failed to start Load Kernel Modules.
Dec 19 11:36:15 localhost systemd[1]: Unit systemd-modules-load.service ent...e.
Dec 19 11:36:15 localhost systemd[1]: systemd-modules-load.service failed.
Hint: Some lines were ellipsized, use -l to show in full.
[root@localhost ~]#
[root@localhost ~]# cat /boot/grub/grub.conf
.......
menuentry "Xen 4.4.1 / Arch Linux pkg-linux kernel" --class xen --class arch-linux --class arch --class gnu-linux --class gnu --class os {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
fi
set gfxpayload=keep
insmod ext2
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 6654a274-3d48-4a48-90b5-61c3b86214c4
else
search --no-floppy --fs-uuid --set=root 6654a274-3d48-4a48-90b5-61c3b86214c4
fi
echo 'Loading Xen 4.4.1 ...'
multiboot /boot/xen-4.4.1.gz dom0_mem=4G xsave=1
echo 'Loading Arch Linux pkg-linux kernel ...'
module /boot/vmlinuz-linux /boot/vmlinuz-linux root=UUID=6654a274-3d48-4a48-90b5-61c3b86214c4 rw quiet console=tty0
echo 'Loading Arch Linux pkg-linux kernel initramfs ...'
module /boot/initramfs-linux.img
}
### END /etc/grub.d/09_xen ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux (on /dev/sda1)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-6654a274-3d48-4a48-90b5-61c3b86214c4' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 6654a274-3d48-4a48-90b5-61c3b86214c4
else
search --no-floppy --fs-uuid --set=root 6654a274-3d48-4a48-90b5-61c3b86214c4
fi
echo '载入 Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=6654a274-3d48-4a48-90b5-61c3b86214c4 rw quiet
echo '载入初始化内存盘...'
initrd /boot/initramfs-linux.img
}
### END /etc/grub.d/10_linux ###
...........
[root@localhost ~]# ls -al /boot
total 25628
drwxr-xr-x 3 root root 4096 Dec 12 23:00 .
drwxr-xr-x 19 root root 4096 Dec 16 03:10 ..
drwxr-xr-x 6 root root 4096 Dec 9 07:46 grub
-rw-r--r-- 1 root root 18060196 Dec 12 23:00 initramfs-linux-fallback.img
-rw-r--r-- 1 root root 3276846 Dec 12 23:00 initramfs-linux.img
-rw-r--r-- 1 root root 4029536 Dec 8 07:44 vmlinuz-linux
-rw-r--r-- 1 root root 852925 Dec 8 23:02 xen-4.4.1.gz
Offline
Please use code tags when posting to the boards...
Offline