Sie sind nicht angemeldet.

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.

zitzi

User

  • »zitzi« ist männlich
  • »zitzi« ist der Autor dieses Themas

Beiträge: 470

Registrierungsdatum: 22.10.2009

Derivat: anderes Ubuntu-Derivat

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: anderer Desktop

Andere Betriebssysteme: Mint 20.1 Ulyssa MATE 64bit

  • Nachricht senden

1

11.10.2018, 12:56

Linux Mint 19 mate 64bit-Wo ist die Boot-Bremse?

Hallo Ubuntu-Forum,

bin wieder mal da und hab n Problem.
Ums gleich vorab zu sagen: Ja, es ist ein crosspost in linuxmintusers.de vorhanden.
Da krieg ich leider keine Antwort dazu.
Hoffe auf die Experten in meinem "alten" Forum.

Hab n Mint 19 von einer SSD auf eine andere mit dd kopiert, also / und /home.
Leider bootets recht lahm gegenüber einem anderen Mint auf einem anderen PC der eher langsamer von der Hardware ist.
Auf der Samsung 850Pro war n LM 18.3 und auf der alten Samsung 830 hatte ich LM 19 installiert, konnte 18.3 über n grub starten.
Nun war LM 19 sehr gut gereift und als Produktivsystem tauglich.
Deshalb die Spiegelung auf die neuere bessere 850Pro, die auch mehr Platz hat.
Habe eben / und / home über die von 18.3 geschrieben
Nen doppelten swap-Eintrag in der fstab hatte ich gelöscht und die UUIDs sowie dev-Bezüge korrigiert.
Im Dualboot mit dem 18.3 war das 19 sdb, nun isses sda.
Alte 830 ist ausgebaut, kein Windows vorhanden.

Hier mal die bootlog:

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
cozmo@tattoine:~$ sudo cat /var/log/boot.log
/dev/sdb2: clean, 281337/1986768 files, 1711057/7934464 blocks
/dev/sdb2: clean, 318501/1986768 files, 1844629/7934464 blocks
/dev/sdb2: clean, 323749/1986768 files, 2096718/7934464 blocks
/dev/sdb2: clean, 331098/1986768 files, 2184499/7934464 blocks
/dev/sdb2: clean, 331908/1986768 files, 2238948/7934464 blocks
/dev/sdb2: clean, 331890/1986768 files, 2241933/7934464 blocks
/dev/sdb2: clean, 331922/1986768 files, 2242360/7934464 blocks
/dev/sdb2: clean, 356191/1986768 files, 3108972/7934464 blocks
/dev/sdb2: clean, 356174/1986768 files, 3113321/7934464 blocks
/dev/sdb2: clean, 356210/1986768 files, 3114483/7934464 blocks
/dev/sdb2: clean, 356201/1986768 files, 3114539/7934464 blocks
/dev/sdb2: clean, 356207/1986768 files, 3117885/7934464 blocks
/dev/sdb2: clean, 356215/1986768 files, 3115500/7934464 blocks
/dev/sdb2: clean, 356210/1986768 files, 3115565/7934464 blocks
/dev/sdb2: clean, 357167/1986768 files, 3124823/7934464 blocks
/dev/sdb2: clean, 357178/1986768 files, 3124986/7934464 blocks
/dev/sdb2: clean, 357177/1986768 files, 3126408/7934464 blocks
/dev/sdb2: clean, 392866/1986768 files, 3275834/7934464 blocks
/dev/sdb2: clean, 392891/1986768 files, 3276511/7934464 blocks
/dev/sdb2: clean, 391753/1986768 files, 3059624/7934464 blocks
/dev/sdb2: clean, 391747/1986768 files, 3063240/7934464 blocks
/dev/sdb2: clean, 391750/1986768 files, 3063353/7934464 blocks
/dev/sdb2: clean, 391761/1986768 files, 3066510/7934464 blocks
/dev/sdb2: clean, 391766/1986768 files, 3066610/7934464 blocks
/dev/sdb2: clean, 391778/1986768 files, 3065031/7934464 blocks
/dev/sdb2: clean, 391788/1986768 files, 3065259/7934464 blocks
/dev/sdb2: clean, 391797/1986768 files, 3064892/7934464 blocks
/dev/sdb2: clean, 391797/1986768 files, 3067031/7934464 blocks
/dev/sdb2: clean, 391795/1986768 files, 3067103/7934464 blocks
/dev/sdb2: clean, 391795/1986768 files, 3067171/7934464 blocks
/dev/sdb2: clean, 391807/1986768 files, 3067246/7934464 blocks
/dev/sdb2: clean, 391813/1986768 files, 3067230/7934464 blocks
/dev/sdb2: clean, 391826/1986768 files, 3070619/7934464 blocks
/dev/sdb2: clean, 391908/1986768 files, 3076925/7934464 blocks
/dev/sdb2: clean, 323907/1986768 files, 2892375/7934464 blocks
/dev/sdb2: clean, 323944/1986768 files, 2894755/7934464 blocks
/dev/sdb2: clean, 323925/1986768 files, 2896048/7934464 blocks
/dev/sdb2: clean, 323983/1986768 files, 2897171/7934464 blocks
/dev/sdb2: clean, 323967/1986768 files, 2897171/7934464 blocks
/dev/sdb2: clean, 324048/1986768 files, 2930143/7934464 blocks
/dev/sdb2: clean, 324059/1986768 files, 2931397/7934464 blocks
/dev/sdb2: clean, 330971/1986768 files, 2980168/7934464 blocks
/dev/sdb2: clean, 331027/1986768 files, 2982532/7934464 blocks
/dev/sdb2: clean, 331077/1986768 files, 2994278/7934464 blocks
/dev/sdb2: clean, 331099/1986768 files, 2996728/7934464 blocks
/dev/sdb2: clean, 331102/1986768 files, 2991049/7934464 blocks
/dev/sdb2: clean, 331119/1986768 files, 2993018/7934464 blocks
/dev/sdb2: clean, 331122/1986768 files, 2994560/7934464 blocks
/dev/sdb2: clean, 366830/1986768 files, 3137896/7934464 blocks
/dev/sdb2: clean, 366839/1986768 files, 3142793/7934464 blocks
/dev/sda5: clean, 366895/2436448 files, 3178765/9764864 blocks
[ TIME ] Timed out waiting for device dev-di…26\x2d82ac\x2dd9795abc2037.device.
[DEPEND] Dependency failed for /dev/disk/by-…6fa33-e5a2-4c26-82ac-d9795abc2037.
[DEPEND] Dependency failed for Swap.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Message of the Day.
[  OK  ] Listening on ACPID Listen Socket.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Started Trigger anacron every hour.
[  OK  ] Started CUPS Scheduler.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on UUID daemon activation socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Started ACPI Events Check.
[  OK  ] Reached target Paths.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Reached target Timers.
[  OK  ] Listening on CUPS Scheduler.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
[  OK  ] Started Run anacron jobs.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting LSB: disk temperature monitoring daemon...
         Starting VirtualBox Linux kernel module...
         Starting LSB: Speech Dispatcher...
