HOWTO:Turning off the beep
m (Corrected a typo) |
|||
| Line 1: | Line 1: | ||
| + | =[http://ecydoxe.co.cc UNDER COSTRUCTION, PLEASE SEE THIS POST IN RESERVE COPY]= | ||
Pardus, like most other Linuxes, gives the user a warning beep via the PC-speaker when he or she does something wrong, like pressing an incorrect key. Examples of such behaviour are when your scroll through your command history in a terminal using the up and down arrow keys and you reach the end, or in the Find window in Firefox you type in a character sequence that cannot be found. Very annoying not say embarrasing if you are in the library! | Pardus, like most other Linuxes, gives the user a warning beep via the PC-speaker when he or she does something wrong, like pressing an incorrect key. Examples of such behaviour are when your scroll through your command history in a terminal using the up and down arrow keys and you reach the end, or in the Find window in Firefox you type in a character sequence that cannot be found. Very annoying not say embarrasing if you are in the library! | ||
| Line 4: | Line 5: | ||
So here's how to turn this beep off: | So here's how to turn this beep off: | ||
| − | :# Open a terminal in Super User Mode: Pardus Menu - | + | :# Open a terminal in Super User Mode: Pardus Menu -> Programs -> System -> More Applications -> Terminal Program - Super User Mode. Then, enter your root password. |
:# Type: xset b off | :# Type: xset b off | ||
| Line 23: | Line 24: | ||
'''Notes''' | '''Notes''' | ||
| − | * | + | * "nano -w" tells nano not to wrap long lines. If you leave out the "-w", wrapped long lines may end up getting saved as individual lines. |
| − | * Anything placed in /etc/conf.d/local.start will be executed at system boot time '''under the authority of | + | * Anything placed in /etc/conf.d/local.start will be executed at system boot time '''under the authority of "root"'''. So tread carefully here. |
Revision as of 07:14, 24 November 2010
UNDER COSTRUCTION, PLEASE SEE THIS POST IN RESERVE COPY
Pardus, like most other Linuxes, gives the user a warning beep via the PC-speaker when he or she does something wrong, like pressing an incorrect key. Examples of such behaviour are when your scroll through your command history in a terminal using the up and down arrow keys and you reach the end, or in the Find window in Firefox you type in a character sequence that cannot be found. Very annoying not say embarrasing if you are in the library!
So here's how to turn this beep off:
- Open a terminal in Super User Mode: Pardus Menu -> Programs -> System -> More Applications -> Terminal Program - Super User Mode. Then, enter your root password.
- Type: xset b off
There you are. No more beeps, neither in the terminal nor in any other program. The rest of your audio (music player, etc.) will continue to work as per normal.
However, after a reboot your beep will be right back. To make the beep go away forever, do the following:
- Still in the Super User terminal, type: nano -w /etc/conf.d/local.start
- Scroll down and add the following two lines:
#Kill the annoying beep :-)
xset b off
- 3. Press CTRL+X and answer Y to the question if the changes should be saved.
Notes
- "nano -w" tells nano not to wrap long lines. If you leave out the "-w", wrapped long lines may end up getting saved as individual lines.
- Anything placed in /etc/conf.d/local.start will be executed at system boot time under the authority of "root". So tread carefully here.