How can I add more TTYs to Ubuntu 16.04?

6

1

The question is basically the title. I tried Ctr+Alt+F7 but nothing happens. I use all six of my currently available virtual terminals and need more. How can I add more TTYs?

Tty Sessions OP

Posted 2016-10-05T16:52:12.863

Reputation: 61

1

Have you considered terminal multiplexer like tmux (link)? Few years ago I would ask your question myself. Now I feel naked without tmux.

– Kamil Maciorowski – 2016-10-05T17:10:03.583

Answers

4

Ubuntu 16.04 per default uses systemd. So you could could e.g. set

NAutoVTs=10
ReserveVT=10

in /etc/systemd/logind.conf to increase the number of ttys to 10.

However, as Kamil suggested, you might want to use a tool like tmuxor screen to multiplex terminals.

aventurin

Posted 2016-10-05T16:52:12.863

Reputation: 236