<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel>
	  <title>Ask MetaFilter questions tagged with rsync</title>
      <link>http://ask.metafilter.com/tags/rsync</link>
      <description>Questions tagged with 'rsync' at Ask MetaFilter.</description>
	  <pubDate>Thu, 22 Oct 2009 22:04:16 -0800</pubDate> <lastBuildDate>Thu, 22 Oct 2009 22:04:16 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<item>
	<title>Amazon S3 for log backups?</title>
	<link>http://ask.metafilter.com/136212/Amazon%2DS3%2Dfor%2Dlog%2Dbackups</link>	
	<description>I&apos;m looking for a step by step recipe for log rotation from a web server to Amazon S3. Caveat: I am an utter newbie to Amazon S3 and EC2. &lt;br&gt;
&lt;br&gt;
I currently have a backup process that works well. It&apos;s a cronjob that copies server logs on a nightly basis from an external machine that I do not control to a linux VPS I do control via scp. &lt;br&gt;
&lt;br&gt;
The cost of storage is killing me (I keep &amp;gt; 1 years worth of logs) so I&apos;d like to use Amazon S3 as the destination for the logs, while keeping this as unixy as possible.&lt;br&gt;
&lt;br&gt;
What are the steps I need to take to do this? Baby steps, please. I&apos;m new to Amazon&apos;s S3 and EC2.&lt;br&gt;
&lt;br&gt;
I would prefer something like a nightly job where I run:&lt;br&gt;
&lt;br&gt;
scp user@example.com:logfile user2@amazons3domain.com:destination&lt;br&gt;
&lt;br&gt;
or the rsync equivalent.&lt;br&gt;
&lt;br&gt;
I do not need more than 99% reliability. Simple is best. Installing new software on the outside machine is difficult, so a standard scp or rsync method preferred. &lt;br&gt;
&lt;br&gt;
I can install software on one of my servers, but I presume it would not be involved in the transfer as I&apos;d take a 3x bandwidth hit (outside machine to mine, mine to s3 x 2: upload from my side, download from theirs)&lt;br&gt;
&lt;br&gt;
Over time, I will have more than one outside machine to back up. For now, it&apos;s just one.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.136212</guid>
	<pubDate>Thu, 22 Oct 2009 22:04:16 -0800</pubDate>
	<category>amazon</category>
	<category>amazonec2</category>
	<category>amazons3</category>
	<category>backup</category>
	<category>linux</category>
	<category>logrotation</category>
	<category>rsync</category>
	<category>s3</category>
	<category>scp</category>
	<dc:creator>Anonymous</dc:creator>
	</item>
	<item>
	<title>Rsync to Merge Disk Images?</title>
	<link>http://ask.metafilter.com/131539/Rsync%2Dto%2DMerge%2DDisk%2DImages</link>	
	<description>Should I use rsync (instead of rsnapshot) to pare down Mac disk image backups? I&apos;ve used SuperDuper to make several disk image backups of a boot drive.&lt;br&gt;
&lt;br&gt;
Let&apos;s say they&apos;re called backup-090107.dmg, backup-090114.dmg, backup-090121.dmg, and so on.&lt;br&gt;
&lt;br&gt;
I want to merge all these into a single backup directory, RETAINING incremental backups. So if file-a.txt changed on Jan 16 2009 (between backup-090114 and backup-0090121), I&apos;d end up with a copy of how it was on 090114 and also a copy of how it was on 090121.&lt;br&gt;
&lt;br&gt;
I tried rdiff-backup but gave up on it due to insane slowness. (It takes SuperDuper 5-6 hours to back up 60-70 GB over USB2; rdiff-backup was taking about 16 hours to back up just the 7GB applications directory. Yikes.)&lt;br&gt;
&lt;br&gt;
I&apos;ve started looking at rsnapshot, but I don&apos;t think that&apos;s what I want for this initial merge ... although it might be what I want for any subsequent backups, once I&apos;ve got the disk images merged.&lt;br&gt;
&lt;br&gt;
So:&lt;br&gt;
&lt;br&gt;
* am I correct in thinking that rsync is best for merging these dmgs?&lt;br&gt;
&lt;br&gt;
* would the following commands do what I want to do - so I end up with a single copy of any file that hasn&apos;t changed, plus incremental backups of each file that HAS changed?&lt;br&gt;
&lt;br&gt;
rsync -a --delete --numeric-ids --relative --delete-excluded --xattrs --exclude=/this/ --exclude=/that/ \&lt;br&gt;
    /Volumes/backup-090107 /Volumes/BackupDrive/big-old-merge-directory/backup-090107/&lt;br&gt;
