Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 22nd February 2009, 07:14 AM
tech291083 Offline
Registered User
 
Join Date: Sep 2006
Posts: 988
Listing installed applications by category

Code:
[root@localhost ~]# rpm -qa


The above commands gives a list of all the applications installed on the system but is there a way/command they can be listed alphabetically or as per date installed or the type of applications there are such as games, word processor etc?

If I type for example, just making an assumption here, please forgive me for lack of information on this...

Code:
[root@localhost ~]# rpm -qa | category games/wordprocessors/imageeditors


and then the ouput lists the application as per the category such as games etc.

Thanks.........

Last edited by tech291083; 22nd February 2009 at 07:25 AM.
Reply With Quote
  #2  
Old 22nd February 2009, 07:26 AM
Hlingler's Avatar
Hlingler Offline
Administrator
 
Join Date: Sep 2006
Location: Connellsville, PA, USA
Posts: 11,289
yum groupinfo <group-name>

List of all groups, available and installed (installed means: "required packages are present, recommended and optional packages are ignored for this query"):
yum grouplist

V
Reply With Quote
  #3  
Old 22nd February 2009, 07:33 AM
tech291083 Offline
Registered User
 
Join Date: Sep 2006
Posts: 988
Here what I get on my system, is it becuase I am still using Fedora 5? Thanks...
Code:
[root@localhost ~]# yum groupinfo
Options Error: Error parsing 'metadata_expire': invalid integer value



Code:
[root@localhost ~]# yum grouplist
Options Error: Error parsing 'metadata_expire': invalid integer value
Reply With Quote
  #4  
Old 22nd February 2009, 07:37 AM
Hlingler's Avatar
Hlingler Offline
Administrator
 
Join Date: Sep 2006
Location: Connellsville, PA, USA
Posts: 11,289
(1) First, fix the problem by editing (as root user) /etc/yum.conf, and enter a reasonable, LEGAL value for metadata_expire.
(2) Run yum grouplist next to find the names of all installed and available groups.
(3) Run yum groupinfo <group-name> (you MUST enter a valid group name) to get info on the group.

V
Reply With Quote
  #5  
Old 22nd February 2009, 08:30 AM
tech291083 Offline
Registered User
 
Join Date: Sep 2006
Posts: 988
Code:
[main]
cachedir=/var/cache/yum
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
pkgpolicy=newest
distroverpkg=redhat-release
tolerant=1
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
metadata_expire=1800

# PUT YOUR REPOS HERE OR IN separate files named file.repo
 in /etc/yum.repos.d


Here is my yum.conf file, I cannot update or install new packages as my Fedora is version 5 which has reached its End Of Life date already. I did ask a question on this forum and was told that since I am using and old version of Fedora which has passed its EOL, I am no longer able to download or update. Please guide me. Do I need to change any thing in the above-mentioned file yum.conf? Thanks a lot sir....
Reply With Quote
  #6  
Old 22nd February 2009, 08:32 AM
Hlingler's Avatar
Hlingler Offline
Administrator
 
Join Date: Sep 2006
Location: Connellsville, PA, USA
Posts: 11,289
Your older version of YUM may not even accept or recognize the metadata_expire flag. If that flag produces errors, remove it.

V
Reply With Quote
  #7  
Old 22nd February 2009, 08:39 AM
tech291083 Offline
Registered User
 
Join Date: Sep 2006
Posts: 988
Thanks , I deleted the line with 'metadata_expire' and tried to do the following with an error, please guide me, thanks...

Code:
[root@localhost ~]# yum install php
Options Error: Error parsing 'plugins': invalid boolean value

usage: yum [options] < update | install | info | remove | list |
    clean | provides | search | check-update | groupinstall |
    groupupdate | grouplist | groupinfo | groupremove |
    makecache | localinstall | erase | upgrade | whatprovides |
    localupdate | resolvedep | shell | deplist >

