I also picked up C# a few years ago, at first as simply a hobby. The way I chose to dive in was by picking up a good book from my school library, and dedicating a summer to really exploring the language. I also found it motivating to think of a small project to work on and code up in C#. As you read and learn new features, you will find new places to use them in your application.
Your C++/Java background should make it fairly easy to learn C#. The syntax is very similar, and the type-safe object-oriented design will be very familiar.
When I started, I was using Visual Studio on Windows, and I maintain that it's a great, feature-rich IDE. Moreover, most C# books are written around Visual Studio 2005/2008, and they will reference it's specific UI. That being said, Mono for Linux is very stable, and I believe it can compile/run all C# 2.0 code. Also, there is a great IDE called MonoDevelop which tends to emulate Visual Studio, and the latest version is even compatible with Visual Studio project files. In short, you may be missing out on some of the "ease" of Visual Studio, but you can surely learn and use C# under Mono on Linux.