I've tried to use the command "sudo ./xsetup -Uninstall" to remove Vivado, but I get the message "sudo: ./xsetup: command not found".
I've tried to use the command "sudo ./xsetup -Uninstall" to remove Vivado, but I get the message "sudo: ./xsetup: command not found".
xsetup is not the Ubuntu command to use to uninstall a package, but instead is in this case a script for installation of Vivado only.
First, confirm the exact package name by reviewing what's installed with
dpkg --list
.Then, do
sudo apt remove “package-name”
orsudo apt purge “package-name”
. The latter removes any personalizations.sudo apt autoremove
if run subsequently removes dependencies.You may also be able to use a package manager, such as Synaptic, to remove and purge.