Cài đặt hệ thống mới bằng đĩa được phân vùng GPT dành riêng cho một phân vùng duy nhất, ext4 được định dạng, extlinux (phiên bản 4.05) làm bộ nạp khởi động, Ubuntu Core phiên bản 13.10 amd64 làm rootfs và Ubuntu linux-image-3.11.0-18-generic làm kernel, và extlinux-update để tạo cấu hình bootloader.
Kết quả sau khi khởi động lại (vẫn bên trong máy ảo dựa trên KVM) là một dấu nhắc (initramfs) và các thông báo sau:
mount: can't read '/etc/fstab': No such file or directory
mount: mounting /dev on /root/dev failed: No such file or directory
mount: mounting /sys on /root/sys failed: No such file or directory
mount: mounting /proc on /root/proc failed: No such file or directory
The filesystem doesn't have requested /sbin/init.
No init found. Try passing init= bootarg.
BusyBox là v1.20.2.
Hồi quy:
- hệ thống tập tin đã được kiểm tra với
fsck.ext4
Kiểm tra sự tồn tại của root
(initramfs) ls -l /dev/[hs]da*
ls: /dev/[hs]da*: No such file or directory
Đối số khởi động gốc
(initramfs) cat /proc/cmdline
initrd=/boot/initrd.img-3.11.0-18-generic ro quiet BOOT_IMAGE=/boot/vmlinuz-3.11.0-18-generic
Kiểm tra các mô-đun được tải
(initramfs) cat /proc/modules
e1000 145368 0 - Live 0xffffffffa0000000
/ khởi động nội dung thư mục
$ sudo ls -l boot
-rw------- 1 root root 3296162 Feb 18 22:37 System.map-3.11.0-18-generic
-rw-r--r-- 1 root root 1007681 Feb 18 22:37 abi-3.11.0-18-generic
-rw-r--r-- 1 root root 163258 Feb 18 22:37 config-3.11.0-18-generic
drwxr-xr-x 2 root root 4096 Mar 17 20:13 extlinux
-rw-r--r-- 1 root root 4995000 Mar 16 23:35 initrd.img-3.11.0-18-generic
-rw------- 1 root root 5634192 Feb 18 22:37 vmlinuz-3.11.0-18-generic
Làm thế nào để làm cho hệ thống này khởi động đến dấu nhắc bash mặc định dự kiến?