Sie sind nicht angemeldet.

[erledigt] Festplatte defekt?

Lieber Besucher, herzlich willkommen bei: Ubuntu-Forum & Kubuntu-Forum | www.Ubuntu-Forum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

15.01.2016, 16:04

Festplatte defekt?

Hallo,

vor ein paar Tagen, lief mein Ubuntu erst nur noch sehr langsam, bis es dann gleich nach dem booten abstürzte bzw. erst noch einschlief. Wahrscheinlich immer dann, wenn eine Anwendung Daten in das Home-Verzeichnis (eigene Partition) schreiben wollte. Ein Blick in "Laufwerke"(DISKS) offenbahrte mir dann die Aussage, das die Platte bald Ihren Dienst verweigern wolle. Gparted braucht zum Start eine kleine Ewigkeit und setzt vor die Anzeige der Festplattendaten einen Warnhinweis, dass die phy. Blockgröße sich von dem Unterscheidet, was Linux dazu kennt. Siehe die Bilder unten!
Auch gibt fdisk für meine Verhältnisse komische Angaben aus - siehe Sektorengröße.

Die Festplatte ist eine WD WDC WD10JPVX-22JC3T0 (01.01A01)

Ist das nun ein Hardwarefehler oder ist das irgendwie zu beheben? Ich suche schon eine Ewigkeit dazu im Netz (Google und hier im Forum, habe aber nichts gefunden, was auf mich passt)

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Sudo
fdisk -l:

Disk /dev/sda: 931.5
GiB, 1000204886016 bytes, 1953525168 sectors
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:
4A654D13-CC37-457B-8EBB-B67E5E8AE15D

Device     Start    
   End    Sectors   Size Type
/dev/sda1   2048
1953523711 1953521664 931.5G Linux filesystem


Quellcode

1
2
3
4
5
6
MOUNT gibt
folgendes zurück:

/dev/sda1 on
/media/ubuntu-mate/free type ext4
(rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)


Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
dmesg-Ausgabe:

e=DRIVER_TIMEOUT
[145280.195369] sd
0:0:0:0: [sda] tag#6 CDB: Write(10) 2a 00 3a 04 a0 40 00 05 40 00
[145280.195371]
blk_update_request: I/O error, dev sda, sector 973381696
[145280.195474] sd
0:0:0:0: [sda] tag#3 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145280.195477] sd
0:0:0:0: [sda] tag#3 CDB: Write(10) 2a 00 3a 04 9b 00 00 05 40 00
[145280.195478]
blk_update_request: I/O error, dev sda, sector 973380352
[145280.195580] sd
0:0:0:0: [sda] tag#25 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145280.195582] sd
0:0:0:0: [sda] tag#25 CDB: Write(10) 2a 00 3a 04 95 c0 00 05 40 00
[145280.195583]
blk_update_request: I/O error, dev sda, sector 973379008
[145280.195687] sd
0:0:0:0: [sda] tag#14 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145280.195689] sd
0:0:0:0: [sda] tag#14 CDB: Write(10) 2a 00 3a 04 90 80 00 05 40 00
[145280.195691]
blk_update_request: I/O error, dev sda, sector 973377664
[145280.195793] sd
0:0:0:0: [sda] tag#13 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145280.195795] sd
0:0:0:0: [sda] tag#13 CDB: Write(10) 2a 00 3a 04 8b 40 00 05 40 00
[145280.195796]
blk_update_request: I/O error, dev sda, sector 973376320
[145280.195905] sd
0:0:0:0: [sda] tag#5 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145280.195907] sd
0:0:0:0: [sda] tag#5 CDB: Write(10) 2a 00 3a 04 86 00 00 05 40 00
[145280.195909]
blk_update_request: I/O error, dev sda, sector 973374976
[145280.196011] sd
0:0:0:0: [sda] tag#12 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145280.196013] sd
0:0:0:0: [sda] tag#12 CDB: Write(10) 2a 00 3a 04 80 c0 00 05 40 00
[145280.196015]
blk_update_request: I/O error, dev sda, sector 973373632
[145280.196704]
ata1: EH complete
[145280.434388] sd
0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't
support DPO or FUA
[145341.154043]
ata1.00: exception Emask 0x0 SAct 0x814480 SErr 0x0 action 0x6 frozen
[145341.154049]
ata1.00: failed command: WRITE FPDMA QUEUED
[145341.154055]
ata1.00: cmd 61/08:38:00:08:80/00:00:3c:00:00/40 tag 7 ncq 4096 out
                    
    res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[145341.154058]
ata1.00: status: { DRDY }
[145341.154060]
ata1.00: failed command: WRITE FPDMA QUEUED
[145341.154064]
ata1.00: cmd 61/08:50:00:08:80/00:00:3d:00:00/40 tag 10 ncq 4096 out
                    
    res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[145341.154066]
