Ubuntu Pastebin

Paste from Bingo at Tue, 8 Mar 2016 18:12:34 +0000

Download as text
  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
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
/boot:
total 77M
drwxr-xr-x  4 root root 4.0K Mar  7 15:27 .
drwxr-xr-x 23 root root 4.0K Mar  8 12:59 ..
-rw-r--r--  1 root root 1.3M Jul 24  2015 abi-3.19.0-25-generic
-rw-r--r--  1 root root 1.3M Feb 26 18:32 abi-3.19.0-51-generic
-rw-r--r--  1 root root 174K Jul 24  2015 config-3.19.0-25-generic
-rw-r--r--  1 root root 174K Feb 26 18:32 config-3.19.0-51-generic
drwxr-xr-x  5 root root 4.0K Dec 31  1969 efi
drwxr-xr-x  5 root root 4.0K Mar  7 15:26 grub
-rw-r--r--  1 root root  29M Mar  7 15:24 initrd.img-3.19.0-25-generic
-rw-r--r--  1 root root  19M Mar  7 15:27 initrd.img-3.19.0-51-generic
-rw-r--r--  1 root root 173K Mar 12  2014 memtest86+.bin
-rw-r--r--  1 root root 174K Mar 12  2014 memtest86+.elf
-rw-r--r--  1 root root 175K Mar 12  2014 memtest86+_multiboot.bin
-rw-------  1 root root 3.5M Jul 24  2015 System.map-3.19.0-25-generic
-rw-------  1 root root 3.5M Feb 26 18:32 System.map-3.19.0-51-generic
-rw-r--r--  1 root root 6.3M Mar  7 15:20 vmlinuz-3.19.0-25-generic
-rw-------  1 root root 6.3M Feb 26 18:32 vmlinuz-3.19.0-51-generic
-rw-------  1 root root 6.3M Mar  7 15:23 vmlinuz-3.19.0-51-generic.efi.signed

/boot/efi:
total 20K
drwxr-xr-x 5 root root 4.0K Dec 31  1969 .
drwxr-xr-x 4 root root 4.0K Mar  7 15:27 ..
drwxr-xr-x 4 root root 4.0K Jan 26 12:38 boot-sav
drwxr-xr-x 6 root root 4.0K Mar  8 06:46 EFI
drwxr-xr-x 2 root root 4.0K Sep 23 15:26 System Volume Information

/boot/efi/boot-sav:
total 16K
drwxr-xr-x 4 root root 4.0K Jan 26 12:38 .
drwxr-xr-x 5 root root 4.0K Dec 31  1969 ..
drwxr-xr-x 4 root root 4.0K Feb  5 18:10 log
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 mbr_backups

/boot/efi/boot-sav/log:
total 16K
drwxr-xr-x 4 root root 4.0K Feb  5 18:10 .
drwxr-xr-x 4 root root 4.0K Jan 26 12:38 ..
drwxr-xr-x 8 root root 4.0K Jan 26 12:38 2016-01-26__12h38boot-repair01
drwxr-xr-x 8 root root 4.0K Feb  5 18:11 2016-02-05__18h10boot-repair10
-rwxr-xr-x 1 root root    0 Jan 26 12:38 boot-repair

/boot/efi/boot-sav/log/2016-01-26__12h38boot-repair01:
total 132K
drwxr-xr-x 8 root root 4.0K Jan 26 12:38 .
drwxr-xr-x 4 root root 4.0K Feb  5 18:10 ..
-rwxr-xr-x 1 root root  54K Jan 26 12:38 boot-repair.log
-rwxr-xr-x 1 root root  43K Jan 26 12:38 RESULTS.txt
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 sda
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 sda1
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 sda3
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 sda4
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 sda5
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 sda6

/boot/efi/boot-sav/log/2016-01-26__12h38boot-repair01/sda:
total 1.1M
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 .
drwxr-xr-x 8 root root 4.0K Jan 26 12:38 ..
-rwxr-xr-x 1 root root 1.0M Jan 26 12:38 current_mbr.img
-rwxr-xr-x 1 root root  250 Jan 26 12:38 partition_table.dmp

/boot/efi/boot-sav/log/2016-01-26__12h38boot-repair01/sda1:
total 8.0K
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 .
drwxr-xr-x 8 root root 4.0K Jan 26 12:38 ..

/boot/efi/boot-sav/log/2016-01-26__12h38boot-repair01/sda3:
total 8.0K
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 .
drwxr-xr-x 8 root root 4.0K Jan 26 12:38 ..

/boot/efi/boot-sav/log/2016-01-26__12h38boot-repair01/sda4:
total 8.0K
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 .
drwxr-xr-x 8 root root 4.0K Jan 26 12:38 ..

/boot/efi/boot-sav/log/2016-01-26__12h38boot-repair01/sda5:
total 8.0K
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 .
drwxr-xr-x 8 root root 4.0K Jan 26 12:38 ..

/boot/efi/boot-sav/log/2016-01-26__12h38boot-repair01/sda6:
total 8.0K
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 .
drwxr-xr-x 8 root root 4.0K Jan 26 12:38 ..
-rwxr-xr-x 1 root root    0 Jan 26 12:38 grubenv

/boot/efi/boot-sav/log/2016-02-05__18h10boot-repair10:
total 140K
drwxr-xr-x 8 root root 4.0K Feb  5 18:11 .
drwxr-xr-x 4 root root 4.0K Feb  5 18:10 ..
-rwxr-xr-x 1 root root  55K Feb  5 18:11 boot-repair.log
-rwxr-xr-x 1 root root  49K Feb  5 18:11 RESULTS.txt
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 sda
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 sda1
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 sda3
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 sda4
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 sda5
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 sda6

/boot/efi/boot-sav/log/2016-02-05__18h10boot-repair10/sda:
total 1.1M
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 .
drwxr-xr-x 8 root root 4.0K Feb  5 18:11 ..
-rwxr-xr-x 1 root root 1.0M Feb  5 18:11 current_mbr.img
-rwxr-xr-x 1 root root  250 Feb  5 18:11 partition_table.dmp

/boot/efi/boot-sav/log/2016-02-05__18h10boot-repair10/sda1:
total 8.0K
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 .
drwxr-xr-x 8 root root 4.0K Feb  5 18:11 ..

