<div dir="ltr"><div class="gmail_default" style="font-size:small">Nothing came up with the first command but here is the result of the second command: raymond@raymond-HP-Pavilion-TS-15-Notebook-PC:~$  find $HOME -name 'client.*'<br>/home/raymond/Downloads/etc/anonymizer_universal_openvpn/lib/au/client.key<br>/home/raymond/Downloads/etc/anonymizer_universal_openvpn/lib/au/client.crt<br>/home/raymond/Downloads/etc/anonymizer_universal_openvpn/anonymizer_universal_openvpn/lib/au/client.key<br>/home/raymond/Downloads/etc/anonymizer_universal_openvpn/anonymizer_universal_openvpn/lib/au/client.crt<br>/home/raymond/Downloads/etc/anonymizer_universal_openvpn/anonymizer_universal_openvpn/anonymizer_universal_openvpn/lib/au/client.key<br>/home/raymond/Downloads/etc/anonymizer_universal_openvpn/anonymizer_universal_openvpn/anonymizer_universal_openvpn/lib/au/client.crt<br>/home/raymond/Downloads/anonymizer_universal_openvpn (2)/lib/au/client.key<br>/home/raymond/Downloads/anonymizer_universal_openvpn (2)/lib/au/client.crt<br>/home/raymond/Downloads/anonymizer_universal_openvpn (3)/lib/au/client.key<br>/home/raymond/Downloads/anonymizer_universal_openvpn (3)/lib/au/client.crt<br>raymond@raymond-HP-Pavilion-TS-15-Notebook-PC:~$ <br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 23, 2015 at 12:07 PM, Stephen M. Webb <span dir="ltr"><<a href="mailto:stephen.webb@canonical.com" target="_blank">stephen.webb@canonical.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">-----BEGIN PGP SIGNED MESSAGE-----<br>
Hash: SHA1<br>
<br>
</span><span class="">On 15-03-23 11:50 AM, Raymond House wrote:<br>
> Hi Steven, sorry about the error, I always copy/paste when I'm attempting a command line command and I should have<br>
</span>> done that here too. Here it is as per the Open VPN link :*openvpn --config client.ovpn*<br>
<br>
Perhaps this is another "current working directory issue".  Let's start by looking for the config file in question by<br>
issuing the following command.<br>
<br>
  find $HOME -name client.ovpn<br>
<br>
That command should traverse your entire home directory tree looking for a file named "client.ovpn" in whatever<br>
directory it's stored in and print its full path to the screen.  Either it will do that, at which point you can<br>
cut-and-paste the entire absolute path into your "openvpn --config" command, or will not find it because it is not there.<br>
<br>
If the file is not found, you can use wildcards to match a part of the file name.  The wildcards have to be escaped<br>
from the shell parser or else it will try to "glob" then (that is, expand them by matching file names in the current<br>
working directory).  You could try something like this.<br>
<br>
  find $HOME -name 'client.*'<br>
<br>
to match all files beginning with the string "client".  Note those are single quotes (apostrophes), not back ticks or<br>
double quotes.  Let's just hope the first suggestion works and the file is found in a subdirectory somewhere.<br>
<span class=""><br>
- --<br>
Stephen M. Webb  <<a href="mailto:stephen@ubuntu.com">stephen@ubuntu.com</a>><br>
<a href="https://launchpad.net/~bregma" target="_blank">https://launchpad.net/~bregma</a><br>
-----BEGIN PGP SIGNATURE-----<br>
Version: GnuPG v1<br>
<br>
</span>iEYEARECAAYFAlUQOisACgkQTLRKqWcl7vMPMACgwZsAJhCilWk8PLfmKl3f+Us4<br>
GwkAmwV5o10wiTE6kr97lGL6nV3s91Md<br>
=WK5v<br>
<div class="HOEnZb"><div class="h5">-----END PGP SIGNATURE-----<br>
<br>
--<br>
ubuntu-ca mailing list<br>
<a href="mailto:ubuntu-ca@lists.ubuntu.com">ubuntu-ca@lists.ubuntu.com</a><br>
<a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-ca" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-ca</a><br>
</div></div></blockquote></div><br></div>