I am working on Java for few years but most of the time I work on Windows OS as it is my DEV environment. Now I want to work on Java+Linux environment.
I have installed Ubuntu 12.04, installed Oracle JDK, Eclipse, Netbeans…so far good.
But I am looking for resources/websites/blogs focusing on Java Development On Linux to learn more about how resolve common issues for newbies(like me), any profiling/debugging tools for java apps, tips on log files searching, identifying how many java processes are running, killing a particular java process etc.
By googling I am able to get these details individually… want to know if any websites/blogs exclusively focusing on above mentioned areas?
The things you are looking for a general purpose UNIX commands and are not specific to Java or even Linux. All the Java command are the same under Windows and Linux and if you use an IDE you don’t need to worry about them
Same as Windows. Use the debug button in your IDE for debugging and
jvisualvmfor profiling or a commercial profiler like YourKit.Use
lessorgrepor both. 😉 You can use these in Windows using Cygwin.Use
jps -lvmjust like in Windows.Use
kill {pid}I wouldn’t imagine there is. Look for common UNIX commands instead.