View Single Post
  #4  
Old 09-20-2005, 04:36 PM
dnanian's Avatar
dnanian dnanian is offline
Administrator
 
Join Date: Apr 2001
Location: Weston, MA
Posts: 14,923
Send a message via AIM to dnanian
We've figured out another way to handle floating files under Tiger in v2.0, so this isn't a problem. (They changed things in Tiger, and -- unknown to us -- that messed up our previous floating detection.) So, if you don't want to do this, you can wait.

If you don't mind doing it, here's how. First, start Terminal. By default, Terminal starts in your Home folder: that's where we want it to be.

Determine your User ID and Group ID with the following command:

id

(Just copy/paste.) That'll give you output like:

uid=501(dnanian) gid=501(dnanian) groups=501(dnanian), 81(appserveradm), 79(appserverusr), 80(admin)

So, on this machine, my user id (uid) is 501 and my group id (gid) is 501. That's what I want my personal files owned by (I'm assuming here that you keep your personal files in your Home folder, as you should under OSX -- if that's not the case, let me know). To accomplish that, I use chown as follows:

sudo chown -R 501:501 *

Substitute your uid and gid as appropriate -- you want uid:gid in that command (so mine is 501:501). Note that you will have to enter your password when prompted -- it won't echo. that's normal.

In English, that command says "as the super user, change the owner of all files in this folder and all folders contained here, to user id 501 and group id 501".

Once that's done, do your backup twice. The 2nd time, it should be back to normal speeds.

Let me know if that makes some sense.
__________________
--Dave Nanian
Reply With Quote