Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
08-17-2003, 07:11 AM
|
#1
|
Member
Registered: Jul 2003
Location: Lithuania
Posts: 45
Rep:
|
what is the fastest way to remove rpms without x-windows?
Hello everybody
I try to remove packets with rpm command and everything is ok, but if I need to remove 20 packets it takes some time.
Maybe is another way to do this faster and don't use x-windows?
(I need do everything in text mode)
Thanks
|
|
|
08-17-2003, 07:12 AM
|
#2
|
Senior Member
Registered: Dec 2002
Location: England
Distribution: Used to use Mandrake/Mandriva
Posts: 2,794
Rep: 
|
I think you can use a file which lists the package names. Try man rpm for more info.
|
|
|
08-17-2003, 07:14 AM
|
#3
|
Moderator
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047
Rep:
|
You could create a text file with the names of the packages then write a script to run through and remove them.
|
|
|
08-17-2003, 11:56 AM
|
#4
|
Member
Registered: Jul 2003
Location: Lithuania
Posts: 45
Original Poster
Rep:
|
Thank you good people for help
I just made my first script 
|
|
|
08-17-2003, 10:47 PM
|
#5
|
LQ Newbie
Registered: Aug 2003
Location: Tracy, California
Posts: 17
Rep:
|
Any tutorials on script making, or at least an example on what u made g-fox?.. U know a script to del the RPMs u wanted.
|
|
|
08-18-2003, 12:30 PM
|
#6
|
Moderator
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047
Rep:
|
I don't know what G-ox used but I would assume it to be somehting like:
Code:
#!/bin/bash
IFS="
"
for package in `/root/packages.txt`; do
echo Now removing $package
rpm -e $package
done
|
|
|
All times are GMT -5. The time now is 07:33 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|