Por que o trabalho de origem do tmux não funciona? Comando Desconhecido [fechado]

0

Como posso corrigir esse problema? Este é o código e a saída que recebi. Este é o tmux 2.3 e o debian 8.9.

root@ns540540:/# tmux source ~/.tmux.conf
/root/.tmux.conf:1: unknown command: @plugin
/root/.tmux.conf:2: unknown command: assume-paste-time
/root/.tmux.conf:3: unknown command: base-index
/root/.tmux.conf:4: unknown command: bell-action
/root/.tmux.conf:5: unknown command: bell-on-alert
/root/.tmux.conf:6: unknown command: default-command
/root/.tmux.conf:7: unknown command: default-shell
/root/.tmux.conf:8: unknown command: destroy-unattached
/root/.tmux.conf:9: unknown command: detach-on-destroy
/root/.tmux.conf:10: unknown command: display-panes-active-colour
/root/.tmux.conf:11: unknown command: display-panes-colour
/root/.tmux.conf:12: unknown command: display-panes-time
/root/.tmux.conf:13: unknown command: display-time
/root/.tmux.conf:14: unknown command: history-limit
/root/.tmux.conf:15: unknown command: key-table
/root/.tmux.conf:16: unknown command: lock-after-time
/root/.tmux.conf:17: unknown command: lock-command
/root/.tmux.conf:18: unknown command: message-command-style
/root/.tmux.conf:19: unknown command: message-style
/root/.tmux.conf:20: unknown command: mouse
/root/.tmux.conf:21: unknown command: prefix
/root/.tmux.conf:22: unknown command: prefix2
/root/.tmux.conf:23: unknown command: renumber-windows
/root/.tmux.conf:24: unknown command: repeat-time
/root/.tmux.conf:25: unknown command: set-remain-on-exit
/root/.tmux.conf:26: unknown command: set-titles
/root/.tmux.conf:27: unknown command: set-titles-string
/root/.tmux.conf:28: unknown command: status
/root/.tmux.conf:29: unknown command: status-interval
/root/.tmux.conf:30: unknown command: status-justify
/root/.tmux.conf:31: unknown command: status-keys
/root/.tmux.conf:32: unknown command: status-left
/root/.tmux.conf:33: unknown command: status-left-length
/root/.tmux.conf:34: unknown command: status-left-style
/root/.tmux.conf:35: unknown command: status-position
/root/.tmux.conf:36: unknown command: status-right
/root/.tmux.conf:37: unknown command: status-right-length
/root/.tmux.conf:38: unknown command: status-right-style
/root/.tmux.conf:39: unknown command: status-style
/root/.tmux.conf:40: unknown command: update-environment
/root/.tmux.conf:41: unknown command: visual-activity
/root/.tmux.conf:42: unknown command: visual-bell
/root/.tmux.conf:43: unknown command: visual-silence
/root/.tmux.conf:44: unknown command: word-separators

Obrigado Max

    
por Max604 23.12.2017 / 09:53

1 resposta

1

Na tmux man page , ~/.tmux.conf é o local padrão para um arquivo de configuração tmux , para que ele seja lido e aplicado automaticamente quando você invocar tmux sem precisar especificá-lo de nenhuma maneira. Se você fizer quiser especificar explicitamente o arquivo de configuração, você usaria a opção -f :

$ tmux -f ~/.tmux.conf

O comando fornecido em seu tutorial é para recarregar ~/.tmux.conf em uma sessão já em execução. Pode ser executado como

tmux-session$ tmux source-file ~/.tmux.conf

ou digitando a sequência de comandos de escape do tmux (configurável, mas por padrão CTRL + B : ) seguido pelo comando source-file ~/.tmux.conf .

Se você quiser configurações aplicadas a todos os usuários, poderá defini-las em /etc/tmux.conf . Isso será lido automaticamente quando qualquer usuário iniciar tmux .

Se você quiser configurações aplicadas a um usuário em particular , defina-as em ~/.tmux.conf . Isso será lido automaticamente quando esse usuário iniciar tmux e será aplicado sobre (sobrescrevendo) quaisquer preferências globais de /etc/tmux.conf .

Você não deve, como usuário comum, obter /root/.tmux.conf . Se você quiser que esse usuário tenha as mesmas configurações configuradas anteriormente para root , torne-as configurações globais ou copie o /root/.tmux.conf para ~/.tmux.conf para que o usuário tenha sua cópia pessoal a configuração tmux .

    
por 23.12.2017 / 11:42

Tags