-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReport_fred-ghostbsd-pc1_2020-04-05_example.txt
2252 lines (1875 loc) · 102 KB
/
Report_fred-ghostbsd-pc1_2020-04-05_example.txt
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
#### FreeBSD OS & WORKSTATION INFO ####
Sun Apr 5 17:54:45 PDT 2020
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
Hostname: fred-ghostbsd-pc1 Domain: fred-ghostbsd-pc1
Network : inet 192.168.43.8 netmask 0xffffff00 broadcast 192.168.43.255
Gateway enable:
Defaultrouter :
DNS Server: # Generated by resolvconf nameserver 192.168.43.1
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
Which user: $ USER: fred whoami: fred $ LOGNAME: fred
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
FreeBSD - freebsd-version utility
Version and patch level of the installed system
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
- Installed kernel : 12.1-STABLE
- Running kernel : 12.1-STABLE
- Userland : 12.1-STABLE
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
FreeBSD - uname command - Information about the system
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
- Kernel ident : GENERIC
- Kernel version : 1201512
- Hardware platform : amd64
- Name of the system: fred-ghostbsd-pc1
- Machine processor architecture : amd64
- Release level of the OS : 12.1-STABLE
- Name of the OS implementation: FreeBSD
- FreeBSD version of the user environment : 1201512
- Version level of this release of the OS :
FreeBSD 12.1-STABLE GENERIC
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
CPU Info
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
CPU: Intel(R) Core(TM) i5-3320M CPU @ 2.60GHz (2594.17-MHz K8-class CPU)
Origin="GenuineIntel" Id=0x306a9 Family=0x6 Model=0x3a Stepping=9
Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE
,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>
Features2=0x7fbae3ff<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SS
SE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,AESNI,XSAVE,O
SXSAVE,AVX,F16C,RDRAND>
AMD Features=0x28100800<SYSCALL,NX,RDTSCP,LM>
AMD Features2=0x1<LAHF>
Structured Extended Features=0x281<FSGSBASE,SMEP,ERMS>
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
Memory usage
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
last pid: 85421; load averages: 0.22, 0.34, 0.33 up 1+00:55:26 17:54:45
153 processes: 2 running, 146 sleeping, 4 zombie, 1 waiting
CPU: 4.5% user, 0.0% nice, 1.2% system, 0.2% interrupt, 94.1% idle
Mem: 2062M Active, 3243M Inact, 733M Laundry, 1183M Wired, 524M Free
ARC: 381M Total, 54M MFU, 276M MRU, 180K Anon, 5069K Header, 43M Other
270M Compressed, 611M Uncompressed, 2.26:1 Ratio
Swap: 8539M Total, 8539M Free
PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND
3015 fred 31 20 0 3442M 1077M select 2 32:09 0.68% firefox
3006 fred 52 20 0 3342M 957M select 3 49:51 0.78% firefox
3012 fred 32 20 0 3029M 662M select 0 67:25 0.00% firefox
3013 fred 30 20 0 3015M 641M select 2 13:43 0.10% firefox
6821 fred 28 20 0 2991M 622M select 0 15:30 0.59% firefox
7759 fred 26 20 0 2949M 589M select 3 7:17 0.00% firefox
3011 fred 27 20 0 2909M 551M select 0 10:21 0.10% firefox
6822 fred 28 20 0 2905M 540M select 3 14:27 0.00% firefox
3008 fred 28 20 0 2753M 495M select 1 7:20 0.10% firefox
3010 fred 23 20 0 2387M 146M select 1 0:13 0.00% firefox
2167 polkitd 8 20 0 1110M 17M select 0 0:00 0.00% polkitd
7802 fred 19 20 0 611M 416M select 2 17:57 0.10% telegram-desktop
2892 fred 6 20 0 225M 9576K select 2 0:48 0.00% pulseaudio
2640 root 4 20 0 212M 120M select 1 22:18 1.07% Xorg
57426 fred 5 20 0 154M 74M select 3 0:03 0.00% nautilus
2872 fred 3 20 0 120M 29M select 1 0:45 0.00% wrapper-2.0
2860 fred 4 20 0 110M 45M select 1 10:48 0.20% xfwm4
2899 fred 3 20 0 110M 21M select 3 0:00 0.00% xfce4-volumed-pulse
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
SETTINGS
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
- SECT01 : CONFIGURATION:
/boot/loader.conf /etc/rc.conf /etc/pf.conf /etc/fstab /etc/sysctl.conf
/etc/rc.local /etc/rc.d/local
- SECT02 : OpenSSH SETTING:
/etc/ssh/ssh_config /etc/ssh/sshd_config
- SECT03 : NETWORK SETTING:
ifconfig /etc/resolv.conf /var/unbound/unbound.conf /etc/ppp/ppp.conf
- SECT04 : APPLICATIONS & INSTALLED PACKAGES
- SECT05 : PERSONAL SETTING:
~/.bashrc ~/.bash_aliases ~/.bash_history ~/.cshrc ~/.shrc ~/.history
~/.profile ~/.xsession ~/.xinitrc ~/.Xdefaults ~/.xpdfrc ~/.vimrc ~/.tmux.conf
~/.xbindkeysrc ~/.lynx.cfg ~/.elinks/elinks.conf ~/.links/links.cfg
~/.links/html.cfg
- SECT06 : X11 SETTING:
/usr/local/etc/X11/xorg.conf.d/vmware.conf
- SECT07 : BOOT dmesg: /var/run/dmesg.boot
- SECT08 : FILE PERMISSION
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
#############################################################
SECT01 - CONFIGURATION
#############################################################
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/boot/loader.conf :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
loader_brand="ghostbsd"
loader_logo="ghostbsd"
loader_menu_title="Welcome to GhostBSD"
hw.psm.synaptics_support="1"
net.inet.ip.fw.default_to_accept="1"
boot_mute="NO"
crypto_load="YES"
aesni_load="YES"
geom_eli_load="YES"
vfs.zfs.arc_max="512M"
zfs_load="YES"
if_urndis_load="YES"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/rc.conf :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
root_rw_mount="NO"
sendmail_enable="NONE"
sendmail_submit_enable="NO"
sendmail_outbound_enable="NO"
sendmail_msp_queue_enable="NO"
devfs_system_ruleset="devfsrules_common"
kld_list="linux linux64 cuse /boot/modules/i915kms.ko /boot/modules/if_urndis.ko"
ntpd_sync_on_start="YES"
ifconfig_em0="DHCP"
wlans_iwn0="wlan0"
ifconfig_wlan0="WPA DHCP"
ifconfig_ue0="DHCP"
keymap="us.kbd"
hostname="fred-ghostbsd-pc1"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/pf.conf :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/fstab :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# Device Mountpoint FStype Options Dump Pass
/dev/label/swap0 none swap sw 0 0
procfs /proc procfs rw 0 0
linprocfs /compat/linux/proc linprocfs rw 0 0
tmpfs /compat/linux/dev/shm tmpfs rw,mode=1777 0 0
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/sysctl.conf :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# $FreeBSD$
#
# This file is read when going to multi-user and its contents piped thru
# ``sysctl'' to adjust kernel values. ``man 5 sysctl.conf'' for details.
#
# Uncomment this to prevent users from seeing information about processes that
# are being run under another UID.
#security.bsd.see_other_uids=0
# add user mount
vfs.usermount=1
# the following is required to run chromium browser
kern.ipc.shm_allow_removed=1
# For Desktop use default for server is 80
kern.sched.preempt_thresh=224
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/rc.local :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/rc.d/local :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: local
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: shutdown
. /etc/rc.subr
name="local"
desc="Run /etc/rc.local and /etc/shutdown.local"
start_cmd="local_start"
stop_cmd="local_stop"
local_start()
{
if [ -f /etc/rc.local ]; then
echo -n 'Starting local daemons:'
. /etc/rc.local
echo '.'
fi
}
local_stop()
{
if [ -f /etc/rc.shutdown.local ]; then
echo -n 'Shutting down local daemons:'
. /etc/rc.shutdown.local
echo '.'
fi
}
load_rc_config $name
run_rc_command "$1"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
#############################################################
SECT02 - OpenSSH SETTING
#############################################################
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/ssh/ssh_config :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# $OpenBSD: ssh_config,v 1.33 2017/05/07 23:12:57 djm Exp $
# $FreeBSD$
# This is the ssh client system-wide configuration file. See
# ssh_config(5) for more information. This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.
# Configuration data is parsed as follows:
# 1. command line options
# 2. user-specific file
# 3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.
# Site-wide defaults for some commonly used options. For a comprehensive
# list of available options, their meanings and defaults, please see the
# ssh_config(5) man page.
# Host *
# ForwardAgent no
# ForwardX11 no
# PasswordAuthentication yes
# HostbasedAuthentication no
# GSSAPIAuthentication no
# GSSAPIDelegateCredentials no
# BatchMode no
# CheckHostIP no
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# IdentityFile ~/.ssh/id_ecdsa
# IdentityFile ~/.ssh/id_ed25519
# Port 22
# Protocol 2
# Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc
# MACs hmac-md5,hmac-sha1,[email protected]
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
# VisualHostKey no
# ProxyCommand ssh -q -W %h:%p gateway.example.com
# RekeyLimit 1G 1h
# VerifyHostKeyDNS yes
# VersionAddendum FreeBSD-20180909
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/ssh/sshd_config :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $
# $FreeBSD$
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
# default value.
# Note that some of FreeBSD's defaults differ from OpenBSD's, and
# FreeBSD has a few additional options.
#Port 22
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_ecdsa_key
#HostKey /etc/ssh/ssh_host_ed25519_key
# Ciphers and keying
#RekeyLimit default none
# Logging
#SyslogFacility AUTH
#LogLevel INFO
# Authentication:
#LoginGraceTime 2m
#PermitRootLogin no
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
#PubkeyAuthentication yes
# The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
# but this is overridden so installations will only check .ssh/authorized_keys
AuthorizedKeysFile .ssh/authorized_keys
#AuthorizedPrincipalsFile none
#AuthorizedKeysCommand none
#AuthorizedKeysCommandUser nobody
# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes
# Change to yes to enable built-in password authentication.
#PasswordAuthentication no
#PermitEmptyPasswords no
# Change to no to disable PAM authentication
#ChallengeResponseAuthentication yes
# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
# Set this to 'no' to disable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
#UsePAM yes
#AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
#X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PermitTTY yes
#PrintMotd yes
#PrintLastLog yes
#TCPKeepAlive yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS yes
#PidFile /var/run/sshd.pid
#MaxStartups 10:30:100
#PermitTunnel no
#ChrootDirectory none
#UseBlacklist no
#VersionAddendum FreeBSD-20180909
# no default banner path
#Banner none
# override default of no subsystems
Subsystem sftp /usr/libexec/sftp-server
# Example of overriding settings on a per-user basis
#Match User anoncvs
# X11Forwarding no
# AllowTcpForwarding no
# PermitTTY no
# ForceCommand cvs server
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
#############################################################
SECT03 - NETWORK SETTING
#############################################################
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
ifconfig :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
em0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=81249b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,LRO,WOL_MAGIC,VLAN_HWFILTER>
ether 00:21:cc:d4:5d:ec
media: Ethernet autoselect
status: no carrier
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2
inet 127.0.0.1 netmask 0xff000000
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
wlan0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
ether 84:3a:4b:01:fd:e2
inet 192.168.43.8 netmask 0xffffff00 broadcast 192.168.43.255
groups: wlan
ssid "moto e5 play 8514" channel 149 (5745 MHz 11a ht/40+) bssid d4:c9:4b:cb:a5:eb
regdomain FCC country US authmode OPEN privacy OFF txpower 23
bmiss 10 mcastrate 6 mgmtrate 6 scanvalid 60 ampdulimit 64k
-amsdutx amsdurx shortgi -stbc -ldpc wme roaming MANUAL
media: IEEE 802.11 Wireless Ethernet MCS mode 11na
status: associated
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/resolv.conf :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# Generated by resolvconf
nameserver 192.168.43.1
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/var/unbound/unbound.conf :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
/etc/ppp/ppp.conf :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
#############################################################
SECT04 - APPLICATIONS & INSTALLED PACKAGES
#############################################################
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
Applications
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
brasero-3.12.2
chromium-80.0.3987.132_1
cups-filters-1.27.2
cups-smb-backend-1.0_12
cursor-dmz-theme-0.4.5
dconf-editor-3.28.0
drm-fbsd12.0-kmod-4.16.g20200221
droid-fonts-ttf-20131024_5
en-aspell-2018.04.16.0
en-hunspell-2019.10.06
evince-lite-3.28.5_11
ffmpegthumbnailer-2.2.0_10
firefox-74.0_5,1
font-awesome-5.12.1
fonts-indic-2.1.5_4
foomatic-db-engine-4.0.13,2
foomatic-db-hpijs-1.4
freedesktop-sound-theme-0.8
fusefs-ext2-0.0.10_2
fusefs-ntfs-2017.3.23
fusefs-simple-mtpfs-0.3.0_5
gbi-7.0
ghostbsd-common-settings-4.6
ghostbsd-drivers-18.12
ghostbsd-icons-1.7
ghostbsd-utils-18.12
ghostbsd-wallpapers-19.09
ghostbsd-xfce-settings-3.0
ghostbsd-xfce-themes-1.0
git-2.25.1
gnome-keyring-3.28.2_2
gstreamer1-plugins-neon-1.16.2
gstreamer1-plugins-soup-1.16.2
gtk3-unico-engine-1.0.2_2
inkscape-0.92.4_14
kicad-doc-5.1.5_1
kicad-library-footprints-5.1.5
kicad-library-symbols-5.1.5
kicad-library-tmpl-5.1.5
lftp-4.9.1
librecad-2.2.0.r1_11
libreoffice-6.3.4_4
lightdm-gtk-greeter-2.0.7
mesa-demos-8.4.0_2
minetest_game-5.1.1
nano-4.8
nautilus-3.28.1_3
nss_mdns-0.10_3
orage-4.12.1_10
os-generic-kernel-12.1.20200314002211,1
os-generic-userland-12.1.20200314002211,1
os-generic-userland-devtools-12.1.20200314002211
os-generic-userland-lib32-12.1.20200314002211
pc-sysinstall-2020021100,1
pkg-1.13.2
plank-0.11.89
python-3.7_3,2
rhythmbox-3.4.2_6
rsync-3.1.3_1
shotwell-0.30.8_1
skrooge-2.21.1_1
system-config-printer-1.5.12_1
telegram-desktop-1.9.21
thunderbird-68.6.0_2
transmission-gtk-2.94_5
vim-tiny-8.2.0345
vlc-3.0.8_20,4
wget-1.20.3
wmctrl-1.07_7
xarchiver-0.5.4.7
xfce-4.14
xfce4-battery-plugin-1.1.3
xfce4-bsdcpufreq-plugin-0.3
xfce4-clipman-plugin-1.4.4
xfce4-cpugraph-plugin-1.1.0_1
xfce4-datetime-plugin-0.8.0
xfce4-dev-tools-4.14.0
xfce4-dict-plugin-0.8.3
xfce4-diskperf-plugin-2.6.2_1
xfce4-fsguard-plugin-1.1.1
xfce4-genmon-plugin-4.0.2
xfce4-mailwatch-plugin-1.2.0_10
xfce4-mixer-4.11.0_5
xfce4-mount-plugin-1.1.3_1
xfce4-netload-plugin-1.3.2
xfce4-notes-plugin-1.8.1_2
xfce4-power-manager-1.6.6
xfce4-pulseaudio-plugin-0.4.2
xfce4-quicklauncher-plugin-1.9.4_19
xfce4-screenshooter-plugin-1.9.7
xfce4-smartbookmark-plugin-0.5.1
xfce4-systemload-plugin-1.2.3
xfce4-taskmanager-1.2.2_2
xfce4-timer-plugin-1.7.0_2
xfce4-verve-plugin-2.0.0
xfce4-volumed-0.1.13_4
xfce4-volumed-pulse-0.2.3_3
xfce4-wavelan-plugin-0.6.1
xfce4-weather-plugin-0.10.1
xfce4-whiskermenu-plugin-2.4.3
xfce4-xkb-plugin-0.8.1_2
xorg-fonts-7.7_1
xorg-minimal-7.5.2_2
xrandr-1.5.1
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
All installed packages
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
CoinMP-1.8.4_3 Optimization library with support for COIN-OR CLP, CBC, and CGL
GentiumBasic-1102_1 Gentium Basic and Gentium Book Basic TrueType fonts
ImageMagick6-6.9.10.90,1 Image processing tools (legacy version)
ORBit2-2.14.19_2 High-performance CORBA ORB with support for the C language
OpenSP-1.5.2_3 This package is a collection of SGML/XML tools called OpenSP
accountsservice-0.6.42 D-Bus interface for user account query and manipulation
adwaita-icon-theme-3.28.0 GNOME Symbolic Icons
alsa-lib-1.1.2_2 ALSA compatibility library
alsa-plugins-1.1.1_6 ALSA compatibility library plugins
aom-1.0.0.3222 AV1 reference encoder/decoder
apr-1.7.0.1.6.1 Apache Portability Library
argyllcms-1.9.2_5 ICC compatible color management system
aspell-0.60.8,1 Spelling checker with better suggestion logic than ispell
at-spi2-atk-2.26.2 Assisted Technology Provider module for GTK+
at-spi2-core-2.28.0 Assistive Technology Service Provider Interface
atk-2.28.1 GNOME accessibility toolkit (ATK)
atkmm-2.24.2_4 C++ wrapper for ATK API library
autoconf-2.69_3 Automatically configure source code on many Un*x platforms
autoconf-wrapper-20131203 Wrapper script for GNU autoconf
automake-1.16.1_2 GNU Standards-compliant Makefile generator
avahi-app-0.7_2 Service discovery on a local network
bamf-0.5.3_2 BAMF Application Matching Framework
bash-5.0.16 GNU Project's Bourne Again SHell
binutils-2.33.1_2,1 GNU binary tools
bittorrent-libutp-0.20130514_1 The uTorrent Transport Protocol library and sample utilities
boehm-gc-8.0.4_1 Garbage collection and memory leak detection for C and C++
boost-libs-1.72.0_1 Free portable C++ libraries (without Boost.Python)
brasero-3.12.2 CD/DVD mastering tool for the GNOME desktop
brotli-1.0.7_2,1 Generic-purpose lossless compression algorithm
bwi-firmware-kmod-3.130.20 Broadcom AirForce IEEE 802.11 Firmware Kernel Module
bwn-firmware-kmod-0.1.2 Broadcom AirForce IEEE 802.11 Firmware Kernel Module
ca_root_nss-3.51_1 Root certificate bundle from the Mozilla Project
cairo-1.16.0,2 Vector graphics library with cross-device output support
cairomm-1.12.2_4 C++ interface to cairo
cantarell-fonts-0.101_1 Cantarell, a Humanist sans-serif font family
cdparanoia-3.9.8_10 CDDA extraction tool (also known as ripper)
cdrdao-1.2.4_3 Record CD-R[W]s in disk-at-once mode
cdrtools-3.01_1 CD/DVD/BluRay and ISO-9660 image creation and extraction tools
check-0.14.0 Unit test framework for C
chromium-80.0.3987.132_1 Google web browser based on WebKit
clucene-2.3.3.4_19 CLucene is a C++ port of Lucene
cmocka-1.1.5 Unit testing framework for C with support for mock objects
colord-1.3.5 Manage color profiles to accurately color input/output devices
consolekit2-1.2.1_1 Framework for defining and tracking users
crosextrafonts-caladea-20130214_4 Font created by Google for ChromeOS to replace MS Cambria
crosextrafonts-carlito-20130920_4 Font created by Google for ChromeOS to replace MS Calibri
cups-2.2.13 Common UNIX Printing System
cups-filters-1.27.2 Additional backends, filters and other software for CUPS
cups-pk-helper-0.2.6 Helper that makes system-config-printer use PolicyKit
cups-smb-backend-1.0_12 CUPS backend for printing to Windows servers
curl-7.68.0 Command line tool and library for transferring data with URLs
cursor-dmz-theme-0.4.5 DMZ style neutral scalable cursor theme
cvsps-2.1_2 Create patchset information from CVS
cyrus-sasl-2.1.27_1 RFC 2222 SASL (Simple Authentication and Security Layer)
dav1d-0.6.0 Small and fast AV1 decoder
db5-5.3.28_7 Oracle Berkeley DB, revision 5.3
dbus-1.12.16 Message bus system for inter-application communication
dbus-glib-0.110 GLib bindings for the D-BUS messaging system
dconf-0.28.0 Configuration database system for GNOME
dconf-editor-3.28.0 Configuration database editor for GNOME
dejavu-2.37_1 Bitstream Vera Fonts clone with a wider range of characters
desktop-file-utils-0.24 Couple of command line utilities for working with desktop entries
dht-0.26 Mainline variant of Kademlia Distributed Hash Table (DHT)
djvulibre-3.5.27_2 DjVu base libraries and utilities
dmidecode-3.2 Tool for dumping DMI (SMBIOS) contents in human-readable format
doas-6.2p4 Simple sudo alternative to run commands as another user
docbook-1.5 Meta-port for the different versions of the DocBook DTD
docbook-sgml-4.5_1 DocBook SGML DTD
docbook-xml-5.0_3 DocBook XML DTD
docbook-xsl-1.79.1_1,1 XSL DocBook stylesheets
dotconf-1.3_1 Simple, powerful configuration-file parser
dpkg-1.19.7 Debian package maintenance system
drm-fbsd12.0-kmod-4.16.g20200221 DRM modules for the linuxkpi-based KMS components
droid-fonts-ttf-20131024_5 Droid typeface family
dvd+rw-tools-7.1_3 DVD burning software
e2fsprogs-1.45.5_4 Utilities & library to manipulate ext2/3/4 filesystems
e2fsprogs-libblkid-1.45.5 Blkid library from e2fsprogs package
e2fsprogs-libss-1.45.5 Command-line interface parsing library from e2fsprogs
e2fsprogs-libuuid-1.45.5 UUID library from e2fsprogs package
en-aspell-2018.04.16.0 Aspell English dictionaries
en-hunspell-2019.10.06 English hunspell dictionaries
enchant-1.6.0_9 Dictionary/spellchecking framework
enchant2-2.2.3_4 Dictionary/spellchecking framework
encodings-1.0.5,1 X.Org Encoding fonts
espeak-1.48.04_7 Software speech synthesizer
etc_os-release-0.1_2 Operating system identification file
evince-lite-3.28.5_11 GNOME 3 multi-format document viewer without the GNOME dependencies
exiv2-0.27.2,1 Exif, IPTC, and XMP metadata manipulation library and tools
expat-2.2.8 XML 1.0 parser written in C
faad2-2.8.8,1 MPEG-2 and MPEG-4 AAC audio decoder
ffmpeg-4.2.2_9,1 Realtime audio/video encoder/converter and streaming server
ffmpegthumbnailer-2.2.0_10 Lightweight video thumbnailer that can be used by file managers
fftw3-3.3.8_5 Fast C routines to compute the Discrete Fourier Transform
fftw3-float-3.3.8_5 Fast Discrete Fourier Transform (Single Precision C Routines)
firefox-74.0_5,1 Web browser based on the browser portion of Mozilla
fish-3.1.0 User friendly command line shell
flac-1.3.3 Free lossless audio codec
font-adobe-100dpi-1.0.3_4 X.Org Adobe 100dpi font
font-adobe-75dpi-1.0.3_4 X.Org Adobe 75dpi font
font-adobe-utopia-100dpi-1.0.4_4 X.Org Adobe Utopia 100dpi font
font-adobe-utopia-75dpi-1.0.4_4 X.Org Adobe Utopia 75dpi font
font-adobe-utopia-type1-1.0.4_4 X.Org Adobe Utopia Type1 font
font-alias-1.0.3_3 X.Org Font aliases
font-arabic-misc-1.0.3_4 X.Org miscellaneous Arabic fonts
font-awesome-5.12.1 Suite of pictographic icons from Font Awesome (free version)
font-bh-100dpi-1.0.3_4 X.Org Bigelow Holmes 100dpi font
font-bh-75dpi-1.0.3_4 X.Org Bigelow Holmes 75dpi font
font-bh-lucidatypewriter-100dpi-1.0.3_4 X.Org Bigelow Holmes Lucida TypeWriter 100dpi font
font-bh-lucidatypewriter-75dpi-1.0.3_4 X.Org Bigelow Holmes Lucida TypeWriter 75dpi font
font-bh-ttf-1.0.3_4 X.Org Bigelow & Holmes TTF font
font-bh-type1-1.0.3_4 X.Org Bigelow Holmes Type1 font
font-bitstream-100dpi-1.0.3_4 X.Org Bitstream Vera 100dpi font
font-bitstream-75dpi-1.0.3_4 X.Org Bitstream Vera 75dpi font
font-bitstream-type1-1.0.3_4 X.Org Bitstream Vera Type1 font
font-cronyx-cyrillic-1.0.3_4 X.Org Cronyx Cyrillic font
font-cursor-misc-1.0.3_4 X.Org miscellaneous Cursor fonts
font-daewoo-misc-1.0.3_4 X.Org miscellaneous Daewoo fonts
font-dec-misc-1.0.3_4 X.Org miscellaneous Dec fonts
font-ibm-type1-1.0.3_4 X.Org IBM Type1 font
font-isas-misc-1.0.3_4 X.Org miscellaneous ISAS fonts
font-jis-misc-1.0.3_4 X.Org miscellaneous JIS fonts
font-micro-misc-1.0.3_4 X.Org miscellaneous Micro fonts
font-misc-cyrillic-1.0.3_4 X.Org miscellaneous Cyrillic font
font-misc-ethiopic-1.0.3_4 X.Org miscellaneous Ethiopic font
font-misc-meltho-1.0.3_4 X.Org miscellaneous Meltho font
font-misc-misc-1.1.2_4 X.Org miscellaneous Misc fonts
font-mutt-misc-1.0.3_4 X.Org miscellaneous Mutt fonts
font-schumacher-misc-1.1.2_4 X.Org miscellaneous Schumacher fonts
font-screen-cyrillic-1.0.4_4 X.Org Screen Cyrillic font
font-sony-misc-1.0.3_4 X.Org miscellaneous Sony fonts
font-sun-misc-1.0.3_4 X.Org miscellaneous Sun fonts
font-winitzki-cyrillic-1.0.3_4 X.Org Winitzki Cyrillic font
font-xfree86-type1-1.0.4_4 X.Org XFree86 Type1 font
fontconfig-2.13.1_1,1 XML-based font configuration API for X Windows
fonts-indic-2.1.5_4 The Lohit family of Indic fonts
foomatic-db-20191209 Database for integrating printer drivers with common spoolers
foomatic-db-engine-4.0.13,2 Foomatic database engine
foomatic-db-hpijs-1.4 Foomatic data for the HPIJS printer drivers
freedesktop-sound-theme-0.8 Sound theme based on the FreeDesktop specification
freeglut-3.0.0_2 open source implementation of the GLUT library
freeimage-3.18.0_1 Simple C/C++ bitmap graphics library
freetype2-2.10.1 Free and portable TrueType font rendering engine
fribidi-0.19.7 Free Implementation of the Unicode Bidirectional Algorithm
ftgl-2.1.3.r5_6,1 OpenGL FreeType fonts rendering library
fusefs-ext2-0.0.10_2 FUSE module to mount ext2, ext3 and ext4 with read write support
fusefs-libs-2.9.9_1 FUSE allows filesystem implementation in userspace
fusefs-ntfs-2017.3.23 Mount NTFS partitions (read/write) and disk images
fusefs-simple-mtpfs-0.3.0_5 Simple MTP fuse filesystem driver
gamin-0.1.10_10 File and directory monitoring system
garcon-0.6.4_2 Freedesktop compliant menu library
gbi-7.0 GBI is the GhostBSD front end user interface for pc-sysinstall.
gcc9-9.2.0_1 GNU Compiler Collection 9
gconf2-3.2.6_5 Configuration database system for GNOME
gcr-3.28.0 Library for bits of crypto UI and parsing
gdbm-1.18.1_1 GNU database manager
gdk-pixbuf2-2.40.0 Graphic library for GTK+
geoclue-2.5.5 D-Bus service that provides location information
gettext-runtime-0.20.1 GNU gettext runtime libraries and programs
gettext-tools-0.20.1_1 GNU gettext development and translation tools
gexiv2-0.12.0_1 GObject-based wrapper around Exiv2 library
ghostbsd-common-settings-4.6 GhostBSD common settings in installed mode
ghostbsd-drivers-18.12 GhostBSD default pkg
ghostbsd-icons-1.7 GhostBSD icons for GTK DE
ghostbsd-pkg-conf-20.03.01 GhostBSD pkg configuration file
ghostbsd-utils-18.12 GhostBSD util tools
ghostbsd-wallpapers-19.09 GhostBSD wallpaper colection
ghostbsd-xfce-settings-3.0 GhostBSD xfce settings in installed mode
ghostbsd-xfce-themes-1.0 GhostBSD themes for mate flavour
ghostscript9-agpl-base-9.51 PostScript and PDF interpreter
ghostscript9-agpl-x11-9.51 PostScript and PDF interpreter, X11 support
giflib-5.2.1 Tools and library routines for working with GIF images
git-2.25.1 Distributed source code management tool
gl2ps-1.4.0 C library providing vector output for OpenGL applications
glew-2.1.0 OpenGL Extension Wrangler Library
glib-2.56.3_7,1 Some useful routines of C programming (current stable version)
glib-networking-2.56.1_2 Network-related giomodules for glib
glibmm-2.56.0_2,1 C++ interfaces for glib2
gmime30-3.2.5 Library (written in C) for parsing and creating messages using MIME
gmp-6.2.0 Free library for arbitrary precision arithmetic
gnome-autoar-0.2.4 Glib wrapper around libarchives
gnome-desktop-3.28.2 Additional UI API for GNOME 3
gnome-keyring-3.28.2_2 Program that keeps passwords and other secrets
gnome-menus-3.13.3_1 Implementation of the FreeDesktop Desktop Menu Spec
gnome-mount-0.8_13 Front-end to mount, umount, and eject using HAL
gnome-online-accounts-3.28.0_2 Interface provider to access the user's online accounts
gnome_subr-1.0_1 Common startup and shutdown subroutines used by GNOME scripts
gnupg-2.2.19 Complete and free PGP implementation
gnutls-3.6.12 GNU Transport Layer Security library
gobject-introspection-1.56.1,1 Generate interface introspection data for GObject libraries
gpgme-1.13.1 Library to make access to GnuPG easier
gpgme-cpp-1.13.1 Gpgme C++ bindings
gpgme-qt5-1.13.1 Gpgme Qt5 bindings
gpu-firmware-kmod-g20200130 Firmware modules for the linuxkpi-based KMS components
grantlee5-5.2.0_1 String template engine for Qt 5
graphene-1.10.0 Optimizations for speeding up vector operations
graphite2-1.3.13_1 Rendering capabilities for complex non-Roman writing systems
greybird-theme-3.22.11 Gtk and xfwm4 themes for the Xfce Desktop
groff-1.22.4_3 Software typesetting package
gsettings-desktop-schemas-3.28.1 Collection of globally shared GSetting schemas
gsfonts-8.11_8 Standard Fonts for Ghostscript
gsl-2.6 The GNU Scientific Library - mathematical libs
gstreamer-0.10.36_6 Development framework for creating media applications
gstreamer-plugins-0.10.36_12,3 GStreamer written collection of plugins handling several media types
gstreamer-plugins-good-0.10.31_3,3 Good gstreamer-plugins
gstreamer1-1.16.2 Media applications framework
gstreamer1-libav-1.16.2 GStreamer plug-in with many audio/video decoders/encoders
gstreamer1-plugins-1.16.2 GStreamer written collection of plugins handling several media types
gstreamer1-plugins-a52dec-1.16.2 GStreamer ATSC A/52 stream aka AC-3 (dvd audio) plugin
gstreamer1-plugins-bad-1.16.2 GStreamer-plugins that need more quality, testing or documentation
gstreamer1-plugins-cdparanoia-1.16.2 GStreamer CDDA extraction (aka audio ripping) plugin
gstreamer1-plugins-core-1.16 Core set of typical audio and video GStreamer plugins
gstreamer1-plugins-dts-1.16.2 GStreamer dts audio decode plugin
gstreamer1-plugins-dvdread-1.16.2 GStreamer DVD access plugin with libdvdread
gstreamer1-plugins-flac-1.16.2 GStreamer free lossless audio encoder/decoder plugin
gstreamer1-plugins-gl-1.16.2 GStreamer GL graphics plugin
gstreamer1-plugins-good-1.16.2 GStreamer-plugins good-quality plug-ins
gstreamer1-plugins-jpeg-1.16.2 GStreamer jpeg encoder/decoder plugin
gstreamer1-plugins-lame-1.16.2 GStreamer High-quality free mp3 encode plugin
gstreamer1-plugins-mpg123-1.16.2 GStreamer MPEG Layer 1, 2, and 3 plugin
gstreamer1-plugins-neon-1.16.2 GStreamer neon http source plugin
gstreamer1-plugins-ogg-1.16.2 GStreamer Ogg bitstream plugin
gstreamer1-plugins-pango-1.16.2 GStreamer pango textoverlay plugin
gstreamer1-plugins-png-1.16.2 GStreamer png plugin
gstreamer1-plugins-resindvd-1.16.2 GStreamer resindvd DVD playback plugin
gstreamer1-plugins-soup-1.16.2 GStreamer soup based http input plugin
gstreamer1-plugins-theora-1.16.2 GStreamer theora plugin
gstreamer1-plugins-ugly-1.16.2 GStreamer-plugins set of good-quality plug-ins that might have distribution problems
gstreamer1-plugins-vorbis-1.16.2 GStreamer vorbis encoder/decoder plugin
gtar-1.32 GNU version of the traditional tape archiver
gtk-murrine-engine-0.98.2_5 Murrine GTK+ 2.x cairo based engine
gtk-update-icon-cache-2.24.32 Gtk-update-icon-cache utility from the Gtk+ toolkit
gtk2-2.24.32 Gimp Toolkit for X11 GUI (previous stable version)
gtk3-3.24.10_1 Gimp Toolkit for X11 GUI (current stable version)
gtk3-unico-engine-1.0.2_2 Gtk+ 3.0 engine
gtkmm24-2.24.5_1 C++ wrapper for Gtk+
gtkmm30-3.22.2 C++ wrapper for Gtk+3
gtksourceview3-3.24.8_3 Text widget that adds syntax highlighting to the GtkTextView widget
gtkspell-2.0.16_6 GTK+ 2 spell checking component
gvfs-1.30.4_3 GNOME virtual file system
hal-0.5.14_34 Hardware Abstraction Layer for simplifying device access
harfbuzz-2.6.4 OpenType text shaping engine
harfbuzz-icu-2.6.4_1 Harfbuzz ICU support
hicolor-icon-theme-0.17 High-color icon theme shell from the FreeDesktop project
hunspell-1.7.0_2 Improved spell-checker for Hungarian and other languages
hyphen-2.8.8 Library for high quality hyphenation and justification
iceauth-1.0.8_2 ICE authority file utility for X
icu-66.1,1 International Components for Unicode (from IBM)
indexinfo-0.3.1 Utility to regenerate the GNU info page index
inkscape-0.92.4_14 Full featured open source SVG editor
irrlicht-1.8.4_2 High performance realtime 3D engine
iso-codes-4.2 Lists of the country, language, and currency iso names
iso8879-1986_3 Character entity sets from ISO 8879:1986 (SGML)
jansson-2.12 C library for encoding, decoding, and manipulating JSON data
jasper-2.0.16_1 Implementation of the codec specified in the JPEG-2000 standard
jbig2dec-0.17 Decoder implementation of the JBIG2 image compression format
jbigkit-2.1_1 Lossless compression for bi-level images such as scanned pages, faxes
jpeg-turbo-2.0.4 SIMD-accelerated JPEG codec which replaces libjpeg
json-glib-1.4.4 JSON (RFC 4627) interface for Glib
jsoncpp-1.9.2 JSON reader and writer library for C++
keybinder-0.3.1_4 Library for registering keyboard shortcuts
keybinder-gtk3-0.3.2 Library for registering keyboard shortcuts
kf5-attica-5.67.0 Open Collaboration Services API library KDE5 version
kf5-breeze-icons-5.67.0 Breeze icon theme for KDE
kf5-extra-cmake-modules-5.67.0 Extra modules and scripts for CMake
kf5-kactivities-5.67.0 KF5 runtime and library to organize work in separate activities
kf5-karchive-5.67.0 KF5 library that provides classes for handling archive formats
kf5-kauth-5.67.0 KF5 abstraction to system policy and authentication features
kf5-kbookmarks-5.67.0 KF5 library for bookmarks and the XBEL format
kf5-kcmutils-5.67.0_1 KF5 utilities for working with KCModules
kf5-kcodecs-5.67.0 KF5 library for string manipulation
kf5-kcompletion-5.67.0 KF5 text completion helpers and widgets
kf5-kconfig-5.67.0 KF5 widgets for configuration dialogs
kf5-kconfigwidgets-5.67.0 KF5 widgets for configuration dialogs
kf5-kcoreaddons-5.67.0 KF5 addons to QtCore
kf5-kcrash-5.67.0 KF5 library to handle crash analysis and bug report from apps
kf5-kdbusaddons-5.67.0 KF5 addons to QtDBus
kf5-kdeclarative-5.67.0 KF5 library providing integration of QML and KDE Frameworks
kf5-kded-5.67.0 KF5 extensible daemon for providing system level services
kf5-kdelibs4support-5.67.0 KF5 porting aid from KDELibs4
kf5-kdesignerplugin-5.67.0 KF5 integration of Frameworks widgets in Qt Designer/Creator
kf5-kdewebkit-5.67.0 KF5 library providing integration of QtWebKit
kf5-kdoctools-5.67.0 KF5 documentation generation from docbook
kf5-kemoticons-5.67.0 KF5 library to convert emoticons
kf5-kglobalaccel-5.67.0 KF5 library to add support for global workspace shortcuts
kf5-kguiaddons-5.67.0 KF5 addons to QtGui
kf5-ki18n-5.67.0 KF5 advanced internationalization framework
kf5-kiconthemes-5.67.0 KF5 library for handling icons in applications
kf5-kinit-5.67.0 KF5 process launcher to speed up launching KDE applications
kf5-kio-5.67.0 KF5 resource and network access abstraction
kf5-kirigami2-5.67.1 QtQuick based components set
kf5-kitemmodels-5.67.0 KF5 models for Qt Model/View system
kf5-kitemviews-5.67.0 KF5 widget addons for Qt Model/View
kf5-kjobwidgets-5.67.0 KF5 widgets for tracking KJob instance
kf5-knewstuff-5.67.0 KF5 library for downloading application assets from the network
kf5-knotifications-5.67.0 KF5 abstraction for system notifications
kf5-knotifyconfig-5.67.0 KF5 configuration system for KNotify
kf5-kpackage-5.67.0 KF5 library to load and install packages