Results 1 to 4 of 4

Thread: Installing drivers for a game

  1. #1
    Join Date
    Feb 2007
    Location
    Michigan, United States
    Beans
    164
    Distro
    Ubuntu 10.04 Lucid Lynx

    Installing drivers for a game

    I am installing a game, and it requires Allegro drivers. During the installation it requires me to run a command as follows.

    Code:
    su -c "make install"
    When I do, it asks me for a password. I am assuming this is the normal password I use for logging in and so forth. When I type it in, I am getting the following.

    su: Authentication failure
    Sorry.
    So... what am I doing wrong? Does Ubuntu have any other passwords other then the default one I set up for my login? Thanks in advance.

  2. #2
    Join Date
    Dec 2006
    Location
    ACT, Australia
    Beans
    438
    Distro
    Ubuntu Karmic Koala (testing)

    Re: Installing drivers for a game

    I am far from being a linux guru, but intuitively, I would type

    Code:
    sudo make install
    In my understanding of the manual of "su", the option "-c" simply run a command, and therefore "sudo" should work the same.

    Alternatively you could type

    Code:
    sudo -i
    make install
    in this way - however - you will be logged for the full session as root, therefore you should really pay attention to what you will be typing!

  3. #3
    Join Date
    Feb 2007
    Location
    Michigan, United States
    Beans
    164
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Installing drivers for a game

    Thank you for your help. The first command:

    Code:
    sudo make install
    Did the trick. I am one step closer to playing Kraptor! Got Allegro installed, just need to get the audio files installed. (Dumb) And I am good to go.

  4. #4
    Join Date
    Oct 2006
    Beans
    46

    Re: Installing drivers for a game

    Yeah, su asks for your root password, which you have to explicitly set up, by doing
    Code:
    sudo passwd
    But there's not much point to it, unless you prefer to be logged in as root.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •