compatibility check

I was wanting to know if sun offers a tool that you can download and run to check the compatibility of your system and it's components for an switch over to solaris 10. i am currenlty running windows xp and was wanting to make the switch, and wondered if there was a tool for that or if i needed to check compatibility of all my components on the compatibility list.

[374 byte] By [pcpitcher1a] at [2007-11-26 16:53:15]
# 1

I doubt it, since all the Java byte code would be platform independant,

it's just how you use it that becomes platform dependant.

The biggest problems you'd hit when switching from Windows to Unix are

a) Unix file permissions eg. unable to read/write/create directories,

porting batch files to shell scripts, execute permission on scripts

b) Case sensitivities of files, directories, resources, property files

c) Any hard coded paths would need to be changed to use File.separator, for

their platform dependant equivalent

d) Potential file encoding problems on text files and property files, also

in carriage return & linefeeds

e) Potentially "headless" environments in Unix. Where they don't have an X-Server running, so most, if not all, your Awt & Swing calls would fail.

f) Any calls to native libraries would need to Unix system objects instead of the Windows DLL's.( *.so )

regards,

Owen

omcgoverna at 2007-7-8 23:20:55 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 2
Check out this URL.. Might be a way to see if your machine can run Solaris.. http://www.serverwatch.com/tutorials/article.php/3647306 See links about BeleniX.. http://www.genunix.org/distributions/belenix_site/This should help..
gcollins1a at 2007-7-8 23:20:55 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 3
Also see: http://www.sun.com/bigadmin/hcl/
gcollins1a at 2007-7-8 23:20:55 > top of Java-index,Java HotSpot Virtual Machine,Specifications...