Sie sind nicht angemeldet.

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

  • »Tarawa« ist der Autor dieses Themas

Beiträge: 94

Registrierungsdatum: 01.06.2012

Derivat: Ubuntu

Architektur: 64-Bit PC

Desktop: Unity

  • Nachricht senden

1

06.12.2015, 20:17

Kann nich nicht mehr einlogen in Ubuntu 14.04

Hey Liebes Ubuntu Team,Ich hab folgendes Porblem und zwar kann ich mich nicht mehr einlogen nachdem ich versucht hatte,die Unity Oberfläche mit über die Cli zu starten was aber dazu geführt hat das ich mich mit meinen alten Account nicht mehr

einlogen konnte.Ich hab mich dann via ssh auf meinen Rechner aufgeschaltet dort ging der alte account ich hab dann einen neuen user schnell erstellt was ging ob ich überhaupt noch auf den Desktop komme was mir auch gelang dann hab ich versucht den

alten account zu löschen damit ich später noch mal neu erstellen leider ging das nicht es würden noch prozesse laufen.Ich füge noch die auth.log file ein

Sorry im vorraus falls noch wichtige infos fehlen sollten hatte bisher noch nie so einen Problem.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
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
Dec  3 00:37:07 Xbmc gnome-keyring-daemon[1275]: keyring alias directory: /home/sven/.local/share/keyrings
Dec  3 00:43:03 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c1 (system bus name :1.48, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  3 00:43:03 Xbmc systemd-logind[823]: System is powering down.
Dec  3 16:36:28 Xbmc systemd-logind[830]: New seat seat0.
Dec  3 16:36:28 Xbmc systemd-logind[830]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  3 16:36:28 Xbmc systemd-logind[830]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  3 16:36:28 Xbmc systemd-logind[830]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  3 16:36:30 Xbmc sshd[1009]: Server listening on 0.0.0.0 port 22.
Dec  3 16:36:30 Xbmc sshd[1009]: Server listening on :: port 22.
Dec  3 16:36:31 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  3 16:36:31 Xbmc systemd-logind[830]: New session c1 of user sven.
Dec  3 16:36:31 Xbmc systemd-logind[830]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  3 16:36:32 Xbmc gnome-keyring-daemon[1280]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  3 16:36:32 Xbmc gnome-keyring-daemon[1280]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  3 16:36:34 Xbmc gnome-keyring-daemon[1280]: The GPG agent was already initialized
Dec  3 16:36:34 Xbmc gnome-keyring-daemon[1280]: The Secret Service was already initialized
Dec  3 16:36:34 Xbmc gnome-keyring-daemon[1280]: The SSH agent was already initialized
Dec  3 16:36:34 Xbmc gnome-keyring-daemon[1280]: The PKCS#11 component was already initialized
Dec  3 16:36:36 Xbmc dbus[723]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.24" (uid=0 pid=1410 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=839 comm="NetworkManager ")
Dec  3 16:36:37 Xbmc su[1856]: Successful su for sven by root
Dec  3 16:36:37 Xbmc su[1856]: + ??? root:sven
Dec  3 16:36:37 Xbmc su[1856]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  3 16:36:37 Xbmc systemd-logind[830]: New session c2 of user sven.
Dec  3 16:36:37 Xbmc su[1856]: pam_unix(su:session): session closed for user sven
Dec  3 16:36:37 Xbmc systemd-logind[830]: Removed session c2.
Dec  3 16:36:37 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.48 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  3 16:41:58 Xbmc sudo: pam_unix(sudo:auth): authentication failure; logname=sven uid=1000 euid=0 tty=/dev/pts/0 ruser=sven rhost=  user=sven
Dec  3 16:42:10 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt update
Dec  3 16:42:10 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 16:42:18 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 16:42:18 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt dist-upgrade
Dec  3 16:42:18 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 16:42:52 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 16:44:00 Xbmc gnome-keyring-daemon[1280]: keyring alias directory: /home/sven/.local/share/keyrings
Dec  3 16:58:44 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.48 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  3 16:58:44 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c1 (system bus name :1.48, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  3 16:58:44 Xbmc systemd-logind[830]: System is powering down.
Dec  3 16:58:44 Xbmc systemd-logind[830]: Operation finished.
Dec  3 17:13:54 Xbmc systemd-logind[823]: New seat seat0.
Dec  3 17:13:54 Xbmc systemd-logind[823]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  3 17:13:54 Xbmc systemd-logind[823]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  3 17:13:54 Xbmc systemd-logind[823]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  3 17:13:56 Xbmc sshd[993]: Server listening on 0.0.0.0 port 22.
Dec  3 17:13:56 Xbmc sshd[993]: Server listening on :: port 22.
Dec  3 17:13:57 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  3 17:13:57 Xbmc systemd-logind[823]: New session c1 of user sven.
Dec  3 17:13:57 Xbmc systemd-logind[823]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  3 17:13:58 Xbmc gnome-keyring-daemon[1274]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  3 17:13:58 Xbmc gnome-keyring-daemon[1274]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  3 17:14:00 Xbmc gnome-keyring-daemon[1274]: The GPG agent was already initialized
Dec  3 17:14:00 Xbmc gnome-keyring-daemon[1274]: The Secret Service was already initialized
Dec  3 17:14:00 Xbmc gnome-keyring-daemon[1274]: The SSH agent was already initialized
Dec  3 17:14:00 Xbmc gnome-keyring-daemon[1274]: The PKCS#11 component was already initialized
Dec  3 17:14:02 Xbmc dbus[742]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.32" (uid=0 pid=1424 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=839 comm="NetworkManager ")
Dec  3 17:14:02 Xbmc su[1864]: Successful su for sven by root
Dec  3 17:14:02 Xbmc su[1864]: + ??? root:sven
Dec  3 17:14:02 Xbmc su[1864]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  3 17:14:02 Xbmc systemd-logind[823]: New session c2 of user sven.
Dec  3 17:14:02 Xbmc su[1864]: pam_unix(su:session): session closed for user sven
Dec  3 17:14:02 Xbmc systemd-logind[823]: Removed session c2.
Dec  3 17:14:02 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.50 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  3 17:17:01 Xbmc CRON[2549]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  3 17:17:01 Xbmc CRON[2549]: pam_unix(cron:session): session closed for user root
Dec  3 17:27:39 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt purge firefox
Dec  3 17:27:39 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:27:52 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:28:12 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get install firefox
Dec  3 17:28:12 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:28:35 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:28:58 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/sbin/reboot
Dec  3 17:28:58 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:28:58 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:29:31 Xbmc systemd-logind[824]: New seat seat0.
Dec  3 17:29:31 Xbmc systemd-logind[824]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  3 17:29:31 Xbmc systemd-logind[824]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  3 17:29:31 Xbmc systemd-logind[824]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  3 17:29:33 Xbmc sshd[992]: Server listening on 0.0.0.0 port 22.
Dec  3 17:29:33 Xbmc sshd[992]: Server listening on :: port 22.
Dec  3 17:29:34 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  3 17:29:34 Xbmc systemd-logind[824]: New session c1 of user sven.
Dec  3 17:29:34 Xbmc systemd-logind[824]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  3 17:29:34 Xbmc gnome-keyring-daemon[1273]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  3 17:29:34 Xbmc gnome-keyring-daemon[1273]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  3 17:29:37 Xbmc gnome-keyring-daemon[1273]: The GPG agent was already initialized
Dec  3 17:29:37 Xbmc gnome-keyring-daemon[1273]: The Secret Service was already initialized
Dec  3 17:29:37 Xbmc gnome-keyring-daemon[1273]: The SSH agent was already initialized
Dec  3 17:29:37 Xbmc gnome-keyring-daemon[1273]: The PKCS#11 component was already initialized
Dec  3 17:29:39 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.43 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  3 17:29:39 Xbmc su[1811]: Successful su for sven by root
Dec  3 17:29:39 Xbmc su[1811]: + ??? root:sven
Dec  3 17:29:39 Xbmc su[1811]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  3 17:29:39 Xbmc systemd-logind[824]: New session c2 of user sven.
Dec  3 17:29:39 Xbmc su[1811]: pam_unix(su:session): session closed for user sven
Dec  3 17:29:39 Xbmc systemd-logind[824]: Removed session c2.
Dec  3 17:29:40 Xbmc dbus[741]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.40" (uid=0 pid=1674 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=900 comm="NetworkManager ")
Dec  3 17:31:07 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get install firefox firefox-locale-de
Dec  3 17:31:07 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:31:07 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:31:18 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/firefox
Dec  3 17:31:18 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:32:13 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:34:16 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get -s remove --purge firefox*
Dec  3 17:34:16 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:34:17 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:35:00 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt purge firefox
Dec  3 17:35:00 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:35:11 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:35:26 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:35:26 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:35:37 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:37:01 Xbmc gnome-keyring-daemon[1273]: keyring alias directory: /home/sven/.local/share/keyrings
Dec  3 17:38:30 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven/.cache ; USER=root ; COMMAND=/bin/rm mozilla/firefox/cwfac7xu.default/cache2/entries/F7E5A5D631E439DC6B481899E1F00D4676A53640
Dec  3 17:38:30 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:38:30 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:39:10 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:39:10 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:39:10 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:41:52 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven/.cache ; USER=root ; COMMAND=/bin/rm -r mozilla/
Dec  3 17:41:52 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:41:52 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:42:35 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:42:35 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:42:35 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:43:36 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/etc ; USER=root ; COMMAND=/bin/rm -r firefox/
Dec  3 17:43:36 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:43:36 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:44:35 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/bin/rm -r .mozilla/
Dec  3 17:44:35 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:44:35 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:44:43 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:44:43 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:44:43 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:45:46 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get clean
Dec  3 17:45:46 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:45:46 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:45:51 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:45:51 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:45:51 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:48:33 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/var/lib/dpkg/info ; USER=root ; COMMAND=/bin/rm firefox-locale-de.list firefox-locale-de.md5sums
Dec  3 17:48:33 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:48:33 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:48:46 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/var/lib/dpkg/info ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:48:46 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:48:46 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:52:03 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/var/lib/dpkg/info ; USER=root ; COMMAND=/bin/rm -r firefox-locale-de.preinst firefox-locale-en.preinst firefox-locale-en.md5sums firefox-locale-en.list
Dec  3 17:52:03 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:52:03 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:52:12 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/var/lib/dpkg/info ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:52:12 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:52:12 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:53:04 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:53:04 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:53:04 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:53:34 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:53:34 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:53:34 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:54:45 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/usr/lib ; USER=root ; COMMAND=/bin/rm -r firefox/ firefox-addons/
Dec  3 17:54:45 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:54:45 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 17:54:58 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 17:54:58 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 17:54:58 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:03:09 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/usr/share/app-install/desktop ; USER=root ; COMMAND=/bin/rm -r firefox:fireox.desktop
Dec  3 18:03:09 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:03:09 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:03:46 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/usr/share/app-install/desktop ; USER=root ; COMMAND=/bin/rm -r firefox-launchpad-plugin.desktop
Dec  3 18:03:46 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:03:46 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:03:57 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/usr/share/app-install/desktop ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 18:03:57 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:03:57 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:04:42 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/usr/share/app-install/desktop ; USER=root ; COMMAND=/bin/rm -r firefox:firefox.desktop
Dec  3 18:04:42 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:04:42 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:04:48 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/usr/share/app-install/desktop ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 18:04:48 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:04:48 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:05:18 Xbmc sudo:     sven : TTY=pts/8 ; PWD=/home/sven ; USER=root ; COMMAND=/sbin/reboot
Dec  3 18:05:18 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:05:18 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:05:51 Xbmc systemd-logind[825]: New seat seat0.
Dec  3 18:05:51 Xbmc systemd-logind[825]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  3 18:05:51 Xbmc systemd-logind[825]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  3 18:05:51 Xbmc systemd-logind[825]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  3 18:05:52 Xbmc sshd[1004]: Server listening on 0.0.0.0 port 22.
Dec  3 18:05:52 Xbmc sshd[1004]: Server listening on :: port 22.
Dec  3 18:05:54 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  3 18:05:54 Xbmc systemd-logind[825]: New session c1 of user sven.
Dec  3 18:05:54 Xbmc systemd-logind[825]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  3 18:05:55 Xbmc gnome-keyring-daemon[1276]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  3 18:05:55 Xbmc gnome-keyring-daemon[1276]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  3 18:05:57 Xbmc gnome-keyring-daemon[1276]: The GPG agent was already initialized
Dec  3 18:05:57 Xbmc gnome-keyring-daemon[1276]: The Secret Service was already initialized
Dec  3 18:05:57 Xbmc gnome-keyring-daemon[1276]: The SSH agent was already initialized
Dec  3 18:05:57 Xbmc gnome-keyring-daemon[1276]: The PKCS#11 component was already initialized
Dec  3 18:05:59 Xbmc dbus[694]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.29" (uid=0 pid=1413 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=839 comm="NetworkManager ")
Dec  3 18:05:59 Xbmc su[1856]: Successful su for sven by root
Dec  3 18:05:59 Xbmc su[1856]: + ??? root:sven
Dec  3 18:05:59 Xbmc su[1856]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  3 18:05:59 Xbmc systemd-logind[825]: New session c2 of user sven.
Dec  3 18:05:59 Xbmc su[1856]: pam_unix(su:session): session closed for user sven
Dec  3 18:05:59 Xbmc systemd-logind[825]: Removed session c2.
Dec  3 18:05:59 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.50 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  3 18:07:45 Xbmc gnome-keyring-daemon[1276]: keyring alias directory: /home/sven/.local/share/keyrings
Dec  3 18:09:33 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get --no-install-recommends firefox
Dec  3 18:09:33 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:09:33 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:10:11 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get --no-install-recommends install pgk
Dec  3 18:10:11 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:10:14 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:11:32 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get install firefox
Dec  3 18:11:32 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:12:00 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:12:49 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get install firefox-locale-de
Dec  3 18:12:49 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:12:50 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:13:17 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get install firefox-globalmenu firefox-launchpad-plugin
Dec  3 18:13:17 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:13:20 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:13:31 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/sbin/reboot
Dec  3 18:13:31 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:13:31 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:14:03 Xbmc systemd-logind[825]: New seat seat0.
Dec  3 18:14:03 Xbmc systemd-logind[825]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  3 18:14:03 Xbmc systemd-logind[825]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  3 18:14:03 Xbmc systemd-logind[825]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  3 18:14:04 Xbmc sshd[993]: Server listening on 0.0.0.0 port 22.
Dec  3 18:14:04 Xbmc sshd[993]: Server listening on :: port 22.
Dec  3 18:14:06 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  3 18:14:06 Xbmc systemd-logind[825]: New session c1 of user sven.
Dec  3 18:14:06 Xbmc systemd-logind[825]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  3 18:14:06 Xbmc gnome-keyring-daemon[1272]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  3 18:14:06 Xbmc gnome-keyring-daemon[1272]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  3 18:14:08 Xbmc gnome-keyring-daemon[1272]: The GPG agent was already initialized
Dec  3 18:14:08 Xbmc gnome-keyring-daemon[1272]: The Secret Service was already initialized
Dec  3 18:14:08 Xbmc gnome-keyring-daemon[1272]: The SSH agent was already initialized
Dec  3 18:14:08 Xbmc gnome-keyring-daemon[1272]: The PKCS#11 component was already initialized
Dec  3 18:14:11 Xbmc dbus[742]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.34" (uid=0 pid=1494 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=839 comm="NetworkManager ")
Dec  3 18:14:11 Xbmc su[1912]: Successful su for sven by root
Dec  3 18:14:11 Xbmc su[1912]: + ??? root:sven
Dec  3 18:14:11 Xbmc su[1912]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  3 18:14:11 Xbmc systemd-logind[825]: New session c2 of user sven.
Dec  3 18:14:11 Xbmc su[1912]: pam_unix(su:session): session closed for user sven
Dec  3 18:14:11 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.49 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  3 18:14:11 Xbmc systemd-logind[825]: Removed session c2.
Dec  3 18:15:21 Xbmc sudo:     sven : TTY=unknown ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/firefox
Dec  3 18:15:21 Xbmc sudo: pam_unix(sudo:session): session opened for user root by (uid=0)
Dec  3 18:15:55 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:17:00 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get install firefox-locale-de
Dec  3 18:17:00 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:17:01 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:17:01 Xbmc CRON[2858]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  3 18:17:01 Xbmc CRON[2858]: pam_unix(cron:session): session closed for user root
Dec  3 18:20:48 Xbmc gnome-keyring-daemon[1272]: keyring alias directory: /home/sven/.local/share/keyrings
Dec  3 18:22:26 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt install firefox language-pack-de-base
Dec  3 18:22:26 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:22:26 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:23:22 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get install --no-install-recommends firefox
Dec  3 18:23:22 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:23:22 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:24:21 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  3 18:24:21 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 18:24:31 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 18:25:46 Xbmc polkitd(authority=local): Operator of unix-session:c1 successfully authenticated as unix-user:sven to gain ONE-SHOT authorization for action com.ubuntu.pkexec.synaptic for unix-process:3349:71560 [/bin/sh /usr/bin/synaptic-pkexec] (owned by unix-user:sven)
Dec  3 18:25:46 Xbmc pkexec: pam_unix(polkit-1:session): session opened for user root by (uid=1000)
Dec  3 18:25:46 Xbmc pkexec[3350]: sven: Executing command [USER=root] [TTY=unknown] [CWD=/home/sven] [COMMAND=/usr/sbin/synaptic]
Dec  3 18:31:12 Xbmc polkitd(authority=local): Operator of unix-session:c1 successfully authenticated as unix-user:sven to gain TEMPORARY authorization for action com.ubuntu-tweak.daemon.clean for system-bus-name::1.69 [/usr/bin/python /usr/bin/ubuntu-tweak] (owned by unix-user:sven)
Dec  3 18:58:19 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c1 (system bus name :1.49, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  3 18:58:19 Xbmc systemd-logind[825]: System is powering down.
Dec  3 21:45:18 Xbmc systemd-logind[824]: New seat seat0.
Dec  3 21:45:18 Xbmc systemd-logind[824]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  3 21:45:18 Xbmc systemd-logind[824]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  3 21:45:18 Xbmc systemd-logind[824]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  3 21:45:20 Xbmc sshd[993]: Server listening on 0.0.0.0 port 22.
Dec  3 21:45:20 Xbmc sshd[993]: Server listening on :: port 22.
Dec  3 21:45:21 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  3 21:45:21 Xbmc systemd-logind[824]: New session c1 of user sven.
Dec  3 21:45:21 Xbmc systemd-logind[824]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  3 21:45:22 Xbmc gnome-keyring-daemon[1274]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  3 21:45:22 Xbmc gnome-keyring-daemon[1274]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  3 21:45:24 Xbmc gnome-keyring-daemon[1274]: The GPG agent was already initialized
Dec  3 21:45:24 Xbmc gnome-keyring-daemon[1274]: The Secret Service was already initialized
Dec  3 21:45:24 Xbmc gnome-keyring-daemon[1274]: The SSH agent was already initialized
Dec  3 21:45:24 Xbmc gnome-keyring-daemon[1274]: The PKCS#11 component was already initialized
Dec  3 21:45:27 Xbmc dbus[693]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.35" (uid=0 pid=1502 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=838 comm="NetworkManager ")
Dec  3 21:45:27 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.46 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  3 21:45:27 Xbmc su[1909]: Successful su for sven by root
Dec  3 21:45:27 Xbmc su[1909]: + ??? root:sven
Dec  3 21:45:27 Xbmc su[1909]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  3 21:45:27 Xbmc systemd-logind[824]: New session c2 of user sven.
Dec  3 21:45:27 Xbmc su[1909]: pam_unix(su:session): session closed for user sven
Dec  3 21:45:27 Xbmc systemd-logind[824]: Removed session c2.
Dec  3 21:47:06 Xbmc gnome-keyring-daemon[1274]: keyring alias directory: /home/sven/.local/share/keyrings
Dec  3 21:49:39 Xbmc polkitd(authority=local): Operator of unix-session:c1 successfully authenticated as unix-user:sven to gain ONE-SHOT authorization for action com.ubuntu.pkexec.synaptic for unix-process:2751:27274 [/bin/sh /usr/bin/synaptic-pkexec] (owned by unix-user:sven)
Dec  3 21:49:39 Xbmc pkexec: pam_unix(polkit-1:session): session opened for user root by (uid=1000)
Dec  3 21:49:39 Xbmc pkexec[2754]: sven: Executing command [USER=root] [TTY=unknown] [CWD=/home/sven] [COMMAND=/usr/sbin/synaptic]
Dec  3 22:17:01 Xbmc CRON[3383]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  3 22:17:01 Xbmc CRON[3383]: pam_unix(cron:session): session closed for user root
Dec  3 22:21:52 Xbmc sshd[3424]: Connection closed by 192.168.178.71 [preauth]
Dec  3 22:48:52 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/dpkg -i plexmediaserver_0.9.12.19.1537-f38ac80_amd64.deb
Dec  3 22:48:52 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:49:04 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:49:31 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/apt-get install firefox-locale-en
Dec  3 22:49:31 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:49:32 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:49:41 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/dpkg -i plexmediaserver_0.9.12.19.1537-f38ac80_amd64.deb
Dec  3 22:49:41 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:49:47 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:51:20 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/apt-get install firefox-locale-en
Dec  3 22:51:20 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:51:21 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:51:30 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/dpkg -i plexmediaserver_0.9.12.19.1537-f38ac80_amd64.deb
Dec  3 22:51:30 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:51:36 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:52:42 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/apt-get update
Dec  3 22:52:42 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:52:57 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:53:42 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/apt-get -f upgrade
Dec  3 22:53:42 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:53:42 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:55:44 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/apt-get install -f
Dec  3 22:55:44 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:55:45 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:57:00 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/dpkg --configure -a
Dec  3 22:57:00 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:57:00 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:57:06 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/dpkg -i plexmediaserver_0.9.12.19.1537-f38ac80_amd64.deb
Dec  3 22:57:06 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:57:13 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:58:00 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/apt-get -s install --reinstall firefox-locale-en
Dec  3 22:58:00 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:58:01 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:58:13 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/apt-get install --reinstall firefox-locale-en
Dec  3 22:58:13 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:58:16 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:58:23 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/dpkg -i plexmediaserver_0.9.12.19.1537-f38ac80_amd64.deb
Dec  3 22:58:23 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:58:29 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 22:58:36 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven/Downloads ; USER=root ; COMMAND=/usr/bin/dpkg -i plexmediaserver_0.9.12.19.1537-f38ac80_amd64.deb
Dec  3 22:58:36 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  3 22:58:42 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  3 23:00:18 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c1 (system bus name :1.46, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  3 23:00:18 Xbmc systemd-logind[824]: System is powering down.
Dec  3 23:00:18 Xbmc systemd-logind[824]: Operation finished.
Dec  4 20:23:18 Xbmc systemd-logind[665]: New seat seat0.
Dec  4 20:23:18 Xbmc systemd-logind[665]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  4 20:23:18 Xbmc systemd-logind[665]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  4 20:23:18 Xbmc systemd-logind[665]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  4 20:23:28 Xbmc sshd[1112]: Server listening on 0.0.0.0 port 22.
Dec  4 20:23:28 Xbmc sshd[1112]: Server listening on :: port 22.
Dec  4 20:23:32 Xbmc dbus[557]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.12" (uid=0 pid=1216 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=889 comm="NetworkManager ")
Dec  4 20:23:34 Xbmc sshd[1203]: Accepted password for sven from 192.168.178.20 port 43436 ssh2
Dec  4 20:23:34 Xbmc sshd[1203]: pam_unix(sshd:session): session opened for user sven by (uid=0)
Dec  4 20:23:34 Xbmc systemd-logind[665]: New session 1 of user sven.
Dec  4 20:23:35 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  4 20:23:35 Xbmc systemd-logind[665]: New session c1 of user sven.
Dec  4 20:23:35 Xbmc systemd-logind[665]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  4 20:23:36 Xbmc su[1508]: Successful su for sven by root
Dec  4 20:23:36 Xbmc su[1508]: + ??? root:sven
Dec  4 20:23:36 Xbmc su[1508]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  4 20:23:36 Xbmc systemd-logind[665]: New session c2 of user sven.
Dec  4 20:23:37 Xbmc su[1508]: pam_unix(su:session): session closed for user sven
Dec  4 20:23:37 Xbmc systemd-logind[665]: Removed session c2.
Dec  4 20:23:46 Xbmc gnome-keyring-daemon[1739]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  4 20:23:46 Xbmc gnome-keyring-daemon[1739]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  4 20:23:55 Xbmc gnome-keyring-daemon[1739]: The GPG agent was already initialized
Dec  4 20:23:55 Xbmc gnome-keyring-daemon[1739]: The Secret Service was already initialized
Dec  4 20:23:55 Xbmc gnome-keyring-daemon[1739]: The SSH agent was already initialized
Dec  4 20:23:55 Xbmc gnome-keyring-daemon[1739]: The PKCS#11 component was already initialized
Dec  4 20:24:03 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.55 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  4 20:25:23 Xbmc sshd[1445]: Received disconnect from 192.168.178.20: 11: disconnected by user
Dec  4 20:25:23 Xbmc sshd[1203]: pam_unix(sshd:session): session closed for user sven
Dec  4 20:25:23 Xbmc systemd-logind[665]: Removed session 1.
Dec  4 20:25:33 Xbmc sshd[2539]: Accepted password for sven from 192.168.178.20 port 43438 ssh2
Dec  4 20:25:33 Xbmc sshd[2539]: pam_unix(sshd:session): session opened for user sven by (uid=0)
Dec  4 20:25:33 Xbmc systemd-logind[665]: New session 2 of user sven.
Dec  4 20:26:06 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get update
Dec  4 20:26:06 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  4 20:26:15 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  4 20:26:15 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get dist-upgrade
Dec  4 20:26:15 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  4 20:26:16 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  4 20:26:28 Xbmc sudo:     sven : TTY=pts/1 ; PWD=/home/sven ; USER=root ; COMMAND=/sbin/poweroff
Dec  4 20:26:28 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  4 20:26:28 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  4 21:50:48 Xbmc systemd-logind[795]: New seat seat0.
Dec  4 21:50:48 Xbmc systemd-logind[795]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  4 21:50:48 Xbmc systemd-logind[795]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  4 21:50:48 Xbmc systemd-logind[795]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  4 21:50:50 Xbmc sshd[1039]: Server listening on 0.0.0.0 port 22.
Dec  4 21:50:50 Xbmc sshd[1039]: Server listening on :: port 22.
Dec  4 21:50:51 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  4 21:50:51 Xbmc systemd-logind[795]: New session c1 of user sven.
Dec  4 21:50:51 Xbmc systemd-logind[795]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  4 21:50:51 Xbmc gnome-keyring-daemon[1312]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  4 21:50:51 Xbmc gnome-keyring-daemon[1312]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  4 21:50:54 Xbmc gnome-keyring-daemon[1312]: The GPG agent was already initialized
Dec  4 21:50:54 Xbmc gnome-keyring-daemon[1312]: The Secret Service was already initialized
Dec  4 21:50:54 Xbmc gnome-keyring-daemon[1312]: The SSH agent was already initialized
Dec  4 21:50:54 Xbmc gnome-keyring-daemon[1312]: The PKCS#11 component was already initialized
Dec  4 21:50:56 Xbmc dbus[722]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.29" (uid=0 pid=1462 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=879 comm="NetworkManager ")
Dec  4 21:50:56 Xbmc su[1931]: Successful su for sven by root
Dec  4 21:50:56 Xbmc su[1931]: + ??? root:sven
Dec  4 21:50:56 Xbmc su[1931]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  4 21:50:56 Xbmc systemd-logind[795]: New session c2 of user sven.
Dec  4 21:50:56 Xbmc su[1931]: pam_unix(su:session): session closed for user sven
Dec  4 21:50:56 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.48 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  4 21:50:57 Xbmc systemd-logind[795]: Removed session c2.
Dec  4 22:04:19 Xbmc gnome-keyring-daemon[1312]: keyring alias directory: /home/sven/.local/share/keyrings
Dec  4 22:17:01 Xbmc CRON[3328]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  4 22:17:01 Xbmc CRON[3328]: pam_unix(cron:session): session closed for user root
Dec  4 22:19:03 Xbmc sudo:     sven : TTY=pts/4 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/dpkg --list
Dec  4 22:19:03 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  4 22:19:03 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  4 22:19:19 Xbmc sudo:     sven : TTY=pts/4 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/dpkg --list
Dec  4 22:19:19 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  4 22:19:19 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  4 22:19:42 Xbmc sudo:     sven : TTY=pts/4 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/dpkg --list
Dec  4 22:19:42 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  4 22:19:42 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  4 22:19:58 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c1 (system bus name :1.48, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  4 22:19:58 Xbmc systemd-logind[795]: System is powering down.
Dec  4 22:19:58 Xbmc systemd-logind[795]: Operation finished.
Dec  5 01:02:36 Xbmc systemd-logind[825]: New seat seat0.
Dec  5 01:02:36 Xbmc systemd-logind[825]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  5 01:02:36 Xbmc systemd-logind[825]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  5 01:02:36 Xbmc systemd-logind[825]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  5 01:02:38 Xbmc sshd[993]: Server listening on 0.0.0.0 port 22.
Dec  5 01:02:38 Xbmc sshd[993]: Server listening on :: port 22.
Dec  5 01:02:39 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  5 01:02:39 Xbmc systemd-logind[825]: New session c1 of user sven.
Dec  5 01:02:39 Xbmc systemd-logind[825]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  5 01:02:40 Xbmc gnome-keyring-daemon[1276]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  5 01:02:40 Xbmc gnome-keyring-daemon[1276]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  5 01:02:43 Xbmc gnome-keyring-daemon[1276]: The GPG agent was already initialized
Dec  5 01:02:43 Xbmc gnome-keyring-daemon[1276]: The Secret Service was already initialized
Dec  5 01:02:43 Xbmc gnome-keyring-daemon[1276]: The SSH agent was already initialized
Dec  5 01:02:43 Xbmc gnome-keyring-daemon[1276]: The PKCS#11 component was already initialized
Dec  5 01:02:45 Xbmc su[1737]: Successful su for sven by root
Dec  5 01:02:45 Xbmc su[1737]: + ??? root:sven
Dec  5 01:02:45 Xbmc su[1737]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  5 01:02:45 Xbmc systemd-logind[825]: New session c2 of user sven.
Dec  5 01:02:45 Xbmc su[1737]: pam_unix(su:session): session closed for user sven
Dec  5 01:02:45 Xbmc systemd-logind[825]: Removed session c2.
Dec  5 01:02:45 Xbmc dbus[767]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.29" (uid=0 pid=1413 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=839 comm="NetworkManager ")
Dec  5 01:02:45 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.48 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  5 01:05:24 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get install browser-plugin-vlc
Dec  5 01:05:24 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  5 01:05:31 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  5 01:05:40 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get clean
Dec  5 01:05:40 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  5 01:05:40 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  5 01:07:12 Xbmc gnome-keyring-daemon[1276]: keyring alias directory: /home/sven/.local/share/keyrings
Dec  5 01:17:01 Xbmc CRON[2805]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  5 01:17:01 Xbmc CRON[2805]: pam_unix(cron:session): session closed for user root
Dec  5 01:34:15 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c1 (system bus name :1.48, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  5 01:34:16 Xbmc systemd-logind[825]: System is powering down.
Dec  5 01:34:16 Xbmc systemd-logind[825]: Operation finished.
Dec  5 10:01:07 Xbmc systemd-logind[822]: New seat seat0.
Dec  5 10:01:07 Xbmc systemd-logind[822]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  5 10:01:07 Xbmc systemd-logind[822]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  5 10:01:07 Xbmc systemd-logind[822]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  5 10:01:09 Xbmc sshd[1000]: Server listening on 0.0.0.0 port 22.
Dec  5 10:01:09 Xbmc sshd[1000]: Server listening on :: port 22.
Dec  5 10:01:10 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  5 10:01:10 Xbmc systemd-logind[822]: New session c1 of user sven.
Dec  5 10:01:10 Xbmc systemd-logind[822]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  5 10:01:11 Xbmc gnome-keyring-daemon[1274]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  5 10:01:11 Xbmc gnome-keyring-daemon[1274]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  5 10:01:13 Xbmc gnome-keyring-daemon[1274]: The GPG agent was already initialized
Dec  5 10:01:13 Xbmc gnome-keyring-daemon[1274]: The Secret Service was already initialized
Dec  5 10:01:13 Xbmc gnome-keyring-daemon[1274]: The SSH agent was already initialized
Dec  5 10:01:13 Xbmc gnome-keyring-daemon[1274]: The PKCS#11 component was already initialized
Dec  5 10:01:15 Xbmc dbus[722]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.31" (uid=0 pid=1423 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=838 comm="NetworkManager ")
Dec  5 10:01:16 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.46 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  5 10:01:16 Xbmc su[1913]: Successful su for sven by root
Dec  5 10:01:16 Xbmc su[1913]: + ??? root:sven
Dec  5 10:01:16 Xbmc su[1913]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  5 10:01:16 Xbmc systemd-logind[822]: New session c2 of user sven.
Dec  5 10:01:16 Xbmc su[1913]: pam_unix(su:session): session closed for user sven
Dec  5 10:01:16 Xbmc systemd-logind[822]: Removed session c2.
Dec  5 10:01:55 Xbmc sudo:     sven : TTY=pts/3 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get install browser-plugin-vlc
Dec  5 10:01:55 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  5 10:01:56 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  5 10:17:01 Xbmc CRON[2883]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  5 10:17:01 Xbmc CRON[2883]: pam_unix(cron:session): session closed for user root
Dec  5 10:33:32 Xbmc dbus[722]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.31" (uid=0 pid=1423 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=838 comm="NetworkManager ")
Dec  5 11:29:17 Xbmc systemd-logind[822]: Operation finished.
Dec  5 11:29:22 Xbmc dbus[722]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.31" (uid=0 pid=1423 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=838 comm="NetworkManager ")
Dec  5 11:30:28 Xbmc compiz: gkr-pam: unlocked login keyring
Dec  5 12:04:32 Xbmc sudo: pam_unix(sudo:auth): conversation failed
Dec  5 12:04:32 Xbmc sudo: pam_unix(sudo:auth): auth could not identify password for [sven]
Dec  5 12:11:10 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get update
Dec  5 12:11:10 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  5 12:11:22 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  5 12:11:22 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt-get dist-upgrade
Dec  5 12:11:22 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  5 12:11:22 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  5 12:13:10 Xbmc gnome-keyring-daemon[1274]: keyring alias directory: /home/sven/.local/share/keyrings
Dec  5 12:17:01 Xbmc CRON[4874]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  5 12:17:01 Xbmc CRON[4874]: pam_unix(cron:session): session closed for user root
Dec  5 12:25:18 Xbmc polkitd(authority=local): Operator of unix-session:c1 successfully authenticated as unix-user:sven to gain TEMPORARY authorization for action com.ubuntu-tweak.daemon.clean for system-bus-name::1.79 [/usr/bin/python /usr/bin/ubuntu-tweak] (owned by unix-user:sven)
Dec  5 12:26:07 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/dpkg --list
Dec  5 12:26:07 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  5 12:26:07 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  5 13:07:51 Xbmc sudo: pam_unix(sudo:auth): conversation failed
Dec  5 13:07:51 Xbmc sudo: pam_unix(sudo:auth): auth could not identify password for [sven]
Dec  5 13:17:01 Xbmc CRON[6049]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  5 13:17:01 Xbmc CRON[6049]: pam_unix(cron:session): session closed for user root
Dec  5 13:37:34 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c1 (system bus name :1.46, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  5 13:37:34 Xbmc systemd-logind[822]: System is powering down.
Dec  5 13:37:34 Xbmc systemd-logind[822]: Operation finished.
Dec  6 16:26:05 Xbmc systemd-logind[824]: New seat seat0.
Dec  6 16:26:05 Xbmc systemd-logind[824]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 16:26:05 Xbmc systemd-logind[824]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 16:26:05 Xbmc systemd-logind[824]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 16:26:07 Xbmc sshd[994]: Server listening on 0.0.0.0 port 22.
Dec  6 16:26:07 Xbmc sshd[994]: Server listening on :: port 22.
Dec  6 16:26:08 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 16:26:08 Xbmc systemd-logind[824]: New session c1 of user sven.
Dec  6 16:26:08 Xbmc systemd-logind[824]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 16:26:10 Xbmc gnome-keyring-daemon[1283]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  6 16:26:10 Xbmc gnome-keyring-daemon[1283]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  6 16:26:12 Xbmc gnome-keyring-daemon[1283]: The GPG agent was already initialized
Dec  6 16:26:12 Xbmc gnome-keyring-daemon[1283]: The Secret Service was already initialized
Dec  6 16:26:12 Xbmc gnome-keyring-daemon[1283]: The SSH agent was already initialized
Dec  6 16:26:12 Xbmc gnome-keyring-daemon[1283]: The PKCS#11 component was already initialized
Dec  6 16:26:13 Xbmc su[1493]: Successful su for sven by root
Dec  6 16:26:13 Xbmc su[1493]: + ??? root:sven
Dec  6 16:26:13 Xbmc su[1493]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  6 16:26:13 Xbmc systemd-logind[824]: New session c2 of user sven.
Dec  6 16:26:13 Xbmc su[1493]: pam_unix(su:session): session closed for user sven
Dec  6 16:26:13 Xbmc systemd-logind[824]: Removed session c2.
Dec  6 16:26:14 Xbmc dbus[741]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.22" (uid=0 pid=1376 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=838 comm="NetworkManager ")
Dec  6 16:26:15 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.48 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 16:26:52 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt install ncdu
Dec  6 16:26:52 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:27:00 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:31:34 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/ncdu
Dec  6 16:31:34 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:31:40 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:34:47 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/ncdu -x /
Dec  6 16:34:47 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:35:41 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  6 16:35:41 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:35:41 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:36:31 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/apt purge mediabrowser
Dec  6 16:36:31 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:36:31 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:36:59 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:38:03 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/var/lib ; USER=root ; COMMAND=/bin/rm -r mediabrowser/
Dec  6 16:38:03 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:38:03 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:38:11 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/var/lib ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  6 16:38:11 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:38:11 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:39:48 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/var/lib ; USER=root ; COMMAND=/usr/bin/nano /etc/apt/sources.list.d
Dec  6 16:39:48 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:39:54 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:42:07 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/etc/apt/sources.list.d ; USER=root ; COMMAND=/bin/rm mediabrowser.list mediabrowser.list.save
Dec  6 16:42:07 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:42:07 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:42:25 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/etc/apt/sources.list.d ; USER=root ; COMMAND=/usr/bin/updatedb
Dec  6 16:42:25 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:42:25 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:43:08 Xbmc sudo:     sven : TTY=pts/6 ; PWD=/etc/apt/sources.list.d ; USER=root ; COMMAND=/sbin/reboot
Dec  6 16:43:08 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:43:08 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:43:41 Xbmc systemd-logind[828]: New seat seat0.
Dec  6 16:43:41 Xbmc systemd-logind[828]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 16:43:41 Xbmc systemd-logind[828]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 16:43:41 Xbmc systemd-logind[828]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 16:43:43 Xbmc sshd[1006]: Server listening on 0.0.0.0 port 22.
Dec  6 16:43:43 Xbmc sshd[1006]: Server listening on :: port 22.
Dec  6 16:43:44 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 16:43:44 Xbmc systemd-logind[828]: New session c1 of user sven.
Dec  6 16:43:44 Xbmc systemd-logind[828]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 16:43:45 Xbmc gnome-keyring-daemon[1283]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  6 16:43:45 Xbmc gnome-keyring-daemon[1283]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  6 16:43:47 Xbmc gnome-keyring-daemon[1283]: The GPG agent was already initialized
Dec  6 16:43:47 Xbmc gnome-keyring-daemon[1283]: The Secret Service was already initialized
Dec  6 16:43:47 Xbmc gnome-keyring-daemon[1283]: The SSH agent was already initialized
Dec  6 16:43:47 Xbmc gnome-keyring-daemon[1283]: The PKCS#11 component was already initialized
Dec  6 16:43:49 Xbmc dbus[697]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.32" (uid=0 pid=1428 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=842 comm="NetworkManager ")
Dec  6 16:43:49 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c1 (system bus name :1.46 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 16:43:50 Xbmc su[1926]: Successful su for sven by root
Dec  6 16:43:50 Xbmc su[1926]: + ??? root:sven
Dec  6 16:43:50 Xbmc su[1926]: pam_unix(su:session): session opened for user sven by (uid=0)
Dec  6 16:43:50 Xbmc systemd-logind[828]: New session c2 of user sven.
Dec  6 16:43:50 Xbmc su[1926]: pam_unix(su:session): session closed for user sven
Dec  6 16:43:50 Xbmc systemd-logind[828]: Removed session c2.
Dec  6 16:44:11 Xbmc polkitd(authority=local): Operator of unix-session:c1 FAILED to authenticate to gain authorization for action com.ubuntu.pkexec.synaptic for unix-process:2312:4107 [/bin/sh /usr/bin/synaptic-pkexec] (owned by unix-user:sven)
Dec  6 16:44:11 Xbmc pkexec[2313]: sven: Error executing command as another user: Request dismissed [USER=root] [TTY=unknown] [CWD=/home/sven] [COMMAND=/usr/sbin/synaptic]
Dec  6 16:44:20 Xbmc login[1125]: pam_unix(login:session): session opened for user sven by LOGIN(uid=0)
Dec  6 16:44:20 Xbmc systemd-logind[828]: New session c3 of user sven.
Dec  6 16:44:35 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c3 (system bus name :1.81 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 16:45:21 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c3 (system bus name :1.81, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  6 16:46:20 Xbmc sudo:     sven : TTY=tty1 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/firefox
Dec  6 16:46:20 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:46:21 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:47:39 Xbmc sshd[3061]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=sven-w65-67sj.fritz.box  user=sven
Dec  6 16:47:41 Xbmc sshd[3061]: Failed password for sven from 192.168.178.71 port 44308 ssh2
Dec  6 16:47:46 Xbmc sshd[3061]: Accepted password for sven from 192.168.178.71 port 44308 ssh2
Dec  6 16:47:46 Xbmc sshd[3061]: pam_unix(sshd:session): session opened for user sven by (uid=0)
Dec  6 16:47:46 Xbmc systemd-logind[828]: New session 1 of user sven.
Dec  6 16:48:37 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/startx
Dec  6 16:48:37 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:48:37 Xbmc gnome-keyring-daemon[3256]: couldn't create socket directory: Keine Berechtigung
Dec  6 16:48:37 Xbmc gnome-keyring-daemon[3256]: couldn't bind to control socket: /home/sven/.cache/keyring-ZTf8Y4/control: Keine Berechtigung
Dec  6 16:48:37 Xbmc gnome-keyring-daemon[3260]: couldn't create socket directory: Keine Berechtigung
Dec  6 16:48:37 Xbmc gnome-keyring-daemon[3260]: couldn't bind to control socket: /home/sven/.cache/keyring-pbHlV4/control: Keine Berechtigung
Dec  6 16:48:37 Xbmc gnome-keyring-daemon[3261]: couldn't create socket directory: Keine Berechtigung
Dec  6 16:48:37 Xbmc gnome-keyring-daemon[3261]: couldn't bind to control socket: /home/sven/.cache/keyring-OKo4H4/control: Keine Berechtigung
Dec  6 16:48:37 Xbmc gnome-keyring-daemon[3262]: couldn't communicate with already running daemon: Message did not receive a reply (timeout by message bus)
Dec  6 16:48:37 Xbmc gnome-keyring-daemon[3262]: couldn't create socket directory: Keine Berechtigung
Dec  6 16:48:37 Xbmc gnome-keyring-daemon[3262]: couldn't bind to control socket: /home/sven/.cache/keyring-RwNSB4/control: Keine Berechtigung
Dec  6 16:48:38 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:1 (system bus name :1.117 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 16:49:33 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:1 (system bus name :1.117, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  6 16:49:34 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 16:52:02 Xbmc sudo:     sven : TTY=tty1 ; PWD=/home/sven ; USER=root ; COMMAND=/bin/su
Dec  6 16:52:02 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 16:52:02 Xbmc su[3537]: Successful su for root by root
Dec  6 16:52:02 Xbmc su[3537]: + /dev/tty1 root:root
Dec  6 16:52:02 Xbmc su[3537]: pam_unix(su:session): session opened for user root by sven(uid=0)
Dec  6 16:52:10 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c3 (system bus name :1.140 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 16:53:16 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c3 (system bus name :1.140, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  6 16:53:16 Xbmc gnome-keyring-daemon[3769]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Dec  6 16:53:20 Xbmc su[3537]: pam_unix(su:session): session closed for user root
Dec  6 16:53:20 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:16:40 Xbmc sudo:     sven : TTY=tty1 ; PWD=/usr/share/man/man5 ; USER=root ; COMMAND=/usr/bin/startx unity
Dec  6 17:16:40 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:17:01 Xbmc CRON[4506]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  6 17:17:01 Xbmc CRON[4506]: pam_unix(cron:session): session closed for user root
Dec  6 17:18:16 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:23:33 Xbmc systemd-logind[887]: New seat seat0.
Dec  6 17:23:33 Xbmc systemd-logind[887]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 17:23:33 Xbmc systemd-logind[887]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 17:23:33 Xbmc systemd-logind[887]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 17:23:34 Xbmc sshd[974]: Server listening on 0.0.0.0 port 22.
Dec  6 17:23:34 Xbmc sshd[974]: Server listening on :: port 22.
Dec  6 17:23:35 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 17:23:35 Xbmc systemd-logind[887]: New session c1 of user sven.
Dec  6 17:23:35 Xbmc systemd-logind[887]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 17:23:35 Xbmc systemd-logind[887]: Removed session c1.
Dec  6 17:23:36 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:23:36 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:23:36 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 17:23:36 Xbmc systemd-logind[887]: New session c2 of user lightdm.
Dec  6 17:23:36 Xbmc systemd-logind[887]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 17:23:37 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:23:37 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:23:37 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 17:23:40 Xbmc dbus[744]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.45" (uid=0 pid=1564 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.6" (uid=0 pid=1099 comm="NetworkManager ")
Dec  6 17:23:53 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 17:23:53 Xbmc lightdm: pam_unix(lightdm:session): session opened for user sven by (uid=0)
Dec  6 17:23:53 Xbmc systemd-logind[887]: New session c3 of user sven.
Dec  6 17:23:53 Xbmc systemd-logind[887]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 17:23:53 Xbmc systemd-logind[887]: Removed session c3.
Dec  6 17:23:53 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:23:53 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:23:53 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 17:23:53 Xbmc systemd-logind[887]: New session c4 of user lightdm.
Dec  6 17:23:54 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:23:54 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:23:54 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 17:24:23 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 17:24:23 Xbmc lightdm: pam_unix(lightdm:session): session opened for user sven by (uid=0)
Dec  6 17:24:23 Xbmc systemd-logind[887]: New session c5 of user sven.
Dec  6 17:24:23 Xbmc systemd-logind[887]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 17:24:23 Xbmc systemd-logind[887]: Removed session c5.
Dec  6 17:24:23 Xbmc systemd-logind[887]: Removed session c4.
Dec  6 17:24:23 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:24:23 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:24:23 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 17:24:23 Xbmc systemd-logind[887]: New session c6 of user lightdm.
Dec  6 17:24:23 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:24:23 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:24:23 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 17:24:41 Xbmc login[1105]: pam_unix(login:session): session opened for user sven by LOGIN(uid=0)
Dec  6 17:24:41 Xbmc systemd-logind[887]: New session c7 of user sven.
Dec  6 17:26:20 Xbmc sudo:     sven : TTY=tty1 ; PWD=/var/log ; USER=root ; COMMAND=/usr/bin/nano auth.log
Dec  6 17:26:20 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:29:07 Xbmc sshd[2340]: Accepted password for sven from 192.168.178.71 port 44986 ssh2
Dec  6 17:29:07 Xbmc sshd[2340]: pam_unix(sshd:session): session opened for user sven by (uid=0)
Dec  6 17:29:07 Xbmc systemd-logind[887]: New session 1 of user sven.
Dec  6 17:29:24 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:30:04 Xbmc sudo:     sven : TTY=pts/12 ; PWD=/var/log ; USER=root ; COMMAND=/usr/bin/nano alternatives.log
Dec  6 17:30:04 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:30:11 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:30:22 Xbmc sudo:     sven : TTY=pts/12 ; PWD=/var/log ; USER=root ; COMMAND=/usr/bin/nano auth.log
Dec  6 17:30:22 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:36:34 Xbmc sudo:     sven : TTY=tty1 ; PWD=/ ; USER=root ; COMMAND=/bin/su
Dec  6 17:36:34 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:36:34 Xbmc su[2480]: Successful su for root by root
Dec  6 17:36:34 Xbmc su[2480]: + /dev/tty1 root:root
Dec  6 17:36:34 Xbmc su[2480]: pam_unix(su:session): session opened for user root by sven(uid=0)
Dec  6 17:37:01 Xbmc su[2480]: pam_unix(su:session): session closed for user root
Dec  6 17:37:01 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:37:12 Xbmc sudo:     sven : TTY=tty1 ; PWD=/ ; USER=root ; COMMAND=/usr/bin/apt-get install wbinfo
Dec  6 17:37:12 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:37:12 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:37:30 Xbmc sudo:     sven : TTY=tty1 ; PWD=/ ; USER=root ; COMMAND=/usr/bin/apt-get install winbind
Dec  6 17:37:30 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:37:40 Xbmc groupadd[3211]: group added to /etc/group: name=winbindd_priv, GID=127
Dec  6 17:37:41 Xbmc groupadd[3211]: group added to /etc/gshadow: name=winbindd_priv
Dec  6 17:37:41 Xbmc groupadd[3211]: new group: name=winbindd_priv, GID=127
Dec  6 17:37:43 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:37:56 Xbmc sudo:     sven : TTY=tty1 ; PWD=/ ; USER=root ; COMMAND=/usr/bin/wbinfo -u
Dec  6 17:37:56 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:37:56 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:38:23 Xbmc sudo:     sven : TTY=tty1 ; PWD=/ ; USER=root ; COMMAND=/usr/bin/wbinfo -g
Dec  6 17:38:23 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:38:23 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:40:12 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:45:49 Xbmc sshd[2376]: Received disconnect from 192.168.178.71: 11: disconnected by user
Dec  6 17:45:49 Xbmc sshd[2340]: pam_unix(sshd:session): session closed for user sven
Dec  6 17:45:49 Xbmc systemd-logind[887]: Removed session 1.
Dec  6 17:46:15 Xbmc sudo:     sven : TTY=tty1 ; PWD=/ ; USER=root ; COMMAND=/sbin/reboot
Dec  6 17:46:15 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:46:15 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:46:42 Xbmc systemd-logind[679]: New seat seat0.
Dec  6 17:46:42 Xbmc systemd-logind[679]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 17:46:42 Xbmc systemd-logind[679]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 17:46:42 Xbmc systemd-logind[679]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 17:46:50 Xbmc sshd[1085]: Server listening on 0.0.0.0 port 22.
Dec  6 17:46:50 Xbmc sshd[1085]: Server listening on :: port 22.
Dec  6 17:46:53 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 17:46:53 Xbmc systemd-logind[679]: New session c1 of user sven.
Dec  6 17:46:53 Xbmc systemd-logind[679]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 17:46:53 Xbmc systemd-logind[679]: Removed session c1.
Dec  6 17:46:54 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:46:54 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:46:54 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 17:46:54 Xbmc systemd-logind[679]: New session c2 of user lightdm.
Dec  6 17:46:54 Xbmc systemd-logind[679]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 17:46:54 Xbmc dbus[588]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.14" (uid=0 pid=1259 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=883 comm="NetworkManager ")
Dec  6 17:46:59 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:46:59 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:46:59 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 17:47:15 Xbmc lightdm: pam_unix(lightdm:auth): authentication failure; logname= uid=0 euid=0 tty=:0 ruser= rhost=  user=sven
Dec  6 17:47:15 Xbmc lightdm: pam_winbind(lightdm:auth): getting password (0x00000388)
Dec  6 17:47:15 Xbmc lightdm: pam_winbind(lightdm:auth): pam_get_item returned a password
Dec  6 17:47:15 Xbmc lightdm: pam_winbind(lightdm:auth): request wbcLogonUser failed: WBC_ERR_AUTH_ERROR, PAM error: PAM_USER_UNKNOWN (10), NTSTATUS: NT_STATUS_NO_SUCH_USER, Error message was: No such user
Dec  6 17:47:18 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:47:18 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:47:18 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 17:47:23 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 17:47:23 Xbmc lightdm: pam_unix(lightdm:session): session opened for user sven by (uid=0)
Dec  6 17:47:23 Xbmc systemd-logind[679]: New session c3 of user sven.
Dec  6 17:47:23 Xbmc systemd-logind[679]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 17:47:23 Xbmc systemd-logind[679]: Removed session c3.
Dec  6 17:47:24 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:47:24 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:47:24 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 17:47:24 Xbmc systemd-logind[679]: New session c4 of user lightdm.
Dec  6 17:47:24 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 17:47:24 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 17:47:24 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 17:49:21 Xbmc sshd[2096]: Accepted password for sven from 192.168.178.71 port 45106 ssh2
Dec  6 17:49:21 Xbmc sshd[2096]: pam_unix(sshd:session): session opened for user sven by (uid=0)
Dec  6 17:49:21 Xbmc systemd-logind[679]: New session 1 of user sven.
Dec  6 17:50:08 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/nano .Xauthority
Dec  6 17:50:08 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:50:25 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 17:51:10 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/bin/tail /var/log/lightdm/lightdm.log
Dec  6 17:51:10 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 17:51:10 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:01:35 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/sbin/adduser Samsung
Dec  6 18:01:35 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 18:01:36 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:02:20 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/sbin/adduser samsung
Dec  6 18:02:20 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 18:02:20 Xbmc groupadd[2312]: group added to /etc/group: name=samsung, GID=1001
Dec  6 18:02:20 Xbmc groupadd[2312]: group added to /etc/gshadow: name=samsung
Dec  6 18:02:20 Xbmc groupadd[2312]: new group: name=samsung, GID=1001
Dec  6 18:02:20 Xbmc useradd[2316]: new user: name=samsung, UID=1001, GID=1001, home=/home/samsung, shell=/bin/bash
Dec  6 18:02:31 Xbmc passwd[2323]: pam_unix(passwd:chauthtok): password changed for samsung
Dec  6 18:02:31 Xbmc passwd[2323]: gkr-pam: couldn't update the login keyring password: no old password was entered
Dec  6 18:02:45 Xbmc chfn[2331]: changed user 'samsung' information
Dec  6 18:02:48 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:02:52 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/sbin/reboot
Dec  6 18:02:52 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 18:02:52 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:03:23 Xbmc systemd-logind[872]: New seat seat0.
Dec  6 18:03:23 Xbmc systemd-logind[872]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 18:03:23 Xbmc systemd-logind[872]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 18:03:23 Xbmc systemd-logind[872]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 18:03:25 Xbmc sshd[1038]: Server listening on 0.0.0.0 port 22.
Dec  6 18:03:25 Xbmc sshd[1038]: Server listening on :: port 22.
Dec  6 18:03:27 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 18:03:27 Xbmc systemd-logind[872]: New session c1 of user sven.
Dec  6 18:03:27 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 18:03:27 Xbmc systemd-logind[872]: Removed session c1.
Dec  6 18:03:27 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:03:27 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:03:27 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 18:03:27 Xbmc systemd-logind[872]: New session c2 of user lightdm.
Dec  6 18:03:27 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 18:03:28 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:03:28 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:03:28 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 18:03:30 Xbmc dbus[684]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.36" (uid=0 pid=1555 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=878 comm="NetworkManager ")
Dec  6 18:03:32 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:03:32 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:03:32 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 18:03:40 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 18:03:40 Xbmc lightdm: pam_unix(lightdm:session): session opened for user samsung by (uid=0)
Dec  6 18:03:40 Xbmc systemd-logind[872]: New session c3 of user samsung.
Dec  6 18:03:40 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/1001/X11-display.
Dec  6 18:03:41 Xbmc su[1946]: Successful su for samsung by root
Dec  6 18:03:41 Xbmc su[1946]: + ??? root:samsung
Dec  6 18:03:41 Xbmc su[1946]: pam_unix(su:session): session opened for user samsung by (uid=0)
Dec  6 18:03:41 Xbmc systemd-logind[872]: New session c4 of user samsung.
Dec  6 18:03:41 Xbmc su[1946]: pam_unix(su:session): session closed for user samsung
Dec  6 18:03:41 Xbmc systemd-logind[872]: Removed session c4.
Dec  6 18:03:43 Xbmc gnome-keyring-daemon[1893]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  6 18:03:43 Xbmc gnome-keyring-daemon[1893]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  6 18:03:52 Xbmc gnome-keyring-daemon[1893]: The GPG agent was already initialized
Dec  6 18:03:52 Xbmc gnome-keyring-daemon[1893]: The Secret Service was already initialized
Dec  6 18:03:52 Xbmc gnome-keyring-daemon[1893]: The SSH agent was already initialized
Dec  6 18:03:52 Xbmc gnome-keyring-daemon[1893]: The PKCS#11 component was already initialized
Dec  6 18:03:55 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c3 (system bus name :1.81 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 18:04:02 Xbmc systemd-logind[872]: Removed session c2.
Dec  6 18:05:01 Xbmc polkitd(authority=local): Operator of unix-session:c3 successfully authenticated as unix-user:sven to gain TEMPORARY authorization for action org.freedesktop.udisks2.filesystem-unmount-others for system-bus-name::1.83 [/usr/lib/gvfs/gvfs-udisks2-volume-monitor] (owned by unix-user:samsung)
Dec  6 18:06:15 Xbmc sshd[2902]: Accepted password for sven from 192.168.178.71 port 45232 ssh2
Dec  6 18:06:15 Xbmc sshd[2902]: pam_unix(sshd:session): session opened for user sven by (uid=0)
Dec  6 18:06:15 Xbmc systemd-logind[872]: New session 1 of user sven.
Dec  6 18:09:53 Xbmc sudo:  samsung : user NOT in sudoers ; TTY=pts/12 ; PWD=/home/samsung ; USER=root ; COMMAND=/usr/bin/nautilus
Dec  6 18:11:38 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c3 (system bus name :1.81, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  6 18:11:40 Xbmc gnome-keyring-daemon[1893]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Dec  6 18:11:40 Xbmc lightdm: pam_unix(lightdm:session): session closed for user samsung
Dec  6 18:11:40 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:11:40 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:11:40 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 18:11:40 Xbmc systemd-logind[872]: New session c5 of user lightdm.
Dec  6 18:11:40 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 18:11:40 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:11:40 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:11:40 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 18:12:52 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/usr/sbin/adduser samsung sudo
Dec  6 18:12:52 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 18:12:53 Xbmc gpasswd[3293]: user samsung added by root to group sudo
Dec  6 18:12:53 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:12:57 Xbmc sudo:     sven : TTY=pts/0 ; PWD=/home/sven ; USER=root ; COMMAND=/sbin/reboot
Dec  6 18:12:57 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 18:12:57 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:13:24 Xbmc systemd-logind[854]: New seat seat0.
Dec  6 18:13:24 Xbmc systemd-logind[854]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 18:13:24 Xbmc systemd-logind[854]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 18:13:24 Xbmc systemd-logind[854]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 18:13:26 Xbmc sshd[1020]: Server listening on 0.0.0.0 port 22.
Dec  6 18:13:26 Xbmc sshd[1020]: Server listening on :: port 22.
Dec  6 18:13:27 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 18:13:27 Xbmc systemd-logind[854]: New session c1 of user sven.
Dec  6 18:13:27 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 18:13:27 Xbmc systemd-logind[854]: Removed session c1.
Dec  6 18:13:27 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:13:27 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:13:27 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 18:13:27 Xbmc systemd-logind[854]: New session c2 of user lightdm.
Dec  6 18:13:27 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 18:13:29 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:13:29 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:13:29 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 18:13:31 Xbmc dbus[764]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.41" (uid=0 pid=1563 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=861 comm="NetworkManager ")
Dec  6 18:15:17 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 18:15:17 Xbmc lightdm: pam_unix(lightdm:session): session opened for user samsung by (uid=0)
Dec  6 18:15:17 Xbmc systemd-logind[854]: New session c3 of user samsung.
Dec  6 18:15:17 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/1001/X11-display.
Dec  6 18:15:18 Xbmc su[1933]: Successful su for samsung by root
Dec  6 18:15:18 Xbmc su[1933]: + ??? root:samsung
Dec  6 18:15:18 Xbmc su[1933]: pam_unix(su:session): session opened for user samsung by (uid=0)
Dec  6 18:15:18 Xbmc systemd-logind[854]: New session c4 of user samsung.
Dec  6 18:15:18 Xbmc su[1933]: pam_unix(su:session): session closed for user samsung
Dec  6 18:15:18 Xbmc systemd-logind[854]: Removed session c4.
Dec  6 18:15:20 Xbmc gnome-keyring-daemon[1899]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  6 18:15:20 Xbmc gnome-keyring-daemon[1899]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  6 18:15:24 Xbmc gnome-keyring-daemon[1899]: The GPG agent was already initialized
Dec  6 18:15:24 Xbmc gnome-keyring-daemon[1899]: The Secret Service was already initialized
Dec  6 18:15:24 Xbmc gnome-keyring-daemon[1899]: The SSH agent was already initialized
Dec  6 18:15:24 Xbmc gnome-keyring-daemon[1899]: The PKCS#11 component was already initialized
Dec  6 18:15:27 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c3 (system bus name :1.80 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 18:15:39 Xbmc systemd-logind[854]: Removed session c2.
Dec  6 18:17:00 Xbmc polkitd(authority=local): Operator of unix-session:c3 successfully authenticated as unix-user:sven to gain TEMPORARY authorization for action org.freedesktop.udisks2.filesystem-unmount-others for system-bus-name::1.82 [/usr/lib/gvfs/gvfs-udisks2-volume-monitor] (owned by unix-user:samsung)
Dec  6 18:17:01 Xbmc CRON[2827]: pam_unix(cron:session): session opened for user root by (uid=0)
Dec  6 18:17:01 Xbmc CRON[2827]: pam_unix(cron:session): session closed for user root
Dec  6 18:17:23 Xbmc sudo:  samsung : TTY=pts/1 ; PWD=/home/samsung ; USER=root ; COMMAND=/usr/bin/nautilus
Dec  6 18:17:23 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:28:27 Xbmc sudo: pam_unix(sudo:auth): conversation failed
Dec  6 18:28:27 Xbmc sudo: pam_unix(sudo:auth): auth could not identify password for [samsung]
Dec  6 18:37:21 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:37:50 Xbmc sudo:  samsung : TTY=pts/1 ; PWD=/home/samsung ; USER=root ; COMMAND=/bin/su
Dec  6 18:37:50 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:37:50 Xbmc su[4553]: Successful su for root by root
Dec  6 18:37:50 Xbmc su[4553]: + /dev/pts/1 root:root
Dec  6 18:37:50 Xbmc su[4553]: pam_unix(su:session): session opened for user root by samsung(uid=0)
Dec  6 18:39:01 Xbmc su[4553]: pam_unix(su:session): session closed for user root
Dec  6 18:39:01 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:39:10 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c3 (system bus name :1.80, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  6 18:39:10 Xbmc gnome-keyring-daemon[1899]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Dec  6 18:39:10 Xbmc lightdm: pam_unix(lightdm:session): session closed for user samsung
Dec  6 18:39:11 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:39:11 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:39:11 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 18:39:11 Xbmc systemd-logind[854]: New session c5 of user lightdm.
Dec  6 18:39:11 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 18:39:13 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:39:13 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:39:13 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 18:39:23 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 18:39:23 Xbmc lightdm: pam_unix(lightdm:session): session opened for user samsung by (uid=0)
Dec  6 18:39:23 Xbmc systemd-logind[854]: New session c6 of user samsung.
Dec  6 18:39:24 Xbmc su[4938]: Successful su for samsung by root
Dec  6 18:39:24 Xbmc su[4938]: + ??? root:samsung
Dec  6 18:39:24 Xbmc su[4938]: pam_unix(su:session): session opened for user samsung by (uid=0)
Dec  6 18:39:24 Xbmc systemd-logind[854]: New session c7 of user samsung.
Dec  6 18:39:24 Xbmc su[4938]: pam_unix(su:session): session closed for user samsung
Dec  6 18:39:24 Xbmc gnome-keyring-daemon[4834]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  6 18:39:24 Xbmc systemd-logind[854]: Removed session c7.
Dec  6 18:39:24 Xbmc gnome-keyring-daemon[4834]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  6 18:39:27 Xbmc gnome-keyring-daemon[4834]: The GPG agent was already initialized
Dec  6 18:39:27 Xbmc gnome-keyring-daemon[4834]: The Secret Service was already initialized
Dec  6 18:39:27 Xbmc gnome-keyring-daemon[4834]: The SSH agent was already initialized
Dec  6 18:39:27 Xbmc gnome-keyring-daemon[4834]: The PKCS#11 component was already initialized
Dec  6 18:39:28 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c6 (system bus name :1.144 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 18:39:51 Xbmc sudo:  samsung : TTY=pts/10 ; PWD=/home/samsung ; USER=root ; COMMAND=/bin/su
Dec  6 18:39:51 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:39:51 Xbmc su[5583]: Successful su for root by root
Dec  6 18:39:51 Xbmc su[5583]: + /dev/pts/10 root:root
Dec  6 18:39:51 Xbmc su[5583]: pam_unix(su:session): session opened for user root by samsung(uid=0)
Dec  6 18:39:51 Xbmc systemd-logind[854]: Removed session c5.
Dec  6 18:40:38 Xbmc systemd-logind[872]: New seat seat0.
Dec  6 18:40:38 Xbmc systemd-logind[872]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 18:40:38 Xbmc systemd-logind[872]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 18:40:38 Xbmc systemd-logind[872]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 18:40:40 Xbmc sshd[1033]: Server listening on 0.0.0.0 port 22.
Dec  6 18:40:40 Xbmc sshd[1033]: Server listening on :: port 22.
Dec  6 18:40:41 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 18:40:41 Xbmc systemd-logind[872]: New session c1 of user sven.
Dec  6 18:40:41 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 18:40:41 Xbmc systemd-logind[872]: Removed session c1.
Dec  6 18:40:42 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:40:42 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:40:42 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 18:40:42 Xbmc systemd-logind[872]: New session c2 of user lightdm.
Dec  6 18:40:42 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 18:40:43 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:40:43 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:40:43 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 18:40:45 Xbmc dbus[782]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.36" (uid=0 pid=1552 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=879 comm="NetworkManager ")
Dec  6 18:40:51 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 18:40:51 Xbmc lightdm: pam_unix(lightdm:session): session opened for user samsung by (uid=0)
Dec  6 18:40:51 Xbmc systemd-logind[872]: New session c3 of user samsung.
Dec  6 18:40:51 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/1001/X11-display.
Dec  6 18:40:52 Xbmc su[1911]: Successful su for samsung by root
Dec  6 18:40:52 Xbmc su[1911]: + ??? root:samsung
Dec  6 18:40:52 Xbmc su[1911]: pam_unix(su:session): session opened for user samsung by (uid=0)
Dec  6 18:40:52 Xbmc systemd-logind[872]: New session c4 of user samsung.
Dec  6 18:40:52 Xbmc su[1911]: pam_unix(su:session): session closed for user samsung
Dec  6 18:40:52 Xbmc systemd-logind[872]: Removed session c4.
Dec  6 18:40:53 Xbmc gnome-keyring-daemon[1847]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  6 18:40:53 Xbmc gnome-keyring-daemon[1847]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  6 18:40:57 Xbmc gnome-keyring-daemon[1847]: The GPG agent was already initialized
Dec  6 18:40:57 Xbmc gnome-keyring-daemon[1847]: The Secret Service was already initialized
Dec  6 18:40:57 Xbmc gnome-keyring-daemon[1847]: The SSH agent was already initialized
Dec  6 18:40:57 Xbmc gnome-keyring-daemon[1847]: The PKCS#11 component was already initialized
Dec  6 18:41:00 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c3 (system bus name :1.74 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 18:41:15 Xbmc systemd-logind[872]: Removed session c2.
Dec  6 18:41:27 Xbmc sudo:  samsung : TTY=pts/10 ; PWD=/home/samsung ; USER=root ; COMMAND=/bin/su
Dec  6 18:41:27 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:41:27 Xbmc su[2625]: Successful su for root by root
Dec  6 18:41:27 Xbmc su[2625]: + /dev/pts/10 root:root
Dec  6 18:41:27 Xbmc su[2625]: pam_unix(su:session): session opened for user root by samsung(uid=0)
Dec  6 18:44:28 Xbmc su[2625]: pam_unix(su:session): session closed for user root
Dec  6 18:44:28 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:45:01 Xbmc sudo:  samsung : TTY=pts/10 ; PWD=/home/samsung ; USER=root ; COMMAND=/bin/rm -rf /opt/sven
Dec  6 18:45:01 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:45:01 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:45:10 Xbmc sudo:  samsung : TTY=pts/10 ; PWD=/home/samsung ; USER=root ; COMMAND=/bin/su
Dec  6 18:45:10 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:45:10 Xbmc su[2940]: Successful su for root by root
Dec  6 18:45:10 Xbmc su[2940]: + /dev/pts/10 root:root
Dec  6 18:45:10 Xbmc su[2940]: pam_unix(su:session): session opened for user root by samsung(uid=0)
Dec  6 18:45:24 Xbmc su[2940]: pam_unix(su:session): session closed for user root
Dec  6 18:45:24 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:46:04 Xbmc sudo:  samsung : TTY=pts/10 ; PWD=/home/samsung ; USER=root ; COMMAND=/usr/bin/apt-get remove sven
Dec  6 18:46:04 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:46:05 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:46:25 Xbmc sudo:  samsung : TTY=pts/10 ; PWD=/home/samsung ; USER=root ; COMMAND=/usr/bin/apt-get remove Sven
Dec  6 18:46:25 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:46:25 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:46:49 Xbmc polkitd(authority=local): Unregistered Authentication Agent for unix-session:c3 (system bus name :1.74, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) (disconnected from bus)
Dec  6 18:46:54 Xbmc dbus[782]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.79" (uid=1001 pid=2331 comm="compiz ") interface="org.freedesktop.login1.Manager" member="TerminateSession" error name="(unset)" requested_reply="0" destination=":1.3" (uid=0 pid=872 comm="/lib/systemd/systemd-logind ")
Dec  6 18:47:02 Xbmc systemd-logind[872]: System is rebooting.
Dec  6 18:47:02 Xbmc systemd-logind[872]: Operation finished.
Dec  6 18:47:31 Xbmc systemd-logind[854]: New seat seat0.
Dec  6 18:47:31 Xbmc systemd-logind[854]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 18:47:31 Xbmc systemd-logind[854]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 18:47:31 Xbmc systemd-logind[854]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 18:47:32 Xbmc sshd[1010]: Server listening on 0.0.0.0 port 22.
Dec  6 18:47:32 Xbmc sshd[1010]: Server listening on :: port 22.
Dec  6 18:47:33 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 18:47:33 Xbmc systemd-logind[854]: New session c1 of user sven.
Dec  6 18:47:33 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 18:47:33 Xbmc systemd-logind[854]: Removed session c1.
Dec  6 18:47:34 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:47:34 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:47:34 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 18:47:34 Xbmc systemd-logind[854]: New session c2 of user lightdm.
Dec  6 18:47:34 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 18:47:35 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:47:35 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:47:35 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 18:47:37 Xbmc dbus[764]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.42" (uid=0 pid=1563 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=908 comm="NetworkManager ")
Dec  6 18:47:40 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:47:40 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:47:40 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 18:47:47 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 18:47:47 Xbmc lightdm: pam_unix(lightdm:session): session opened for user sven by (uid=0)
Dec  6 18:47:47 Xbmc systemd-logind[854]: New session c3 of user sven.
Dec  6 18:47:47 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 18:47:47 Xbmc systemd-logind[854]: Removed session c3.
Dec  6 18:47:47 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:47:47 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:47:47 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 18:47:47 Xbmc systemd-logind[854]: New session c4 of user lightdm.
Dec  6 18:47:47 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:47:47 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:47:47 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 18:47:52 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:47:52 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:47:52 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 18:48:05 Xbmc login[1143]: pam_unix(login:auth): check pass; user unknown
Dec  6 18:48:05 Xbmc login[1143]: pam_unix(login:auth): authentication failure; logname=LOGIN uid=0 euid=0 tty=/dev/tty1 ruser= rhost= 
Dec  6 18:48:05 Xbmc login[1143]: pam_winbind(login:auth): getting password (0x00000388)
Dec  6 18:48:05 Xbmc login[1143]: pam_winbind(login:auth): pam_get_item returned a password
Dec  6 18:48:08 Xbmc login[1143]: FAILED LOGIN (1) on '/dev/tty1' FOR 'UNKNOWN', Authentication failure
Dec  6 18:48:28 Xbmc login[1143]: pam_unix(login:session): session opened for user samsung by LOGIN(uid=0)
Dec  6 18:48:28 Xbmc systemd-logind[854]: New session c5 of user samsung.
Dec  6 18:48:40 Xbmc sudo:  samsung : TTY=tty1 ; PWD=/home/samsung ; USER=root ; COMMAND=/bin/su
Dec  6 18:48:40 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:48:40 Xbmc su[2118]: Successful su for root by root
Dec  6 18:48:40 Xbmc su[2118]: + /dev/tty1 root:root
Dec  6 18:48:40 Xbmc su[2118]: pam_unix(su:session): session opened for user root by samsung(uid=0)
Dec  6 18:49:12 Xbmc su[2118]: pam_unix(su:session): session closed for user root
Dec  6 18:49:12 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 18:52:04 Xbmc sudo:  samsung : TTY=tty1 ; PWD=/home/samsung ; USER=root ; COMMAND=/bin/su
Dec  6 18:52:04 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 18:52:04 Xbmc su[2222]: Successful su for root by root
Dec  6 18:52:04 Xbmc su[2222]: + /dev/tty1 root:root
Dec  6 18:52:04 Xbmc su[2222]: pam_unix(su:session): session opened for user root by samsung(uid=0)
Dec  6 18:58:24 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 18:58:24 Xbmc dbus[764]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.77" (uid=112 pid=2398 comm="/usr/lib/x86_64-linux-gnu/indicator-bluetooth/indi") interface="org.freedesktop.DBus.Properties" member="GetAll" error name="(unset)" requested_reply="0" destination=":1.1" (uid=0 pid=808 comm="/usr/sbin/bluetoothd ")
Dec  6 18:58:24 Xbmc dbus[764]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.77" (uid=112 pid=2398 comm="/usr/lib/x86_64-linux-gnu/indicator-bluetooth/indi") interface="org.bluez.Manager" member="DefaultAdapter" error name="(unset)" requested_reply="0" destination="org.bluez" (uid=0 pid=808 comm="/usr/sbin/bluetoothd ")
Dec  6 18:59:45 Xbmc systemd-logind[872]: New seat seat0.
Dec  6 18:59:45 Xbmc systemd-logind[872]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 18:59:45 Xbmc systemd-logind[872]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 18:59:45 Xbmc systemd-logind[872]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 18:59:47 Xbmc sshd[1038]: Server listening on 0.0.0.0 port 22.
Dec  6 18:59:47 Xbmc sshd[1038]: Server listening on :: port 22.
Dec  6 18:59:48 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 18:59:48 Xbmc systemd-logind[872]: New session c1 of user sven.
Dec  6 18:59:48 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 18:59:48 Xbmc systemd-logind[872]: Removed session c1.
Dec  6 18:59:48 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:59:48 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:59:48 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 18:59:48 Xbmc systemd-logind[872]: New session c2 of user lightdm.
Dec  6 18:59:48 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 18:59:50 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 18:59:50 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 18:59:50 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 18:59:52 Xbmc dbus[782]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.38" (uid=0 pid=1556 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=879 comm="NetworkManager ")
Dec  6 18:59:59 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 18:59:59 Xbmc lightdm: pam_unix(lightdm:session): session opened for user samsung by (uid=0)
Dec  6 18:59:59 Xbmc systemd-logind[872]: New session c3 of user samsung.
Dec  6 18:59:59 Xbmc systemd-logind[872]: Linked /tmp/.X11-unix/X0 to /run/user/1001/X11-display.
Dec  6 19:00:00 Xbmc su[1917]: Successful su for samsung by root
Dec  6 19:00:00 Xbmc su[1917]: + ??? root:samsung
Dec  6 19:00:00 Xbmc su[1917]: pam_unix(su:session): session opened for user samsung by (uid=0)
Dec  6 19:00:00 Xbmc systemd-logind[872]: New session c4 of user samsung.
Dec  6 19:00:00 Xbmc su[1917]: pam_unix(su:session): session closed for user samsung
Dec  6 19:00:00 Xbmc systemd-logind[872]: Removed session c4.
Dec  6 19:00:01 Xbmc gnome-keyring-daemon[1856]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  6 19:00:01 Xbmc gnome-keyring-daemon[1856]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  6 19:00:05 Xbmc gnome-keyring-daemon[1856]: The GPG agent was already initialized
Dec  6 19:00:05 Xbmc gnome-keyring-daemon[1856]: The Secret Service was already initialized
Dec  6 19:00:05 Xbmc gnome-keyring-daemon[1856]: The SSH agent was already initialized
Dec  6 19:00:05 Xbmc gnome-keyring-daemon[1856]: The PKCS#11 component was already initialized
Dec  6 19:00:08 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c3 (system bus name :1.74 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 19:00:23 Xbmc systemd-logind[872]: Removed session c2.
Dec  6 19:02:23 Xbmc sudo:  samsung : TTY=pts/10 ; PWD=/home/samsung ; USER=root ; COMMAND=/bin/su
Dec  6 19:02:23 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 19:02:23 Xbmc su[2710]: Successful su for root by root
Dec  6 19:02:23 Xbmc su[2710]: + /dev/pts/10 root:root
Dec  6 19:02:23 Xbmc su[2710]: pam_unix(su:session): session opened for user root by samsung(uid=0)
Dec  6 19:03:02 Xbmc su[2710]: pam_unix(su:session): session closed for user root
Dec  6 19:03:02 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 19:03:07 Xbmc sudo:  samsung : TTY=pts/10 ; PWD=/home/samsung ; USER=root ; COMMAND=/sbin/reboot
Dec  6 19:03:07 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 19:03:07 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 19:03:43 Xbmc systemd-logind[877]: New seat seat0.
Dec  6 19:03:43 Xbmc systemd-logind[877]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 19:03:43 Xbmc systemd-logind[877]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 19:03:43 Xbmc systemd-logind[877]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 19:03:45 Xbmc sshd[1037]: Server listening on 0.0.0.0 port 22.
Dec  6 19:03:45 Xbmc sshd[1037]: Server listening on :: port 22.
Dec  6 19:03:46 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 19:03:46 Xbmc systemd-logind[877]: New session c1 of user sven.
Dec  6 19:03:46 Xbmc systemd-logind[877]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 19:03:46 Xbmc systemd-logind[877]: Removed session c1.
Dec  6 19:03:46 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:03:46 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:03:46 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 19:03:46 Xbmc systemd-logind[877]: New session c2 of user lightdm.
Dec  6 19:03:46 Xbmc systemd-logind[877]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 19:03:48 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:03:48 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:03:48 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 19:03:50 Xbmc dbus[786]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.37" (uid=0 pid=1560 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=883 comm="NetworkManager ")
Dec  6 19:03:52 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:03:52 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:03:52 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 19:03:59 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 19:03:59 Xbmc lightdm: pam_unix(lightdm:session): session opened for user sven by (uid=0)
Dec  6 19:03:59 Xbmc systemd-logind[877]: New session c3 of user sven.
Dec  6 19:03:59 Xbmc systemd-logind[877]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 19:03:59 Xbmc systemd-logind[877]: Removed session c3.
Dec  6 19:04:00 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:04:00 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:04:00 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 19:04:00 Xbmc systemd-logind[877]: New session c4 of user lightdm.
Dec  6 19:04:00 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:04:00 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:04:00 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 19:04:03 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:04:03 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:04:03 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 19:04:09 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 19:04:09 Xbmc lightdm: pam_unix(lightdm:session): session opened for user samsung by (uid=0)
Dec  6 19:04:09 Xbmc systemd-logind[877]: New session c5 of user samsung.
Dec  6 19:04:09 Xbmc systemd-logind[877]: Linked /tmp/.X11-unix/X0 to /run/user/1001/X11-display.
Dec  6 19:04:09 Xbmc systemd-logind[877]: Removed session c4.
Dec  6 19:04:10 Xbmc su[2077]: Successful su for samsung by root
Dec  6 19:04:10 Xbmc su[2077]: + ??? root:samsung
Dec  6 19:04:10 Xbmc su[2077]: pam_unix(su:session): session opened for user samsung by (uid=0)
Dec  6 19:04:10 Xbmc systemd-logind[877]: New session c6 of user samsung.
Dec  6 19:04:10 Xbmc su[2077]: pam_unix(su:session): session closed for user samsung
Dec  6 19:04:10 Xbmc systemd-logind[877]: Removed session c6.
Dec  6 19:04:13 Xbmc gnome-keyring-daemon[2058]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  6 19:04:13 Xbmc gnome-keyring-daemon[2058]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  6 19:04:17 Xbmc gnome-keyring-daemon[2058]: The GPG agent was already initialized
Dec  6 19:04:17 Xbmc gnome-keyring-daemon[2058]: The Secret Service was already initialized
Dec  6 19:04:17 Xbmc gnome-keyring-daemon[2058]: The SSH agent was already initialized
Dec  6 19:04:17 Xbmc gnome-keyring-daemon[2058]: The PKCS#11 component was already initialized
Dec  6 19:04:20 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c5 (system bus name :1.101 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 19:04:35 Xbmc systemd-logind[877]: Removed session c2.
Dec  6 19:07:10 Xbmc sudo:  samsung : TTY=pts/1 ; PWD=/home/samsung ; USER=root ; COMMAND=/usr/sbin/deluser --force sven
Dec  6 19:07:10 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 19:07:11 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 19:07:41 Xbmc dbus[786]: [system] Rejected send message, 2 matched rules; type="method_return", sender=":1.10" (uid=0 pid=1182 comm="lightdm ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.95" (uid=1001 pid=2499 comm="/usr/lib/x86_64-linux-gnu/indicator-session/indica")
Dec  6 19:07:41 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:07:41 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:07:41 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 19:07:41 Xbmc lightdm: pam_unix(lightdm:auth): conversation failed
Dec  6 19:07:41 Xbmc lightdm: pam_unix(lightdm:auth): auth could not identify password for [sven]
Dec  6 19:07:41 Xbmc lightdm: pam_winbind(lightdm:auth): getting password (0x00000388)
Dec  6 19:07:41 Xbmc lightdm: pam_winbind(lightdm:auth): Could not retrieve user's password
Dec  6 19:07:42 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:07:42 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:07:42 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 19:07:42 Xbmc systemd-logind[877]: New session c7 of user lightdm.
Dec  6 19:07:42 Xbmc systemd-logind[877]: Linked /tmp/.X11-unix/X1 to /run/user/112/X11-display.
Dec  6 19:07:42 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:07:42 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:07:42 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 19:07:45 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:07:45 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:07:45 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 19:07:50 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 19:08:09 Xbmc login[1166]: pam_unix(login:auth): check pass; user unknown
Dec  6 19:08:09 Xbmc login[1166]: pam_unix(login:auth): authentication failure; logname=LOGIN uid=0 euid=0 tty=/dev/tty1 ruser= rhost= 
Dec  6 19:08:09 Xbmc login[1166]: pam_winbind(login:auth): getting password (0x00000388)
Dec  6 19:08:09 Xbmc login[1166]: pam_winbind(login:auth): pam_get_item returned a password
Dec  6 19:08:12 Xbmc login[1166]: FAILED LOGIN (1) on '/dev/tty1' FOR 'UNKNOWN', Authentication failure
Dec  6 19:08:23 Xbmc login[1166]: pam_unix(login:auth): check pass; user unknown
Dec  6 19:08:23 Xbmc login[1166]: pam_winbind(login:auth): getting password (0x00000388)
Dec  6 19:08:23 Xbmc login[1166]: pam_winbind(login:auth): pam_get_item returned a password
Dec  6 19:08:27 Xbmc login[1166]: FAILED LOGIN (2) on '/dev/tty1' FOR 'UNKNOWN', Authentication failure
Dec  6 19:09:01 Xbmc login[1166]: pam_unix(login:auth): check pass; user unknown
Dec  6 19:09:01 Xbmc login[1166]: pam_unix(login:auth): authentication failure; logname=LOGIN uid=0 euid=0 tty=/dev/tty1 ruser= rhost= 
Dec  6 19:09:01 Xbmc login[1166]: pam_winbind(login:auth): getting password (0x00000388)
Dec  6 19:09:01 Xbmc login[1166]: pam_winbind(login:auth): pam_get_item returned a password
Dec  6 19:09:20 Xbmc login[3180]: pam_unix(login:auth): authentication failure; logname=LOGIN uid=0 euid=0 tty=/dev/tty1 ruser= rhost=  user=samsung
Dec  6 19:09:20 Xbmc login[3180]: pam_winbind(login:auth): getting password (0x00000388)
Dec  6 19:09:20 Xbmc login[3180]: pam_winbind(login:auth): pam_get_item returned a password
Dec  6 19:09:20 Xbmc login[3180]: pam_winbind(login:auth): request wbcLogonUser failed: WBC_ERR_AUTH_ERROR, PAM error: PAM_USER_UNKNOWN (10), NTSTATUS: NT_STATUS_NO_SUCH_USER, Error Dec  6 19:10:03 Xbmc systemd-logind[803]: New seat seat0.
Dec  6 19:10:03 Xbmc systemd-logind[803]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 19:10:03 Xbmc systemd-logind[803]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 19:10:03 Xbmc systemd-logind[803]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 19:10:05 Xbmc sshd[1038]: Server listening on 0.0.0.0 port 22.
Dec  6 19:10:05 Xbmc sshd[1038]: Server listening on :: port 22.
Dec  6 19:10:06 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 19:10:06 Xbmc systemd-logind[803]: New session c1 of user sven.
Dec  6 19:10:06 Xbmc systemd-logind[803]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 19:10:06 Xbmc systemd-logind[803]: Removed session c1.
Dec  6 19:10:06 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:10:06 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:10:06 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 19:10:06 Xbmc systemd-logind[803]: New session c2 of user lightdm.
Dec  6 19:10:06 Xbmc systemd-logind[803]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 19:10:07 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:10:07 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:10:07 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 19:10:10 Xbmc dbus[671]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.42" (uid=0 pid=1590 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=876 comm="NetworkManager ")
Dec  6 19:10:52 Xbmc sshd[1918]: Accepted password for sven from 192.168.178.71 port 45466 ssh2
Dec  6 19:10:52 Xbmc sshd[1918]: pam_unix(sshd:session): session opened for user sven by (uid=0)
Dec  6 19:10:52 Xbmc systemd-logind[803]: New session 1 of user sven.
Dec  6 19:10:57 Xbmc sshd[1954]: Received disconnect from 192.168.178.71: 11: disconnected by user
Dec  6 19:10:57 Xbmc sshd[1918]: pam_unix(sshd:session): session closed for user sven
Dec  6 19:10:57 Xbmc systemd-logind[803]: Removed session 1.
Dec  6 19:12:05 Xbmc systemd-logind[803]: System is rebooting.
Dec  6 19:12:05 Xbmc systemd-logind[803]: Operation finished.
Dec  6 20:32:34 Xbmc systemd-logind[854]: New seat seat0.
Dec  6 20:32:34 Xbmc systemd-logind[854]: Watching system buttons on /dev/input/event1 (Power Button)
Dec  6 20:32:34 Xbmc systemd-logind[854]: Watching system buttons on /dev/input/event4 (Video Bus)
Dec  6 20:32:34 Xbmc systemd-logind[854]: Watching system buttons on /dev/input/event0 (Power Button)
Dec  6 20:32:35 Xbmc sshd[1019]: Server listening on 0.0.0.0 port 22.
Dec  6 20:32:35 Xbmc sshd[1019]: Server listening on :: port 22.
Dec  6 20:32:37 Xbmc lightdm: pam_unix(lightdm-autologin:session): session opened for user sven by (uid=0)
Dec  6 20:32:37 Xbmc systemd-logind[854]: New session c1 of user sven.
Dec  6 20:32:37 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 20:32:37 Xbmc systemd-logind[854]: Removed session c1.
Dec  6 20:32:37 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 20:32:37 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 20:32:37 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 20:32:37 Xbmc systemd-logind[854]: New session c2 of user lightdm.
Dec  6 20:32:37 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/112/X11-display.
Dec  6 20:32:38 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 20:32:38 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 20:32:38 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 20:32:40 Xbmc dbus[764]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.42" (uid=0 pid=1566 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.5" (uid=0 pid=908 comm="NetworkManager ")
Dec  6 19:39:22 Xbmc sshd[1892]: Accepted password for sven from 192.168.178.71 port 46256 ssh2
Dec  6 19:39:22 Xbmc sshd[1892]: pam_unix(sshd:session): session opened for user sven by (uid=0)
Dec  6 19:39:22 Xbmc systemd-logind[854]: New session 1 of user sven.
Dec  6 19:40:01 Xbmc sudo:     sven : TTY=pts/7 ; PWD=/var/log ; USER=root ; COMMAND=/usr/bin/nano auth.log
Dec  6 19:40:01 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 19:46:05 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:46:05 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:46:05 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 19:46:11 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 19:46:11 Xbmc lightdm: pam_unix(lightdm:session): session opened for user sven by (uid=0)
Dec  6 19:46:11 Xbmc systemd-logind[854]: New session c3 of user sven.
Dec  6 19:46:11 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
Dec  6 19:46:11 Xbmc systemd-logind[854]: Removed session c3.
Dec  6 19:46:11 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:46:11 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:46:11 Xbmc lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Dec  6 19:46:11 Xbmc systemd-logind[854]: New session c4 of user lightdm.
Dec  6 19:46:11 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:46:11 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:46:11 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "sven"
Dec  6 19:46:55 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 19:46:57 Xbmc sudo:     sven : TTY=pts/7 ; PWD=/var/log ; USER=root ; COMMAND=/usr/bin/nano auth.log
Dec  6 19:46:57 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 19:49:26 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 19:50:21 Xbmc sudo:     sven : TTY=pts/7 ; PWD=/var/log ; USER=root ; COMMAND=/bin/su
Dec  6 19:50:21 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 19:50:21 Xbmc su[2176]: Successful su for root by root
Dec  6 19:50:21 Xbmc su[2176]: + /dev/pts/7 root:root
Dec  6 19:50:21 Xbmc su[2176]: pam_unix(su:session): session opened for user root by sven(uid=0)
Dec  6 19:50:39 Xbmc su[2176]: pam_unix(su:session): session closed for user root
Dec  6 19:50:39 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 19:51:04 Xbmc lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Dec  6 19:51:04 Xbmc lightdm: PAM adding faulty module: pam_kwallet.so
Dec  6 19:51:04 Xbmc lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "samsung"
Dec  6 19:51:09 Xbmc lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Dec  6 19:51:09 Xbmc lightdm: pam_unix(lightdm:session): session opened for user samsung by (uid=0)
Dec  6 19:51:09 Xbmc systemd-logind[854]: Removed session c4.
Dec  6 19:51:09 Xbmc systemd-logind[854]: New session c5 of user samsung.
Dec  6 19:51:09 Xbmc systemd-logind[854]: Linked /tmp/.X11-unix/X0 to /run/user/1001/X11-display.
Dec  6 19:51:10 Xbmc gnome-keyring-daemon[2201]: couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files
Dec  6 19:51:10 Xbmc gnome-keyring-daemon[2201]: message repeated 2 times: [ couldn't set environment variable in session: The name org.gnome.SessionManager was not provided by any .service files]
Dec  6 19:51:14 Xbmc gnome-keyring-daemon[2201]: The GPG agent was already initialized
Dec  6 19:51:14 Xbmc gnome-keyring-daemon[2201]: The Secret Service was already initialized
Dec  6 19:51:14 Xbmc gnome-keyring-daemon[2201]: The SSH agent was already initialized
Dec  6 19:51:14 Xbmc gnome-keyring-daemon[2201]: The PKCS#11 component was already initialized
Dec  6 19:51:16 Xbmc polkitd(authority=local): Registered Authentication Agent for unix-session:c5 (system bus name :1.104 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dec  6 19:51:31 Xbmc systemd-logind[854]: Removed session c2.
Dec  6 19:52:16 Xbmc sudo:  samsung : TTY=pts/11 ; PWD=/home/samsung ; USER=root ; COMMAND=/bin/su
Dec  6 19:52:16 Xbmc sudo: pam_unix(sudo:session): session opened for user root by samsung(uid=0)
Dec  6 19:52:16 Xbmc su[2787]: Successful su for root by root
Dec  6 19:52:16 Xbmc su[2787]: + /dev/pts/11 root:root
Dec  6 19:52:16 Xbmc su[2787]: pam_unix(su:session): session opened for user root by samsung(uid=0)
Dec  6 19:53:52 Xbmc sudo:     sven : TTY=pts/7 ; PWD=/home/samsung/Dokumente ; USER=root ; COMMAND=/bin/su
Dec  6 19:53:52 Xbmc sudo: pam_unix(sudo:session): session opened for user root by sven(uid=0)
Dec  6 19:53:52 Xbmc su[2879]: Successful su for root by root
Dec  6 19:53:52 Xbmc su[2879]: + /dev/pts/7 root:root
Dec  6 19:53:52 Xbmc su[2879]: pam_unix(su:session): session opened for user root by sven(uid=0)
Dec  6 19:54:28 Xbmc su[2879]: pam_unix(su:session): session closed for user root
Dec  6 19:54:28 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 19:55:10 Xbmc su[2787]: pam_unix(su:session): session closed for user root
Dec  6 19:55:10 Xbmc sudo: pam_unix(sudo:session): session closed for user root
Dec  6 19:55:48 Xbmc sshd[1969]: Received disconnect from 192.168.178.71: 11: disconnected by user
Dec  6 19:55:48 Xbmc sshd[1892]: pam_unix(sshd:session): session closed for user sven
Dec  6 19:55:59 Xbmc sshd[2916]: Accepted password for sven from 192.168.178.71 port 46268 ssh2
Dec  6 19:55:59 Xbmc sshd[2916]: pam_unix(sshd:session): session opened for user sven by (uid=0)
Dec  6 19:55:59 Xbmc systemd-logind[854]: Removed session 1.
Dec  6 19:55:59 Xbmc systemd-logind[854]: New session 2 of user sven.

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Tarawa« (07.12.2015, 17:38)


  • »Tarawa« ist der Autor dieses Themas

Beiträge: 94

Registrierungsdatum: 01.06.2012

Derivat: Ubuntu

Architektur: 64-Bit PC

Desktop: Unity

  • Nachricht senden

2

07.12.2015, 17:00

Hey Leute hab das Problem lösen können die Datei .Xauthority stand auf Root statt auf den User habs mit chown user:user .Xauthority abgeändert.

Zurzeit sind neben Ihnen 2 Benutzer in diesem Thema unterwegs:

2 Besucher

Verwendete Tags

14.04, Login, loop, Ubuntu, Unity