Eu estou tentando construir o TensorFlow 1.6. em um Nvidia Jetson TX2, usando um script localizado em: link
Neste script, "updatedb" é invocado (linha 96) e eu tenho um problema neste momento:
BuildTensorflow.sh: line 96: /usr/bin/updatedb: cannot execute binary file: Exec format error
$ sudo updatedb
/usr/bin/updatedb: 1: /usr/bin/updatedb: Syntax error: word unexpected (expecting ")")
Talvez essas informações possam ajudar;
$ sudo apt-get install mlocate
Reading package lists... Done
Building dependency tree
Reading state information... Done
mlocate:i386 is already the newest version (0.26-1ubuntu2).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
sudo apt-get install locate
Reading package lists... Done
Building dependency tree
Reading state information... Done
locate:i386 is already the newest version (4.6.0+git+20160126-2).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
$ dpkg -S /usr/bin/updatedb.findutils
locate:i386: /usr/bin/updatedb.findutils
$ dpkg --print-architecture
arm64
$ dpkg --print-foreign-architectures
i386
$ sudo gedit /etc/apt/sources.list
#---------------------------------------------------------------------
---------#
# OFFICIAL UBUNTU REPOS
#
#---------------------------------------------------------------------
---------#
###### Ubuntu Main Repos
deb [arch=amd64,i386] http://tw.archive.ubuntu.com/ubuntu/ xenial main
restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu/ xenial main restricted
universe multiverse
###### Ubuntu Update Repos
deb [arch=amd64,i386] http://tw.archive.ubuntu.com/ubuntu/ xenial-
security main restricted universe multiverse
deb [arch=amd64,i386] http://tw.archive.ubuntu.com/ubuntu/ xenial-
updates main restricted universe multiverse
deb [arch=amd64,i386] http://tw.archive.ubuntu.com/ubuntu/ xenial-
proposed main restricted universe multiverse
deb [arch=amd64,i386] http://tw.archive.ubuntu.com/ubuntu/ xenial-
backports main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu/ xenial-security main
restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu/ xenial-updates main
restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu/ xenial-proposed main
restricted universe multiverse
$ head -n1 /etc/nv_tegra_release
# R28 (release), REVISION: 2.0, GCID: 10567845, BOARD: t186ref, EABI:
aarch64, DATE: Fri Mar 2 04:57:01 UTC 2018
Estou usando o Ubuntu 16.04
Eu realmente não sei como resolver este problema, qualquer ajuda / lead é apreciado.
Agradeço antecipadamente por sua ajuda!