amussey / FreeNAS-Transmission-OpenVPN

These scripts will configure Transmission (the BitTorrent client) to launch and run only through OpenVPN. They are designed to be run on top of the Transmission jail for FreeNAS.
54 stars 10 forks source link

Error in FreeNAS 9.10 #13

Open daword2011 opened 7 years ago

daword2011 commented 7 years ago

Everything went well up until the configuration are. Got the config file downloaded and it unzipped fine but when applying the line mv Sweden.ovpn openvpn.conf (I use mv US Texas.ovpn openvpn.conf) I get the error mv: openvpn.conf is not a directory. I am pretty new to this process, I imagine it is an easy fix but could you walk me through it?

Here are the exact lines I get: root@transmission_1:/FreeNAS-Transmission-OpenVPN/openvpn # mv US Texas.ovpn ope nvpn.conf
mv: openvpn.conf is not a directory
root@transmission_1:/FreeNAS-Transmission-OpenVPN/openvpn #

amussey commented 7 years ago

Hey @daword2011, you may have to put US Texas.ovpn into quotes. So, the command should read:

mv "US Texas.ovpn" openvpn.conf

(Otherwise, bash thinks you're trying to copy 2 files, US and Texas.ovpn into a directory named openvpn.conf.)

Let me know if you're still having problems!