This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Can't get unison to syncroze permission bits


Hi,
 
I can't get unison to syncronize the permission bits between my C: drive and my USB drive. Both are NTFS. I use "perms -1".
 
What am I missing?
 
This text and cygcheck.out attached.
 
Cheers,
Morten

Last part of my test script (a modified version of my original):
**********************************************************************************
set -x
mkdir /$usb || exit 1
mount "`cygpath -w $usb_root`" /$usb || exit 1
unison \
  -auto \
  -fastcheck true \
  -perms -1 \
  -times \
  -backuplocation local \
  -backup 'Name *' \
  -root $host_root \
  -root /$usb \
  -path unisontest \
  -mountpoint unisontest \
  -ignore 'Name .unison' \
  -ignore 'Name unison.log' \
  -ignore 'Name .bash_history' \
|| exit 1
ls -ld $host_root/unisontest
ls -l  $host_root/unisontest
ls -ld      /$usb/unisontest
ls -l       /$usb/unisontest
ls -ld  $usb_root/unisontest
ls -l   $usb_root/unisontest
umount /$usb || exit 1
rmdir /$usb || exit 1
**********************************************************************************

Output (files copied with cp retain the bits):
**********************************************************************************
Compaq_Ejer@Gitmoe ~
$ echo a>/cygdrive/c/morten-GITMOE/unisontest/a
Compaq_Ejer@Gitmoe ~
$ chmod a+x /cygdrive/c/morten-GITMOE/unisontest/a
Compaq_Ejer@Gitmoe ~
$ echo b>/cygdrive/j/morten-USB2/unisontest/b
Compaq_Ejer@Gitmoe ~
$ chmod a+x /cygdrive/j/morten-USB2/unisontest/b
Compaq_Ejer@Gitmoe ~
$ cp -p /cygdrive/c/morten-GITMOE/unisontest/a /cygdrive/j/morten-USB2/unisonte
st/a-cp
Compaq_Ejer@Gitmoe ~
$ cp -p /cygdrive/j/morten-USB2/unisontest/b /cygdrive/c/morten-GITMOE/unisonte
st/b-cp
Compaq_Ejer@Gitmoe ~
$ msync1test.sh
+ mkdir /USB2
++ cygpath -w /cygdrive/j/morten-USB2
+ mount 'j:\morten-USB2' /USB2
+ unison -auto -fastcheck true -perms -1 -times -backuplocation local -backup 'N
ame *' -root /cygdrive/c/morten-GITMOE -root /USB2 -path unisontest -mountpoint
unisontest -ignore 'Name .unison' -ignore 'Name unison.log' -ignore 'Name .bash_
history'
Contacting server...
Connected [//Gitmoe//USB2 -> //Gitmoe//cygdrive/c/morten-GITMOE]
Looking for changes
Reconciling changes
morten-GI...   USB2
new file ---->            unisontest/a
         <---- new file   unisontest/a-cp
         <---- new file   unisontest/b
new file ---->            unisontest/b-cp
Proceed with propagating updates? [] y
Propagating updates

UNISON 2.27.57 started propagating changes at 22:59:04 on 10 Feb 2009
[BGN] Copying unisontest/a from /cygdrive/c/morten-GITMOE to /USB2
[END] Copying unisontest/a
[BGN] Copying unisontest/a-cp from /USB2 to /cygdrive/c/morten-GITMOE
[END] Copying unisontest/a-cp
[BGN] Copying unisontest/b from /USB2 to /cygdrive/c/morten-GITMOE
[END] Copying unisontest/b
[BGN] Copying unisontest/b-cp from /cygdrive/c/morten-GITMOE to /USB2
[END] Copying unisontest/b-cp
UNISON 2.27.57 finished propagating changes at 22:59:04 on 10 Feb 2009

Saving synchronizer state
Synchronization complete  (4 items transferred, 0 skipped, 0 failures)
+ ls -ld /cygdrive/c/morten-GITMOE/unisontest
drwxr-xr-x+ 2 Compaq_Ejer Ingen 0 Feb 10 22:59 /cygdrive/c/morten-GITMOE/unisont
est
+ ls -l /cygdrive/c/morten-GITMOE/unisontest
total 4
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a-cp
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b-cp
+ ls -ld /USB2/unisontest
drwxr-xr-x+ 2 Compaq_Ejer Ingen 0 Feb 10 22:59 /USB2/unisontest
+ ls -l /USB2/unisontest
total 4
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a-cp
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b-cp
+ ls -ld /cygdrive/j/morten-USB2/unisontest
drwxr-xr-x+ 2 Compaq_Ejer Ingen 0 Feb 10 22:59 /cygdrive/j/morten-USB2/unisontes
t
+ ls -l /cygdrive/j/morten-USB2/unisontest
total 4
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a-cp
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b-cp
+ umount /USB2
+ rmdir /USB2
Compaq_Ejer@Gitmoe ~
$
**********************************************************************************

Then I added "-debug verbose \" option:
**********************************************************************************
Compaq_Ejer@Gitmoe ~
$ echo a>/cygdrive/c/morten-GITMOE/unisontest/a2
Compaq_Ejer@Gitmoe ~
$ chmod a+x /cygdrive/c/morten-GITMOE/unisontest/a2
Compaq_Ejer@Gitmoe ~
$ msync1test.sh
+ mkdir /USB2
++ cygpath -w /cygdrive/j/morten-USB2
+ mount 'j:\morten-USB2' /USB2
+ unison -debug verbose -auto -fastcheck true -perms -1 -times -backuplocation l
ocal -backup 'Name *' -root /cygdrive/c/morten-GITMOE -root /USB2 -path unisonte
st -mountpoint unisontest -ignore 'Name .unison' -ignore 'Name unison.log' -igno
re 'Name .bash_history'
[startup] Preferences:
ui = graphic
host =
server = false
prefsdocs = false
doc =
version = false
silent = false
dumbtty = true
testserver = false
showprev = false
selftest = false
confirmmerge = false
retry = 0
repeat =
contactquietly = false
key =
label =
expert = false
reusewindows = false
height = 20
auto = true
maxthreads = 20
prefer =
force =
sortnewfirst = false
sortbysize = false
keeptempfilesaftermerge = false
diff = diff -u CURRENT2 CURRENT1
fastcheck = true
mountpoint = unisontest
ignorelocks = false
dumparchives = false
showarchive = false
rootsName =
backupdir =
maxbackups = 2
backups = false
backupsuffix =
backupprefix = .bak.$VERSION.
backup = Name *
backuplocation = local
rsync = true
allHostsAreRunningWindows = false
someHostIsRunningWindows = false
ignore = Name .bash_history
ignore = Name unison.log
ignore = Name .unison
confirmbigdeletes = true
batch = false
path = unisontest
root = /USB2
root = /cygdrive/c/morten-GITMOE
killserver = false
addversionno = false
servercmd =
sshargs =
rshargs =
rshcmd = rsh
sshcmd = ssh
xferbycopying = true
sshversion =
pretendwin = false
times = true
group = false
owner = false
numericids = false
perms = -1
rsrc-aux = false
rsrc = default
someHostIsInsensitive = false
ignorecase = default
timers = false
terse = false
logfile = /home/Compaq_Ejer/unison.log
log = true
debugtimes = false
debug = verbose
addprefsto =
Contacting server...
[globals] Checking path 'unisontest' for expansions
Connected [//Gitmoe//USB2 -> //Gitmoe//cygdrive/c/morten-GITMOE]
[startup] Roots:
        /USB2
        /cygdrive/c/morten-GITMOE
  i.e.
        /USB2
        /cygdrive/c/morten-GITMOE
  i.e. (in canonical order)
       /USB2
       /cygdrive/c/morten-GITMOE
[props] Setting permission mask to 200 (17777777777 and 200)
[stasher] initBackupsLocal
[stasher] d = /
[stasher] New pattern being added to ignore preferences: Regex (.*/)?\.bak\.[0-9
]+\..*
[stasher] Prefix and suffix regexps for backup filenames have been updated
[stasher] initBackupsLocal
[stasher] d = /
[stasher] New pattern being added to ignore preferences: Regex (.*/)?\.bak\.[0-9
]+\..*
[stasher] Prefix and suffix regexps for backup filenames have been updated
Looking for changes
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[fileinfo+] /home/Compaq_Ejer/.unison/ar251322: false 1234303144.000000 12343031
44.000000
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update] Loading archive from /home/Compaq_Ejer/.unison/ar251322
Growing heap to 3516k bytes
Growing page table to 521839 entries
<>![fileinfo+] /home/Compaq_Ejer/.unison/ar251322: false 1234303144.000000 12343
03144.000000
[update] Setting archive for //Gitmoe//USB2
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[fileinfo+] /home/Compaq_Ejer/.unison/ar151743: false 1234303144.000000 12343031
44.000000
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update] Loading archive from /home/Compaq_Ejer/.unison/ar151743
Growing heap to 6792k bytes
<>$[fileinfo+] /home/Compaq_Ejer/.unison/ar151743: false 1234303144.000000 12343
03144.000000
[update] Setting archive for //Gitmoe//cygdrive/c/morten-GITMOE
[update] findOnRoot /USB2
[update] findLocal /USB2
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[pred] ignore 'unisontest' = false
[update] buildUpdate: /USB2/unisontest
[fileinfo+] /USB2/unisontest: true 1234303144.000000 1234303144.000000
[update+]   buildUpdate -> Directory
[pred] immutable 'unisontest' = false
[pred] ignore 'unisontest/a' = false
[update] buildUpdate: /USB2/unisontest/a
[fileinfo+] /USB2/unisontest/a: true 1234303144.000000 1234302858.000000
[update] checkContentsChange: archStamp is ctime (0.000000) / info.ctime (123430
3144.000000) / times: 1234302858.000000 - 1234302858.000000 - true / lengths: 2
- 2
[update+]   Unchanged file
[pred] ignore 'unisontest/a-cp' = false
[update] buildUpdate: /USB2/unisontest/a-cp
[fileinfo+] /USB2/unisontest/a-cp: true 1234303018.000000 1234302858.000000
[update] checkContentsChange: archStamp is ctime (0.000000) / info.ctime (123430
3018.000000) / times: 1234302858.000000 - 1234302858.000000 - true / lengths: 2
- 2
[update+]   Unchanged file
[pred] ignore 'unisontest/b' = false
[update] buildUpdate: /USB2/unisontest/b
[fileinfo+] /USB2/unisontest/b: true 1234302951.000000 1234302931.000000
[update] checkContentsChange: archStamp is ctime (0.000000) / info.ctime (123430
2951.000000) / times: 1234302931.000000 - 1234302931.000000 - true / lengths: 2
- 2
[update+]   Unchanged file
[pred] ignore 'unisontest/b-cp' = false
[update] buildUpdate: /USB2/unisontest/b-cp
[fileinfo+] /USB2/unisontest/b-cp: true 1234303144.000000 1234302931.000000
[update] checkContentsChange: archStamp is ctime (0.000000) / info.ctime (123430
3144.000000) / times: 1234302931.000000 - 1234302931.000000 - true / lengths: 2
- 2
[update+]   Unchanged file
[update] Setting archive for //Gitmoe//USB2
[fileinfo+] /USB2/unisontest: false 1234303144.000000 1234303144.000000
[update] findOnRoot /cygdrive/c/morten-GITMOE
[update] findLocal /cygdrive/c/morten-GITMOE
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[pred] ignore 'unisontest' = false
[update] buildUpdate: /cygdrive/c/morten-GITMOE/unisontest
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest: true 1234303646.000000 1234303
646.000000
[update+]   buildUpdate -> Directory
[pred] immutable 'unisontest' = false
<>Starting new major GC cycle
![pred] ignore 'unisontest/a' = false
[update] buildUpdate: /cygdrive/c/morten-GITMOE/unisontest/a
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest/a: true 1234302900.000000 12343
02858.000000
[update] checkContentsChange: archStamp is ctime (0.000000) / info.ctime (123430
2900.000000) / times: 1234302858.000000 - 1234302858.000000 - true / lengths: 2
- 2
[update+]   Unchanged file
[pred] ignore 'unisontest/a-cp' = false
[update] buildUpdate: /cygdrive/c/morten-GITMOE/unisontest/a-cp
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest/a-cp: true 1234303144.000000 12
34302858.000000
[update] checkContentsChange: archStamp is ctime (0.000000) / info.ctime (123430
3144.000000) / times: 1234302858.000000 - 1234302858.000000 - true / lengths: 2
- 2
[update+]   Unchanged file
[pred] ignore 'unisontest/a2' = false
[update] buildUpdate: /cygdrive/c/morten-GITMOE/unisontest/a2
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest/a2: true 1234303841.000000 1234
303837.000000
[update]   buildUpdate -> Updated file
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest/a2: true 1234303841.000000 1234
303837.000000
[pred] ignore 'unisontest/b' = false
  scanning unisontest/b
