Find the answer to your Linux question:
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)....
  1. #1
    Just Joined! pradeeprajkumar's Avatar
    Join Date
    Jun 2010
    Location
    India
    Posts
    71

    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).

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi and Welcome !

    If you have installed packages using Package Manager, yum then execute yum remove <package_name> command to uninstall those packages.
    Code:
    su -
    yum remove package
    Or
    Install Graphical Interface of yum, Yum Extender (yumex).
    Code:
    yum -y install yumex
    You can remove packages using rpm -e command too.
    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

  3. #3
    Just Joined! pradeeprajkumar's Avatar
    Join Date
    Jun 2010
    Location
    India
    Posts
    71
    Thanks a lot...
    Where the installed files will be stored ? (in which folder, by default) ?
    can we change the destination folder ?
    how ?

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    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

  5. #5
    Linux Guru Irithori's Avatar
    Join Date
    May 2009
    Location
    Munich
    Posts
    2,097
    You can check the file locations of a RPM package with this
    Code:
    rpm -qvl <packagename>
    In theory, you can change the destination directory, but *only* if the RPM is relocateable.
    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...