[  OK  ] Started irqbalance daemon.
         Starting Accounts Service...
[  OK  ] Started ACPI event daemon.
         Starting Ubuntu system adjustments...
[  OK  ] Started Regular background program processing daemon.
         Starting Thermal Daemon Service...
         Starting Tool to automatically coll… submit kernel crash signatures...
         Starting LSB: automatic crash report generation...
         Starting LSB: Record successful boot for GRUB...
         Starting Save/Restore Sound Card State...
         Starting Dispatcher daemon for systemd-networkd...
         Starting Login Service...
         Starting System Logging Service...
         Starting Modem Manager...
         Starting Restore /etc/resolv.conf i…fore the ppp link was shut down...
[  OK  ] Started D-Bus System Message Bus.
         Starting Network Manager...
         Starting WPA supplicant...
         Starting Disk Manager...
[  OK  ] Started mintsystem.service.
         Starting Detect the available GPUs and deal with any system changes...
         Starting Initialize hardware monitoring sensors...
[  OK  ] Started CUPS Scheduler.
[  OK  ] Started Set the CPU Frequency Scaling governor.
[  OK  ] Started System Logging Service.
[  OK  ] Started Thermal Daemon Service.
[  OK  ] Started Restore /etc/resolv.conf if…before the ppp link was shut down.
[  OK  ] Started Tool to automatically colle…nd submit kernel crash signatures.
[  OK  ] Started Save/Restore Sound Card State.
[  OK  ] Started Initialize hardware monitoring sensors.
[  OK  ] Started Detect the available GPUs and deal with any system changes.
[  OK  ] Started LSB: automatic crash report generation.
[  OK  ] Started LSB: disk temperature monitoring daemon.
[  OK  ] Started LSB: Speech Dispatcher.
[  OK  ] Started Ubuntu system adjustments.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started WPA supplicant.
         Starting Authorization Manager...
[  OK  ] Started Make remote CUPS printers available locally.
[  OK  ] Started Run anacron jobs.
[  OK  ] Started LSB: Record successful boot for GRUB.
[  OK  ] Started Dispatcher daemon for systemd-networkd.
[  OK  ] Started Authorization Manager.
         Starting Hostname Service...
[  OK  ] Started Accounts Service.
         Starting Manage, Install and Generate Color Profiles...
[  OK  ] Started Modem Manager.
[  OK  ] Started Manage, Install and Generate Color Profiles.
[  OK  ] Started Hostname Service.
[  OK  ] Started Network Manager.
[  OK  ] Reached target Network.
         Starting OpenVPN service...
         Starting Permit User Sessions...
[  OK  ] Started OpenVPN service.
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Permit User Sessions.
         Starting Light Display Manager...
         Starting Hold until boot process finishes up...
[  OK  ] Started Login Service.
[  OK  ] Started Network Manager Script Dispatcher Service.
/dev/sda5: clean, 366887/2436448 files, 3182920/9764864 blocks
[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ TIME ] Timed out waiting for device dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26\x2d82ac\x2dd9795abc2037.device.
[DEPEND] Dependency failed for /dev/disk/by-uuid/a716fa33-e5a2-4c26-82ac-d9795abc2037.
[DEPEND] Dependency failed for Swap.
[  OK  ] Reached target System Initialization.
[  OK  ] Started ACPI Events Check.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Started Message of the Day.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Listening on UUID daemon activation socket.
[  OK  ] Listening on ACPID Listen Socket.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Started Trigger anacron every hour.
[  OK  ] Listening on CUPS Scheduler.
[  OK  ] Reached target Sockets.
[  OK  ] Started CUPS Scheduler.
[  OK  ] Reached target Paths.
[  OK  ] Reached target Basic System.
[  OK  ] Started Set the CPU Frequency Scaling governor.
         Starting LSB: automatic crash report generation...
         Starting LSB: Speech Dispatcher...
[  OK  ] Started irqbalance daemon.
         Starting Dispatcher daemon for systemd-networkd...
         Starting Thermal Daemon Service...
         Starting Disk Manager...
[  OK  ] Started mintsystem.service.
[  OK  ] Started Regular background program processing daemon.
         Starting Initialize hardware monitoring sensors...
[  OK  ] Started ACPI event daemon.
         Starting Tool to automatically collect and submit kernel crash signatures...
         Starting LSB: Record successful boot for GRUB...
[  OK  ] Started Run anacron jobs.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting Login Service...
         Starting Save/Restore Sound Card State...
[  OK  ] Started CUPS Scheduler.
         Starting VirtualBox Linux kernel module...
         Starting LSB: disk temperature monitoring daemon...
         Starting System Logging Service...
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Reached target Timers.
         Starting Detect the available GPUs and deal with any system changes...
         Starting Ubuntu system adjustments...
         Starting Accounts Service...
         Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
         Starting Modem Manager...