&lt;br&gt;
rsync -a --delete --numeric-ids --relative --delete-excluded --xattrs --exclude=/this/ --exclude=/that/ \&lt;br&gt;
    /Volumes/backup-090114  /Volumes/BackupDrive/big-old-merge-directory/backup-090114/&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
* should I switch to rsnapshot after merging, or continue using rsync? If I continue with rsync, would I use something like&lt;br&gt;
&lt;br&gt;
rsync -a --delete --numeric-ids --relative --delete-excluded --xattrs --exclude=/this/ --exclude=/that/ \&lt;br&gt;
    /MyHardDrive /Volumes/BackupDrive/big-old-merge-directory/backup-todaysdate/&lt;br&gt;
&lt;br&gt;
Extra bonus points for lists of directories you like to exclude, or pointers to pages that list appropriate OS X (10.4) directories to exclude. (I DO want to back up even big directories; I don&apos;t need to back up the unnecessary or dangerous - for example, I know most folks exclude .Spotlight-V100.)&lt;br&gt;
&lt;br&gt;
Once I&apos;ve merged the backups (and verified them, of course), I&apos;ll be deleting the disk images to free up space for future backups. (And I&apos;m doing full, bootable backups to a different drive; this is just my attempt to get good incremental backups.)&lt;br&gt;
&lt;br&gt;
Many, many thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.131539</guid>
	<pubDate>Sun, 30 Aug 2009 23:18:10 -0800</pubDate>
	<category>backup</category>
	<category>osx</category>
	<category>resolved</category>
	<category>rsnapshot</category>
	<category>rsync</category>
	<dc:creator>kristi</dc:creator>
	</item>
	<item>
	<title>How do I stop my external hard drives from changing disk IDs when I reboot on OS X?</title>
	<link>http://ask.metafilter.com/130212/How%2Ddo%2DI%2Dstop%2Dmy%2Dexternal%2Dhard%2Ddrives%2Dfrom%2Dchanging%2Ddisk%2DIDs%2Dwhen%2DI%2Dreboot%2Don%2DOS%2DX</link>	
	<description>How do I stop my external hard drives from changing disk IDs when I reboot on OS X? I have a simple rsync script that I just made for my OS X machine to backup data on my two main drives to two drives in an external enclosure. I wanted the script to mount and unmount the drives so that they wouldn&apos;t clutter my desktop and to keep them &quot;hidden&quot;. &lt;br&gt;
&lt;br&gt;
The problem is that the disk ID under /dev changes everytime I reboot. Sometimes the drive mounted at /Volumes/backup1 will be at /dev/disk3s3 and sometimes it will be at /dev/disk4s3. Other times it will be at /dev/disk2s3. &lt;br&gt;
&lt;br&gt;
Is there anyway to keep the disk ID static, or to just mount by the directory name? I&apos;m running 10.5.8, with the latest updates. My script uses the `diskutil`command to mount and unmount the drives. Oh, and AFAIK, Time Machine only works with one drive as a backup.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.130212</guid>
	<pubDate>Fri, 14 Aug 2009 20:08:06 -0800</pubDate>
	<category>backup</category>
	<category>mac</category>
	<category>osx</category>
	<category>resolved</category>
	<category>rsync</category>
	<dc:creator>triolus</dc:creator>
	</item>
	<item>
	<title>Back me up, Scotty!</title>
	<link>http://ask.metafilter.com/94440/Back%2Dme%2Dup%2DScotty</link>	
	<description>Recommend a good tool to remotely backup/synchronize large folders to my home NAS. Here&apos;s what I have:&lt;br&gt;
