Let me add to your list of reading material; the C++ FAQ Lite is absolutely the best resource for learning the ins and outs of C++. It is useful both as a reference for old timers and as an introduction to beginners. I would strongly recommend reading as much of it as you possibly can, and try small examples that demonstrate each feature mentioned before joining an actual project.
Once you feel somewhat comfortable in the language, then I would recommend taking a look at Google Code and seeing if there are any C++ projects that are in need of some help. As for the common gateway interface (CGI), that is a language-agnostic standard of how to communicate within a webserver... namely how to obtain request information from the webserver and how to return results that the webserver can give back to the user (will make more sense when you are familiar with standard input, standard output, and environment variables among other things).
As for the development environment, I find that Ubuntu is the easiest one to configure:
sudo apt-get install build-essential libboost-dev cmake libqt4-dev pkg-config \
kdevelop anjuta emacs23 liblog4cxx10-dev libgtest-dev
You will probably want to familiarize yourself with some tools and libraries:
- Building: a build tool like CMake; indirectly, Make and GCC.
- Logging: Log4Cxx
- Testing: Google Test (gtest)
- Everything else: Boost (occassionally, Qt)
Edit
Regardless of whether you meant computer graphics or web serving, the resources indicated above are just as applicable (although there may also be special-purpose graphics libraries to look at as well).