/boot/efi/boot-sav/log/2016-02-05__18h10boot-repair10/sda3:
total 8.0K
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 .
drwxr-xr-x 8 root root 4.0K Feb  5 18:11 ..

/boot/efi/boot-sav/log/2016-02-05__18h10boot-repair10/sda4:
total 8.0K
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 .
drwxr-xr-x 8 root root 4.0K Feb  5 18:11 ..

/boot/efi/boot-sav/log/2016-02-05__18h10boot-repair10/sda5:
total 8.0K
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 .
drwxr-xr-x 8 root root 4.0K Feb  5 18:11 ..

/boot/efi/boot-sav/log/2016-02-05__18h10boot-repair10/sda6:
total 8.0K
drwxr-xr-x 2 root root 4.0K Feb  5 18:10 .
drwxr-xr-x 8 root root 4.0K Feb  5 18:11 ..
-rwxr-xr-x 1 root root    0 Feb  5 18:11 grubenv

/boot/efi/boot-sav/mbr_backups:
total 8.0K
drwxr-xr-x 2 root root 4.0K Jan 26 12:38 .
drwxr-xr-x 4 root root 4.0K Jan 26 12:38 ..

/boot/efi/EFI:
total 24K
drwxr-xr-x 6 root root 4.0K Mar  8 06:46 .
drwxr-xr-x 5 root root 4.0K Dec 31  1969 ..
drwxr-xr-x 2 root root 4.0K Sep 23 13:57 Boot
drwxr-xr-x 5 root root 4.0K Mar  8 06:46 HP
drwxr-xr-x 4 root root 4.0K Sep 23 13:57 Microsoft
drwxr-xr-x 2 root root 4.0K Jan  2 12:10 ubuntu

/boot/efi/EFI/Boot:
total 1.2M
drwxr-xr-x 2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 6 root root 4.0K Mar  8 06:46 ..
-rwxr-xr-x 1 root root 1.2M Feb 23 06:25 bootx64.efi

/boot/efi/EFI/HP:
total 24K
drwxr-xr-x 5 root root 4.0K Mar  8 06:46 .
drwxr-xr-x 6 root root 4.0K Mar  8 06:46 ..
drwxr-xr-x 5 root root 4.0K Feb  8 17:31 BIOS
drwxr-xr-x 2 root root 4.0K Feb  8 17:31 BIOSUpdate
drwxr-xr-x 2 root root 8.0K Mar  8 06:46 SystemDiags

/boot/efi/EFI/HP/BIOS:
total 20K
drwxr-xr-x 5 root root 4.0K Feb  8 17:31 .
drwxr-xr-x 5 root root 4.0K Mar  8 06:46 ..
drwxr-xr-x 2 root root 4.0K Feb  8 17:31 Current
drwxr-xr-x 2 root root 4.0K Feb  8 17:31 New
drwxr-xr-x 2 root root 4.0K Feb  8 17:31 Previous

/boot/efi/EFI/HP/BIOS/Current:
total 8.1M
drwxr-xr-x 2 root root 4.0K Feb  8 17:31 .
drwxr-xr-x 5 root root 4.0K Feb  8 17:31 ..
-rwxr-xr-x 1 root root 8.0M Feb  8 17:31 080C1.bin
-rwxr-xr-x 1 root root  256 Sep 23 14:55 080C1.s12
-rwxr-xr-x 1 root root  256 Feb  8 17:31 080C1.sig

/boot/efi/EFI/HP/BIOS/New:
total 12K
drwxr-xr-x 2 root root 4.0K Feb  8 17:31 .
drwxr-xr-x 5 root root 4.0K Feb  8 17:31 ..
-rwxr-xr-x 1 root root  256 Feb  8 17:26 080C1.s12

/boot/efi/EFI/HP/BIOS/Previous:
total 8.1M
drwxr-xr-x 2 root root 4.0K Feb  8 17:31 .
drwxr-xr-x 5 root root 4.0K Feb  8 17:31 ..
-rwxr-xr-x 1 root root 8.0M Feb  8 17:31 080C1.bin
-rwxr-xr-x 1 root root  256 Feb  8 17:31 080C1.s12
-rwxr-xr-x 1 root root  256 Feb  8 17:31 080C1.sig

/boot/efi/EFI/HP/BIOSUpdate:
total 4.7M
drwxr-xr-x 2 root root 4.0K Feb  8 17:31 .
drwxr-xr-x 5 root root 4.0K Mar  8 06:46 ..
-rwxr-xr-x 1 root root 253K Mar 10  2015 CryptRSA32.efi
-rwxr-xr-x 1 root root 434K Mar 10  2015 CryptRSA.efi
-rwxr-xr-x 1 root root 1.1M May  6  2015 HpBiosMgmt32.efi
-rwxr-xr-x 1 root root  256 May  6  2015 HpBiosMgmt32.s09
-rwxr-xr-x 1 root root  256 May  6  2015 HpBiosMgmt32.s12
-rwxr-xr-x 1 root root  256 May  6  2015 HpBiosMgmt32.s14
-rwxr-xr-x 1 root root 1.3M May  6  2015 HpBiosMgmt.efi
-rwxr-xr-x 1 root root  256 May  6  2015 HpBiosMgmt.s09
-rwxr-xr-x 1 root root  256 May  6  2015 HpBiosMgmt.s12
-rwxr-xr-x 1 root root  256 May  6  2015 HpBiosMgmt.s14
-rwxr-xr-x 1 root root 802K Jan  5 17:39 HpBiosUpdate32.efi
-rwxr-xr-x 1 root root  256 Jan  5 17:39 HpBiosUpdate32.s09
-rwxr-xr-x 1 root root  256 Jan  5 17:39 HpBiosUpdate32.s12
-rwxr-xr-x 1 root root  256 Jan  5 17:39 HpBiosUpdate32.sig
-rwxr-xr-x 1 root root 831K Jan  5 17:39 HpBiosUpdate.efi
-rwxr-xr-x 1 root root  15K Feb  8 17:31 HpBiosUpdate.log
-rwxr-xr-x 1 root root  256 Jan  5 17:39 HpBiosUpdate.s09
-rwxr-xr-x 1 root root  256 Jan  5 17:39 HpBiosUpdate.s12
-rwxr-xr-x 1 root root  256 Jan  5 17:39 HpBiosUpdate.sig

