I suspect the additional spaces are artefacts of translating the original text in-page. The original text when viewed in a browser or via the email notification doesn't show spaces (well not for me).
In any case I suspect the issue is one of paths. The cp command was issued from the /home/pi directory and command as issued will try to copy /home/pi/util/apache/conf.d/weewx.conf which of course does not exist. You will find util/apache/conf.d/weewx.conf is in /home/weewx if installed via setup.py. It's a bit more complicated if you installed via deb or rpm, there is no util directory but you will find the contents of the util directory in /etc/weewx. So you can either change directories or include a full path in the cp command as follows: $ sudo cp /home/weewx/util/apache/conf.d/weewx.conf /etc/apache2/conf.d for a setup.py install or $ sudo cp /etc/weewx/apache/conf.d/weewx.conf /etc/apache2/conf.d for a deb/rpm install. Gary On Wednesday, 29 May 2019 04:30:08 UTC+10, vince wrote: > > On Tuesday, May 28, 2019 at 11:16:15 AM UTC-7, Günther Wrana wrote: > >> Was habe ich falsch eingegeben oder was muss ich noch tun? >> > > You have extra space characters in your command. > > Try: > sudo cp util/apache/conf.d/weewx.conf /etc/apache2/conf.d > > > -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/84e0a4e7-56e4-49cc-91ea-ef3517239a2e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
