* Unrecoverable FS errors
@ 2017-01-27 12:11 V10lator
2017-01-29 4:14 ` Jaegeuk Kim
0 siblings, 1 reply; 5+ messages in thread
From: V10lator @ 2017-01-27 12:11 UTC (permalink / raw)
To: linux-f2fs-devel
Hi,
First off if this is the wrong mailing list please tell me, I just couldn't
find any other for f2fs.
Around a year (maybe longer) ago my computer crashed, the only way was a
hard reset which caused f2fs corruptions. Since then fsck.f2fs -f finds
errors. These are always the same errors.
Today I noticed my package manager unlinking a death link but that failed,
so I looked into the directory for myself:
ls /etc/ssl/certs/ | grep EBG_Elektronik
EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
so the file is there, let's look closer:
$ LANG=C ls -l /etc/ssl/certs/ | grep EBG_Elektronik
ls: Zugriff auf
'/etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem' nicht
möglich: Datei oder Verzeichnis nicht gefunden
l????????? ? ? ? ? ?
EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
Doesn't look good. One more try:
$ LANG=C file
/etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
/etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem: cannot open
`/etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem' (No such
file or directory)
Okay, so the file is clearly corrupted. Let's remove it:
# LANG=C LC_ALL=C rm
/etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
rm: cannot remove
'/etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa'$'\304\237''lay'$'\304\261''c'$'\304\261''s'$'\304\261''.pem':
No such file or directory
Is there anything I can do to remove that file (or the directory entry as I
think there is no file) ?
Thanks,
Thomas "V10lator" Rohloff
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Unrecoverable FS errors
2017-01-27 12:11 Unrecoverable FS errors V10lator
@ 2017-01-29 4:14 ` Jaegeuk Kim
2017-01-29 18:14 ` V10lator
0 siblings, 1 reply; 5+ messages in thread
From: Jaegeuk Kim @ 2017-01-29 4:14 UTC (permalink / raw)
To: V10lator; +Cc: linux-f2fs-devel
Hi,
On 01/27, V10lator wrote:
> Hi,
>
> First off if this is the wrong mailing list please tell me, I just couldn't
> find any other for f2fs.
>
> Around a year (maybe longer) ago my computer crashed, the only way was a
> hard reset which caused f2fs corruptions. Since then fsck.f2fs -f finds
> errors. These are always the same errors.
Which version of fsck.f2fs did you use?
I suspect the version may be too old. You can get the latest one from:
http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/log/?h=dev-test
Thanks,
>
> Today I noticed my package manager unlinking a death link but that failed,
> so I looked into the directory for myself:
>
> ls /etc/ssl/certs/ | grep EBG_Elektronik
> EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
>
>
> so the file is there, let's look closer:
>
> $ LANG=C ls -l /etc/ssl/certs/ | grep EBG_Elektronik
> ls: Zugriff auf
> '/etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem' nicht
> möglich: Datei oder Verzeichnis nicht gefunden
> l????????? ? ? ? ? ?
> EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
>
>
> Doesn't look good. One more try:
>
> $ LANG=C file
> /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
> /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem: cannot open
> `/etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem' (No such
> file or directory)
>
>
> Okay, so the file is clearly corrupted. Let's remove it:
>
> # LANG=C LC_ALL=C rm
> /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
> rm: cannot remove
> '/etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa'$'\304\237''lay'$'\304\261''c'$'\304\261''s'$'\304\261''.pem':
> No such file or directory
>
>
>
> Is there anything I can do to remove that file (or the directory entry as I
> think there is no file) ?
>
> Thanks,
> Thomas "V10lator" Rohloff
>
> ------------------------------------------------------------------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, SlashDot.org! http://sdm.link/slashdot
> _______________________________________________
> Linux-f2fs-devel mailing list
> Linux-f2fs-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Unrecoverable FS errors
2017-01-29 4:14 ` Jaegeuk Kim
@ 2017-01-29 18:14 ` V10lator
2017-01-30 23:22 ` Jaegeuk Kim
0 siblings, 1 reply; 5+ messages in thread
From: V10lator @ 2017-01-29 18:14 UTC (permalink / raw)
To: Jaegeuk Kim; +Cc: linux-f2fs-devel
Hi,
I compiled and tried the version you linked, sadly it's still the same.
Thanks for your support
Am Sonntag, 29. Januar 2017 05:14:46 CET schrieb Jaegeuk Kim:
> Hi,
>
> On 01/27, V10lator wrote:
>> Hi,
>>
>> First off if this is the wrong mailing list please tell me, I
>> just couldn't
>> find any other for f2fs.
>>
>> Around a year (maybe longer) ago my computer crashed, the only way was a
>> hard reset which caused f2fs corruptions. Since then fsck.f2fs -f finds
>> errors. These are always the same errors.
>
> Which version of fsck.f2fs did you use?
> I suspect the version may be too old. You can get the latest one from:
>
> http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/log/?h=dev-test
>
> Thanks,
>
>> Today I noticed my package manager unlinking a death link but
>> that failed,
>> so I looked into the directory for myself:
>>
>> ls /etc/ssl/certs/ | grep EBG_Elektronik
>> EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
>>
>>
>> so the file is there, let's look closer: ...
>
>
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Unrecoverable FS errors
2017-01-29 18:14 ` V10lator
@ 2017-01-30 23:22 ` Jaegeuk Kim
2017-02-01 17:59 ` V10lator
0 siblings, 1 reply; 5+ messages in thread
From: Jaegeuk Kim @ 2017-01-30 23:22 UTC (permalink / raw)
To: V10lator; +Cc: linux-f2fs-devel
On 01/29, V10lator wrote:
> Hi,
>
> I compiled and tried the version you linked, sadly it's still the same.
Oh, was there no reported error?
Then, which kernel version are you using?
Thanks,
>
> Thanks for your support
>
> Am Sonntag, 29. Januar 2017 05:14:46 CET schrieb Jaegeuk Kim:
> > Hi,
> >
> > On 01/27, V10lator wrote:
> > > Hi,
> > >
> > > First off if this is the wrong mailing list please tell me, I just
> > > couldn't find any other for f2fs.
> > >
> > > Around a year (maybe longer) ago my computer crashed, the only way
> > > was a hard reset which caused f2fs corruptions. Since then fsck.f2fs
> > > -f finds errors. These are always the same errors.
> >
> > Which version of fsck.f2fs did you use?
> > I suspect the version may be too old. You can get the latest one from:
> >
> > http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/log/?h=dev-test
> >
> > Thanks,
> >
> > > Today I noticed my package manager unlinking a death link but that
> > > failed, so I looked into the directory for myself:
> > >
> > > ls /etc/ssl/certs/ | grep EBG_Elektronik
> > > EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem
> > >
> > >
> > > so the file is there, let's look closer: ...
> >
> >
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Unrecoverable FS errors
2017-01-30 23:22 ` Jaegeuk Kim
@ 2017-02-01 17:59 ` V10lator
0 siblings, 0 replies; 5+ messages in thread
From: V10lator @ 2017-02-01 17:59 UTC (permalink / raw)
To: Jaegeuk Kim; +Cc: linux-f2fs-devel
Am Dienstag, 31. Januar 2017 00:22:52 CET schrieb Jaegeuk Kim:
> On 01/29, V10lator wrote:
>> Hi,
>>
>> I compiled and tried the version you linked, sadly it's still the same.
>
> Oh, was there no reported error?
Yes there was, sorry for not showing earlier:
Info: Force to fix corruption
Info: Segments per section = 1
Info: Sections per zone = 1
Info: sector size = 512
Info: total sectors = 247967744 (121078 MB)
Info: MKFS version
""
Info: FSCK version
from "Linux version 4.8.17-hardened-r1 (root@kali) (gcc version 5.3.0
(Gentoo Hardened 5.3.0 p1.1, pie-0.6.5) ) #3 SMP PREEMPT Wed Feb 1 13:02:02
CET 2017"
to "Linux version 4.8.17-hardened-r1 (root@kali) (gcc version 5.3.0
(Gentoo Hardened 5.3.0 p1.1, pie-0.6.5) ) #3 SMP PREEMPT Wed Feb 1 13:02:02
CET 2017"
Info: superblock features = 0 :
Info: superblock encrypt level = 0, salt = 00000000000000000000000000000000
Info: total FS sectors = 247967744 (121078 MB)
Info: CKPT version = 189ba6
Info: checkpoint state = 1 : unmount
[ASSERT] (f2fs_check_dirent_position:1152) --> Wrong position of dirent
pino:175381, name:NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem, level:1,
dir_level:0, pgofs:4, correct range:[2, 3]
[ASSERT] (f2fs_check_dirent_position:1152) --> Wrong position of dirent
pino:552333, name:fr-Besançon, level:1, dir_level:0, pgofs:4, correct
range:[2, 3]
[ASSERT] (f2fs_check_dirent_position:1152) --> Wrong position of dirent
pino:552333, name:fr-Alençon, level:1, dir_level:0, pgofs:5, correct
range:[2, 3]
[ASSERT] (f2fs_check_dirent_position:1152) --> Wrong position of dirent
pino:599566,
name:TÜBİTAK_UEKAE_Kök_Sertifika_Hizmet_Sağlayıcısı_-_Sürüm_3.crt, level:1,
dir_level:0, pgofs:2, correct range:[4, 5]
[FSCK] Unreachable nat entries [Ok..] [0x0]
[FSCK] SIT valid block bitmap checking [Ok..]
[FSCK] Hard link checking for regular file [Ok..] [0x97]
[FSCK] valid_block_count matching with CP [Ok..] [0x16d1141]
[FSCK] valid_node_count matcing with CP (de lookup) [Ok..] [0xf869d]
[FSCK] valid_node_count matcing with CP (nat lookup) [Ok..] [0xf869d]
[FSCK] valid_inode_count matched with CP [Ok..] [0xc05d9]
[FSCK] free segment_count matched with CP [Ok..] [0x34d0]
[FSCK] next block offset is free [Ok..]
[FSCK] fixing SIT types
[FSCK] other corrupted bugs [Fail]
Done.
> Then, which kernel version are you using?
4.8.17
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-02-01 17:59 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-27 12:11 Unrecoverable FS errors V10lator
2017-01-29 4:14 ` Jaegeuk Kim
2017-01-29 18:14 ` V10lator
2017-01-30 23:22 ` Jaegeuk Kim
2017-02-01 17:59 ` V10lator
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).