ata1.00: status: { DRDY }
[145341.154068]
ata1.00: failed command: WRITE FPDMA QUEUED
[145341.154071]
ata1.00: cmd 61/08:70:00:08:00/00:00:3d:00:00/40 tag 14 ncq 4096 out
                    
    res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[145341.154073]
ata1.00: status: { DRDY }
[145341.154075]
ata1.00: failed command: WRITE FPDMA QUEUED
[145341.154078]
ata1.00: cmd 61/08:80:00:08:40/00:00:3b:00:00/40 tag 16 ncq 4096 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[145341.154080]
ata1.00: status: { DRDY }
[145341.154082]
ata1.00: failed command: WRITE FPDMA QUEUED
[145341.154085]
ata1.00: cmd 61/08:b8:00:08:c0/00:00:3b:00:00/40 tag 23 ncq 4096 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[145341.154087]
ata1.00: status: { DRDY }
[145341.154091]
ata1: hard resetting link
[145342.210886]
ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[145342.212657]
ata1.00: configured for UDMA/133
[145342.226889]
ata1.00: device reported invalid CHS sector 0
[145342.226896]
ata1.00: device reported invalid CHS sector 0
[145342.226899]
ata1.00: device reported invalid CHS sector 0
[145342.226902]
ata1.00: device reported invalid CHS sector 0
[145342.226904]
ata1.00: device reported invalid CHS sector 0
[145342.226920]
scsi_io_completion: 6 callbacks suppressed
[145342.226926] sd
0:0:0:0: [sda] tag#18 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.226931] sd
0:0:0:0: [sda] tag#18 CDB: Write(10) 2a 00 3a 07 b9 08 00 05 40 00
[145342.226933]
blk_update_request: 6 callbacks suppressed
[145342.226935]
blk_update_request: I/O error, dev sda, sector 973584648
[145342.226939]
buffer_io_error: 2678 callbacks suppressed
[145342.226941]
Buffer I/O error on dev sda1, logical block 121697825, lost async
page write
[145342.226949]
Buffer I/O error on dev sda1, logical block 121697826, lost async
page write
[145342.226952]
Buffer I/O error on dev sda1, logical block 121697827, lost async
page write
[145342.226954]
Buffer I/O error on dev sda1, logical block 121697828, lost async
page write
[145342.226957]
Buffer I/O error on dev sda1, logical block 121697829, lost async
page write
[145342.226959]
Buffer I/O error on dev sda1, logical block 121697830, lost async
page write
[145342.226962]
Buffer I/O error on dev sda1, logical block 121697831, lost async
page write
[145342.226964]
Buffer I/O error on dev sda1, logical block 121697832, lost async
page write
[145342.226966]
Buffer I/O error on dev sda1, logical block 121697833, lost async
page write
[145342.226968]
Buffer I/O error on dev sda1, logical block 121697834, lost async
page write
[145342.227093] sd
0:0:0:0: [sda] tag#17 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.227096] sd
0:0:0:0: [sda] tag#17 CDB: Write(10) 2a 00 3a 07 b3 c8 00 05 40 00
[145342.227098]
blk_update_request: I/O error, dev sda, sector 973583304
[145342.227298] sd
0:0:0:0: [sda] tag#30 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.227301] sd
0:0:0:0: [sda] tag#30 CDB: Write(10) 2a 00 3a 07 dd c8 00 05 40 00
[145342.227303]
blk_update_request: I/O error, dev sda, sector 973594056
[145342.227414] sd
0:0:0:0: [sda] tag#3 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.227416] sd
0:0:0:0: [sda] tag#3 CDB: Write(10) 2a 00 3a 07 d8 88 00 05 40 00
[145342.227418]
blk_update_request: I/O error, dev sda, sector 973592712
[145342.227525] sd
0:0:0:0: [sda] tag#20 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.227528] sd
0:0:0:0: [sda] tag#20 CDB: Write(10) 2a 00 3a 07 d3 48 00 05 40 00
[145342.227529]
blk_update_request: I/O error, dev sda, sector 973591368
[145342.227640] sd
0:0:0:0: [sda] tag#29 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.227643] sd
0:0:0:0: [sda] tag#29 CDB: Write(10) 2a 00 3a 07 ce 08 00 05 40 00
[145342.227645]
blk_update_request: I/O error, dev sda, sector 973590024
[145342.227748] sd
0:0:0:0: [sda] tag#12 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.227751] sd
0:0:0:0: [sda] tag#12 CDB: Write(10) 2a 00 3a 07 c8 c8 00 05 40 00
[145342.227752]
blk_update_request: I/O error, dev sda, sector 973588680
[145342.227860] sd
0:0:0:0: [sda] tag#26 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.227863] sd
0:0:0:0: [sda] tag#26 CDB: Write(10) 2a 00 3a 07 c3 88 00 05 40 00
[145342.227864]
blk_update_request: I/O error, dev sda, sector 973587336
[145342.227975] sd
0:0:0:0: [sda] tag#11 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.227978] sd
0:0:0:0: [sda] tag#11 CDB: Write(10) 2a 00 3a 07 be 48 00 05 40 00
[145342.227980]
blk_update_request: I/O error, dev sda, sector 973585992
[145342.228178] sd
0:0:0:0: [sda] tag#9 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[145342.228181] sd
0:0:0:0: [sda] tag#9 CDB: Write(10) 2a 00 3a 07 e3 08 00 05 40 00
[145342.228183]
blk_update_request: I/O error, dev sda, sector 973595400
[145342.229233]
ata1: EH complete
[145377.697671]
------------[ cut here ]------------
[145377.697679]
WARNING: CPU: 2 PID: 18079 at
/build/linux-AxjFAn/linux-4.2.0/fs/block_dev.c:57
__blkdev_put+0xbf/0x1f0()
[145377.697681]
Modules linked in: xfs libcrc32c jfs btrfs xor raid6_pq nls_iso8859_1
rfcomm nvram msr bnep uvcvideo videobuf2_vmalloc videobuf2_memops
videobuf2_core v4l2_common videodev btusb btrtl btbcm btintel media
bluetooth snd_hda_codec_realtek intel_rapl snd_hda_codec_hdmi
snd_hda_codec_generic iosf_mbi x86_pkg_temp_thermal intel_powerclamp
snd_hda_intel coretemp joydev hid_multitouch acer_wmi snd_hda_codec
kvm_intel sparse_keymap arc4 snd_hda_core kvm snd_hwdep rtl8723be
snd_pcm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel btcoexist
aesni_intel rtl8723_common rtl_pci snd_seq_midi snd_seq_midi_event
aes_x86_64 lrw gf128mul rtlwifi snd_rawmidi glue_helper snd_seq
input_leds mac80211 ablk_helper snd_seq_device cryptd cfg80211
serio_raw snd_timer mei_me dw_dmac dw_dmac_core snd lpc_ich mei
[145377.697714] 
8250_dw spi_pxa2xx_platform soundcore shpchp mac_hid
i2c_designware_platform i2c_designware_core parport_pc ppdev lp
parport autofs4 squashfs overlay nls_utf8 isofs dm_mirror
dm_region_hash dm_log hid_logitech_hidpp hid_logitech_dj usbhid uas
usb_storage nouveau i915 mxm_wmi ttm i2c_algo_bit ahci drm_kms_helper
libahci drm r8169 mii wmi i2c_hid video hid sdhci_acpi sdhci
[145377.697733] CPU:
2 PID: 18079 Comm: mkfs.ext4 Tainted: G        W      
4.2.0-16-generic #19-Ubuntu
[145377.697735]
Hardware name: Acer Aspire E5-771G/EA70_HB, BIOS V1.07 06/04/2014
[145377.697736] 
0000000000000000 0000000083530cbe ffff88025206bdb8 ffffffff817e8c09
[145377.697738] 
0000000000000000 0000000000000000 ffff88025206bdf8 ffffffff8107b3c6
[145377.697739] 
0000000000000000 ffff8802553e30c0 ffff8802553e3238 ffff8802553e31b0
[145377.697741] Call
Trace:
[145377.697746] 
[<ffffffff817e8c09>] dump_stack+0x45/0x57
[145377.697749] 
[<ffffffff8107b3c6>] warn_slowpath_common+0x86/0xc0
[145377.697751] 
[<ffffffff8107b4fa>] warn_slowpath_null+0x1a/0x20
[145377.697753] 
[<ffffffff812376af>] __blkdev_put+0xbf/0x1f0
[145377.697755] 
[<ffffffff81237c70>] blkdev_put+0x50/0x120
[145377.697757] 
[<ffffffff81237d65>] blkdev_close+0x25/0x30
[145377.697760] 
[<ffffffff811fee84>] __fput+0xe4/0x220
[145377.697762] 
[<ffffffff811ff00e>] ____fput+0xe/0x10
[145377.697764] 
[<ffffffff81098b55>] task_work_run+0x85/0xb0
[145377.697767] 
[<ffffffff81014ea9>] do_notify_resume+0x69/0x70
[145377.697770] 
[<ffffffff817efbc4>] int_signal+0x12/0x17
[145377.697772] ---[
end trace 1fd7d098ad5eeba9 ]---
[145989.312114]
ata1.00: exception Emask 0x0 SAct 0x80000 SErr 0x0 action 0x0
[145989.312120]
ata1.00: irq_stat 0x40000008
[145989.312125]
ata1.00: failed command: READ FPDMA QUEUED
[145989.312131]
ata1.00: cmd 60/80:98:f0:81:62/1b:00:3b:00:00/40 tag 19 ncq 3604480
in
                    
    res 41/40:00:20:95:62/00:00:3b:00:00/40 Emask 0x409 (media error)
