we have a problem related to ext3 file system error in SUSE 11 service pack 1
The problem is we have a lvm partition which use ext3 file system and it is mounted in '/abc/bcd
' directory. we have a directory named 'global
' in /abc/bcd
When we create any directory or file in 'global' directory it generate "mkdir: cannot create directory : Invalid argument
" and we also unable to copy data of this global directory.
When we copy data of this global directory it generate 'Input/output error
' but when we create directory or file in another directory in /abc/bcd
directory it work well without any error.
How can we create directory or file in this global directory ?
dd
to copy the raw partition data (including the corruption, but also the data that's still there) off the failing disk immediately. If your disk then dies, you're not going to lose more data. Next, make a copy of the file you created withdd
and runfsck
on that file. This way, if recovery fails, you haven't lost your backup. If all goes well,fsck
will repair the filesystem for you to loopmount it. If not, make a second copy of thedd
output and usedebugfs
(from thee2fsprogs
package) to fix the filesystem. You may need professional help for this step, though. – Wouter Verhelst Jun 25 '15 at 15:28