Hi,
[quote]
[linux-devkit]:/home/vivek/Desktop/ti-sdk-omapl138-lcdk-01.00.00> ls
bin dsp-tools Hello linux-devkit Rules.make
board-support example-applications Hello.c pira setup.sh
docs filesystem host-tools pyramis.cpp
[linux-devkit]:/home/vivek/Desktop/ti-sdk-omapl138-lcdk-01.00.00> scp Hello root@192.168.1.171:/home/root/
[/quote]
This command is used wrongly,
scp means "shell copy" that you can only copy/get the file from any PC through LAN but you can't put/send.( thats what your command doing)
I assume that your target IP is 192.168.1.171 and host PC IP is 192.168.1.126
If you want to get the file from PC to target,
target# scp -r vivek@192.168.1.126:/home/vivek/Desktop/Hello /home/root/
If you want to get the file from target to PC,
host-ubuntu# scp -r root@192.168.1.171:/home/root/Hello2 /home/vivek/Desktop/
Please let me know the status.