1

I tried to uninstall Audio Recorder by doing: sudo apt-get remove audio recorder or audiorecorder but I got the following message:

'Unable to locate package audiorecorder'

Could you help please.

The way it was install was sudo apt-get install audio recorder.

Thank you, Selda

  • How you uninstall software depends upon how you originally installed it. Your question should explain how you installed it. – user535733 Dec 20 '22 at 17:01
  • What does this tell us? history | grep record Welcome to Ask Ubuntu. – chili555 Dec 20 '22 at 17:04
  • you can view all installed packages which mention record by issuing dpkg -l|grep -i record which will show actual packages which contain the string record – Scott Stensland Dec 21 '22 at 15:18

1 Answers1

1

Looks like the correct package name is "audio-recorder". Try that (with the quotes).

Source: https://ubuntuhandbook.org/index.php/2022/04/install-audio-recorder-ubuntu-2204/

Another way to figure this out would be to use apt list --installed piped into grep. See How to list all installed packages for details.

mkazin
  • 81