<div>Okay.... I am doing it your way but I have  a problem:</div><div><div>$ mke2fs -j -L MY_BACKUPS /dev/sdc</div><div>mke2fs 1.42.5 (29-Jul-2012)</div><div>/dev/sdc is entire device, not just one partition!</div><div>Proceed anyway? (y,n) y</div>

<div>/dev/sdc is mounted; will not make a filesystem here!</div><div>bmike1@PresarioLapTop1:/home$ sudo umount /dev/sdc</div><div><div>bmike1@PresarioLapTop1:/home$ mke2fs -j -L MY_BACKUPS /dev/sdc</div><div>mke2fs 1.42.5 (29-Jul-2012)</div>

<div>/dev/sdc is entire device, not just one partition!</div><div>Proceed anyway? (y,n) y</div><div>mke2fs: Permission denied while trying to determine filesystem size</div><div>bmike1@PresarioLapTop1:/home$ </div></div>
<div>
<br></div><div>so what is  wrong?</div><div>:-)~MIKE~(-:</div>
<br><br><div class="gmail_quote">On Fri, Jul 5, 2013 at 8:45 AM, Matt Graham <span dir="ltr"><<a href="mailto:danceswithcrows@usa.net" target="_blank">danceswithcrows@usa.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

From: Michael Havens<br>
<div class="im">> Okay Matt (or anyone else who wants to answer this), could I do this:<br>
</div>> first I make a directory in the usb [disk] called 'bmike1-backup'<br>
><br>
> #!/bin/bash<br>
> sudo mkdir /backups<br>
> sudo mount /sdc1/backup-bmike1 /backups<br>
<div class="im">> rsync -av /home/bmike1<br>
> sudo umount backups; sudo rmdir backups <-make everything like it was<br>
<br>
</div>Why all the sudo invocations?  The procedure I gave earlier only requires 2<br>
things to be done as root:  Make a mountpoint for the device, then add an<br>
fstab entry for that device.  Do those things and then you can back up your ~<br>
as a normal user, no root anything required.<br>
<br>
Also, your mount syntax in that script is incorrect unless your distro is<br>
doing something very odd.  And USB devices are not guaranteed to have the same<br>
device names; the USB disk at /dev/sdc1 may be /dev/sdd1 or /dev/sdb1<br>
depending on how many other USB storage devices are plugged in.  That's why I<br>
said you should make a filesystem with a label on it.  Do that on your USB<br>
disk.  If it already has a filesystem on it, you can do "tune2fs -L<br>
A_NEW_LABEL /dev/whatever" to change the filesystem label without zorching the<br>
filesystem.<br>
<br>
Once you've done these things, the script would look like this:<br>
<br>
#!/bin/bash<br>
<div class="im">mount /mnt/backup<br>
if mount | grep /mnt/backup > /dev/null ; then<br>
</div>    rsync -av --delete-after /home/bmike1/ /mnt/backup/bmike1<br>
    umount /mnt/backup<br>
else<br>
    echo "backup disk not mounted; can't back up"<br>
fi<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
--<br>
Matt G / Dances With Crows<br>
The Crow202 Blog:  <a href="http://crow202.org/wordpress/" target="_blank">http://crow202.org/wordpress/</a><br>
There is no Darkness in Eternity/But only Light too dim for us to see<br>
<br>
---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" target="_blank">http://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><br>
</div></div></blockquote></div><br></div>