Как получить xterm-подобные разделенные окна в Debian (Ubuntu)

2139
diplosaurus

Я хотел бы добиться этого эффекта в Linux. По сути, я хотел бы, чтобы vim был открыт слева и имел командную строку справа, чтобы, возможно, вести журнал ошибок.

Ubuntu 14.04 на моем рабочем столе, но CentOS на большинстве коробок, в которые я вешаюсь, хотя я сомневаюсь в этом.

Как получить вертикальное разделение терминала в Mac для выполнения разных действий?

0

1 ответ на вопрос

0
Lawrence

You can use the screen or tmux programs on the CentOS servers to do this.

For example - for screen -
After you login, you run screen (you may have to install it)

Then hit CTRL a and then CTRL | <-- that's a pipe
This will split the screen into 2
Then hit CTRL a and then CTRL tab to switch to the new section
Then hit CTRL a and then CTRL c to create a new session in the new section.

The end result should be sessions side by side

Reference - http://www.pixelbeat.org/lkdb/screen.html (screen hotkeys)


Alternatively, on your Ubuntu desktop, you could get a terminal program that can do screen splits. Terminator is one such terminal program, and you can split a screen by simply hitting CTRL+Shift+e

Похожие вопросы