如何找到我的 Linux(raspbian)安装中附带的 systemd 版本?
跑步时lsb_release -a,我获取linux(raspbian)版本信息如下
分销商 ID:Raspbian
描述:Raspbian GNU/Linux 9.1 (stretch)
发行版:9.1
代号:stretch
答案1
问它:
$ /sbin/init --version
systemd 123
$ systemctl --version
systemd 123
您还可以询问包管理器:
$ dpkg -l systemd
||/ Name Version Architecture Description
+++-=================-=============-=============-========================================
ii systemd 123-1 amd64 system and service manager
如果您认为文件可能已升级,您可以询问正在运行的进程:
$ busctl --system get-property org.freedesktop.systemd1 \
/org/freedesktop/systemd1 \
org.freedesktop.systemd1.Manager \
Version
s "123"