The MP3car.com Store  

Welcome to the MP3Car.com forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. Registering will also remove advertisements. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   MP3Car.com > Mp3Car Technical > Software & Software Development

Reply
 
Thread Tools Display Modes
Old 03-14-2007, 07:50 PM   #1
Constant Bitrate
ckny's CarPC Specs
 
Join Date: Mar 2006
Location: NY
Vehicle: 2005 Nissan 350z
Posts: 180
My Photos: (0)
Sync my XP car computer with Mac OSX?

I have searched and found a few programs that will sync two drives in XP but I don't know if they'll sync over a network. What I'd like is a program which is on my XP car computer that will allow me to initiate a wireless sync over samba with a folder on my mac indoors. Does anyone know of any programs that will do this?
ckny is offline   Reply With Quote
Sponsored Links
Old 03-22-2007, 10:41 AM   #2
Newbie
 
The6's Avatar
 
Join Date: Mar 2006
Location: UK
Vehicle: Mazda 6 2.0 TS
Posts: 27
My Photos: (0)
Quote: Originally Posted by ckny View Post
I have searched and found a few programs that will sync two drives in XP but I don't know if they'll sync over a network. What I'd like is a program which is on my XP car computer that will allow me to initiate a wireless sync over samba with a folder on my mac indoors. Does anyone know of any programs that will do this?

Not sure of a program, but I have used ant scripts before to sync networked shares and in fact may start using this again.

Those familiar with Java will know about Jakarta Ant scripts.

Sync Task

You could try that.

If you decide to go down this route you will need to install ant and have a build.xml that contains the sync task defining what to sync.

Last edited by The6 : 03-22-2007 at 04:52 PM.
The6 is offline   Reply With Quote
Old 03-22-2007, 05:59 PM   #3
Constant Bitrate
ckny's CarPC Specs
 
Join Date: Mar 2006
Location: NY
Vehicle: 2005 Nissan 350z
Posts: 180
My Photos: (0)
Quote: Originally Posted by The6 View Post
Not sure of a program, but I have used ant scripts before to sync networked shares and in fact may start using this again.

Those familiar with Java will know about Jakarta Ant scripts.

Sync Task

You could try that.

If you decide to go down this route you will need to install ant and have a build.xml that contains the sync task defining what to sync.

Looks interesting but not something I'm at all familar with. Do you have any resources that I could read up on to learn about running and installing "ant"? It's platform independent I'd imagine.

I guess I'll spend some time on the apache site.
ckny is offline   Reply With Quote
Old 03-22-2007, 06:17 PM   #4
Newbie
 
The6's Avatar
 
Join Date: Mar 2006
Location: UK
Vehicle: Mazda 6 2.0 TS
Posts: 27
My Photos: (0)
Quote: Originally Posted by ckny View Post
Looks interesting but not something I'm at all familar with. Do you have any resources that I could read up on to learn about running and installing "ant"? It's platform independent I'd imagine.

I guess I'll spend some time on the apache site.

If I get chance I'll get this going on my two network machines at the weekend and post the steps on here for you.
The6 is offline   Reply With Quote
Old 03-22-2007, 08:36 PM   #5
Constant Bitrate
ckny's CarPC Specs
 
Join Date: Mar 2006
Location: NY
Vehicle: 2005 Nissan 350z
Posts: 180
My Photos: (0)
Wow. That would be really awesome of you. Let me know if you are able to do that. In the meantime I'll be researching it myself.

Chris
ckny is offline   Reply With Quote
Old 03-23-2007, 12:46 AM   #6
Maximum Bitrate
Jarrod's CarPC Specs
 
Jarrod's Avatar
 
Join Date: Jan 2002
Location: Melb, Australia.
Vehicle: 2001 Holden VX S Commodore
Posts: 474
My Photos: (0)
Just wondering - I have a program that can sit on an XP machine and sync data from any network share. Do MacOS shares show up as standard windows shares to the XP machine if using Samba? Sorry if thats a basic question, but I really am clueless when it comes to macs!
__________________
Jarrod - Holden VX S!
Jarrod is offline   Reply With Quote
Old 03-23-2007, 04:41 PM   #7
Newbie
 