<F>
[145989.312134]
ata1.00: status: { DRDY ERR }
[145989.312136]
ata1.00: error: { UNC }
[145989.313463]
ata1.00: configured for UDMA/133
[145989.313492]
scsi_io_completion: 16 callbacks suppressed
[145989.313498] sd
0:0:0:0: [sda] tag#19 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_SENSE
[145989.313502] sd
0:0:0:0: [sda] tag#19 Sense Key : Medium Error [current] [descriptor]

[145989.313505] sd
0:0:0:0: [sda] tag#19 Add. Sense: Unrecovered read error - auto
reallocate failed
[145989.313509] sd
0:0:0:0: [sda] tag#19 CDB: Read(10) 28 00 3b 62 81 f0 00 1b 80 00
[145989.313511]
blk_update_request: 16 callbacks suppressed
[145989.313514]
blk_update_request: I/O error, dev sda, sector 996316448
[145989.313534]
ata1: EH complete
[146244.809808]
EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts:
(null)
[146329.285547] usb
2-1: new SuperSpeed USB device number 4 using xhci_hcd
[146329.302351] usb
2-1: New USB device found, idVendor=174c, idProduct=55aa
[146329.302356] usb
2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[146329.302359] usb
2-1: Product: USB 3.0 device
[146329.302361] usb
2-1: Manufacturer: Intenso
[146329.302363] usb
2-1: SerialNumber: 9030000000000000307D
[146329.304293] scsi
host5: uas
[146329.304655] scsi
5:0:0:0: Direct-Access     Intenso  USB 3.0 device   0    PQ: 0 ANSI:
6
[146329.305232] sd
5:0:0:0: Attached scsi generic sg3 type 0
[146329.305375] sd
5:0:0:0: [sdc] Spinning up disk...
[146330.310266]
............ready
[146341.367927] sd
5:0:0:0: [sdc] 976754646 4096-byte logical blocks: (3.90 TB/3.63 TiB)
[146341.368350] sd
5:0:0:0: [sdc] Write Protect is off
[146341.368355] sd
5:0:0:0: [sdc] Mode Sense: 43 00 00 00
[146341.368507] sd
5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA
[146341.368973] sd
5:0:0:0: [sdc] 976754646 4096-byte logical blocks: (3.90 TB/3.63 TiB)
[146341.391976] 
sdc: sdc1
[146341.392328] sd
5:0:0:0: [sdc] 976754646 4096-byte logical blocks: (3.90 TB/3.63 TiB)
[146341.392890] sd
5:0:0:0: [sdc] Attached SCSI disk
[146397.658691]
FAT-fs (sdc1): Volume was not properly unmounted. Some data may be
corrupt. Please run fsck.
[146735.163221] usb
2-1: USB disconnect, device number 4
[146735.198236] sd
5:0:0:0: [sdc] Synchronizing SCSI cache
[146735.319312] sd
5:0:0:0: [sdc] Synchronize Cache(10) failed: Result:
hostbyte=DID_ERROR driverbyte=DRIVER_OK
[147168.084500]
ntfs: driver 2.1.32 [Flags: R/O MODULE].
[147168.116532] QNX4
filesystem 0.2.3 registered.
[147432.493550]
Adding 8309756k swap on /dev/sda3.  Priority:-1 extents:1
across:8309756k FS
[147557.868316]
ata1.00: exception Emask 0x0 SAct 0x300007bf SErr 0x0 action 0x6
frozen
[147557.868322]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868328]
ata1.00: cmd 61/40:00:c0:95:94/05:00:39:00:00/40 tag 0 ncq 688128 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868331]
ata1.00: status: { DRDY }
[147557.868333]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868337]
ata1.00: cmd 61/40:08:00:9b:94/05:00:39:00:00/40 tag 1 ncq 688128 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868339]
ata1.00: status: { DRDY }
[147557.868340]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868344]
ata1.00: cmd 61/40:10:c0:bf:94/05:00:39:00:00/40 tag 2 ncq 688128 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868346]
ata1.00: status: { DRDY }
[147557.868348]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868351]
ata1.00: cmd 61/40:18:40:a0:94/05:00:39:00:00/40 tag 3 ncq 688128 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868353]
ata1.00: status: { DRDY }
[147557.868355]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868358]
ata1.00: cmd 61/40:20:80:a5:94/05:00:39:00:00/40 tag 4 ncq 688128 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868360]
ata1.00: status: { DRDY }
[147557.868362]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868365]
ata1.00: cmd 61/40:28:c0:aa:94/05:00:39:00:00/40 tag 5 ncq 688128 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868367]
ata1.00: status: { DRDY }
[147557.868369]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868372]
ata1.00: cmd 61/40:38:00:c5:94/05:00:39:00:00/40 tag 7 ncq 688128 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868374]
ata1.00: status: { DRDY }
[147557.868376]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868379]
ata1.00: cmd 61/40:40:00:b0:94/05:00:39:00:00/40 tag 8 ncq 688128 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868381]
ata1.00: status: { DRDY }
[147557.868383]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868386]
ata1.00: cmd 61/40:48:40:b5:94/05:00:39:00:00/40 tag 9 ncq 688128 out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868388]
ata1.00: status: { DRDY }
[147557.868390]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868393]
ata1.00: cmd 61/40:50:80:ba:94/05:00:39:00:00/40 tag 10 ncq 688128
out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868395]
ata1.00: status: { DRDY }
[147557.868397]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868401]
ata1.00: cmd 61/40:e0:40:8b:94/05:00:39:00:00/40 tag 28 ncq 688128
out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868403]
ata1.00: status: { DRDY }
[147557.868404]
ata1.00: failed command: WRITE FPDMA QUEUED
[147557.868408]
ata1.00: cmd 61/40:e8:80:90:94/05:00:39:00:00/40 tag 29 ncq 688128
out
                    
    res 40/00:ff:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[147557.868410]
