This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

BEAGLEBK: Problem with installing SDK in Linux

Part Number: BEAGLEBK

Hello all,

I am currently working on the following project 0

 dev.ti.com/.../154-stack_03_linux_project_0.html

I am working on task 3 in the above link , titled Task 3: Install the TI-15.4 Stack Linux Gateway SDK

I installed this file by following the link , ti154stack_linux_x64_2_08_00_04.run

and through the Linux terminal ( I am using Linux Mint 19) I navigated to the folder where the above file is installed , and I put the following commands in the terminal as stated per the instructions:

neil@neil-LIFEBOOK-AH531:~/Downloads$ +x ti15.4stack_linux_x64_2_08_00_04.run$./ti15.4stack_linux_x64_2_08_00_04.run
+x: command not found
neil@neil-LIFEBOOK-AH531:~/Downloads$ ti15.4stack_linux_x64_2_08_00_04.run$./ti15.4stack_linux_x64_2_08_00_04.run
bash: ti15.4stack_linux_x64_2_08_00_04.run$./ti15.4stack_linux_x64_2_08_00_04.run: No such file or directory

Any help would be appreciated. Regards.




Neil Mustafa.

  • Hi Neil,

    You didn't follow the steps as stated in the guide, please read again.

    $ chmod +x ti15.4stack_linux_x64_2_08_00_04.run
    $ ./ti15.4stack_linux_x64_2_08_00_04.run

    Note that you need to call "chmod", and executing the installer requires the prefix "./".

  • Hi Severin,

    I did read it , so in the terminal I entered

    chmod +x ti15.4stack_linux_x64_2_08_00_04.run ./ti15.4stack_linux_x64_2_08_00_04.run

    and this is what I got :

    neil@neil-LIFEBOOK-AH531:~/Downloads$ chmod +x ti15.4stack_linux_x64_2_08_00_04.run ./ti15.4stack_linux_x64_2_08_00_04.run
    chmod: cannot access 'ti15.4stack_linux_x64_2_08_00_04.run': No such file or directory
    chmod: cannot access './ti15.4stack_linux_x64_2_08_00_04.run': No such file or directory

    Please note , I am using Linux Mint 19.1

    Regards.


    Neil.

  • Part Number: BEAGLEBK

    Tool/software: Linux

    Hello all,

    I am currently working on the following project 0

     dev.ti.com/.../154-stack_03_linux_project_0.html

    I am working on task 3 in the above link , titled Task 3: Install the TI-15.4 Stack Linux Gateway SDK

    I installed this file by following the link , ti154stack_linux_x64_2_08_00_04.run

    and through the Linux terminal ( I am using Linux Mint 19) I navigated to the folder where the above file is installed , and I put the following commands in the terminal as stated per the instructions:

    chmod +x ti15.4stack_linux_x64_2_08_00_04.run ./ti15.4stack_linux_x64_2_08_00_04.run

    and this is what I got :

    neil@neil-LIFEBOOK-AH531:~/Downloads$ chmod +x ti15.4stack_linux_x64_2_08_00_04.run ./ti15.4stack_linux_x64_2_08_00_04.run
    chmod: cannot access 'ti15.4stack_linux_x64_2_08_00_04.run': No such file or directory
    chmod: cannot access './ti15.4stack_linux_x64_2_08_00_04.run': No such file or directory

    Please note , I am using Linux Mint 19.1

    Regards.

  • What is printed out when you run

    $ ls

  • The following:

    neil@neil-LIFEBOOK-AH531:~$ ls
    Desktop    Public
    Documents  Templates
    Downloads  ti-processor-sdk-linux-am335x-evm-05.02.00.10-Linux-x86-Install.bin
    Music      Videos
    Pictures
    neil@neil-LIFEBOOK-AH531:~$

  • Now after running the chmod command with the right file name I get :

    neil@neil-LIFEBOOK-AH531:~/Downloads$ ls
    jdk1.8.0_201 Parser_Example_works
    jdk-8u201-linux-x64.tar.gz Parser_Example_works.tar.gz
    mkudevrule.sh Parser_Example.zip
    Parser_Example report.pdf
    Parser_Example_DNE.tar.gz ti154stack_linux_x64_2_08_00_04.run
    neil@neil-LIFEBOOK-AH531:~/Downloads$
  • Hi Neil,

    You wrote the filename wrong when trying to chmod it. This is what you need to type.

    $ chmod +x ti154stack_linux_x64_2_08_00_04.run
    $ ./ti154stack_linux_x64_2_08_00_04.run

    This is a very basic Linux question, and not really appropriate for this forum.