Why is Wine 900MB? Do you have your windows program in there as well?
You can create a new filesystem manually and mount it to wherever. I would suggest you create a directory inside /mnt called winprogs or something, mount a new filesystem to it, and move your Windows programs to that directory.
Example:
Code: Select all
mkdir /mnt/winprogs
dd if=/dev/zero of=/mnt/fatx/e/winprogs bs=2G count=1
mkreiserfs /mnt/fatx/e/winprogs -q
mount /mnt/fatx/e/winprogs /mnt/winprogs -oloop
That will create a 2GB file on E:, format it with reisefs, and mount it to /mnt/winprogs. You will then need to move your windows programs to that directory. You would also want to add an entry to fstab so it Gentoo automatically mounts the new file system at boot.
Code: Select all
/mnt/fatx/e/winprogs /mnt/winprogs reiserfs loop 0 0
Of course you can use whatever file names, directory names, file system format, and file system size that you want.