2006-10-09, 06:24 AM 
		
	
	Can somebody help me, how to find out the packages that been install to my computer(Linux).
Is there any command to do that..?
| 
				
				 
					Linux packag List.
				 
			 | 
		
| 
	 
		
		
		2006-10-09, 06:24 AM 
		
	 
	Can somebody help me, how to find out the packages that been install to my computer(Linux). Is there any command to do that..? 
		
		
		2006-10-09, 07:35 AM 
		
	 
	
		What distrobution are you using? 
	
	
	
	
		
		
		2006-10-09, 05:45 PM 
		
	 
	If its under Fedora (yum systems) you can do: Code: yum list installed | moreYou can also do this with RPM (suse, mandrake, etc) with: Code: rpm -qa | moreTo scroll through the "more" lists hit enter or space bar. Not sure about slackware .. but I believe you can search and it will tell you if its installed or not. Code: swaret --search packageFor debian systems: Code: dpkg --list | grep '^ii'That should do it too. 
		
		
		2006-10-10, 03:23 PM 
		
	 
	gentoo : emerge -ae world Gives a listing of all files emerged, some maybe missed because they were installed using -1 (--one-shot) which means they aren't added to the world list. Im not sure how you would find these, but there shouldn't be very many. 
		
		
		2006-10-10, 05:24 PM 
		
	 
	Quote:gentoo : emerge -ae world Under gentoo you could list like this: Code: ls -d /var/db/pkg/*/*I believe that will list all the packages installed. 
		
		
		2006-10-11, 06:10 AM 
		
	 
	yum list installed | more and rpm -qa | more seems working for my fedora. :) Thank You.  | 
| 
				
	 
					« Next Oldest | Next Newest »
				 
			 |