My experience with ivman/hal/dbus is good. I primarily use it with two external 
usb harddisks.
Although some time ago I noticed there is no such thing as a 'auto-umount' when 
shutting down, causing problems in the ext3 filesystem of the usb harddisks.
Nothing fsck could not fix but this is why in /etc/rc.shutdown I start 
'umountall.sh' which consists of the following lines:

----------------------------------------------------------------------------------
#!/bin/bash

function umnt 
{
        MNT_POINT=$1
        MNT_INFO=$(mount | awk -v mnt=$MNT_POINT '{ if ($3 == mnt) print $0 }')
        if [ "$MNT_INFO" == "" ]; then
                echo $1 "Not Mounted"
        else
                pumount $MNT_POINT
        fi
}       

umnt /mnt/temp1
umnt /mnt/temp2
umnt /media/ARCHIEF_EXT3
umnt /media/ARCHIEF_BT
umnt /media/BACKUP_EXT3
umnt /media/BACKUP_BT

exit 0
----------------------------------------------------------------------------------

Hope this information helps,
best regards,

Cor

On Fri, 16 Sep 2005 15:43:08 -0400
Andrew Conkling <[EMAIL PROTECTED]> wrote:

> It seems that there are a lot of automounters out there at the
> moment--autofs, automount, supermount, submount, ivman--but which one
> is the best to use?  I know that D-BUS/HAL make for very good
> handling, but do any of the kernel people have opinions on which one
> to use?  I'm looking for something in userspace but completely
> DE-independent.  I've been using ivman but it seems complicated and
> hasn't been working for me.  Is there something simpler I could try?
> 
> Cheers,
> Andrew
> 
> -- 
> http://aconkling.blogspot.com
> 
> _______________________________________________
> arch mailing list
> [email protected]
> http://www.archlinux.org/mailman/listinfo/arch

_______________________________________________
arch mailing list
[email protected]
http://www.archlinux.org/mailman/listinfo/arch

Reply via email to