Need advice on what may be a BASIC question....?

Hi people....
I wonder if anyone could advise me?
I'm a working producer/programmer/fixer based in the UK but doing a lot of work in continental Europe, so my main computer is a PowerBook G4 running Logic. I need more power from my system, but I need it to be portable. So what do I go for?
A quad G5 would be like going from a beaten-up Ford to a Ferrari. But VERY inconvenient to carry on a Eurostar train along with a bag of interfaces + cables and a suitcase!
Here's my idea.....
I get a quad G5 and get it all running nice and happy here in London
I use something like Silverlining to create a bootable clone of the G5 on a portable drive
I take that abroad and use a rented computer, and boot up from this clone drive
Would this work?
Cheers
Matthew Vaughan

If yuo have stuff on iLok, you should be fine, but if
your 3rd party plugs are disk-authorized, they
may not work.
Thanks.....
....but if my plugs are disk-authorised, and I'm booting from a portable hard drive, then that would be the system drive. So the system should look at this drive to find the authorisations.....yes?
Like I said, the problem is, I work a lot in London, and in Paris, sometimes in other places too. I might be able to afford one G5, but it's obviously not portable enough to carry between jobs. Until I thought of this I thought I'd have to buy 2 systems and leave one in Paris....
....not actually BEING Bill Gates, I quickly rejected this solution on terms of cost....!
Cheers
Matthew Vaughan
PowerBook G4   Mac OS X (10.4.2)  

