इसलिए मैंने त्रुटि को नजरअंदाज किया और सर्वरफॉल्ट की जांच की, लेकिन समाधान फिट नहीं हुआ। अधिकांश परिणाम / dev / pts के साथ समस्याएँ थीं, लेकिन यह आरोहित है। अन्य परिणाम गिट के साथ त्रुटियां हैं, लेकिन मशीन पर कोई गिट नहीं है।
मेरा खाता ब्लॉक नहीं किया गया है, मैं अभी भी कंसोल पर लॉग इन कर सकता हूं। अन्य उपयोगकर्ताओं को भी यह समस्या है, इसलिए मुझे नहीं लगता कि इसका कुछ ऐसा है जो मेरे .ssh / में है।
मुझे यह प्रतिक्रिया ssh -vv के साथ मिलती है:
<snip>
debug1: Next authentication method: password
rogier@server's password:
debug2: we sent a password packet, wait for reply
debug1: Authentication succeeded (password).
debug1: channel 0: new [client-session]
debug2: channel 0: send open
debug1: Requesting no-more-sessions@openssh.com
debug1: Entering interactive session.
debug2: callback start
debug2: client_session2_setup: id 0
debug2: channel 0: request pty-req confirm 1
debug1: Sending environment.
debug1: Sending env LANG = en_US.UTF-8
debug2: channel 0: request env confirm 0
debug2: channel 0: request shell confirm 1
debug2: fd 3 setting TCP_NODELAY
debug2: callback done
debug2: channel 0: open confirm rwindow 0 rmax 32768
debug2: channel_input_status_confirm: type 100 id 0
PTY allocation request failed on channel 0
debug2: channel 0: rcvd adjust 2097152
debug2: channel_input_status_confirm: type 99 id 0
debug2: shell request accepted on channel 0
इसके बाद सत्र फ्रीज हो गया। किसी को भी पता नहीं क्या चल रहा है?
/dev/pt*
उपकरणों को हटाने और मैन्युअल रूप से फिर से जोड़ने की आवश्यकता थी क्योंकि वे भ्रष्ट हो गए थे। और उस मामले में, ऊपर सूचीबद्ध काम-का उपयोग करके मैंने भी काम किया।
ssh user@host "/bin/bash -i
। क्या आप इसे ठीक करने के लिए मुझे कौन-सी कमांड चलाने के लिए अधिक विशिष्ट हो सकते हैं? मैं कैसे पुनर्स्थापित /dev/pt*
करूं? धन्यवाद।
mount
, आउटपुट की गई लाइनों में से एक / dev / pts होनी चाहिए, विकल्पों पर ध्यान दें। अनमाउंट करने से पहले आपके द्वारा देखे गए विकल्पों के साथ विकल्पों umount /dev/pts
को mount -t devpts -o OPTIONS devpts /dev/pts
बदलने के साथ अनमाउंट और रीमाउंट करें।
ssh user@host "/bin/bash -i"
लॉगिन करने के लिए उपयोग कर सकते हैं ?