o ubuntu 11.10 é suporte ns2.29

1

Preciso da sua ajuda, sou iniciante no NS2 e estou tentando instalar o ns2.29 no ubuntu 11.10 32bits, mas não consigo. Esta mensagem aparece e a instalação parou:

Build tcl8.4.11
============================================================
loading cache ./config.cache
checking whether to use symlinks for manpages... no
checking whether to compress the manpages... no
checking whether to add a package name suffix for the manpages... no
checking for gcc... gcc
checking whether the C compiler (gcc ) works... yes
checking whether the C compiler (gcc ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for building with threads... no (default)
checking if the compiler understands -pipe... yes
checking how to run the C preprocessor... gcc -pipe -E
checking for sin... no
checking for main in -lieee... yes
checking for main in -linet... no
checking for net/errno.h... no
checking for connect... yes
checking for gethostbyname... yes
checking how to build libraries... static
checking for ranlib... ranlib
checking if 64bit support is requested... no
checking if 64bit Sparc VIS support is requested... no
checking system version (for dynamic loading)... ./configure: 1: Syntax error: Unterminated quoted string
tcl8.3.2 configuration failed! Exiting ...
Tcl is not part of the ns project. Please see www.Scriptics.com
to see if they have a fix for your platform.

Alguém pode me ajudar?

    
por nasser 07.04.2012 / 16:10

1 resposta

2

Basicamente, em alguns scripts de configuração, as chamadas para o awk são mal formadas.

  • Vá para a pasta ns-allinone e digite

    find . -name configure 
    

Uma lista dos scripts de configuração deve aparecer.

  • Para cada um deles, substitua qualquer linha assim:

    system=MP-RAS-'awk ‘{print }’ /etc/.relid’' 
    

    com ...

    system=MP-RAS-'awk ‘{print }’ /etc/.relid' 
    

Agora, execute novamente ./install na pasta ns-allinone .

Fonte

    
por Rinzwind 07.04.2012 / 16:26