Quote:
Originally Posted by alokatzenith
Bcecause I don't know how to do that. I did what I found after googling. Now trying to search method to install mplayer via ubuntu repo. It will be very helpful for me if you can tell me to do so.
|
First, completely remove any MPLayer that you have installed:
Code:
sudo apt-get remove --purge mplayer
Then you should remove that MPlayer PPA repo that you added because it is obviously not working for you. See this to remove PPA repos:
See this:
http://askubuntu.com/questions/307/h...pas-be-removed
The command to remove your MPlayer PPA would be:
Code:
sudo add-apt-repository --remove ppa:ripps818/coreavc
You can also remove PPA repos with
ppa-purge. First install ppa-purge:
Code:
sudo apt-get install ppa-purge
Then to remove your MPlayer PPA:
Code:
sudo ppa-purge ppa:ripps818/coreavc
See this:
http://www.upubuntu.com/2012/02/how-...icial-ppa.html
And see this to get a graphical tool to use ppa-purge by installing
ubuntu-tweak:
http://www.howtogeek.com/howto/29584...ons-in-ubuntu/
Then update your repositories now that MPlayer and that PPA have been purged:
Code:
sudo apt-get update
Then finally install the MPlayer from the standard Ubuntu repos:
Code:
sudo apt-get install mplayer
You could also add the
smplayer (a user friendly front end for MPlayer) that
Andrew 46 suggested if you wish:
Code:
sudo apt-get install mplayer smplayer
The smplayer does make a nice GUI front end for MPlayer:
http://smplayer.sourceforge.net/
Please understand that the packages in the standard Ubuntu repos should always bo your first choice for installing any software on Ubuntu. Those are that packages that the Ubuntu developers have tested and are known to work on Ubuntu.
See this tutorial for installing software on Ubuntu:
http://psychocats.net/ubuntu/installingsoftware
If you are new to Linux and Ubuntu, I would strongly recommend that you read that entire website. It is a very good beginner's introduction to Ubuntu and Linux.