/boot/efi/EFI/HP/SystemDiags:
total 16M
drwxr-xr-x 2 root root 8.0K Mar  8 06:46 .
drwxr-xr-x 5 root root 4.0K Mar  8 06:46 ..
-rwxr-xr-x 1 root root 1.7M May  6  2015 AudioDiags32.ndz
-rwxr-xr-x 1 root root 444K Apr 24  2015 audiodiags.msg.xml
-rwxr-xr-x 1 root root 1.7M May  6  2015 AudioDiags.ndz
-rwxr-xr-x 1 root root  64K May  6  2015 CpuDiags32.ndz
-rwxr-xr-x 1 root root  69K May  6  2015 CpuDiags.ndz
-rwxr-xr-x 1 root root 253K Mar 10  2015 CryptRSA32.efi
-rwxr-xr-x 1 root root 434K Mar 10  2015 CryptRSA.efi
-rwxr-xr-x 1 root root  48K May  6  2015 FirewireDiags32.ndz
-rwxr-xr-x 1 root root  58K Mar 10  2015 firewirediags.msg.xml
-rwxr-xr-x 1 root root  57K May  6  2015 FirewireDiags.ndz
-rwxr-xr-x 1 root root 4.7M May  6  2015 HpSysDiags32.efi
-rwxr-xr-x 1 root root  256 May  6  2015 HpSysDiags32.s09
-rwxr-xr-x 1 root root  256 May  6  2015 HpSysDiags32.s12
-rwxr-xr-x 1 root root  256 May  6  2015 HpSysDiags32.s14
-rwxr-xr-x 1 root root 5.7M May  6  2015 HpSysDiags.efi
-rwxr-xr-x 1 root root  256 May  6  2015 HpSysDiags.s09
-rwxr-xr-x 1 root root  256 May  6  2015 HpSysDiags.s12
-rwxr-xr-x 1 root root  256 May  6  2015 HpSysDiags.s14
-rwxr-xr-x 1 root root  68K May  6  2015 NetworkDiags32.ndz
-rwxr-xr-x 1 root root  95K Mar 10  2015 NetworkDiags.msg.xml
-rwxr-xr-x 1 root root  81K May  6  2015 NetworkDiags.ndz
-rwxr-xr-x 1 root root  82K May  6  2015 OpticalDiags32.ndz
-rwxr-xr-x 1 root root  48K Mar 10  2015 opticaldiags.msg.xml
-rwxr-xr-x 1 root root 101K May  6  2015 OpticalDiags.ndz
-rwxr-xr-x 1 root root   52 Dec 29 00:16 SystemDiagsCeeHistory.log
-rwxr-xr-x 1 root root  602 Mar  8 06:45 SystemDiags-CND5395LLY.log
-rwxr-xr-x 1 root root   33 Dec 29 00:16 SystemDiags.ini
-rwxr-xr-x 1 root root  21K Mar  8 06:46 SystemDiags.log
-rwxr-xr-x 1 root root  54K May  6  2015 USBDiags32.ndz
-rwxr-xr-x 1 root root 133K Mar 10  2015 usbdiags.msg.xml
-rwxr-xr-x 1 root root  64K May  6  2015 USBDiags.ndz
-rwxr-xr-x 1 root root  69K May  6  2015 VideoDiags32.ndz
-rwxr-xr-x 1 root root  78K May  6  2015 VideoDiags.ndz

/boot/efi/EFI/Microsoft:
total 20K
drwxr-xr-x  4 root root 4.0K Sep 23 13:57 .
drwxr-xr-x  6 root root 4.0K Mar  8 06:46 ..
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 Boot
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 Recovery

/boot/efi/EFI/Microsoft/Boot:
total 4.5M
drwxr-xr-x 42 root root  8.0K Sep 23 13:57 .
drwxr-xr-x  4 root root  4.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root   48K Mar  8 12:51 BCD
-rwxr-xr-x  1 root root   64K Sep 23 13:57 BCD.LOG
-rwxr-xr-x  1 root root     0 Sep 23 13:57 BCD.LOG1
-rwxr-xr-x  1 root root     0 Sep 23 13:57 BCD.LOG2
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 bg-BG
-rwxr-xr-x  1 root root  1.2M Feb 23 06:25 bootmgfw.efi
-rwxr-xr-x  1 root root  1.1M Feb 23 06:24 bootmgr.efi
-rwxr-xr-x  1 root root   64K Jan  1 07:32 BOOTSTAT.DAT
-rwxr-xr-x  1 root root  4.3K Oct 30 03:18 boot.stl
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 cs-CZ
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 da-DK
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 de-DE
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 el-GR
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 en-GB
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 en-US
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 es-ES
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 es-MX
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 et-EE
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 fi-FI
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 Fonts
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 fr-CA
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 fr-FR
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 hr-HR
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 hu-HU
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 it-IT
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 ja-JP
-rwxr-xr-x  1 root root   29K Oct 30 03:09 kd_02_10df.dll
-rwxr-xr-x  1 root root  318K Oct 30 03:09 kd_02_10ec.dll
-rwxr-xr-x  1 root root   13K Oct 30 03:09 kd_02_1137.dll
-rwxr-xr-x  1 root root  207K Oct 30 03:09 kd_02_14e4.dll
-rwxr-xr-x  1 root root   35K Oct 30 03:09 kd_02_15b3.dll
-rwxr-xr-x  1 root root   38K Oct 30 03:09 kd_02_1969.dll
-rwxr-xr-x  1 root root   29K Oct 30 03:09 kd_02_19a2.dll
-rwxr-xr-x  1 root root  192K Oct 30 03:09 kd_02_8086.dll
-rwxr-xr-x  1 root root   17K Oct 30 03:09 kd_07_1415.dll
-rwxr-xr-x  1 root root   36K Oct 30 03:09 kd_0C_8086.dll
-rwxr-xr-x  1 root root   15K Oct 30 03:09 kdstub.dll
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 ko-KR
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 lt-LT
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 lv-LV
-rwxr-xr-x  1 root root 1008K Feb 23 06:27 memtest.efi
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 nb-NO
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 nl-NL
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 pl-PL
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 pt-BR
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 pt-PT
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 qps-ploc
drwxr-xr-x  3 root root  4.0K Sep 23 13:57 Resources
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 ro-RO
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 ru-RU
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 sk-SK
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 sl-SI
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 sr-Latn-CS
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 sr-Latn-RS
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 sv-SE
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 tr-TR
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 uk-UA
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 zh-CN
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 zh-HK
drwxr-xr-x  2 root root  4.0K Sep 23 13:57 zh-TW

