Changes between Version 18 and Version 19 of Installation


Ignore:
Timestamp:
Oct 16, 2014, 2:04:51 AM (10 years ago)
Author:
Christian Illy
Comment:

Bash completion is not a Debian only thing. Also this is a Wiki, logs are in the page history.

Legend:

Unmodified
Added
Removed
Modified
  • Installation

    v18 v19  
    1616=== Debian based distribution ===
    1717
    18 If you want bash auto completion you should check if that is enabled for root by default. See section [[#bash_completion|Bash completion]].
     18If you want bash auto completion you should check if that is enabled for root by default. See section [[#BashCompletion|Bash completion]].
    1919
    2020=== Other distributions ===
     
    166166}}}
    167167
    168 == ^(Debian/Ubuntu)^ [=#bash_completion Bash Completion] ==
     168== Bash Completion ==
    169169
    170 If you want to use auto completion for the scripts (i.e. pressing <TAB> to complete the current parameter, <TAB><TAB> to get a list of valid things in the current location) you have to enable Bash completion. For root add, or if you're on Ubuntu just un-comment(delete the #'s) at the bottom, the following 3 lines. This is unnecessary if you enable it in /etc/bash.bashrc and /etc/profile.
     170If you want to use auto completion for the scripts (i.e. pressing <TAB> to complete the current parameter, <TAB><TAB> to get a list of valid things in the current location) you have to enable Bash completion. Add (or uncomment if existing) the following line has to /root/.bashrc:
    171171
    172172{{{
    173 if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
    174     . /etc/bash_completion
    175 fi
     173. /etc/bash_completion
    176174}}}
    177175
     
    196194
    197195You can now continue and [[Instance management|setup instances]]...
    198 
    199 == Update Log ==
    200 
    201  * 15OCT2014 by Battleborn
    202     * Updated bash completion; script additions handle effed/custom distributions.
    203     * Minor aesthetic changes.