Hello!
I've a new 4TB Seagate Baracuda disk 2.5 factor.
I made an partition gpt size 3.7T
Code:
Disk /dev/sdd: 3,65 TiB, 4000787030016 bytes, 7814037168 sectors
Disk model: 024-2AN17V
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 6FF2C826-53D6-4442-9246-F351A1A6A773
Device Start End Sectors Size Type
/dev/sdd1 2048 7814037134 7814035087 3,7T Linux filesystem
and did an encryption of the whole device like
Code:
cryptsetup -c aes-xts-plain64 -y -s 512 luksFormat /dev/sdd
finally opended it and started to make an filesystem with
Code:
mkfs.ext4 -L bigbak /dev/mapper/bigbak -E lazy_itable_init=0,lazy_journal_init=0
I get these errors in kernel dump
Code:
Dez 06 08:45:22 xxx kernel: Out of memory: Killed process 217694 (node) total-vm:8928732kB, anon-rss:6045204kB, file-rss:1992kB, shmem-rss:0kB, UID:33 pgtables:14508kB oom_score_adj:0
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 7814002176, async page read
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 7814002177, async page read
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 7814002178, async page read
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 7814002179, async page read
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 7814002180, async page read
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 7814002181, async page read
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 7814002182, async page read
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 7814002183, async page read
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 0, async page read
Dez 06 09:02:54 xxx kernel: Buffer I/O error on dev dm-4, logical block 1, async page read
and these error in mkfs.ext4 process
Code:
mke2fs 1.45.5 (07-Jan-2020)
Creating filesystem with 976750289 4k blocks and 244195328 inodes
Filesystem UUID: fb4c42c6-edb3-4ba3-b5c0-fec8dbd28415
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
102400000, 214990848, 512000000, 550731776, 644972544
Allocating group tables: done
Warning: could not read block 0: Input/output error
Is my new harddrive already corrupted ? What do you assume ?
Thanks in andvance!