Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse RDT (PTP) Command not found "rm"

I am using RSE to connect to a Linux RDT server. I connect through SOCKS (SSH tunneling from another machine) but that's not the issue, because I have the same problem when I connect directly (when I am in the same LAN).

The settings are pretty straightforward, and I can connect to the remote project and save files.

However, when I try to build I have:

Error: Program "rm" not found in PATH

Needless to say, the environment variable PATH is defined and yes, it points to /bin among others.

Anyone can guess what's the problem here?

After that, I have a can not clean programmatically: build workspace path is not specified message.

like image 281
huff Avatar asked Aug 16 '26 05:08

huff


1 Answers

Why don't you simple use absolute pathname? /bin/rm

also ' ' (spaces) in PATH could give you problems.

like image 126
Alejandro Avatar answered Aug 17 '26 20:08

Alejandro