Setting Up Your Web Folder
Just follow these steps...
- Go back to the Linux environment. You dont have to logout from windows to do that.
Remember the Tip (Press simultaneously "Control, Alt and Enter" to switch between Linux and Windows environments)
- Open up a Terminal.
You can do that by going to the Actions button and typing konsole
- At your command prompt, type 'chmod 711 ~' and press ENTER
- Then type 'mkdir .html' and press ENTER.
You just created a folder with name ".html/". In this folder we will place our web pages, in order to be accessible from the internet
- Then type 'chmod 711 ~/.html' and press ENTER
- Go back to the Windows environment. Open a windows explorer (a.k.a My computer). Locate your web page and copy it to the folder ".html/" that is located in your network drive.
- Switch again to the Linux environment and go again to the Terminal.
- Type 'chmod 644 ~/.html/*' and press ENTER.
- That's it! You can now access your home page by typing in a web broswer 'http://www.cs.ucr.edu/~login/page.html' where login is your 'login' name and 'page.html' is the name of your web page.
Later if we add other web pages we will have to change their permissions in order to be accessible from the internet.
To do that you should follow this procedure (Click Here) .