Nadir asked this same question, maybe yesterday. I googled, and this is from wikipedia -
dm-crypt and LUKS encrypted disks can be accessed and used under MS Windows using FreeOTFE, provided that the filesystem used is supported by Windows (e.g. FAT/FAT32/NTFS).
So I guess my statement in the howto about needing a linux partition is wrong. If you try this with fat32 or ntfs, please let me know, and I'll edit the howto to mention it. (Guess I could test cryptsetup in a vm and see how it works with one of those filesystems.)
Edit: Looks like it works with ntfs. I booted a live iso in vbox, created a 1GB ntfs partition with cfdisk (gparted kept choking on making the filesystem, said it was already mounted when it wasn't), created a filesystem with
- Code: Select all
mkntfs -Q /dev/mapper/something
and then ran the cryptsetup commands as in the howto. I was able to copy files to it, it shows up as ntfs in 'fdisk -l' and then I closed it and unmounted it, all with no errors.
Note: I've got ntfs-3g and ntfsprogs installed on my live system.
Edit2: edited my edit (fixed a command)