답변:
현재 (기본) 설정을 시작점으로 사용할 수 있습니다.
tmux show -g | cat > ~/.tmux.conf
tmux stdout을 파일로 경로 재 지정할 때 알려진 버그로 인해 cat to pipe가 필요합니다.
tmux show -g | sed 's/^/set-option -g /' > ~/.tmux.conf
: 그것은 이미 모든 라인을 앞에 추가 할 것입니다set -g
cat
. 그냥하세요 tmux show -g > ~/.tmux.conf
. cat
이와 같이 사용 하는 것을 UUOC- "무용 한 사용 cat
"이라고합니다.
dpkg -L tmux
패키지에 설치된 파일을 보여주는 것처럼 패키지에 기본 tmux.conf가 포함되어 있지 않습니다. /etc/tmux.conf
~ / .tmux.conf 이전에 평가되는 사용 가능한 위치 (tmux를 사용하는 여러 사용자에게만 해당)입니다. 자신 만의 .conf 파일을 만들어야합니다. 예를 들어 (Google의 첫 번째 히트)을 살펴보십시오.
기본 /etc/tmux.conf
파일 이 없습니다 . 에서 예제 conf 파일로 시작 /usr/share/doc/tmux/examples
하거나 manual / web / etc를 볼 수 있습니다. 자신의 구성 파일을 만들 수 있습니다.
examples
디렉토리에는 다음 이 포함됩니다.
/usr/share/doc/tmux/examples/n-marriott.conf /usr/share/doc/tmux/examples/t-williams.conf /usr/share/doc/tmux/examples/vim-keys.conf /usr/share/doc/tmux/examples/h-boetes.conf /usr/share/doc/tmux/examples/screen-keys.conf
<filename>
디렉토리에서 이름 을 가진 파일을 찾으려면<directoryname>
다음 명령을 사용하십시오find <directory> -iname <filename>
..