[Primipassi] partizione windows con samba in /etc/fstab

Marco Ermini marco.ermini@gmail.com
Ven 6 Maggio 2005 12:35:44 CEST


On 5/6/05, pOg@paranoici.org <pog@paranoici.org> wrote:
> Alle 17:47, giovedì 05 maggio 2005, Leandro Noferini ha scritto:
> > Probabilmente (*) inserendo un noauto nelle opzioni che dovrebbe
> > impedire il mount della suddetta partizione all'avvio.
> 
> ciao leandro.
> no, no... io voglio che la monti all'avvio, non voglio che mi chieda
> la password avendola insrita in /root/.smbcredentials
> ciaociao

Quel che devi fare è proprio mettere un "noauto" e far montare la
partizione con uno script successivo. A quel punto del boot non hai
definita alcuna $HOME e quindi i file /root/.smbcredentials e
/root/.nsmbrc non vengono trovati.

Un esempio di script te l'ho trovato io "gugolando":

---8X---
#!/bin/sh
#
# $Id: smbfs.sh.sample,v 1.3 2001/01/13 04:50:36 bp Exp $
#
# Location: /usr/local/etc/rc.d/smbfs.sh
#
# Simple script to mount smbfs file systems at startup.
# It assumes that all mount points described in fstab file and password
# entries listed in /root/.nsmbrc file. See mount_smbfs(8) for details.
#

mount="/sbin/mount -o -N"
umount=/sbin/umount
HOME=/root; export HOME
vols=`awk -- '/^\/.*[[:space:]]+smbfs[[:space:]]+/ { print $2 }' /etc/fstab`

case "$1" in
start)
        echo -n "smbfs: "
        for vol in ${vols}; do
                $mount $vol
                echo -n "$vol "
        done
        ;;
stop)
        echo -n "unmounting smbfs mount points: "
        for vol in ${vols}; do
                $umount $vol
                echo -n "$vol "
        done
        ;;
*)
        echo "Usage: `basename $0` {start|stop}" >&2
        exit 64
esac
 
echo "Done"
---8X---


HTH

Ciao!
-- 
Marco Ermini
http://www.markoer.org
Dubium sapientiae initium. (Descartes)
root@human # mount -t life -o ro /dev/dna /genetic/research
<< This message is for the designated recipient only and may contain
privileged or confidential information. If you have received it in
error, please notify the sender immediately and delete the original.
Any other use of the email by you is prohibited. >>



Maggiori informazioni sulla lista primipassi