&lt;br&gt;
- Laptop with 100+ GB music library; misc documents, photos, and other data that needs backed up&lt;br&gt;
- Netgear ReadyNAS Duo 750GB at home (supports pretty much everything - rsync, (S)FTP, WebDAV, etc)&lt;br&gt;
&lt;br&gt;
Here&apos;s what I want to do:&lt;br&gt;
&lt;br&gt;
For my MP3 library (100GB, 20k files, 4k folders) - mirror or synchronize any changes from my laptop (remote at work) to my home NAS. I&apos;ve tried a TON of apps already with varying degrees of success. The major problem seems to be that to do a mirror, the apps have to perform a full &quot;audit&quot; scan of the destination (NAS) share to see what needs updated/copied. Problem is, with 20k files, that takes f-o-r-e-v-e-r, at least using FTP or WebDAV.&lt;br&gt;
&lt;br&gt;
Ideally, I&apos;d like a real-time backup app that monitors some selected folders (like My Music) and kicks off an automated upload for any changed files. This (a) makes it fully automatic and (b) [in theory] faster - doesn&apos;t have to synch each time, just upload based off a good known synch. Problem is, I&apos;ve yet to find the right tool to accomplish all these things correctly.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Note: I&apos;d be happy as a clam to use rsync, which the ReadyNAS supports, but I&apos;m sending from a Windows client and my options are limited. I&apos;ve been racking my brain trying to get DeltaCopy to work, but it keeps timing out when attempting to connect to the NAS. I have port forwarding, etc, working fine on my router, so I can&apos;t really figure out why rsync is failing.&lt;br&gt;
&lt;br&gt;
Note 2: The ReadyNAS does have optional support for SSH and Telnet, I believe, but it involves some trickery to get working and I think it might void my warranty...</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.94440</guid>
	<pubDate>Wed, 18 Jun 2008 16:02:02 -0800</pubDate>
	<category>backup</category>
	<category>duo</category>
	<category>ftp</category>
	<category>mirror</category>
	<category>nas</category>
	<category>netgear</category>
	<category>readynas</category>
	<category>remote</category>
	<category>rsync</category>
	<category>synch</category>
	<category>synchronize</category>
	<category>webdav</category>
	<dc:creator>sprocket87</dc:creator>
	</item>
	<item>
	<title>Backubuntu</title>
	<link>http://ask.metafilter.com/91751/Backubuntu</link>	
	<description>What&apos;s the best backup solution for (Ubuntu) Linux? I need a backup as complete as possible of a home directory of ~10+ GB, nightly, etc. I have two large external USB 2.0 drives for the purpose... I know some of the options (which I&apos;ll list out), but I&apos;m wondering which is the community favorite / most popular / most reliable / most likely to be maintained.&lt;br&gt;
&lt;br&gt;
What I&apos;ve considered: flyback, rsync, rdiff, rsnapshot, timevault, unison...&lt;br&gt;
&lt;br&gt;
Thanks! I&apos;ve gone too long without good backups, and my home directory is becoming more and more valuable. Oh, and it absolutely must backup hidden directories, although I would guess that&apos;s standard (a lot of my data is SVN repos). Something that could back up various other files (my apache configs, site-applications, etc files are fairly vital). Maybe a separate system that would do basically a drive image on a less frequent basis?&lt;br&gt;
&lt;br&gt;
Thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.91751</guid>
	<pubDate>Sun, 18 May 2008 15:32:24 -0800</pubDate>
	<category>backup</category>
	<category>drive</category>
	<category>files</category>
	<category>hard</category>
	<category>linux</category>
	<category>rsync</category>
	<category>ubuntu</category>
	<dc:creator>tmcw</dc:creator>
	</item>
	<item>
	<title>How do I restore my old Mac&apos;s rsync backup to my new Mac?</title>
	<link>http://ask.metafilter.com/91025/How%2Ddo%2DI%2Drestore%2Dmy%2Dold%2DMacs%2Drsync%2Dbackup%2Dto%2Dmy%2Dnew%2DMac</link>	
	<description>What&apos;s the easiest way to restore my OS X 10.4 backup of my iBook laptop onto my shiny new OS X 10.5 Macbook? The catch: I made the backup using rsync, to a Linux file server. A few weeks ago, my three year old iBook G4 started running very slowly and making an ominous clicking sound. A lifetime of experience, plus the knowledge that my warranty had just expired, let me to the obvious conclusion: the hard drive was dying. I was planning to buy a new Macbook as soon as I received some money I was owed, so I decided to capture a backup, power the old laptop down, and use my Windows desktop until I got the new laptop.&lt;br&gt;