/boot/efi/EFI/Microsoft/Boot/bg-BG:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/cs-CZ:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/da-DK:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/de-DE:
total 220K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  78K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  78K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/el-GR:
total 220K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  78K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  79K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  46K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/en-GB:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  73K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  73K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/en-US:
total 208K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  73K Oct 30 03:18 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  73K Oct 30 03:18 bootmgr.efi.mui
-rwxr-xr-x  1 root root  44K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/es-ES:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/es-MX:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/et-EE:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/fi-FI:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/Fonts:
total 13M
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root 3.6M Jul 10  2015 chs_boot.ttf
-rwxr-xr-x  1 root root 3.7M Jul 10  2015 cht_boot.ttf
-rwxr-xr-x  1 root root 1.9M Jul 10  2015 jpn_boot.ttf
-rwxr-xr-x  1 root root 2.3M Jul 10  2015 kor_boot.ttf
-rwxr-xr-x  1 root root 165K Jul 10  2015 malgun_boot.ttf
-rwxr-xr-x  1 root root 162K Jul 10  2015 malgunn_boot.ttf
-rwxr-xr-x  1 root root 132K Jul 10  2015 meiryo_boot.ttf
-rwxr-xr-x  1 root root 130K Jul 10  2015 meiryon_boot.ttf
-rwxr-xr-x  1 root root 152K Jul 10  2015 msjh_boot.ttf
-rwxr-xr-x  1 root root 150K Jul 10  2015 msjhn_boot.ttf
-rwxr-xr-x  1 root root 143K Jul 10  2015 msyh_boot.ttf
-rwxr-xr-x  1 root root 139K Jul 10  2015 msyhn_boot.ttf
-rwxr-xr-x  1 root root  36K Oct 30 03:09 segmono_boot.ttf
-rwxr-xr-x  1 root root  76K Oct 30 03:09 segoen_slboot.ttf
-rwxr-xr-x  1 root root  76K Oct 30 03:09 segoe_slboot.ttf
-rwxr-xr-x  1 root root  47K Oct 30 03:09 wgl4_boot.ttf

/boot/efi/EFI/Microsoft/Boot/fr-CA:
total 172K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  77K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  78K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/fr-FR:
total 220K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  78K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  78K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/hr-HR:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/hu-HU:
total 220K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  77K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  77K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/it-IT:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/ja-JP:
total 192K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  67K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  66K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  42K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/ko-KR:
total 192K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  66K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  66K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  42K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/lt-LT:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/lv-LV:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/nb-NO:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/nl-NL:
total 216K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  77K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/pl-PL:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/pt-BR:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/pt-PT:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/qps-ploc:
total 208K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  73K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  73K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  44K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/Resources:
total 36K
drwxr-xr-x  3 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  19K Oct 30 03:09 bootres.dll
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 en-US

/boot/efi/EFI/Microsoft/Boot/Resources/en-US:
total 24K
drwxr-xr-x 2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 3 root root 4.0K Sep 23 13:57 ..
-rwxr-xr-x 1 root root  13K Oct 30 03:11 bootres.dll.mui

/boot/efi/EFI/Microsoft/Boot/ro-RO:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/ru-RU:
total 208K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  44K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/sk-SK:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/sl-SI:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/sr-Latn-CS:
total 208K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  44K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/sr-Latn-RS:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/sv-SE:
total 208K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  75K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  44K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/tr-TR:
total 212K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  74K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  45K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/uk-UA:
total 164K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  76K Jul 10  2015 bootmgr.efi.mui

/boot/efi/EFI/Microsoft/Boot/zh-CN:
total 184K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  63K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  63K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  42K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/zh-HK:
total 184K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  63K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  63K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  42K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Boot/zh-TW:
total 184K
drwxr-xr-x  2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 42 root root 8.0K Sep 23 13:57 ..
-rwxr-xr-x  1 root root  63K Jul 10  2015 bootmgfw.efi.mui
-rwxr-xr-x  1 root root  63K Jul 10  2015 bootmgr.efi.mui
-rwxr-xr-x  1 root root  42K Oct 30 03:18 memtest.efi.mui

/boot/efi/EFI/Microsoft/Recovery:
total 60K
drwxr-xr-x 2 root root 4.0K Sep 23 13:57 .
drwxr-xr-x 4 root root 4.0K Sep 23 13:57 ..
-rwxr-xr-x 1 root root  20K Jan  1 07:54 BCD
-rwxr-xr-x 1 root root  32K Sep 23 13:57 BCD.LOG
-rwxr-xr-x 1 root root    0 Sep 23 13:57 BCD.LOG1
-rwxr-xr-x 1 root root    0 Sep 23 13:57 BCD.LOG2

/boot/efi/EFI/ubuntu:
total 3.4M
drwxr-xr-x 2 root root 4.0K Jan  2 12:10 .
drwxr-xr-x 6 root root 4.0K Mar  8 06:46 ..
-rwxr-xr-x 1 root root  126 Mar  7 20:26 grub.cfg
-rwxr-xr-x 1 root root 936K Mar  7 20:26 grubx64.efi
-rwxr-xr-x 1 root root 1.2M Mar  7 20:26 MokManager.efi
-rwxr-xr-x 1 root root 1.3M Mar  7 20:26 shimx64.efi

/boot/efi/System Volume Information:
total 12K
drwxr-xr-x 2 root root 4.0K Sep 23 15:26 .
drwxr-xr-x 5 root root 4.0K Dec 31  1969 ..
-rwxr-xr-x 1 root root   76 Sep 23 15:26 IndexerVolumeGuid

/boot/grub:
total 2.4M
drwxr-xr-x 5 root root 4.0K Mar  7 15:26 .
drwxr-xr-x 4 root root 4.0K Mar  7 15:27 ..
drwxr-xr-x 2 root root 4.0K Mar  7 15:25 fonts
-r--r--r-- 1 root root 8.5K Mar  7 15:26 grub.cfg
-rw-r--r-- 1 root root 1.0K Mar  8 12:52 grubenv
drwxr-xr-x 2 root root 4.0K Mar  7 15:26 locale
-rw-r--r-- 1 root root 2.3M Mar  7 15:25 unicode.pf2
drwxr-xr-x 2 root root  12K Mar  7 15:26 x86_64-efi

