Learn how to install libxine-dev with the command sudo apt-get install libxine-dev on Ubuntus.
Ads
Quick installation of libxine-dev:
Step 1: Update system:
sudo apt-get update
Step 2: Install: libxine-dev
Ater updaing the OS run following command to install the packae:
sudo apt-get install libxine-dev
Package Details | |
Package: | libxine-dev |
Version: | 1.1.20-2build1 |
Maintainer: | Ubuntu Developers |
Home page: | http://www.xine-project.org/ |
Description: | the xine video player library, development packages This contains development files (headers, documentation and the like) and additional documentation for developers for the xine library (libxine). . Libxine provides the complete infrastructure for a video/media player. It supports MPEG 1/2 and some AVI and Quicktime videos out of the box, so you can use it to play DVDs, (S)VCDs and most video files out there. It supports network streams, subtitles and even MP3 or Ogg files. It's extensible to your heart's content via plugins for audio and video output, input media, demuxers (stream types), audio/video and subtitle codecs. Homepage: http://www.xine-project.org/ |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | universe/libdevel |
First of all update your system with the command:
sudo apt-get update
Ads
Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.
After downloading the latest package list with the help of above you can run the installation process.
If libxine-dev is not installed on your compter then the command 'dpkg -L libxine-dev' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L libxine-dev Package `libxine-dev' is not installed. Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents. deepak@deepak-VirtualBox:~$
Installing libxine-dev:
After system update use the following command to install libxine-dev:
sudo apt-get install libxine-dev
Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.
Now we will see the commands for uninstalling the libxine-dev from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the libxine-dev following command is used:
sudo apt-get remove libxine-dev
Following command is used to remove the libxine-dev package along with its dependencies:
sudo apt-get remove --auto-remove libxine-dev
This will remove libxine-dev and all its dependent packages which is no longer needed in the system.
Completely removing libxine-dev with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge libxine-dev
or you can use following command also:
sudo apt-get purge --auto-remove libxine-dev
Above command will remove all the configuration files and data associated with libxine-dev package. You can can't recover the delete data, so, use this command with care.