0

I am currently trying to get ISCE running and for this task (as I get the error that it is missing) I need to create/edit an (existing) .netrc file.

Unfortunately I am really new to WSL/Ubuntu over all, so I do not know how to do this since I only have the terminal to do stuff.

Would be great if someone can help me/give me a link to somethig I did not find.

Thanks, Felix

Felix
  • 5

1 Answers1

1

You can create them in your home directory. So

vi /home/$USER/.netrc

And the contents generally looks like this:

machine {remote-server}
login {email}
password {password}

ISCE might look for a specific location (but I would assume it will look in /home/$USER/ by default).

Rinzwind
  • 299,756