0

Almost each time that I switch from Windows 10 to Ubuntu 16.10 which I installed on a dual boot laptop Ubuntu wants me to

e2fsck -b 32768 /dev/sdb5

Can I automate this during startup? If yes, how? Fixing problems shall be automatically done (I have to press A in order to have all errors fixed automatically). Other posts state that this is done automatically during startup but does not seem to work in my case. The volume is a SSD Samsung MZ-75E500B/EU 850. I also read there were issues with these SSD types and here. I did not experience data loss yet. I read that the trim feature has to be activated. This was done automatically in my case. Errors remain. Could anyone explain to me on how to deactivate trim or fix the problem in another way?

Here is my /etc/fstab

UUID=NUMBERS /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda2 during installation
UUID=NUMBERS  /boot/efi       vfat    umask=0077      0       1
# swap was on /dev/sda6 during installation
UUID=MORENUMBERS none            swap    sw              0       0

There is no discard option is described here.

Samsung Magician output.

Michael S.
  • 195
  • 10
  • 1
    In Windows, do you have a driver to access EXT2/3/4 partitions? Have you done the firmware update on the SSD? You don't want to deactivate trim. – heynnema Jan 26 '17 at 16:14
  • Yes, I have Ext2Fsd 0.69.1035-09.14 installed. – Michael S. Jan 26 '17 at 16:17
  • I did not update my firmware, I only checked a moment ago using the Samsung tool. It is already the latest. – Michael S. Jan 26 '17 at 16:18
  • Windows driver? Bypass the Samsung tool and manually check the web site to see if that's really the latest firmware. – heynnema Jan 26 '17 at 16:20
  • Samsung Magician. See image. I would like to avoid a firmware update if not really necessary. – Michael S. Jan 26 '17 at 16:29
  • I deinstalled Ext2Fsd 0.69.1035-09.14. Until now the problem did not reoccur. – Michael S. Jan 26 '17 at 16:33
  • You still didn't answer my question about a Windows EXT2/3/4 driver. I believe you that the Samsung Magician says you are current... I asked that you manually check their web site for later versions. You can always read the changelog to see what, if anything, got fixed. You want to stay current with firmware updates. – heynnema Jan 26 '17 at 16:34
  • I did answer. Please read again. I cannot find the firmware on http://www.samsung.com/semiconductor/minisite/ssd/download/tools.html. 850 PRO is not 850 EVO, right? – Michael S. Jan 26 '17 at 16:58
  • 1
    Oh, I'm sorry. I mistook Ext2Fsd as the firmware version, but it's the Paragon driver... which I found corrupts EXT2/3/4 partitions... but you've uninstalled it, and that may fix your problem. Samsung Magician should be v5.0, dated Jan 4, 2017, and at the top of page http://www.samsung.com/us/support/owners/product/evo-850-series-120gb-2tb there's a link for updated software dated 1/18/2017 at http://orcaservice.samsungmobile.com/SWUpdate.aspx – heynnema Jan 26 '17 at 17:40
  • The Samsung Update application seems to download software for Samsung laptops. I have an Asus laptop where I installed the SSD by myself. I think removing the Paragon driver solved this. Thank you for your help. – Michael S. Jan 26 '17 at 18:00

1 Answers1

1

From the comments...

I've found that Windows EXT2/3/4 drivers can cause corruption on Ubuntu partitions.

The user had Paragon Ext2Fsd 0.69.1035-09.14 installed, and has now uninstalled it.

I suspect that will take care of the problem.

heynnema
  • 70,711