ata1.00: status: { DRDY }
[147557.868413]
ata1: hard resetting link
[147558.640941]
ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[147558.642774]
ata1.00: configured for UDMA/133
[147558.660896]
ata1.00: device reported invalid CHS sector 0
[147558.660900]
ata1.00: device reported invalid CHS sector 0
[147558.660902]
ata1.00: device reported invalid CHS sector 0
[147558.660903]
ata1.00: device reported invalid CHS sector 0
[147558.660905]
ata1.00: device reported invalid CHS sector 0
[147558.660906]
ata1.00: device reported invalid CHS sector 0
[147558.660908]
ata1.00: device reported invalid CHS sector 0
[147558.660909]
ata1.00: device reported invalid CHS sector 0
[147558.660910]
ata1.00: device reported invalid CHS sector 0
[147558.660911]
ata1.00: device reported invalid CHS sector 0
[147558.660913]
ata1.00: device reported invalid CHS sector 0
[147558.660914]
ata1.00: device reported invalid CHS sector 0
[147558.660928] sd
0:0:0:0: [sda] tag#27 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147558.660931] sd
0:0:0:0: [sda] tag#27 CDB: Write(10) 2a 00 39 94 86 00 00 05 40 00
[147558.660933]
blk_update_request: I/O error, dev sda, sector 966034944
[147558.660936]
buffer_io_error: 2694 callbacks suppressed
[147558.660937]
Buffer I/O error on dev sda2, logical block 120623040, lost async
page write
[147558.660943]
Buffer I/O error on dev sda2, logical block 120623041, lost async
page write
[147558.660944]
Buffer I/O error on dev sda2, logical block 120623042, lost async
page write
[147558.660946]
Buffer I/O error on dev sda2, logical block 120623043, lost async
page write
[147558.660948]
Buffer I/O error on dev sda2, logical block 120623044, lost async
page write
[147558.660949]
Buffer I/O error on dev sda2, logical block 120623045, lost async
page write
[147558.660951]
Buffer I/O error on dev sda2, logical block 120623046, lost async
page write
[147558.660952]
Buffer I/O error on dev sda2, logical block 120623047, lost async
page write
[147558.660954]
Buffer I/O error on dev sda2, logical block 120623048, lost async
page write
[147558.660955]
Buffer I/O error on dev sda2, logical block 120623049, lost async
page write
[147558.661050] sd
0:0:0:0: [sda] tag#25 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147558.661052] sd
0:0:0:0: [sda] tag#25 CDB: Write(10) 2a 00 39 94 80 c0 00 05 40 00
[147558.661053]
blk_update_request: I/O error, dev sda, sector 966033600
[147558.661133] sd
0:0:0:0: [sda] tag#24 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147558.661135] sd
0:0:0:0: [sda] tag#24 CDB: Write(10) 2a 00 39 94 7b 80 00 05 40 00
[147558.661136]
blk_update_request: I/O error, dev sda, sector 966032256
[147558.661215] sd
0:0:0:0: [sda] tag#22 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147558.661217] sd
0:0:0:0: [sda] tag#22 CDB: Write(10) 2a 00 39 94 76 40 00 05 40 00
[147558.661218]
blk_update_request: I/O error, dev sda, sector 966030912
[147558.661302] sd
0:0:0:0: [sda] tag#20 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147558.661304] sd
0:0:0:0: [sda] tag#20 CDB: Write(10) 2a 00 39 94 71 00 00 05 40 00
[147558.661305]
blk_update_request: I/O error, dev sda, sector 966029568
[147558.661384]
ata1: EH complete
[147632.396624]
EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts:
errors=remount-ro
[147739.022028] sd
0:0:0:0: [sda] tag#21 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022034] sd
0:0:0:0: [sda] tag#21 CDB: Write(10) 2a 00 1d 94 58 00 00 02 70 00
[147739.022037]
blk_update_request: I/O error, dev sda, sector 496261120
[147739.022042]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466644 (offset 0 size 32768 starting block 62032648)
[147739.022045]
Buffer I/O error on device sda2, logical block 61901312
[147739.022047]
Buffer I/O error on device sda2, logical block 61901313
[147739.022049]
Buffer I/O error on device sda2, logical block 61901314
[147739.022051]
Buffer I/O error on device sda2, logical block 61901315
[147739.022053]
Buffer I/O error on device sda2, logical block 61901316
[147739.022054]
Buffer I/O error on device sda2, logical block 61901317
[147739.022056]
Buffer I/O error on device sda2, logical block 61901318
[147739.022058]
Buffer I/O error on device sda2, logical block 61901319
[147739.022062]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466647 (offset 0 size 32768 starting block 62032656)
[147739.022064]
Buffer I/O error on device sda2, logical block 61901320
[147739.022066]
Buffer I/O error on device sda2, logical block 61901321
[147739.022072]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466648 (offset 0 size 114688 starting block 62032684)
[147739.022088]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466650 (offset 0 size 69632 starting block 62032701)
[147739.022099]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466651 (offset 0 size 40960 starting block 62032711)
[147739.022107]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466652 (offset 0 size 28672 starting block 62032718)
[147739.022122] sd
0:0:0:0: [sda] tag#29 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022124] sd
0:0:0:0: [sda] tag#29 CDB: Write(10) 2a 00 39 94 5d a0 00 01 20 00
[147739.022126]
blk_update_request: I/O error, dev sda, sector 966024608
[147739.022186] sd
0:0:0:0: [sda] tag#28 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022191] sd
0:0:0:0: [sda] tag#28 CDB: Write(10) 2a 00 39 94 58 60 00 05 40 00
[147739.022193]
blk_update_request: I/O error, dev sda, sector 966023264
[147739.022289] sd
0:0:0:0: [sda] tag#27 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022291] sd
0:0:0:0: [sda] tag#27 CDB: Write(10) 2a 00 39 94 53 20 00 05 40 00
[147739.022293]
blk_update_request: I/O error, dev sda, sector 966021920
[147739.022355] sd
0:0:0:0: [sda] tag#26 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022357] sd
0:0:0:0: [sda] tag#26 CDB: Write(10) 2a 00 1d 94 6c 28 00 02 18 00
[147739.022358]
blk_update_request: I/O error, dev sda, sector 496266280
[147739.022361]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466686 (offset 0 size 4096 starting block 62033286)
[147739.022366]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466685 (offset 0 size 8192 starting block 62033288)
[147739.022370]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466672 (offset 0 size 32768 starting block 62033296)
[147739.022378]
EXT4-fs warning (device sda2): ext4_end_bio:332: I/O error -5 writing
to inode 15466677 (offset 0 size 118784 starting block 62033325)
[147739.022421] sd
0:0:0:0: [sda] tag#25 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022423] sd
0:0:0:0: [sda] tag#25 CDB: Write(10) 2a 00 1d 94 68 68 00 03 c0 00
[147739.022425]
blk_update_request: I/O error, dev sda, sector 496265320
[147739.022494] sd
0:0:0:0: [sda] tag#24 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022496] sd
0:0:0:0: [sda] tag#24 CDB: Write(10) 2a 00 1d 94 64 00 00 04 68 00
[147739.022498]
blk_update_request: I/O error, dev sda, sector 496264192
[147739.022577] sd
0:0:0:0: [sda] tag#23 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022579] sd
0:0:0:0: [sda] tag#23 CDB: Write(10) 2a 00 1d 94 5f b0 00 04 50 00
[147739.022581]
blk_update_request: I/O error, dev sda, sector 496263088
[147739.022661] sd
0:0:0:0: [sda] tag#22 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022663] sd
0:0:0:0: [sda] tag#22 CDB: Write(10) 2a 00 1d 94 5a 70 00 05 40 00
[147739.022665]
blk_update_request: I/O error, dev sda, sector 496261744
[147739.022752] sd
0:0:0:0: [sda] tag#0 FAILED Result: hostbyte=DID_OK
driverbyte=DRIVER_TIMEOUT
[147739.022755] sd
0:0:0:0: [sda] tag#0 CDB: Write(10) 2a 00 5f 14 08 00 00 05 40 00
[147739.022756]
blk_update_request: I/O error, dev sda, sector 1595148288
[147739.024075]
Aborting journal on device sda2-8.
[147745.094078]
EXT4-fs error (device sda2) in ext4_init_inode_table:1342: IO failure
[147745.481994]
JBD2: Spotted dirty metadata buffer (dev = sda2, blocknr = 0).
There's a risk of filesystem corruption in case of system crash.
[147747.515870]
EXT4-fs (sda2): Remounting filesystem read-only
[147747.515875]
EXT4-fs error (device sda2): ext4_journal_check_start:56: Detected
aborted journal
[147808.738421] usb
2-2: new SuperSpeed USB device number 5 using xhci_hcd
[147808.755096] usb
2-2: New USB device found, idVendor=174c, idProduct=55aa
[147808.755100] usb
2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[147808.755103] usb
2-2: Product: USB 3.0 device
[147808.755105] usb
2-2: Manufacturer: Intenso
[147808.755106] usb
2-2: SerialNumber: 9030000000000000307D
[147808.757021] scsi
host6: uas
[147808.757367] scsi
6:0:0:0: Direct-Access     Intenso  USB 3.0 device   0    PQ: 0 ANSI:
6
[147808.757972] sd
6:0:0:0: Attached scsi generic sg3 type 0
[147808.757981] sd
6:0:0:0: [sdc] Spinning up disk...
[147809.759144]
............ready
[147820.816684] sd
6:0:0:0: [sdc] 976754646 4096-byte logical blocks: (3.90 TB/3.63 TiB)
[147820.817026] sd
6:0:0:0: [sdc] Write Protect is off
[147820.817029] sd
6:0:0:0: [sdc] Mode Sense: 43 00 00 00
[147820.817200] sd
6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA
[147820.817673] sd
6:0:0:0: [sdc] 976754646 4096-byte logical blocks: (3.90 TB/3.63 TiB)
[147820.839333] 
sdc: sdc1
[147820.839752] sd
6:0:0:0: [sdc] 976754646 4096-byte logical blocks: (3.90 TB/3.63 TiB)
[147820.840267] sd
6:0:0:0: [sdc] Attached SCSI disk
[148004.023566]
FAT-fs (sdc1): Volume was not properly unmounted. Some data may be
corrupt. Please run fsck.
[148049.463556]
EXT4-fs error (device sda2): ext4_put_super:803: Couldn't clean up
the journal
[148836.945565] usb
2-2: USB disconnect, device number 5
[148836.962763] sd
6:0:0:0: [sdc] Synchronizing SCSI cache
[148837.085593] sd
6:0:0:0: [sdc] Synchronize Cache(10) failed: Result:
hostbyte=DID_ERROR driverbyte=DRIVER_OK


Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
ubuntu-mate@ubuntu-mate:~$ sudo fsck.ext4 -v -f -c -y /dev/sda1 

