क्या एक रूट शेल को 'टाइम आउट' करने का एक तरीका है (उदाहरण के लिए, gnome-terminal
) ताकि एक निश्चित समय के बाद कोई कमांड जारी न हो, शेल बाहर निकल जाए?
मैं एक ऐसे समाधान की तलाश कर रहा हूं जो bash
फेडोरा और ksh
ओपनबीएसडी पर काम करता है ।
क्या एक रूट शेल को 'टाइम आउट' करने का एक तरीका है (उदाहरण के लिए, gnome-terminal
) ताकि एक निश्चित समय के बाद कोई कमांड जारी न हो, शेल बाहर निकल जाए?
मैं एक ऐसे समाधान की तलाश कर रहा हूं जो bash
फेडोरा और ksh
ओपनबीएसडी पर काम करता है ।
जवाबों:
आप TMOUT
चर को सेकंड में एक संख्या पर सेट कर सकते हैं, जिसे आप कमांड के रन न होने पर शेल से स्वचालित रूप से लॉग आउट करने से पहले प्रतीक्षा करना चाहते हैं।
मुझे पता है कि यह प्रश्न बाश और क्ष के संबंध में है। लेकिन मुझे लगा कि मैं रिकॉर्ड के लिए csh / tshsh के लिए कुछ ऐसा ही पोस्ट करूंगा।
FreeBSD पर, डिफ़ॉल्ट शेल tcsh है। आप autologout
tcsh शेल की सुविधा का उपयोग करके सत्र को ऑटो लॉगआउट कर सकते हैं ।
निम्नलिखित निष्क्रिय गतिविधि के एक मिनट के बाद एक सत्र को ऑटोलॉग्ट करेगा।
freebsd82# set -r autologout=’1′
(Wait one minute)
freebsd82# auto-logout
Connection to freebsd82 closed.
Tcsh (1) मैनपेज इस तरह यह वर्णन करता है:
autologout (+) The first word is the number of minutes of inactivity before automatic logout. The optional second word is the number of minutes of inactivity before automatic locking. When the shell automatically logs out, it prints `auto-logout', sets the vari- able logout to `automatic' and exits. When the shell automati- cally locks, the user is required to enter his password to con- tinue working. Five incorrect attempts result in automatic logout. Set to `60' (automatic logout after 60 minutes, and no locking) by default in login and superuser shells, but not if the shell thinks it is running under a window system (i.e., the DISPLAY environment variable is set), the tty is a pseudo-tty (pty) or the shell was not so compiled (see the version shell variable). See also the afsuser and logout shell variables.