The6's Avatar
 
Join Date: Mar 2006
Location: UK
Vehicle: Mazda 6 2.0 TS
Posts: 27
My Photos: (0)
Quote: Originally Posted by ckny View Post
Wow. That would be really awesome of you. Let me know if you are able to do that. In the meantime I'll be researching it myself.

Chris

Right spent a little bit of time on this, have the basics working - syncing of two directories on two separate machines.

To do this, install ant and goto to the bin directory.

In the bin directory create a file called build.xml

In this file add the following lines :-

<project name="syncfiles" default="synctask">
<target name="synctask">

<sync todir="c:\Dir2\">
<fileset dir="\\thebeast\Pictures\Img0011\"/>
</sync>

</target>
</project>

Change the todir to point to a local drive and change the fileset (from) dir to the remote directory to pick files from.

Save the changes and then simply type "ant" from within the bin directory, this will run the file and sync to two directories.

Theres lots of other options you could add like excluding certain files etc...

Last edited by The6 : 03-24-2007 at 05:31 PM.
The6 is offline   Reply With Quote
Old 03-23-2007, 05:33 PM   #8
Constant Bitrate
ckny's CarPC Specs
 
Join Date: Mar 2006
Location: NY
Vehicle: 2005 Nissan 350z
Posts: 180
My Photos: (0)
Great - thank you - I will be testing it out tomorrow!

Quote: Originally Posted by Jarrod View Post
Just wondering - I have a program that can sit on an XP machine and sync data from any network share. Do MacOS shares show up as standard windows shares to the XP machine if using Samba? Sorry if thats a basic question, but I really am clueless when it comes to macs!


Yes the Mac shares show up as a standard samba windows share. What is the name of the program you are using?

Last edited by ckny : 03-23-2007 at 05:33 PM. Reason: Automerged Doublepost
ckny is offline   Reply With Quote
Old 03-25-2007, 01:43 AM   #9
Maximum Bitrate
Jarrod's CarPC Specs
 
Jarrod's Avatar
 
Join Date: Jan 2002
Location: Melb, Australia.
Vehicle: 2001 Holden VX S Commodore
Posts: 474
My Photos: (0)
Its my own app, working title is "NitroSync".

It's been in development for a long time, just not happy with it enough to release yet. Basically it is a full featured sync app (LAN, USB devices, CDROM), phidget controller, settings adjuster, fully skinnable, cd ripper, plus some other stuff I have probably forgotten to mention - all meant to work with RoadRunner.
__________________
Jarrod - Holden VX S!
Jarrod is offline   Reply With Quote
Old 03-28-2007, 01:39 PM   #10
Newbie
 
Join Date: Mar 2007
Posts: 19
My Photos: (0)
If both PCs have access to the internet you might try FolderShare. I have been using it for near line backups since before MS bought them. It will even support 3way syncs... It's free and supports Mac and Windows. On a side note it's the APIs from FS that MS is using for file sharing inside MSN Messenger.

http://www.foldershare.com/
beefHeart is offline   Reply With Quote
Sponsored Links
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Remotely turn on computer (not necessarily car) Triggerhappy Power Supplies 14 06-22-2006 12:23 PM
New Bee.. thing i want to do using mac mini in my car kingquattro MacCar 7 07-02-2005 03:47 PM
Bracket to hold Notebook Computer in Car vince123123 General Hardware Discussion 2 05-22-2005 10:56 PM
Making a Car Computer; Need Your Help! Fear Effect Newbie 17 10-20-2004 04:49 AM
Power problems with car computer :( Bitflip General Hardware Discussion 9 04-26-2004 03:13 PM


All times are GMT -5. The time now is 06:52 PM.


Sponsored Links
The MP3car.com Store

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
Copyright © 1999 - 2008 Mp3Car.com Inc.
Ad Management by RedTyger
Message Board Statistics