[ create a new paste ] login | about

Link: http://codepad.org/yn2KcRXz    [ raw code | fork ]

Plain Text, pasted on Apr 13:
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
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
PORTEUS VERSION:
Porteus-v3.2.2

KERNEL/PROCESSOR:
4.9.0-porteus x86_64 Intel(R) Core(TM) i5-2430M CPU @ 2.40GHz

MEMORY/SWAP:
              total        used        free      shared  buff/cache   available
Mem:           3838         553        2214         181        1069        2629
Swap:          3813           0        3813

BLOCK DEVICES:
sda
sdb
sdc
sr0

PARTITIONS:
/dev/sda1: LABEL="System" UUID="FCE2C2D7E2C29574" TYPE="ntfs" PARTUUID="46d00024-01"
/dev/sda2: LABEL="OSDisk" UUID="0A54C50B54C4FA89" TYPE="ntfs" PARTUUID="46d00024-02"
/dev/sda3: UUID="9f158aa9-30aa-4089-92bc-29de17d320d7" TYPE="ext4" PARTUUID="46d00024-03"
/dev/sda5: UUID="7f664251-46e8-4f53-a56d-e91e5dd38faf" TYPE="swap" PARTUUID="46d00024-05"
/dev/sdb: UUID="3d5ddd1b-337d-443c-a9f6-47066f0795f7" TYPE="ext4"

MOUNTED PARITIONS:
Filesystem     Type      Size  Used Avail Use% Mounted on
tmpfs          tmpfs     1.9G  2.3M  1.9G   1% /mnt/live
/dev/sda1      fuseblk   499M   27M  473M   6% /mnt/sda1
/dev/sda2      fuseblk   117G   58G   59G  50% /mnt/sda2
/dev/sda3      ext4      111G  6.4G   99G   7% /mnt/sda3
/dev/sdb       ext4      3.7G  608M  2.9G  18% /mnt/sdb
aufs           aufs      3.7G  608M  2.9G  18% /
/dev/loop0     squashfs   47M   47M     0 100% /mnt/live/memory/images/000-kernel.xzm
/dev/loop1     squashfs   66M   66M     0 100% /mnt/live/memory/images/001-core.xzm
/dev/loop2     squashfs   77M   77M     0 100% /mnt/live/memory/images/002-xorg.xzm
/dev/loop3     squashfs  218M  218M     0 100% /mnt/live/memory/images/003-kde5.xzm
/dev/loop4     squashfs   45M   45M     0 100% /mnt/live/memory/images/google-chrome-56.0.2924.87-x86_64-1.xzm
tmpfs          tmpfs     1.9G   14M  1.9G   1% /dev/shm

CHEATCODES:
quiet initrd=initrd.xz changes=/porteus BOOT_IMAGE=vmlinuz 

LIVEDBG INFO:
# Recognized devices:
/dev/sda1: LABEL="System" UUID="FCE2C2D7E2C29574" TYPE="ntfs" 
/dev/sda2: LABEL="OSDisk" UUID="0A54C50B54C4FA89" TYPE="ntfs" 
/dev/sda3: UUID="9f158aa9-30aa-4089-92bc-29de17d320d7" TYPE="ext4" 
/dev/sda5: UUID="7f664251-46e8-4f53-a56d-e91e5dd38faf" TYPE="swap" 
/dev/sdb: UUID="3d5ddd1b-337d-443c-a9f6-47066f0795f7" TYPE="ext4" 

# Booting device:
/mnt/sdb

# Porteus data found in:
/mnt/sdb/porteus

# Changes are stored in:
/porteus

# Non standard /rootcopy dir:
none

# Modules activated during boot time:
/mnt/sdb/porteus/base/000-kernel.xzm
/mnt/sdb/porteus/base/001-core.xzm
/mnt/sdb/porteus/base/002-xorg.xzm
/mnt/sdb/porteus/base/003-kde5.xzm
/mnt/sdb/porteus/modules/google-chrome-56.0.2924.87-x86_64-1.xzm

SOUND CARDS:
 0 [PCH            ]: HDA-Intel - HDA Intel PCH
                      HDA Intel PCH at 0xe2e60000 irq 28

LSPCI OUTPUT:
00:00.0 Host bridge [0600]: Intel Corporation 2nd Generation Core Processor Family DRAM Controller [8086:0104] (rev 09)
	Subsystem: Dell Device [1028:0494]
00:02.0 VGA compatible controller [0300]: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller [8086:0116] (rev 09)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: i915
	Kernel modules: i915
00:16.0 Communication controller [0780]: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 [8086:1c3a] (rev 04)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: mei_me
	Kernel modules: mei_me
00:19.0 Ethernet controller [0200]: Intel Corporation 82579LM Gigabit Network Connection [8086:1502] (rev 04)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: e1000e
	Kernel modules: e1000e
00:1a.0 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 [8086:1c2d] (rev 04)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: ehci-pci
00:1b.0 Audio device [0403]: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller [8086:1c20] (rev 04)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
00:1c.0 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 1 [8086:1c10] (rev b4)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.1 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 2 [8086:1c12] (rev b4)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.2 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 3 [8086:1c14] (rev b4)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.3 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 4 [8086:1c16] (rev b4)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.5 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 6 [8086:1c1a] (rev b4)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1d.0 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 [8086:1c26] (rev 04)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: ehci-pci
00:1f.0 ISA bridge [0601]: Intel Corporation QM67 Express Chipset Family LPC Controller [8086:1c4f] (rev 04)
	Subsystem: Dell Device [1028:0494]
00:1f.2 RAID bus controller [0104]: Intel Corporation 82801 Mobile SATA Controller [RAID mode] [8086:282a] (rev 04)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: ahci
00:1f.3 SMBus [0c05]: Intel Corporation 6 Series/C200 Series Chipset Family SMBus Controller [8086:1c22] (rev 04)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: i801_smbus
	Kernel modules: i2c_i801
02:00.0 Network controller [0280]: Intel Corporation Centrino Advanced-N 6205 [Taylor Peak] [8086:0082] (rev 34)
	Subsystem: Intel Corporation Centrino Advanced-N 6205 AGN [8086:1321]
	Kernel driver in use: iwlwifi
	Kernel modules: iwlwifi, wl
0a:00.0 FireWire (IEEE 1394) [0c00]: O2 Micro, Inc. 1394 OHCI Compliant Host Controller [1217:13f7] (rev 05)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: firewire_ohci
	Kernel modules: firewire_ohci
0a:00.1 SD Host controller [0805]: O2 Micro, Inc. OZ600RJ0/OZ900RJ0/OZ600RJS SD/MMC Card Reader Controller [1217:8321] (rev 05)
	Subsystem: Dell Device [1028:0494]
	Kernel driver in use: sdhci-pci
0a:00.2 Mass storage controller [0180]: O2 Micro, Inc. O2 Flash Memory Card [1217:8331] (rev 05)
	Subsystem: Dell Device [1028:0494]

LSUSB OUTPUT:
/:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/2p, 480M
    |__ Port 1: Dev 2, If 0, Class=, Driver=hub/8p, 480M
        |__ Port 3: Dev 3, If 0, Class=, Driver=usb-storage, 480M
        |__ Port 8: Dev 4, If 0, Class=, Driver=, 12M
        |__ Port 8: Dev 4, If 1, Class=, Driver=, 12M
/:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/2p, 480M
    |__ Port 1: Dev 2, If 0, Class=, Driver=hub/6p, 480M
        |__ Port 1: Dev 3, If 0, Class=, Driver=hub/3p, 480M
            |__ Port 1: Dev 5, If 0, Class=, Driver=usbhid, 1.5M
            |__ Port 2: Dev 7, If 0, Class=, Driver=usbhid, 1.5M
        |__ Port 2: Dev 4, If 0, Class=, Driver=hub/3p, 480M
            |__ Port 3: Dev 8, If 0, Class=, Driver=usblp, 480M
            |__ Port 2: Dev 6, If 0, Class=, Driver=hub/3p, 480M
                |__ Port 1: Dev 9, If 0, Class=, Driver=hub/3p, 480M
                    |__ Port 1: Dev 10, If 0, Class=, Driver=usb-storage, 480M

LSMOD OUTPUT:
Module                  Size  Used by
ipv6                  228313  46
usblp                   8640  0
wl                   6225308  0
intel_rapl              7776  0
coretemp                4740  0
kvm_intel             143484  0
ppdev                   5064  0
kvm                   226297  1 kvm_intel
arc4                    1728  2
irqbypass               2176  1 kvm
iwldvm                 87424  0
crct10dif_pclmul        3264  0
crc32_pclmul            2048  0
mac80211              249664  1 iwldvm
crc32c_intel            7296  0
snd_hda_codec_hdmi     23937  1
ghash_clmulni_intel     2944  0
dell_smm_hwmon          6068  0
aesni_intel           138904  0
snd_hda_codec_idt      36288  1
aes_x86_64              7040  1 aesni_intel
snd_hda_codec_generic    36288  1 snd_hda_codec_idt
lrw                     2816  1 aesni_intel
i915                  836032  7
snd_hda_intel          17280  3
snd_hda_codec          57728  4 snd_hda_intel,snd_hda_codec_idt,snd_hda_codec_hdmi,snd_hda_codec_generic
glue_helper             3456  1 aesni_intel
snd_hda_core           30920  5 snd_hda_intel,snd_hda_codec,snd_hda_codec_idt,snd_hda_codec_hdmi,snd_hda_codec_generic
ablk_helper             1472  1 aesni_intel
iwlwifi                96616  1 iwldvm
cryptd                  4872  3 ablk_helper,ghash_clmulni_intel,aesni_intel
snd_hwdep               3976  1 snd_hda_codec
firewire_ohci          22680  0
e1000e                118256  0
cfg80211              159056  4 wl,iwlwifi,mac80211,iwldvm
input_leds              2432  0
firewire_core          34348  1 firewire_ohci
intel_cstate            4201  0
ptp                     7740  1 e1000e
snd_pcm                50512  4 snd_hda_intel,snd_hda_codec,snd_hda_core,snd_hda_codec_hdmi
led_class               2760  2 input_leds,iwldvm
intel_rapl_perf         5088  0
i2c_i801               10892  0
rfkill                 10704  3 cfg80211
i2c_smbus               2368  1 i2c_i801
crc_itu_t               1408  1 firewire_core
snd_timer              14500  1 snd_pcm
intel_gtt               9096  1 i915
parport_pc             20580  0
mei_me                  9152  0
pps_core                4852  1 ptp
firmware_class          5248  3 snd_hda_intel,iwlwifi,i915
8250                   11880  0
8250_base              16768  1 8250
shpchp                 18502  0
mei                    33080  1 mei_me
wmi                     5570  0
serial_core            15168  2 8250,8250_base
parport                25136  2 parport_pc,ppdev
fjes                   15552  0
dell_smo8800            2624  0