options:
  -h, --help            show this help message and exit
  -t, --tolerant        be tolerant of errors
  -C                    run entirely from cache, don't update cache
  -c  [config file]     config file location
Reply With Quote
  #8  
Old 22nd February 2009, 08:44 AM
Hlingler's Avatar
Hlingler Offline
Administrator
 
Join Date: Sep 2006
Location: Connellsville, PA, USA
Posts: 11,289
Try using the '-t' (tolerate errors) switch:
Code:
options:
  -h, --help            show this help message and exit
  -t, --tolerant        be tolerant of errors
yum -t install php

V
Reply With Quote
  #9  
Old 22nd February 2009, 08:51 AM
tech291083 Offline
Registered User
 
Join Date: Sep 2006
Posts: 988
Code:
[root@localhost ~]# yum -t install php
Options Error: Error parsing 'plugins': invalid boolean value
still the same error, what to do? is it ok if I delete this line metadata_expire=1800?

Do you think it is still possible to update and install packages on my Fedora 5 machines? Thanks..........
Reply With Quote
  #10  
Old 22nd February 2009, 02:47 PM
JonathanR Offline
Registered User
 
Join Date: Aug 2007
Age: 41
Posts: 226
Quote:
Originally Posted by tech291083 View Post
Code:
[root@localhost ~]# yum -t install php
Options Error: Error parsing 'plugins': invalid boolean value
still the same error, what to do? is it ok if I delete this line metadata_expire=1800?

Do you think it is still possible to update and install packages on my Fedora 5 machines? Thanks..........
I wouldn't delete it, per se'. I'd comment it out

Code:
[main]
cachedir=/var/cache/yum
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
pkgpolicy=newest
distroverpkg=redhat-release
tolerant=1
exactarch=1
obsoletes=1
gpgcheck=1
#plugins=1
#metadata_expire=1800
maybe something like that.

Or make a backup, then delete those lines.

For further help, try this: http://fedoraproject.org/wiki/Docs/D..._Configuration
Reply With Quote
  #11  
Old 23rd February 2009, 04:25 AM
tech291083 Offline
Registered User
 
Join Date: Sep 2006
Posts: 988
Thanks guys, one more thing I need a little clarification about is whether it is still possible to update and install packages on my Fedora 5 machines? I was told by a few members on this very forum that Fedora 5 has reached its EOL and so I am officially not able to update or install any new or old packages. Is it true? This is the question that has been bothering me. Please do explain it to me as it is causing unncessary confusion in my mind. Thanks......
Reply With Quote
  #12  
Old 23rd February 2009, 04:28 AM
Hlingler's Avatar
Hlingler Offline
Administrator
 
Join Date: Sep 2006
Location: Connellsville, PA, USA
Posts: 11,289
You may still find a few repos open that still have FC5 packages - probably the Fedora Project repos at least. However, there will be no further/additional updates to any packages - whatever is already there, is there. And if you encounter problems with them, you're on your own to sort it out - no bug reports, no fixes for bugs or other software problems.

V
Reply With Quote
  #13  
Old 23rd February 2009, 04:34 AM
tech291083 Offline
Registered User
 
Join Date: Sep 2006
Posts: 988
http://forums.fedoraforum.org/showthread.php?t=205865

This is my thread about old version of Fedora such as 5, 6, 7 etc.
Reply With Quote
Reply

Tags
applications, category, installed, listing

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
List of Installed Applications in Gnome Applications Menu BandC Using Fedora 4 7th May 2009 07:19 PM
way of listing installed applications winluck7 Using Fedora 8 19th September 2008 08:27 PM
Bug when listing installed packages in yum kaelthas Using Fedora 5 27th July 2007 06:40 PM
Listing installed packages by group kwick60073 Using Fedora 1 19th December 2005 06:44 PM
Installed RPM not listing stefaandk Using Fedora 3 1st July 2005 07:27 AM


Current GMT-time: 14:32 (Thursday, 23-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat