xmix command not found

In this troubleshooting guide we learn how to fix xmix command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

xmix: command not found

or when using sudo you get the following error message

sudo: xmix: command not found

Solutions to xmix: command not found

How To Fix xmix: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu xmix is provided by xmix package.

xmix is:

This interface to the sound driver mixer allows easy adjustment of the sound card’s input and output levels, and selection of sound source for recording.

To fix this problem, we can install more using the command below.

sudo apt-get -y install xmix

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install xmix.

sudo apt -y install xmix

Or if you have aptitude installed you can use the following command.

sudo aptitude install xmix

Summary

In this tutorial we learn how to fix xmix command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.