Changes between Version 18 and Version 19 of Installation
- Timestamp:
- Oct 16, 2014, 2:04:51 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Installation
v18 v19 16 16 === Debian based distribution === 17 17 18 If you want bash auto completion you should check if that is enabled for root by default. See section [[# bash_completion|Bash completion]].18 If you want bash auto completion you should check if that is enabled for root by default. See section [[#BashCompletion|Bash completion]]. 19 19 20 20 === Other distributions === … … 166 166 }}} 167 167 168 == ^(Debian/Ubuntu)^ [=#bash_completion Bash Completion]==168 == Bash Completion == 169 169 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.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. Add (or uncomment if existing) the following line has to /root/.bashrc: 171 171 172 172 {{{ 173 if [ -f /etc/bash_completion ] && ! shopt -oq posix; then 174 . /etc/bash_completion 175 fi 173 . /etc/bash_completion 176 174 }}} 177 175 … … 196 194 197 195 You can now continue and [[Instance management|setup instances]]... 198 199 == Update Log ==200 201 * 15OCT2014 by Battleborn202 * Updated bash completion; script additions handle effed/custom distributions.203 * Minor aesthetic changes.