/boot/grub/fonts:
total 2.4M
drwxr-xr-x 2 root root 4.0K Mar  7 15:25 .
drwxr-xr-x 5 root root 4.0K Mar  7 15:26 ..
-rw-r--r-- 1 root root 2.3M Mar  7 15:26 unicode.pf2

/boot/grub/locale:
total 24K
drwxr-xr-x 2 root root 4.0K Mar  7 15:26 .
drwxr-xr-x 5 root root 4.0K Mar  7 15:26 ..
-rw-r--r-- 1 root root 1.1K Mar  7 15:26 en_AU.mo
-rw-r--r-- 1 root root  587 Mar  7 15:26 en_CA.mo
-rw-r--r-- 1 root root 4.4K Mar  7 15:26 en_GB.mo

/boot/grub/x86_64-efi:
total 3.3M
drwxr-xr-x 2 root root  12K Mar  7 15:26 .
drwxr-xr-x 5 root root 4.0K Mar  7 15:26 ..
-rw-r--r-- 1 root root  17K Mar  7 15:25 acpi.mod
-rw-r--r-- 1 root root 1.9K Mar  7 15:25 adler32.mod
-rw-r--r-- 1 root root 8.5K Mar  7 15:25 affs.mod
-rw-r--r-- 1 root root 8.6K Mar  7 15:25 afs.mod
-rw-r--r-- 1 root root  23K Mar  7 15:25 ahci.mod
-rw-r--r-- 1 root root 1017 Mar  7 15:25 all_video.mod
-rw-r--r-- 1 root root 1.5K Mar  7 15:25 aout.mod
-rw-r--r-- 1 root root 5.0K Mar  7 15:25 appleldr.mod
-rw-r--r-- 1 root root 4.7K Mar  7 15:25 archelp.mod
-rw-r--r-- 1 root root 8.8K Mar  7 15:25 ata.mod
-rw-r--r-- 1 root root 7.3K Mar  7 15:25 at_keyboard.mod
-rw-r--r-- 1 root root 2.5K Mar  7 15:25 backtrace.mod
-rw-r--r-- 1 root root  10K Mar  7 15:25 bfs.mod
-rw-r--r-- 1 root root 3.1K Mar  7 15:25 bitmap.mod
-rw-r--r-- 1 root root 5.1K Mar  7 15:25 bitmap_scale.mod
-rw-r--r-- 1 root root 3.2K Mar  7 15:25 blocklist.mod
-rw-r--r-- 1 root root 3.3K Mar  7 15:25 boot.mod
-rw-r--r-- 1 root root  49K Mar  7 15:25 bsd.mod
-rw-r--r-- 1 root root  20K Mar  7 15:25 btrfs.mod
-rw-r--r-- 1 root root 2.9K Mar  7 15:25 bufio.mod
-rw-r--r-- 1 root root 4.2K Mar  7 15:25 cat.mod
-rw-r--r-- 1 root root 5.4K Mar  7 15:25 cbfs.mod
-rw-r--r-- 1 root root 6.3K Mar  7 15:25 cbls.mod
-rw-r--r-- 1 root root 3.8K Mar  7 15:25 cbmemc.mod
-rw-r--r-- 1 root root 1.6K Mar  7 15:25 cbtable.mod
-rw-r--r-- 1 root root 4.0K Mar  7 15:25 cbtime.mod
-rw-r--r-- 1 root root 8.4K Mar  7 15:25 chain.mod
-rw-r--r-- 1 root root 4.7K Mar  7 15:25 cmdline_cat_test.mod
-rw-r--r-- 1 root root 2.9K Mar  7 15:25 cmp.mod
-rw-r--r-- 1 root root 3.6K Mar  7 15:26 command.lst
-rw-r--r-- 1 root root 3.5K Mar  7 15:25 configfile.mod
-rw-r--r-- 1 root root 122K Mar  7 15:26 core.efi
-rw-r--r-- 1 root root 4.3K Mar  7 15:25 cpio_be.mod
-rw-r--r-- 1 root root 4.3K Mar  7 15:25 cpio.mod
-rw-r--r-- 1 root root 2.5K Mar  7 15:25 cpuid.mod
-rw-r--r-- 1 root root 2.1K Mar  7 15:25 crc64.mod
-rw-r--r-- 1 root root  16K Mar  7 15:25 cryptodisk.mod
-rw-r--r-- 1 root root  936 Mar  7 15:26 crypto.lst
-rw-r--r-- 1 root root 6.8K Mar  7 15:25 crypto.mod
-rw-r--r-- 1 root root 3.8K Mar  7 15:25 cs5536.mod
-rw-r--r-- 1 root root 3.0K Mar  7 15:25 datehook.mod
-rw-r--r-- 1 root root 3.2K Mar  7 15:25 date.mod
-rw-r--r-- 1 root root 1.9K Mar  7 15:25 datetime.mod
-rw-r--r-- 1 root root  14K Mar  7 15:25 diskfilter.mod
-rw-r--r-- 1 root root 3.1K Mar  7 15:25 disk.mod
-rw-r--r-- 1 root root 5.7K Mar  7 15:25 div_test.mod
-rw-r--r-- 1 root root 2.7K Mar  7 15:25 dm_nv.mod
-rw-r--r-- 1 root root 3.0K Mar  7 15:25 echo.mod
-rw-r--r-- 1 root root 2.3K Mar  7 15:25 efifwsetup.mod
-rw-r--r-- 1 root root  14K Mar  7 15:25 efi_gop.mod
-rw-r--r-- 1 root root 6.3K Mar  7 15:25 efinet.mod
-rw-r--r-- 1 root root 7.4K Mar  7 15:25 efi_uga.mod
-rw-r--r-- 1 root root  25K Mar  7 15:25 ehci.mod
-rw-r--r-- 1 root root 7.1K Mar  7 15:25 elf.mod
-rw-r--r-- 1 root root 2.2K Mar  7 15:25 eval.mod
-rw-r--r-- 1 root root 8.4K Mar  7 15:25 exfat.mod
-rw-r--r-- 1 root root 2.3K Mar  7 15:25 exfctest.mod
-rw-r--r-- 1 root root 8.6K Mar  7 15:25 ext2.mod
-rw-r--r-- 1 root root 7.0K Mar  7 15:25 extcmd.mod
-rw-r--r-- 1 root root 8.5K Mar  7 15:25 fat.mod
-rw-r--r-- 1 root root  24K Mar  7 15:25 file.mod
-rw-r--r-- 1 root root 3.0K Mar  7 15:25 fixvideo.mod
-rw-r--r-- 1 root root  18K Mar  7 15:25 font.mod
-rw-r--r-- 1 root root 3.7K Mar  7 15:25 fshelp.mod
-rw-r--r-- 1 root root  214 Mar  7 15:26 fs.lst
-rw-r--r-- 1 root root 116K Mar  7 15:25 functional_test.mod
-rw-r--r-- 1 root root 2.4K Mar  7 15:25 gcry_arcfour.mod
-rw-r--r-- 1 root root 9.5K Mar  7 15:25 gcry_blowfish.mod
-rw-r--r-- 1 root root  30K Mar  7 15:25 gcry_camellia.mod
-rw-r--r-- 1 root root  15K Mar  7 15:25 gcry_cast5.mod
-rw-r--r-- 1 root root 3.9K Mar  7 15:25 gcry_crc.mod
-rw-r--r-- 1 root root  17K Mar  7 15:25 gcry_des.mod
-rw-r--r-- 1 root root 3.4K Mar  7 15:25 gcry_dsa.mod
-rw-r--r-- 1 root root 4.1K Mar  7 15:25 gcry_idea.mod
-rw-r--r-- 1 root root 4.1K Mar  7 15:25 gcry_md4.mod
-rw-r--r-- 1 root root 4.9K Mar  7 15:25 gcry_md5.mod
-rw-r--r-- 1 root root 3.3K Mar  7 15:25 gcry_rfc2268.mod
-rw-r--r-- 1 root root  20K Mar  7 15:25 gcry_rijndael.mod
-rw-r--r-- 1 root root 9.0K Mar  7 15:25 gcry_rmd160.mod
-rw-r--r-- 1 root root 3.4K Mar  7 15:25 gcry_rsa.mod
-rw-r--r-- 1 root root  14K Mar  7 15:25 gcry_seed.mod
-rw-r--r-- 1 root root  17K Mar  7 15:25 gcry_serpent.mod
-rw-r--r-- 1 root root 7.8K Mar  7 15:25 gcry_sha1.mod
-rw-r--r-- 1 root root 6.0K Mar  7 15:25 gcry_sha256.mod
-rw-r--r-- 1 root root 7.4K Mar  7 15:25 gcry_sha512.mod
-rw-r--r-- 1 root root  14K Mar  7 15:25 gcry_tiger.mod
-rw-r--r-- 1 root root  34K Mar  7 15:25 gcry_twofish.mod
-rw-r--r-- 1 root root  23K Mar  7 15:25 gcry_whirlpool.mod
-rw-r--r-- 1 root root 8.9K Mar  7 15:25 geli.mod
-rw-r--r-- 1 root root 8.4K Mar  7 15:25 gettext.mod
-rw-r--r-- 1 root root  60K Mar  7 15:25 gfxmenu.mod
-rw-r--r-- 1 root root 4.6K Mar  7 15:25 gfxterm_background.mod
-rw-r--r-- 1 root root 7.7K Mar  7 15:25 gfxterm_menu.mod
-rw-r--r-- 1 root root  19K Mar  7 15:25 gfxterm.mod
-rw-r--r-- 1 root root 5.1K Mar  7 15:25 gptsync.mod
-rw-r--r-- 1 root root 122K Mar  7 15:26 grub.efi
-rw-r--r-- 1 root root  12K Mar  7 15:25 gzio.mod
-rw-r--r-- 1 root root 6.4K Mar  7 15:25 halt.mod
-rw-r--r-- 1 root root 8.5K Mar  7 15:25 hashsum.mod
-rw-r--r-- 1 root root  12K Mar  7 15:25 hdparm.mod
-rw-r--r-- 1 root root 1.9K Mar  7 15:25 hello.mod
-rw-r--r-- 1 root root 3.9K Mar  7 15:25 help.mod
-rw-r--r-- 1 root root 4.5K Mar  7 15:25 hexdump.mod
-rw-r--r-- 1 root root  11K Mar  7 15:25 hfs.mod
-rw-r--r-- 1 root root 4.4K Mar  7 15:25 hfspluscomp.mod
-rw-r--r-- 1 root root  11K Mar  7 15:25 hfsplus.mod
-rw-r--r-- 1 root root 8.8K Mar  7 15:25 http.mod
-rw-r--r-- 1 root root 4.4K Mar  7 15:25 iorw.mod
-rw-r--r-- 1 root root  13K Mar  7 15:25 iso9660.mod
-rw-r--r-- 1 root root 8.8K Mar  7 15:25 jfs.mod
-rw-r--r-- 1 root root 8.8K Mar  7 15:25 jpeg.mod
-rw-r--r-- 1 root root 6.3K Mar  7 15:25 keylayouts.mod
-rw-r--r-- 1 root root 3.1K Mar  7 15:25 keystatus.mod
-rw-r--r-- 1 root root 8.6K Mar  7 15:25 ldm.mod
-rw-r--r-- 1 root root  44K Mar  7 15:25 legacycfg.mod
-rw-r--r-- 1 root root  16K Mar  7 15:25 legacy_password_test.mod
-rw-r--r-- 1 root root  13K Mar  7 15:25 linux16.mod
-rw-r--r-- 1 root root  11K Mar  7 15:25 linuxefi.mod
-rw-r--r-- 1 root root  22K Mar  7 15:25 linux.mod
-rw-r--r-- 1 root root 4.7K Mar  7 15:25 loadbios.mod
-rw-rw-r-- 1 root root   98 Mar  7 15:26 load.cfg
-rw-r--r-- 1 root root 9.3K Mar  7 15:25 loadenv.mod
-rw-r--r-- 1 root root 4.8K Mar  7 15:25 loopback.mod
-rw-r--r-- 1 root root 7.1K Mar  7 15:25 lsacpi.mod
-rw-r--r-- 1 root root 3.2K Mar  7 15:25 lsefimmap.mod
-rw-r--r-- 1 root root 5.2K Mar  7 15:25 lsefi.mod
-rw-r--r-- 1 root root 3.5K Mar  7 15:25 lsefisystab.mod
-rw-r--r-- 1 root root 2.8K Mar  7 15:25 lsmmap.mod
-rw-r--r-- 1 root root 6.6K Mar  7 15:25 ls.mod
-rw-r--r-- 1 root root 7.2K Mar  7 15:25 lspci.mod
-rw-r--r-- 1 root root 4.1K Mar  7 15:25 lssal.mod
-rw-r--r-- 1 root root 9.4K Mar  7 15:25 luks.mod
-rw-r--r-- 1 root root 9.7K Mar  7 15:25 lvm.mod
-rw-r--r-- 1 root root  13K Mar  7 15:25 lzopio.mod
-rw-r--r-- 1 root root 4.8K Mar  7 15:25 macbless.mod
-rw-r--r-- 1 root root  11K Mar  7 15:25 macho.mod
-rw-r--r-- 1 root root 2.8K Mar  7 15:25 mdraid09_be.mod
-rw-r--r-- 1 root root 2.8K Mar  7 15:25 mdraid09.mod
-rw-r--r-- 1 root root 2.7K Mar  7 15:25 mdraid1x.mod
-rw-r--r-- 1 root root 3.2K Mar  7 15:25 memdisk.mod
-rw-r--r-- 1 root root 4.5K Mar  7 15:25 memrw.mod
-rw-r--r-- 1 root root 5.5K Mar  7 15:25 minicmd.mod
-rw-r--r-- 1 root root 5.6K Mar  7 15:25 minix2_be.mod
-rw-r--r-- 1 root root 5.5K Mar  7 15:25 minix2.mod
-rw-r--r-- 1 root root 5.6K Mar  7 15:25 minix3_be.mod
-rw-r--r-- 1 root root 5.5K Mar  7 15:25 minix3.mod
-rw-r--r-- 1 root root 5.5K Mar  7 15:25 minix_be.mod
-rw-r--r-- 1 root root 5.4K Mar  7 15:25 minix.mod
-rw-r--r-- 1 root root 9.5K Mar  7 15:25 mmap.mod
-rw-r--r-- 1 root root 4.7K Mar  7 15:25 moddep.lst
-rw-r--r-- 1 root root 2.2K Mar  7 15:26 modinfo.sh
-rw-r--r-- 1 root root 3.3K Mar  7 15:25 morse.mod
-rw-r--r-- 1 root root  44K Mar  7 15:25 mpi.mod
-rw-r--r-- 1 root root 3.6K Mar  7 15:25 msdospart.mod
-rw-r--r-- 1 root root  21K Mar  7 15:25 multiboot2.mod
-rw-r--r-- 1 root root  19K Mar  7 15:25 multiboot.mod
-rw-r--r-- 1 root root 6.6K Mar  7 15:25 nativedisk.mod
-rw-r--r-- 1 root root  74K Mar  7 15:25 net.mod
-rw-r--r-- 1 root root 4.5K Mar  7 15:25 newc.mod
-rw-r--r-- 1 root root 9.8K Mar  7 15:25 nilfs2.mod
-rw-r--r-- 1 root root 178K Mar  7 15:25 normal.mod
-rw-r--r-- 1 root root 5.7K Mar  7 15:25 ntfscomp.mod
-rw-r--r-- 1 root root  16K Mar  7 15:25 ntfs.mod
-rw-r--r-- 1 root root 4.3K Mar  7 15:25 odc.mod
-rw-r--r-- 1 root root 2.2K Mar  7 15:25 offsetio.mod
-rw-r--r-- 1 root root  17K Mar  7 15:25 ohci.mod
-rw-r--r-- 1 root root 2.3K Mar  7 15:25 part_acorn.mod
-rw-r--r-- 1 root root 2.6K Mar  7 15:25 part_amiga.mod
-rw-r--r-- 1 root root 3.0K Mar  7 15:25 part_apple.mod
-rw-r--r-- 1 root root 4.1K Mar  7 15:25 part_bsd.mod
-rw-r--r-- 1 root root 2.6K Mar  7 15:25 part_dfly.mod
-rw-r--r-- 1 root root 2.2K Mar  7 15:25 part_dvh.mod
-rw-r--r-- 1 root root 3.2K Mar  7 15:25 part_gpt.mod
-rw-r--r-- 1 root root  111 Mar  7 15:26 partmap.lst
-rw-r--r-- 1 root root 3.0K Mar  7 15:25 part_msdos.mod
-rw-r--r-- 1 root root 2.5K Mar  7 15:25 part_plan.mod
-rw-r--r-- 1 root root 2.2K Mar  7 15:25 part_sun.mod
-rw-r--r-- 1 root root 2.4K Mar  7 15:25 part_sunpc.mod
-rw-r--r-- 1 root root   17 Mar  7 15:26 parttool.lst
-rw-r--r-- 1 root root 7.2K Mar  7 15:25 parttool.mod
-rw-r--r-- 1 root root 2.9K Mar  7 15:25 password.mod
-rw-r--r-- 1 root root 4.4K Mar  7 15:25 password_pbkdf2.mod
-rw-r--r-- 1 root root 7.4K Mar  7 15:25 pata.mod
-rw-r--r-- 1 root root 2.0K Mar  7 15:25 pbkdf2.mod
-rw-r--r-- 1 root root 3.4K Mar  7 15:25 pbkdf2_test.mod
-rw-r--r-- 1 root root 3.8K Mar  7 15:25 pcidump.mod
-rw-r--r-- 1 root root 3.8K Mar  7 15:25 play.mod
-rw-r--r-- 1 root root  11K Mar  7 15:25 png.mod
-rw-r--r-- 1 root root 2.2K Mar  7 15:25 priority_queue.mod
-rw-r--r-- 1 root root 4.3K Mar  7 15:25 probe.mod
-rw-r--r-- 1 root root 3.4K Mar  7 15:25 procfs.mod
-rw-r--r-- 1 root root 2.9K Mar  7 15:25 progress.mod
-rw-r--r-- 1 root root 2.0K Mar  7 15:25 raid5rec.mod
-rw-r--r-- 1 root root 3.2K Mar  7 15:25 raid6rec.mod
-rw-r--r-- 1 root root 2.3K Mar  7 15:25 read.mod
-rw-r--r-- 1 root root 1.8K Mar  7 15:25 reboot.mod
-rw-r--r-- 1 root root  77K Mar  7 15:25 regexp.mod
-rw-r--r-- 1 root root  14K Mar  7 15:25 reiserfs.mod
-rw-r--r-- 1 root root  26K Mar  7 15:25 relocator.mod
-rw-r--r-- 1 root root 5.7K Mar  7 15:25 romfs.mod
-rw-r--r-- 1 root root 7.4K Mar  7 15:25 scsi.mod
-rw-r--r-- 1 root root 5.0K Mar  7 15:25 search_fs_file.mod
-rw-r--r-- 1 root root 4.9K Mar  7 15:25 search_fs_uuid.mod
-rw-r--r-- 1 root root 4.9K Mar  7 15:25 search_label.mod
-rw-r--r-- 1 root root 5.3K Mar  7 15:25 search.mod
-rw-r--r-- 1 root root  15K Mar  7 15:25 serial.mod
-rw-r--r-- 1 root root 1.1K Mar  7 15:25 setjmp.mod
-rw-r--r-- 1 root root 2.6K Mar  7 15:25 setjmp_test.mod
-rw-r--r-- 1 root root 8.9K Mar  7 15:25 setpci.mod
-rw-r--r-- 1 root root 7.9K Mar  7 15:25 sfs.mod
-rw-r--r-- 1 root root 8.6K Mar  7 15:25 signature_test.mod
-rw-r--r-- 1 root root 3.6K Mar  7 15:25 sleep.mod
-rw-r--r-- 1 root root 3.4K Mar  7 15:25 sleep_test.mod
-rw-r--r-- 1 root root 3.2K Mar  7 15:25 spkmodem.mod
-rw-r--r-- 1 root root 9.6K Mar  7 15:25 squash4.mod
-rw-r--r-- 1 root root  31K Mar  7 15:25 syslinuxcfg.mod
-rw-r--r-- 1 root root 4.9K Mar  7 15:25 tar.mod
-rw-r--r-- 1 root root  162 Mar  7 15:26 terminal.lst
-rw-r--r-- 1 root root 6.7K Mar  7 15:25 terminal.mod
-rw-r--r-- 1 root root  20K Mar  7 15:25 terminfo.mod
-rw-r--r-- 1 root root 2.0K Mar  7 15:25 test_blockarg.mod
-rw-r--r-- 1 root root 4.0K Mar  7 15:25 testload.mod
-rw-r--r-- 1 root root 7.7K Mar  7 15:25 test.mod
-rw-r--r-- 1 root root 3.4K Mar  7 15:25 testspeed.mod
-rw-r--r-- 1 root root 8.0K Mar  7 15:25 tftp.mod
-rw-r--r-- 1 root root 6.5K Mar  7 15:25 tga.mod
-rw-r--r-- 1 root root 2.3K Mar  7 15:25 time.mod
-rw-r--r-- 1 root root 2.1K Mar  7 15:25 trig.mod
-rw-r--r-- 1 root root 3.6K Mar  7 15:25 tr.mod
-rw-r--r-- 1 root root 1.9K Mar  7 15:25 true.mod
-rw-r--r-- 1 root root  12K Mar  7 15:25 udf.mod
-rw-r--r-- 1 root root 7.9K Mar  7 15:25 ufs1_be.mod
-rw-r--r-- 1 root root 7.8K Mar  7 15:25 ufs1.mod
-rw-r--r-- 1 root root 7.8K Mar  7 15:25 ufs2.mod
-rw-r--r-- 1 root root  11K Mar  7 15:25 uhci.mod
-rw-r--r-- 1 root root 5.9K Mar  7 15:25 usb_keyboard.mod
-rw-r--r-- 1 root root  16K Mar  7 15:25 usb.mod
-rw-r--r-- 1 root root  11K Mar  7 15:25 usbms.mod
-rw-r--r-- 1 root root 3.0K Mar  7 15:25 usbserial_common.mod
-rw-r--r-- 1 root root 3.5K Mar  7 15:25 usbserial_ftdi.mod
-rw-r--r-- 1 root root 3.8K Mar  7 15:25 usbserial_pl2303.mod
-rw-r--r-- 1 root root 2.3K Mar  7 15:25 usbserial_usbdebug.mod
-rw-r--r-- 1 root root 5.6K Mar  7 15:25 usbtest.mod
-rw-r--r-- 1 root root  20K Mar  7 15:25 verify.mod
-rw-r--r-- 1 root root 8.9K Mar  7 15:25 video_bochs.mod
-rw-r--r-- 1 root root 9.4K Mar  7 15:25 video_cirrus.mod
-rw-r--r-- 1 root root 9.9K Mar  7 15:25 video_colors.mod
-rw-r--r-- 1 root root  29K Mar  7 15:25 video_fb.mod
-rw-r--r-- 1 root root 5.8K Mar  7 15:25 videoinfo.mod
-rw-r--r-- 1 root root   41 Mar  7 15:26 video.lst
-rw-r--r-- 1 root root 8.8K Mar  7 15:25 video.mod
-rw-r--r-- 1 root root 3.8K Mar  7 15:25 videotest_checksum.mod
-rw-r--r-- 1 root root 5.4K Mar  7 15:25 videotest.mod
-rw-r--r-- 1 root root 8.7K Mar  7 15:25 xfs.mod
-rw-r--r-- 1 root root  42K Mar  7 15:25 xnu.mod
-rw-r--r-- 1 root root 3.2K Mar  7 15:25 xnu_uuid.mod
-rw-r--r-- 1 root root 3.3K Mar  7 15:25 xnu_uuid_test.mod
-rw-r--r-- 1 root root  21K Mar  7 15:25 xzio.mod
-rw-r--r-- 1 root root 8.3K Mar  7 15:25 zfscrypt.mod
-rw-r--r-- 1 root root  12K Mar  7 15:25 zfsinfo.mod
-rw-r--r-- 1 root root  57K Mar  7 15:25 zfs.mod
Download as text