Hallo!
Wie kann ich die <tab><tab> Ergänzug für die Paketnamen bei apt aktivieren?
Auch das ergänzen von "install" bei apt-get install endet blos mit einem "beep".
Bei der knoppix Installation war das bereits möglich.
Schonmal danke im Vorraus,
Gruß Eric Barth.
<tab><tab> ergänzung bei apt
hmm...
So oder ähnlich müsste die Datei /etc/bash.bashrc aussehen. Wie man leicht sie kann man die bash-completion in dem man die Kommentare entfernt aktivieren, müsste danach also in etwa so aussehen:
Bei einem normal installiertem Debian dürfte das dann auch ohne Probleme funktionieren
dazu bleibt anzumerken, dass die bash neu gestartet werden muss damit die Änderungen wirksam werden... Also entweder ausloggen und neu einloggen in den VTs oder im X das entscprechende Terminal neustarten oder einfach bash aufrufen... dann läuft zwar ne neue Bash in der Bash, aber egal.
hoffe dir damit geholfen zu haben.
Code: Alles auswählen
athriel:~# cat /etc/bash.bashrc
# System-wide .bashrc file for interactive bash(1) shells.
# If running interactively, then:
if [ "$PS1" ]; then
# set a fancy prompt (overwrite the one in /etc/profile)
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# enable bash completion in interactive shells
# if [ -f /etc/bash_completion ]; then
# . /etc/bash_completion
# fi
fi
Code: Alles auswählen
athriel:~# cat /etc/bash.bashrc
# System-wide .bashrc file for interactive bash(1) shells.
# If running interactively, then:
if [ "$PS1" ]; then
# set a fancy prompt (overwrite the one in /etc/profile)
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# enable bash completion in interactive shells
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
Code: Alles auswählen
athriel:/# apt-get [tab] [tab]
autoclean check dist-upgrade install source upgrade
build-dep clean dselect-upgrade remove update
athriel:/# apt-get install [tab] [tab]
Display all 21023 possibilities? (y or n)
hoffe dir damit geholfen zu haben.
I am root. If you see me laughing, you better have a backup...
-----BEGIN GEEK CODE BLOCK-----
Version: 3.12
GED d++ s-:- a-- C++ UL P L+++ E W+ N o K- w--
O- M-- V- PS+ PE Y PGP t+ 5 X+ R+ !tv b+ DI+ D+
G+ e h- r-- y+
------END GEEK CODE BLOCK------
-----BEGIN GEEK CODE BLOCK-----
Version: 3.12
GED d++ s-:- a-- C++ UL P L+++ E W+ N o K- w--
O- M-- V- PS+ PE Y PGP t+ 5 X+ R+ !tv b+ DI+ D+
G+ e h- r-- y+
------END GEEK CODE BLOCK------
Es reicht meistens auch, die neue .bashrc zu sourcen:Flowyerg hat geschrieben:dazu bleibt anzumerken, dass die bash neu gestartet werden muss damit die Änderungen wirksam werden...
Code: Alles auswählen
$ . ~/.bashrc