windows遠程桌面ubuntu中Tab鍵不能補全命令的解決辦法
php
前置html
window能夠遠程ubuntu的前提ubuntu
參考百度經驗便可實現:windows遠程桌面ubuntu
windows
http://jingyan.baidu.com/article/8ebacdf0cdc64949f75cd555.html
app
正文ide
在成功登錄遠程桌面環境以後,發如今終端中Tab鍵不能自動補齊(可是Ctrl +Tab 能夠用,可是須要按下組合鍵才能補全的話,時間久了確實有點煩),功夫不服苦心人,最後在國外的網站上找到了解決方法,下面給出連接,有興趣的朋友能夠看看:網站
http://ubuntuforums.org/archive/index.php/t-1771058.html
spa
https://answers.launchpad.net/ubuntu/+source/xfce4/+question/206191
.net
問題的緣由是因爲Tab鍵的功能被窗口快捷鍵佔用,從而Tab鍵不起做用,國外朋友的回答簡潔以下,英語很差的直接跳過去吧。
xml
In short, you can either edit:
~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
find the line
<property name="<Super>Tab" type="string" value="switch_window_key"/>
and change it to
<property name="<Super>Tab" type="empty"/>
Or go to "Settings->Window Manager", in the "Keyboard" tab, clear the binding of "Switch wndow for same application -> <Super> Tab"
簡單來講解決方法有兩種:
1. (在ubuntu中或者遠程桌面中)編輯~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml文件,找到下面這行
<property name="<Super>Tab" type="string" value="switch_window_key"/>
修改成
<property name="<Super>Tab" type="empty"/>
而後就可使用Tab鍵自動補全了,若是不行的話就重啓系統,以後便可解決。
2. 此法不須要重啓系統,能夠直接在遠程桌面中設置,打開菜單->設置->窗口管理器,或者在終端中輸入xfwm4-settings打開(xfwm4就是xfce4 window manger的縮寫)
選擇鍵盤,能夠看到窗口快捷鍵中動做一列有「切換同一應用程序的窗口」選項,將該選項的快捷鍵清除後關閉窗口便可。
到此,Tab鍵自動補全功能配置完成。
參考自:
http://blog.csdn.net/xiaobaiing/article/details/46236163