Eu não acho que você pode fazer isso em tty6
porque:
tty6 is especially reserved for auto-spawned gettys and unavailable to other subsystems such as X[3]. This is done in order to ensure that there's always a way to get a text login, even if due to fast user switching X took possession of more than 5 VTs.
Para mais informações, você pode conferir aqui .
Mas você pode tentar isso em tty5
, por exemplo. Você pode criar o seguinte serviço (testo.service ou o que você decidir) em /lib/systemd/system/
na maioria das distribuições, mas em openSUSE
eu acho que é /usr/lib/systemd/system
:
[Unit]
Description=top on tty5
[Service]
Type=simple
ExecStart=/usr/bin/top
ExecStop=/bin/kill -HUP ${MAINPID}
StandardInput=tty
StandardOutput=tty
TTYPath=/dev/tty5
Restart=always
RestartSec=2
[Install]
WantedBy=getty.target
E então:
systemctl enable testo.service