BATTERY INFO:
Portable Battery
	Location: Sys. Battery Bay
	Manufacturer: Samsung SDI
	Manufacture Date: 11/16/2011
	Serial Number: 21DD
	Name: DELL 5CGM41B
	Design Capacity: 62160 mWh
	Design Voltage: 11100 mV
	SBDS Version: 1.0
	Maximum Error: 5%
	SBDS Chemistry: LION
	OEM-specific Information: 0x00000001

CHASSIS INFO:
Chassis Information
	Manufacturer: Dell Inc.
	Type: Laptop
	Lock: Not Present
	Version: Not Specified
	Serial Number: 872K6R1
	Asset Tag: Not Specified
	Boot-up State: Safe
	Power Supply State: Safe
	Thermal State: Safe
	Security Status: None
	OEM Information: 0x00000000
	Height: Unspecified
	Number Of Power Cords: 1
	Contained Elements: 0

SYSTEM INFO:
System Information
	Manufacturer: Dell Inc.
	Product Name: Latitude E6520
	Version: 01
	Serial Number: 872K6R1
	UUID: 4C4C4544-0037-3210-804B-B8C04F365231
	Wake-up Type: Power Switch
	SKU Number: Not Specified
	Family: Not Specified

USER INFO:
root
bin
daemon
adm
lp
sync
shutdown
halt
mail
news
uucp
operator
games
ftp
smmsp
mysql
rpc
sshd
gdm
oprofile
usbmux
sddm
pulse
pop
apache
messagebus
haldaemon
nobody
guest

LAST BOOT:
system boot  2017-04-13 13:15
Uptime (hr:min) : 14

LOADED MODULES:
000-kernel.xzm
001-core.xzm
002-xorg.xzm
003-kde5.xzm
google-chrome-56.0.2924.87-x86_64-1.xzm

