मैं tmux में अन्य सभी उपयोगकर्ताओं को कैसे डिस्कनेक्ट करूं?


216

मुझे एक tmux सेशन मिला है जहाँ विंडो बहुत छोटी है क्योंकि कुछ उपयोगकर्ता कहीं न कहीं जुड़ा हुआ है।

मैं सभी जुड़े हुए उपयोगकर्ताओं को डिस्कनेक्ट करने के लिए tmux कैसे बताऊं?

जवाबों:


317

आप चुन सकते हैं <prefix> D (जहां उपसर्ग C-bडिफ़ॉल्ट रूप से है) , किस क्लाइंट को अलग करने के लिए चुना गया; यह उनके द्वारा उपयोग की गई कॉल / लाइनों के साथ-साथ अंतिम उपयोग किए गए समय को भी सूचीबद्ध करेगा। नोट करें अपरकेस D, यानी Shift+ d

आप tmux के detach-clientविकल्प का भी उपयोग कर सकते हैं

 detach-client [-P] [-a] [-s target-session] [-t target-client]
               (alias: detach)
         Detach the current client if bound to a key, the client specified
         with -t, or all clients currently attached to the session speci-
         fied by -s.  The -a option kills all but the client given with
         -t.  If -P is given, send SIGHUP to the parent process of the
         client, typically causing it to exit.

या तो <prefix>:बाद में detach [options]या कमांड लाइन पर tmux के साथ अंदर सेtmux detach [options]


17
<prefix> Dसावधान रहो, बड़ी डी यहाँ महत्वपूर्ण है !! (मुझे यह महसूस करने से पहले अपने वर्तमान ग्राहक को निराश करने में कुछ निराशा होती है: डी)
साइमन सी।

5
धन्यवाद। मैं आमतौर पर [Ctrl-b] [D] [up] [दर्ज]
आकर्षित LeSueur

मुझे लगता है कि मैं prefix+ 'डी' का उपयोग शुरू करने जा रहा हूं इसलिए मैं इसके बारे में नहीं भूलता। एक जादू की तरह काम किया।
user208145

9
Tmux सत्र में, tmux detach-client -aवर्तमान को छोड़कर अन्य सभी क्लाइंट्स को अलग कर देगा। मैं अक्सर गलत व्यवहार करता prefix-Dहूं इसलिए मैं इस दृष्टिकोण को पसंद करता हूं। मेरा भी एक फंक्शन है detachothers () { tmux detach-client -a;
PEDroArthur

... और इससे पहले कि आप शब्द भर में नहीं आए हैं, "मजसक्यूल" का अर्थ है "ऊपरी-मामला"।
लार्क्स

156

tmux a -dt <session-name>

a=attach
d=detach other clients (so only you can attach to this session)
t=target
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.