You are not logged in.
Pages: 1
New install. Using bios, syslinux bootloader, and on boot get the "Failed to load ldlinux.c32" error message. Tried re-downloading arch.iso to no avail.
Googled problem and tried -O ^64bit option as follows:
mkfs.ext4 -O ^64bit /dev/sda1
and instead of formatting it returned an invalid option error. Tried many variations of the command to no avail. Is there a correct way to perform this command?
Edit: Unfortunately, had to install gpt/grub, but at least it's working.
Last edited by cowlick (2016-08-12 22:27:18)
DELL Inspiron 14-3452, 32GB emmc, 4 GB RAM
Offline
I ran into the same problem in a new installation with syslinux and ext4. http://www.syslinux.org/wiki/index.php? … system#ext pointed to same advice:
Users should rather (manually) disable the 64bit feature in the mke2fs command when creating / formatting a boot volume with ext4; otherwise, the bootloader (as of version 6.03) will fail.
I was also stuck with invalid option error, until I remembered that my shell (zsh) tends to interpret a few symbols in a command line. Escaping the caret with a backslash worked for me:
mkfs.ext4 -O \^64bit /dev/sda1
Offline
@boki. Thanks for the reply. I'm glad it worked. I use bash shell but I will research the caret symbol and how it works in bash. Thanks again.
Edit: Saw this in Newbie forum:
https://bbs.archlinux.org/viewtopic.php?id=217214
Last edited by cowlick (2016-09-19 11:01:55)
DELL Inspiron 14-3452, 32GB emmc, 4 GB RAM
Offline
Pages: 1