Transferring files over wireless?

If I have two macs on the same wifi network, how can I use that to transfer large files (like lots of photos) from one to the other?

Hi Terabithia,
Just make sure that both Macs have file sharing turned on (under System Preferences > Sharing), and then you should be able to see each Mac pop up on the sidebar of any Finder window on the other machine.
If you don't see the computers there, try going to Go > Network under the Finder menu.
Hope that helps!
—Hazy

Similar Messages

  • Transferring file over network? what can I use besides ssh?

    What can I use to transfer file over network besides using ssh?
    This is only for experimental purposes. I have used ssh before, by using command like this:
    (time cat /run/shm/test/input/totalInput.tar | ssh username@ip-server "cat > /dev/null") 2>>/run/shm/test/p3_UC_ctime_tar.txt
    or this, if I tried to compress a file and then transfer:
    (time bzip2 -kfc1 /run/shm/test/input/totalInput.tar | ssh username@ip-server "cat > /dev/null") 2>>/run/shm/test/p3_ctime_tar.txt
    However, I think ssh is killing my transfer speed. I am getting only 10-20Mbps.. Router should support over 200-300Mbps.
    What can I use besides ssh? I was thinking about netcat, but what I don't like is that I have to open port on the other side for each new file transfer.

    Well, what I am conserned with things like scp and ssh (I tried scp too) is encryption.
    I just moved one file over to a server with scp, and I got about 2.1MB/s... which is about 16.8 Mbps..
    I am using Linksys E900, which is wireless-N router. Connection exist between two computers only, nothing else is using that router. However, there is another wireless point outside of our room, which is used for public University network. I don't know how much of effect it would have on our set up.
    Both computers have plenty of disk space. One computer (actually development board) uses sd-card for its OS and other disk space.
    About 200-300Mbps.. is just something I saw on router's specs.
    Last edited by kdar (2012-08-19 03:22:28)

  • Time capsule slow when transferring files over wifi - please help!

    Well - the problem started after the insallation of Lion. It takes around 1 min to transferre 8 mb. So if i want to see a film from the TC i need to cable it and thats not realy the point of having a wireless harddisk.
    I have turn spotlight off
    I have reset the disk - default settings
    I have made a clean Lion instal.
    I have called apple support, that wanted 40€ to fix the product they made - in a bad way.
    Hop some one knows a way to speed up my TC
    Thanks

    This is from Time Machine Buddy widget
    Starting standard backup
    Network destination already mounted at: /Volumes/Data
    Disk image already attached: /Volumes/Data/Samuel Ng’s MacBook Pro.sparsebundle, DIHLDiskImageAttach returned: 35
    Disk image /Volumes/Data/Samuel Ng’s MacBook Pro.sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    Backup content size: 232.4 GB excluded items size: 10.4 GB for volume Macintosh HD
    266.50 GB required (including padding), 2.73 TB available
    Waiting for index to be ready (101)
    Then my Macbook Pro freezed when 5.16Gb was transferred...

  • WRT54G2 - Help! Copying files over wireless network cripples internet...

    When copying files between computers on the wireless network, the internet is completely crippled and unusable.
    Is this because there's no bandwidth left for the internet?  Anyway of limiting the bandwidth

    Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter...Leave Username blank & in Password use admin in lower case...
    On the set-up tab change the MTU Size to 1350 and click Save Settings...
    lick on Advanced Wireless Settings
    Change the Beacon Interval to 75,Change the Fragmentation Threshold to 2304,Change the RTS Threshold to 2304 and Click on Save Settings...
    Now check this should resolve the problem.

  • Bluetooth mouse cuts out when transferring files over the network

    Just as the title says: whenever I copy files to a PC over the network (via SMB I think its called) My bluetooth mighty mouse will start getting very jerky and makes is very difficult to move the cursor on the screen. However, my Bluetooth keyboard is comply fine. Both are using Lithium batteries and where just replaced about a month ago. Also, both are in close range...about 2 feet. And it only happens when coping files.
    Any ideas?
    -Scott

    I don't connect to network volumes that often, but I did again today and noticed that my bluetooth keyboard completely cut out (had the "discounted" HUD come up) and then the keyboard would not reconnect until the file copy was complete. I don't know about the mouse as lately I've been using my Microsoft mouse that hasn't been giving me any troubles. (like really, Microsoft and "no troubles" in the same sentence??? lol)

  • Transferring files over from the hard drive of a previous computer. How can I get my library back?

    A couple weeks ago, my old, old laptop finally breathed its last breath and shut off suddenly while I was using it. Various parts of it were broken anyway so I got a new one rather than try to figure out what was wrong with it. All of my files were totally undamaged since it wasn't a hard drive issue, so I just got one of those enclosure things where you unscrew your old hard drive, stick it into the enclosure, plug it into your new computer with a USB cord, and then can drag all your old files onto the new computer.
    I could get all my old music back this way by dragging those folders, but if I want to get my library back -- specifically, my playlists, and ideally my info on play counts/date added/etc -- is there a way that I can do that? Is there some "Library" file, series of files, or folder that I can drag onto my new laptop in order to get those things back without having to recreate all my playlists and lose my play info?
    Have been running Windows 7 on both my old and current laptop, and was using iTunes version 10.7.0.21, if that information is necessary. Can give you whatever other info you'd need. Thanks!

    1. By default, it will be in the same folder as the iTunes Music or iTunes Media folder. If you don't find it, search the computer for items with that name.
    2. Wherever you want.
    (107674)

  • Trying to make a app that transfers files over bluetooth in java

    I am trying to make a program that will send a audio file (for example test.mp3) to another device.
    This would be set up as client - server application.
    Ideally, the server would be a PC and the client a mobile device.
    Is there any source code similar to this?
    Or can anyone help make this?
    Thanks.

    "You can try the below loop it will allow you to skip Unauthorized files access error:"
    Using EnumerateFiles instead of GetFiles doesn't actually avoid the UnauthorizedAccessException that is commonly encountered then SearchOption.AllDirectories is used. There's no way to avoid this problem except by dealing with each directory individually.
    And some side notes:
    the "select new { File = file }" is completely unnecessary
    DirectoryInfo.EnumerateFiles should be used instead of Directory.EnumerateFiles. Enumerating file paths and then creating FileInfo objects is slower than enumerating FileInfo objects in the first place.
    No one said EnumerateFiles instead of GetFiles will solve the Unauthorized exception. 
    Second comment the property File is used within the loop.
    The third comment has no effect with lazy execution, and please prove that it is slower. This comment must be sent against the "GetFiles" method not there."The EnumerateFiles and GetFiles methods
    differ as follows: When you use EnumerateFiles,
    you can start enumerating the collection of names before the whole collection is returned; when you use GetFiles,
    you must wait for the whole array of names to be returned before you can access the array. Therefore, when you are working with many files and directories, EnumerateFiles can
    be more efficient."
    Reference:https://msdn.microsoft.com/en-us/library/dd383571.aspx
    Fouad Roumieh

  • I am having trouble transferring files from an old MacBook (2007) to a MacBook Air over a wireless network.  The connection was interrupted and the time was over 24 hours.  Is there a better way to do this?  I'm using Migration assistant.

    I am having trouble transferring files from an old MacBook (2007) to a MacBook Air over a wireless network.  The connection was interrupted and the time was over 24 hours.  Is there a better way to do this?  I'm using Migration assistant.  The lack of an ethernet port on MacBook air does not help.

    William ..
    Alternative data transfer methods suggested here > OS X: How to migrate data from another Mac using Mavericks

  • WRT330N Transfer over wireless creates bad avi files.

    I am running the WRT330N (with latest firmware) with WEP encryption. When transferring avi's from my laptop (wireless) to my desktop (wired) about half the time they come out unplayable or / corrupt file (when I try them out on my desktop or try playing them from the desktop on my laptop). Wireless QOS is enabled, and I just recently added my laptop to the QOS rule over wireless and set the priority to VI (video). I haven't had time to see if that helps. Does anybody else have any ideas and would error correction be better if I used WPA or PSK2 Enterprise or personal on the WRT330N? Tech support was of no help they told me to turn my network sharing password off and if that doesn't help return the "defective" router. Which everything else seems to work fine internet, strong signal, etc. etc. Thanks Again for reading this and for the reply.

    Check if the file sharing settings on both the computers are properly enabled ....... Also check if from desktop to laptop if you are sharing the files or videos ....it is working or not .....

  • My computer broke and i lost all files including ITunes. what happens to all the stuff purchased already. will this appear in itues when i download it agian? how can i save the music on my ipod and transfere it over to the new itunes?

    my computer broke and i lost all files including ITunes. what happens to all the stuff purchased already. will this appear in itues when i download it agian? how can i save the music on my ipod and transfere it over to the new itunes?

    Unfortunely, all movies and songs purchased in iTunes will be lost...you'll have to purchase them again! Any applications you've purchased, you can download again for free.
    Music Rescue is a program you can use to transfer any and all data (music, movies, pictures..) from your iPod to your computer, and iTunes.
    http://www.kennettnet.co.uk/products/musicrescue/

  • Transferring file pc laptop - ibook via wireless

    Hi,
    I need to transfer files from my ibook to a win laptop.
    1)I used a flash drive but got damaged files.
    2)Os 9 can't see my ipod nano!
    I've got an airport 802.11b on my ibook and an intel 802.11b/g on the asus win laptop.Can I transfer files through wireless?How?I'm a newbie of os 9
    tnks a lot

    A1: Unfortunately, I am not familiar with the card in question (someone else may be able to provide you with exact information). Generally speaking however, special Mac driver software is needed for Ethernet cards.
    A2: There are some limitations regarding Mac OS 10.4 and certain older systems. Without going into details, you may not be able to use all machines as servers, but it is usually possible to create a connection that will allow files to be transferred.
    A3: Yes, a direct connection, typically (depending upon the machines involved), requires a crossover cable. A connection via a hub or a switch (router) will use normal cables.
    For additional information, have a look here and here.
    There are a couple of alternative solutions. Pro primo, you could try a wireless connection to your existing network. This web page could perhaps be of interest. Secondly, a CompactFlash card (or another flash card) used with an inexpensive PC Card adapter (see, for example, here) would let you carry out the transfers.
    Jan

  • WIFI dies when transferring big files over the network

    Hi, I have Dell Inspiron 1520 with ipw3945 driver, when I transfer big files over the network, my wifi dies, anybody knows what could it be? If you need additional information, feel free to ask...
    Thanks in advance

    I guess we shall see. I can't imagine we are the only 7 with these issues.  Mine is mainly just lag... and overall slowness.  I hope to work through this.  If it lasts much longer I will have to revert back all 3 of my lappies to FC which I really do not want to do.  But on the lappies i connect via wireless 90% of the time and need it to work. 
    By the way how are you guys configuring your wifi?  I am using the iwl drivers and wicd.
    Well I did some more testing and loaded up netcfg and still get the same results so that rules out that part.  I also did some packet captures and I am getting a bunch of tcp retransmissions followed by tcp segment lost followed by a reset which in turn kills my rdp session (remote desktop protocol). I also went back several versions of the uucode driver and still get the same reults so I guess it seems to be a kernel issue.  Back to FC I go.  Damn shame...
    Last edited by BKJ (2008-10-08 01:08:56)

  • I cannot printany web pages or emails over a wireless home network. My OS is windows 7 and am using an Epson printer. I know I have the home network set up correctly as i can print files over the network.

    I cannot print any email or web pages over a wireless home network. I know that I can print my files over this network, just not anything from the web or emails using Firefox. I am using Windows 7 and printing to an Epson.
    == This happened ==
    Every time Firefox opened
    == when I set up the wireless home network.

    The most likely reason for this is that the wrong printer is chosen in the File->Print window.
    In Firefox, go to File->Print and click the dropdown box with printer names. Ensure that the correct network printer is selected, then try printing again.

  • IChatAV and file transfer over wireless network

    Hi there...
    I'd like to let you in on my predicament. Firstly, a bit of background.
    I decided to buy my folks an old iMac from eBay in Australia - and pay for their broadband connection - so that I could video chat to them from the UK, and they could see my 5 year old son for the first time in 4 years. Cute, eh?
    Well, everything was working fine until I decided to go wireless in my home about 3 months ago. I have a static IP address, and purchased a nice new Airport Express to integrate into the system. I allocated my G5 iMac it's own network address (10.0.1.2), and the base station the master address (10.0.1.1). From there, the base station communicates to the router via the static IP... Sound ok?
    Anyway - NOW (or, for as long as I can recall), I CANNOT for the life of me send files over the connection. Video chat and audio chat are fine (although OCCASIONALLY it takes a few goes to be able to see THEM on my computer - I think their bandwidth isn't THAT stable at 512Kbps down and 128Kbps up) - however, the correct ports have been unblocked on the OSX firewall AND the Airport Express base station.
    And just so that you know it's not the folks' fault - I can't send documents/images over the network to friends I KNOW are competent (or, at least more competent than my parents!). There's always an error message at the receiver's end, and the file I'm attempting to send just times out.
    Has anyone any suggestions as to how I might be able to resolve this problem before I expire from old age?!?
    Your thoughts are REALLY appreciated!

    Hi Ralph
    I can see where that might be the case, but file transfer worked flawlessly BEFORE I went wireless using the same modem. The only way to unblock ports on my router is to turn NAT off - it creates a DMZ, so it permits unhindered 2-way traffic...
    It's a pretty confusing piece of kit. Maybe I should just get a Netgear anyway!
    I have a laptop on the wireless network as well, and file transfer works a treat between it and the iMac. All I can think of is that because I'm now working on a LAN, there's a blockage to get out to the "Real World" - even though it's easy for video to pass through.
    I'll check my unblocked ports again, just to be sure. I'm unfamilar with the term "Jabber" - is that what Apple decided to call one of the elements of iChat? Excuse my ignorance...!

  • HT4889 Transferring files from my old Macbook Pro to the new one takes over 30 hours?!?!

    How is that even possible? I am trensferring the files using a tunderbolt cable and the wifi on the source computer is switched off to avoid trying to transfer the files over wifi. At first I thought the estimation was inaccurate and hope that when I leave it overnight it will be done by the morning but it wasn't, nor the morning after. I can see there is progress but it is so tremendously slow, it absolutely strains my nerves goven the fact that I have porpietary software on my ild computer that I really nee dto use now, and I am afraid what will happen if I disconnect.
    It's been saying "less than a minute left" for almost an hour now but nothing is happening. Can/should I try to restart?

    Ah, I see, you are right. My old MacBook is from mid 2010, so it simply has a mini display port, I just assumed it is the same thing since the cable fit and the computers recognized each other.
    I wish I knew that before I started, as there wasn't really anything I could do at this point but wait for two days only to get stuck on the last minute. The only "guiding" message was on my new computer advising me to connect via ethernet cable. Ironically it showed the message on my new MacBook Pro, which doesn't even have an ethernet port...

Maybe you are looking for

  • How to add an "age / time counter" into DW?

    Can anyone assist on how to add an age / time counter into DW? In other words to say "Child X is now a years, b months old"? or "Product Z was launched A years B months ago"? Or, on the other hand, "You only have Z days & Y minutes left to enter"? Wi

  • How to turn OFF Organize by Conversation in all mailboxes at once and set it as default?

    The Apple Mail Organize by Conversation is not working properly on Mail 6.5 on Mac with OS X 10.8.4 (Mountain Lion). How to turn off such Organize by Conversation in all mailboxes of at once and leave it off as default for past and new messages?

  • Softwere problem

    My Mobile 5233 there more problems as phone working stop , auto restart , what i do . Nokia care update my mobile 2 times but this problem is as it is no postitive report . What i do .?

  • Import data Question

    Can you please give me step by step  stages how to import Data from an Excel Sheet into Items Master data where: a. I want to import Bar Code numbers in to the existing Bar Code Field for individual items b. How do I Map which field in Excel correspo

  • What do you do after downloading Photoshop Elements?  I cannot access it.

    What do you do after downloading Photoshop Elements?  I cannot access it.  It is not listed in my Programs, but a package is in my downloads folder.