Can you do a full installation of all Packages?

Hello,
the question is:
Is it possible to do a full install of all packages without causing dependency issues and a massive slowdown of the system? For example, I would expect the system startup time to increase massively.
 
Startup time is one minute more.
You must be careful not to end up in conflicting packages.
Sometimes installing one package can trigger de-install of 500 packages.
So care must be taken but there is no golden rule. Sometimes it's experimenting.
This is my rc.conf,
Code:
dumpon_enable="YES"
linux_enable="YES"
clear_tmp_enable="YES"
moused_enable="YES"
devd_enable="YES"
zpool_enable="YES"
zfs_enable="YES"        # Automaticly mount zfs filesystems
fsck_y_enable="YES"     # Set to YES to do fsck -y if the initial preen fails.
rtsold_enable="YES"
ip6addrctl_enable="YES"            # Set to YES to enable default address selection
ip6addrctl_verbose="NO"    # Set to YES to enable verbose configuration messages
ip6addrctl_policy="ipv6_prefer"    # Set to YES to enable default address selection
moused_enable="YES"
accounting_enable="YES"
clear_tmp_enable="YES"   # Clear /tmp at startup.
devfs_enable="YES"
dbus_enable="YES"
hald_enable="YES"
jail_enable="YES"
ntpdate_enable="YES"     # Run ntpdate to sync time on boot (or NO).
local_unbound_enable="YES"
syslog_ng_enable="YES"
fcron_enable="YES"
ipfw_enable="YES"
smtpd_enable="YES"
dovecot_enable="YES"
cupsd_enable="YES"
smartd_enable="YES"
postgresql_enable="YES"
influxd_enable="YES"
mysql_enable="YES"
nginx_enable="YES"
apache24_enable="YES"
php_fpm_enable="YES"
monit_enable="YES"
netdata_enable="YES"
telegraf_enable="YES"
prometheus_enable="YES"
grafana_enable="YES"
mrtg_daemon_enable="YES"
cacti_enable="YES"
munin_node_enable="YES"
my_munin_enable="YES"
my_cacti_enable="YES"
my_jaila_enable="YES"
my_jailb_enable="YES"
my_cups_exporter_enable="YES"
my_gstat_exporter_enable="YES"
my_node_exporter_enable="YES"
my_ping_exporter_enable="YES"
my_postgres_exporter_enable="YES"
my_memory2_enable="YES"
mrtg_daemon_enable="YES"
sndiod_enable="YES"
snmpd_enable="YES"
minidlna_enable="YES"
 
Is it possible to do a full install of all packages without causing dependency issues and a massive slowdown of the system?
There are 58.000+ packages, there are going to be conflicts. For example you cannot install MySQL 8.0 and MariaDB 10.6 on the same machine. Then there's the issue of conflicting dependencies that could be problematic. So no, it's not possible to install all available packages on one machine. Why would you want to this anyway?

For example, I would expect the system startup time to increase massively.
When you install a package that has a service, that service is always off by default. So no, there shouldn't be any increase in startup time. Unless you also enable all those services. But again, why would you want to do such a thing?
 
Back
Top