how to uninstall xmms player in linux

Status
Not open for further replies.

vish786

"The Gentleman"
due to some problem xmms player is not opening... i wanna uninstall xmms player.... how can i do tat?????????????
 

kaustav_geek

1337 |)00|) \m/
vish786 said:
due to some problem xmms player is not opening... i wanna uninstall xmms player.... how can i do tat?????????????
Which distro do you use and how did you install xmms ??

In case you're on a debian derivative and installed it using apt-get/synaptic, use :
Code:
sudo apt-get remove xmms
In case you used yum,
Code:
sudo yum remove xmms
And , in case you compiled it from source,
Code:
sudo dpkg -r xmms
 

praka123

left this forum longback
^^ for Debian/ubuntu:
Code:
~$sudo apt-get remove  --purge  xmms
and in ubuntu,do:
Code:
~$sudo apt-get  autoremove
^ will remove other unwanted packages not used by any main package.
 
OP
vish786

vish786

"The Gentleman"
i am usin opensuse.. i hav installed using yast :)

@kaustav_geek thanks for ur tuto... problem is solved close the thread plz
 
Last edited:

praka123

left this forum longback
kaustav_geek said:
So, otherwise the unwanted packages aren't removed ? Can you please elucidate ?
This is a feature in Ubuntu which removes some libs which are not removed by default.It is not yet afaik present in Debian.
Yes.deborphan is what we uses in debian for removing stray packages.
Code:
~#deborphan | xargs apt-get --purge remove -y
*www.debian-administration.org/articles/134


as for using --purge with apt-get or dpkg,
actually apt just removes the package.but not completely.for that u need to use the --purge switch.check in synaptic-there are two options for a given installed packages-remove,remove completely.
for more info read man dpkg

dpkg -r | --remove | -P | --purge package ... | -a | --pending
Remove an installed package. -r or --remove remove everything
except configuration files
. This may avoid having to reconfigure
the package if it is reinstalled later. (Configuration files are
the files listed in the debian/conffiles control file). -P or
--purge removes everything, including configuration files. If -a
or --pending is given instead of a package name, then all pack‐
ages unpacked, but marked to be removed or purged in file
/var/lib/dpkg/status, are removed or purged, respectively.

Removing of a package consists of the following steps:

1. Run prerm script

2. Remove the installed files

3. Run postrm script
INFORMATION ABOUT PACKAGES

*www.abc.se/home/m10828/webgine1320e_linux/man__H_dpkg.html
also as u know,installing a pkg doesnt mean its completely configured.
remember "dpkg --configure -a" or "apt-get/aptitude install -f " cmd.
 
Last edited:

kaustav_geek

1337 |)00|) \m/
vish786 said:
i am usin opensuse.. i hav installed using yast :)

You mean during Open Suse Installation ?? How then did you screw xmms ??? Well, on a second thought... you can screw anything.. :D ... Chal... Be careful next time dude...

@praka123

Thanks for the insight...
 
Last edited:
Status
Not open for further replies.
Top Bottom