64

My new server install looks odd: enter image description here

is there anyway to resize it to use the whole terminal window?

MaQleod
  • 13,258
HilarieAK
  • 785

6 Answers6

140

This means that there is another ssh or terminal client, other than yourself, connected to this session, which has a smaller window size than yours.

You can detach all clients but yourself, using this Byobu hotkey:

Alt-F6

Or you can run the script /usr/lib/byobu/include/tmux-detach-all-but-current-client

Full disclosure: I am the author and maintainer of Byobu.

9

An alternative to Alt-F6 is Prefix-Shift-D, where Prefix is your byobu escape command (typically Ctrl-a).

See more info here: https://stackoverflow.com/questions/22138211/how-do-i-disconnect-all-other-users-in-tmux.

ostrokach
  • 585
8

Alt-F6 did not work for me. But I found that I was using tmux. To detach the other window use a combination of list-clients and detach-client:

% tmux list-clients
/dev/pts/1: 0 [64x160 xterm] (utf8)
/dev/pts/39: 0 [39x143 xterm] (utf8)
% tmux detach-client -t /dev/pts/39

Since the 64x160 is larger, I figured that was my window while the other client was the smaller one.

Perennial
  • 231
3

Fantastic script! On OSX using byobu installed with Homebrew, it's (currently)

/usr/local/Cellar/byobu/5.92/lib/byobu/include/tmux-detach-all-but-current-client

presumably you'd modify the version number, but that's to give you an idea of how to find it

brew info byobu will tell you where byobu stores its lib etc files.

then just append the lib/byobu/include/tmux-detach-all-but-current-client to whatever that location is (in my case, /usr/local/Cellar/byobu/5.92/)

0

I tried both the script (tmux-detach-all-but-current-client) and alt-F6. None of them worked. The terminal only went fullscreen for a couple of seconds, then it went back to small size (like in the image in the original post). I also checked users with w, it was only me logged in.

What ended up working for me, was simply disabling Byobu and enabling Byobu again, with a logout/in in between. Like so:

byobu-disable
exit
Login again
byobu-enable

Screen is back to normal.

Mr Baloon
  • 111
-2

I got it to work sending the command via vim Sepcial chars on your preference keys on iterm2 \033[17;3~

here is image that show the configuration

Mureinik
  • 4,152