Total Noob - Need Advice

Hey there, I'm a total noob about Macs and I would like to know information on certain iMacs. I'm interested in getting one.
http://www.argos.co.uk/static/Product/partNumber/5082834/Trail/searchtext%3EIMAC .htm
Was looking at that, Is it a good version? And will it run high end games no problem.
Also any other information about macs, ie the Operating Software and what to expect is also welcome, always used windows, and once I get my paycheck on the 26th I'll be getting it
Thanks for ANY help.
~Jack

If you want to save few £. Visit Comet website
http://www.comet.co.uk/shopcomet/product/602450/APPLE-iMac-MB950BA?cm_mmc
On the checkout enter discount code " 6OFF " to safe extra 6%. And u can get this model for £845.06.
Remember that if you are in Uni. Or anyone u know is a student u can safe 15% on macs.
http://store.apple.com/uk/browse/home/education_routing?mco=OTY2ODQzMg
Also visit
http://www.apple.com/uk/why-mac/

Similar Messages

  • MAC noob needs advice

    I've just bought a 2nd hand iMAC (2081 (v3)) with 17" sceen & 515mb of RAM. I'd like to start from new & the iMAC hasn't had any use in 3 years so I want to upgrade it & make good use of it.
    The previous owners have passworded the system then sold it on via business so I'd like to wipe it clean & start fresh if possible?
    Any good links & advice are welcome,
    TIA
    PS: I'm MCP & MCSA trained so don't hold back. I've got access to a friends MAC O/S CD's if that's any good?

    Welcome to Discussions - You have an iSight? With 512GB of RAM? Do you have the install discs? Only the discs that came with the exact model and version of your iMac can be used. If the previous owners have an unknown password, you probably need to take it to an authorized Apple dealer to have them wipe the hard drive. You also need to buy a retail version of either Tiger or Leopard, using your friend's discs would be illegal.
    If you know the password, you can either zero out the drive, using the install disc, or use your new OS disc to perform an Erase and Install.

  • MOVED: Overclocking noob needs advice and help

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=124359.0

    Quote from: HU16E on 16-February-09, 13:52:53
    Only work with FSB or RAM first. Don't do both at the same time. It is best to start with FSB first. CPU V. increase is done at point of no post. My P6N's E6600 still uses the stock cooler @ 3.0. Make sure Spread Spectrum is 'Disabled', & System Clock is set to 'Manual". Since your at 2.7 now, guessing FSB is 1200. Raise in small increments until no post, add + one step CPU V. & retest for post.
    To reach 1333 (333X9=3.0) with mine, it took + two CPU V. steps, an increase of NB to 1.275, SB 1.55, & FSB VTT V. 2%. Once stable, I kept my RAM at 800. Not having a copy of your manual, I'm not exactly sure of your bios Cell Menu layout.
    Once you have reached your goal, 3.0-3.2 stable, & want to increase mem. from 667 to 800, set DRAM Clock to 800, use the JEDEC Std. timings of 5 5 5 18, DRAM V's. of 1.95 (Max. 2.1). If stable at JEDEC, you could try tightening the timings to the EPP rating 4 4 4 12 DRAM V's. 2.1. If that works, great. If not, just revert back to the JEDEC Std.
    Great info & advice man. Thanks. I will have questions though because I don't fully understand what all of this means. For instance, what are those values : "an increase of NB to 1.275, SB 1.55, & FSB VTT V. 2%"...?
    As soon as I've installed my Noctua, I'll start working on that OC. I'd love to reach 4.0GHz like Jack...think that's possible? Thanks!

  • Total noob, need help

    I've never scripted Photoshop ever, but I am c# guy during the day, so I know programming
    Ok, here is what I do right now: I place 3 photos into my scanner, scan them into Photoshop CS4 using the File/Import/Scanner menu item.  Then I go to File/Automate/Crop and Straighten Photos to split up the image into 3 photos.  Photoshop creates a tab for each photo.  Then I go to each individual tab and save each picture.  Then start again with the scanning - rinse and repeat.
    This is kind of tedious.  I am looking to automate all or some portion of this task.  For instance, I would love it, if there was a script that responded to the Image Imported from Scanner event (if such a thing even exists), split the photos into 3 using the Crop and Straighten Photos command and saved each photo as a PNG (without getting the stupid dialog box asking me whether I was it interlaced or not).  The routine that saves the photos, would have to look in the directory and name the file in a numeric fashion (e.g. p1.png, p2.png, p3.png, etc...) and not overwrite photos.
    Is such a thing possible?  If so, what are some of the resources I should look at?  Is there something simpler (like maybe a macro recorder), that I am not looking at? 
    Thanks.

    One way of doing it would be to do all the scans and place the files in their own folder (jpg/tif/pdf)
    Then you can run the following script that will create a new folder off the existing one and batch split all the files naming them existingFileName#001.png and put them in the new folder (edited)
    #target Photoshop
    app.bringToFront;
    var inFolder = Folder.selectDialog("Please select folder to process");
    if(inFolder != null){
    var fileList = inFolder.getFiles(/\.(jpg|tif|psd|)$/i);
    var outfolder = new Folder(decodeURI(inFolder) + "/Edited");
    if (outfolder.exists == false) outfolder.create();
    for(var a = 0 ;a < fileList.length; a++){
    if(fileList[a] instanceof File){
    var doc= open(fileList[a]);
    doc.flatten();
    var docname = fileList[a].name.slice(0,-4);
    CropStraighten();
    doc.close(SaveOptions.DONOTSAVECHANGES);
    var count = 1;
    while(app.documents.length){
    var saveFile = new File(decodeURI(outfolder) + "/" + docname +"#"+ zeroPad(count,3) + ".png");
    SavePNG(saveFile);
    activeDocument.close(SaveOptions.DONOTSAVECHANGES) ;
    count++;
    function CropStraighten() {
    function cTID(s) { return app.charIDToTypeID(s); };
    function sTID(s) { return app.stringIDToTypeID(s); };
    executeAction( sTID('CropPhotosAuto0001'), undefined, DialogModes.NO );
    function SavePNG(saveFile){
        pngSaveOptions = new PNGSaveOptions();
        pngSaveOptions.embedColorProfile = true;
        pngSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
        pngSaveOptions.matte = MatteType.NONE;
        pngSaveOptions.quality = 1;
    pngSaveOptions.PNG8 = false; //24 bit PNG
        pngSaveOptions.transparency = true;
    activeDocument.saveAs(saveFile, pngSaveOptions, true, Extension.LOWERCASE);
    function zeroPad(n, s) {
    n = n.toString();
    while (n.length < s) n = '0' + n;
    return n;

  • Total noob Q: Can I run virtual machines on a MacBook Pro ?

    My apologies for entering totally green, folks. My last Apple was the first Mac I bought in university, sold quickly, and preceded by a bunch of ]['s. Sadly, I have been living under a rock for 20 years, and just this year spent $200k at IBM for servers etc in a pro capacity ...
    My problem is that I am not gonna buy one more piece of lame Lenovo garbage ever again, and I need a new notebook.
    The time has come where I am considering the change. I'd enjoy it really, to crawl out of this shell.
    Because I am a total noob, the answer to my question is probably so easy for you folks ...
    I need to keep Windows for now. I need to run Linux. I need to VM a few Novell 6.5 servers as I transition them to SUSE, and I have precisely zero MacOS apps at the moment.
    With this said, does it make sense to consider a fully optioned MacBook Pro to take the place of a highest-end Thinkpad, to do the above (and more), using a Virtual Machine technology ?
    My first months with a Mac would probably be spent in virtual machines as I get with the program, but I really do want to get out of this situation that nobody makes a good PC anymore and the best Wintel box seems to a Mac.
    I want to believe. Please help me.

    check
    http://www.kju-app.org/kju/
    Q is a free virtual machine, and can run windows and linux. You can also install win and linux and have triple boot. For information:
    http://wiki.onmac.net/index.php/TripleBoot_viaBootCamp
    MacBook Pro 2.16,ibook g4 1.33   Mac OS X (10.4.8)   wireless mighty mouse and 1/2 ipod nano black

  • Really need advice/help please

    I am importing VHS movies and I need advice on procedures, I am really stuck so any advice given will be very helpful.
    I have my VCR connected to a ADVC300 analog to digital convertor, which is hooked up to my macbook.
    I am using iMovie 08, but have the previous one installed iMovie HD 6.
    I have no problem importing the footage... it comes in as a DV file (which I believe I need in order to edit footage later on).
    My problem is:
    1) The size of the DV is HUGE. Is this the format that I need to edit to later put on DVD by converting to mp4?
    2) I am a total novice, so is iMovie the best for doing the import? I have Final Cut Express, but I am not sure how to use it.
    3) I also have QT Pro, but after I am done doing an import and transfer the DV file to my back up drive... I cant seem to get the import to pull up in iMovie again. Do you have to do the editing right away after the import or you loose the ability in iMovie?
    4) My HD space on my computer is almost full and I thought that I deleted the DV file off my computer after transfering it to a backup drive. I went into Movies, and iMovies and deleted it... but it must be stored somewhere else, because I have like 60 GB used still?
    Thank you SO MUCH!!!!

    1) The size of the DV is HUGE. Is this the format that I need to edit to later put on DVD by >converting to mp4?
    Yes, DV is huge. You really need an external drive. The hugeness of DV is not an issue for iDVD. iDVD will convert the DV or MP4 into MPEG2 for encoding on the DVD. If you get iMovie 09, you can send DV to iDVD. In iMovie 08, you share as an h.264 file and that goes to iDVD. In my experience, not much difference.
    2) I am a total novice, so is iMovie the best for doing the import? I have Final Cut Express, but I am >not sure how to use it.
    Yes, iMovie 08/9 is the best. You can easily edit in iMovie 08. However if you later want to edit in FCE, you can access these files from FCE. If you import into FCE, iMovie can't see them.
    3) I also have QT Pro, but after I am done doing an import and transfer the DV file to my back up >drive... I cant seem to get the import to pull up in iMovie again. Do you have to do the editing right >away after the import or you loose the ability in iMovie?
    In iMovie, click VIEW/EVENTS BY VOLUME. You should see your external drive in the Event Library list. You can drag your file from your internal drive to the external drive by dragging and dropping the icon for your event onto the icon for the external drive. If you do it this way, iMovie will still see it.
    4) My HD space on my computer is almost full and I thought that I deleted the DV file off my >computer after transfering it to a backup drive. I went into Movies, and iMovies and deleted it... but >it must be stored somewhere else, because I have like 60 GB used still?
    It might be in your trash. Try emptying your trash.

  • Array methods for a total noob-

    Well, not exactly a total noob, I’ve got an old project
    in lingo/shockwave (where I have over 10 years experience) that I
    need to convert to Flash/AS3 (where I have about a week’s
    experience). I’ve got the basic navigation and interface
    elements working but I’m getting stuck trying to extract data
    out of my primary data structure, a two dimensional array. An
    example of the first few lines of the array are attached.
    My first task is to write a function that can return a new
    one dimensional array, brandList, that contains a unique list of
    manufacturers (second element of the sub-array, or tireData[j][2])
    keeping in mind that tireData is not sorted and will contain
    duplicate entries for manufacturers. It seems the filter method
    will be part of my solution but so far I haven’t gotten
    anything to work. Anyone know of a good tutorial on the subject?

    If you want the second element of the array, it is index 1,
    not 2. If you want to sort the results, you can use the
    Array.sort() method. If you want some code that does the
    extraction, study the following, it's one possible approach:

  • Need advice about certification: do J2SE 1.4 or wait for 1.5 to go out?

    I need advice here! I am studing for Java Programmer certification (310-035) and I know now that the certification does not have any expiration date, instead it's version based. So, if I get now a J2SE 1.4 certification, soon it will be outdated... I guess!
    Does anyone know or have any ideia of WHEN java 1.5 sdk will be avaliable, and anyone can tell me how long it will take for a new 1.5 programmer certification be avaliable for general public?

    Do both. 1.5 is far enough away that you do not want to wait for it.
    And besides, 1.5 has enough new stuff in it that you'll want to recertify anyway.

  • Need advice on on a Mac Pro 1,1 Media Center

    I currently have a 2009 Mac Mini running as my home media center, but I recently came by a FREE Mac Pro 1,1 and have decided to repurpose it as my media center so I can migrate my Mac Mini to my bedroom TV where it will live an easy life doing nothing but run Plex Home Theater, Netflix, and EyeTV. This machine falling into my lap was also quite timely because my 4-bay Drobo is running low on available expansion and another Drobo isn't in the budget at the moment.
    This vintage mac pro is running Lion 10.7.5, has 1 old and crusty 500GB hardrive, dual x5160 processors, 4GB RAM (one stick i'm pretty sure is toast judging by the red light and the kernel panics), and the standard NVIDIA GeForce 7300 GT 256MB graphics card. It will be used primarily for the following: network storage for iphoto and itunes libraries, streaming video, Plex Media Server & Plex Home Theater, and Handbrake encoding. I also have a goal of safety of data for my movies, photos and music as this machine will supplement my current Drobo storage.
    My plans are for a 128GB SSD boot drive installed in one of the PCIe slots and then to load up all 4 of the 3.5" drive bays with WD Green hard drives. I have also ordered 4GB of replacement RAM, so upon removal of the faulty unit I will have 7GB.
    Here is where I need advice because I am not very familiar with RAID and the differences between hardware or software raid. Am I better off getting four drives of the same size and setting them up as RAID 5 (I think) using Apple's RAID utility or should I throw in three 1TB drives and then install a fourth 3TB or 4TB drive as a Time Machine backup for the other three?
    Should I upgrade the OSX to the technically unsupported latest version? Or is it not worth the trouble for this application?
    Also, is there any benefit to upgrading the graphics card to the ATI Radeon 5770? Would this yield an improved image quality? I am outputting to a Denon AV Reciever and subsequently to a 100" projection screen, if that makes a difference. I also noticed the 5770 has an HDMI port, wich would be nice, but not necessary since I can use a DVI converter and woud still need to use the optical audio out anyway.
    Much obliged for any input

    My plans are for a 128GB SSD boot drive installed in one of the PCIe slots and then to load up all 4 of the 3.5" drive bays with WD Green hard drives. I have also ordered 4GB of replacement RAM, so upon removal of the faulty unit I will have 7GB.
    PCIe cards that use or support SSD are not bootable until you get to 2008 (and that is limited too).
    Green are not suited for any form of array unless say NAS and WD RED.  Better option would be 3 x 2TB WD Blacks in a mirror, and too many people only use two drives, well 3 is much easier safer and works better. Might want to invest in www.SoftRAID.com product even.
    Best price and quality, got my 1,1 with 8 x 2GB (ideal is 4 or 8 DIMMs)
    2x2GB FBDIMM DDR2 667MHz @ $25
    http://www.amazon.com/BUFFERED-PC2-5300-FB-DIMM-APPLE-Memory/dp/B002ORUUAC/
    With price of 250GB SSD $155 I'd go with that or stick with $89 for 128GB .

  • Can't back-up new iMac with fusion HD.  The back-up proceeds to within 10% of the total storage needed and then the "of" number increases.  I suspect there is a problem with backing up the fusion drive.  We have a new 3 TB time Capsule.  Any ideas?

    Can't back-up new iMac with fusion HD.  The back-up proceeds to within 10% of the total storage needed and then the "of" number increases.  I suspect there is a problem with backing up the fusion drive.  We have a new 3 TB time Capsule.  I tried excluding different parts of the software from the back-up but it didn't make any difference.  I even tried exluding "invisible items" to no avail.  Any ideas?

    When you setup the wireless and ethernet in the computer.. ipv6 will be on automatic.. this is wrong for the latest TC firmware and airport utility. http://support.apple.com/kb/TS4597
    Go to the wireless and ethernet setup in preferences and change ipv6 to link local.
    Once you do the big backup by ethernet the wireless will function fine for incremental.. it is obviously not estimating the size correctly..
    A full back-up on the iMac would be about 650 GB.  The partial updates that I have been trying start out at 115MB and keep growing indefinitely.  The original back-up never finished nor have any of the follow-up attempts.
    The first estimate should be the full backup but it will keep growing as the backup advances.. I would also delete any inprogress files to make sure it is not messing up .. delete even a sparsebundle if there is one for the imac on the TC and start afresh once you have ethernet connection.
    See A10 here.
    Pondini may have some other clues there to give you an idea of why the backup is slow or not finishing.. there is a lot of issues with TM when it decides not to work.

  • Need advice on video software.

    Need advice on video software.
    I currently use adobe elements 3 and have done so for a few years now with no problems. my os is XP and my system is a couple of years old, but we do have a brand new win7 machine in the house.
    I am currently look at Cyberlink PowerDirector 8 Ultra OR Adobe Premiere Elements 8. Reviews for both softwares seem very good BUT, when I dig deeper into user reviews instead of editor reviews do I find problems.
    Major problems with program crashing all over the place, at start up etc, and it is still not getting along with any win7 machine? Major problems with drivers. Honestly, I do not want to have to jump through dozens of hoops to get any software to run. After I pay for it, it should run, period.
    Has anyone else here used both softwares and can you give an honest opinion of each?
    I am also asking these same questions on the cyberlink site.
    I would like to upgrade my video software to take advantage of the new features that are coming out but I really don't want a big headache trying to run one or the other. To be fair, when I bought adobe elements 3 I had also bought pinnacle, which has gathered dust since my first week with it, which is why elements was purchased. That was money wasted and I do not wish to repeat this. I would like to go with Premiere Elements 8 but remain very unsure.

    If your newer machine is Win7 64-bit, it might be worth waiting for SP-1 to be issued, and then hope that 64-bit drivers are fully included. The 64-bit drivers now seem t be an issue at this point, and that will affect any NLE program.
    Also, and regardless of which particular program you choose, optimizing your computer, the OS, the hardware, and the resources management, will go a very long way to insuring success. Few programs can tax a computer, as an NLE can - any NLE. Video and Audio editing will stress your system, like almost nothing else can, except for heavy-duty CAD, or 3D work, though those are usually done only on specialized, optimized computers, designed just for those applications.
    Not the specific advice that you seek, but it's the best that I can do.
    Good luck,
    Hunt

  • I need advice:  I love my apple TV.  But my laptop at home, only has a 750gig hard drive.  Is there a possibility of having all my media on an external hardrive to still connect to the Apple TV?

    I need advice:  I love my apple TV.  But my laptop at home, only has a 750gig hard drive.  Is there a possibility of having all my media on an external hardrive to still connect to the Apple TV?
    Is there like in a hard drive of which iTunes can read the media, which will not require me to add and delete media onto iTunes, because of a lack of space on my laptop?

    just get an ext HD, and point your itunes library to that drive so now you'll just keep all your media on this ext

  • JMS to Synchronous Web Service Scenario (Need Advice to use BPM or Not)

    Hi Experts,
    We have a scenario where we fetch data from JMS Sender and Send it to MDM Webservices.
    We want to have the files processed in such a way that until we get a response from webservice back that it was sucessful ,then only we need to process the next file.
    We would need advice as can we use BPM for this.
    We are thinking of having BPM like this:
    RecieveStep(Asyn)-SynchronousSend Step(with wait)-Stop
    The problem with this is when processing huge files the processing time of the Queue is taking very long and sometimes we are getting SYSFAIL.
    Please would anyone advice as how can we approach this scenario either using BPM or without.
    Also Can we use multiple queues or multpile instances concept for this scenario.
    Please Advice.
    Thanks in Advance
    Regards
    J

    Hi Prateek,
    Thank you very much for your quick reply.
    The response from Webservice does not need to be sent anywhere.
    We just want that after recieving the response back from webservice(SOAP) then only we need to process the next file.
    Can we control something from Sender JMS adapter side as well as it is picking up all the files and all files wait at BPE until each one gets processed.
    Is this possible without BPM or with BPM.
    Please advice as what wud be possible steps inorder to achive it through BPM or Without BPM.
    Thanks and Regards,
    J

  • Major Issues with installing 4tb internal. Really need advice please

    In the process of a long needed upgrade to my 2010 Mac Pro Quad core 2.8 and have run into a serious headache that I really need advice on so I can get back to work. I've already spent 2 days dealing with all of this...
    Just did a new SSD install and Migration which went fine but I'm also updating the rest of the internal drives. My main (non boot) drive was being upgraded from a Seagate Barracuda 3tb to a 4th Deskstar NAS (it was showing as compatible with my desktop, see links below). My 3tb ran fine for years but now due to it being heavily used I want to switch to a new drive and I can also use a bit more space.
    The issue I'm running into is that initially on boot, my system was telling me it couldn't recognize the disk and it wasn't even showing up in Disk Utility. I had to purchase a SATA USB 3 kit to attach it as an external to get it to show which worked without problem. With the USB kit I was then able to partition it (GUID, Mac OS extended journaled) and format it properly. After reinserting the drive into my tower as an internal it failed to show again. After a few attempts of restarts and trying various bays it popped up but showed as a non formatted drive and I was told again that the system didn't recognise it. I was then given the option to initialise and was then actually able to then format and partition it though Disk Utility while it was installed as an internal.
    Figured that was problem solved but when I went to check the drive and getting ready to transfer files over I noticed that Disk Utility was only allowing the First Aid and Partition options but not Erase, RAID, Restore which I'd never seen before. I then also noticed that none of the drive connection info was in the same format nor will it even provide drive bay info, connection info or read/write status (See screen shots). This is what I can't figure out and really need to clarify before I put full trust into using this drive.
    Any info would be greatly appreciated...
    Deskstar 4tb internal info which is installed in Bay 2
    3tb Seagate which I trying to retire and transfer from.
    Here are the weblinks to the Deskstar 4tb drive and the compatibility list but I support isn't allowing me to add direct links so add the www. before hand.
    (Drive - eshop.macsales.com/item/HGST/0S03664/) (compatibility list - eshop.macsales.com/Descriptions/specs/Framework.cfm?page=macpromid2010.html).

    What OSX version?
    Disk Utility in later versions of ML and I think Mavericks have problems formatting with 4 TB internal drives.
    http://forums.macrumors.com/showthread.php?t=1661024
    http://apple.stackexchange.com/questions/112266/why-doesnt-my-mac-pro-see-my-new -4tb-sata-drive

  • I'm desperately needing advice to a common question.  I use Quicken and love it.  But the Mac version is not as great as the PC.   Has anyone installed it by segmenting their Mac with Parallels or Fusion or Boot camp.  If so, which one do you recommend.

    I'm desperately needing advice.  New Mac.   Used Quicken on my PC.  Researched all software for Financial programs and Quicken is still the most recommended.   I want to use Quicken on my Mac.  The Mac version is not highly rated so I would need to partition my Mac.   Has anyone done this for their quicken program and if so, which partitioning program did you use - Parallels, Fusion ware or Boot camp?
    Thx

    Lisa Ellies-Laye wrote:
    Thanks.  Hadn't heard of it. ?  Is there any concern installing this free program on my Mac.    Have you used it?  Apart from being free is there any other advantage of Parallels and VMfusion. ?
    Virtual Box is safe and well developed, it offers similar or identical features to the paid competition, it may be a little less polished but that's all.
    Download and try it out, nothing to lose (except time).

Maybe you are looking for