SDB command not found

7.7k Views Asked by At

I have two PCs, ones that runs mac & the other ubuntu, I installed tizen sdk on both and it is working fine, however, as I'm trying to pull files from the tizen device I get an error message "SDB connection error", which means that my device is not rooted, so when I try to root it using sdb command on both mac & ubuntu I get that sdb command not found, even though I did navigate into the folder in which sdb exist, tizen-sdk/tools and execute the command, but still got the same massage. what I'm doing wrong here?

3

There are 3 best solutions below

0
On

Use the below step to get solved.

Step 1: open terminal

Step 2: write command $ nano ~/.bash_profile

Step 3: Paste the given below the code line to the bottom of and change <pc_user_name> to your PC name, then save it and exit.

export TIZEN_HOME=/Users/<pc_user_name>/tizen-studio
export PATH=${PATH}:/Users/<pc_user_name>/tizen-studio/tools
export PATH=${PATH}:/Users/<pc_user_name>/tizen-studio/tools/ide/bin

Step 4: write command $ source ~/.bash_profile

Step 5: $ sdb write command to sdb instruction

Either you can be going this path to find ./sdb and other write sdb command will work perfectly.

path: /Users/<pc_user_name>/tizen-studio/tools/sdb

0
On

You have to export the Tizen path to the PATH variable In your Ubuntu OS,

  1. Open Home directory
  2. Press CTRL+H
  3. Open .bashrc file
  4. Append the text at last of the file export PATH=$PATH:/home/YOUR_PC_NAME/tizen-sdk/tools

Try now.

6
On

There are a few things you can try to fix this.

  1. Use the Connection explorer in SDK The SDK provides a "Connection Explorer" view on the bottom left corner. It provides an icon for pulling files from the device.

  2. Your PATH variable might not be set properly. On Ubuntu you can verify this using "export" and checking if your PATH variable points to /tizen-sdk/tools (Note : This should be set typically during the SDK installation.) Check your "command shell rc file (.bashrc) or your .profile files to check if PATH variable is being overridden.

One of these two should help you. Let me know how it goes.