2

I love to use the byobu tool to manage multiple ssh sessions. It works extremely well in Ubuntu, but when I manually install it on Amazon Linux (and other distros) it often comes up with two bars rather than a single one as demonstrated in the screenshot below (selected in red):

enter image description here

How can I make it a single bar like the terminal below in Ubuntu?

Programster
  • 2,257
  • 9
  • 23
  • 35

1 Answers1

0

I found that the best solution was to run the following two commands:

sudo yum install tmux -y
byobu-select-backend

Then select the tmux backend instead of screen. This achieves the desired effect.

Programster
  • 2,257
  • 9
  • 23
  • 35