uninstall rpm's - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: How Do I? (https://www.linux-noob.com/forums/forum-60.html) +--- Thread: uninstall rpm's (/thread-3803.html) Pages:
1
2
|
uninstall rpm's - tek-69 - 2004-01-05 [root@localhost tarballs]# rpm -Uvh alsa*.rpm warning: alsaplayer-0.99.76-1.fr.i386.rpm: V3 DSA signature: NOKEY, key ID e42d547b error: Failed dependencies: libid3tag is needed by alsaplayer-0.99.76-1.fr libmad is needed by alsaplayer-0.99.76-1.fr [root@localhost tarballs]# rpm -Uvh libid*.rpm warning: libid3tag-0.15.0b-3.fr.i386.rpm: V3 DSA signature: NOKEY, key ID e42d547b Preparing... ########################################### [100%] file /usr/lib/libid3tag.so.0 from install of libid3tag-0.15.0b-3.fr conflicts with file from package mad-0.14.2b-256 [root@localhost tarballs]# rpm -Uvh libmad*.rpm warning: libmad-0.15.0b-2.fr.i386.rpm: V3 DSA signature: NOKEY, key ID e42d547b Preparing... ########################################### [100%] file /usr/lib/libmad.so.0 from install of libmad-0.15.0b-2.fr conflicts with file from package mad-0.14.2b-256 So is there a way to unistall rpms? cuz i installed the wrong one now its messin me up. have fun, tek uninstall rpm's - hijinks - 2004-01-05 rpm -e rpmName (example rpm -e sendmail) to find the name do like rpm -qa | grep mail That will search your RPM DB and find all matches that have mail in it uninstall rpm's - tek-69 - 2004-01-05 thanks man, nice stapler btw. uninstall rpm's - Bakshara - 2009-07-11 How can I get a list of all programs, utilities, functions, etc. that are installed root? I believe I have installed wine root, but I am not sure. Winehq says to not install it root, because it runs windoze software. So you can get the same infections sent to the Linux root. Thanks in advance, Bakshara the Linux noob! uninstall rpm's - hybrid - 2009-07-11 Quote:How can I get a list of all programs, utilities, functions, etc. that are installed root? Not sure exactly what you're asking here -- I think it's more important to be concerned with which user wine is running under, not where it is installed. If you're not running wine program.exe while logged in directly as root or using su -, then you are only giving wine and the program running under it your privileges, not root's and this is more secure. On an RPM-based system like Fedora, you can get a list of all the RPM packages installed by running this (as root): Code: rpm -qa There will likely be a lot of entries, so you may want to pipe it to less so you can scroll down through the list at your own pace with spacebar: Code: rpm -qa | less (then press q when you want to exit less). uninstall rpm's - Bakshara - 2009-07-11 Quote:<blockquote data-ipsquote="" class="ipsQuote" data-ipsquote-contentcommentid="13443" data-ipsquote-username="Bakshara" data-cite="Bakshara" data-ipsquote-timestamp="1247275865" data-ipsquote-contentapp="forums" data-ipsquote-contenttype="forums" data-ipsquote-contentid="294" data-ipsquote-contentclass="forums_Topic"><div> Not sure exactly what you </div></blockquote> uninstall rpm's - hybrid - 2009-07-11 Quote:Basically I would like to find out if wine was installed root. I, Bakshara, am the only user. If it is installed root, then I should uninstall it. Once I do that; How do I install wine not into the root. I don uninstall rpm's - Bakshara - 2009-07-16 When I am in the terminal at: Code: Bakshara@Bakshara before I get to Code: root@Bakshara . Can I install? uninstall rpm's - anyweb - 2009-07-17 you SHOULD only install rpm's as root does that answer your question ? uninstall rpm's - Bakshara - 2009-07-19 The file name is "wine-1.1.24.tar.bz2" and under it I do not see any rpm files at all. Bakshara the Linux noob! |