&lt;br&gt;
Having no other readily-accessible option, I used rsync to back up the entire contents of my home directory to my Linux file server. I used some kind of Mac-specific option in rsync to save the filesystem metadata, I think. I haven&apos;t been able to find the site with the instructions I used to do this, but I haven&apos;t looked very hard yet.&lt;br&gt;
&lt;br&gt;
I need to restore this data now, and I want to do it without breaking things on my new system, since it&apos;s got a newer OS. The main things I need are all my documents (easy to recover, really), all my Stickies notes, and all my Mail.app mail and metadata.&lt;br&gt;
&lt;br&gt;
I suppose it&apos;s possible that I could use Apple&apos;s data migration app to cleanly copy this stuff right off the old iBook, if its hard drive will cooperate for a little bit longer. I&apos;m doubtful that it will, though, and I&apos;d really hate to have a half-done restore.&lt;br&gt;
&lt;br&gt;
I don&apos;t even know where to start. I&apos;m a Linux guy so a lot of that translates to the Mac, but there always seem to be a few Mac-specific pitfalls or footnotes that the Apple fanatics point out which save my ass in these situations. I think that&apos;s basically what I&apos;m asking for.&lt;br&gt;
&lt;br&gt;
Going forward, I think I&apos;ll be using Time Machine for this purpose.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.91025</guid>
	<pubDate>Fri, 09 May 2008 16:20:19 -0800</pubDate>
	<category>backup</category>
	<category>mac</category>
	<category>restore</category>
	<category>rsync</category>
	<dc:creator>autojack</dc:creator>
	</item>
	<item>
	<title>What features should I add to my basic backup solution?</title>
	<link>http://ask.metafilter.com/83811/What%2Dfeatures%2Dshould%2DI%2Dadd%2Dto%2Dmy%2Dbasic%2Dbackup%2Dsolution</link>	
	<description>I&apos;ve rolled my own backup solution, and I want to know if I could/should be doing anything more. What I&apos;m basically doing now is copying over everything every 10 days, and deleting anything that&apos;s over 4 backups old. Basically, here&apos;s some of the files in my directory for the laptop:&lt;br&gt;
&lt;br&gt;
080110.bookmarks.html&lt;br&gt;
080110.cyg-home.tar&lt;br&gt;
080110.desktop.tar&lt;br&gt;
080110.music/&lt;br&gt;
080110.myjunk.tar&lt;br&gt;
080110.personal.tc&lt;br&gt;
080119.bookmarks.html&lt;br&gt;
080119.cyg-home.tar&lt;br&gt;
080119.desktop.tar&lt;br&gt;
080119.music/&lt;br&gt;
&lt;br&gt;
The date of the backup is part of the name. The music directories are about 15G each, the others are less than 1MB. I&apos;m using Bash shell scripts, ssh and scp. (I couldn&apos;t get rsync to be much faster than scp. I was using samba, but that just kept spinning-up my drive.) This is all done on my local wireless network.&lt;br&gt;
&lt;br&gt;
I&apos;ve already got the best feature: automatic. Should I be doing monthly/weekly/daily backups? What would that entail, and how do I do that? I&apos;ve got the frequency set at 10 days, but more frequent would be nice. My problem is that frequent backups create more new files, so then I have to get rid of the not-so-old files (size is limited).&lt;br&gt;
&lt;br&gt;
Please give me your recommendations.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.83811</guid>
	<pubDate>Sat, 16 Feb 2008 16:02:29 -0800</pubDate>
	<category>backup</category>
	<category>DIY</category>
	<category>resolved</category>
	<category>rsync</category>
	<dc:creator>philomathoholic</dc:creator>
	</item>
	<item>
	<title>not every snowflake is special</title>
	<link>http://ask.metafilter.com/83368/not%2Devery%2Dsnowflake%2Dis%2Dspecial</link>	
	<description>Location &amp;amp; name  independent rsync? I have machine A, with lots and lots of empty space.&lt;br&gt;
