> Linux教程 > linux基础 >

systemd如何改变默认 getty 数目?

添加一个新的 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)