[  OK  ] Started D-Bus System Message Bus.
         Starting Network Manager...
         Starting WPA supplicant...
[  OK  ] Started System Logging Service.
[  OK  ] Started Thermal Daemon Service.
[  OK  ] Started Detect the available GPUs and deal with any system changes.
[  OK  ] Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
[  OK  ] Started Initialize hardware monitoring sensors.
[  OK  ] Started Tool to automatically collect and submit kernel crash signatures.
[  OK  ] Started Save/Restore Sound Card State.
[  OK  ] Started LSB: Speech Dispatcher.
[  OK  ] Started LSB: automatic crash report generation.
[  OK  ] Started LSB: disk temperature monitoring daemon.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started LSB: Record successful boot for GRUB.
[  OK  ] Started WPA supplicant.
         Starting Authorization Manager...
         Starting Manage, Install and Generate Color Profiles...
[  OK  ] Started Make remote CUPS printers available locally.
[  OK  ] Started Ubuntu system adjustments.
         Starting Hostname Service...
[  OK  ] Started Dispatcher daemon for systemd-networkd.
[  OK  ] Started Authorization Manager.
[  OK  ] Started Accounts Service.
[  OK  ] Started Manage, Install and Generate Color Profiles.
[  OK  ] Started Modem Manager.
[  OK  ] Started Hostname Service.
[  OK  ] Started Login Service.
[  OK  ] Started Network Manager.
[  OK  ] Reached target Network.
         Starting Daily apt download activities...
         Starting OpenVPN service...
         Starting Permit User Sessions...
[  OK  ] Started OpenVPN service.
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Permit User Sessions.
         Starting Hold until boot process finishes up...
         Starting Light Display Manager...
[  OK  ] Started Network Manager Script Dispatcher Service.
[  OK  ] Started Disk Manager.
/dev/sda5: clean, 366889/2436448 files, 3182999/9764864 blocks
[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ TIME ] Timed out waiting for device dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26\x2d82ac\x2dd9795abc2037.device.
[DEPEND] Dependency failed for /dev/disk/by-uuid/a716fa33-e5a2-4c26-82ac-d9795abc2037.
[DEPEND] Dependency failed for Swap.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Listening on UUID daemon activation socket.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Started Trigger anacron every hour.
[  OK  ] Started ACPI Events Check.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Listening on ACPID Listen Socket.
[  OK  ] Started Message of the Day.
[  OK  ] Listening on CUPS Scheduler.
[  OK  ] Started CUPS Scheduler.
[  OK  ] Reached target Paths.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Reached target Timers.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting Thermal Daemon Service...
[  OK  ] Started ACPI event daemon.
         Starting LSB: Record successful boot for GRUB...
         Starting LSB: automatic crash report generation...
         Starting Dispatcher daemon for systemd-networkd...
         Starting Initialize hardware monitoring sensors...
         Starting Detect the available GPUs and deal with any system changes...
[  OK  ] Started CUPS Scheduler.
         Starting LSB: Speech Dispatcher...
         Starting Ubuntu system adjustments...
         Starting Disk Manager...
         Starting Login Service...
         Starting VirtualBox Linux kernel module...
         Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
[  OK  ] Started irqbalance daemon.
[  OK  ] Started mintsystem.service.
[  OK  ] Started Run anacron jobs.
         Starting Save/Restore Sound Card State...
         Starting Tool to automatically collect and submit kernel crash signatures...
[  OK  ] Started Regular background program processing daemon.
[  OK  ] Started Set the CPU Frequency Scaling governor.
         Starting LSB: disk temperature monitoring daemon...
         Starting System Logging Service...
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Thermal Daemon Service.
         Starting Network Manager...
         Starting Accounts Service...
         Starting WPA supplicant...
         Starting Avahi mDNS/DNS-SD Stack...
         Starting Modem Manager...
[  OK  ] Started System Logging Service.
[  OK  ] Started Detect the available GPUs and deal with any system changes.
[  OK  ] Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
[  OK  ] Started Initialize hardware monitoring sensors.
[  OK  ] Started Save/Restore Sound Card State.
[  OK  ] Started Tool to automatically collect and submit kernel crash signatures.
[  OK  ] Started LSB: Speech Dispatcher.
[  OK  ] Started LSB: automatic crash report generation.
[  OK  ] Started LSB: disk temperature monitoring daemon.
[  OK  ] Started WPA supplicant.
[  OK  ] Started LSB: Record successful boot for GRUB.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started Make remote CUPS printers available locally.
         Starting Authorization Manager...
         Starting Manage, Install and Generate Color Profiles...
[  OK  ] Started Dispatcher daemon for systemd-networkd.
[  OK  ] Started Ubuntu system adjustments.
[  OK  ] Started Authorization Manager.
[  OK  ] Started Accounts Service.
         Starting Hostname Service...
[  OK  ] Started Manage, Install and Generate Color Profiles.
[  OK  ] Started Modem Manager.
[  OK  ] Started Login Service.
[  OK  ] Started Hostname Service.
[  OK  ] Started Disk Manager.
[  OK  ] Started Network Manager.
[  OK  ] Reached target Network.
         Starting Permit User Sessions...
         Starting OpenVPN service...
[  OK  ] Started OpenVPN service.
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Permit User Sessions.
         Starting Hold until boot process finishes up...
         Starting Light Display Manager...
[  OK  ] Started Network Manager Script Dispatcher Service.
/dev/sda5: clean, 366887/2436448 files, 3183074/9764864 blocks
[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ TIME ] Timed out waiting for device dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26\x2d82ac\x2dd9795abc2037.device.
[DEPEND] Dependency failed for /dev/disk/by-uuid/a716fa33-e5a2-4c26-82ac-d9795abc2037.
[DEPEND] Dependency failed for Swap.
[  OK  ] Reached target System Initialization.
[  OK  ] Listening on UUID daemon activation socket.
[  OK  ] Listening on ACPID Listen Socket.
[  OK  ] Started Message of the Day.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Listening on CUPS Scheduler.
[  OK  ] Started Trigger anacron every hour.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Reached target Timers.
[  OK  ] Started ACPI Events Check.
[  OK  ] Started CUPS Scheduler.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Paths.
[  OK  ] Reached target Basic System.
         Starting Dispatcher daemon for systemd-networkd...
         Starting System Logging Service...
         Starting Thermal Daemon Service...
