svlc command not found

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

Introduction

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

svlc: command not found

or when using sudo you get the following error message

sudo: svlc: command not found

Solutions to svlc: command not found

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

In Ubuntu svlc is provided by vlc-plugin-skins2 package.

vlc-plugin-skins2 is:

VLC is the VideoLAN project’s media player. It plays MPEG, MPEG-2, MPEG-4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs, podcasts, and multimedia streams from various network sources.

This package contains VLC’s Skins2 interface.

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

sudo apt-get -y install vlc-plugin-skins2

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

You can also use apt command to install vlc-plugin-skins2.

sudo apt -y install vlc-plugin-skins2

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

sudo aptitude install vlc-plugin-skins2

Summary

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