I am trying to install a GNU ARM Embedded Toolchain in order to integrate it with Sublime Text 3 in an Ubuntu machine.
I followed this steps, but I got an error:
1.Download the packet from "https://launchpad.net/gcc-arm-embedded/+downloadGo", then unzip the packet in Home directory:
cd ~/
tar -xvjf ~/Downloads/gcc-arm-none-eabi-5_4-2016q3-20160926-linux.tar.bz2
2.Test if the file exist, and permissions are ok.
ll ~/gcc-arm-none-eabi-5_4-2016q3/bin
-rwxrwxrwx 2 root root 776368 set 26 19:36 arm-none-eabi-gcc*
--- I obmited the others files... ---
3.Test if it works:
sudo ~/gcc-arm-none-eabi-5_4-2016q3/bin/arm-none-eabi-gcc --version
But I got this error:
bash: /home/fabio/gcc-arm-none-eabi-5_4-2016q3/bin/arm-none-eabi-gcc: No such file or directory
How can I fix this? My user is "fabio", but the owner of the file is root.