[  OK  ] Started D-Bus System Message Bus.
         Starting Accounts Service...
         Starting Tool to automatically collect and submit kernel crash signatures...
         Starting VirtualBox Linux kernel module...
         Starting LSB: Record successful boot for GRUB...
         Starting Avahi mDNS/DNS-SD Stack...
         Starting Detect the available GPUs and deal with any system changes...
         Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
[  OK  ] Started irqbalance daemon.
         Starting LSB: disk temperature monitoring daemon...
[  OK  ] Started Run anacron jobs.
         Starting Login Service...
         Starting Network Manager...
         Starting Modem Manager...
[  OK  ] Started Regular background program processing daemon.
         Starting LSB: automatic crash report generation...
[  OK  ] Started Set the CPU Frequency Scaling governor.
         Starting Initialize hardware monitoring sensors...
[  OK  ] Started CUPS Scheduler.
         Starting LSB: Speech Dispatcher...
[  OK  ] Started mintsystem.service.
         Starting Disk Manager...
[  OK  ] Started ACPI event daemon.
         Starting Save/Restore Sound Card State...
         Starting Ubuntu system adjustments...
         Starting WPA supplicant...
[  OK  ] Started System Logging Service.
[  OK  ] Started Thermal Daemon Service.
[  OK  ] Started Detect the available GPUs and deal with any system changes.
[  OK  ] Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
[  OK  ] Started Tool to automatically collect and submit kernel crash signatures.
[  OK  ] Started Initialize hardware monitoring sensors.
[  OK  ] Started Save/Restore Sound Card State.
[  OK  ] Started LSB: disk temperature monitoring daemon.
[  OK  ] Started LSB: Speech Dispatcher.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started LSB: Record successful boot for GRUB.
[  OK  ] Started LSB: automatic crash report generation.
[  OK  ] Started WPA supplicant.
         Starting Authorization Manager...
[  OK  ] Started Make remote CUPS printers available locally.
[  OK  ] Started Authorization Manager.
         Starting Manage, Install and Generate Color Profiles...
[  OK  ] Started Dispatcher daemon for systemd-networkd.
[  OK  ] Started Accounts Service.
         Starting Hostname Service...
[  OK  ] Started Manage, Install and Generate Color Profiles.
[  OK  ] Started Modem Manager.
[  OK  ] Started Ubuntu system adjustments.
[  OK  ] Started Login Service.
[  OK  ] Started Hostname Service.
[  OK  ] Started Network Manager.
[  OK  ] Reached target Network.
         Starting Permit User Sessions...
         Starting OpenVPN service...
[  OK  ] Started OpenVPN service.
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Permit User Sessions.
         Starting Light Display Manager...
         Starting Hold until boot process finishes up...
