Como instalar o Abaqus?

3

Eu estou tentando instalar o Abaqus 6.12 no Ubuntu 12.04. Eu poderia montar o arquivo .iso em um drive virtual. Quando tento executar o arquivo de configuração, recebo o seguinte erro:

***ERROR. The installation should not be executed from 
      the directory that contains the setup files.
      Please change your current working directory and
      rerun the installation.

O seguinte é uma parte do arquivo de configuração que tenho.

#!/bin/csh -f
set args=($argv)
@ arglen = $#args
set cmd = $0
set setup_dir = $cmd:h
set my_cwd = $cwd
cd $setup_dir
set setup_dir = $cwd
cd $my_cwd

if ( "$setup_dir" == "$my_cwd" ) then
echo "***ERROR. The installation should not be executed from "
echo "          the directory that contains the setup files."
echo "          Please change your current working directory and"
echo "          rerun the installation."
exit 1
endif

Como instalo o Abaqus no Ubuntu?

    
por Observer 24.04.2014 / 11:32

1 resposta

2

Eu realizarei as etapas a seguir para garantir que você não esteja criando na árvore de origem:

mkdir $HOME/Abaqus_build_dir
cd $HOME/Abaqus_build_dir
/path/to/your/csh_setup_file
    
por Sylvain Pineau 24.04.2014 / 11:45