All hard disks refuse to boot.

I have a G45M motherboard with 3 SATA disks and one ATA disk installed;  I maintain all four disks identical since I can't afford to lose my data.  Recently, I went in on the usual boot disk and was told "No boot disk present.  Changed to boot to disk 2, then 3 then 4 and all said the same thing!  I don't believe that all four disks have suddenly died, so looked for other reasons.  Could find no problem, so I low level formatted one disk, repartitioned and installed Windows XP since it is much less fussy that Vista or Windows 7, which I normally use.  Ran fine, I could look at my other disks and they all had the data on, but not booting.  Next day, booted up on Windows XP, was told "no boot disk present"!  I had updated the BIOS about three weeks previously, and wonder whether this had upset things.  Can anyone tell me where I can find the hpoefull saved previous BIOS and how to get it back in?  I hope I can get it back to working for at least long enough to save things.  Help!

Quote from: NovJoe on 14-December-10, 23:23:06
Can you check if the cables are fine? Try using another set of cables and PSU to test.
Yes, already checked those.  What I don't understand is why all 4 disks show the same effect.  Does anyone know of a
virus that will do this?  I use AVg pro so I should be ok,but..... 

Similar Messages

  • External USB hard disk fails to boot

    I installed Arch Linux on an external USB Lacie 1 TB Hard Disk. I followed instructions on WiKi: "install from exisiting linux", method 2, since I already have Linux installed
    on the internal HDD of my laptop (dual boot with Windows, also with Grub as bootloader).
    Problem: The external HDD stalls during boot right after the "Welcome to Grub!" - message. I can only hard-reset my laptop from there.
    The external HDD has msdos Partition Table.  It is recognized by BIOS just fine, since I can choose to boot from it. It has following (very simple) partition setup:
    [root@arch-laptop chris]# fdisk -l /dev/sdb
    Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0x000c9610
    Device Boot Start End Blocks Id System
    /dev/sdb1 * 2048 40962047 20480000 83 Linux
    So there's just the root partition, no boot or home partition defined. Grub installed to the external HDD with no errors.
    Here's the grub.cfg auto-generated, without anything adapted.  The UUID of the external HDD /dev/sdb1 is correct.
    [root@arch-laptop grub]# cat grub.cfg
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 5fe1d28c-2640-4b5c-b98b-75d147479348
    else
    search --no-floppy --fs-uuid --set=root 5fe1d28c-2640-4b5c-b98b-75d147479348
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_archlinux ###
    menuentry "Arch Linux pkg-linux kernel" --class arch-linux --class arch --class gnu-linux --class gnu --class os {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ext2
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 5fe1d28c-2640-4b5c-b98b-75d147479348
    else
    search --no-floppy --fs-uuid --set=root 5fe1d28c-2640-4b5c-b98b-75d147479348
    fi
    echo 'Loading Arch Linux pkg-linux kernel ...'
    linux /boot/vmlinuz-linux root=UUID=5fe1d28c-2640-4b5c-b98b-75d147479348 rw quiet
    echo 'Loading Arch Linux pkg-linux kernel initramfs ...'
    initrd /boot/initramfs-linux.img
    menuentry "Arch Linux pkg-linux kernel (fallback initramfs)" --class arch-linux --class arch --class gnu-linux --class gnu --class os {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ext2
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 5fe1d28c-2640-4b5c-b98b-75d147479348
    else
    search --no-floppy --fs-uuid --set=root 5fe1d28c-2640-4b5c-b98b-75d147479348
    fi
    echo 'Loading Arch Linux pkg-linux kernel ...'
    linux /boot/vmlinuz-linux root=UUID=5fe1d28c-2640-4b5c-b98b-75d147479348 rw quiet
    echo 'Loading Arch Linux pkg-linux kernel fallback initramfs ...'
    initrd /boot/initramfs-linux-fallback.img
    ### END /etc/grub.d/10_archlinux ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-5fe1d28c-2640-4b5c-b98b-75d147479348' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 5fe1d28c-2640-4b5c-b98b-75d147479348
    else
    search --no-floppy --fs-uuid --set=root 5fe1d28c-2640-4b5c-b98b-75d147479348
    fi
    echo 'Loading Linux linux ...'
    linux /boot/vmlinuz-linux root=UUID=5fe1d28c-2640-4b5c-b98b-75d147479348 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux.img
    submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-5fe1d28c-2640-4b5c-b98b-75d147479348' {
    menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-5fe1d28c-2640-4b5c-b98b-75d147479348' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 5fe1d28c-2640-4b5c-b98b-75d147479348
    else
    search --no-floppy --fs-uuid --set=root 5fe1d28c-2640-4b5c-b98b-75d147479348
    fi
    echo 'Loading Linux linux ...'
    linux /boot/vmlinuz-linux root=UUID=5fe1d28c-2640-4b5c-b98b-75d147479348 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    ### END /etc/grub.d/60_memtest86+ ###
    the internal HDD (/dev/sda) also has GRUB installed, without any problems, with a graphical console menu.
    GRUB version is 2.02
    laptop: dv6-6b41ed
    Legacy BIOS  (no EFI / UEFI).
    Any ideas on how to solve / troubleshoot this?
    Last edited by christopher72 (2014-04-21 15:05:21)

    Any hooks in particular? I don't know which hook to add other then the 'blocks' hook, which is there already:
    HOOKS="base udev autodetect modconf block filesystems keyboard fsck"
    Also, I don't think that could be the problem since loading the initramfs image takes place after choosing something from the Grub Menu.  That menu never appears, I just get "welcome to grub!" with a blinking cursor underneath.
    I did add "insmod usbms" in grub.cfg,  but that didn't change anything.
    What strikes me as odd is that in grub.cfg, the disk is referred to as "hd1", where I think it could just as well be "hd0" if that's the first hard disk the BIOS boots from. But I'm not sure if that really matters since the search is done with the UUID.
    Another thing I tested earlier:  I dd 'd the Arch Live image to the external usb HDD, and then it boots fine...

  • How to get names of all hard disks?

    Hi,
    How to get names of all hard disks.
    For example:
    There are 3 disks in my computer: A, C,D (OS: Windows).
    and then I want to know how many disks (3) and their names( A, C, D) are there?
    Please give me some code sapmles. Thanks.
    (---sorry, my English is not very well----)

    Look at a few of these
    http://onesearch.sun.com/search/developers/index.jsp?qt=%22hard+disk%22+label&qp=forum%3A31&qp_name=Java+Programming&col=devforums

  • Some MSI notebooks do not have all hard disk space assigned

    Follow the attached guide to allocate all hard disk space.

    tommyok wrote:
    I was loading some pictures onto my macbook and the photos did not load properly. I have around 4,200 current photos. There is 29 GB left on my hard drive. I can not see the last "event" of photos. Looking through preview I see some on my last photos and some are there but do not show up in iphoto. Now I am getting an error message that states I do not have enough disk space therefore the library is not saving. I am now locked out of downloading files from safari, or even itunes.
    I am lost as to what to do next. please send me in the right direction. thank you!
    Welcome to the Apple forums:
    Are you referring to the TimeMachine harddrive?
    If you are referring to your internal drive, you may get more information in the Leopard Install and Setup forum:
    http://discussions.apple.com/forum.jspa?forumID=1219
    In general you need to have at the very minimum, 10% or your HD free. Your drive may be completely full, depending on how large it is, which you don't say. The amount of freespace on an HD varies as the system swaps files on and off of it.
    Be sure you have everything backed up, just in case.

  • How to recover the recovery partition after delete all hard disk partitions

    hallo
    how to recover the recovery partition after delete all hard disk partitions in toshiba satellite pro c850-1fn ?
    note that : I did not work recovery disc or usb to my laptop.
    I have need of your help.

    Satellite Pro C850-1FN (PSCBXE-01700EEN)
    Restore the hard disk to its original out-of-the-box contents using Toshiba recovery media. All of the original partitions will be restored, including the recovery partition.
    If no recovery discs were created, you can obtain them from Toshiba.
       Toshiba Europe Backup Media Online Shop
    For instructions, see the section Restoring the pre-installed software from your created Recovery Media on p. 4-18 of the User's Manual (attached).
    -Jerry

  • MacBook Pro does t start I turned it off during start up I've tried a lot of stuff. When I hold startup my hard disk says efi boot instead of Macintosh hd

    MacBook Pro does t start I turned it off during start up I've tried a lot of stuff. When I hold startup my hard disk says efi boot instead of Macintosh hd

    Reinstalling Lion/Mountain Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    If this does not work, then you will have to erase and reinstall Mountain Lion:
    Install or Reinstall Lion/Mountain Lion from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
      1. Select Disk Utility from the main menu and click on the Continue button.
      2. After DU loads select your startup volume (usually Macintosh HD) from the
          left side list. Click on the Erase tab in the DU main window.
      3. Set the format type to Mac OS Extended (Journaled.) Optionally, click on
            the Security button and set the Zero Data option to one-pass. Click on
          the Erase button and wait until the process has completed.
      4. Quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion/Mountain Lion and click on the Install button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • Hard Disk Won't Boot - Recovering Data w/ Live CD

    Hey guys,
    I have a MacBook.
    My operating system got corrupted. I can't boot into it. I also have a tiny Linux partition installed, which can boot totally fine (therefore, not a hardware problem).
    I booted into a Linux Ubuntu 7.10 Live CD, and was able to see my hard disk partitions as accessible. I could navigate to the Ubuntu partition, and see the data there.
    HERE'S THE THING:
    I can also access my OS X partition, and see the data. The problem is that some of the folders I can open just fine, while others have a tiny red circle in the top-right of the icon. When I try to open those ones, it says that I don't have permission.
    Is there a way around this?
    I am trying to rescue my data before wiping the hard drive.
    I have already tried repairing permissions with the original install disk, and it won't work. I have tried booting in FireWire target-disk-mode, and it won't work. I have tried using DiskWarrior, and it worked only enough to tell me it won't work.
    The Apple support guy said to try this Linux Live CD. Any ideas?
    Thanks in advance!

    Hey dude,
    Thanks again for the followup help.
    I have done a million diagnostics, here is a short list:
    Tried booting resetting PRAM - nothing.
    Tried booting in Verbose mode, nothing
    Single-user mode, nothing
    Safe mode, nothing
    Nothing will boot.
    I have Ubuntu installed on a different partition which boots totally fine, so it's definitely not a hardware failure. Apple said this as well.
    I boot into the install DVD, and run the Disk Utility FIrst Aid. It can't repair the disk, and gives me errors.
    The hard drive is nearly full, so there's not 15GB free to do a Archive and Reinstall the OS.
    Apple said that the OS is corrupt, and I have to recover the data and wipe and reinstall.
    I tried booting in target disk mode, and the host computer can't find the target mac (I tested it with 3 different macs and the cable works and everything else works fine). Apple said this is probably due to the "headers and footers" of the partition being hard to read.
    I tried DiskWarrior, and at first it DID find the disk and data, and it said IT COULD RECOVER IT. I did a hardware test and it was fine. I did the permission repair, and then it found all my data and allowed me to browse it before recovering it, but it also gave me errors. Then it said that it COULD NOT recover it. When I tried to run the recover, it said first to reboot. After rebooting, it said that it couldn't even find the Mac hard disk at all, let alone repair it.
    Then after trying to boot again as normal, instead of simply staying at the permanent "boot up" screen, it goes to a gray screen with a black message that says "Please reboot your computer".
    I am able to boot from an Ubuntu Live CD, and I can even see my Mac disk as accesible. I mount it and can browse SOME of the data, but other folders it says I don't have permission to access. Unfortunately, it's the locked ones that I need the data from.
    I didn't put any extra locks on these folders in OS X than the other folders that I can access, so it's nothing like that.
    Any ideas?

  • Hard Disk - Mac OS Boot Volume failure

    Hello everyone,
    My Mac does not boot.
    I started having odd problems of clicking on a document and the mac refusing to open its application (tried with PDF, DOCX, even JPG).
    When I rebooted I was  greeted with a a normal grey screen with apple logo and immediately received a  terminal system message:
    The message read:
    panic(cpu 0 caller 0xffffff8010bcb7d4): "Process 1 exec of /sbin/launched failed, errno 8"@/SourceCache xnu xnu-2422.1.72/bsd/kern/kern_exec.c:3836
    Debugger called: <panic>
    Backtrace (CPU 0), Frame : Return Adrress
    etc. (please see above image)
    After quickly listing these messages it rebooted. Again same thing.
    Now this is odd since to my knowledge nothing particular happened that could justify this behaviour - regular apps being used, mac at the desk, no pwer failluers or surges... I even got a brand new disk I installed back in October last year.
    I rebooted with option pressed and got the three volumes I expected: Mac OS X, Bootcamp and HD Recovery
    Retried Mac OS X (you never know ;-) and nothing changed, same panic screen.
    I then rebooted on HD Recovery and run repair on Disk Utility. The S.M.A.R.T status is "Verified" and so I tried to Repair the volume. Can't remember exactly the message but basically something in the lines of "The disk cannot be repaired, backup your data and format it".
    The disk change prevented me of having a proper backup (last one done before changing disks - and as you probably will know when changing disks Timemachine does not recognize and proposes reset the backup it has from previous disk).
    So I thing I will get the disk out and connect it externally to another mac and backup and format it to later restore.
    But wait, how about Bootcamp? I rebooted, pressed option and chose Bootcamp as startup disk and... amazingly it works without a problem (besides seeing Windows 7 on a mac which is still a troublesome image to me  ;-) So not all is lost!
    So my question: any ideas if I may repair the disk from the apparently fully functional Windows? I started backing up the more recent and important files, but already had troubles with file long names and naming rules (so I will definitely have to backup it later on a Mac OS X environment as external disk).
    Any thoughts will be most welcome.
    Regards,
    -- João
    About my Mac:
    Macbook Pro
    15-inch, Mid 2010
    Processor: 2.66 GHz Intel Core i7
    Memory: 8 Gb 1067 MHz DDR3
    Graphic cards: Intel HD Graphics 288 Mb & nVIDIA GeForce GT 330 M
    Serial: W80282VYAGZ
    Software: OS X 10.9.2 (13C64) Mavericks

    You were right BobRz! :-)
    On second thought and still thinking that the drive could be a more likely culprit I decided to take the Mac back to the store where I had bought and installed it so I could profit from the warranty.
    They run a quick test (could not figure out which sequence keys but it was something built-in into the OS or Firmware) and they told me the disk was probably not at fault and that I should leave my Mac (chills!) for a more thorough testing.
    Although I already had saved all data files not covered by my existing TImemachine backup, I negotiated with them they would do the eventual full backup just in case testing pointed the finger to the disk and left it to - hopefully  - come back next day with everything sorted out.
    The following day they phoned me and when I presented myself at the counter I had my mac wating for me (I think I saw it smile - I certainly was) alongside with a faulty disk cable which has been replaced! So there you have it, you were 100% on target! :-)
    All in all I had a 100€ repair and cable to pay for.
    So all is well that ends well!
    Thank you very much for your insight Bob.
    Best regards,
    -- joão
    ps already bought a 1Tb and did a Timemachine full backup! ;-)

  • Hard disk failure or boot data corrupted?

    Since a normal attempt to restart system it cant find OSX system - flashing '?'. Since then volume does not show at all in System preferences Startup,Disk Utility when rebooting from Install DVD or TechTool Pro 5 . There is only the one partition set up.
    I've reinstalled 10.6.7 on external HD to get a working system.
    I've read a lot about the problems if the boot information may have been somehow corrupted, and apparent methods of restoring that - reFit,GRUB etc but my limited knowledge or confidence of Terminal commands doesn't encourage me to pursue that without a lot of help.
    The basic question is do I just assume my HD is a 'goner' or is there a way to try and get the system to boot from it?
    (Visiting an Apple reseller is a last resort - living in Switzerland - likely expensive and technical chat in French not my strongest language!)

    If your MacBook Pro is only 8 months old, it should be under warranty. If possible, I'd take it to an Apple Store or an Apple authorized repair facility and have them check it. You can also consider extending the warranty by buying Apple Care.
    Genius Bar Reservation

  • Profiling hard disk activity on boot

    I've read that adding "profile" to the end of the kernel line menu.lst can speed up boot times in ubuntu, and I was wondering if this can be done under arch.

    I think Ubuntu uses this.

  • Can the Finger Print Reader be used for the Hard Disk Password at Power-On Boot Time on the W700?

    I own a W700 and I have enabled the Hard Disk password at boot time (I have 2 HDDs, so there are two password prompts).
    I always type in the passwords, but was wondering if the Finger Print Reader can be used instead?
    The Finger Print Reader works fine from Windows 7 logon onwards, but it would also be nice to use it at system boot time, after powering on.
    Please let me know if this is possible.
    Thanks!
    Solved!
    Go to Solution.

    Sorry I did not get back online quick enough...but the passwords are the same.
    For some reason, after my first cold boot, I was still prompted for the hard disk passwords.  I powered down again and when I powered back up, it signed me on all the way through.  So it was just a hiccup.
    All is good now and I'm very happy!
    Thanks for pointing me in the right direction.

  • Satellite L10-144 - Can't boot from Hard Disk

    Hello.
    Sorry for my english because I'm french. I have a problem with boot on this computer. I have installed windows xp on my hard disk but the computer don't boot on this hard disk. If I want to boot on this hard disk I must push F12 and select hard disk and after windows load.
    In the bios the hard disk is in first but this hard disk don't boot automaticly.
    Can you help me please?
    Thanks a lot.

    Hi Demilego,
    Thats really strange... Normally the computer should boot from HDD automatically.
    In your case I would check the BIOS and load the default settings.
    Does it work?

  • Spare hard disk tray and rubber stops for X201

    Hi
    I have a Lenovo Thinkpad X201. Due to the nature of my work I am frequently required to boot up from a variety of operating systems. Recently, to protect integrity of the OSes, I moved out Ubuntu onto a spare HDD so now I have two hard disks - one that boots into Windows 7 and another that boots into Ubuntu. The problem is that if I connect the Ubuntu hard disk via USB for bootup, it is death slow and I have had instances where the hard disk developed bad sectors because the USB cable came loose and disconnected the drive. The only other option I am using currently is to manually swap the internal HDDs every time I need to change OSes. I was wondering if I can purchase a spare hard disk tray with its rubber mounts so that all I need to do is unscrew the hard disk bay cover (one screw) and swap the drives rather than have to unscrew the entire assembly and then screw it onto the other HDD repeatedly.
    Could somebody please provide me with an FRU number for the entire SATA HDD assembly (minus the HDD itself of course but including the rubber rails).
    Thanks
    Sid
    Solved!
    Go to Solution.

    i am not affiliated with any of these sellers.
    http://www.ebay.com.au/sch/i.html?_odkw=t60+hdd+drive+tray&LH_BIN=1&_osacat=0&_from=R40&_trksid=p204...
    You can use the metal tray, rubber bumper and plastic bay cover.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Unable to change permissions on Hard Disk Drives after rolling back OSX Lion to Snow Leopard

    Are you able to help me?
    I had several problems with permissions and a series of other serious issues after upgrading to Lion, so I did a clean re-install of Snow Leopard 6.4 (from disk), upgraded to 6.8 and still had permissions problems which I have made worse by doing what I thought made sense - giving my administration user access to all hard disks and time machine back-ups. I emphasise "hard disks" because I have an iMac 27" i7 and 250GB Flash Drive provided by Apple where I keep OSX and aplication files.  Thus the Flash Drive (FD) becomes the boot disk, not the Hard Drive.
    Changing preferences on the Apple HD (not FD) and the Time Machine Backup HD to my user name (with administration privaleges) has had the reverse effect of not giving me access to anything other than my OSX system volume on my 250GB Flash drive!  I can only see my files on the hard drives with the root user (which I have used for the first time ever to get that access).  But using the root user does NOT allow me to change permissions of either my Time Machine backup disk or the Hard drive on my iMac !  Why oh why??
    Googling for solutions suggested using iRepair to change permissions but that gives me a "boing" when I try with no effect - at least a "boing" is more feedback that the Apple Finder's response to my attempt to alter permissions in the "info" window!
    Oh! and of course I have unsuccessfuly tried the Disk Utility as well, which does come back with errors - that appear to be "safe to ignore" from Apple Support's website!
    I originally posted a slightly different message to this one to  https://discussions.apple.com/message/16955471#16955471 because it appeared to have similar issues. It appears as if my problem is unfortunately quite unique!
    Godfrey Bridger
    Hamilton, New Zealand

    So the background to this situation:
    1. The user had OS 10.6.8 installed on one volume, while his actual users home folders stored on a second volume, this is fine but can sometimes cause issues during/post upgrade to 10.7
    2. The user upgraded to 10.7 and while his home folders were still being accessed, he no longer had permission to change or modify them.
    3. The user downgraded to 10.6.4 again which broke the link for his users completely.
    4. In an attempt to change the permissions for his information he had the (common) mistake of changing the permissions of his root level of his drive, this did several things, in addition to negatively effecting his OS, it also locked the drive mount points in his (hidden) /Volumes/ folder.
    5. the steps taken to help rectify this issue:
    A. Open Terminal.
    B. TYPE:
    chmod -N /
    chmod 1775 /
    chown root:admin /
    C. Reboot computer
    D. Open Disk Utility.
    E. Repair permissions on the boot volume.
    F. Also the following commands were run on her second drive to allow him access to his stuff again:
    sudo chflags -R nouchg /path to drive/
    chmod -R 775 /path to drive/
    chmod -RN /path to drive/
    chown -R username:staff /path to drive/
    Once the permissions repair is complete the Users can be readded to the System Preferences>Accounts pane and the paths to home directories located in his second drive using the "Advanced Options..." section, but due to the time the permissions repair was going to take this step will be posted tomorrow.
    Also each user will require Terminal commands to make the permissions unique for each user: (this must be done PRIOR to the users being added in System Preferences>Accounts.
    chmod -N /
    chmod 1775 /
    chown root:admin /
    sudo chflags -R nouchg /path to home folder/
    sudo chmod -R 775 /path to home folder/
    sudo chmod -RN /path to home folder/
    sudo chown -R username:staff /path to home folder/
    EE

  • K7T266 Pro2 & new hard disk

    Hi
    I have just upgraded my K7T266 Pro2 with a 2400+ chip (with modification & bios) and upgraded RAM to 1 GB. All works OK.
    Now I am trying to put in a new 250 GB Western Digital hard disk and installing Windows XP Pro from scratch and I am running into problems. The hard disk is on the main IDE connectors.
    The BIOS recognises the hard disk. When installing Windows XP, it seems to only detect a 131 GB disk!. Windows installs but when the computer reboots as part of the installation, the hard disk will not boot, even when forced as the fist boot device.
    If I boot from the Windows CD and go through the install again same problem.
    Any suggestions?
    Chris
    Adelaide
    Australia

    harrisc:
    You mentioned that you updated the BIOS - the last release (1.9) had a note that it "Support Maxtor 160GB HDD (4G160J8)" so I would expect the board to support the 250 Gb WD drive, as well.
    The problem probably is in Windows - XP versions before SP1 did not support 48 bit LBA (Logical Block Addressing) which is needed for drives larger than 131 Gb to be recognized.
    Here is a link to the Microsoft Knowledge Base article with a 'fix':
    http://support.microsoft.com/default.aspx?scid=kb;en-us;Q303013
    If your installation disk is a pre SP1 then that's the problem; if it's SP1 or SP2 then there IS a BIOS limit (contrary to what I assumed above).  Your best bet then is to partition the drive with a ~50 Gb primary and 200 Gb extended partition and live with two logical drives.
    Good luck,
    ss

Maybe you are looking for

  • Photoshop CS5 crashing after 10.6.4 update

    I haven't had any regular crashes until I upgraded to 10.6.4, I'm going to assume that's the culprit because the crash logs indicate com.apple.GeForceGLDriver is the problem. I've been trying to Photomerge 10-12 images, and sometimes it gets done, so

  • Why do theme images are shift to the right?

    I have downloaded several themes (personas). When I look at the picture on the add-on site the main object is usually in the center of the picture. When I download it (or even hover over it to see how it looks on my browser) the image is always shift

  • Dynamic LOV buttons in Forms

    Hello: The dynamic LOV button (app.ui.lovButtons=true) in Registry.dat setup is showing the LOV button in NORMAT Mode ONLY. This does NOT get displayed when the form is in QUERY mode. Is there a way to display the LOV buttons irrespective of Query/No

  • Defining IP Address and DNS configration on VMWare server?

    plz suggest as mentioned in subject. We have SuSe LINUX Version ans wants to define IP Address and DNS setting. We get some error which looks like as resulted due to IP or DNS setting. Guys..guide me to correct forum if reqd.

  • Panel in Xdialogbox becoming inactive

    hello frens, its mukesh here. i am facing problem in the Jpanel in Xdialog box. XdialogBox is a component of Xui technology used as JDialogBox in swing. Xui is extended from swing only. my problem is that..i have a menubar in which i click on the men