[  OK  ] Started Network Manager Script Dispatcher Service.
[  OK  ] Started Disk Manager.
/dev/sda5: clean, 366885/2436448 files, 3185197/9764864 blocks
[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[     *] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[    **] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[   ***] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[  *** ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[*     ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[**    ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[***   ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ ***  ] A start job is running for dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26[ TIME ] Timed out waiting for device dev-disk-by\x2duuid-a716fa33\x2de5a2\x2d4c26\x2d82ac\x2dd9795abc2037.device.
[DEPEND] Dependency failed for /dev/disk/by-uuid/a716fa33-e5a2-4c26-82ac-d9795abc2037.
[DEPEND] Dependency failed for Swap.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Started Trigger anacron every hour.
[  OK  ] Started Message of the Day.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Reached target Timers.
[  OK  ] Started ACPI Events Check.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Started CUPS Scheduler.
[  OK  ] Reached target Paths.
[  OK  ] Listening on ACPID Listen Socket.
[  OK  ] Listening on CUPS Scheduler.
[  OK  ] Listening on UUID daemon activation socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting LSB: Speech Dispatcher...
         Starting Login Service...
         Starting Ubuntu system adjustments...
         Starting Modem Manager...
         Starting LSB: automatic crash report generation...
         Starting Disk Manager...
[  OK  ] Started mintsystem.service.
         Starting Accounts Service...
         Starting Save/Restore Sound Card State...
         Starting System Logging Service...
         Starting Tool to automatically collect and submit kernel crash signatures...
         Starting Avahi mDNS/DNS-SD Stack...
[  OK  ] Started Regular background program processing daemon.
[  OK  ] Started CUPS Scheduler.
         Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
[  OK  ] Started Set the CPU Frequency Scaling governor.
[  OK  ] Started D-Bus System Message Bus.
         Starting Network Manager...
         Starting WPA supplicant...
[  OK  ] Started irqbalance daemon.
         Starting Dispatcher daemon for systemd-networkd...
         Starting Detect the available GPUs and deal with any system changes...
         Starting LSB: disk temperature monitoring daemon...
         Starting Initialize hardware monitoring sensors...
[  OK  ] Started Run anacron jobs.
         Starting Thermal Daemon Service...
         Starting LSB: Record successful boot for GRUB...
         Starting VirtualBox Linux kernel module...
[  OK  ] Started ACPI event daemon.
[  OK  ] Started System Logging Service.
[  OK  ] Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
[  OK  ] Started Tool to automatically collect and submit kernel crash signatures.
[  OK  ] Started Initialize hardware monitoring sensors.
[  OK  ] Started Save/Restore Sound Card State.
[  OK  ] Started Detect the available GPUs and deal with any system changes.
[  OK  ] Started Thermal Daemon Service.
[  OK  ] Started LSB: Speech Dispatcher.
[  OK  ] Started LSB: disk temperature monitoring daemon.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started LSB: automatic crash report generation.
[  OK  ] Started WPA supplicant.
         Starting Manage, Install and Generate Color Profiles...
         Starting Authorization Manager...
[  OK  ] Started Make remote CUPS printers available locally.
[  OK  ] Started LSB: Record successful boot for GRUB.
         Starting Hostname Service...
[  OK  ] Started Authorization Manager.
[  OK  ] Started Ubuntu system adjustments.
[  OK  ] Started Accounts Service.
[  OK  ] Started Manage, Install and Generate Color Profiles.
[  OK  ] Started Modem Manager.
[  OK  ] Started Dispatcher daemon for systemd-networkd.
[  OK  ] Started Login Service.
[  OK  ] Started Hostname Service.
[  OK  ] Started Disk Manager.
[  OK  ] Started Network Manager.
[  OK  ] Reached target Network.
         Starting Permit User Sessions...
         Starting OpenVPN service...
[  OK  ] Started OpenVPN service.
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Permit User Sessions.
         Starting Light Display Manager...
         Starting Hold until boot process finishes up...
[  OK  ] Started Network Manager Script Dispatcher Service.
/dev/sda5: clean, 366887/2436448 files, 3185274/9764864 blocks
/dev/sda5: clean, 366906/2436448 files, 3185368/9764864 blocks
/dev/sdb5: clean, 366896/2436448 files, 3183400/9764864 blocks
/dev/sda5: clean, 366959/2436448 files, 3200091/9764864 blocks
/dev/sda5: clean, 366938/2436448 files, 3203232/9764864 blocks
/dev/sda5: clean, 366938/2436448 files, 3203290/9764864 blocks
/dev/sda5: clean, 366938/2436448 files, 3203361/9764864 blocks
/dev/sda5: clean, 366938/2436448 files, 3203430/9764864 blocks
/dev/sda5: clean, 366939/2436448 files, 3203505/9764864 blocks
/dev/sda5: clean, 366982/2436448 files, 3203149/9764864 blocks
/dev/sda5: clean, 366914/2436448 files, 3206314/9764864 blocks
/dev/sda5: clean, 366916/2436448 files, 3210482/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366926/2436448 files, 3213449/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366937/2436448 files, 3213533/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366647/2436448 files, 3213505/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366650/2436448 files, 3214869/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366822/2436448 files, 3219882/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366831/2436448 files, 3217101/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366831/2436448 files, 3217625/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366842/2436448 files, 3217727/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366838/2436448 files, 3221184/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366852/2436448 files, 3221254/9764864 blocks
Gave up waiting for suspend/resume device
/dev/sda5: clean, 366840/2436448 files, 3221172/9764864 blocks
/dev/sda5: clean, 366866/2436448 files, 3234800/9764864 blocks
/dev/sda5: clean, 366866/2436448 files, 3234870/9764864 blocks
/dev/sda5: clean, 366882/2436448 files, 3238774/9764864 blocks
[FAILED] Failed to activate swap /dev/disk/by-uuid/c6337a37-2aa1-4b89-a077-f4422647e7eb.
See 'systemctl status "dev-disk-by\\x2duuid-c6337a37\\x2d2aa1\\x2d4b89\\x2da077\\x2df4422647e7eb.swap"' for details.
[DEPEND] Dependency failed for Swap.
[  OK  ] Reached target Sound Card.
         Activating swap /dev/disk/by-uuid/c6337a37-2aa1-4b89-a077-f4422647e7eb...
[FAILED] Failed to activate swap /dev/disk/by-uuid/c6337a37-2aa1-4b89-a077-f4422647e7eb.
See 'systemctl status "dev-disk-by\\x2duuid-c6337a37\\x2d2aa1\\x2d4b89\\x2da077\\x2df4422647e7eb.swap"' for details.
[DEPEND] Dependency failed for Swap.
         Activating swap /dev/disk/by-uuid/c6337a37-2aa1-4b89-a077-f4422647e7eb...
[FAILED] Failed to activate swap /dev/disk/by-uuid/c6337a37-2aa1-4b89-a077-f4422647e7eb.
See 'systemctl status "dev-disk-by\\x2duuid-c6337a37\\x2d2aa1\\x2d4b89\\x2da077\\x2df4422647e7eb.swap"' for details.
[DEPEND] Dependency failed for Swap.
[  OK  ] Started Set the console keyboard layout.
[  OK  ] Reached target Local File Systems (Pre).
         Starting File System Check on /dev/disk/by-uuid/ba872b86-79cf-42e2-9ede-a8b7bb7d25da...
         Starting File System Check on /dev/disk/by-uuid/98d0598b-9c09-4dba-9e46-3d777252d0d0...
         Starting File System Check on /dev/disk/by-uuid/3bc41881-0a61-4157-8495-353d14e5356b...
         Starting Show Plymouth Boot Screen...
[  OK  ] Started File System Check Daemon to report status.
[  OK  ] Started Show Plymouth Boot Screen.
[  OK  ] Reached target Local Encrypted Volumes.
[  OK  ] Started Forward Password Requests to Plymouth Directory Watch.
[  OK  ] Started File System Check on /dev/disk/by-uuid/98d0598b-9c09-4dba-9e46-3d777252d0d0.
         Mounting /vm...ertig)
[  OK  ] Started File System Check on /dev/disk/by-uuid/ba872b86-79cf-42e2-9ede-a8b7bb7d25da.
         Mounting /video...
[  OK  ] Started File System Check on /dev/disk/by-uuid/3bc41881-0a61-4157-8495-353d14e5356b.
         Mounting /home...
[  OK  ] Mounted /vm.
[  OK  ] Mounted /video.
[  OK  ] Mounted /home.
[  OK  ] Reached target Local File Systems.
         Starting Clean up any mess left by 0dns-up...
         Starting Set console font and keymap...
         Starting AppArmor initialization...
         Starting Create Volatile Files and Directories...
         Starting Tell Plymouth To Write Out Runtime Data...
[  OK  ] Started Set console font and keymap.
[  OK  ] Started Clean up any mess left by 0dns-up.
[  OK  ] Started Create Volatile Files and Directories.
[  OK  ] Started Tell Plymouth To Write Out Runtime Data.
         Starting Network Name Resolution...
         Starting Update UTMP about System Boot/Shutdown...
         Starting Network Time Synchronization...
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Started AppArmor initialization.
         Starting Raise network interfaces...
[  OK  ] Started Entropy daemon using the HAVEGE algorithm.
[  OK  ] Started Raise network interfaces.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Host and Network Name Lookups.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  OK  ] Started ACPI Events Check.
[  OK  ] Started Daily apt download activities.
[  OK  ] Listening on ACPID Listen Socket.
[  OK  ] Started CUPS Scheduler.
[  OK  ] Reached target Paths.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on UUID daemon activation socket.
[  OK  ] Started Trigger anacron every hour.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Started Message of the Day.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Reached target Timers.
[  OK  ] Listening on CUPS Scheduler.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting Accounts Service...
[  OK  ] Started CUPS Scheduler.
         Starting System Logging Service...
[  OK  ] Started mintsystem.service.
         Starting NVIDIA Persistence Daemon...
[  OK  ] Started Regular background program processing daemon.
         Starting LSB: Speech Dispatcher...
         Starting Initialize hardware monitoring sensors...
[  OK  ] Started Run anacron jobs.
         Starting Login Service...
[  OK  ] Started D-Bus System Message Bus.
         Starting LSB: Record successful boot for GRUB...
         Starting LSB: automatic crash report generation...
[  OK  ] Started Set the CPU Frequency Scaling governor.
         Starting VirtualBox Linux kernel module...
         Starting Network Manager...
         Starting Disk Manager...
         Starting Tool to automatically collect and submit kernel crash signatures...
         Starting Save/Restore Sound Card State...
[  OK  ] Started ACPI event daemon.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting Detect the available GPUs and deal with any system changes...
         Starting LSB: disk temperature monitoring daemon...
[  OK  ] Started irqbalance daemon.
         Starting Ubuntu system adjustments...
         Starting WPA supplicant...
         Starting Thermal Daemon Service...
         Starting Dispatcher daemon for systemd-networkd...
         Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
         Starting Modem Manager...
[  OK  ] Started System Logging Service.
[  OK  ] Started NVIDIA Persistence Daemon.
[  OK  ] Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
[  OK  ] Started Initialize hardware monitoring sensors.
[  OK  ] Started Save/Restore Sound Card State.
[  OK  ] Started Thermal Daemon Service.
[  OK  ] Started Detect the available GPUs and deal with any system changes.
[  OK  ] Started Tool to automatically collect and submit kernel crash signatures.
[  OK  ] Started LSB: Speech Dispatcher.
[  OK  ] Started LSB: disk temperature monitoring daemon.
[  OK  ] Started LSB: Record successful boot for GRUB.
[  OK  ] Started LSB: automatic crash report generation.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started WPA supplicant.
         Stopping NVIDIA Persistence Daemon...
         Starting Hostname Service...
[  OK  ] Started Make remote CUPS printers available locally.
         Starting Manage, Install and Generate Color Profiles...
         Starting Authorization Manager...
[  OK  ] Stopped NVIDIA Persistence Daemon.
[  OK  ] Started Manage, Install and Generate Color Profiles.
[  OK  ] Started Authorization Manager.
[  OK  ] Started Accounts Service.
[  OK  ] Started Modem Manager.
[  OK  ] Started Dispatcher daemon for systemd-networkd.
[  OK  ] Started Ubuntu system adjustments.
[  OK  ] Started Hostname Service.
[  OK  ] Started Network Manager.
[  OK  ] Reached target Network.
         Starting OpenVPN service...
         Starting Permit User Sessions...
[  OK  ] Started OpenVPN service.
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Permit User Sessions.
         Starting Light Display Manager...
         Starting Hold until boot process finishes up...
[  OK  ] Started Network Manager Script Dispatcher Service.
[  OK  ] Started Login Service.
cozmo@tattoine:~$

Er checkt zu beginn ne sdb2 und die gibts aber nicht.
Neu UUID a716fa33\x2de5a2\x2d4c26 gibts auch nicht, die sucht er 4x.
In der fstab hatte ich ne doppelte swap gelöscht.
UUIDs passen eigentlich.

Hier die fstab:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda5 during installation
UUID=5d96328f-2d13-41c4-a67d-68e8f38013bd /               ext4    errors=remount-ro 0       1
# /home was on /dev/sda6 during installation
UUID=3bc41881-0a61-4157-8495-353d14e5356b /home           ext4    defaults        0       2
# /video was on /dev/sda8 during installation
UUID=ba872b86-79cf-42e2-9ede-a8b7bb7d25da /video          ext4    defaults        0       2
# /vm was on /dev/sda7 during installation
UUID=98d0598b-9c09-4dba-9e46-3d777252d0d0 /vm             ext4    defaults        0       2
# swap was on /dev/sda1 during installation
UUID=c6337a37-2aa1-4b89-a077-f4422647e7eb none            swap    sw              0       0


Und hier blkid:

Quellcode

1
2
3
4
5
6
/dev/sda1: UUID="c6337a37-2aa1-4b89-a077-f4422647e7eb" TYPE="swap" PARTUUID="9e563562-01"
/dev/sda5: UUID="5d96328f-2d13-41c4-a67d-68e8f38013bd" TYPE="ext4" PARTUUID="9e563562-05"
/dev/sda6: UUID="3bc41881-0a61-4157-8495-353d14e5356b" TYPE="ext4" PARTUUID="9e563562-06"
/dev/sda7: UUID="98d0598b-9c09-4dba-9e46-3d777252d0d0" TYPE="ext4" PARTUUID="9e563562-07"
/dev/sda8: UUID="ba872b86-79cf-42e2-9ede-a8b7bb7d25da" TYPE="ext4" PARTUUID="9e563562-08"
/dev/sdb1: LABEL="/satvideo" UUID="c6337a37-2aa1-4b89-a077-f4422647e7eb" TYPE="ext4" PARTUUID="9e563562-01"


Die swap boots auch nicht obwohl ich die UUID korrigiert habe

Seltsame Sache...
Alternative wäre neu zu installieren, aber das is viel Arbeit bis wieder alles eingerichtet ist.

Tuxgrüsse von zitzi
Versuch macht kluch............

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ASUS M5A97 EVO R2.0, AMD FX6100, 8 GB DDR3 Corsair, SSD Samsung 830 + Samsung 850 Pro , GeForce MSI 1050ti 4 GB LP

Dieser Beitrag wurde bereits 4 mal editiert, zuletzt von »zitzi« (21.10.2018, 19:11)


Beiträge: 1 131

Registrierungsdatum: 08.11.2015

Derivat: unbekannt

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: LXDE

Andere Betriebssysteme: Debian bullseye-testing / 5.10.0-10-amd64

  • Nachricht senden

2

11.10.2018, 13:23

Ich zitiere Dich mal selber:


Quellcode

1
2
# swap was on /dev/sda1 during installation
UUID=22e51456-f30d-4485-9dc3-9c3e612b1bad none            swap    sw              0       0



Quellcode

1
/dev/sda1: UUID="c6337a37-2aa1-4b89-a077-f4422647e7eb" TYPE="swap" PARTUUID="9e563562-01"



Sieht das für Dich in Ordnung aus?
Heute ist keiner da! Komm morgen wieder. :-)

zitzi

User

  • »zitzi« ist männlich
  • »zitzi« ist der Autor dieses Themas

Beiträge: 470

Registrierungsdatum: 22.10.2009

Derivat: anderes Ubuntu-Derivat

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: anderer Desktop

Andere Betriebssysteme: Mint 20.1 Ulyssa MATE 64bit

  • Nachricht senden

3

11.10.2018, 14:51

Hi Horsmanchip,

nein, natürlich nicht!
Mein Fehler.
Hatte die fstab gepostet und danach nocmal überprüft und festgestellt dass da ne andere UUID nun drin ist nachdem ich einem Hinweis im Netzt nachgegangen bin.
Dann habe ich die neue UUID nur im Post der Ausgabe von blkid geändert und den von der fstab vergessen.
Mein Fehler, war im, Stress und musste zur Arbeit.
Werds gleich ändern.
Aber gut aufgepasst!

Vielen Dank!
Versuch macht kluch............

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ASUS M5A97 EVO R2.0, AMD FX6100, 8 GB DDR3 Corsair, SSD Samsung 830 + Samsung 850 Pro , GeForce MSI 1050ti 4 GB LP

Beiträge: 1 131

Registrierungsdatum: 08.11.2015

Derivat: unbekannt

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: LXDE

Andere Betriebssysteme: Debian bullseye-testing / 5.10.0-10-amd64

  • Nachricht senden

4

11.10.2018, 16:18

Welche swap steht hier drin:

Quellcode

1
cat /etc/initramfs-tools/conf.d/resume


Passt das zum System?

Wenn da noch die falsche drin steht, machst Du mal:

Quellcode

1
sudo apt-get install --reinstall initramfs-tools


und prüfst den Eintrag dann nochmal und schaust, ob es passt.
Heute ist keiner da! Komm morgen wieder. :-)

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Horsemanchip« (11.10.2018, 16:34)


