after flashing the Jetson TK1

ok. i’m up and running thus far. even got arm chromium installed. here’s what i did:

sudo ./flash.sh -S 14580MiB jetson-tk1 mmcblk0p1

commands run after flashing the 14580MiB

sudo apt-get update
sudo dpkg --configure -a
sudo apt-get update
sudo apt-get upgrade
sudo date -s “4 jun 2014 19:54:00”
sudo apt-get --fix-missing install
sudo apt-get install -f
sudo reboot
sudo chmod o+x /usr/lib/dbus-1.0/dbus-daemon-launch-helper
sudo reboot
sudo reboot
apt-get install exfat-fuse

not sucessful YET:

echo “options usbcore autosuspend=-1” > /etc/modprobe.d/disable-usb-autosuspend.conf
echo -1 > /sys/module/usbcore/parameters/autosuspend
sudo bash -c ‘echo -1 > /sys/module/usbcore/parameters/autosuspend’

sources

http://emacstragic.net/error-gdbus-errororg-freedesktop-dbus-error-spawn-execfailed-failed-to-execute-program-usrlibdbus-1-0dbus-daemon-launch-helper-success/

Error: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ExecFailed: Failed to execute program /usr/lib/dbus-1.0/dbus-daemon-launch-helper: Success

The cause of this proved quite difficult to track down. Eventually a Gentoo forum post led me to the solution. It seems that somewhere along the line, dbus-daemon-launch-helper has ended up with the wrong permissions. Change its permissions to be world executable.

chmod o+x /usr/lib/dbus-1.0/dbus-daemon-launch-helper

I did it according your command list.
Thank you all very much!

The problem was that on the host machine I installed JetPack on an ntfs disk.

Thank you very much to all