[update] buildUpdate: /cygdrive/c/morten-GITMOE/unisontest/b
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest/b: true 1234303144.000000 12343
02931.000000
[update] checkContentsChange: archStamp is ctime (0.000000) / info.ctime (123430
3144.000000) / times: 1234302931.000000 - 1234302931.000000 - true / lengths: 2
- 2
[update+]   Unchanged file
[pred] ignore 'unisontest/b-cp' = false
[update] buildUpdate: /cygdrive/c/morten-GITMOE/unisontest/b-cp
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest/b-cp: true 1234303055.000000 12
34302931.000000
[update] checkContentsChange: archStamp is ctime (0.000000) / info.ctime (123430
3055.000000) / times: 1234302931.000000 - 1234302931.000000 - true / lengths: 2
- 2
[update+]   Unchanged file
[update] Setting archive for //Gitmoe//cygdrive/c/morten-GITMOE
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest: false 1234303646.000000 123430
3646.000000
Reconciling changes
[recon] reconcileAll
[recon] reconcile: 1 results
[update] Marking 0 paths equal
[pred] forcepartial 'unisontest/a2' = false
[pred] preferpartial 'unisontest/a2' = false
morten-GI...   USB2
new file ---->            unisontest/a2
Proceed with propagating updates? [] y
Propagating updates

