| Message: 96163 |
 |
BY: Kevin Carlson (sourceminer) DATE: 2011-03-09 16:22 SUBJECT: RE: Using Cloudy Scripts So in using the Copy snapshot option I get closer to achieving results but it fails on the mounting part.. assumptions are due to this:
Creating the partition is not enough to use it as you are pointing out you need to put a filesystem on it. ie:
Code:
mkfs.ext3 /dev/hdb1
Then you can mount it using
Code:
mount -t ext3 /dev/hdb1 /mnt/hdb1
| |