0

I use only text terminals in ubuntu server.

Especially at boot time :)

I've turned off plymouth splash screen and I get boot messages on terminal 1. But after couple of messages, active terminal is swiching to terminal 7. (then messages with fsck and * Starting and * Stopping services) and then i'm switched back to terminal 1 with login prompt. Why?

I wan to to see all messages on terminal 1. Why video terminal is even loaded? Why messages are displayed there?

How to display everything on 1st terminal?

Tereska
  • 103
  • 2

1 Answers1

1

You can change this with a kernel parameter:

root=/dev/sda1 console=ttyS0,57600n8 console=tty1

will make all messages go to tty1. You need to add this to Grub and How do I add a kernel boot parameter? explains that.

Rinzwind
  • 299,756
  • I've added: GRUB_CMDLINE_LINUX="console=tty1" in /etc/default/grub and then: sudo update-grub && sudo reboot

    And it Works! Thank You!

    – Tereska Apr 13 '14 at 19:13