UNISON 2.27.57 started propagating changes at 23:11:03 on 10 Feb 2009
[BGN] Copying unisontest/a2 from /cygdrive/c/morten-GITMOE to /USB2
[files] copy /cygdrive/c/morten-GITMOE unisontest/a2 ---> /USB2 unisontest/a2
[pred] follow 'unisontest/a2' = false
[fspath] Os.findWorkingDir(/USB2,unisontest/a2) = (/USB2/unisontest,a2)
[update] updateArchiveLocal /cygdrive/c/morten-GITMOE unisontest/a2
[pred] ignore 'unisontest/a2' = false
[update] updateArchiveLocal --> unisontest/a2
[update] updateArchiveLocal /USB2 unisontest/a2
[pred] ignore 'unisontest/a2' = false
[update] updateArchiveLocal --> unisontest/a2
[files] copyRec unisontest/a2 --> .unison.a2.151743.unison.tmp  (really to a2)
[abort] Checking line 1
[copy] copyRegFile(/cygdrive/c/morten-GITMOE,unisontest/a2) -> (/USB2,a2,/USB2/u
nisontest,.unison.a2.151743.unison.tmp,modified on 2009-02-10 at 23:10:37  size
2         read-write)
[copy] Copy.localFile /cygdrive/c/morten-GITMOE / unisontest/a2 to /USB2/unisont
est / .unison.a2.151743.unison.tmp
[abort] Checking line 1
[props] Setting permissions for /USB2/unisontest/.unison.a2.151743.unison.tmp to
 read-write (600/200)
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest/a2: true 1234303841.000000 1234
303837.000000
[fileinfo+] /cygdrive/c/morten-GITMOE/unisontest/a2: true 1234303841.000000 1234
303837.000000
[update] replaceArchiveLocal /USB2 unisontest/a2
[fileinfo+] /USB2/unisontest/.unison.a2.151743.unison.tmp: false 1234303865.0000
00 1234303837.000000
[files] rename(root=/USB2, pathOld=.unison.a2.151743.unison.tmp, pathNew=a2)
[update] checkNoUpdatesLocal /USB2 unisontest/a2
[update] buildUpdate: /USB2/unisontest/a2
[update]   buildUpdate -> Absent and no archive
[files] Renaming .unison.a2.151743.unison.tmp to a2 in /USB2/unisontest; root is
 /USB2
