Mandriva Linux

Discussion in 'Linux, BSD and Other OS's' started by Willz, Aug 19, 2006.

  1. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    Ok, i have decided to give the latest version of Mandriva a go, last time i tried it i suppose it was better, less messing about with installing, was alot easier too.

    Anyway, how do i go about installing ATi Drivers for Mandriva, do i use those repository things, or go to the ATi website or somthing? Also, is the X-FI supported by Mandriva? With mandriva is it easier to go to a website and download software compared to Kubuntu?
     
  2. Addis

    Addis The King

    Likes Received:
    91
    Trophy Points:
    48
    What kind of software do you want to download from the web? Most of its for Windows, and by adding more repositories you get loads of available software. Including a nice system CPU monitor called hot-babe.

    You need to download the latest Linux drivers from the ATi website, and then run the installer as root.
    Code:
    ./installer-name
    Linux distributions all use the Linux kernel, and since there's no driver available then it doesn't matter what distro you pick, it won't be supported until the devs release it.

    Check out the "Getting the most from Mandriva" thread.
     
  3. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    Oki, well i will check the repositories out, oh and this Hot-Babe thing, is it like a realy babe, or is it just some sort of cartoon, or neither? :p
     
  4. Addis

    Addis The King

    Likes Received:
    91
    Trophy Points:
    48
    Heh its part of the plf-free repository, which is included in the Mandriva thread. Its just a cartoon... ;)
     
  5. megamaced

    megamaced Geek Geek Geek!

    Likes Received:
    0
    Trophy Points:
    36
    LOL, how difficult can it be to simply type 'apt-get install <program>' ?
     
  6. Anti-Trend

    Anti-Trend Nonconformist Geek

    Likes Received:
    118
    Trophy Points:
    63
    Yeah, in Mandriva it's like this:
    Code:
    urpmi <program>
    ...or, like Synaptic in Debian, there is a graphical software installer as well. That's the method I recommend for n00bs, since they may not know what software they're looking for in the first place. In Mandriva, the graphical tool is called rpmdrake, and can also be launched through Mandriva Control Center (aka "Configure My Computer", or mcc from the command line).
     
  7. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    Ok, i was am trying to install graphics drivers now, the thing is, i go to the software installer in Mandriva, i search for ATi, and it doesent come up with anything :s, also when i go to the command, type, Urpmi Ati, it says something like the command is not found or no such file or directory :s, do i have to use the command in root, if so, how do i log into root again?, and what do i have to type for the graphics drivers?
     
  8. Addis

    Addis The King

    Likes Received:
    91
    Trophy Points:
    48
    I don't think ATi drivers are included in the mandriva repositories since its proprietary. So you'll have to download the installer from the website as I said before.

    urpmi installs software, so naturally you need root permissions to run it. To go into root from a terminal type
    Code:
    su
    and enter your root password. Exit when you're done with "exit".
     
  9. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    Installer from ATi, but they don't work, well they did not when i last tried them.


    I downloaded it, all it is is a file that opens up in Kwrite or something, and it's just text :s
     
  10. megamaced

    megamaced Geek Geek Geek!

    Likes Received:
    0
    Trophy Points:
    36
    You have to make the file executable.

    Code:
    chmod +x <filename>
     
  11. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    were do i put that?, in command nothing happens.
     
  12. donkey42

    donkey42 plank

    Likes Received:
    9
    Trophy Points:
    38
    i thought it was
    Code:
    chmod a+x <filename>
    juct type it into koncole

    Edit: nothing will happen until you execute it with
    Code:
    ./<filename>
     
  13. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    i type this in Konsole:

    [will@localhost ~]$ chmod a+x /home/will/Desktop/attachment

    i get:

    [will@localhost ~]$

    Thats it :\

    same with just +x
     
  14. donkey42

    donkey42 plank

    Likes Received:
    9
    Trophy Points:
    38
    then type
    Code:
    ./<filename>
     
  15. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    [will@localhost ~]$ chmod a+x ./home/will/Desktop/attachment
    chmod: cannot access `./home/will/Desktop/attachment': No such file or directory
     
  16. donkey42

    donkey42 plank

    Likes Received:
    9
    Trophy Points:
    38
    the command is:
    Code:
    chmod a+x <filename>
    not
    Code:
    chmod a+x .<filename>
    (minus the . (full stop)
    btw what is the filename you are trying to execute ? or program your trying to install ?

    btw "chmod a+x <filename>" only makes a file executable, so you can then run it with "./<filename>"
     
  17. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    i am running a file names attachment.
     
  18. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    all i get is:

    [will@localhost ~]$ chmod a+x /home/will/Desktop/attachment
    i press enter and get:
    [will@localhost ~]$
     
  19. donkey42

    donkey42 plank

    Likes Received:
    9
    Trophy Points:
    38
    that actually good because the file is now executable, now do
    Code:
    ./home/will/Desktop/attachment
    although i alwawys change to the directory i'm working in by typing
    Code:
    cd /home/will/Desktop/attachment
    to make the command less complicated

    Edit: then
    Code:
    ./attachment
     
  20. Willz

    Willz MiCrO$oFt $uK$ :D

    Likes Received:
    36
    Trophy Points:
    48
    [will@localhost ~]$ ./home/will/Desktop/attachment
    bash: ./home/will/Desktop/attachment: No such file or directory
    [will@localhost ~]$
     

Share This Page