zitzi

User

  • »zitzi« ist männlich
  • »zitzi« ist der Autor dieses Themas

Beiträge: 470

Registrierungsdatum: 22.10.2009

Derivat: anderes Ubuntu-Derivat

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: anderer Desktop

Andere Betriebssysteme: Mint 20.1 Ulyssa MATE 64bit

  • Nachricht senden

5

11.10.2018, 16:54

Ja, danke.
Check ich heute Abend.
Komm erst wieder ab 22:30 ans Sorgenkind....

Fällt dir was zum check von sdb2 ein?
sdb2 war die / auf der Samung 830, ist nach dem spiegeln ja sda5.
Wo stehen da die Einträge für außer in fstab und grub.cfg?
Anscheinend sucht er die alte swap noch. und die sdb2.
Die /home is ihm wohl wurscht.
Die war sdb3 und is nun ja sda6.
sda7 und sda8 sind auf der Samsung PRO und waren in 18.3 und 19 eingebunden und jetzt noch vorhanden.
Versuch macht kluch............

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ASUS M5A97 EVO R2.0, AMD FX6100, 8 GB DDR3 Corsair, SSD Samsung 830 + Samsung 850 Pro , GeForce MSI 1050ti 4 GB LP

zitzi

User

  • »zitzi« ist männlich
  • »zitzi« ist der Autor dieses Themas

