View previous topic :: View next topic |
Author |
Message |
unix l33t
Joined: 06 Jul 2003 Posts: 615 Location: Dürnten ZH Switzerland
|
Posted: Mon Jan 26, 2004 7:11 pm Post subject: lästiger ton |
|
|
hi,
Wie kann ich dieser lästiger ton ausschalten? Es ist ein pipston wenn man z.b mit tabulator arbeitet oder wenn man reboot macht usw. |
|
Back to top |
|
|
boris64 Veteran
Joined: 04 Oct 2003 Posts: 1770 Location: Vechelde/Peine
|
Posted: Mon Jan 26, 2004 7:33 pm Post subject: |
|
|
Code: | nano -w /etc/initrc |
siehe zeile 4+5
# do not bell on tab-completion
#set bell-style none // hier das kommentarzeichen entfernen _________________ boris64.net 200x / visit my desktop / try these tiny kernel patches |
|
Back to top |
|
|
unix l33t
Joined: 06 Jul 2003 Posts: 615 Location: Dürnten ZH Switzerland
|
Posted: Mon Jan 26, 2004 10:54 pm Post subject: |
|
|
hm ich kann dieses file nicht finden... |
|
Back to top |
|
|
think4urs11 Bodhisattva
Joined: 25 Jun 2003 Posts: 6659 Location: above the cloud
|
Posted: Mon Jan 26, 2004 10:59 pm Post subject: |
|
|
Code: | nano -w /etc/inputrc | war wohl gemeint...
HTH
T. _________________ Nothing is secure / Security is always a trade-off with usability / Do not assume anything / Trust no-one, nothing / Paranoia is your friend / Think for yourself |
|
Back to top |
|
|
unix l33t
Joined: 06 Jul 2003 Posts: 615 Location: Dürnten ZH Switzerland
|
Posted: Mon Jan 26, 2004 11:00 pm Post subject: |
|
|
hm kann aber dieses bell zeugs net finden |
|
Back to top |
|
|
boris64 Veteran
Joined: 04 Oct 2003 Posts: 1770 Location: Vechelde/Peine
|
Posted: Mon Jan 26, 2004 11:29 pm Post subject: |
|
|
Think4UrS11 wrote: | Code: | nano -w /etc/inputrc | war wohl gemeint...
HTH
T. |
ups, peinlich, sorry
ist natürlich richtig, da war ich wohl etwas "vorschnell" _________________ boris64.net 200x / visit my desktop / try these tiny kernel patches |
|
Back to top |
|
|
unix l33t
Joined: 06 Jul 2003 Posts: 615 Location: Dürnten ZH Switzerland
|
Posted: Mon Jan 26, 2004 11:40 pm Post subject: |
|
|
und wo ist diese stelle zu finden? |
|
Back to top |
|
|
Inte Veteran
Joined: 15 Jul 2003 Posts: 1387 Location: Mannheim, GER
|
Posted: Tue Jan 27, 2004 12:34 am Post subject: |
|
|
unix wrote: | und wo ist diese stelle zu finden? | Komisch. Ich find auch keine Zeile mit bell in der /etc/inputrc.
Gruß, Inte. _________________ Gentoo Linux - Die Metadistribution |
|
Back to top |
|
|
fuchur Guru
Joined: 12 Aug 2003 Posts: 578
|
Posted: Tue Jan 27, 2004 1:58 am Post subject: |
|
|
hi
Ich habe bei mir in "/etc/conf.d/local.start" folgendes eingetragen
Code: |
# kill beep and screensaver
ebegin "Turne off screensaver and terminal bell on tty1-tty6"
for a in `seq 1 6`; do setterm -blank 0 -blength 0 > /dev/tty$a ; done
eend $?
|
So habe ich auf console 1-6 kein "beep" und "bildschiermschoner" mehr.
mfg |
|
Back to top |
|
|
boris64 Veteran
Joined: 04 Oct 2003 Posts: 1770 Location: Vechelde/Peine
|
Posted: Tue Jan 27, 2004 10:44 am Post subject: |
|
|
Inte wrote: | unix wrote: | und wo ist diese stelle zu finden? | Komisch. Ich find auch keine Zeile mit bell in der /etc/inputrc.
Gruß, Inte. |
hiho,
nur für den fall, dass ihr denkt, ich würde fantasieren,
poste ich hier mal meine /etc/inputrc:
Code: | # /etc/inputrc:
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/inputrc,v 1.6 2003/07/28 19:29:26 azarah Exp $
# do not bell on tab-completion
set bell-style none
set meta-flag on
set input-meta on
set convert-meta off
set output-meta on
# Completed names which are symbolic links to
# directories have a slash appended.
set mark-symlinked-directories on
$if mode=emacs
# for linux console and RH/Debian xterm
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": beginning-of-history
"\e[6~": end-of-history
"\e[3~": delete-char
"\e[2~": quoted-insert
"\e[5C": forward-word
"\e[5D": backward-word
# for rxvt
"\e[8~": end-of-line
# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
"\eOH": beginning-of-line
"\eOF": end-of-line
# for freebsd console
"\e[H": beginning-of-line
"\e[F": end-of-line
$endif
# fix Home and End for German users
"\e[7~": beginning-of-line
"\e[8~": end-of-line |
siehe zeile 4+5.
ob die datei von irgendeinem ebuild abhängig ist, kann ich euch leider
nicht sagen. ich bin der meinung, sie wäre schon immer da gewesen.
(mein system ist: stage1, ~x86) _________________ boris64.net 200x / visit my desktop / try these tiny kernel patches |
|
Back to top |
|
|
toskala Advocate
Joined: 14 Dec 2002 Posts: 2080 Location: hamburg, germany
|
Posted: Tue Jan 27, 2004 10:45 am Post subject: |
|
|
naja, wenns nicht da steht kann mans aber jederzeit einfach eintragen. nur weil eine variable nicht anwesend ist bedeutet es ja nicht zwingend, dass sie niemals da sein darf. _________________ adopt an unanswered post
erst denken, dann posten |
|
Back to top |
|
|
unix l33t
Joined: 06 Jul 2003 Posts: 615 Location: Dürnten ZH Switzerland
|
Posted: Tue Jan 27, 2004 10:49 am Post subject: |
|
|
fuchur wrote: | hi
Ich habe bei mir in "/etc/conf.d/local.start" folgendes eingetragen
Code: |
# kill beep and screensaver
ebegin "Turne off screensaver and terminal bell on tty1-tty6"
for a in `seq 1 6`; do setterm -blank 0 -blength 0 > /dev/tty$a ; done
eend $?
|
So habe ich auf console 1-6 kein "beep" und "bildschiermschoner" mehr.
mfg |
dankeschön hat geklapt |
|
Back to top |
|
|
|