e2fsck 1.42.12
(29-Aug-2014)
ext2fs_open2: Bad
magic number in super-block
fsck.ext4:
Superblock invalid, trying backup blocks...
Error reading block 121667584 (Invalid argument).  Ignore error? yes
Force rewrite? yes

Superblock has an invalid journal (inode 8).
Clear? yes

*** ext3 journal has been deleted - filesystem is now ext2 only ***

Superblock has_journal flag is clear, but a journal is present.
Clear? yes

The filesystem size (according to the superblock) is 244190208 blocks
The physical size of the device is 131072 blocks Either the
superblock or the partition table is likely to be corrupt!
Abort? yes

Error writing block 121667584 (Invalid argument).  Ignore error? yes

free: ***** FILE
SYSTEM WAS MODIFIED *****


[img]http://www.ubuntu-forum.de/index.php?page=Attachment&attachmentID=8569&h=22144568c98cb0bdaa022768db8918881fcba5a0[/img]
Ausgabe von GParted beim Start

[img]http://www.ubuntu-forum.de/index.php?page=Attachment&attachmentID=8570&h=85f9e7f4ae7c836d8c18d3aed969687ec3759f5e[/img]
Ausgabe von DISKS beim Benchmark

[img]http://www.ubuntu-forum.de/index.php?page=Attachment&attachmentID=8571&h=9fec3a73c0fbab152d656275ae538eace9b4c830[/img]
Ausgabe von DISKS

