Trying to transfer dmg file...

I am trying to transfer a .dmg file that is 8.6gb to my 1tb external HD and it gies me "Sorry the operation could not be completed because an unexpected error occured (error code 0)" I would really like to back this up on there but its not letting me...tried to use windows thru fusion and it says there isnt enough space...i have 544gb available on my ehd and the file is 8.6gb...somethin isnt adding up here...any thought? My HD is a 1tb western digital formatted thru my macbook...

Well, nice to know the reason why I can't backup a 4.9gb file I have. No I can stop saying bad things about my Mac.
Ok, but now, any solutions? Is there any Win-compatible format the supports 4+gb files?
Thanks.
JP

Similar Messages

  • HT4527 I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help a

    I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help as such

    Then stop trying to use HomeShare and use one of the other options listed in the document from which your question was posted.

  • I'm trying to transfer the files from my ipod touch to my new computer itunes keeps telling me that all the apps and music won't be transferred that the computer is authorized.  Then it brings up a previous apple id which is no longer valid.

    I'm trying to transfer the files from my Ipod touch to my new computer.  It is saying that not all of the files will be transferred because the computer isn't authorized.  I have authorized it several times but it keeps bring up a previous apple id that I had but when I try to log in using that id it tells be it is no longer vailid and then it stops and won't let me transfer any files.  Any suggestion are welcome.  Thank You

    The computer has to be authorized for the account that purcchased the media.
    What error message are you getting when you try to lauthorize the computer for that account?
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • I continue to receive "failed to mount" when trying to install .dmg files or updates.  Has anyone found an answer to this problem?  I am operating on Mac OS X 10.4.11

    I continue to receive "failed to mount" when trying to install .dmg files or updates.  Has anyone found an answer to this problem?  I am operating on Mac OS X 10.4.11

    10.4.11 was only available as a PowerPC updater application (both as a Combo and as a Delta) to Macs with 10.4 or later that were PowerPC. If you don't have 10.4 installed on your Mac, see this tip:
    https://discussions.apple.com/docs/DOC-2541

  • Problem trying to transfer multiple file over a network or the internet

    Hello I'm trying to make a file transfer program to transfer file over the internet or a network. I've been able to successfully transfer one file but when I try to send multiple files I keep getting a EOFException after the client trys to send the files. The client says it sent both files and the connection was closed but the server said that it only received one file and throws a EOFException. I've included the code from the client and the server. Any help is much appreciated.
    The Client
    private class createSocket implements Runnable {
              String address;
              int port;
              public createSocket ( String address, int port ) {
                   this.address = address;
                   this.port = port;
              public void run() {
                   try {
                   postStatusMsg( "Opening Connection at " + address + ":" + port );
                   Socket socket = new Socket( address, port );
                   postStatusMsg( "Connected to " + address + ":" + port );
                   DataOutputStream dos = new DataOutputStream( socket.getOutputStream() );
                   DataInputStream dis = new DataInputStream( socket.getInputStream() );
                   dos.writeInt( files.length );
                   for ( File f : files ) {
                        BufferedOutputStream out = new BufferedOutputStream( dos );
                        BufferedInputStream in = new BufferedInputStream( new FileInputStream(f) );
                        postStatusMsg( "Sending: " + f.getName() );
                        byte[] b = new byte[8192];
                        int read = -1;
                        dos.writeUTF( f.getName() );
                        while ( ( read = in.read( b ) ) >= 0 ) {
                             out.write( b, 0, read );
                        postStatusMsg( "File Sent" );
                        in.close();
                   dos.close();
                   postStatusMsg( "Closing Connection" );
                   socket.close();
                   postStatusMsg( "Connection Closed" );
              catch( IOException e ) {
                   Main.ShowMsgBox( statusTA, "Error", e.getMessage(), JOptionPane.ERROR_MESSAGE );
                   try {
                        e.printStackTrace( new PrintStream( "./log.txt" ) );
                   catch ( FileNotFoundException ee ) {
                        ee.printStackTrace();
         }The Server
    public class ServerHandler implements Runnable {
              private Socket s = null;
              public ServerHandler( Socket s ) {
                   this.s = s;
              public void run() {
                   try {
                        handlers.add( this );
                        DataInputStream dis = new DataInputStream( s.getInputStream() );
                        DataOutputStream dos = new DataOutputStream( s.getOutputStream() );
                        BufferedInputStream in = new BufferedInputStream( dis );
                        BufferedOutputStream out = null;
                        int count = dis.readInt();
                        for ( int i = 0; i < count; i++ ) {
                             File f = new File( Main.settings.SAVE_DIR );
                             if ( !f.isDirectory() )
                                  f.mkdir();
                             f = new File( Main.settings.SAVE_DIR + "\\" + dis.readUTF() );
                             out = new BufferedOutputStream( new FileOutputStream( f ) );
                             postStatusMsg( "Receving: " + f.getName() );
                             byte[] b = new byte[8192];
                             int read = -1;
                             while ( ( read = in.read( b ) ) >= 0 ) {
                                  out.write( b, 0, read );
                             postStatusMsg( "File Received" );
                             out.close();
                        in.close();
                        postStatusMsg( "Closing Connection" );
                        s.close();
                        postStatusMsg( "Connection Closed" );
                        handlers.remove( this );
                   catch ( IOException e ) {
                        Main.ShowMsgBox( statusTA, "Error", e.getMessage(), JOptionPane.ERROR_MESSAGE );
                        try {
                             e.printStackTrace( new PrintStream( "./log.txt" ) );
                        catch ( FileNotFoundException ee ) {
                             ee.printStackTrace();
         }

    Something like this, modulo bugs:
    // sender
    dos.writeLong(file.length());
    // send the file
    // receiver
    long length = dos.readLong();
    long current = 0;
    int count;
    while (current < length && (count = in.read(buffer, 0, (int)Math.min(buffer.length, length-current))) > 0)
      out.write(buffer, 0, count);
      current += count;
    }

  • How do I fix the "Expected handle" error when trying to transfer a file with FireFTP?

    I'm trying to upload a ZIP file to my FTP folder with Blackbaud and cannot do so. I've entered all the parameters exactly as instructed by Blackbaud and all connections look good but when I go to transfer the file, I get the following message: "Expected handle: /users/B67E610BAA01/"H:\Downloads\BUMFS RE7 Database.zip" "BUMFS RE7 Database.zip"." All I can do is click "OK" and nothing happens other than seeing a repeated loop in the log that alternates between "noop" and "ok."

    Make sure your account has the proper permissions to write to the location. I ran into this exact same problem, and that was my solution, anyway...

  • Trying to transfer image files from mssql to mysql

    Im trying to transfer images from mssql to mysql and for some reason many images are not saved in their entirety i.e. you only get a half to a quarter of the image
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    connMysql = ...
    pstmt = connMysql.prepareStatement( "update ItemList set " +
                        "byteSizeLarge= ?, imageLarge = ? WHERE ID = 'A-044'");
    rs.next()
    int byteSizeLarge = rs.getInt(1);
    InputStream imageLarge = rs.getBinaryStream(2);
    pstmt.setInt(1,byteSizeLarge);
    pstmt.setBinaryStream(2, imageLarge, byteSizeLarge);
    pstmt.executeUpdate();
    the data type in mssql for the image is byteSizeLarge and I set the data type to blob in mysql. thank you all for your time

    no image is > 1mb . You can check it out at
    www.bychance.ca
    Its really strange. Even the small images under
    canvas art sometimes they appear
    sometimes they dont. When I replace the servlet
    .class file they appear for a little while and then
    it stops. Click on the small images to see the largeFrom this latest post of yours, it doesn't seem clear that you know whether it's really a MySQL problem with storing the images or not. This sounds like the symptoms of the problem and that you have somehow determined (whether correctly or erroneously) it to be a database problem. Have you really checked your database to see what it has actually stored there?

  • I just got a new computer.  I tried to transfer itunes files

    I just got a new computer.  I tried to transfer all iTunes files and music to my new computer using a flash drive.   I tried to restore my iTunes Library on the new computer and have been unable to do so.  The files will not open.  The computer gives me an error that I do not have the necessary software to open the "itl" files.  It referred me to the web where there are multiple sites to choose from including the option to download the new iTunes version.  I tried to download the new version unsuccessfully & tried a couple of the "free sites" only to find out they weren't free after all.  Hoping someone out there can help me.   Thanks!  rhomey

    Follow these instructions
    iTunes: How to move your music to a new computer (Mac or Windows):
      http://support.apple.com/kb/HT4527

  • I am trying to transfer my files and settings from a windows 7 Ultimate 32bit machine to a windows Professional 64 bit machine

    used easy transfer both machines are on a domain both are the same user yet i get an error message that says
    " Windows Easy transfer can't log onto your domain"
    Your new computer might not be connected to the domain.
    Tried via the network same message yet both machines can see each other.
    Tried saving it to a file on my external buffalo drive (Same message)
    Downloaded it to the new machines Desktop (Same Message)
    Can any one helps given up trying to talk to Support they want a Mortgage just to speak to them Grr

    Hi,
    Have a try to change the user account from the current user account.
    You can do this by pressing the advanced button at the bottom of the screen where you see the transfer button.
    Please refer to this thread:
    Windows Easy Transfer can't log on to your domain account
    http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_install/windows-easy-transfer-cant-log-on-to-your-domain/da341b4e-9f10-4334-a7a3-0f743dd08910
    Meanwhile as this is a Windows 7 related issue so it is recommanded to post to Windows 7 forum.
    http://social.technet.microsoft.com/Forums/en-US/category/w7itpro/
    TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]

  • Trying to transfer pdf files to ipad

    HI which App is best to move PDF's from my PC to my ipad. I have downloaded some free ones but still can't seem to transfer PDF's from the PC though itunes to my ipad. I clicked on the Apps section in itunes and the Apps list comes up and i have tried to add files and or folders but nothing shows up in the ipad. Even tries to click on the Apps icon but that did nothing, maybe i need a better App or something or maybe a better understanding.

    Install the free Adobe Reader and use File Sharing in iTune to add PDF file to iPad
    http://i1224.photobucket.com/albums/ee374/Diavonex/a58417cc.jpg

  • Broken pipe warning on trying to run dmg files

    hi, i am trying to install a couple of program file updates.
    however when i click on the xx.dmg i get warning cant run "broken pipe" in a dialog box.
    help !
    one of the upates i want to install is the 10.4.7 combi update but cant.
    any suggestions please
    thanks

    hi, tried that several times already.
    i was going to reinstall 10.4.7 updates again but this also have broken pipe error.
    thanks
    robin..

  • HT2518 Migration assistant can't find my external drive - I ran the disk utility on it and it checked out. What can I do - I am trying to transfer PC files to my new MacBook Pro. Thanks

    Hi,
    Wonder if someone has a suggestion for getting Migration assistant to recognize my external drive so that I can transfer some PC files from it to my MacBook Pro? I have been opening files in the drive with the Mac without a problem and I ran the diagnostics utility and the drive verified. Still, migration assistant spins and spins without finding anything. There's a lot of files and doing it manually with take days.
    Thanks!

    Personally I have always used the manual method for moving my files over to a new iMac and never use Migration Assistant.
    Go to the Apple drop down menu and select Force Quit.. and if Migration Assistant has failed, force quit it and try re-launching it again from your Applications Utility folder.

  • I cant see bluetooth option while trying to transfer media files.

    Hi all,
    I have a Blackberry Torch 9810 with OS 7. I dont know what happened but all of a sudden I am unable to send files through bluetooth. I cant see any option of bluetooth in the send options menu.
    I tried to deseclect port service in the bluetooth options and saved it. Againg selected port service and saved it. I also restarted my device while doing this. But still I am unable to send files via bluetooth. 
    Can some one help me please. Thank you.

    Please restart the phone by removing and placing the battery back while the device is ON. This process fixes the application modules in it without losing any data stored. Let us know if you still experience the issue after this.
    Ron
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up Blackberry Battery Saving Tips | Follow me on Twitter

  • Trying to transfer MP3 download files to ITunes playlist.  Simplest way?

    I am trying to transfer mp3 files from downloads to a playlist in iTunes.  What is the most simple way?

    Create playlist.  Drag files from Finder window to the playlist.
    Another poster on this forum says you can drag a folder of files to the playlists header in the sidebar and it will create a playlist with that folder name and content.  Somebody else tried it when I told them abut this and said it didn't work, so I don't know.  I use a 9 year old version of iTunes so I can't test it for you.

  • Dmg file not working

    i tried downloading a dmg file on my imac and it says the following disk images couldnt be opened not recognized i need help now

    It means you have a defective download. Re-download it.
    What type of file did you download? Does it have a file extension such as ".dmg".

Maybe you are looking for

  • Change the currency of Operating Concern COPA

    Hi, In my SAP environment there are 4 controlling areas. Only one of them is assigned to Operating concern. The remaining 3 have COPA inactive. I would like to extend the existing operating concern to remaining 3 controlling areas, but before I do th

  • Help in generating the same random numbers at every time of executuion

    dear friends i am facing a problem that the random numbers generated at time of each exectuion of the program are not the same, i want to generate the same random numbers every time time i run the program. i need your help. i am giving the code in c+

  • New songs and playlists won't sync to iPod since 8.0.2

    I have an 80gb iPod classic. I have made numerous failed attempts to sync new songs and playlists since downloading this latest 8.0.2 version of iTunes. When I plug in my iPod it shows up in iTunes, when I sync it iTunes shows a progress bar, then it

  • Unable to join domain when OD Master is set up as PDC

    Hi all, I'm working on trying to get my OD server to authenticate our new windows vmware workstations. I have both LDAP and Kerberos set up, and everything works really well with my OS X clients, as do our Linux servers. However, I'm unable to get ou

  • Premier Elements 7 Error - ../Src/Window.Cpp-251

    Hi! I have a problem with Premier Elements 7. It gives me error message "../Src/Window.Cpp-251". It seems to appear after adding DVD menus. And actually that problem started after using higher resolution clips. Earlier I was using DV files 720x576, b