My problem happens when I boot my laptop.
- Context :
First , I have a dual-boot Ubuntu 20.04 , Windows 10 . Everything was working fine , but now I can't access to my Ubuntu disk , the window's one is working well .
- The problem :
I can't boot to Ubuntu. It shows me the following error :
/dev/nvme0n1p6: clean, 512216/6111232 files , xxxx/xxxxx blocks.
- Fsck debug:
sudo fsck -f
fsck de util-linux 2.34
e2fsck 1.45.5 (07-jan-2020)
/dev/nvme0n1p6 is mounted .
e2fsck: Can't continue . Aborting .
- I tried different things , and honestly reviewed all posts related to this , ( even if connecting to my wifi from secure boot was difficult because I have a special authentification wifi ...) , I tried sudo apt-get update , I also tried to purge nvidia* packets and reinstall drivers and it didn't work , I hope you can help because it's the end of the semester and I need my Ubuntu disk for my finals , any response would be very appreciated !
sudo apt-get update
and report the result to the community. – darth_epoxy Dec 08 '20 at 04:01
– Raffles Dec 08 '20 at 20:52fdisk -l
fsck
message; the cause of that is an unclean shutdown in the prior session; thus potential issue was detected &fsck
is run. Solution to that is only clean shutdown (using SysRq commands rather than for example the power button you may have been using). That is at most a symptom of a problem; the problem being user error via unclean shutdown. Next issue is you have a mounted drive you're trying tofsck
, you need toumount
it first - easiest via live media.FYI only – guiverc Dec 08 '20 at 21:17