LOADED PACKAGES:
ConsoleKit2-1.0.0-x86_64-3
Cython-0.23.4-x86_64-1
GConf-3.2.6-x86_64-3
LibRaw-0.17.2-x86_64-1
MPlayer-1.3.0-x86_64-1jay
ModemManager-1.4.14-x86_64-1
NetworkManager-1.4.4-x86_64-1jay
NetworkManager-openvpn-1.2.6-x86_64-1jay
NetworkManager-pptp-1.2.4-x86_64-1jay
NetworkManager-vpnc-1.2.4-x86_64-1jay
OpenAL-1.17.1-x86_64-2alien
PyQt5-5.7-x86_64-1alien
TLP-0.8-x86_64-1_SBo
Xdialog-2.3.1-x86_64-1jay
a52dec-0.7.4-x86_64-2
aaa_base-14.2-x86_64-2
aaa_elflibs-14.2-x86_64-23jay
aaa_terminfo-5.9-x86_64-1
aalib-1.4rc5-x86_64-5
acl-2.2.52-x86_64-1
acpid-2.0.26-x86_64-1
akonadi-16.08.3-x86_64-1alien
akonadi-contacts-16.08.3-x86_64-1alien
akonadi-mime-16.08.3-x86_64-1alien
akonadi-notes-16.08.3-x86_64-1alien
akonadi4-1.13.0-x86_64-2alien
alsa-lib-1.1.1-x86_64-2
alsa-plugins-1.1.1-x86_64-1
alsa-utils-1.1.1-x86_64-1
analitza-16.08.3-x86_64-1alien
archivemount-0.8.3-x86_64-1jay
ark-16.08.3-x86_64-1alien
asunder-2.8-x86_64-1jay
at-spi2-atk-2.18.1-x86_64-1
at-spi2-core-2.18.3-x86_64-1
atk-2.18.0-x86_64-1
attica-0.4.2-x86_64-1
attica-framework-5.28.0-x86_64-1alien
attr-2.4.47-x86_64-1
audiocd-kio-16.08.3-x86_64-1alien
audiofile-0.3.6-x86_64-1
baloo5-5.28.0-x86_64-1alien
baloo5-widgets-16.08.3-x86_64-1alien
bash-4.3.046-x86_64-1
bc-1.06.95-x86_64-3
bin-11.1-x86_64-1
bluedevil-5.8.4-x86_64-1alien
bluez-5.40-x86_64-1
bluez-qt-5.28.0-x86_64-1alien
breeze-5.8.4-x86_64-1alien
breeze-gtk-5.8.4-x86_64-1alien
breeze-icons-5.28.0-noarch-1alien
bridge-utils-1.5-x86_64-1
broadcom-sta-6.30.223.271_4.9.0_porteus-x86_64-1jay
bzip2-1.0.6-x86_64-1
ca-certificates-20160104-noarch-1
cairo-1.14.6-x86_64-2
cdparanoia-III_10.2-x86_64-1
cdrdao-1.2.3-x86_64-2
cdrtools-3.01-x86_64-3
cervisia-16.08.3-x86_64-1alien
cfitsio-3.370-x86_64-1alien
cgmanager-0.39-x86_64-1
cifs-utils-6.4-x86_64-2
clucene-2.3.3.4-x86_64-2
coreutils-8.25-x86_64-2
cpio-2.12-x86_64-1
curl-7.51.0-x86_64-1_slack14.2
cyrus-sasl-2.1.26-x86_64-1
dbus-1.10.8-x86_64-1
dbus-glib-0.106-x86_64-1
dconf-0.24.0-x86_64-1
dcron-4.5-x86_64-5
dejavu-fonts-ttf-2.34-noarch-1
desktop-file-utils-0.22-x86_64-1
dhcp-4.3.4-x86_64-1
dhcpcd-6.8.2-x86_64-2
dialog-1.2_20130523-x86_64-1
diffutils-3.3-x86_64-1
djvulibre-3.5.27-x86_64-1
dmapi-2.2.12-x86_64-1
dmidecode-3.0-x86_64-1
dnsmasq-2.76-x86_64-1
dolphin-16.08.3-x86_64-1alien
dolphin-plugins-16.08.3-x86_64-1alien
dosfstools-3.0.28-x86_64-1
dri3proto-1.0-x86_64-2
dvd+rw-tools-7.1-x86_64-2
e2fsprogs-1.43.1-x86_64-1
eigen3-3.2.7-x86_64-2
eject-2.1.5-x86_64-4
elfutils-0.163-x86_64-1
esound-0.2.41-x86_64-2
etc-14.2-x86_64-7
ethtool-4.5-x86_64-1
eudev-3.1.5-x86_64-8
exiv2-0.25-x86_64-1
extra-cmake-modules-5.28.0-x86_64-1alien
f2fs-tools-1.6.1-x86_64-1jay
faac-1.28-x86_64-1jay
faad2-2.7-x86_64-1jay
ffmpeg-3.0.2-x86_64-1jay
fftw-3.3.4-x86_64-1
file-5.25-x86_64-1
findutils-4.4.2-x86_64-1
flac-1.3.1-x86_64-1
flex-2.6.0-x86_64-1
floppy-5.5-x86_64-1
fltk-1.3.3-x86_64-2
fontconfig-2.11.1-x86_64-2
frameworkintegration-5.28.0-x86_64-1alien
freeglut-2.8.1-x86_64-1
freetype-2.6.3-x86_64-1
fribidi-0.19.7-x86_64-1
fuse-2.9.5-x86_64-1
galculator-2.1.3-x86_64-1jay
gamin-0.1.10-x86_64-5
gawk-4.1.3-x86_64-1
gdbm-1.12-x86_64-1
gdk-pixbuf2-2.32.3-x86_64-1
gettext-0.19.8.1-x86_64-1
gftp-2.0.19-x86_64-4
giflib-5.1.1-x86_64-1
glew-1.13.0-x86_64-1
glib2-2.46.2-x86_64-3_slack14.2
glibc-2.23-x86_64-1
glibc-solibs-2.23-x86_64-1
glibc-zoneinfo-2016i-noarch-1_slack14.2
glu-9.0.0-x86_64-1
gnome-themes-standard-3.18.0-x86_64-1
gnupg-1.4.21-x86_64-1_slack14.2
gnutls-3.4.15-x86_64-1_slack14.2
google-chrome-56.0.2924.87-x86_64-1
gpgme-1.6.0-x86_64-1
gpgmepp-16.08.3-x86_64-1alien
gpm-1.20.7-x86_64-3
gptfdisk-1.0.0-x86_64-1
grantlee-5.1.0-x86_64-2alien
grantlee-qt4-0.5.1-x86_64-1alien
grep-2.25-x86_64-1
groff-1.22.3-x86_64-2
gsl-2.1-x86_64-1
gst-plugins-base-1.6.4-x86_64-1
gst-plugins-good-1.6.4-x86_64-1
gstreamer-1.6.4-x86_64-1
gtk+2-2.24.31-x86_64-1_slack14.2
gtk+3-3.18.9-x86_64-1
gtkdialog-0.8.3-x86_64-1jay
guile-2.0.11-x86_64-2
gvfs-1.26.3-x86_64-1
gwenview-16.08.3-x86_64-1alien
gzip-1.8-x86_64-1
harfbuzz-1.2.7-x86_64-1
hdparm-9.48-x86_64-1
hicolor-icon-theme-0.15-noarch-1
httpfs2-0.1.5-x86_64-1jay
hunspell-1.3.3-x86_64-1
hwdata-0.284-noarch-1
iceauth-1.0.7-x86_64-2
icu4c-56.1-x86_64-2
ifenslave-1.1.0-x86_64-1ftm
ilmbase-2.2.0-x86_64-1
infozip-6.0-x86_64-3
iproute2-4.4.0-x86_64-1
iptables-1.6.0-x86_64-2
iputils-s20140519-x86_64-1
ipw2100-fw-1.3-fw-1
ipw2200-fw-3.1-fw-1
jasper-1.900.1-x86_64-5
jemalloc-3.6.0-x86_64-1
js185-1.0.0-x86_64-1
json-c-0.12-x86_64-1
json-glib-1.0.4-x86_64-1alien
kaccessible-16.08.3-x86_64-1alien
kactivities-4.13.3-x86_64-4alien
kactivities-framework-5.28.0-x86_64-1alien
kactivities-stats-5.28.0-x86_64-1alien
kactivitymanagerd-5.8.4-x86_64-1alien
karchive-5.28.0-x86_64-1alien
kate-16.08.3-x86_64-1alien
katepart4-4.14.3-x86_64-2alien
kauth-5.28.0-x86_64-1alien
kbd-1.15.3-x86_64-2
kbookmarks-5.28.0-x86_64-1alien
kcalc-16.08.3-x86_64-1alien
kcharselect-16.08.3-x86_64-1alien
kcmutils-5.28.0-x86_64-1alien
kcodecs-5.28.0-x86_64-1alien
kcolorchooser-16.08.3-x86_64-1alien
kcompletion-5.28.0-x86_64-1alien
kconfig-5.28.0-x86_64-1alien
kconfigwidgets-5.28.0-x86_64-1alien
kcoreaddons-5.28.0-x86_64-1alien
kcrash-5.28.0-x86_64-1alien
kcron-16.08.3-x86_64-1alien
kdbusaddons-5.28.0-x86_64-1alien
kde-baseapps-16.08.3-x86_64-1alien
kde-cli-tools-5.8.4-x86_64-1alien
kde-gtk-config-5.8.4-x86_64-1alien
kde-runtime-16.08.3-x86_64-1alien
kdeclarative-5.28.0-x86_64-1alien
kdeconnect-framework-1.0-x86_64-1alien
kdecoration-5.8.4-x86_64-1alien
kded-5.28.0-x86_64-1alien
kdeedu-data-16.08.3-x86_64-1alien
kdegraphics-mobipocket-16.08.3-x86_64-1alien
kdegraphics-thumbnailers-16.08.3-x86_64-1alien
kdelibs-4.14.26-x86_64-1alien
kdelibs4support-5.28.0-x86_64-1alien
kdenetwork-filesharing-16.08.3-x86_64-1alien
kdeplasma-addons-5.8.4-x86_64-1alien
kdesdk-kioslaves-16.08.3-x86_64-1alien
kdesdk-thumbnailers-16.08.3-x86_64-1alien
kdesignerplugin-5.28.0-x86_64-1alien
kdesu-5.28.0-x86_64-1alien
kdewebkit-5.28.0-x86_64-1alien
kdf-16.08.3-x86_64-1alien
kdnssd-5.28.0-x86_64-1alien
keyutils-1.5.9-x86_64-1
kfilemetadata-4.14.3-x86_64-4alien
kfilemetadata5-5.28.0-x86_64-1alien
kfloppy-16.08.3-x86_64-1alien
kgamma5-5.8.4-x86_64-1alien
kglobalaccel-5.28.0-x86_64-1alien
kgpg-16.08.3-x86_64-1alien
kguiaddons-5.28.0-x86_64-1alien
khotkeys-5.8.4-x86_64-1alien
khtml-5.28.0-x86_64-1alien
ki18n-5.28.0-x86_64-1alien
kiconthemes-5.28.0-x86_64-1alien
kidletime-5.28.0-x86_64-1alien
kimageformats-5.28.0-x86_64-1alien
kinfocenter-5.8.4-x86_64-1alien
kinit-5.28.0-x86_64-1alien
kio-5.28.0-x86_64-1alien
kio-extras-16.08.3-x86_64-1alien
kitemmodels-5.28.0-x86_64-1alien
kitemviews-5.28.0-x86_64-1alien
kjobwidgets-5.28.0-x86_64-1alien
kjs-5.28.0-x86_64-1alien
kjsembed-5.28.0-x86_64-1alien
kmenuedit-5.8.4-x86_64-1alien
kmix-16.08.3-x86_64-1alien
kmod-22-x86_64-1
kmousetool-16.08.3-x86_64-1alien
knewstuff-5.28.0-x86_64-1alien
knotifications-5.28.0-x86_64-1alien
knotifyconfig-5.28.0-x86_64-1alien
kolourpaint-16.08.3-x86_64-1alien
konsole-16.08.3-x86_64-1alien
konsolepart4-4.14.3-x86_64-2alien
kpackage-5.28.1-x86_64-1alien
kparts-5.28.0-x86_64-1alien
kpeople-5.28.0-x86_64-1alien
kplotting-5.28.0-x86_64-1alien
kpty-5.28.0-x86_64-1alien
krdc-16.08.3-x86_64-1alien
krfb-16.08.3-x86_64-1alien
kruler-16.08.3-x86_64-1alien
krunner-5.28.0-x86_64-1alien
ksaneplugin-16.08.3-x86_64-1alien
kscreenlocker-5.8.4-x86_64-1alien
kservice-5.28.0-x86_64-1alien
ksshaskpass-5.8.4-x86_64-1alien
ksysguard-5.8.4-x86_64-1alien
ksystemlog-16.08.3-x86_64-1alien
ktexteditor-5.28.0-x86_64-1alien
ktextwidgets-5.28.0-x86_64-1alien
ktorrent-5.0.1-x86_64-1alien
kunitconversion-5.28.0-x86_64-1alien
kuser-16.08.3-x86_64-1alien
kwallet-5.28.0-x86_64-1alien
kwalletmanager-16.08.3-x86_64-1alien
kwayland-5.28.0-x86_64-1alien
kwayland-integration-5.8.4-x86_64-1alien
kwidgetsaddons-5.28.0-x86_64-1alien
kwin-5.8.4-x86_64-1alien
kwindowsystem-5.28.0-x86_64-1alien
kwrited-5.8.4-x86_64-1alien
kxmlgui-5.28.0-x86_64-1alien
kxmlrpcclient-5.28.0-x86_64-1alien
lame-3.99.5-x86_64-1jay
lcms-1.19-x86_64-3
lcms2-2.7-x86_64-2
less-481-x86_64-1
libICE-1.0.9-x86_64-2
libSM-1.2.2-x86_64-2
libX11-1.6.4-x86_64-1_slack14.2
libXScrnSaver-1.2.2-x86_64-2
libXau-1.0.8-x86_64-2
libXaw-1.0.13-x86_64-1
libXaw3dXft-1.6.2d-x86_64-2
libXcomposite-0.4.4-x86_64-2
libXcursor-1.1.14-x86_64-2
libXdamage-1.1.4-x86_64-2
libXdmcp-1.1.2-x86_64-2
libXext-1.3.3-x86_64-2
libXfixes-5.0.3-x86_64-1_slack14.2
libXfont-1.5.1-x86_64-2
libXfontcache-1.0.5-x86_64-2
libXft-2.3.2-x86_64-3
libXi-1.7.8-x86_64-1_slack14.2
libXinerama-1.1.3-x86_64-2
libXmu-1.1.2-x86_64-2
libXp-1.0.3-x86_64-2
libXpm-3.5.11-x86_64-2
libXpresent-1.0.0-x86_64-1
libXrandr-1.5.1-x86_64-1_slack14.2
libXrender-0.9.10-x86_64-1_slack14.2
libXres-1.0.7-x86_64-2
libXt-1.1.5-x86_64-1
libXtst-1.2.3-x86_64-1_slack14.2
libXv-1.0.11-x86_64-1_slack14.2
libXvMC-1.0.10-x86_64-1_slack14.2
libXxf86dga-1.1.4-x86_64-2
libXxf86misc-1.0.3-x86_64-2
libXxf86vm-1.1.4-x86_64-2
libaacplus-2.0.2-x86_64-1jay
libaccounts-glib-1.21-x86_64-1alien
libaccounts-qt5-627a089_20151106git-x86_64-1alien
libaio-0.3.109-x86_64-1
libao-1.2.0-x86_64-3
libappindicator-12.10.0-x86_64-2alien
libarchive-3.2.1-x86_64-1
libass-0.13.0-x86_64-1jay
libassuan-2.4.2-x86_64-1
libasyncns-0.8-x86_64-1
libatasmart-0.19-x86_64-2
libbluray-0.9.1-x86_64-1jay
libcaca-0.99.beta18-x86_64-2
libcanberra-0.30-x86_64-5
libcap-2.22-x86_64-1
libcap-ng-0.7.7-x86_64-1
libcddb-1.3.2-x86_64-3
libcdio-0.93-x86_64-1
libcdio-paranoia-10.2+0.93+1-x86_64-1
libcroco-0.6.11-x86_64-1
libdaemon-0.14-x86_64-1jay
libdbusmenu-gtk-12.10.2-x86_64-2alien
libdbusmenu-qt-0.9.2-x86_64-2
libdbusmenu-qt5-r267_20140619-x86_64-3alien
libdmx-1.1.3-x86_64-2
libdrm-2.4.68-x86_64-1
libdvdnav-5.0.3-x86_64-1
libdvdread-5.0.3-x86_64-1
libepoxy-1.3.1-x86_64-1
libevdev-1.4.1-x86_64-1
libevent-2.0.22-x86_64-1
libexif-0.6.21-x86_64-1
libfakekey-0.1-x86_64-1
libffi-3.2.1-x86_64-1
libfontenc-1.1.3-x86_64-1
libgcrypt-1.7.3-x86_64-1_slack14.2
libglade-2.6.4-x86_64-5
libgpg-error-1.23-x86_64-1
libgsm-1.0.13-x86_64-1jay
libgudev-230-x86_64-1
libical-2.0.0-x86_64-1
libidn-1.33-x86_64-1_slack14.2
libimobiledevice-1.2.0-x86_64-1
libindicator-12.10.1-x86_64-2alien
libinput-1.3.3-x86_64-1alien
libjpeg-turbo-1.5.0-x86_64-1
libkcddb-16.08.3-x86_64-1alien
libkcompactdisc-16.08.3-x86_64-1alien
libkdcraw-16.08.3-x86_64-1alien
libkeduvocdocument-16.08.3-x86_64-1alien
libkexiv2-16.08.3-x86_64-1alien
libkgeomap-16.08.3-x86_64-1alien
libkipi-16.08.3-x86_64-1alien
libkomparediff2-16.08.3-x86_64-1alien
libksane-16.08.3-x86_64-1alien
libkscreen2-5.8.4-x86_64-1alien
libksysguard-5.8.4-x86_64-1alien
libktorrent-1.3.1-x86_64-3
libktorrent-2.0.1-x86_64-1alien
libmad-0.15.1b-x86_64-3
libmbim-1.12.2-x86_64-2
libmm-qt-1.0.1-x86_64-2
libmng-2.0.3-x86_64-1
libmnl-1.0.3-x86_64-1
libmtp-1.1.11-x86_64-1
libndp-1.6-x86_64-1
libnetfilter_conntrack-1.0.5-x86_64-1
libnfnetlink-1.0.1-x86_64-1
libnftnl-1.0.6-x86_64-1
libnih-1.0.3-x86_64-2
libnl3-3.2.27-x86_64-1
libnm-qt-0.9.8.3-x86_64-2
libnotify-0.7.6-x86_64-1
libodfgen-0.1.6-x86_64-1
libogg-1.3.2-x86_64-1
libpcap-1.7.4-x86_64-1
libpciaccess-0.13.4-x86_64-1
libplist-1.12-x86_64-1
libpng-1.6.23-x86_64-1
libproxy-0.4.12-x86_64-1
libqmi-1.12.6-x86_64-1
libraw1394-2.1.1-x86_64-1
librevenge-0.0.4-x86_64-1
librsvg-2.40.16-x86_64-1
libsamplerate-0.1.8-x86_64-1
libsecret-0.18.5-x86_64-1
libsigsegv-2.10-x86_64-1
libsndfile-1.0.26-x86_64-1
libsoup-2.52.2-x86_64-2
libspectre-0.2.7-x86_64-1
libssh-0.7.3-x86_64-1
libssh2-1.7.0-x86_64-1
libtasn1-4.8-x86_64-1
libtermcap-1.2.3-x86_64-7
libtheora-1.1.1-x86_64-1
libtiff-4.0.6-x86_64-1
libtirpc-1.0.1-x86_64-2
libusb-1.0.20-x86_64-1
libusb-compat-0.1.5-x86_64-2
libusbmuxd-1.0.10-x86_64-1
libva-1.6.2-x86_64-1
libva-intel-driver-1.6.2-x86_64-1
libvdpau-1.1.1-x86_64-1jay
libvdpau-va-gl-0.3.6-x86_64-1jay
libvisio-0.1.5-x86_64-1
libvisual-0.4.0-x86_64-3
libvncserver-0.9.10-x86_64-2
libvorbis-1.3.5-x86_64-1
libvpx-1.5.0-x86_64-1
libwebp-0.4.4-x86_64-1jay
libwpd-0.10.1-x86_64-1
libwpg-0.3.1-x86_64-1
libxcb-1.11.1-x86_64-1
libxkbcommon-0.5.0-x86_64-1alien
libxkbfile-1.0.9-x86_64-1
libxml2-2.9.4-x86_64-2
libxshmfence-1.2-x86_64-2
libxslt-1.1.29-x86_64-1
live-usb-3.1-noarch-7
lm_sensors-3.4.0-x86_64-1
lmdb-0.9.17-x86_64-1alien
logrotate-3.8.9-x86_64-1
lokalize-16.08.3-x86_64-1alien
lsof-4.89-x86_64-1
lvm2-2.02.154-x86_64-1
lynx-2.8.8rel.2-x86_64-1
lzip-1.16-x86_64-1
lzo-2.09-x86_64-1
man-1.6g-x86_64-3
mc-4.8.16-x86_64-2
mdadm-3.3.4-x86_64-1
mesa-11.2.2-x86_64-1
milou-5.8.4-x86_64-1alien
mkfontdir-1.0.7-noarch-1
mkfontscale-1.1.2-x86_64-2
mobile-broadband-provider-info-20151214-x86_64-1
modemmanager-qt-5.28.0-x86_64-1alien
motif-2.3.5-x86_64-1
mozilla-nss-3.23-x86_64-1
mpfr-3.1.4-x86_64-1
mpg123-1.23.4-x86_64-1
mtdev-1.1.5-x86_64-1
ncurses-5.9-x86_64-4
nepomuk-core-4.14.3-x86_64-4alien
nepomuk-widgets-4.14.3-x86_64-3alien
net-tools-1.60.20120726git-x86_64-1
nettle-3.2-x86_64-1
network-scripts-14.2-noarch-1
networkmanager-qt-5.28.0-x86_64-1alien
newt-0.52.19-x86_64-1
nfs-utils-1.3.3-x86_64-2
nftables-0.6-x86_64-1
noto-font-ttf-2015-09-29-noarch-1alien
nss-mdns-0.10-x86_64-1jay
ntfs-3g-2016.2.22-x86_64-1
numlockx-1.2-x86_64-1jay
openbox-3.6.1-x86_64-1_SBo
opencore-amr-0.1.3-x86_64-1jay
openexr-2.2.0-x86_64-1
openjpeg-2.1.0-x86_64-1
openldap-client-2.4.42-x86_64-1
openssh-7.3p1-x86_64-1_slack14.2
openssl-1.0.2j-x86_64-1_slack14.2
openvpn-2.3.11-x86_64-1
opus-1.1-x86_64-1jay
opus-tools-0.1.9-x86_64-1jay
orc-0.4.24-x86_64-1
oxygen-5.8.4-x86_64-1alien
oxygen-icons5-5.28.0-noarch-1alien
p11-kit-0.23.2-x86_64-1
p7zip-16.02-x86_64-1alien
pamixer-1.3.1-x86_64-1
pango-1.38.1-x86_64-1
parted-3.2-x86_64-2
partitionmanager-1.1.1-x86_64-2
patch-2.7.5-x86_64-1
pciutils-3.4.1-x86_64-2
pcre-8.39-x86_64-1
perl-5.22.2-x86_64-1
perlkde-4.14.3-x86_64-3alien
perlqt-4.14.3-x86_64-5alien
phonon-4.9.0-x86_64-4alien
phonon-gstreamer-4.9.0-x86_64-1alien
phonon-vlc-0.9.0-x86_64-1alien
pixman-0.34.0-x86_64-1
pkgtools-14.2-noarch-10
plasma-desktop-5.8.4-x86_64-1alien
plasma-framework-5.28.0-x86_64-1alien
plasma-integration-5.8.4-x86_64-1alien
plasma-nm-0.9.3.6-x86_64-1
plasma-pa-5.8.4-x86_64-1alien
plasma-workspace-5.8.4-x86_64-1alien
plasma5-nm-5.8.4-x86_64-1alien
pm-utils-1.4.1-x86_64-5
polkit-0.113-x86_64-2
polkit-kde-framework-5.8.4-x86_64-1alien
polkit-kde-kcmodules-framework-c2e67c6_20150121git-x86_64-3alien
polkit-qt5-1-50624e0_20160719git-x86_64-2alien
poppler-0.45.0-x86_64-1
popt-1.16-x86_64-2
porteus-xkb-select-1.0-noarch
powerdevil-5.8.4-x86_64-1alien
powertop-2.8-x86_64-1
poxml-16.08.3-x86_64-1alien
ppp-2.4.7-x86_64-1
pptp-1.8.0-x86_64-1jay
presentproto-1.0-x86_64-2
print-manager-16.08.3-x86_64-1alien
procps-ng-3.3.11-x86_64-1
pulseaudio-9.0-x86_64-1
pykde4-4.14.3-x86_64-4alien
python-pillow-3.0.0-x86_64-1
python-setuptools-22.0.5-x86_64-1
qca-2.1.1-x86_64-2
qca-qt5-2.1.1-x86_64-5alien
qimageblitz-0.0.6-x86_64-1
qjson-0.8.1-x86_64-1
qpdf-6.0.0-x86_64-1
qpdfview-0.4.16-x86_64-1jay
qt-4.8.7-x86_64-4
qt-gstreamer-1.2.0-x86_64-5alien
qt5-5.7.0-x86_64-3alien
qt5-webkit-5.7.0-x86_64-1alien
qtruby-4.14.3-x86_64-4alien
radeontool-1.6.3-x86_64-1jay
rdesktop-1.8.3-x86_64-1
readline-6.3-x86_64-2
reiserfsprogs-3.6.24-x86_64-1
rfkill-0.5-x86_64-1
rp-pppoe-3.12-x86_64-1
rpcbind-0.2.3-x86_64-1
rpm-4.12.0.1-x86_64-1
rpm2tgz-1.2.2-x86_64-1
rsync-3.1.2-x86_64-1
rtmpdump-2.4-x86_64-1jay
samba-4.4.5-x86_64-1_slack14.2
sbc-1.3-x86_64-1
scons-2.4.1-x86_64-1
screen-4.4.0-x86_64-2_slack14.2
sddm-kcm-5.8.4-x86_64-1alien
sddm-qt5-0.14.0-x86_64-1alien
sdl-1.2.15-x86_64-5_slack14.2
sdparm-1.10-x86_64-1
sed-4.2.2-x86_64-1
serf-1.3.8-x86_64-1
setxkbmap-1.3.1-x86_64-1
sg3_utils-1.42-x86_64-1
shadow-4.2.1-x86_64-1
shared-desktop-ontologies-0.11.0-x86_64-1
shared-mime-info-1.6-x86_64-1
sip-4.18-x86_64-1
slocate-3.1-x86_64-4
smartmontools-6.5-x86_64-1
smokegen-4.14.3-x86_64-3alien
smokekde-4.14.3-x86_64-5alien
smokeqt-4.14.3-x86_64-3alien
smplayer-15.9.0-x86_64-1jay
smtube-15.9.0-x86_64-1jay
sni-qt-0.2.6-x86_64-4alien
solid-5.28.0-x86_64-1alien
sonnet-5.28.0-x86_64-1alien
soprano-2.9.4-x86_64-1
spectacle-16.08.3-x86_64-1alien
speex-1.2rc2-x86_64-1jay
speexdsp-1.2rc3-x86_64-1
sqlite-3.13.0-x86_64-1
squashfs-tools-4.3-x86_64-1
sshfs-fuse-2.5-x86_64-1jay
startup-notification-0.12-x86_64-2
strace-4.11-x86_64-1
strigi-0.7.8-x86_64-2
sudo-1.8.16-x86_64-1
svgpart-16.08.3-x86_64-1alien
sweeper-16.08.3-x86_64-1alien
sysfsutils-2.1.0-x86_64-1
sysklogd-1.5.1-x86_64-2
systemsettings-5.8.4-x86_64-1alien
sysvinit-2.88dsf-x86_64-4
sysvinit-functions-8.53-x86_64-2
sysvinit-scripts-2.0-noarch-33
taglib-1.10-x86_64-1
tar-1.29-x86_64-1
telnet-0.17-x86_64-2
threadweaver-5.28.0-x86_64-1alien
tofrodos-1.7.13-x86_64-1jay
traceroute-2.0.21-x86_64-1
twolame-0.3.13-x86_64-1jay
udisks2-2.1.5-x86_64-2
unrar-5.4.5-x86_64-1_slonly
upower-0.9.23-x86_64-3
usb_modeswitch-2.2.6-x86_64-1
usbmuxd-1.1.0-x86_64-1
usbutils-008-x86_64-1
usm-latest-0.0-noarch-1
utempter-1.1.6-x86_64-2
util-linux-2.27.1-x86_64-1
v4l-utils-1.10.0-x86_64-1
vo-aacenc-0.1.3-x86_64-1jay
vo-amrwbenc-0.1.3-x86_64-1jay
vorbis-tools-1.4.0-x86_64-1
vte-0.28.2-x86_64-4
wavpack-4.75.2-x86_64-1
wayland-1.9.0-x86_64-1alien
webfs-1.21-x86_64-1jay
wget-1.18-x86_64-1
wgetpaste-2.25-noarch-1jay
which-2.21-x86_64-1
whois-5.2.12-x86_64-1
win8-mouse-cursors-theme-1.0-noarch-1ftm
wireless-tools-29-x86_64-9
wpa_supplicant-2.5-x86_64-1
wxgtk-2.8.12.1-x86_64-2jay
x11-skel-7.7-x86_64-1
x264-20151230-x86_64-1jay
xapian-core-1.2.22-x86_64-1
xauth-1.0.9-x86_64-2
xbacklight-1.2.1-x86_64-2
xcb-util-0.4.0-x86_64-2
xcb-util-cursor-0.1.2-x86_64-2
xcb-util-errors-1.0-x86_64-1
xcb-util-image-0.4.0-x86_64-2
xcb-util-keysyms-0.4.0-x86_64-2
xcb-util-renderutil-0.3.9-x86_64-2
xcb-util-wm-0.4.1-x86_64-2
xclip-0.12-x86_64-1jay
xdg-user-dirs-0.15-x86_64-1
xdg-utils-1.1.1-noarch-1
xev-1.2.2-x86_64-1
xf86-input-acecad-1.5.0-x86_64-9
xf86-input-elographics-1.4.1-x86_64-1jay
xf86-input-evdev-2.10.3-x86_64-1
xf86-input-joystick-1.6.1-x86_64-9
xf86-input-keyboard-1.8.1-x86_64-2
xf86-input-mouse-1.9.1-x86_64-4
xf86-input-mutouch-1.3.0-x86_64-1jay
xf86-input-penmount-1.5.0-x86_64-9
xf86-input-synaptics-1.8.3-x86_64-2
xf86-input-vmmouse-13.1.0-x86_64-4
xf86-input-void-1.4.0-x86_64-9
xf86-input-wacom-0.33.0-x86_64-1
xf86-video-amdgpu-1.1.0-x86_64-1
xf86-video-apm-1.2.5-x86_64-8
xf86-video-ark-0.7.5-x86_64-8
xf86-video-ast-1.1.5-x86_64-2
xf86-video-ati-7.7.1-x86_64-1
xf86-video-chips-1.2.6-x86_64-2
xf86-video-cirrus-1.5.3-x86_64-2
xf86-video-dummy-0.3.7-x86_64-5
xf86-video-fbdev-0.4.4-x86_64-4
xf86-video-glint-1.2.8-x86_64-8
xf86-video-i128-1.3.6-x86_64-8
xf86-video-i740-1.3.5-x86_64-3
xf86-video-intel-git_20160601_b617f80-x86_64-1
xf86-video-mach64-6.9.5-x86_64-2
xf86-video-mga-1.6.4-x86_64-3
xf86-video-modesetting-0.9.0-x86_64-5
xf86-video-neomagic-1.2.9-x86_64-2
xf86-video-nouveau-1.0.12-x86_64-1
xf86-video-nv-2.1.20-x86_64-9
xf86-video-openchrome-0.4.0-x86_64-1
xf86-video-r128-6.10.1-x86_64-1
xf86-video-rendition-4.2.6-x86_64-1
xf86-video-s3-0.6.5-x86_64-8
xf86-video-s3virge-1.10.7-x86_64-2
xf86-video-savage-2.3.8-x86_64-2
xf86-video-siliconmotion-1.7.8-x86_64-2
xf86-video-sis-0.10.8-x86_64-2
xf86-video-sisusb-0.9.6-x86_64-8
xf86-video-tdfx-1.4.6-x86_64-3
xf86-video-tga-1.2.2-x86_64-8
xf86-video-trident-1.3.7-x86_64-3
xf86-video-tseng-1.2.5-x86_64-8
xf86-video-v4l-0.2.0-x86_64-13
xf86-video-vesa-2.3.4-x86_64-2
xf86-video-vmware-13.1.0-x86_64-7
xf86-video-voodoo-1.2.5-x86_64-9
xf86-video-xgi-1.6.1-x86_64-2
xf86-video-xgixp-1.8.1-x86_64-8
xfsdump-3.1.6-x86_64-1
xfsprogs-4.3.0-x86_64-1
xhost-1.0.7-x86_64-1
xinit-1.3.4-x86_64-2
xkbcomp-1.3.0-x86_64-2
xkeyboard-config-2.17-noarch-1
xkill-1.0.4-x86_64-2
xl2tpd-1.3.2-x86_64-1jay
xmessage-1.0.4-x86_64-2
xmodmap-1.0.9-x86_64-1
xorg-server-1.18.3-x86_64-2
xprop-1.2.2-x86_64-2
xrandr-1.5.0-x86_64-1
xrdb-1.1.0-x86_64-2
xset-1.2.3-x86_64-2
xsetroot-1.1.1-x86_64-2
xterm-325-x86_64-1
xvidcore-1.3.4-x86_64-1jay
xvinfo-1.1.3-x86_64-1
xz-5.2.2-x86_64-1
zd1211-firmware-1.4-fw-1
zeroconf-ioslave-16.08.3-x86_64-1alien
zlib-1.2.8-x86_64-1

