Results 1 to 2 of 2

Thread: Problem installing program

  1. #1
    Join Date
    Dec 2010
    Beans
    2

    Problem installing program

    Dear all,

    I've been trying to install this program through the Ubuntu terminal:
    http://www.labri.fr/perso/moot/grail3.html
    Following the instructions, it all goes well until I come to the 'make' command. Here it tries to make some new directories, but fails:
    ...
    mkdir /hoi/share/Grail
    mkdir: cannot create directory `/hoi/share/Grail': No such file or directory
    ...
    etc.

    I think the command should de mkdir ./hoi/share/Grail, right? So I went and changed the prefix in the Makefile file to have a period in front of it.

    But it still comes up with hundreds of errors.

    Does anyone have any idea on what to do?

    Greetinghs,
    Marty

  2. #2
    Join Date
    Feb 2009
    Location
    USA
    Beans
    3,186

    Re: Problem installing program

    /hoi is in Root space. To create anything there you need to use sudo (which should be avoided).

    ~/hoi or right after staring the terminal ./hoi is in your home folder (/home/your-username).

    The second error that you get is about creating multiple levels of folders. Create them one by one:

    Code:
    mkdir ~/hoi
    mkdir ~/hoi/share
    mkdir ~/hoi/share/Grail
    You can also use the "-p" option:
    Code:
    mkdir -p ~/hoi/share/Grail

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
  •