Dave Phillips wrote:
> Greetings,
>
>  From notes made during my last Ubuntu install (Karmic) :
>
> Shutdown didn't work properly until i fixed /etc/init.d/umountfs :
>
> this line:
>   fstab-decode umount -f -r -d $WEAK_MTPTS
> becomes:
>   fstab-decode umount -r -d $WEAK_MTPTS
>
> and this line:
>   fstab-decode umount -f -v -r -d $WEAK_MTPTS
> becomes:
>   fstab-decode umount -v -r -d $WEAK_MTPTS
>
> These changes fixed the shutdown problem on my laptop, an HP G60 
> notebook. YMMV.
>
> Best,
>
> dp

I fear this won't solve his problem, because for 3.0-beta3 there aren't 
those lines. /etc/init.d/umountfs is from my 64 Studio 3.0-beta3 
installation and /media/disk/etc/init.d/umountfs is from my Karmic 
(openArtist) installation.

spinymouse-s...@64studio:~$ cat /etc/init.d/umountfs | grep fstab-decode
spinymouse-s...@64studio:~$ cat /media/disk/etc/init.d/umountfs | grep 
fstab-decode
            fstab-decode umount $TMPFS_MTPTS
            fstab-decode umount -v $TMPFS_MTPTS
            fstab-decode umount -r -d $WEAK_MTPTS
            fstab-decode umount -v -r -d $WEAK_MTPTS
            fstab-decode umount -f -r -d $REG_MTPTS
            fstab-decode umount -f -v -r -d $REG_MTPTS

But for 3.0-beta3 there are the lines ...

        if echo "$WEAK_MTPTS" | grep -qs " $MTPT "; then
            FORCE=""
        else
            FORCE="-f"
        fi

Perhaps he could test what happens if he comment out anything, but FORCE="".

       #if echo "$WEAK_MTPTS" | grep -qs " $MTPT "; then
            FORCE=""
        #else
            #FORCE="-f"
        #fi


Btw. I need to read the man page: "-f     Force unmount (in case of an 
unreachable NFS system)."
_______________________________________________
64studio-users mailing list
[email protected]
http://lists.64studio.com/mailman/listinfo/64studio-users

Reply via email to