Beiträge: 470

Registrierungsdatum: 22.10.2009

Derivat: anderes Ubuntu-Derivat

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: anderer Desktop

Andere Betriebssysteme: Mint 20.1 Ulyssa MATE 64bit

  • Nachricht senden

6

11.10.2018, 22:52

So, bin am Fall.

Ausgabe von

Quellcode

1
cat /etc/initramfs-tools/conf.d/resume

Quellcode

1
RESUME=UUID=eb0ed635-71a6-4ac4-a440-a9c523de19db

Ausgabe von

Quellcode

1
sudo apt-get install --reinstall initramfs-tools

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.       
Statusinformationen werden eingelesen.... Fertig
Das folgende Paket wurde automatisch installiert und wird nicht mehr benötigt:
  linux-image-unsigned-4.15.0-20-generic
Verwenden Sie »sudo apt autoremove«, um es zu entfernen.
0 aktualisiert, 0 neu installiert, 1 erneut installiert, 0 zu entfernen und 1 nicht aktualisiert.
Es müssen noch 0 B von 9.572 B an Archiven heruntergeladen werden.
Nach dieser Operation werden 0 B Plattenplatz zusätzlich benutzt.
(Lese Datenbank ... 334790 Dateien und Verzeichnisse sind derzeit installiert.)
Vorbereitung zum Entpacken von .../initramfs-tools_0.130ubuntu3.5_all.deb ...
Entpacken von initramfs-tools (0.130ubuntu3.5) über (0.130ubuntu3.5) ...
initramfs-tools (0.130ubuntu3.5) wird eingerichtet ...
update-initramfs: deferring update (trigger activated)
Trigger für man-db (2.8.3-2) werden verarbeitet ...
Trigger für initramfs-tools (0.130ubuntu3.5) werden verarbeitet ...
update-initramfs: Generating /boot/initrd.img-4.15.0-36-generic
W: initramfs-tools configuration sets RESUME=UUID=eb0ed635-71a6-4ac4-a440-a9c523de19db
W: but no matching swap device is available.


