Hi Garth, welcome to the forum.
While you're getting comfortable with Linux and you're 'drake-styling it, use urpmi -- Mandriva's rpm wrapper -- for installing stuff whenever possible. You'll need to "configure sources" for urpmi (i.e. give it some addresses for http or ftp software repositories), this can be done by simply following the directions at easyurpmi. Once urpmi is configured, getting software (and dependencies too!) is often as easy as: Code: # urpmi -v <software>
where <software> could be, for example, mozilla-firefox.
When urpmi does not find what you want, you could commence with the compiling. When you attempted to configure, did it look something like this: The "./" is important because a dot, meaning current working directory, is not in your $PATH variable (and shouldn't be). Also make should be run as root; to become root use Code: $ su
<enter root password>
Man pages will tell you most of what you need to know about most terminal commands. For info on <someCommand>, try |