&lt;br&gt;
I have machines B, C, D, E, F, ... with lots of files, some of which are duplicated between machines, but often not in the same file structure or naming convention, ala&lt;br&gt;
  Machine B:&lt;br&gt;
   /home/userX/media/Wedding01.avi&lt;br&gt;
  Machine C:&lt;br&gt;
  /var/local/storage/movies/sis-wedding.avi&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Ideally, I&apos;d like an agent I can put on Machines B-F, point it at specific folder(s), and give it an ftp account on machine A, and let it auto-magically figure out the minimum set of files that need to be backed-up, to have a complete set of the files across all the original machines.  It does NOT have to remember where the files were on each machine.  &lt;br&gt;
&lt;br&gt;
Machines B-F are currently windows boxen that expose their data via windows shares, so I can point a unix client at them, if needed.  &lt;br&gt;
&lt;br&gt;
Machine A can be a unix, windows, or mac os X box, whatever is needed.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.83368</guid>
	<pubDate>Mon, 11 Feb 2008 11:23:52 -0800</pubDate>
	<category>duplication</category>
	<category>filetransfer</category>
	<category>rsync</category>
	<dc:creator>nomisxid</dc:creator>
	</item>
	<item>
	<title>What&apos;s the best online backup for a lawyer using a Mac?</title>
	<link>http://ask.metafilter.com/68424/Whats%2Dthe%2Dbest%2Donline%2Dbackup%2Dfor%2Da%2Dlawyer%2Dusing%2Da%2DMac</link>	
	<description>I&apos;ve been asked to find the best online backup solution for a small law firm that uses Macs and PCs.  Security is obviously an issue.  Any personal experience with Corevault, rsync.net, or Amerivault is particularly welcome. (I have checked the previous questions on AskMe and I&apos;ve googled a fair bit, but most of the questions are pretty old and/or non-law specific, and I was hoping for some personal experience from trusty mefites.)&lt;br&gt;
&lt;br&gt;
The main goals: online, preferably automated backup, once a day; extremely secure (encrypted by user before sending); compatible with both Mac and PC, relatively inexpensive (currently looking at about 3-5 gb); and easy for the non-technical to use.  &lt;br&gt;
I&apos;ve researched CoreVault (endorsed by the Oklahoma Bar), Amerivault (endorsed by NY Bar), and rsync.net (endorsed by lots of people, but no bar associations I can find).  Unfortunately my tech knowledge, especially about Macs, fails me when it comes to the ins and outs of online data storage.  &lt;br&gt;
I&apos;m particularly concerned about choosing a company that has a long-running track record, and not getting suckered by any fly-by-nights.  I&apos;ve heard gushing things about Mozy, but have also heard that they&apos;re slow.  I&apos;m also concerned about the security/reliability of a free site when it comes to something this critical.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.68424</guid>
	<pubDate>Thu, 02 Aug 2007 13:28:19 -0800</pubDate>
	<category>amerivault</category>
	<category>backup</category>
	<category>corevault</category>
	<category>encryption</category>
	<category>legal</category>
	<category>mac</category>
	<category>online</category>
	<category>rsync</category>
	<dc:creator>katemonster</dc:creator>
	</item>
	<item>
	<title>LAMP scaling and NFS. Good Idea or Not?</title>
	<link>http://ask.metafilter.com/59651/LAMP%2Dscaling%2Dand%2DNFS%2DGood%2DIdea%2Dor%2DNot</link>	
	<description>So, I&apos;ve got myself a web application. LAMP. I need to scale it up. Can I run the php application across multiple machines loaded off a mounted NFS share on another machine? I&apos;m running gig-e with jumbo frames on a private LAN. Our application is fairly high load, hence the need to scale it up. We can&apos;t afford a real fiber SAN, so, can we replicate the benefits of having all of our application scripts live in one place, and each of the web-servers mount the nfs share and serve the application off of the nfs share?&lt;br&gt;
