On Mon, 10 Nov 2003, Christians, Stefan Mr. wrote: >Anaconda gives me following output: > > * doing kickstart ... setting it up > * ks location: http://kickstartserver/kickstart.cgi > * transferring: http://kickstartserver//./kickstart.cgi to a fd > * failed to retrieve http://kickstartserver///kickstart.cgi > >A view at /var/log/tux on the server shows: > > blah,blah "GET /./kickstart.cgi HTTP/1.0" 404 0 "-" "" > >Where do all those extra slashes and dots come from? loader/urls.c, by the look of it. [from anaconda-7.3-7.src.rpm] if (!strcmp(ui->prefix, "/")) finalPrefix = "/."; else finalPrefix = ui->prefix; Either configure your webserver to return the "right thing" from the URL actually being requested, or try: > linux ks=http://kickstartserver//kickstart.cgi as the ks file specifier; this might fool urls.c into not prepending "/.". Hope this helps, Phil