On Mon, Oct 06, 2014 at 04:26:43AM +0200, [email protected] wrote > Hi, > > I have two computers: A small embedded system (beaglebone black) > running Gentoo with commandline interface and my PC running Gentoo > with X and using urxvt for commandline actions. > > On both TERM is set to > xterm-256color > and both are using zsh as shell. > > On the beaglebone black I cannot use tmux because C-b is not > recognized as command prefix. > On the PC I cannot use screen because C-a is not > recognized as command prefix. > > I would like to have the choice on both system what terminal > multiplexer to use. > > > > What can cause this weird behaviour? How can I fix it?
That's usually controlled by the screenrc file. Note that you can have /etc/screenrc and separate ~/.screenrc for each user. ~/.screenrc should override /etc/screenrc. If you don't have ~/.screenrc, screen will default to /etc/screenrc. If you want an instance of screen to start with a nonstandard config file location, use.. screen -c <configfile> The setting to change, in whichever file you use, is... # # Set C-a as command prefix escape ^Aa # # Set C-b as command prefix escape ^Bb -- Walter Dnes <[email protected]> I don't run "desktop environments"; I run useful applications

