Transferring jpg files from Win98 pc to IMac G5

I have just bought a crossover ethernet cable for this. If I attach the 2 machines is it a simple process to take the files from the pc and transfer them onto the Mac?
Any help/guidance gratefully received...
A

Hi first of all you can see from the following document
Apple products that require an Ethernet crossover cable
Your imac g5 does not require a crossover cable.
If you already have a broadband router then just connect each computer to it. Or attach a standard cat5 cable directly between the 2 computers.
Then see the document
Mac OS X: Setting up Windows File Sharing

Similar Messages

  • Transferring .jpg files from an ancient Samsung Blackjack

    I have a Samsung Blackjack (SGH-i607) which is several years old. And, of course, contains lots and lots of photos and a couple videos. I have been unsuccessful at having my brand new MacBook Pro "see" the Blackjack as a camera, and enable the downloading of photos into iPhoto.
    Anybody have instructions for this novice Mac user?
    Thanks!

    The specs say that the phone has an external SD memory card slot. Put a card in, transfer the files to it, remove and use it in a card reader to upload the files.
    OT

  • Transfered files from Mac Pro to iMac OS10.7. Copied bookmarks using "backup and restore" from "Organize bookmarks". File copied correctly as bookmarks 10-10-11.jsom, but would not restore on new iMac.

    Transfered files from Mac Pro to iMac OS10.7. Copied bookmarks using "backup and restore" from "Organize bookmarks". File copied correctly as bookmarks 10-10-11.jsom, but would not restore on Firefox on new iMac.

    Firefox 2 versions use the file bookmarks.html to store the bookmarks.
    See http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    See also http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    With Mac OS X 10.4 you can use Firefox 3.5 or 3.6
    * http://www.mozilla.com/firefox/all.html
    * http://www.mozilla.com/firefox/all-older.html
    *http://www.mozilla.com/en-US/firefox/system-requirements.html
    *http://www.mozilla.com/firefox/system-requirements-v3.html

  • Got a new external hard drive. Transferred all files from old hard drive to new hard drive. Connected hard drive to macbook. How do I get all my files to be recognized by iTunes and my already made playlists??

    Got a new external hard drive. Transferred all files from old hard drive to new hard drive. Connected hard drive to macbook. How do I get all my files to be recognized by iTunes and my already made playlists??

    Trying to download photos from IPHONE, IPAD to IPHOTO in IMAC after installing new hard drive.
    How did you import the photos to iPad and iPhone?
    If the photos have been synced to the iPhone and iPad using iTunes, you cannot sync them back.
    See this document:  http://support.apple.com/kb/HT4236
    You can't reimport pictures synced from your computer to your device back to your computer. You can only import pictures in the Camera Roll or Saved Photos from your device to your computer. If you need to retrieve synced photos from your device:
    If your photos are not in the Camera Roll on your devices, save them to the Camera Roll, share them to the Photo Stream, mail the photos, or, if you have iPhoto on the devices, use iTunes Photo Sharing.
    http://help.apple.com/iphoto/iphone/2.0/?handbuch#blnkee26bc1
    Save photos to your computer using iTunes
    Connect your iOS device to your computer.
    Tap a photo, album, event, web journal, or slideshow and tap Share> iTunes.
    Tap Selected, or change the photos you want to save (if you are saving a slideshow skip to step 4):
    Select different photos: Tap Choose Photos, tap one or more photos, and tap Next.
    Select a range of photos: Tap Choose Photos, tap Range, tap the first and last photos in the range, and tap Next.
    Select all the photos in an album or event: Tap All.
    In iTunes, click the button for your device and click Apps at the top of the window.
    Below File Sharing, select iPhoto (in Apps).
    Select the Shared Photos folder under iPhoto Documents.
    Click Save To and select the location on your computer where you want to save the items.
    To view your photos, go to the Finder and look in the location you selected above.

  • How can I delete two .jpg files from my desktop that refuse to be deleted?

    How can I delete two .jpg files from my desktop that refuse to be deleted?

    The two icons refused to be moved to the garbage. The good part in all this is that ater I turned off the computer at night and turned it back on the next morning they were gone!
    Thanks.

  • How to insert a JPG file from file system to Oracle 10g?

    I have developed a schema to store photos as BLOB which store the text description as CLOB original filename, file size.
    I also use ctxsys.context to index TEXT_DESCRIPTION in order to perform Oracle Text Search and it works.
    I would like to insert some JPG file from say C:\MYPHOTO\Photo1.jpg as a new record. How can I do this in SQL PLus and/or Loader?
    How can I retrieve the PHOTO_IMAGE back to the file system using SQL Plus and/or command line in DOS?
    See the following script:
    create user myphoto identified by myphoto;
    grant connect, resource, ctxapp to myphoto;
    connect myphoto/myphoto@orcl;
    PROMPT Creating Table PHOTOS
    CREATE TABLE PHOTOS
    (PHOTO_ID VARCHAR2(15) NOT NULL,
    PHOTO_IMAGE BLOB,
    TEXT_DESCRIPTION CLOB,
    FILENAME VARCHAR2(50),
    FILE_SIZE NUMBER NOT NULL,
    CONSTRAINT PK_PHOTOS PRIMARY KEY (PHOTO_ID)
    create index idx_photos_text_desc on
    PHOTOS(TEXT_DESCRIPTION) indextype is ctxsys.context;
    INSERT INTO PHOTOS VALUES
    ('P00000000000001', empty_blob(), empty_clob(),
    'SCGP1.JPG',100);
    INSERT INTO PHOTOS VALUES
    ('P00000000000002', empty_blob(), 'Cold Play with me at the concert in Melbourne 2005',
    'COLDPLAY1.JPG',200);
    INSERT INTO PHOTOS VALUES
    ('P00000000000003', empty_blob(), 'My parents in Melbourne 2001',
    'COLDPLAY1.JPG',200);
    EXEC CTX_DDL.SYNC_INDEX('idx_photos_text_desc');
    SELECT PHOTO_ID ,TEXT_DESCRIPTION
    FROM PHOTOS;
    SELECT score(1),PHOTO_ID ,TEXT_DESCRIPTION
    FROM PHOTOS
    WHERE CONTAINS(TEXT_DESCRIPTION,'parents',1)> 0
    ORDER BY score(1) DESC;
    SELECT score(1),PHOTO_ID ,TEXT_DESCRIPTION
    FROM PHOTOS
    WHERE CONTAINS(TEXT_DESCRIPTION,'cold play',1)> 0
    ORDER BY score(1) DESC;
    SELECT score(1),score(2), PHOTO_ID ,TEXT_DESCRIPTION
    FROM photos
    WHERE CONTAINS(TEXT_DESCRIPTION,'Melbourne',1)> 0
    AND CONTAINS(TEXT_DESCRIPTION,'2005',2)> 0
    ORDER BY score(1) DESC;

    Hi
    You can use the following to insert an image:
    create table imagetab(id number primary key,imagfile blob, fcol varchar2(10));
    create or replace directory imagefiles as 'c:\'
    declare
        v_bfile BFILE;
        v_blob  BLOB;
      begin
        insert into imagetab (id,imagfile,fcol)
        values (3,empty_blob(),'BINARY')
        return imagfile into v_blob;
        v_bfile := BFILENAME ('IMAGEFILES', 'MyImage.JPG');
        Dbms_Lob.fileopen (v_bfile, Dbms_Lob.File_Readonly);
        Dbms_Lob.Loadfromfile (v_blob, v_bfile, Dbms_Lob.Getlength(v_bfile));
        Dbms_Lob.Fileclose(v_bfile);
        commit;
      end;
    /

  • How do i transfer jpg files from outlook to iphoto

    how do I transfer multiple .jpg files from outlook to iphoto very easily?

    This may be a stupid suggestion.... Drag and Drop... Drag the jpeg's from the outlook window and drop them inside the iPhoto window.

  • Importing jpg files from hard drive

    I am trying to import all my pictures into iphoto however am getting an error:
    Unreadable file, The following file cannot be imported. (import failed).
    The files I am importing are *.jpg files from various camera I have owned over 5 years. I have all the photos uploaded into my apple TV as well as being very easily readable through other picture viewers on my Mac. I cant seem to understand why it would not import into iphoto.
    Please can somebody help me if you have ever had this issue before.

    Welcome to the Apple Discussions. Try copying a few to the desktop and from there into iPhoto. If that is successful then there's something about being on the Apple TV drive that iPhoto doesn't like. If that's the case you may have to copy the photos to the desktop, import into iPhoto and then delete them from the desktop.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • I transferred PPT files from a windows based pc (microsoft PPT 2003), at first my macbook was able to run all animations in file, after some time it stopped running it, partly because i "switched on" something since this is my first time to use a mac ?

    i transferred PPT files from a windows based laptop to my macbook, at first it was able to run the animations in the file no problem, its my first time to use a mac also bythe way, so i started downloading freebies like the VLC, FLIP4MAC, and other plug-in players, would it be because of this downloads that my mac now cannot seem to run the powerpoint animations any more ?

    I don't think vlc would affect powerpoint.  What were those "other plug-in players" you downloaded? 
    I'm not that familiar with powerpoint so how are those animations played?  Are they windows media player files?  If so then flip4mac might affect them.

  • My jpg files from CR2 edits in CS6/CC are not being imported into LR5.

    My jpg files from CR2 edits in CS6/CC are not being imported into LR5. Bridge and Explorer can see them ok. Tried to reimport but LR5 cant see them.
    The file numbers are the same as original CR2 but have the jpg extension. TIFFS and PSDs seem ok. Can anybody help please?

    how do I get all these files in my catalogue in the correct places cos they scattered around a bit
    That's kind of a broad question ... and there are many different approaches ... so I will explain my approach, and other people can explain their approach.
    My approach is to assign keywords and optionally captions and titles and other metadata to all of your photos, and use those to organize and search. Then, it doesn't matter what folders things are located in, if you want to see all your pictures of Chicago, you simply click on the arrow to the far right of the keyword Chicago. You don't have to remember what folders to look in, and this works even if the photos are scattered in a dozen different folders. In addition, since photos must be in one and only one folder, that limits your ability to organize; but you can assign as many keywords as you'd like to a photo, so a single photo can have keywords "Chicago" "Zoo" "Elephant" "Vacation" "Illinois" "United States" etc.

  • HT2518 If I am transfering my files from pc to mac, do I need to make sure the appropriate programs are already installed on the mac before or after the migration?

    Just bought a Mac Book Pro w/Retina display.  Will be transfering all files from my pc to the mac.  Also will be installing Paralles and Windows 7 to run quickbooks.  At what point do I do the data migration?  Install the software that I need first and then copy the files?
    Any help on this would be appreciated!

    Install the software then migrate the files. Documents can't be opened without the software on the drive.
    OS X: How to migrate data from another Mac using Mavericks

  • Cannot Load JPG Files From Canon Powershot S2 IS

    Hi,
    I'm having a problem loading JPG files from my Canon Powershot S2 IS. When I plug the camera into the USB port, I get the Canon Camera/DV Twain Driver with a list of images to import. They are all JPEG images, which is my camera's native format. (I don't think RAW is available on this model.) But when I select an image by double-clicking it, it is imported into Photoshop Album (Starter Edition 3.0), but has somehow been converted to TIFF.
    The problem I have with this is that the TIFF format uses up about 7 time more disk space than the original JPG and I can't afford a new hard drive right now. I simply don't have enough disk space available to import all my images. (I plan to back them up on CD after importing.)
    I see that Edit -> Preferences -> Scanner has an option to save files as JPEG, but Edit -> Preferences -> Camera has no such option.
    Please help! How do I get the images to stay as JPEG?
    Thanks!
    Debbie Hunt

    Answered your other post
    Colin Walls, "Help! PSA SE 3.0 converts my images to TIFF!" #1, 9 Sep 2005 2:28 pm

  • Import only jpg files from a camera that shoots RAW+jpg?

    Is there a way to import only jpg files from a camera that shoots both RAW+jpg? I only want the small jpgs copied, not the RAW file. I have the USB adapter and am about to go on vacation and wanted to use my iPad to upload pictures to Facebook on the go so I am going to shoot on my Canon 5D in RAW+jpg. All I want to copy to the iPad are the jpg files. Is there a way to only copy one?

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?
    I would note there is a long-standing issue between Kodaks and some versions of OS X - the workaround for that is to use a USB Card reader.
    Regards
    TD

  • Create JPG files from a pattern

    Hello
    How to create JPG files from a pattern in Photoshop CC?
    I created a website where I used the pattern in the background, now I need a little bit of this pattern to be inserted into the stylesheet CSS. In earlier versions of Photoshop as I knew to do it.
    Thank you for your response.

    When i hovering in Preset Manager does not appear the pixel dimensions, I know this solution of the previous versions of Photoshop, but in photoshop cc does not work for me. Do you know of another method to check the pixel dimensions of the pattern?

  • Copy jpg files from mac o sx 10.5.4 to pc windows xp

    I copied jpg files from my mac book to a windows pc, however, when I go to the widows machine I can see them on the hard drive of the pc but the pc will not open them.  
    During the copy an added extension, a "dot" and then an underscore before each files name.  Example.  On my mac I have a jpg file named 2f.jpg and when I copied it over it appears on the windows pc as   ._2f.jpg.  Windows can not read it

    MDD Dual 1GHz PowerMac
    Titanium Powerbook
    HP T7500 Dual Core 2.2GHz laptop
    windows formatted (NTFS) 250GB SimpleTech External HD
    Hi Friends,
    I'm forced to use a PC at work that I have the windows formatted ext hard drive connected to for backup purposes.
    I connected the external drive via USB2 to my TiPB and downloaded some RAW image files.
    Those image files are not recognized by my Bridge on my Mac.
    Those image files are no longer recognized by my PC thru Bridge, Photoshop or Lightroom. I also see an extra file type with the name "filename.dng.mac"
    Therefore, if my original file name is "_JTR0398.dng", then, after mounting the external HD on my laptop or PowerMac, I also get another file next to it named "_JTR0398.dng.mac".
    Thanks for your help!
    Joe

Maybe you are looking for

  • Automatic copying row from one table into another one

    Hi, I am looking for some help on how to do the following: I use Number to track my finances. I have two tables - one for my checking account and the other one for my cash account. When I withdraw cash from my checking account I record a transfer or

  • How can i reset my disabled ipod touch 5th generation

    how do i reset my disabled ipod touch 5th generation

  • Variables in another class

    Hello there .. I am totally new to java programming and i do need a litle help if you would be so kind. Here goes. I have an object that I put in a HashMap in class1. I have class2 that calls a method in class1 asking for the HashMap value and that w

  • Walkman problem! need help IMMEDIATELY!!

    Hi everyone, I recently bought Xperia E3 and it all went fine. After I updated walkman app, I found a strange behaviour! It stops playing music suddenly for few seconds but the track time is still running but no sound! I don't know why it's happening

  • Gallery script help, please

    Gallery script help, please Hello, I'm new to actionscript in general, I do know a little... I foung a gallery script, modified many things, the images open fine, everything is working, but here's the thing: the gallery is in 3 sections, red, blue an