Friday, May 3, 2024
8
rated 0 times [  8] [ 0]  / answers: 1 / hits: 7928  / 2 Years ago, fri, may 13, 2022, 2:35:59

I've just installed Quantal as a fresh install, and want to set up Byobu as it was on my old system. In a previous version of byobu there was an option in byobu-config (via the F9 key) to create new windows which had a checkbox option to select if it was a startup option. The whole 'create new window' section of byobu-config is not there anymore!



I've tried adding the details of the windows I want to ~/.byobu/windows (below) but this has had no effect.



screen -t localhost bash
screen -t staging ssh dt123
screen -t fsuk1 ssh fs
screen -t php php -a
screen -t python bpython

More From » command-line

 Answers
7

As @Jorge Castro mentioned in a comment, the reason your ~/.byobu/windows configuration isn't working is because byobu is now based on tmux (the "Terminal Multiplexer"). As mentioned by @Hai Vu, there is a workaround that allows you to use screen as byobu's backend, but it isn't overly complicated to switch to tmux.



You'll want to edit the .tmux.conf file located in your user's .byobu folder (~/.byobu/.tmux.conf). Here you will want to write commands to construct your terminal windows using the commands found in the tmux manual. Here is a simple example that can help get you started:



new-window -ad -n Git
new-window -ad -n "Project Build/Run"
new-window -ad -n PostgreSQL


Here I have inserted three commands into the .tmux.conf file. As defined by the manual:




The configuration file is a set of tmux commands which are
executed in sequence when the server is first started.




So in this case, when you start Byobu, you should see three pre-created windows with the titles "Git", "Projected Build/Run", and "PostgreSQL" (from left to right). Hope this helps.


[#34441] Saturday, May 14, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
irripri

Total Points: 164
Total Questions: 111
Total Answers: 107

Location: South Georgia
Member since Sun, Aug 8, 2021
3 Years ago
irripri questions
Mon, Aug 29, 22, 03:19, 2 Years ago
Thu, Mar 30, 23, 01:56, 1 Year ago
Thu, Dec 30, 21, 08:53, 2 Years ago
;