You are not logged in.
Hello forum,
I got a new baby to deal with.
I would like to backup the original OS and put my system over that space. Unfortunately the kernel fail to assign the PCIE mass storage (aka SSD).
$ lspci |grep -i pcie
# nothing
$ lspci |grep -i nvme
# nothing
$ sudo journalctl |grep -i pcie
lug 20 12:53:44 AcerXC886 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
lug 20 12:53:44 AcerXC886 kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
lug 20 12:53:44 AcerXC886 kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR DPC]
lug 20 12:53:44 AcerXC886 kernel: pcieport 0000:00:1c.0: AER: enabled with IRQ 122
lug 20 12:53:44 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: enabled with IRQ 123
lug 20 13:26:29 AcerXC886 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
lug 20 13:26:29 AcerXC886 kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
lug 20 13:26:29 AcerXC886 kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR DPC]
lug 20 13:26:29 AcerXC886 kernel: pcieport 0000:00:1c.0: AER: enabled with IRQ 122
lug 20 13:26:29 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: enabled with IRQ 123
lug 20 17:51:24 AcerXC886 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
lug 20 17:51:24 AcerXC886 kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
lug 20 17:51:24 AcerXC886 kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR DPC]
lug 20 17:51:24 AcerXC886 kernel: pcieport 0000:00:1c.0: AER: enabled with IRQ 122
lug 20 17:51:24 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: enabled with IRQ 123
lug 20 20:11:25 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: Multiple Corrected error received: 0000:00:1c.6
lug 20 20:11:25 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: PCIe Bus Error: severity=Corrected, type=Physical Layer, (Receiver ID)
lug 20 20:11:25 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: device [8086:a296] error status/mask=00000001/00002000
lug 20 20:11:25 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: [ 0] RxErr (First)
lug 20 20:18:28 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: Multiple Corrected error received: 0000:00:1c.6
lug 20 20:18:28 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: PCIe Bus Error: severity=Corrected, type=Physical Layer, (Receiver ID)
lug 20 20:18:28 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: device [8086:a296] error status/mask=00000001/00002000
lug 20 20:18:28 AcerXC886 kernel: pcieport 0000:00:1c.6: AER: [ 0] RxErr (First)
sudo journalctl |grep -i nvme
lug 20 12:53:44 AcerXC886 kernel: ahci 0000:00:17.0: Found 1 remapped NVMe devices.
lug 20 13:26:29 AcerXC886 kernel: ahci 0000:00:17.0: Found 1 remapped NVMe devices.
lug 20 17:51:24 AcerXC886 kernel: ahci 0000:00:17.0: Found 1 remapped NVMe devices.
$ ls /dev/n*
/dev/null /dev/nvram
/dev/net:
tunHow do I mount that mass storage?
EDIT
SOLUTION
Following the information provided I could dig to the BIOS and I found the option to disable Intel RST and using the AHCI instead.
Last edited by TheSaint (2020-07-21 13:46:27)
do it good first, it will be faster than do it twice the saint ![]()
Offline
https://bbs.archlinux.org/viewtopic.php?id=257375 ?
If not please post the full dmesg output along with the lspci -nnk entry for the device.
Offline
Thank you for the reply,
The hardware is different, because the BIOS reports a Samsung brand. I'll be back here once I had tried the linux-lts.
EDIT
I tried the kernel LTS, but no improvements. I created a report in the hope to give the necessary to study the case.
Last edited by TheSaint (2020-07-21 08:11:14)
do it good first, it will be faster than do it twice the saint ![]()
Offline
lug 20 17:51:24 AcerXC886 kernel: ahci 0000:00:17.0: Found 1 remapped NVMe devices.
It looks as if you have that foolish RAID (FakeRAID / Intel RST / Intel Rapid Storage Technology(R)) enabled instead of AHCI in your BIOS. That could be is unsupported.
Lines before or after your log keyword match might be relevant as well, so you should not only look at filtered logs.
https://askubuntu.com/questions/1211851 … -raid-mode
https://askubuntu.com/questions/1116908 … t-detected
https://bugs.launchpad.net/ubuntu/+sour … ug/1808842
Relevant kernel discussion:
https://lore.kernel.org/linux-pci/20190 … 7c49f478a6
Last edited by progandy (2020-07-21 09:59:59)
| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |
Offline
I saw some new BIOS version for this machine, but my machine is just three days old that I'm afraid to write the newer BIOS. Besides that I don't know whether will produce any benefit for this case.
EDIT
Thank you all for the given information, so I could find the solution. The solution is laying around the BIOS option, as you may see in this picture.
Last edited by TheSaint (2020-07-21 13:51:59)
do it good first, it will be faster than do it twice the saint ![]()
Offline