VPS에서 데비안을 사용하고 있습니다. Windows 컴퓨터의 원격 데스크톱에서 연결하고 있습니다.
PuTTY를 사용하여 연결하는 경우 Tab 키만 사용하면 터미널의 파일이 자동 완성됩니다.
원격 데스크톱을 사용하여 연결하면 마우스패드, gedit 또는 터미널에서 탭 키가 작동하지 않습니다. Tab 키와 Alt 키를 사용하여 열린 창 사이를 전환할 수 있으므로 Debian 키보드 레이아웃이 괜찮다는 것을 알고 있습니다(희망합니다)...
나는 루트로 로그인했습니다(권한으로 인해 나를 막는 것을 원하지 않으며 모든 사용자가 이 변경을 수행할 수 있기를 원합니다). 나는 또한 다른 사용자와 이것을 시도했습니다.
/etc/bash.bashrc
# enable bash completion in interactive shells
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
/etc/구성 파일
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
~/.bashrc
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi