cryptdisk with opensuse

hi
I have a server with opensuse 13.2 installed that use raid 1 sw and encryption about disks.
Now I’d like to ask how can mount one of this disk in another server?
I ask because this other server is broked

I can’t help with the RAID.

For encryption, one would normally use the “cryptsetup” command, as in:


# cryptsetup luksOpen  device virtualname

Here “device” would presumably be a RAID device for your situation. Once openend, you can then access the encrypted file system as “/dev/mapper/virtualname”, and you can mount it with that device name.

If you are not using LUKS encryption, check the man pages for “cryptsetup”.