Thanks for the additional information. I just
guessed that it was likely to be an oracle database.
I am no expert at things-oracle (but did develop a medium-sized application on it once back in 1990, it worked).
It seems to me that you cannot just copy your ASM devices from solaris to linux (some one please correct me). But these devices are just raw devices (without any traditional "filesystem" holding your database-data [a bit like
swap]). The binary format in which they do this may differ between OSs or implementations of oracle. I don't know. You should probably:
- Backup your solaris oracle database data using oracle's tools to however many external files it needs. Maybe best to use a linux-formatted drive (ext2,3,4) to do this.
- Set up a new oracle instance on linux.
- Configure it to use ASM (linux seems to be able to handle this OK).
- Restore your oracle database to the linux system
- Test it.
If you have trouble, I am sure oracle will be able to help you. (They did me, waaaay back).
Good luck.