vsdump command not found
In this troubleshooting guide we learn how to fix vsdump command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
vsdump: command not found
or when using sudo you get the following error message
sudo: vsdump: command not found
Solutions to vsdump: command not found
How To Fix vsdump: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu vsdump is provided by vsdump package.
vsdump is:
The VSdump utility converts Microsoft Visio 2000, 2002 and 2003 diagrams to XML.
To fix this problem, we can install more using the command below.
sudo apt-get -y install vsdump
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install vsdump.
sudo apt -y install vsdump
Or if you have aptitude installed you can use the following command.
sudo aptitude install vsdump
Summary
In this tutorial we learn how to fix vsdump command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.