[img]http://www.ubuntu-forum.de/index.php?page=Attachment&attachmentID=8572&h=960b2478ca070b0d8160e41005130a00ca8231fb[/img]
Auch aus DISKS
---

Vielen Dank für Eure Hilfe.
»JensR« hat folgende Bilder angehängt:
  • Screenshot-Libparted Warning.png
  • Screenshot-Fehler SDA DISKS bei Benchmark.png
  • Screenshot-Disks-1.png
  • Screenshot-SMART Data & Self-Tests-1.png
akt. OS: Ubuntu Mate 15.10 WilyW.
Notebook: Acer Aspire E5-771G-560N
  • Intel®Core™i5-4210U 2,70GHz, (Turbo-Boost 2.0)
  • 43.9cm (17.3") (HD+) LED-Backlight-Display (1600 x 900)
  • 8192 MB DDR3-RAM
  • HDD: 1000GB SATA
  • NVIDIA Geforce 840M mit 2048MB DDR3 VRAM
  • DVD Super Multi Double Layer
  • WLAN (802.11 b/g/n), Bluetooth 4.0
  • Webcam: Ja
  • Kartenleser: Ja
  • USB 2.0-Anschlüsse: 2
  • USB 3.0-Anschlüsse: 2

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »JensR« (16.01.2016, 14:05)


2

16.01.2016, 10:14

Hallo,

dann prüfe mal deine Festplatte mit z.B. smartmontools siehe http://wiki.ubuntuusers.de/Festplattenstatus/.

mfg

3

16.01.2016, 12:01

Danke Parzelle13. Habe ich gemacht.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
sudo smartctl -A -H /dev/sda 
smartctl 6.4 2014-10-07 r4002 [x86_64-linux-4.2.0-16-generic] (local build)
Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: FAILED!
Drive failure expected in less than 24 hours. SAVE ALL DATA.
See vendor-specific Attribute list for failed Attributes.

SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME      	FLAG 	VALUE WORST THRESH TYPE  	UPDATED  WHEN_FAILED RAW_VALUE
  1 Raw_Read_Error_Rate 	0x002f   200   200   051	Pre-fail  Always   	-   	631
  3 Spin_Up_Time        	0x0027   178   174   021	Pre-fail  Always   	-   	2066
  4 Start_Stop_Count    	0x0032   098   098   000	Old_age   Always   	-   	2132
  5 Reallocated_Sector_Ct   0x0033   133   133   140	Pre-fail  Always   FAILING_NOW 2829
  7 Seek_Error_Rate     	0x002e   001   001   000	Old_age   Always   	-   	289746
  9 Power_On_Hours      	0x0032   096   096   000	Old_age   Always   	-   	3014
 10 Spin_Retry_Count    	0x0032   100   100   000	Old_age   Always   	-   	0
 11 Calibration_Retry_Count 0x0032   100   100   000	Old_age   Always   	-   	0
 12 Power_Cycle_Count   	0x0032   099   099   000	Old_age   Always   	-   	1184
191 G-Sense_Error_Rate  	0x0032   086   086   000	Old_age   Always   	-   	14
192 Power-Off_Retract_Count 0x0032   200   200   000	Old_age   Always   	-   	87
193 Load_Cycle_Count    	0x0032   195   195   000	Old_age   Always   	-   	16893
194 Temperature_Celsius 	0x0022   107   097   000	Old_age   Always   	-   	40
196 Reallocated_Event_Count 0x0032   156   156   000	Old_age   Always   	-   	44
197 Current_Pending_Sector  0x0032   001   001   000	Old_age   Always   	-   	65516
198 Offline_Uncorrectable   0x0030   100   253   000	Old_age   Offline  	-   	0
199 UDMA_CRC_Error_Count	0x0032   200   200   000	Old_age   Always   	-   	0
200 Multi_Zone_Error_Rate   0x0008   100   253   000	Old_age   Offline  	-   	0


Keine Ahnung, ob ich die richtigen Optionen gezogen habe.
Und noch weniger, was mir die Ausgabe sagen will, außer, das einmal FAILING NOW ausgegeben wird, was sicher nichts gutes bedeutet.
Bitte Auskunft.

mfg ;(
akt. OS: Ubuntu Mate 15.10 WilyW.
Notebook: Acer Aspire E5-771G-560N
  • Intel®Core™i5-4210U 2,70GHz, (Turbo-Boost 2.0)
  • 43.9cm (17.3") (HD+) LED-Backlight-Display (1600 x 900)
  • 8192 MB DDR3-RAM
  • HDD: 1000GB SATA
  • NVIDIA Geforce 840M mit 2048MB DDR3 VRAM
  • DVD Super Multi Double Layer
  • WLAN (802.11 b/g/n), Bluetooth 4.0
  • Webcam: Ja
  • Kartenleser: Ja
  • USB 2.0-Anschlüsse: 2
  • USB 3.0-Anschlüsse: 2

4

16.01.2016, 13:52

Hallo,

ich bin jetzt auch nicht der absolute Spezialist auf diesem Gebiet, aber die folgenden Werte

Quellcode

1
2
5 Reallocated_Sector_Ct     0x0033   133   133   140	Pre-fail  Always   FAILING_NOW 2829
197 Current_Pending_Sector  0x0032   001   001   000	Old_age   Always   	-   	65516


lassen nichts gutes erahnenen.

Mache auf jedenfalls schnellstmöglich eine aktuelle Datensicherung.
Ich würde die Platte danach tauschen.

mfg

5

16.01.2016, 14:03

OK, danke Dir.

Datensicherung ist zum Glück aktuell, da gibt es wenigstens keine Probleme.

Dann werde ich die vom Hersteller mal tauschen lassen, hab ja noch Garantie.

MfG
akt. OS: Ubuntu Mate 15.10 WilyW.
Notebook: Acer Aspire E5-771G-560N
  • Intel®Core™i5-4210U 2,70GHz, (Turbo-Boost 2.0)
  • 43.9cm (17.3") (HD+) LED-Backlight-Display (1600 x 900)
  • 8192 MB DDR3-RAM
  • HDD: 1000GB SATA
  • NVIDIA Geforce 840M mit 2048MB DDR3 VRAM
  • DVD Super Multi Double Layer
  • WLAN (802.11 b/g/n), Bluetooth 4.0
  • Webcam: Ja
  • Kartenleser: Ja
  • USB 2.0-Anschlüsse: 2
  • USB 3.0-Anschlüsse: 2

Zurzeit ist neben Ihnen 1 Benutzer in diesem Thema unterwegs:

1 Besucher

Verwendete Tags

Blockgröße, defekt, Fehler, Festplatte, HD