Help needed with the installing from a USB drive

Hi, My HD failed and will not boot on my A665-3DV. I was able to retrieve all the data from both the partitions to another computer. I copied the data from the HDDRecovery partition to the USB flash drive. How do I use that data to install to a new HD?
Please help. Thanks!

It's not really hidden. You can connect the hard drive to an external device like coolmax (Coolmax CD-350-COMBO USB to IDE/SATA Device Adapter) which plugs in to a USB port on any PC. You can view the contents in explorer just as any other external HD.
Of course it took me a while to make the HD work (I beat the S**T out of it on the sides every time it didn't work). It took me a few days to get all the content out of it. It still would not work if I plugged it back into the laptop. 
I made my flash drive bootable (http://www.ehow.com/how_5215265_make-bootable-flash-drive.html) 
Copied the contents of the HDDRecovery partition to the flash drive and I was good to go.
Hope that helps!!

Similar Messages

  • HELP needed with the MSI Mega PC 651 !!!

    Hi there,
    It seemes to me the previous thread concerning the MEGA PC is no longer visited... and besides that, I need help.
    I have a problem getting to install a HD in the machine.
    I tried a 200 GB HD, which gives me an error when I try to load windows... immediately after the first restart in Windows Setup, I get a "Disk error. Press Ctrl+Alt+Del to restart"
    I tried a smaller HD (120 GB), thinking there might be something to do with the 137 GB Windows limitation... I get the same error.
    And then I try a 4.3 GB HD (an old one), and it works perfectly!
    I'm at my wits' end... can someone please tell me how to fix this, before I go crazy?

    Yes... as long as the boot partition is smaller than 32 GB, the computer is happy.
    BTW, Stu, I'm using a Mobile Celeron, and it works perfectly, with zero modifications... Stock speed is 1.8, but I keep the FSB at 133, so it's running at 2.4 GHz now...

  • Help needed with moving mail from SuSE to X Server

    I just bought a Mac Mini (used) and OSX Server 10.4. I installed the software, setup my mailserver and can send and receive. I shutdown the OSX mailserver, copied my /var/spool/imap/user/tom from my SuSE Linux server to my OSX server (both are running cyrus), chown cyrusimap:mail on all the files, then ran reconstruct via the server admin. While the emails showed up on my email client, they didn't show up correctly nor could I see what was inside them.
    What did I do wrong? I'm sure a lot of things.
    I had my office mailserver crash a couple months ago and moved my backup to my new SuSE server and got everything working, but I can't remember how I did it....panic modes cause memory loss.
    Can anyone suggest a way to move email over?
    Additionally, after I moved the email over, I wasn't able to get into Squirrelmail, but was able to access the mailbox via mail client. Squirrelmail reported wrong user or password.
    Thanks,
    Tom

    If I understood correctly, you only moved the spool/partition, but not the cyrus database.
    Chances are your imap/cyrus configuration was different on the SUSE box. Thinks like BerkeleyDB vs. Skipstamp etc.
    A few assumptions:
    -You didn't move over imapd.conf and cyrus.conf (which is best not to)
    -You created a mail enabled user on the Tiger box with the first shortname being tom
    If my assumptions are correct, then the first thing I would try is a complete reconstruction, not just re-indexing. The simplest way, would be to download mailbfr, install it and issue:
    mailbfr -o
    mailbfr -f
    mailbfr is available here: http://osx.topicdesk.com/content/category/4/17/80/
    Just fyi, you will loose your read flags.
    Alternatively, keep the SUSE box running and use an IMAP client or script to copy mail over to the Tiger Server.
    HTH,
    Alex

  • Help needed with the script

    Hi all, I am a novice in scripting...
    Could someone help me writing script for the following....
    Assume that there are 5 folders
    1 /etl/dev/work/wellness/enrl_rej/records
    2 /etl/dev/work/wellness/enrl_rej/metadata
    3 /etl/dev/work/wellness/enrl_rej/header
    4 /etl/dev/work/wellness/enrl_rej/hdrrej
    5 /etl/dev/work/wellness/enrl_rej/fields
    need to check if there is a file created in any of the above five locations,
    If the file Exists in Location 1 then
    send message with Subject 'process complete and attached are the rejected records' with the file in that folder as attachemt
    if file exists in Location 2 then
    send message with Subject 'Metadata Mismatch no of fields in detail didn't match' With the file in that folder as attachment
    If file exists in 3 then
    send message with Subject 'Problem with header file - File Rejected' With the file in that folder as attachment
    If file exists in 4 then
    Send message with subject 'the Percentage of rejects more than 3 percent File rejected' With the file in that folder as attachment
    If file exists in 5 then
    Send message with subject 'The header and detail count didn't match File rejected' With the file in that folder as attachment
    Thanks in advance !!!

    Hi,
    Assumptions :-
    uuencode command exits
    mailx command exits
    File name is "vas.txt".
    Mail id is "[email protected]"
    # START OF SCRIPT
    #!/bin/ksh
    vasFileName="$1"
    vasRecordsDirFile=/etl/dev/work/wellness/enrl_rej/records/${vasFileName}
    vasMetatdataDirFile=/etl/dev/work/wellness/enrl_rej/metadata/${vasFileName}
    vasHeaderDirFile=/etl/dev/work/wellness/enrl_rej/header/${vasFileName}
    vasHeaderRejDirFile=/etl/dev/work/wellness/enrl_rej/hdrrej/${vasFileName}
    vasFieldsDirFile=/etl/dev/work/wellness/enrl_rej/fields/${vasFileName}
    if [[ -e ${vasRecordsDirFile} ]]
    then
    uuencode ${vasRecordsDirFile} ${vasRecordsDirFile} | mailx -s "process complete and attached are the rejected records" [email protected]
    elif [[ -e ${vasMetatdataDirFile} ]]
    then
    uuencode ${vasMetatdataDirFile} ${vasMetatdataDirFile} | mailx -s "Metadata Mismatch no of fields in detail didn't match" [email protected]
    elif [[ -e ${vasHeaderDirFile} ]]
    then
    uuencode ${vasHeaderDirFile} ${vasHeaderDirFile} | mailx -s "Problem with header file - File Rejected" [email protected]
    elif [[ -e ${vasHeaderRejDirFile} ]]
    then
    uuencode ${vasHeaderRejDirFile} ${vasHeaderRejDirFile} | mailx -s "the Percentage of rejects more than 3 percent File rejected" [email protected]
    elif [[ -e ${vasFieldsDirFile} ]]
    then
    uuencode ${vasFieldsDirFile} ${vasFieldsDirFile} | mailx -s "The header and detail count didn't match File rejected" [email protected]
    else
    echo "File doesn't exist in any of the directories mentioned."
    fi
    # END
    Vijay Bheemineni.

  • Hi all **help needed with the  SMO (Web Based Ordering Portal) integration

    Hi SD experts
    Could someone please explain me the concept of integrating SMO (Web Based Ordering Portal) integration.
    Thankyou very much
    Bj

    ...I earnestly urge the Oracle gurus to help me with my issueWell most of the 'gurus' on this forum are not Oracle employees and can't really help to resolve this. We can only offer suggestions. There's no link from this forum to an Oracle manager. The only direct contact to Oracle is through creating an SR -- and that's generally for issues specifically with certification rather than with OE training.
    That said, I used to work for Oracle. If there is any time not to have high expectations for customer service it's in December. The vast majority of employees take a significant percentage of their annual vacation that month. If I were to hazard a guess at what caused at least some of your issues, I'd say you got at least somewhat caught up in that.They also do a lot of system maintenance in December. I didn't work for OE but rather for Support, but I'd suspect they are similar. Towards the end of December, the place resembled a ghost town.
    I haven't used OE's online interface to order training. I just tried it a minute ago (up to the point where I was going to start committing to things I don't want, anyway) and I don't see how this much confusion can be generated. Since you indicated they used your credit card information for payment, I don't grasp why they would have any reason to talk to the company you are currently contracting for.
    Regardless of how it happened, Brandye (the moderator and an Oracle employee) might be able to suggest something specific. My own suggestion would be to grit your teeth and order again (the interface appears to be up). Provide only contact numbers/addresses to you and put 'Independent Contractor' down as the company. They really want to sell you the training. I'm confident that you'll be able to... eventually.

  • Begginers help needed with the beachball

    Hi everyone , I'm new here because for the last 2.5 years I haven't had a problem with my imac but the last couple of months its been driving me crazy. I probably see the beachball 20+ times a day.
    I don't have a lot of programmes running but i enter competitions and have a lot of windows open at the same time - 1 of the reasons I chose the imac.
    Can anyone help me work out what's wrong with it please and find out if I can fix it - Im afraid I am totally rubbish at computer talk though but if anyone is willing to try and help I shall do my best to keep up.
    Many Thanks.

    When you have the problem, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Help needed with the nokia 7373

    hi, can anyone help me with changing the colour of the font when the phone is in the idle state and what does it change exactly on the front of the screen ? manythanks.

    Menu/Settings/Display/Standby mode font colour

  • Desperate Help needed with the 4Hi 8x16x48x

    Hi all,
    that my first post. I was wondering if any of you guys could help.I've got a 48*16*48*. I've used it for a couple of times but now it doesn't seem to work, it takes ages to read and sometimes it doesn't detect the Cd.Is something wrong with the writer itself or the nero software?can anyone of you help? ?(  ?(  ;(
    thanks
    kaz

    The CDRW is faulty. Try to claim warranty if the drive is new.

  • Help needed with flash install

    I have uninstalled flash and am attempting a fresh install but I can not get flash to download beyond 30%.  I am on a mac

    start with the button that causes the text to be displayed.  find what it does (which may not be easy because most templates are coded by novice or intermediate level coders) and follow that trail to the text.  (note:  the text may be in a txt or xml file that's loaded.)
    to have a button release open a file, use:
    yourbtn.onRelease=function(){
    getURL("http://www.adobe.com");

  • Help needed with the Apple firewall.

    Back before I upgraded to Leopard when I set the firewall to stealth and then had grc.com scan my iMac G5 - well it was invisible according to grc. Fully stealthed. Now when I do the same thing it shows that ports 135-139, 445 and 593 are slealthed, and 548 is OPEN! Everything else is just closed. It tells me that it not only receives pings, but it also ANSWERS them.
    I've tried changing the settings on the firewall then restarting the computer but that makes no difference to grc. I sent com.apple.alf.plist to the trash but that made no difference either. I even tried using Brickhouse and Noobroof with no help, which is understandable since they are just new front ends for the Apple firewall.
    I have Pacifist, so I guess I could just reinstall the firewall files but I don't know what to install.
    This bird is not sleeping it's DEAD! It just feels broken since nothing I do changes it's functioning.
    Can anyone suggest a way out of this mess. Right now I'm feeling very exposed and I'd love to have my old firewall back.
    Message was edited by: Harold Fink

    Hello
    Using the method suggested by Aron:
    prha.creation_date >= :start_date
    AND
    prha.creation_date < :start_date + 1Oracle will be able to use any indexes present on creation_date. Using the TRUNC(prha.creation_date) method, oracle will only be able to use an index if it is a function based index using TRUNC. Also, the bind variable data types should be of the date data type and if they are not, then the TO_DATE function should be used, but the TO_DATE function does not need to be and should not be used on a date data type.
    prha.creation_date >= TO_DATE(:start_date,'MM/DD/YYYY')
    AND
    prha.creation_date < TO_DATE(:start_date,'MM/DD/YYYY') + 1HTH
    David

  • Urgent help needed with reading data from Cube

    Hi Gurus,
    Can anyone tell me how to read a value from a record in the CUBE with a key (combination of fields).
    Please provide if you have any custome Function Module or piece of code.
    Any ideas are highly appreciated.
    Thanks,
    Regards,
    aarthi

    Due to the nature of the cube design, that would be difficult, that's why there are API's, FMs, and MDX capabilities - to eliminate the need to navigate the physical structure.  Otherwise you would have to concern yourself with:
    - that there are two fact tables E and F that would need to be read.  The Factview could take of this one.
    - you would want to be able to read aggregates if they were available.
    - the fact table only as DIM IDs or SIDs (for line item dims) to identify the data, not characteristic values.  A Dim ID represents a specific combination of characteristic values.

  • Help needed with the bottom (icon?) bar.

    Okay so, I'm new to using Mac and so I'm just guessing that you call the bottom bar the icon bar?? Sorry. Nonetheless, I recently somehow removed the "Downloads" icon from this bottom menu bar, and it really came in handy so I would like to get it back. Only....I can't seem to figure out how.
    Any help with this would be greatly appreciated.

    Your downloads folder is located in your home folder:
    Macintosh HD:Users:yourname:Downloads
    Just drag it to your dock (icon bar) on the right side.
    Thanks ... Ken

  • Help needed with loading data from ODS to cube

    Hi
    I am loading data from an ODS to a cube in QA. The update rules are active and definition seems right. I am getting the following error, in the update rules.
    "Error in the unit conversion. Error 110 occurred"
    Help.
    Thanks.

    Hi Chintai,
    You can see the record number where the error occured in the monitor (RSMO) for this data load > goto the details tab and open up the Processing area (+ sign). Try it out...
    Also about ignoring the error record and uploading the rest, this is done if you have set Error Handling in your InfoPackage (Update tab), but this would have to be done before the load starts, not after the error happens.
    Hope this helps...
    And since you thanked me twice, also please see here:-) https://www.sdn.sap.com/irj/sdn?rid=/webcontent/uuid/7201c12f-0701-0010-f2a6-de5f8ea81a9e [original link is broken]

  • Help needed with the MM module

    hi,
    I have a question regarding the MM and AP data......In MM module we have 0vendor and in AP also we have another 0vendor......the task is how we can connect these 2 vendors into one 0vendor object.....i appreciate ur help... thanks in advance

    hi,
    they are the same 0vendor actually,
    the same infoobject in bw share the same master data,
    rsa1->infoobjects->choose 0vendor, and right click 'maintain master data', put e.g 10000 for the max no of hits and execute, you will see 0vendor from MM and AP there. (also you can try se16 and type in /bi0/tvendor - vendor text, to view the vendor and description).
    if you want to have vendor report join from MM and AP, you can use multiprovider join MM cube and AP cube (or ods), then create query from the multiprovider.
    take a look docs multiprovider technical detail and sample, and how to create efficient queries on multiprovider
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/11291595-0501-0010-c881-e02c27261b55
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/751be690-0201-0010-5e80-f4f92fb4e4ab
    hope this helps.

  • Help needed with message received from BAPI_BUPA_FS_CREATE_FROM_DATA2

    Hi experts,
    I'm creating Business Partners(type Organisation) using BAPI_BUPA_FS_CREATE_FROM_DATA2, however, I receive an error message from the BAPI return table that I don't understand. The message is "Data set BUT100 for BP 0000000108 maintained time-dependently,despite inact.time dep."..... can anyone help please?
    Thanks in advance,
    Chris

    Implement note
    Note 1691224 - HRALX: Error message R11 349 when creating BP for org.unit

Maybe you are looking for

  • KT3 Ultra-ARU SB Live! problem when using onboard Promise MBFasttrak 1

    Hello ! I have one little problem with my motherboard. I know it's a little bit older compared to today's MSI production.. I have a MSI KT3 Ultra-ARU motherboard. I used only VT8233A southbridge's IDE until now, and everything worked perfectly. But n

  • How to create sensitive textarea in java

    I want to create system that will load a file and display its text on the JTextArea and when clicking on a word from the text editor the clicked word should be returned( like as it is with combo box). I am able to load the file. But how to deal with

  • Download header and date to excel

    i have an alv report i want whwn i download my alv to excel with push button ( standard) to get in the header of the excel HEADER an DATE how??? thanks....

  • Can a macbook pro run windows operating system?

    can a macbook pro run windows operating system like xp, vista or windows 7?

  • DAO and session Facade

    Hi I came across an design pattern where they call the DAO from Session facade. The purpose of session facade is to minimise the number of network calls. Even though there are no network calls involved why do they go for session facade to call the DA