I tried to install Ubuntu on Acer Aspire 3 laptop but my HDD (WDC WD10SPZX-21Z10T0) wasn't recognized until doing suspend OS and wake up. This is dmesg | grep ata1
output before suspending:
[ 0.604968] ata1: SATA max UDMA/133 abar m2048@0x4fb13000 port 0x4fb13100 irq 125
[ 2.818041] ata1: SATA link down (SStatus 1 SControl 300)
and after
[ 123.660687] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 123.661423] ata1.00: ATA-10: WDC WD10SPZX-21Z10T0, 02.01A02, max UDMA/133
[ 123.661425] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 123.662151] ata1.00: configured for UDMA/133
Of course, I can install Ubuntu after waking up but it doesn't work (OS can't mount /
partition while booting because of unrecognized HDD)
I tried to switch SATA mode in UEFI, disable fast boot and secure boot, update UEFI firmware, but the result is the same.
Linux versions are Ubuntu-desktop 18.04, linuxmint-20-cinnamon.
Upd1: I tried different kernels from Ubuntu repositories and from https://kernel.ubuntu.com/~kernel-ppa/mainline.
Upd2: Seems this is a Linux issue, not just Ubuntu, cause Fedora33-beta does not recognize HDD too.
Upd3: Acer support answered that they do not help with OS installation.
/
of the installed OS to/mnt/
of your live-usb OS.e.g.
– alokym Apr 20 '21 at 11:21sudo mount /dev/sda1 /mnt
where /dev/sda1 is your partition where you have installed Ubuntu 2. bind/dev
,/dev/pts
,/proc
,/sys
and/run
sudo mount --bind /dev /mnt/dev
sudo mount --bind /dev/pts /mnt/dev/pts
sudo mount --bind /proc /mnt/proc
and so on...sudo chroot /mnt
/
mounting. Try to install 5.14 kernel from chroot, maybe the Kernel community fixed the bug. To do it (onto 20.04), runapt-get install linux-oem-20.04d
– alokym Oct 08 '21 at 19:58