A documentação do systemd e várias fontes online estão declarando que o systemd deve iniciar (por padrão) o alvo "especial" chamado "default.target". É possível alterar isso por systemctl set-default, que basicamente faz um link simbólico de default.target para o destino desejado.
No entanto, no meu sistema, não existe esse arquivo. Sem /etc/systemd/system/default.target, sem /usr/lib/systemd/system/default.target (na verdade, este arquivo não existe em todo o sistema). O sistema ainda está inicializando. Minha pergunta é como pode ser?
(Claro que eu mesmo poderia fazer um link simbólico, só quero saber como é possível definir um default sem default.target)
Informação adicional:
# systemctl get-default
graphical.target
Portanto, meu destino padrão é graphic.target. Mas onde (e como) é definido?
# find /usr/lib -iname "default.target" # no results
# find /etc -iname "default.target" # no results
# lsb_release -a
LSB Version: n/a
Distributor ID: Gentoo
Description: Gentoo Base System release 2.4.1
Release: 2.4.1
Codename: n/a
# systemctl list-units --type=target
UNIT LOAD ACTIVE SUB DESCRIPTION
basic.target loaded active active Basic System
getty.target loaded active active Login Prompts
graphical.target loaded active active Graphical Interface
local-fs-pre.target loaded active active Local File Systems (Pre)
local-fs.target loaded active active Local File Systems
machines.target loaded active active Containers
multi-user.target loaded active active Multi-User System
network-online.target loaded active active Network is Online
network.target loaded active active Network
nss-lookup.target loaded active active Host and Network Name Lookups
paths.target loaded active active Paths
remote-fs.target loaded active active Remote File Systems
slices.target loaded active active Slices
sockets.target loaded active active Sockets
sound.target loaded active active Sound Card
swap.target loaded active active Swap
sysinit.target loaded active active System Initialization
timers.target loaded active active Timers
LOAD = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB = The low-level unit activation state, values depend on unit type.
18 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.
O Gentoo mudou a localização dos arquivos systemd para
/lib/systemd
julho de 2017. No meu sistema, posso ver o link simbólico padrão em/lib/systemd/system
:Se você adicionar um link simbólico
/etc/systemd/system
(comosystemctl set-default
faz), ele substituirá a configuração padrão da distribuição.