LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva
User Name
Password
Mandriva This Forum is for the discussion of Mandriva (Mandrake) Linux.

Notices


Reply
  Search this Thread
Old 05-06-2008, 06:46 PM   #1
ktkps
LQ Newbie
 
Registered: Apr 2008
Posts: 6

Rep: Reputation: 0
packages


plz help!!
How do I install packages in mandriva??I've used ubuntu where there was a comprehensive package manager..but in mandriva I just see a very limited list of packages..Plz suggest some sites where I can dnld the packages for mandriva.Also help me in installing them ,I say this because
I've tried installing Azureus(torrent client)I dnlded it,istalled it,mandriva asked for root password,then I could not see the installed package.Same happened with another audio editing software(in both the installations the progress bar was not shown)
 
Old 05-06-2008, 06:56 PM   #2
frndrfoe
Member
 
Registered: Jan 2008
Distribution: RHEL, CentOS, Ubuntu
Posts: 379

Rep: Reputation: 38
Here is a pretty exhaustive looking get started guide for mandriva.
http://www.mandrake.tips.4.free.fr/review2006.html

otherwise you could probably use yum from the command line.
Code:
#yum list | grep package
#yum upgrade
#yum update
see 'man yum' it's an excellent tool as well
 
Old 05-06-2008, 08:24 PM   #3
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
Or you can do:

Quote:
rpm -ivh filename.rpm
 
Old 05-06-2008, 09:19 PM   #4
Ixthusdan
Member
 
Registered: Jun 2006
Location: Mishawaka, IN USA
Distribution: Open Suse
Posts: 194
Blog Entries: 1

Rep: Reputation: 32
Please use urpmi to install software for Mandriva Linux. Configure your sources via the Mandriva Control Center or via Easy Urpmi. (Google it.) Once you have done this, You can install any software in the Mandriva repositories by simply typing as root in a shell "urpmi [package name]" urpmi will install any needed depends as well. I would not recommend using yum (SuSE) or any other distro's method, although installing via rpm will also work, but the depends will not be detected. This makes installing a program difficult. Use urpmi.

Last edited by Ixthusdan; 05-06-2008 at 09:20 PM.
 
Old 05-07-2008, 03:42 AM   #5
jkerr82508
Member
 
Registered: Dec 2006
Location: Fife, Scotland
Posts: 268

Rep: Reputation: 69
Quote:
Originally Posted by ktkps View Post
How do I install packages in mandriva?
Did you try "Install and Remove Software" in the Menu?


Jim
 
Old 05-07-2008, 07:11 AM   #6
Ixthusdan
Member
 
Registered: Jun 2006
Location: Mishawaka, IN USA
Distribution: Open Suse
Posts: 194
Blog Entries: 1

Rep: Reputation: 32
The gui "Install and Remove Software" is the front end for urpmi. Mandriva users must configure it (by adding repos) prior to using the tool. Otherwise, the only available resources will be from the media used to install the os.
 
Old 05-07-2008, 07:18 AM   #7
jkerr82508
Member
 
Registered: Dec 2006
Location: Fife, Scotland
Posts: 268

Rep: Reputation: 69
The first time "Install and Remove Software" (i.e. rpmdrake) is used it will offer to set up repos.

Jim

Last edited by jkerr82508; 05-07-2008 at 07:21 AM.
 
Old 05-07-2008, 11:36 AM   #8
Ixthusdan
Member
 
Registered: Jun 2006
Location: Mishawaka, IN USA
Distribution: Open Suse
Posts: 194
Blog Entries: 1

Rep: Reputation: 32
Yes, of course it does. But if one navigates to an Easy Urpmi mirror sight, you will also be able to utilize some good repos that are not official Mandriva repos. (Seer of Souls, MDE, or PLF sights are unofficial). The additional sights make Mandriva as robust as the best as far as installation of programs. I recommend Easy Urpmi, and I have been using Mandriva since version 7.0 back in 1999. (It was Mandrake back then)
 
Old 05-08-2008, 05:57 AM   #9
ktkps
LQ Newbie
 
Registered: Apr 2008
Posts: 6

Original Poster
Rep: Reputation: 0
thnx guys I've configured the easy urpmi through the site and I've installed softawres....

one more thing I installed mandriva in my friend's computer,Who happens to have bought a new hard disk..mandriva is in hdd1 so it seems he is not able to access files from hdd2 how to rectify this problem??
 
Old 05-08-2008, 07:02 AM   #10
Ixthusdan
Member
 
Registered: Jun 2006
Location: Mishawaka, IN USA
Distribution: Open Suse
Posts: 194
Blog Entries: 1

Rep: Reputation: 32
You need to know some things first, like the exact bus location and the file structure on the drive. You have indicated the locations as hdd2, but that would be the second partition on the secondary slave of an IDE bus. SATA drives show up as sdxx, rather than hdxx. So, the "hd" means "hard drive," the next letter means where it is on the bus (a= primary master, b=primary slave, c=secondary master, and d=secondary slave) and finally, the number is the partition on the drive. Partitions are mounted, rather than drives. A drive can be one partition, but you are still mounting a partition.

You need to make a mount point somewhere on the tree; I recommend /mnt/whatever. So, the command to mount the first partition of a secondary slave would be "mount /dev/hdd1 /mnt/whatever". You can add this to /etc/fstab to auto mount the drive. You need to know the file system. If it is ext3, then the line would be "/dev/hdd1 /mnt/whatever ext3 auto 0 0".

I hope this is helpful, rather than confusing.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how to save a list of installed packages and install these packages later mandavi Ubuntu 5 09-07-2009 11:36 AM
how to show up all available packages in system-config-packages (RHEL 5) sean_zhang Linux - Newbie 1 03-10-2008 05:05 AM
Updating packages from redhat - insatlling *.hdr packages jomy Linux - Networking 1 01-18-2005 08:36 AM
Mandrake Update/Install Packages/Remove Packages wslyhbb Mandriva 2 03-15-2004 09:43 AM
creating packages (.tgz/.deb/.rpm) How from the source packages? l_9_l Linux - General 1 03-06-2002 06:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva

All times are GMT -5. The time now is 06:26 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration