Hi,
I tested and I have an issue.
I have a mfile, and a simple script looping on all subdirectories of my directory.
If I use the following line:
nohup NumForce -mfile ../mfile -scrpath /tmp > NumForce.out &
for each subdirectory, I get this error in my NumForce.out file:
ssh: connect to host theophile-HP-Z420-Workstation port 22: Connection refused^M
Error logging in on theophile-HP-Z420-Workstation:1
Thus, I expected that by using sudo command, I could remove that annoying permission problem:
sudo nohup NumForce -mfile ../mfile -scrpath /tmp > NumForce.out &
But all I get doing that is an empty NumForce.out file and the following error appearing directly in the command prompt:
nohup: failed to run command ‘NumForce’: No such file or directory
In short, I can't run my frequency calculations because of permissions problems, but when I allow myself the permissions, I have a weird bug preventing me from running calculations.
What to do? I tried to check if the NumForce script is in Windows format (I saved the default file, copied it, converted the copied file using dos2unix and tried to use it), but it didn't work. I suspect that there is some format problem somewhere (not in NumForce), but I don't know where it is and how to find it.