<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Southern Bread &#187; mobile</title>
	<atom:link href="http://www.southernbread.org/tag/mobile/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.southernbread.org</link>
	<description>Southern History, American Freedom, Christian Liberty</description>
	<lastBuildDate>Sat, 04 Feb 2012 21:12:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Happy St. Patricks Day From Mobile, AL</title>
		<link>http://www.southernbread.org/happy-st-patricks-day-from-mobile-al/</link>
		<comments>http://www.southernbread.org/happy-st-patricks-day-from-mobile-al/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 20:42:00 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[leprachaun]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[st. patricks day]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.southernbread.org/?p=2759</guid>
		<description><![CDATA[An oldie but a goodie:]]></description>
			<content:encoded><![CDATA[<p>An oldie but a goodie:</p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/nda_OSWeyn8&#038;hl=en&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1" id="VideoPlayback_nda_OSWeyn8" height="340" width="560"><param name="movie" value="http://www.youtube.com/v/nda_OSWeyn8&#038;hl=en&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1" /><param name="allowScriptAcess" value="sameDomain" /><param name="quality" value="best" /><param name="bgcolor" value="#FFFFFF" /><param name="scale" value="noScale" /><param name="salign" value="TL" /><param name="FlashVars" value="playerMode=embedded" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.southernbread.org/happy-st-patricks-day-from-mobile-al/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Encryption &#8211; Backups are Critical</title>
		<link>http://www.southernbread.org/mobile-encryption-backups-are-critical/</link>
		<comments>http://www.southernbread.org/mobile-encryption-backups-are-critical/#comments</comments>
		<pubDate>Wed, 18 Oct 2006 10:54:00 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://www.southernbread.org/windows/encryption_backup.html</guid>
		<description><![CDATA[Encryption on laptops is a hot topic these days, and I&#8217;m no more immune from it than any other sysadmin. Any time you have people carrying around laptops, it&#8217;s important that they are secured against possible theft or loss. The data carried on portable computers these days can get you into lots of trouble if [...]]]></description>
			<content:encoded><![CDATA[<p>Encryption on laptops is a hot topic these days, and I&#8217;m no more immune from it than any other sysadmin.  Any time you have people carrying around laptops, it&#8217;s important that they are secured against possible theft or loss.  The data carried on portable computers these days can get you into lots of trouble if you aren&#8217;t very careful to keep it secured against prying eyes.  Encryption solves that problem by scrambling the files in a certain part of the laptop hard drive and requiring some type of authentication in order to decrypt it.  This stops &#8220;casual&#8221; theft of data by just popping the hard drive out of the notebook and sticking it in another machine as a second drive.</p>
<p>Encryption is a two-edged sword though, and it must be very carefully planned before being rolled out.  The same scrambling of data that keeps thieves from getting at the data can also keep a sysadmin from getting at the data in a disaster situation.  If you use the built-in Windows encryption for example, you are screwed if you can&#8217;t log into Windows.  That means your hard drive doesn&#8217;t even have to fully crash for the data to become inaccessible.  You will have to make sure you have a very robust backup plan in place for your laptop users.  If you use a third-party tool such as the excellent <a href="http://www.truecrypt.org">TrueCrypt</a>, you still need to backup your files, but it&#8217;s possible to restore the volume as long as the header is intact and you have the correct passwords and keyfiles.</p>
<p>Backups are the life-blood of a sysadmin.  If backing up your system is not the most important thing you do on a daily basis then you have no business being a sysadmin.  So with all of that said, here is a good batch file to get you started with backing up the encrypted folders or drives on your Windows laptops:</p>
<p><pre><code>
@echo off
setlocal

@set src=X:
@set dst=U:\encbackup
@set args=/XD &quot;%src%\Recycled&quot; &quot;%src%\System Volume Information&quot; /COPYALL /B /SEC /MIR 
@set opts=/R:5 /W:3 /LOG+:c:\synclog.txt /NFL /NDL /TEE /ETA

IF NOT EXIST %src% GOTO QUITNOSRC
IF NOT EXIST %dst% GOTO QUITNODST

robocopy %src% %dst% %args% %opts%
GOTO PAUSEQUIT

:QUITNOSRC
echo Couldn&amp;#8217;t find &quot;%src%&quot;.
echo Your encrypted volume is not mounted.
GOTO PAUSEQUIT

:QUITNODST
echo Couldn&amp;#8217;t find &quot;%dst%&quot;.
echo If you are NOT connected to the network then this is normal.
GOTO PAUSEQUIT

:PAUSEQUIT
pause
@cls
exit
</code></pre></p>
<p>This is a modified version of a well layed out robocopy script I found on the internet somewhere.  The <b>src</b> variable holds the drive letter or folder of the encrypted volume that needs backing up.  The <b>dst</b> variable is where the backed up files should be placed.  In this case they would go in a folder called &#8220;encbackup&#8221; in the user&#8217;s network home folder.  The <b>args</b> and <b>opts</b> variables set up some common exclusions and loggings and such.  You can see all of the options for robocopy <a href="http://www.ss64.com/nt/robocopy.html">here</a>.  Each laptop user would run this file whenever they come back in the office and hook up to the network.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.southernbread.org/mobile-encryption-backups-are-critical/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

