systemd如何改变默认 getty 数目?
时间:2015-01-10 13:16 来源:linux.it.net.cn 作者:IT网
添加一个新的 getty :
只需要在 getty.target.wants/ 目录下新建一个链接到 getty 的示例即可:
ln -sf /lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants/getty@tty9.service
systemctl daemon-reload
systemctl start getty@tty9.service
删除一个 getty :
直接删掉 getty.target.wants/ 目录下你不想要的哪个 getty 链接即可:
rm /etc/systemd/system/getty.target.wants/getty@tty5.service /etc/systemd/system/getty.target.wants/getty@tty6.service
systemctl daemon-reload
systemctl stop getty@tty5.service getty@tty6.service
systemd 不使用 /etc/inittab 文件。
(责任编辑:IT)
添加一个新的 getty :
只需要在 getty.target.wants/ 目录下新建一个链接到 getty 的示例即可:
ln -sf /lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants/getty@tty9.service
systemctl daemon-reload
systemctl start getty@tty9.service
删除一个 getty :
直接删掉 getty.target.wants/ 目录下你不想要的哪个 getty 链接即可:
rm /etc/systemd/system/getty.target.wants/getty@tty5.service /etc/systemd/system/getty.target.wants/getty@tty6.service
systemctl daemon-reload
systemctl stop getty@tty5.service getty@tty6.service
systemd 不使用 /etc/inittab 文件。
(责任编辑:IT) |