[files+] calling Fileinfo.get from renameLocal
[fileinfo+] /USB2/unisontest/.unison.a2.151743.unison.tmp: false 1234303865.0000
00 1234303837.000000
[files+] back from Fileinfo.get from renameLocal
[files] rename: moveFirst=false
[stasher] backup: /USB2 / unisontest/a2
[stasher] File unisontest/a2 in /USB2 does not exist, so no need to back up
[os] rename /USB2/unisontest/.unison.a2.151743.unison.tmp to /USB2/unisontest/a2
[files] Contents of /USB2/unisontest/a2 after renaming = 60b725f10c9c85c70d97880
dfe8191b3
[update] Committing 1
[update] replaceArchiveLocal: committing
[pred] backupcurrent 'unisontest/a2' = false
[update+] updatePathInArchive ArchiveDir /USB2 [] [unisontest/a2]
[update+] updatePathInArchive ArchiveDir /USB2 [unisontest] [a2]
[update+] updatePathInArchive NoArchive /USB2 [unisontest/a2] []
[update] Setting archive for //Gitmoe//USB2
[update] Committing 1
[update+] updatePathInArchive ArchiveDir /cygdrive/c/morten-GITMOE [] [unisontes
t/a2]
[update+] updatePathInArchive ArchiveDir /cygdrive/c/morten-GITMOE [unisontest]
[a2]
[update+] updatePathInArchive NoArchive /cygdrive/c/morten-GITMOE [unisontest/a2
] []
[update] Setting archive for //Gitmoe//cygdrive/c/morten-GITMOE
[pred] backupcurrent 'unisontest/a2' = false
[pred] backupcurrent 'unisontest/a2' = false
[END] Copying unisontest/a2
UNISON 2.27.57 finished propagating changes at 23:11:05 on 10 Feb 2009

