starting with the wins fat32...
Im going to post this as though the fat32 filesystem is on partition hdb1, and you want to mount it to /mnt/wins_fat32...
Code:
mkdir /mnt/wins_fat32
then add an entry like this into your /etc/fstab
Code:
/dev/hdb1 /mnt/wins_fat32 vfat defaults 0 0
then do
Code:
mount /mnt/wins_fat32
I'll assume in the next one that your ntfs partition is hdb2, and you want to mount it to /mnt/wins_ntfs.You will probably at least be able to get read support like this...
Code:
mkdir /mnt/wins_ntfs
then add an entry like this into your /etc/fstab
Code:
/dev/hdb2 /mnt/wins_ntfs ntfs defaults 0 0
then do
Code:
mount /mnt/wins_ntfs
if you get "fs ntfs not supported by kernel" then you will most likely have to recompile your kernel with ntfs support.
On to ext3...
Im not sure of the implications of mounting that partition as /usr if you already have a /usr filesystem on the / filesystem. I don't know if you want to even try.
here's how you'd mount it as just extra storage. I am assuming that the ext3 filesystem is on the hdb3 partition, and you want to mount it to /mnt/linux_ext3 ...
Code:
mkdir /mnt/linux_ext3
then add this to /etc/fstab..
Code:
/dev/hdb3 /mnt/linux_ext3 ext3 defaults 0 0
and then
Code:
mount /mnt/linux_ext3
if you wanted to mount it as /usr you'd do it like this...
Code:
/dev/hdb3 /usr ext3 defaults 0 0
but like I say, I do NOT know what this will do to your box if you already have a /usr fs on /
maybe someone else could shed a bit more light on that for ya.
hope this helps...
linux_terror