Similar Messages

  • I am not a knowledgeable user - have what may be a stupid question!  I just purchased a TV show series on iTunes and downloaded all episodes for the season.  But I believe i want them on my iCloud instead of my laptop.  How do I transfer them or dupl

    I am not a knowledgeable user - have what may be a stupid question!  I just purchased a TV show series on iTunes and downloaded all episodes for the season.  But I believe i want them on my iCloud instead of my laptop.  How do I transfer them to the Cloud or duplicate on the iCloud?

    You can't transfer any purchase to the cloud yourself, whether a TV programme/series will show in the cloud for redownloading in the future depends upon what country that you are in (TV programmes can't be redownloaded in all countries), whether you move countries (you can't redownload purchases made in another country) and if the rights-holder keeps them in the store (they occasionally remove their items).
    As you bought it on your laptop then you could turn Settings > iTunes & App Store > Videos (under 'show all') 'on' on your iPad and it might show in the Videos app on it with a cloud icon against it for streaming/redownloading (it might also show in the Purchased tab in the iTunes Store app for refownloading whether or not you turn that 'on') - but that depends upon your country and only whilst it remains in your country's store. Similarly if you delete it from your laptop and tick the 'show iTunes in the cloud purchases' tick box on the Store tab in Edit > Preferences it might show in the TV Shows part of your library for redownloading (and whether or not you tick that it might show in the Purchased link under Quick Links on the right-hand side of the iTunes store homepage for redownloading).
    But you should be taking a backup copy of it, and anything else that you download from the stores, there is no guarantee that you will be able to redownload any item.

  • Hello friends, need advice on what PREPAID broadband (USB TYPE)(compatible) to use... I'm from the Phils, i use macbookpro macosxLION 10.7.2

    need advice/help

    my mbp (Leopard) used to work w prepaid wireless broadband (usb type) here in the phils... but when i upgraded my osx to LION... it dsnt any more... ds any1 have sol'n w this?

  • Need advice on what component(s) to use

    I'm trying to put together a UI that displays a background image and displays on top of that image several jpanels, jlabels, and icon type images . I'd like the user to be able to drag the panels etc. to a desired location.
    I'll then need to grab the coordinates and store them to a file, so that I can rebuild the UI with the components in the same place that they were placed when restarting the application
    Wow that was hard to put into words.
    The idea is the image will be a layout and the panels will be the physical position of a data source. A bit like in home automation programs that shows a layout of the house with the locations of cameras and switches etc.
    So I'm thinking JInternalFrames may work but I need something that is transparent.
    Any advice or a push in the right direction before I dive in will be greatly appreciated.
    Edited by: xavier33 on Feb 22, 2008 4:08 PM

    panels would work equally as well, but you're still going to have the same problem (from your first post)
    "I'm trying to put together a UI that displays a background image and displays on top of that image several jpanels, jlabels, and icon type images ."
    if any of the add-ons has a listener, you'll have to pass on the event to the panel.
    this might be close enough - a small area at the top, when the cursor changes you can drag the panel around
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Testing
      int xPos, yPos;
      Cursor normalCursor = new Cursor(Cursor.DEFAULT_CURSOR);
      Cursor moveCursor = new Cursor(Cursor.MOVE_CURSOR);
      public void buildGUI()
        ImageBackgroundPanel backgroundImage = new ImageBackgroundPanel("test.gif");
        backgroundImage.setLayout(null);
        final JPanel viewPanel = new JPanel(new BorderLayout());
        viewPanel.setOpaque(false);
        viewPanel.setBounds(0,0,100,100);
        final JPanel p = new JPanel();
        p.setOpaque(false);
        p.setPreferredSize(new Dimension(viewPanel.getWidth(),10));
        viewPanel.add(p,BorderLayout.NORTH);
        viewPanel.setBorder(BorderFactory.createLineBorder(Color.BLACK));//<---just so you can see it moving
        backgroundImage.add(viewPanel);
        JFrame f = new JFrame();
        f.getContentPane().add(backgroundImage);
        f.setSize(600,400);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
        p.addMouseListener(new MouseAdapter(){
          public void mousePressed(MouseEvent me){
            xPos = me.getX();
            yPos = me.getY();
          public void mouseEntered(MouseEvent me){
            p.setCursor(moveCursor);
          public void mouseExited(MouseEvent me){
            p.setCursor(normalCursor);
        p.addMouseMotionListener(new MouseMotionAdapter(){
          public void mouseDragged(MouseEvent me){
            Point vp_p = viewPanel.getLocation();
            Point me_p = me.getPoint();
            viewPanel.setLocation(vp_p.x + me_p.x - xPos,vp_p.y + me_p.y - yPos);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    class ImageBackgroundPanel extends JPanel
      Image img;
      public ImageBackgroundPanel(String file)
        try
          img = javax.imageio.ImageIO.read(new java.net.URL(getClass().getResource(file), file));
        catch(Exception e){}//handled in paintComponent
      public void paintComponent(Graphics g)
        super.paintComponent(g);
        if(img != null) g.drawImage(img, 0,0,this.getWidth(),this.getHeight(),this);
    }

  • Need advice on what kind of report, queries to tune database slow issues

    Currently we have AWR reports. Our system is 11.1.07 version on AIX/Linux.
    Sometimes application will say it is slow running some queries.
    We have firewalls implemented so we cannot use toad, or other tools to access through our workstation.
    Any good manual suggestions to pinpoint what exact wrong in the system?
    Any good suggestions?
    Thanks in advance.

    846422 wrote:
    Any good suggestions?
    Try to forget for a moment the nice GUI tools and read instead what experts do when trying to answer "Why my database is slow ?" in http://www.nocoug.org/Journal/NoCOUG_Journal_201105.pdf.
    In your case I would try to work with end users to identify application scenarios that are slow and use SQL trace/TKPROF on related database sessions. For this you only need command line interface (CLI) access to run SQL statements and access to machine hosting database server: that should be possible with the jump server otherwise you cannot do anything and you would better ask someone that has CLI access to database and database server machine.
    If you have license to use AWR, you can also use ADDM report which runs an automatic analysis of AWR report and give some advices:
    SQL> @?/rdbms/admin/addmrptEdited by: P. Forstmann on 22 juil. 2011 20:15
    Edited by: P. Forstmann on 22 juil. 2011 20:40

  • We need advice on what cloud service is the best option for us

    Hello,
    I work for a very small company, we have two designer. Both of the designers just go new computers and we are looking at switching to the cloud but are confused about what the best plan is for us. We mainly need the creative suites softwares but we occasionally both work with a few production suite programs as well. Again, it is only the two computers and we do not see a need to add anther computer within the new few years. What is the best option for us?

    Team license links that may help
    -http://www.adobe.com/creativecloud/buy/business.html
    -manage your team account http://forums.adobe.com/thread/1460939?tstart=0

  • I am needing advice with what photo editing program to begin with

    I need some starting point with all your programs that I can buy one to start with and learn on.  What would you suggest.  I'm am wanting to learn so bad!! How to edit my pictures, play with them and things like that.  Then as I learn I can step up and graduate to a harder one but I need the learning basics first.  Please help me!!!

      Download the trial of Photoshop elements 10 and use it free for 30 days. You can start off using the Auto buttons to improve your photos and then use the quick edit and guided edit sections. The Full editor can be used as you get more advanced knowledge of all the tools.
    Use the link below.
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en_us
    There are also lots of video tutorials at adobe TV
    http://tv.adobe.com/watch/learn-photoshop-elements-10/what-is-adobe-photoshop-elements/

  • How do I set up a wirelss music system with a MacBook Pro? Need advice on what to use: Bluetooth or AirPort. I don't have speakers yet. I listen mostly to classical music. Any advice on what kind of speakers?

    I live in a small apartment and would like speakers in the bedroom and the living room. I like the "all-in-one" units. Would two of these sound better than one in the living room? I have a wireless modem from my phone company, but I have not hooked it up yet. What is AirPort and is it necessary to do what I want to do?

    If your goal is to have a "whole home" audio experience, then using separate speakers in both the living room and bedroom would the proper approach.
    If you decide to go the AirPort Express Base Station (AX) route, then you would need a minimum of two of these devices; one each for each room. The AX is a wireless Internet router with built-in audio. The AX's audio port supports both analog and digital optical audio output and will work with either self-powered speakers or an audio receiver that supports either connection type.
    Classical music has very fine dynamics and, of course, the better the speaker, the better the sound reproduction. However, you don't need to go overboard as the AX is limited to the audio files that iTunes can play.

  • Need advice on what to look for when buying an external HD

    Hello iBook enthusiasts,
    I want to buy an external HD for backing up my important documents, and for having a way of booting up just in case the iBook should fail. I have searched some of the old posts, but I am still a bit confused.
    So far, it seems that the most important criterion is that the drive have FireWire in order to be bootable.
    I don't want to spend a ton of money. Somehow, I get these emails from Buy.com, advertising their specials. For example, they had a 250G one for $100 (although that particular deal is now expired). This seems like a good deal to me. Is that right? Should I try to buy the largest or smallest one that's in my price range? If iBook does die, I would like to still be able to use the HD with whatever replacement I get.
    Also, is there any particular brand that I should either look for or avoid? How do I know these things?
    Anyway, sorry these questions are so vague. Thanks in advance for any advice.
    Anna
    Ibook G3 500 MHz   Mac OS X (10.3.9)   14 GB HD, 640 MB RAM

    Anna:
    Yes, rule no. 1, Firewire or FW/USB
    2. Largest HDD you can afford (having more space than you need it not a problem; needing more space than you have, is.)
    3. 7200 rpms. (Most of them are, but not all)
    Here is a list of some of the best buys already sorted for 200-300 GB.
    Different folks like different manufacturers. I have had my LaCie for 2 years. No problems. I like it for it's compact size and elegance.
    Here are some good hints from Dr. Smoke on Backup and Recovery. Instead of Retropect, which I could never quite figure out, I use Carbon Copy Cloner or SuperDuper.
    Post back with further questions or comments.
    Good luck.
    cornelius
    Message was edited by: cornelius

  • Need advice on what to purchase:FCE,iMovie09,Soundtrack,Garageband.

    Deciding best purchases.I am attracted to moving up, seeking a better visual experience for editing. Looking at Final Cut express, Soundtrack, Garageband, ilife09 with iMovie09. The more I read the more confusing it is. I am often lining up educational audio to video for hiqual pro product (voiceover mixed with 1 track of music-usually only 2 track audio). I am experienced somewhat in Audacity. I might need noise clean later. With multi versions out there and changes to stuff (this dropped this added) what should I do. This all started because I was told I should/could be using garageband instead of Audacity and then importing my iMovie06 into it. But then I can't export it back as project tro iMovie06 I think. I was told move up to iMovie09 since FCE is too complicated for now. But it appears FCE allows visual tie in of audio and video but then I don't know what version of FCE to get (Soundtrack was dropped form latest version FCE). Do I still need to use garageband with FCE for audio editing?

    +" ... Do I still need to use garageband with FCE for audio editing? ..."+
    It depends on what you need to do. Audio can be edited in FCE, which includes a good set of audio filters & effects. I've done some pretty extensive audio editing in FCE and even when I did have SoundTrack I never used it. If you're adding voiceovers or additional audio tracks then I'd say FCE can do what you need and you don't need an external audio editor. (Except perhaps for sound cleaning, for which I suggest SoundSoap.)
    Overall, I'd suggest spelling out exactly what kind of video & audio editing you think you need or want to do. Then with those requirements you can figure out which software is best suited to your needs.

  • I am an Entrepenuer as well as Business Manager related to Residential Developer and Construction, I am considering in buying a MacBook Pro 13" or an Ipad. I need advice on What should I get appropriate to my type of business?

    Don't know What is best for my type of business?

    The advice I give is one writes documents on a Mac while one reads documents and writes short notes on an iPad.  The iPad is great for surfing the net and is more portable but will not do heavier tasks as well as a Mac such as creating and editing documents, spreadsheets, and presentations.  The data you create is more secure on a Mac; it has better storage and backup features.  So for a read-mostly device the iPad work great but if you get into creating and editing documents then the iPad can fall short.
    For a portable Mac consider a 3 lb. 13” MacBook Air or a 3.5 lb 13” Retina MacBook Pro.  For your applications they have similar capabilities and similar portability.  The non-Retina MacBook Pro weighs a lot more (4.5 lbs).

  • Need advice on what do with new motherboard :(

    Back in January I ordered a P67-GD53 MSI motherboard from this company - www.ncix.com
    I installed the motherboard and drivers, things were working fine, until I noticed windows 7 would not boot up
    sometimes, It would hang at the welcome screen. The problem kept getting worse, until I could not boot up at all.
    i took my tower into a company called "Microbytes" which did a diagnosis. They said the "hard drive controller" on the motherboard was defective.
    Should I RMA the store I bought the motherboard from, or directly from MSI ??
    AND I realize the motherboard I bought is defective - the SATA 3Gbs port will be replaced by Intel eventually. If I RMA this motherboard now,
    does that mean I'll just end up getting a new defective motherboard ??
    Thanks for the advice....this is my first MSI motherboard, and it will be my last. I've never had these issues with Evga or Asus.  :(

    Quote
    this is my first MSI motherboard, and it will be my last. I've never had these issues with Evga or Asus.
    Keep such useless comments to yourself.  EVGA and ASUS have RMA departmens, too.  Also, how can you be sure that the board wasn't damaged during handling/shipping or because of electrical problems (statical surge)?
    Quote
    i took my tower into a company called "Microbytes" which did a diagnosis. They said the "hard drive controller" on the motherboard was defective.
    Based on what testing methods did they come to this diagnosis?
    Quote
    I installed the motherboard and drivers, things were working fine, until I noticed windows 7 would not boot up
    Did you put one a fresh installation of Windows 7?  Or did you take an old installation from another system?
    Quote
    It would hang at the welcome screen. The problem kept getting worse, until I could not boot up at all.
    "Not boot up at all" means what? Where did the system hang? Any error messages?
    What BIOS/EUFI Version are you using and what else is in your system?  Please provide full system specifications! ---> >>Posting Guide<<

  • Need advice on what should i study now

    Hi, i already graduated in SC here in my country, Brazil. Its not the best university, but its top 10 and its free.
    I have already read the deitel java how to program book, i have alread passed the SCJP exam, and now i started to read the book "Program Development in Java - Abstraction Specification and Object-Oriented Design - Barbara Liskov".
    I do not have any knowledge about JSP and servlets, just the basics really.
    I want know from you, experience programmers, what i should learn from now?

    I know they give you a score,
    but either you have the certification or youdon't,
    you never have to tell anyone what your score was.
    Just write SCJP on your resume and move on.What do you know about that? Well I have a SCJP and I had interviews after getting it, and I never was asked my score. Beyond that I don't know much about it other than a certification is a certification. One is not more certified than someone else just by getting a higher score.
    It must be quite unusual
    that a recent CS graduate sports a SCJP on the
    resume. It will raise eyebrows for sure. I don't have the stats to say either way how unusual it is.
    I'd make
    sure I had a top score well over the average of my
    peers before a put SCJP on my resume.Great, that's your decision. I wouldn't worry about it myself. As many have said before the SCJP doesn't prove your a good programmer. All it really does is prove you have a basic understanding of the syntax. Once you've proved that by passing the exam, move on.
    I agree with everything you're saying UJ, except for the score on the SCJP part. I don't view it as anything more than one has the certification or one doesn't. That's all.

  • Need advice on what antivirus/security measures are recommended for Macs

    Between us my husband and I have a MacBook Pro and a MacBook Air.
    I'm looking for guidance on what might or might not be useful, beyond what is standard on a Mac, to protect against viruses and improve security on our system.
    Thanks in advance!

    Linc Davis wrote:
    (1) Don't install any commercial anti-virus software. It's all useless garbage.
    Not true, at least if you email or send files to Windows users. It won't do you much good if your Mac isn't compromised but theirs is by something you pass along to them. Any info about you on their computers is put at risk of exploitation. We live in a connected world, & like it or not we are all in this together.
    (2) Use your administrator account (the first one you created) only for administrative tasks such as installing software.
    This offers reasonable protection but some malware is potentially capable of exploiting unpatched vulnerabilities that allow privileges to be escalated to admin or even root level without a user's knowledge. And even if an exploit is confined to the domain of a regular user account it can still do damage or compromise information.
    NEVER enter your administrator password when prompted to do so by an application UNLESS it's a built-in application, such as the Installer.
    That would preclude the use of a great deal of commercial software that doesn't use Apple's Installer.app, including most Adobe products.
    NEVER install any third-party software except by drag-and-drop into your Applications folder, or by download from the App Store.
    Same as above: not everything users want or need uses Apple's installer or can be installed by a simple drag & drop. And obviously, if the system is already infected all bets are off: you can no longer trust Installer.app to be what it says it is.
    NEVER run any program you receive as an unsolicited email attachment, even if you know and trust the apparent sender.
    This does not apply only to attachments containing executable code, or even just to email. Apple has provided security updates to patch vulnerabilities that can be exploited just by clicking on links to maliciously formed web pages. This kind of attack is becoming more popular, in part because browsers send info about the client computer to the server that can be used to tailor the attack to the specific vulnerabilities of the platform, & in part because browsers increasingly rely on executing scripts & other instructions provided by web pages to render them.

  • Need advice on what external hard drive to purchase-

    hello everyone-
    i couldn't find a similar topic so i thought i'd post this.
    i'm looking to buy a hard drive to support my laptop but as usual trying to buy something can be quite a fuss with all the choices and reviews.
    anyway, i'm assuming that Lacie is a good option for the Mac.
    can anyone recommend any other brand? i've read both amazing and nightmarish things about the brand.
    also, how good is Firewire 800? i thought it would be good to get something that hosted this option since my laptop can support that speed.
    any help would be greatly appreciated.

    If you don't need the portability of having the data remotely with you, I'd suggest you get an external firewire drive (you'll want FW if you want to boot from an external drive). Further, I'd recommend you assemble your own. Here are some considerations using a 320gb drive as an example:
    A Western Digital 320 gb external enclosure (USB/FW) goes for around $200. However, all have one year warranties.
    Assemble your own, requires the hard drive and case: A 320 gb Western Digital, with a 3 year warranty, 7200 rpm ultra ATA interface, cost for the drive around $106. I prefer Western Digital drives over Seagate drives, as I've found them to run cooler.
    Add a Rosewill RX30 external case (includes power supply and USB/FW 400) $60. This brushed aluminum case looks like it was made to sit right next to our PB's (I've got one). You can see it at their web site at http://www.rosewill.com/product/product.aspx?productId=80. So for $166, you can have a 320gb hard drive with a 3 to 5 year warranty, and a stunning case. If you want, the Rosewill case also comes with FW800 for another $35.
    Assembling it is very easy - you can read the directions on Rosewill's site at http://www.rosewill.com/RosewillSoftware/RX30_eng.pdf , for example. You disassemble the case by taking out 4 screws on the bottom of the Rosewill case, plug the included plug into the hard drive, secure the hard drive with 4 screws to the case, and reassemble it.
    I used a 320GB drive as an example....a 160gb drive is a little less expensive. Once you start gathering video and sound files, they gobble up space quickly. If you start out larger than you think you'll need, you'll have space for growth, and if you choose, multiple levels of system backup.
    And I would recommend FW800, to get maximum transfer speed.

Maybe you are looking for

  • Dynamic Hierarchy - SAP BPC 7.5 MS

    Hello everyone. I am running SAP BPC 7.5 on the Microsoft Platform. The issue I am running into is that I have children entities that have two parent entities. The Entity Dimension has our traditional organization chart. However, our reports require

  • Problem connecting Skype to go to Hong Kong

    Im using a New York number 646 and tried to change it to a diffent area code to 718 and still the problem exist where I don't hear anything. And on their side they will hear the phone ringing and when being picked up they can't hear me.

  • GIF comes out strangely pixelated with noise, never seen this before!

    Everytime I export my animated GIF in flash it comes out in this weird pixelated way. Instead of everything being normally pixelated where they are just not as sharp, they come out with what looks like noise speckles all over them. The kind of noise

  • Channel Started but inactive

    hi all - i have 2 scenarios - idoc to file which works fine without any problem in the other scenario - file to file i get this message in the communication channel monitoring for the file sender which says "Channel started but inactive". I checked t

  • Hide All Toolbars?

    There are times when one wants to temporarily hide all toolbars and secondary menu bars (and maybe even auto-enlarge the open window to full screen size, except for the primary Apple menu bar), in order to view the window contents at larger size or t