boot - iwlwifi 0000:01:00.0: Unsupported splx structure - Ask Ubuntu
i have installed 16.04 in dual boot windows. installation ok, , couple of times ubuntu booted smoothly. now, after having chosen ubuntu @ booting, black screen appears following:
/dev/sda8: clean 271789/1222992 files, 1952109/4882432 blocks
[ 10.015870] tom_crb msft0101:00: can't request region resource [mem 0xfed40080-0xfed40fff]
[ 10.507758] iwlwifi 0000:01:00.0: unsupported splx structure
welcome emergency mode!
i tried search bit on web, there nothing specific, less clear solutions. suggestions please?
edit: here pastebin dmesg log.
also, outputs of sudo blkid
/dev/sda1: label="esp" uuid="2605-3dc2" type="vfat" partlabel="efi system partition" partuuid="8a5f68a4-5a57-4238-93dd-f4b072f0f75e" /dev/sda2: partlabel="microsoft reserved partition" partuuid="c8d98f36-1de8-4327-bc66-f14653f56ce4" /dev/sda3: label="os" uuid="5cce72f7ce72c8b2" type="ntfs" partlabel="basic data partition" partuuid="4d6d4d89-ca38-41b7-ad64-5d7be881f962" /dev/sda4: label="winretools" uuid="ec7aa90f7aa8d81a" type="ntfs" partuuid="1ecce821-a7c3-4cfb-9d01-a2ce25f1e1aa" /dev/sda5: label="image" uuid="5254a9e354a9c9d5" type="ntfs" partuuid="7514622b-bfa8-4f31-93cf-7730e289739d" /dev/sda6: label="dellsupport" uuid="9c98decb98dea2d6" type="ntfs" partuuid="396ddeed-43e8-4d20-b4b4-b1b910688ac3" /dev/sda7: uuid="c35ada9f-7d1a-4220-8c12-5f69cad3236e" type="swap" partuuid="9885e759-1e62-4336-91b4-0997baf71a20" /dev/sda8: uuid="dd4038ad-17fb-43c6-9528-2a6db31c7371" type="ext4" partuuid="c90e1cce-c184-466e-8433-a9816b609c76" /dev/sda9: uuid="d0114045-d0fa-4128-86eb-1872cf863d4c" type="ext4" partuuid="f0ab486d-6a10-4345-8798-95334cc379d6"
output of command sudo lsblk
name maj:min rm size ro type mountpoint sda 8:0 0 931,5g 0 disk ├─sda1 8:1 0 500m 0 part /boot/efi ├─sda2 8:2 0 128m 0 part ├─sda3 8:3 0 465,7g 0 part /windows ├─sda4 8:4 0 467m 0 part ├─sda5 8:5 0 14,5g 0 part ├─sda6 8:6 0 1,1g 0 part ├─sda7 8:7 0 3,7g 0 part [swap] ├─sda8 8:8 0 18,6g 0 part / └─sda9 8:9 0 426,9g 0 part /home sr0 11:0 1 1024m 0 rom
and of coomand sudo cat /etc/fstab
# /etc/fstab: static file system information. # # use 'blkid' print universally unique identifier # device; may used uuid= more robust way name devices # works if disks added , removed. see fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> # / on /dev/sda8 during installation uuid=dd4038ad-17fb-43c6-9528-2a6db31c7371 / ext4 errors=remount-ro 0 1 # /boot/efi on /dev/sda1 during installation #uuid=2605-3dc2 /boot/efi vfat umask=0077 0 1 # /home on /dev/sda9 during installation uuid=d0114045-d0fa-4128-86eb-1872cf863d4c /home ext4 defaults 0 2 # /windows on /dev/sda3 during installation uuid=5cce72f7ce72c8b2 /windows ntfs defaults,umask=007,gid=46 0 0 # swap on /dev/sda7 during installation uuid=c35ada9f-7d1a-4220-8c12-5f69cad3236e none swap sw 0 0 uuid=5cce72f7ce72c8b2 /media/data ntfs-3g defaults,windows_names,locale=it_it.utf-8 0 0 uuid=2605-3dc2 /boot/efi vfat defaults 0 1
here screenshot command
dmseg | grep -i error dmseg | grep -i warn
and here screenshot command
dmseg | grep iwl:
there multiple problems need answered question.
the first , foremost problem /etc/fstab. it's been radically changed standard, , windows partition trying mounted @ 2 different mount points @ same time. caused computer not boot, , halt in emergency mode. here comment out both windows disk mounts, , got computer boot.
in /etc/fstab:
change this:
# /windows on /dev/sda3 during installation uuid=5cce72f7ce72c8b2 /windows ntfs defaults,umask=007,gid=46 0 0 # swap on /dev/sda7 during installation uuid=c35ada9f-7d1a-4220-8c12-5f69cad3236e none swap sw 0 0 uuid=5cce72f7ce72c8b2 /media/data ntfs-3g defaults,windows_names,locale=it_it.utf-8 0 0 uuid=2605-3dc2 /boot/efi vfat defaults 0 1
to (just comment out 2 lines):
# /windows on /dev/sda3 during installation # uuid=5cce72f7ce72c8b2 /windows ntfs defaults,umask=007,gid=46 0 0 # swap on /dev/sda7 during installation uuid=c35ada9f-7d1a-4220-8c12-5f69cad3236e none swap sw 0 0 # uuid=5cce72f7ce72c8b2 /media/data ntfs-3g defaults,windows_names,locale=it_it.utf-8 0 0 uuid=2605-3dc2 /boot/efi vfat defaults 0 1
then reboot. success!
then, clean rest of messy fstab, following edits.
change this:
# /boot/efi on /dev/sda1 during installation #uuid=2605-3dc2 /boot/efi vfat umask=0077 0 1
to this:
# /boot/efi on /dev/sda1 during installation uuid=2605-3dc2 /boot/efi vfat defaults 0 1
then delete last line of fstab looks like:
uuid=2605-3dc2 /boot/efi vfat defaults 0 1
lastly, change this:
# /windows on /dev/sda3 during installation # uuid=5cce72f7ce72c8b2 /windows ntfs defaults,umask=007,gid=46 0 0 # swap on /dev/sda7 during installation uuid=c35ada9f-7d1a-4220-8c12-5f69cad3236e none swap sw 0 0 # uuid=5cce72f7ce72c8b2 /media/data ntfs-3g defaults,windows_names,locale=it_it.utf-8 0 0
to this:
# /windows on /dev/sda3 during installation # can't have 2 mounts, 2 different mount points, @ same time. # both of these mounts wrong. # uuid=5cce72f7ce72c8b2 /windows ntfs defaults,umask=007,gid=46 0 0 # uuid=5cce72f7ce72c8b2 /media/data ntfs-3g defaults,windows_names,locale=it_it.utf-8 0 0 # if must mount windows partition, i'd recommend this... # uuid=5cce72f7ce72c8b2 /media/data ntfs-3g defaults 0 0 # swap on /dev/sda7 during installation uuid=c35ada9f-7d1a-4220-8c12-5f69cad3236e none swap sw 0 0
then, in windows, these:
if dual-boot windows , ubuntu, must turn off fast start
, hibernation
in windows.
- turn off
fast start
in power control panel
in power control panel, click on change power button does
then choose change options unavailable
uncheck fast start
- in administrative command prompt window, type
powercfg /h off
Comments
Post a Comment