21

In previous versions of Ubuntu, Ctrl+Alt+F1 through F6 opened up virtual consoles. On Ubuntu Gnome 17.04 Ctrl+Alt+F1 opens another GUI and the others do nothing.

How do I restore the old behavior?

Pablo Bianchi
  • 17,371
jumpnett
  • 6,185

3 Answers3

17

I'm running Kubuntu v16.04 - not the version that you are - but I had to modify /etc/systemd/logind.conf, uncomment NAutoVTs=6 and restart.

Also, check /etc/default/console-setup, the line: ACTIVE_CONSOLES="/dev/tty[1-6]"

1

I was trying to figure this out for Ubuntu 22.04, but it appears the arrangement of consoles has changed from what it was historically. Ctrl+Alt+F1 appears to be a persistent session for the login screen (to allow switching between multiple users, I think), Ctrl+Alt+F2 is the logged-in GUI session, and then Ctrl+Alt+F3 through Ctrl+Alt+F6 are additional consoles (though I suspect those may get consumed if more than one GUI user is logged in).

1

> the others do nothing.

On 17.10, the virtual terminals are there but invisible! You can type blindly into them and they work:

Alt-Ctrl-F4   # switch to a VT
Enter
username    # typing blindly into black screen...
password
date >/tmp/foo
Alt-Ctrl-F1  # switch back to Wayland GUI
ls -l /tmp/foo  # it's there
jimav
  • 518