&lt;br&gt;
We&apos;ve thought about other possibilities, such as rsync, etc. But we&apos;re concerned about race conditions. Particularly two servers communicating with clients and with the DB using different codebases.&lt;br&gt;
&lt;br&gt;
other datapoints: &lt;br&gt;
We use a bytecode cache, called eaccelerator. those caches would be on the local webserver, not on the NFS share.&lt;br&gt;
&lt;br&gt;
We use memcache for stuff like sessions across machines.&lt;br&gt;
&lt;br&gt;
Would there be significant network throughput setting up our application this way? What are the downsides? Would it outweigh the benefits of having one codebase for our application?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.59651</guid>
	<pubDate>Fri, 30 Mar 2007 14:41:37 -0800</pubDate>
	<category>cluster</category>
	<category>eaccelerator</category>
	<category>LAMP</category>
	<category>nfs</category>
	<category>php</category>
	<category>rsync</category>
	<category>scaling</category>
	<dc:creator>Freen</dc:creator>
	</item>
	<item>
	<title>What can a Linux fan use for consistent note taking and archival?</title>
	<link>http://ask.metafilter.com/54040/What%2Dcan%2Da%2DLinux%2Dfan%2Duse%2Dfor%2Dconsistent%2Dnote%2Dtaking%2Dand%2Darchival</link>	
	<description>I am studying in human science (psychology), and I&apos;m starting university next month. I have been using a laptop running Linux to take notes and write assignments during the past two years or so, but I feel my current technique for note taking is unsatisfactory. My current method is this: fire up &lt;a href=&quot;http://www.openoffice.org&quot;&gt;OpenOffice&lt;/a&gt; Writer with a blank document, start typing in bullet-list form, with a Heading1 title at the top of the document, and save the document as &quot;yyyy-mm-dd-topic.odt&quot; in a folder such as school/the_subject/*. Whenever a semester is over, I compress the files into a tar.gz archive and put it in an archival folder. This prevents me from having the files indexed by &lt;a href=&quot;http://www.gnome.org/~jamiemcc/tracker&quot;&gt;Tracker&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
