Results 1 to 5 of 5
Hi there,
anyone please tell me how to uninstall the previously installed unwanted softwares, in fedora 13(i'm using an 64 bit system)....
- 06-08-2010 #1
uninstallin a software in fedora
Hi there,
anyone please tell me how to uninstall the previously installed unwanted softwares, in fedora 13(i'm using an 64 bit system).
- 06-08-2010 #2
Hi and Welcome !
If you have installed packages using Package Manager, yum then execute yum remove <package_name> command to uninstall those packages.
OrCode:su - yum remove package
Install Graphical Interface of yum, Yum Extender (yumex).
You can remove packages using rpm -e command too.Code:yum -y install yumex
Code:rpm -e package
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 06-08-2010 #3
Thanks a lot...

Where the installed files will be stored ? (in which folder, by default) ?
can we change the destination folder ?
how ?
- 06-08-2010 #4
Linux doesn't work like Windows OSes. I would suggest you to check its Filesystem structure first. In a few mins, you will know how/where files get stored during package installation.
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 06-08-2010 #5
You can check the file locations of a RPM package with this
In theory, you can change the destination directory, but *only* if the RPM is relocateable.Code:rpm -qvl <packagename>
Probably not many RPMs are designed that way, so you might be out of luck here.
If you absolutely need the files to be somewhere else, I would suggest building your own RPMs.
Of course, one could symlink files and dirs or use bind mounts, but that would introduce unneeded complexity.You must always face the curtain with a bow.


Reply With Quote