tmux 在 /tmp/tmux-*/default - Windows msys2 终端上没有服务器 运行

tmux no server running on /tmp/tmux-*/default - Windows msys2 terminal

我是 tmux 的新手,一直在尝试获得适合我的 .tmux.conf 并构建脚本来设置会话。在某个时候我开始收到此错误

no server running on /tmp/tmux-1065767/default

此消息仅在没有活动会话且我 运行 类似 tmux ls 的命令时出现。


我已经尝试 但我在 Windows 8 机器上并且 *nix 命令不工作而且我没能找到等价物。 link 中的相关部分是使用 ps 获取 PID 并使用 kill -SIGUSR1/tmp/tmux-*/default:

上启动服务器 运行ning
% ps aux | grep -w [t]mux
root     14799  0.2  0.0  36020   488 ?        Ss   May08  51:30 tmux
% kill -USR1 14799
% tmux ls
<list of tmux sessions>

如果您知道在 msys2 或 Git Bash 终端中与上述 Windows 8 等效的命令,我将不胜感激。


如果我的 .tmux.conf 或安装脚本有问题,我将它们包括在下面。

配置文件:

# allow names to stick
set-option -g allow-rename off

# use the lovely fish
set-option -g default-shell /usr/bin/fish
set -g default-command /usr/bin/fish

# modify the status bar
set -g status-bg colour233
set -g status-fg colour40
set-option -g status-position top

# new prefix
unbind C-b
set-option -g prefix C-Space

# don't punish slow release of control when moving windows
bind C-n next-window
bind C-p previous-window

# alt close windows
bind X confirm kill-window

# split panes using v and s
bind v split-window -h
bind s split-window -v
unbind '"'
unbind %

# reload config file
bind r source-file ~/.tmux.conf

# hopefully help tmux believe in colourful vim
set -g default-terminal "xterm-256color"

# switch panes using Alt-arrow without prefix
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D

# clear pane title
bind ] select-pane -T ''

设置脚本:

#! /bin/bash
# For setting up BrokenFlows' default tmux work space

# for checking if the session exists
desired="dfws"
existing=`tmux ls | grep -o $desired`

if [ "$existing" == "$desired" ] # don't wind up if it's already there
then
    tmux attach-session -t $desired
else
    # if it wasn't there then setup as below

    tmux new-session -s $desired -d # name "DeFault WorkSpace" and detach
# called from cli but affecting most recent session:
    tmux rename-window "home" 

    # split window 0
    tmux split-window -v -p 38 # set bottom to 38% height
    tmux split-window -h -p 60 # set right to 60% width
    tmux split-window -h -p 51 # set right to 51% width

    # setup commands in window 0
    tmux clock-mode -t 0.1 # time in the bottom left pane
    tmux send-keys -t 0.2 'cpu' Enter # % cpu in bottom middle pane
    tmux send-keys -t 0.3 'mem' Enter # MByte mem in bottom right pane

    # open to-do list in window 1
    tmux new-window -n "vim" 
    tmux send-keys -t "vim" 'vim ~/Desktop/Today.taskpaper' Enter

    # go to home window and pane
    tmux select-window -t 0
    tmux select-pane -t 0

    # name panes in window 0
    sleep 2
    tmux set pane-border-status top
    tmux set pane-border-format "#T"
    tmux select-pane -t 0 -T ""
    tmux select-pane -t 0 -T ''
    tmux select-pane -t 1 -T 'Time'
    tmux select-pane -t 2 -T '% CPU'
    tmux select-pane -t 3 -T 'MByte Memory'

    # attach to session now it is set up
    tmux attach-session -d
fi


我希望能够恢复到默认行为,其中 "no server running" 输出被对 tmux ls.

等命令的正确响应所取代

我预计这需要 pskill -SIGUSR1 [PID] 在 Windows 8 上的等效命令,在 msys2 或 Git Bash 终端中。

发送 SIGUSR1 到 tmux 只有当 tmux 服务器已经 运行 但某些东西已经从 /tmp 删除了它的套接字时才有用。你确定是这样吗?

如果没有tmux服务器运行,你只需要用"tmux new"开始一个新的。