- must have: formatting controlled by a central/GLOBAL &lt;a href=&quot;http://en.wikipedia.org/wiki/Style_sheet_%28web_development%29&quot;&gt;STYLESHEET&lt;/a&gt;, unicode, open source, runs on &lt;a href=&quot;http://en.wikipedia.org/wiki/Linux&quot;&gt;Linux&lt;/a&gt;&lt;br&gt;
- nice to have: &lt;a href=&quot;http://en.wikipedia.org/wiki/OpenDocument&quot;&gt;OpenDocument&lt;/a&gt;, drawing support, autosave, &lt;a href=&quot;http://en.wikipedia.org/wiki/WYSIWYG&quot;&gt;wysiwyg&lt;/a&gt;, ability to zoom text to disproportionate sizes (those 1280x1024 widescreen laptops strain the eyes easily)&lt;br&gt;
- don&apos;t care about: spellcheck&lt;br&gt;
- don&apos;t want: proprietary stuff, obscure file format, latex, a database&lt;br&gt;
&lt;br&gt;
I have been scratching my head over this for a little while, so far I see these options: OpenOffice, plain text with Gedit or whatever, Abiword, coding XHTML by hand on the fly, using &lt;a href=&quot;http://www.beatniksoftware.com/tomboy&quot;&gt;Tomboy&lt;/a&gt; (but it is &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=375687&quot;&gt;slow&lt;/a&gt;), using a wiki such as PmWiki running on a local server on this laptop, none of which particularily seem to fill my needs completely. Please let me know of any other possibilities I have overlooked!&lt;br&gt;
&lt;br&gt;
Latex (even &lt;a href=&quot;http://wyneken.sf.net&quot;&gt;Wyneken&lt;/a&gt;) are beyond my understanding, and I feel they are overkill for note taking (maybe when I end up writing a huge thesis or something...)&lt;br&gt;
&lt;br&gt;
I want everything I write to be accessible 20 years later. Actually, I have only two big criticisms against my current OpenOffice technique: it forces me to load openoffice (which does &quot;feel&quot; heavier than most text processors), and the contents&apos; style is per-document, not system-wide (like in a CSSed page collection or in Latex).&lt;br&gt;
A criticism I have against &lt;a href=&quot;http://pmwiki.org&quot;&gt;PmWiki&lt;/a&gt; (the only wiki I tested, but it uses no database, and that is nice) is that filenames it creates don&apos;t really support non-english characters properly, and I have to concede that is a limitation of the web itself; accents mess up nicely in URLs, and pmWiki doesn&apos;t like to have them on the filesystem either; actually, the problem may lie in the fact that it feels like I have &quot;less control&quot; over the filesystem since it uses all those WikiWordFileNamesThings. Furthermore, editing in a wiki is not exactly WYSIWYG. You have a very easy syntax, and it has the advantage to use CSS over all your documents at once, but you cannot &quot;visually&quot; distinguish a header paragraph from a regular paragraph, not as easily as you would in a WYSIWYG application (you have to save to do that). Printing is also a bit tricky, and a wiki is, to a certain extent, a bit of annoying maintenance to deal with (security upgrades for example).&lt;br&gt;
&lt;br&gt;
I like solutions that &quot;respect&quot; my filesystem instead of forcing me into a set style of folders, or worse, a database; I backup and synchronize notes between my laptop and my desktop over the network using Rsync scripts I wrote.&lt;br&gt;
&lt;br&gt;
I am &quot;more inclined&quot; towards certain file formats so far: OpenDocument or xhtml, but feel free to suggest something else. I mean I don&apos;t quite like RTF, but if it&apos;s guaranteed to work everywhere anytime, it could be useful; or even taking notes in plain text in front of a laptop without X.org would be possible (but pretty friggin radical! :). &lt;br&gt;
&lt;br&gt;
Actually, I&apos;m realizing that I&apos;m typing this in Gedit, a plain text / code editor, but that&apos;s only because I do not trust the Web (even if my browser never crashed) and don&apos;t want to lose a long post. &lt;br&gt;
&lt;br&gt;
Thoughts? Experiences? Recommendations? Questions? :) I realize there *is* note-taking software out there such as &lt;a href=&quot;http://www.adebenham.com/gournal&quot;&gt;Gournal&lt;/a&gt; or &lt;a href=&quot;http://www.dklevine.com/general/software/tc1000/jarnal.htm&quot;&gt;Jarnal&lt;/a&gt; if I remember correctly, but are those really the end all solution? A computer certainly does not behave like a physical paper notebook, and I&apos;m especially interested in the &quot;way&quot; (or maybe the medium) the notes are taken in (if you have special techniques, I&apos;m also interested), not really specific applications. I know this is a weird question, I will try clarifying as soon as possible if you have needs for clarification.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.54040</guid>
	<pubDate>Fri, 29 Dec 2006 16:35:46 -0800</pubDate>
	<category>abiword</category>
	<category>archival</category>
	<category>documents</category>
	<category>formats</category>
	<category>latex</category>
	<category>linux</category>
	<category>note-taking</category>
	<category>openoffice</category>
	<category>rsync</category>
	<category>wiki</category>
	<category>wysiwyg</category>
	<dc:creator>a007r</dc:creator>
	</item>
	<item>
	<title>What&apos;s the best way to backup/restore (on a Mac)?</title>
	<link>http://ask.metafilter.com/52925/Whats%2Dthe%2Dbest%2Dway%2Dto%2Dbackuprestore%2Don%2Da%2DMac</link>	
	<description>What&apos;s the best way to backup/restore (on a Mac)? I&apos;m asking this question for a friend &#8212;&lt;br&gt;
