11

The ping manual says that ping -a will generate audible pings, but when I try this no sound is made.

What am I doing wrong?

ændrük
  • 76,794

8 Answers8

12

From looking at the source, ping produces a bell by printing the ASCII bell char '\a', which is doing nothing, probably because the system beep is disabled.

You can manually try to produce the bell with:

echo -e "\a"
João Pinto
  • 17,159
10

compiz "eats" the sound and this is a reported bug, so it won't work in the graphical interface in standard compiz ubuntu sessions. (see this bug report, thanks to Dylan McCall comment for the URL).

If you really need the functionality, you could run your ping from a physical console (Ctrl+Alt+F1). But don't forget:

sudo modprobe pcspkr

As module pcspkr isn't loaded at boot time and actually drives the old PC speaker you should have in your computer.

You can add it to /etc/modules if you think you'll need it at a regular basis as this will have the effect to tell the system to load it at boot time.

Note: as it's a compiz issue, if you are using gnome-fallback session you shouldn't experience the issue. If this is the case, check your terminal program for options related to console bell.

vaab
  • 1,084
3

1 says it's missing a sound file. You can add it with the following command:

  pactl upload-sample /usr/share/sounds/gnome/default/alerts/glass.ogg bell.ogg

For a permanent solution add the command to ~/.xprofile

Mr. Ronald
  • 130
  • 4
2

In my case I am using KDE in Kubuntu. I had to tick a checkbox:

  1. Search applications for Notifications, subtitle is Event Notifications and Actions
  2. Then under Applications select Konsole.
  3. Then select Configure Events...
  4. Then highlight Bell in Non-Focused Session
  5. Then tick next to Play a sound
Joshua
  • 189
  • 1
  • 7
  • 1
    Thanks, this answer is suitable for recent Plasma versions (mine is 5.22.5). Still haven't figured out how to do the same under Terminator, though. But thanks, at any rate. – MariusMatutiae Jan 10 '22 at 09:47
2

Because the question is not specified for Unity only, I'll make a little hint about KDEs Konsole. You just should specify a sound for a "Bell in Visible Session" which is under Settings -> Configure Notifications. For example I'm using sounds from /usr/share/sounds/ section. I don't remember is there such an option in Ubuntu's Unity terminal.

m1nev
  • 351
0

If you are using Terminator as terminal on Ubuntu 18.10, left-click the Terminator, select preferences/profiles, and there is the audible beep option.

AlwaysTalkingAboutMyDog
  • 3,783
  • 2
  • 25
  • 38
0

In my case; I just had to turn on/up the 'system sounds' in settings. (see screenshot)

Screenshot of ubuntu's sound settings panel

Aaron
  • 171
0

In my case, audible bell was disabled because of xset -b in my ~/.xsession file and could be re-enabled with xset b.