/var/log/messages:
Apr 13 13:15:01 porteus kernel: klogd 1.5.1, log source = /proc/kmsg started.
Apr 13 13:15:01 porteus kernel: [    0.000000] Linux version 4.9.0-porteus (root@porteus) (gcc version 5.3.0 (GCC) ) #1 SMP PREEMPT Sat Dec 17 19:22:10 BRST 2016
Apr 13 13:15:01 porteus kernel: [    0.000000] Command line: initrd=initrd.xz changes=/porteus BOOT_IMAGE=vmlinuz 
Apr 13 13:15:01 porteus kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Apr 13 13:15:01 porteus kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Apr 13 13:15:01 porteus kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Apr 13 13:15:01 porteus kernel: [    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Apr 13 13:15:01 porteus kernel: [    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Apr 13 13:15:01 porteus kernel: [    0.000000] x86/fpu: Using 'eager' FPU context switches.
Apr 13 13:15:01 porteus kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x00000000000913ff] usable
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x0000000000091400-0x000000000009ffff] reserved
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000caa24fff] usable
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x00000000caa25000-0x00000000caa68fff] reserved
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x00000000caa69000-0x00000000cadb6fff] usable
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x00000000cadb7000-0x00000000cade6fff] reserved
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x00000000cade7000-0x00000000cafe6fff] ACPI NVS
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x00000000cafe7000-0x00000000caffefff] ACPI data
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x00000000cafff000-0x00000000caffffff] usable
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc1ffff] reserved
Apr 13 13:15:01 porteus kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000012dffffff] usable
Apr 13 13:15:01 porteus kernel: [    0.000000] NX (Execute Disable) protection: active
Apr 13 13:15:01 porteus kernel: [    0.000000] SMBIOS 2.6 present.
Apr 13 13:15:01 porteus kernel: [    0.000000] e820: last_pfn = 0x12e000 max_arch_pfn = 0x400000000
Apr 13 13:15:01 porteus kernel: [    0.000000] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WB  WT  UC- UC  
Apr 13 13:15:01 porteus kernel: [    0.000000] e820: last_pfn = 0xcb000 max_arch_pfn = 0x400000000
Apr 13 13:15:01 porteus kernel: [    0.000000] found SMP MP-table at [mem 0x000f1aa0-0x000f1aaf] mapped at [ffff8800000f1aa0]
Apr 13 13:15:01 porteus kernel: [    0.000000] RAMDISK: [mem 0x1ff54000-0x1fffefff]
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: Early table checksum verification disabled
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: RSDP 0x00000000000FE300 000024 (v02 DELL  )
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: XSDT 0x00000000CAFFDE18 000074 (v01 DELL   CBX3     06222004 MSFT 00010013)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: FACP 0x00000000CAF87D98 0000F4 (v04 DELL   CBX3     06222004 MSFT 00010013)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: DSDT 0x00000000CAF55018 008774 (v02 INT430 SYSFexxx 00001001 INTL 20090903)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: FACS 0x00000000CAFE4E40 000040
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: FACS 0x00000000CAFE4D40 000040
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: APIC 0x00000000CAFFCF18 0000CC (v02 DELL   CBX3     06222004 MSFT 00010013)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: TCPA 0x00000000CAFE5D18 000032 (v02                 00000000      00000000)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: SSDT 0x00000000CAF88A98 0002F9 (v01 DELLTP TPM      00003000 INTL 20090903)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: MCFG 0x00000000CAFE5C98 00003C (v01 DELL   SNDYBRDG 06222004 MSFT 00000097)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: HPET 0x00000000CAFE5C18 000038 (v01 A M I   PCHHPET 06222004 AMI. 00000003)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: BOOT 0x00000000CAFE5B98 000028 (v01 DELL   CBX3     06222004 AMI  00010013)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: SSDT 0x00000000CAF6C018 000804 (v01 PmRef  Cpu0Ist  00003000 INTL 20090903)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: SSDT 0x00000000CAF6B018 000996 (v01 PmRef  CpuPm    00003000 INTL 20090903)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: SLIC 0x00000000CAF75C18 000176 (v03 DELL   CBX3     06222004 MSFT 00010013)
Apr 13 13:15:01 porteus kernel: [    0.000000] No NUMA configuration found
Apr 13 13:15:01 porteus kernel: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000012dffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] NODE_DATA(0) allocated [mem 0x12dff8000-0x12dffbfff]
Apr 13 13:15:01 porteus kernel: [    0.000000] Zone ranges:
Apr 13 13:15:01 porteus kernel: [    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000]   Normal   [mem 0x0000000100000000-0x000000012dffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] Movable zone start for each node
Apr 13 13:15:01 porteus kernel: [    0.000000] Early memory node ranges
Apr 13 13:15:01 porteus kernel: [    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000090fff]
Apr 13 13:15:01 porteus kernel: [    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000]   node   0: [mem 0x0000000020200000-0x000000003fffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000]   node   0: [mem 0x0000000040200000-0x00000000caa24fff]
Apr 13 13:15:01 porteus kernel: [    0.000000]   node   0: [mem 0x00000000caa69000-0x00000000cadb6fff]
Apr 13 13:15:01 porteus kernel: [    0.000000]   node   0: [mem 0x00000000cafff000-0x00000000caffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000]   node   0: [mem 0x0000000100000000-0x000000012dffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000012dffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] Reserving Intel graphics memory at 0x00000000cba00000-0x00000000cf9fffff
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Apr 13 13:15:01 porteus kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Apr 13 13:15:01 porteus kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Apr 13 13:15:01 porteus kernel: [    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
Apr 13 13:15:01 porteus kernel: [    0.000000] smpboot: Allowing 16 CPUs, 12 hotplug CPUs
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0x00091000-0x00091fff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0x00092000-0x0009ffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xcaa25000-0xcaa68fff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xcadb7000-0xcade6fff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xcade7000-0xcafe6fff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xcafe7000-0xcaffefff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xcb000000-0xcb9fffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xcba00000-0xcf9fffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xcfa00000-0xfed1bfff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xffbfffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffc1ffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc20000-0xffffffff]
Apr 13 13:15:01 porteus kernel: [    0.000000] e820: [mem 0xcfa00000-0xfed1bfff] available for PCI devices
Apr 13 13:15:01 porteus kernel: [    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Apr 13 13:15:01 porteus kernel: [    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:16 nr_node_ids:1
Apr 13 13:15:01 porteus kernel: [    0.000000] percpu: Embedded 33 pages/cpu @ffff880129200000 s96216 r8192 d30760 u262144
Apr 13 13:15:01 porteus kernel: [    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1002062
Apr 13 13:15:01 porteus kernel: [    0.000000] Policy zone: Normal
Apr 13 13:15:01 porteus kernel: [    0.000000] Kernel command line: quiet initrd=initrd.xz changes=/porteus BOOT_IMAGE=vmlinuz 
Apr 13 13:15:01 porteus kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Apr 13 13:15:01 porteus kernel: [    0.000000] Memory: 3927168K/4072464K available (5382K kernel code, 644K rwdata, 1460K rodata, 912K init, 540K bss, 145296K reserved, 0K cma-reserved)
Apr 13 13:15:01 porteus kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Apr 13 13:15:01 porteus kernel: [    0.000000] Preemptible hierarchical RCU implementation.
Apr 13 13:15:01 porteus kernel: [    0.000000] ^IBuild-time adjustment of leaf fanout to 64.
Apr 13 13:15:01 porteus kernel: [    0.000000] ^IRCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=16.
Apr 13 13:15:01 porteus kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=16
Apr 13 13:15:01 porteus kernel: [    0.000000] NR_IRQS:4352 nr_irqs:552 16
Apr 13 13:15:01 porteus kernel: [    0.000000] Console: colour VGA+ 80x25
Apr 13 13:15:01 porteus kernel: [    0.000000] console [tty0] enabled
Apr 13 13:15:01 porteus kernel: [    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Apr 13 13:15:01 porteus kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Apr 13 13:15:01 porteus kernel: [    0.000000] tsc: Detected 2394.593 MHz processor
Apr 13 13:15:01 porteus kernel: [    0.000016] Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.18 BogoMIPS (lpj=2394593)
Apr 13 13:15:01 porteus kernel: [    0.000019] pid_max: default: 32768 minimum: 301
Apr 13 13:15:01 porteus kernel: [    0.000024] ACPI: Core revision 20160831
Apr 13 13:15:01 porteus kernel: [    0.007814] ACPI: 4 ACPI AML tables successfully acquired and loaded
Apr 13 13:15:01 porteus kernel: [    0.008121] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Apr 13 13:15:01 porteus kernel: [    0.009211] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Apr 13 13:15:01 porteus kernel: [    0.009673] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
Apr 13 13:15:01 porteus kernel: [    0.009678] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
Apr 13 13:15:01 porteus kernel: [    0.009982] CPU: Physical Processor ID: 0
Apr 13 13:15:01 porteus kernel: [    0.009983] CPU: Processor Core ID: 0
Apr 13 13:15:01 porteus kernel: [    0.009991] mce: CPU supports 7 MCE banks
Apr 13 13:15:01 porteus kernel: [    0.009999] CPU0: Thermal monitoring enabled (TM1)
Apr 13 13:15:01 porteus kernel: [    0.010010] process: using mwait in idle threads
Apr 13 13:15:01 porteus kernel: [    0.010014] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Apr 13 13:15:01 porteus kernel: [    0.010015] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Apr 13 13:15:01 porteus kernel: [    0.010551] Freeing SMP alternatives memory: 16K (ffffffff81987000 - ffffffff8198b000)
Apr 13 13:15:01 porteus kernel: [    0.011678] smpboot: APIC(0) Converting physical 0 to logical package 0
Apr 13 13:15:01 porteus kernel: [    0.011679] smpboot: Max logical packages: 8
Apr 13 13:15:01 porteus kernel: [    0.011684] Switched APIC routing to physical flat.
Apr 13 13:15:01 porteus kernel: [    0.012127] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Apr 13 13:15:01 porteus kernel: [    0.022137] smpboot: CPU0: Intel(R) Core(TM) i5-2430M CPU @ 2.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
Apr 13 13:15:01 porteus kernel: [    0.022141] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
Apr 13 13:15:01 porteus kernel: [    0.022167] core: PEBS disabled due to CPU errata, please upgrade microcode
Apr 13 13:15:01 porteus kernel: [    0.022169] ... version:                3
Apr 13 13:15:01 porteus kernel: [    0.022170] ... bit width:              48
Apr 13 13:15:01 porteus kernel: [    0.022171] ... generic registers:      4
Apr 13 13:15:01 porteus kernel: [    0.022172] ... value mask:             0000ffffffffffff
Apr 13 13:15:01 porteus kernel: [    0.022172] ... max period:             00007fffffffffff
Apr 13 13:15:01 porteus kernel: [    0.022173] ... fixed-purpose events:   3
Apr 13 13:15:01 porteus kernel: [    0.022174] ... event mask:             000000070000000f
Apr 13 13:15:01 porteus kernel: [    0.039329] x86: Booting SMP configuration:
Apr 13 13:15:01 porteus kernel: [    0.039331] .... node  #0, CPUs:        #1  #2  #3
Apr 13 13:15:01 porteus kernel: [    0.239801] x86: Booted up 1 node, 4 CPUs
Apr 13 13:15:01 porteus kernel: [    0.239804] smpboot: Total of 4 processors activated (19176.64 BogoMIPS)
Apr 13 13:15:01 porteus kernel: [    0.243452] devtmpfs: initialized
Apr 13 13:15:01 porteus kernel: [    0.243729] PM: Registering ACPI NVS region [mem 0xcade7000-0xcafe6fff] (2097152 bytes)
Apr 13 13:15:01 porteus kernel: [    0.243864] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Apr 13 13:15:01 porteus kernel: [    0.243906] pinctrl core: initialized pinctrl subsystem
Apr 13 13:15:01 porteus kernel: [    0.244034] NET: Registered protocol family 16
Apr 13 13:15:01 porteus kernel: [    0.248239] cpuidle: using governor ladder
Apr 13 13:15:01 porteus kernel: [    0.254259] cpuidle: using governor menu
Apr 13 13:15:01 porteus kernel: [    0.254357] Simple Boot Flag at 0xf3 set to 0x1
Apr 13 13:15:01 porteus kernel: [    0.254367] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Apr 13 13:15:01 porteus kernel: [    0.254368] ACPI: bus type PCI registered
Apr 13 13:15:01 porteus kernel: [    0.254370] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Apr 13 13:15:01 porteus kernel: [    0.254455] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Apr 13 13:15:01 porteus kernel: [    0.254457] PCI: not using MMCONFIG
Apr 13 13:15:01 porteus kernel: [    0.254458] PCI: Using configuration type 1 for base access
Apr 13 13:15:01 porteus kernel: [    0.254468] dmi type 0xB1 record - unknown flag
Apr 13 13:15:01 porteus kernel: [    0.254546] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
Apr 13 13:15:01 porteus kernel: [    0.261629] ACPI: Added _OSI(Module Device)
Apr 13 13:15:01 porteus kernel: [    0.261630] ACPI: Added _OSI(Processor Device)
Apr 13 13:15:01 porteus kernel: [    0.261631] ACPI: Added _OSI(3.0 _SCP Extensions)
Apr 13 13:15:01 porteus kernel: [    0.261632] ACPI: Added _OSI(Processor Aggregator Device)
Apr 13 13:15:01 porteus kernel: [    0.266468] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Apr 13 13:15:01 porteus kernel: [    0.278166] ACPI: Dynamic OEM Table Load:
Apr 13 13:15:01 porteus kernel: [    0.278175] ACPI: SSDT 0xFFFF880128210000 000727 (v01 PmRef  Cpu0Cst  00003001 INTL 20090903)
Apr 13 13:15:01 porteus kernel: [    0.278554] ACPI: Dynamic OEM Table Load:
Apr 13 13:15:01 porteus kernel: [    0.278559] ACPI: SSDT 0xFFFF8801281D1400 000303 (v01 PmRef  ApIst    00003000 INTL 20090903)
Apr 13 13:15:01 porteus kernel: [    0.278845] ACPI: Dynamic OEM Table Load:
Apr 13 13:15:01 porteus kernel: [    0.278850] ACPI: SSDT 0xFFFF880128218000 000119 (v01 PmRef  ApCst    00003000 INTL 20090903)
Apr 13 13:15:01 porteus kernel: [    0.279690] ACPI : EC: EC started
Apr 13 13:15:01 porteus kernel: [    0.280801] ACPI: \_SB_.PCI0.LPCB.ECDV: Used as first EC
Apr 13 13:15:01 porteus kernel: [    0.280803] ACPI: \_SB_.PCI0.LPCB.ECDV: GPE=0x10, EC_CMD/EC_SC=0x934, EC_DATA=0x930
Apr 13 13:15:01 porteus kernel: [    0.280805] ACPI: \_SB_.PCI0.LPCB.ECDV: Used as boot DSDT EC to handle transactions
Apr 13 13:15:01 porteus kernel: [    0.280806] ACPI: Interpreter enabled
Apr 13 13:15:01 porteus kernel: [    0.280830] ACPI: (supports S0 S3 S4 S5)
Apr 13 13:15:01 porteus kernel: [    0.280831] ACPI: Using IOAPIC for interrupt routing
Apr 13 13:15:01 porteus kernel: [    0.280867] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Apr 13 13:15:01 porteus kernel: [    0.281357] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
Apr 13 13:15:01 porteus kernel: [    0.281367] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Apr 13 13:15:01 porteus kernel: [    0.323314] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
Apr 13 13:15:01 porteus kernel: [    0.323320] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Apr 13 13:15:01 porteus kernel: [    0.323365] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Apr 13 13:15:01 porteus kernel: [    0.323953] PCI host bridge to bus 0000:00
Apr 13 13:15:01 porteus kernel: [    0.323956] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Apr 13 13:15:01 porteus kernel: [    0.323958] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Apr 13 13:15:01 porteus kernel: [    0.323960] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Apr 13 13:15:01 porteus kernel: [    0.323962] pci_bus 0000:00: root bus resource [mem 0xcfa00000-0xfeafffff window]
Apr 13 13:15:01 porteus kernel: [    0.323964] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
Apr 13 13:15:01 porteus kernel: [    0.323966] pci_bus 0000:00: root bus resource [bus 00-3e]
Apr 13 13:15:01 porteus kernel: [    0.324888] pci 0000:00:19.0: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.325124] pci 0000:00:1a.0: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.325348] pci 0000:00:1b.0: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.325604] pci 0000:00:1c.0: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.325856] pci 0000:00:1c.1: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.326105] pci 0000:00:1c.2: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.326360] pci 0000:00:1c.3: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.326568] pci 0000:00:1c.5: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.326796] pci 0000:00:1d.0: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.327504] pci 0000:00:1c.0: PCI bridge to [bus 01]
Apr 13 13:15:01 porteus kernel: [    0.328828] pci 0000:02:00.0: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.331458] pci 0000:00:1c.1: PCI bridge to [bus 02]
Apr 13 13:15:01 porteus kernel: [    0.331587] acpiphp: Slot [1] registered
Apr 13 13:15:01 porteus kernel: [    0.331594] pci 0000:00:1c.2: PCI bridge to [bus 03-08]
Apr 13 13:15:01 porteus kernel: [    0.331691] pci 0000:00:1c.3: PCI bridge to [bus 09]
Apr 13 13:15:01 porteus kernel: [    0.332185] pci 0000:0a:00.0: System wakeup disabled by ACPI
Apr 13 13:15:01 porteus kernel: [    0.335411] pci 0000:00:1c.5: PCI bridge to [bus 0a]
Apr 13 13:15:01 porteus kernel: [    0.337230] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Apr 13 13:15:01 porteus kernel: [    0.337294] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
Apr 13 13:15:01 porteus kernel: [    0.337356] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Apr 13 13:15:01 porteus kernel: [    0.337424] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
Apr 13 13:15:01 porteus kernel: [    0.337486] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 *5 6 7 10 12 14 15)
Apr 13 13:15:01 porteus kernel: [    0.337546] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
Apr 13 13:15:01 porteus kernel: [    0.337607] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 7 10 12 14 15)
Apr 13 13:15:01 porteus kernel: [    0.337667] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
Apr 13 13:15:01 porteus kernel: [    0.349773] ACPI: Enabled 2 GPEs in block 00 to 3F
Apr 13 13:15:01 porteus kernel: [    0.349866] ACPI : EC: event unblocked
Apr 13 13:15:01 porteus kernel: [    0.349873] ACPI: \_SB_.PCI0.LPCB.ECDV: GPE=0x10, EC_CMD/EC_SC=0x934, EC_DATA=0x930
Apr 13 13:15:01 porteus kernel: [    0.349875] ACPI: \_SB_.PCI0.LPCB.ECDV: Used as boot DSDT EC to handle transactions and events
Apr 13 13:15:01 porteus kernel: [    0.350036] vgaarb: setting as boot device: PCI:0000:00:02.0
Apr 13 13:15:01 porteus kernel: [    0.350038] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
Apr 13 13:15:01 porteus kernel: [    0.350041] vgaarb: loaded
Apr 13 13:15:01 porteus kernel: [    0.350042] vgaarb: bridge control possible 0000:00:02.0
Apr 13 13:15:01 porteus kernel: [    0.350155] SCSI subsystem initialized
Apr 13 13:15:01 porteus kernel: [    0.350199] ACPI: bus type USB registered
Apr 13 13:15:01 porteus kernel: [    0.350226] usbcore: registered new interface driver usbfs
Apr 13 13:15:01 porteus kernel: [    0.350238] usbcore: registered new interface driver hub
Apr 13 13:15:01 porteus kernel: [    0.350262] usbcore: registered new device driver usb
Apr 13 13:15:01 porteus kernel: [    0.350282] Linux video capture interface: v2.00
Apr 13 13:15:01 porteus kernel: [    0.350337] Advanced Linux Sound Architecture Driver Initialized.
Apr 13 13:15:01 porteus kernel: [    0.350338] PCI: Using ACPI for IRQ routing
Apr 13 13:15:01 porteus kernel: [    0.352502] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Apr 13 13:15:01 porteus kernel: [    0.352509] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Apr 13 13:15:01 porteus kernel: [    0.354537] clocksource: Switched to clocksource hpet
Apr 13 13:15:01 porteus kernel: [    0.354625] pnp: PnP ACPI init
Apr 13 13:15:01 porteus kernel: [    0.354777] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.354842] system 00:01: [io  0x0680-0x069f] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.354844] system 00:01: [io  0x1000-0x100f] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.354846] system 00:01: [io  0xffff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.354848] system 00:01: [io  0xffff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.354850] system 00:01: [io  0x0400-0x047f] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.354852] system 00:01: [io  0x0500-0x057f] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.354854] system 00:01: [io  0x164e-0x164f] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.356004] system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.356006] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.356008] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.356010] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.356013] system 00:06: [mem 0xf8000000-0xfbffffff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.356015] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.356017] system 00:06: [mem 0xfed90000-0xfed93fff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.356019] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.356021] system 00:06: [mem 0xff000000-0xffffffff] could not be reserved
Apr 13 13:15:01 porteus kernel: [    0.356023] system 00:06: [mem 0xfee00000-0xfeefffff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.358686] system 00:07: [mem 0x20000000-0x201fffff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.358688] system 00:07: [mem 0x40000000-0x401fffff] has been reserved
Apr 13 13:15:01 porteus kernel: [    0.358699] pnp: PnP ACPI: found 8 devices
Apr 13 13:15:01 porteus kernel: [    0.365872] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Apr 13 13:15:01 porteus kernel: [    0.365935] pci 0000:00:1c.0: PCI bridge to [bus 01]
Apr 13 13:15:01 porteus kernel: [    0.365953] pci 0000:00:1c.1: PCI bridge to [bus 02]
Apr 13 13:15:01 porteus kernel: [    0.365960] pci 0000:00:1c.1:   bridge window [mem 0xe2d00000-0xe2dfffff]
Apr 13 13:15:01 porteus kernel: [    0.365972] pci 0000:00:1c.2: PCI bridge to [bus 03-08]
Apr 13 13:15:01 porteus kernel: [    0.365976] pci 0000:00:1c.2:   bridge window [io  0x3000-0x3fff]
Apr 13 13:15:01 porteus kernel: [    0.365983] pci 0000:00:1c.2:   bridge window [mem 0xe2200000-0xe2bfffff]
Apr 13 13:15:01 porteus kernel: [    0.365988] pci 0000:00:1c.2:   bridge window [mem 0xe0a00000-0xe13fffff 64bit pref]
Apr 13 13:15:01 porteus kernel: [    0.365997] pci 0000:00:1c.3: PCI bridge to [bus 09]
Apr 13 13:15:01 porteus kernel: [    0.366000] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
Apr 13 13:15:01 porteus kernel: [    0.366007] pci 0000:00:1c.3:   bridge window [mem 0xe1800000-0xe21fffff]
Apr 13 13:15:01 porteus kernel: [    0.366012] pci 0000:00:1c.3:   bridge window [mem 0xe0000000-0xe09fffff 64bit pref]
Apr 13 13:15:01 porteus kernel: [    0.366021] pci 0000:00:1c.5: PCI bridge to [bus 0a]
Apr 13 13:15:01 porteus kernel: [    0.366027] pci 0000:00:1c.5:   bridge window [mem 0xe2c00000-0xe2cfffff]
Apr 13 13:15:01 porteus kernel: [    0.366155] NET: Registered protocol family 2
Apr 13 13:15:01 porteus kernel: [    0.366382] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
Apr 13 13:15:01 porteus kernel: [    0.366472] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
Apr 13 13:15:01 porteus kernel: [    0.366568] TCP: Hash tables configured (established 32768 bind 32768)
Apr 13 13:15:01 porteus kernel: [    0.366596] UDP hash table entries: 2048 (order: 4, 65536 bytes)
Apr 13 13:15:01 porteus kernel: [    0.366615] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
Apr 13 13:15:01 porteus kernel: [    0.366693] NET: Registered protocol family 1
Apr 13 13:15:01 porteus kernel: [    0.366708] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Apr 13 13:15:01 porteus kernel: [    0.367433] Unpacking initramfs...
Apr 13 13:15:01 porteus kernel: [    0.472954] Freeing initrd memory: 684K (ffff88001ff54000 - ffff88001ffff000)
Apr 13 13:15:01 porteus kernel: [    0.472957] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Apr 13 13:15:01 porteus kernel: [    0.472960] software IO TLB [mem 0xc6a25000-0xcaa25000] (64MB) mapped at [ffff8800c6a25000-ffff8800caa24fff]
Apr 13 13:15:01 porteus kernel: [    0.473673] futex hash table entries: 4096 (order: 6, 262144 bytes)
Apr 13 13:15:01 porteus kernel: [    0.473997] workingset: timestamp_bits=56 max_order=20 bucket_order=0
Apr 13 13:15:01 porteus kernel: [    0.475972] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Apr 13 13:15:01 porteus kernel: [    0.476043] fuse init (API version 7.26)
Apr 13 13:15:01 porteus kernel: [    0.476135] SGI XFS with ACLs, security attributes, realtime, no debug enabled
Apr 13 13:15:01 porteus kernel: [    0.476685] aufs 4.x-rcN-20161219
Apr 13 13:15:01 porteus kernel: [    0.477573] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Apr 13 13:15:01 porteus kernel: [    0.477575] io scheduler noop registered
Apr 13 13:15:01 porteus kernel: [    0.477576] io scheduler deadline registered (default)
Apr 13 13:15:01 porteus kernel: [    0.478569] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Apr 13 13:15:01 porteus kernel: [    0.478575] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Apr 13 13:15:01 porteus kernel: [    0.479200] ACPI: AC Adapter [AC] (on-line)
Apr 13 13:15:01 porteus kernel: [    0.479601] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Apr 13 13:15:01 porteus kernel: [    0.479910] ACPI: Lid Switch [LID]
Apr 13 13:15:01 porteus kernel: [    0.479966] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Apr 13 13:15:01 porteus kernel: [    0.479969] ACPI: Power Button [PBTN]
Apr 13 13:15:01 porteus kernel: [    0.480020] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
Apr 13 13:15:01 porteus kernel: [    0.480022] ACPI: Sleep Button [SBTN]
Apr 13 13:15:01 porteus kernel: [    0.480073] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
Apr 13 13:15:01 porteus kernel: [    0.480075] ACPI: Power Button [PWRF]
Apr 13 13:15:01 porteus kernel: [    0.481244] thermal LNXTHERM:00: registered as thermal_zone0
Apr 13 13:15:01 porteus kernel: [    0.481246] ACPI: Thermal Zone [THM] (25 C)
Apr 13 13:15:01 porteus kernel: [    0.482008] Linux agpgart interface v0.103
Apr 13 13:15:01 porteus kernel: [    0.482021] [drm] Initialized
Apr 13 13:15:01 porteus kernel: [    0.484229] loop: module loaded
Apr 13 13:15:01 porteus kernel: [    0.484290] usbcore: registered new interface driver rtsx_usb
Apr 13 13:15:01 porteus kernel: [    0.484686] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
Apr 13 13:15:01 porteus kernel: [    0.494506] ACPI: Battery Slot [BAT0] (battery present)
Apr 13 13:15:01 porteus kernel: [    0.494793] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3b impl RAID mode
Apr 13 13:15:01 porteus kernel: [    0.494797] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst 
Apr 13 13:15:01 porteus kernel: [    0.495381] ACPI: Battery Slot [BAT1] (battery absent)
Apr 13 13:15:01 porteus kernel: [    0.496227] ACPI: Battery Slot [BAT2] (battery absent)
Apr 13 13:15:01 porteus kernel: [    0.507457] scsi host0: ahci
Apr 13 13:15:01 porteus kernel: [    0.507791] scsi host1: ahci
Apr 13 13:15:01 porteus kernel: [    0.508077] scsi host2: ahci
Apr 13 13:15:01 porteus kernel: [    0.508281] scsi host3: ahci
Apr 13 13:15:01 porteus kernel: [    0.508475] scsi host4: ahci
Apr 13 13:15:01 porteus kernel: [    0.508627] scsi host5: ahci
Apr 13 13:15:01 porteus kernel: [    0.508689] ata1: SATA max UDMA/133 abar m2048@0xe2e40000 port 0xe2e40100 irq 24
Apr 13 13:15:01 porteus kernel: [    0.508692] ata2: SATA max UDMA/133 abar m2048@0xe2e40000 port 0xe2e40180 irq 24
Apr 13 13:15:01 porteus kernel: [    0.508693] ata3: DUMMY
Apr 13 13:15:01 porteus kernel: [    0.508696] ata4: SATA max UDMA/133 abar m2048@0xe2e40000 port 0xe2e40280 irq 24
Apr 13 13:15:01 porteus kernel: [    0.508698] ata5: SATA max UDMA/133 abar m2048@0xe2e40000 port 0xe2e40300 irq 24
Apr 13 13:15:01 porteus kernel: [    0.508701] ata6: SATA max UDMA/133 abar m2048@0xe2e40000 port 0xe2e40380 irq 24
Apr 13 13:15:01 porteus kernel: [    0.509425] Fusion MPT base driver 3.04.20
Apr 13 13:15:01 porteus kernel: [    0.509426] Copyright (c) 1999-2008 LSI Corporation
Apr 13 13:15:01 porteus kernel: [    0.509432] Fusion MPT SPI Host driver 3.04.20
Apr 13 13:15:01 porteus kernel: [    0.509448] Fusion MPT SAS Host driver 3.04.20
Apr 13 13:15:01 porteus kernel: [    0.509474] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Apr 13 13:15:01 porteus kernel: [    0.509475] ehci-pci: EHCI PCI platform driver
Apr 13 13:15:01 porteus kernel: [    0.509664] ehci-pci 0000:00:1a.0: EHCI Host Controller
Apr 13 13:15:01 porteus kernel: [    0.509671] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Apr 13 13:15:01 porteus kernel: [    0.509686] ehci-pci 0000:00:1a.0: debug port 2
Apr 13 13:15:01 porteus kernel: [    0.513588] ehci-pci 0000:00:1a.0: irq 16, io mem 0xe2e70000
Apr 13 13:15:01 porteus kernel: [    0.520551] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Apr 13 13:15:01 porteus kernel: [    0.520587] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Apr 13 13:15:01 porteus kernel: [    0.520589] usb usb1: New USB device strings: Mfr=3, Prod


Create a new paste based on this one


Comments: