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?
SDB command not found
7.7k Views Asked by Sara S'h At
3
There are 3 best solutions below
0

You have to export the Tizen path to the PATH variable In your Ubuntu OS,
- Open Home directory
- Press CTRL+H
- Open .bashrc file
- Append the text at last of the file export PATH=$PATH:/home/YOUR_PC_NAME/tizen-sdk/tools
Try now.
6

There are a few things you can try to fix this.
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.
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.
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.
Step 4: write command
$ source ~/.bash_profile
Step 5:
$ sdb
write command to sdb instructionEither you can be going this path to find
./sdb
and other write sdb command will work perfectly.