Saving synchronizer state
[update] Updating archives
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>![update]
 Saving archive in /home/Compaq_Ejer/.unison/sc251322
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>!<>![update]
 Saving archive in /home/Compaq_Ejer/.unison/sc151743
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update] Copying archive /home/Compaq_Ejer/.unison/tm251322 to /home/Compaq_Ejer
/.unison/ar251322
[fileinfo+] /home/Compaq_Ejer/.unison/ar251322: false 1234303865.000000 12343038
65.000000
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update] Copying archive /home/Compaq_Ejer/.unison/tm151743 to /home/Compaq_Ejer
/.unison/ar151743
[fileinfo+] /home/Compaq_Ejer/.unison/ar151743: false 1234303866.000000 12343038
66.000000
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update] Removing archive /home/Compaq_Ejer/.unison/tm251322
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
[update] Removing archive /home/Compaq_Ejer/.unison/tm151743
[update+] Archive name is //Gitmoe//USB2;//Gitmoe//USB2, //Gitmoe//cygdrive/c/mo
rten-GITMOE;22; hashcode is 251322aa41ca2d975e7fd809a9a753ed
[update+] Archive name is //Gitmoe//cygdrive/c/morten-GITMOE;//Gitmoe//USB2, //G
itmoe//cygdrive/c/morten-GITMOE;22; hashcode is 1517433869cfc96c558e8288b2089f8f
Synchronization complete  (1 item transferred, 0 skipped, 0 failures)
+ ls -ld /cygdrive/c/morten-GITMOE/unisontest
drwxr-xr-x+ 2 Compaq_Ejer Ingen 0 Feb 10 23:07 /cygdrive/c/morten-GITMOE/unisont
est
+ ls -l /cygdrive/c/morten-GITMOE/unisontest
total 5
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a-cp
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 23:10 a2
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b-cp
+ ls -ld /USB2/unisontest
drwxr-xr-x+ 2 Compaq_Ejer Ingen 0 Feb 10 23:11 /USB2/unisontest
+ ls -l /USB2/unisontest
total 5
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a-cp
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 23:10 a2
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b-cp
+ ls -ld /cygdrive/j/morten-USB2/unisontest
drwxr-xr-x+ 2 Compaq_Ejer Ingen 0 Feb 10 23:11 /cygdrive/j/morten-USB2/unisontes
t
+ ls -l /cygdrive/j/morten-USB2/unisontest
total 5
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:54 a-cp
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 23:10 a2
-rwxr-xr-x 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b
-rw------- 1 Compaq_Ejer Ingen 2 Feb 10 22:55 b-cp
+ umount /USB2
+ rmdir /USB2
Compaq_Ejer@Gitmoe ~
$
**********************************************************************************
_________________________________________________________________
MSN Style - alt for kvinder samlet på ét sted – klik her
http://www.msnstyle.dk/ 

Attachment: cygcheck.out
Description: Text document

Attachment: unisondoc1.txt
Description: Text document

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]