hello there!
i do create an crypted device with this commands:
how can i mount this memmory device automatic on each boot without password?!
i just want protect the data to be ripped if this harddisk is placed on slave mode in other computer!
Thanks
Luiz
i do create an crypted device with this commands:
Code:
dd if=/dev/urandom of=/usr/www.vol bs=1M count=100
mdconfig -a -t vnode -f /usr/www.vol -u 0
dd if=/dev/urandom of=/www.key bs=56 count=1
geli init -s 4096 -e Blowfish -l 448 -K /www.key /dev/md0
geli attach -d -k /www.key /dev/md0
bsdlabel -w /dev/md0
newfs /dev/md0a
mount /dev/md0a /mnt
df -h
/dev/md0a 97M 4.0K 89M 0% /mnt
how can i mount this memmory device automatic on each boot without password?!
i just want protect the data to be ripped if this harddisk is placed on slave mode in other computer!
Thanks
Luiz