Ausgabe von

Quellcode

1
sudo blkid

Quellcode

1
2
3
4
5
6
7
/dev/sda1: UUID="22e51456-f30d-4485-9dc3-9c3e612b1bad" TYPE="swap" PARTUUID="9e563562-01"
/dev/sda5: UUID="5d96328f-2d13-41c4-a67d-68e8f38013bd" TYPE="ext4" PARTUUID="9e563562-05"
/dev/sda6: UUID="3bc41881-0a61-4157-8495-353d14e5356b" TYPE="ext4" PARTUUID="9e563562-06"
/dev/sda7: UUID="98d0598b-9c09-4dba-9e46-3d777252d0d0" TYPE="ext4" PARTUUID="9e563562-07"
/dev/sda8: UUID="ba872b86-79cf-42e2-9ede-a8b7bb7d25da" TYPE="ext4" PARTUUID="9e563562-08"
/dev/sdb1: LABEL="/satvideo" UUID="c6337a37-2aa1-4
b89-a077-f4422647e7eb" TYPE="ext4" PARTUUID="9e563562-01"


Aktuelle fstab

Quellcode

1
2
3
4
5
6
7
8
9
10
# / was on /dev/sda5 during installation
UUID=5d96328f-2d13-41c4-a67d-68e8f38013bd /               ext4    errors=remount-ro 0       1
# /home was on /dev/sda6 during installation
UUID=3bc41881-0a61-4157-8495-353d14e5356b /home           ext4    defaults        0       2
# /video was on /dev/sda8 during installation
UUID=ba872b86-79cf-42e2-9ede-a8b7bb7d25da /video          ext4    defaults        0       2
# /vm was on /dev/sda7 during installation
UUID=98d0598b-9c09-4dba-9e46-3d777252d0d0 /vm             ext4    defaults        0       2
# swap was on /dev/sda1 during installation
UUID=22e51456-f30d-4485-9dc3-9c3e612b1bad none            swap    sw              0       0
Versuch macht kluch............

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ASUS M5A97 EVO R2.0, AMD FX6100, 8 GB DDR3 Corsair, SSD Samsung 830 + Samsung 850 Pro , GeForce MSI 1050ti 4 GB LP

Beiträge: 1 131

Registrierungsdatum: 08.11.2015

Derivat: unbekannt

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: LXDE

Andere Betriebssysteme: Debian bullseye-testing / 5.10.0-10-amd64

  • Nachricht senden

7

11.10.2018, 23:14

Ja, dann trag halt die korrekte Swap in das resume File ein! ^^

Quellcode

1
RESUME=UUID=22e51456-f30d-4485-9dc3-9c3e612b1bad


Danach nochmal das reinstall, damit die Installation ausgeführt werden kann.

Fehlermeldungen kannst Du auch selber mal lesen! ^^


W: initramfs-tools configuration sets RESUME=UUID=eb0ed635-71a6-4ac4-a440-a9c523de19db
W: but no matching swap device is available.
Heute ist keiner da! Komm morgen wieder. :-)

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Horsemanchip« (12.10.2018, 03:56)


zitzi

User

  • »zitzi« ist männlich
  • »zitzi« ist der Autor dieses Themas

Beiträge: 470

Registrierungsdatum: 22.10.2009

Derivat: anderes Ubuntu-Derivat

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: anderer Desktop

Andere Betriebssysteme: Mint 20.1 Ulyssa MATE 64bit

  • Nachricht senden

8

12.10.2018, 06:52

Moin

Ja, das hat geklappt.
Ausgabe von reinstall ist nun ohne Fehlermeldung.

Die Ausgaben hatte ich gestern Abend sehr wohl noch gelesen und mir so etwas gedacht.
Leider war ich dann zu müde nach einem anstrengenden Arbeitstag um da noch weiter zu tippen.
Schönen Dank auch!
Versuch macht kluch............

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ASUS M5A97 EVO R2.0, AMD FX6100, 8 GB DDR3 Corsair, SSD Samsung 830 + Samsung 850 Pro , GeForce MSI 1050ti 4 GB LP

zitzi

User

  • »zitzi« ist männlich
  • »zitzi« ist der Autor dieses Themas

Beiträge: 470

Registrierungsdatum: 22.10.2009

Derivat: anderes Ubuntu-Derivat

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: anderer Desktop

Andere Betriebssysteme: Mint 20.1 Ulyssa MATE 64bit

  • Nachricht senden

9

21.10.2018, 19:14

Guten Abend zusammen,

nachdem nix mehr kommt mache ich mal mit "erledigt" hier zu.
Die weiteren Probleme mit den dubiosen Adressen in der boot.log bestanden immer noch.
Habe neu installiert und gut is.........
Wäre halt interessant gewesen warums da klemmt, aber nun gut.
Versuch macht kluch............

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ASUS M5A97 EVO R2.0, AMD FX6100, 8 GB DDR3 Corsair, SSD Samsung 830 + Samsung 850 Pro , GeForce MSI 1050ti 4 GB LP