Categorie

Archivio Articoli

Categorie

Commenti recenti

Risolvere l’errore “Rete senza fili disabilitata da switch hardware” su Ubuntu

msn-e1400139514426

Avete mai provato a disabilitare e riabilitare in sequenza, su un PC portatile, la connettività wireless tramite il gestore di rete presente sul pannello senza però toccare l’interruttore fisico della scheda? Bene, per alcune schede di rete succede una cosa … Continua

Sorgente: Risolvere l'errore "Rete senza fili disabilitata da switch hardware" su Ubuntu

[Linux] bash completion does not work properly

Linux

 

 

 

 

 

 

Purge bash completion:

# apt-get purge bash-completion

Delete (or move somewhere) this directory:

# mv /etc/bash_completion.d /somewhere

In files (if they exist):

~/.bashrc
/etc/bash_completion
/etc/bash.bashrc
/etc/profile

Comment lines like:

...
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then

Then reinstall bash-completion:

# apt-get install bash-completion

Try if it works, if not remove comment from ~/.bashrc on lines:

...
# 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 [ -f /etc/bash_completion ] && ! shopt -oq posix; then
#     . /etc/bash_completion
# fi