Hi Caper,
Not sure how much you know. Apologies if its too basic for you. I'll also do this long hand, so you see all the steps. Their are some ways of doing it quickly, but that won't help you understand the commands.
1. Log into putty to your Bubba using PuTTy as yourself (or what ever user name you usually use).
2. Now change to admin
(thats su<space>minus<space>)
Enter the root password, which is usually excito by default. (I strongly recommend you change this at some point, its way too easy to guess)
Now we fix the missing file:
Code: Select all
cd /usr/share/bubba-backend/default_web
This puts us in the right directory. YOu can skip the next step if you want, I'm just showing how you can look at the contents of the directory.
This will show you what else is in the directory, beside the file we need for now. ls is a useful command to know.
Now lets copy the file using the cp command.
This copies the index.html file to the right directory. However, its not going to be readable by your webserver immediately, so lets fix that.
We are now in the right directory again. You could use ls again here, if you wanted to see what is there. Lets fix the file permissions. Don't worry if you don't understand what this means for now.
Changes who is the owner of the file to be the webserver, so that its readable
changes the permissions, so that the webserver only has the access it needs to the file and nothing more.
That should then work for you. Let me know if you need more help and I'll happily walk you through all of the steps.