&lt;br&gt;
&lt;em&gt;&#8220;I use Subversion (svnX) to backup my Documents (which allows me to check files into and out of the repository from OSX, Windows, and Linux, it works really well).  But for the stuff I don&apos;t need versioned I can&apos;t figure out a clean way to back it up...&lt;br&gt;
&lt;br&gt;
I was using Rsync to do daily backups of my home folder /Users/ben, and one time I did have the  system crash.  When I brought it back up my iCal, iTunes, Address Book, and iPhoto lost all their data.  So I used rsync to restore /Users/ben/Library/Application Support/iCal, / Users/ben/Library/iPhoto Library, /Users/ben/Library/Application Support/AddressBook and /Users/ben/Music/iTunes/ ...here are the results:&lt;br&gt;
&lt;br&gt;
iTunes, everthing works but it has to rebuild the database and redownload all the artwork everytime it is launched.&lt;br&gt;
&lt;br&gt;
Address Book: restored perfectly.&lt;br&gt;
&lt;br&gt;
iCal: data restored, but preferences are stuck.  If I set any preferences it forgets them if I close and reopen iCal, but it remembers my new appointments and todos okay.&lt;br&gt;
&lt;br&gt;
iPhoto: I can&apos;t get it to launch, it&apos;s just stuck at loading Photos. All of the Photos and data files are there and seem to be okay.&lt;br&gt;
&lt;br&gt;
So, I must need to restore some other files I&apos;m not aware of, or rsync just isn&apos;t a good way to do backups.&#8221;&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
Thanks for the help, MetaFilter!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.52925</guid>
	<pubDate>Mon, 11 Dec 2006 19:55:58 -0800</pubDate>
	<category>apple</category>
	<category>backup</category>
	<category>backups</category>
	<category>data</category>
	<category>mac</category>
	<category>macbookpro</category>
	<category>restore</category>
	<category>rsync</category>
	<category>sync</category>
	<dc:creator>Colloquial Collision</dc:creator>
	</item>
	<item>
	<title>rsync GUI</title>
	<link>http://ask.metafilter.com/46791/rsync%2DGUI</link>	
	<description>Any recomendations for a GUI for rsync to run on a linux server using PHP?  I need to be able to install it via FTP as some of the servers that I have been asked to put this on do not allow shell.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.46791</guid>
	<pubDate>Tue, 19 Sep 2006 06:55:37 -0800</pubDate>
	<category>incrementalbackups</category>
	<category>rsync</category>
	<dc:creator>thebwit</dc:creator>
	</item>
	<item>
	<title>Making a stand-alone rsync appliance.</title>
	<link>http://ask.metafilter.com/25335/Making%2Da%2Dstandalone%2Drsync%2Dappliance</link>	
	<description>Is there a distribution of a linux-like OS which turns hardware into an easy-to-configure rsync appliance? I have a client (web dev agency) whose president wants &apos;on site backups of all of the websites we host&apos;. They had issues with less-than-clueful providers, I guess.  They&apos;re not interested in switching their hosting provider.&lt;br&gt;
&lt;br&gt;
She essentially wants to be able to point to a box in her office and say &apos;our backups of all of the sites we&apos;re responsible for live &lt;b&gt;here&lt;/b&gt;&apos;. I don&apos;t work at this office, so I&apos;d like to be able to control this &apos;remote backup appliance&apos; via a web-admin or VNC or some such. If I have no other choice but to be on-site, that&apos;s okay, but not optimal.&lt;br&gt;
&lt;br&gt;
I have a Shuttle-size PC available to me for this project (p3, 256MB, 80GB mirrored HDDs.) My original plan was to install a flavor of linux, then make some shell scripts to do simple wget requests on a regular (perhaps daily) basis. Some research revealed that the aggregate file size to transfer was ~1.5 TB range. This office has only business-class cable modem service (5Mb down).&lt;br&gt;
&lt;br&gt;
Now I&apos;m thinking about implementing rsync, which I need to learn more about. The client claims to have root on their server at the ISP, so if I need to install sw to support rsync, that shouldn&apos;t be a problem.&lt;br&gt;
&lt;br&gt;
My previous experience is with Mac OS X Server, where turning on services is as easy as clicking a button. I have enough unix experience to get around a shell, but not enough to know where all of the config files, etc. live for various services.&lt;br&gt;
&lt;br&gt;
I need to be able to ssh into this box and set up cron scripts to fire rsync events, but if there were a web interface for this kind of thing, all the better.&lt;br&gt;
&lt;br&gt;
Basically, I don&apos;t want to go through the effort of manually writing the scripts if there&apos;s a smarter way to achieve my goal.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2005:site.25335</guid>
	<pubDate>Tue, 11 Oct 2005 11:54:56 -0800</pubDate>
	<category>backups</category>
	<category>linux</category>
	<category>remoteaccess</category>
	<category>rsync</category>
	<dc:creator>Wild_Eep</dc:creator>
	</item>
	
	</channel>
</rss>

