Non system disk or disk error linux

I'm installing ubuntu 14.04 off of a USB, and everytime I've tried running my machine after "successfully" installing ubuntu, I get an error: Non-System disk or disk error replace and strike any key when ready I'm at a lost. As far as i can see, i'm installing it correctly, and i've checked the bios, and the hard drive is being read from. Does anyone have any ideas what could be causing the error?
  • Home
  • Forum
  • The Ubuntu Forum Community
  • Ubuntu Official Flavours Support
  • Installation & Upgrades
  • [ubuntu] Non-System Disk error

  1. Non-System Disk error

    I’m installing ubuntu 14.04 off of a USB, and everytime I’ve tried running my machine after «successfully» installing ubuntu, I get an error:

    Non-System disk or disk error
    replace and strike any key when ready

    I’m at a lost. As far as i can see, i’m installing it correctly, and i’ve checked the bios, and the hard drive is being read from.
    Does anyone have any ideas what could be causing the error?


  2. Re: Non-System Disk error

    Moved to the Installation & Upgrades sub-forum


  3. Re: Non-System Disk error

    Non-System disk or disk error

    That message usually appears when the boot system (BIOS/UEFI) cannot find a disk with an OS on it. What happens when you re-insert the USB memory stick and then you»strike any key?» does the Ubuntu live session load? If it does, then the BIOS is most likely seeing the USB stick as an external USB hard drive and is set to boot from it and not from the hard drive.

    Regards.

    It is a machine. It is more stupid than we are. It will not stop us from doing stupid things.
    Ubuntu user #33,200. Linux user #530,530


  4. Re: Non-System Disk error

    jack107; Hi ! My Welcome to the forum .

    I would hazzard to guess that grub did not get installed to the hard drive.

    You can check and see what the situation is by mounting the partition from the liveUSB and reading the contents of the boot config file «/boot/grub/grub.cfg».
    OR just (re-)install grub.
    If you want to (re-)install grub show us what we are working with, so we can craft up the proper syntax to make that happen.
    From the liveUSB; terminal commands

    Code:

    sudo fdisk -lu
    sudo parted -l

    ain’t nothing but a thing


  5. Re: Non-System Disk error

    That message is coming from the Master Boot Record of your hard drive. Apparently, when you did the installation from USB, the installation programs put the bootstrap loader into the MBR of the USB drive rather than into the MBR of the hard drive.

    You can try re-installing from the USB, but when you get to the window that asks whether you want to replace the existing system, install alongside it, or «something else,» select «something else.» This is the only option that lets you select where to place the bootstrap loader!

    It’s also, unfortunately, the most complicated of the choices, since it lets you do everything for yourself instead of performing behind-the-scenes magic. If you’re uncomfortable with this, let us know and someone will probably show up to guid you through it step by step.


Bookmarks

Bookmarks


Posting Permissions

Nenson

Non-System disk or disk error

Hello,

I downloaded Linux Mint Debian 64bit, and installed it on HP 6730b with a 840EVO 120GB ssd.
There are three partitions that I’ve created, the first one is root 30GB (/dev/sda1), second one swap 2GB (/dev/sda2) and the rest is used for home partition (/dev/sda3).
The grub was installed on (/dev/sda). Partition table is GPT.

The thing is, once I restart the laptop after the installation, I receive the following message: «Non-System disk or disk error replace and strike any key when ready».

I’ve read a bunch of articles about this issue, but I can’t find a solution.
Flagging the root partition as «boot» did not help.

UEFI boot is disabled in bios, but even if I enable it the same error is received.

Please help!

Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.

Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.

eanfrid

Re: Non-System disk or disk error

Post

by eanfrid » Sun Apr 27, 2014 11:32 am

GPT is for drives of more than 2.2TB in size. Do yourself a favor: keep your 120GB SSD on MBR partitioning schema…

Nenson

Re: Non-System disk or disk error

Post

by Nenson » Sun Apr 27, 2014 12:08 pm

Hello eanfrid,

Thank you for your suggestion, unfortunately the issue is still present on MBR partitioning schema.

eanfrid

Re: Non-System disk or disk error

Post

by eanfrid » Mon Apr 28, 2014 5:04 am

The grub was installed on (/dev/sda).

at this moment, are you sure that /dev/sda was really refering to this SSD and not any other device ?

wayne128

Re: Non-System disk or disk error

Post

by wayne128 » Mon Apr 28, 2014 5:10 am

perhaps you can do these:
1. boot and run in Live DVD/USB
2. open a terminal, type a few commands and post their outputs

sudo fdisk -l

sudo parted -l

sudo os-prober

Nenson

Re: Non-System disk or disk error

Post

by Nenson » Tue Apr 29, 2014 6:36 am

Hello,

@eanfrid, yes

@wayne128, here are the results

mint@mint ~ $ sudo fdisk -l

Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders, total 234441648 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
Disk identifier: 0x00046378

Device Boot Start End Blocks Id System
/dev/sda1 4096 62918655 31457280 83 Linux
/dev/sda2 62918656 234440703 85761024 83 Linux

Disk /dev/sdb: 8019 MB, 8019509248 bytes
255 heads, 63 sectors/track, 974 cylinders, total 15663104 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
Disk identifier: 0x77f22e41

Device Boot Start End Blocks Id System
/dev/sdb1 * 63 15663103 7831520+ c W95 FAT32 (LBA)
mint@mint ~ $ sudo parted -l
sudo: parted: command not found
[1]mint@mint ~ $ sudo os-prober
No volume groups found
/dev/sda1:LMDE Cinnamon Edition (1):LinuxMint:linux

wayne128

Re: Non-System disk or disk error

Post

by wayne128 » Tue Apr 29, 2014 6:50 am

Try to reinstall grub, use this simple method first.

1. boot with Linuxmint DVD, run in Live mode

2. mount the Linuxmint cinnamon partition.

sudo mount /dev/sda1 /mnt

3. reinstall grub to mbr of first hard disk

sudo grub-install —root-directory=/mnt /dev/sda

4. reboot to check if it can work..

if not, consider to do with chroot method of reinstall grub to mbr.

Nenson

Re: Non-System disk or disk error

Post

by Nenson » Fri May 02, 2014 3:26 pm

Hello,

Unfortunately, this method did not help.
I tried with root and chroot, and although it says that the installation was successful, the same error shows up.

  • Index
  • » Installation
  • » Installed Arch, will not boot — Non-System disk or disk error

Pages: 1

#1 2013-02-02 00:53:34

victorhooi
Member
Registered: 2009-08-06
Posts: 109

Installed Arch, will not boot — Non-System disk or disk error

Hi,

I have a HP 6730s laptop on which I’m trying to install Arch Linux (x64). I’m using the archlinux-2013.01.04-dual.iso boot image, and attempting to install it as per:

https://wiki.archlinux.org/index.php/Beginners’_Guide

However, no matter what I do, whenever I try to boot up, I get:

Non-System disk or disk error
replace and strike any key when ready

The HDD is a 160 Gb Intel X-25M SSD. In the BIOS, I have it set to AHCI mode, not IDE. Also, the BIOS has a UEFI mode, but I have disabled this (so I assume it’s traditional BIOS) — even when I enabled UEFI, I didn’t see anything in /sys/firmware/efi/vars/ (that directory didn’t even exist), so I doubt UEFI mode works properly on this BIOS anyhow.

The hard drive has been formated as GPT.

GPT fdisk (gdisk) version 0.8.5

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Found valid GPT with protective MBR; using GPT.

Command (? for help):

I have created three partitions:

  1. 2Mb partition, with bios_grub set, and type EF02

  2. 129 Gb BTRFS partition, with legacy_boot set

  3. 5Gb swap partition

I then install GRUB, as per the instructions in the Beginner’s Guide and here (https://wiki.archlinux.org/index.php/GR … structions):

modprobe dm-mod
grub-install --target=i386-pc --recheck --debug /dev/sda
mkdir -p /boot/grub/locale
cp /usr/share/locale/en@quot/LC_MESSAGES/grub.mo /boot/grub/locale/en.mo

The grub-install returned with «No errors», so I’m not sure what’s going on.

Any thoughts?

Cheers,
Victor

#2 2013-02-02 01:09:03

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,127

Re: Installed Arch, will not boot — Non-System disk or disk error

What BIOS do you have and is it up to date? Some firmware will not boot a GPT disk in BIOS legacy mode. I’m not saying yours won’t. I’m just mentioning the possibility. (This is why I am booting in UEFI mode — I wanted GPT and the damn thing wouldn’t boot in legacy mode.)

I don’t know for BIOS booting, but for EFI, grub-install tends to return success no matter what — even when it has obviously failed. I’ve found that *not* using the —debug flag often makes this clearer.

Did you run grub-mkconfig?

Post config files for grub, output of gdisk -l /dev/sda.


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

#3 2013-02-02 01:52:09

victorhooi
Member
Registered: 2009-08-06
Posts: 109

Re: Installed Arch, will not boot — Non-System disk or disk error

Hi,

I believe I just have the official HP BIOS?

It’s a HP Compaq 6730s, BIOS version 68PZD Ver F.20.

Yup, I ran:

grub-mkconfig -o /boot/grub/grub.cfg

Also, I just tried to convert back to MBR, and when I try to install GRUB, I get:

/usr/bin/grub-bios-setup: warning: your core.img is unusually large. It won't fit in the embedding era.
/usr/sbin/grub-bios-setup: error: filesystem 'btrfs' doesn't support blocklists.

I guess I need to leave 1Mb before the first partition for the first error — not sure about what to do about the second error. Ultimately I’d still like GPT to work, of course.

I’ll convert back to GPT again, and then post my Grub configuration and gdisk output — was there something specific you wanted from those? (I didn’t change the Grub config from the defaults, and I listed my partitions above.)

Cheers,
Victor

#4 2013-02-02 02:27:03

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,127

Re: Installed Arch, will not boot — Non-System disk or disk error

Are you using sub-volumes? (Note: I don’t have any idea what these are. But if so, maybe see https://bbs.archlinux.org/viewtopic.php?id=144477 and/or the btrfs wiki page.)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

#5 2013-02-02 06:57:57

victorhooi
Member
Registered: 2009-08-06
Posts: 109

Re: Installed Arch, will not boot — Non-System disk or disk error

heya,

Nope, I’m not using subvolumes.

Here is my 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
set default="0"

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_gpt
insmod btrfs
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  8d7f92ce-c910-48c9-8e73-266b7e942ebd
else
  search --no-floppy --fs-uuid --set=root 8d7f92ce-c910-48c9-8e73-266b7e942ebd
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_AU
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch GNU/Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-8d7f92ce-c910-48c9-8e73-266b7e942ebd' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod btrfs
	set root='hd0,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  8d7f92ce-c910-48c9-8e73-266b7e942ebd
	else
	  search --no-floppy --fs-uuid --set=root 8d7f92ce-c910-48c9-8e73-266b7e942ebd
	fi
	echo	'Loading Linux core repo kernel ...'
	linux	/boot/vmlinuz-linux root=UUID=8d7f92ce-c910-48c9-8e73-266b7e942ebd ro  quiet
	echo	'Loading initial ramdisk ...'
	initrd	/boot/initramfs-linux.img
}
menuentry 'Arch GNU/Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-8d7f92ce-c910-48c9-8e73-266b7e942ebd' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod btrfs
	set root='hd0,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  8d7f92ce-c910-48c9-8e73-266b7e942ebd
	else
	  search --no-floppy --fs-uuid --set=root 8d7f92ce-c910-48c9-8e73-266b7e942ebd
	fi
	echo	'Loading Linux core repo kernel ...'
	linux	/boot/vmlinuz-linux root=UUID=8d7f92ce-c910-48c9-8e73-266b7e942ebd ro  quiet
	echo	'Loading initial ramdisk ...'
	initrd	/boot/initramfs-linux-fallback.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/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### 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 ###

Here is the output of gdisk:

gdisk -l /dev/sda
GPT fdisk (gdisk) version 0.8.5

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Found valid GPT with protective MBR; using GPT.
Disk /dev/sda 312581808 sectors, 149.1 GiB
Logical sector size: 512 bytes
Disk identifier (GUID)...
Partition table holds up to 128 entries
First usable secto ris 34, last usable sector is 312581774
Partitions will be aligned on 2048-sector boundaries
Total free space is 50433645 sectors (24.0 GiB)

Number    Start (sector)      End (sector)      Size        Code         Name
    1                2048                6143          2.0 MiB      EF02
    2                6144       251664383         120.0 GiB    8300         root
    3         251664384     262150143           5.0 GiB      8200         swap

Cheers,
Victor

#6 2013-02-02 09:57:37

victorhooi
Member
Registered: 2009-08-06
Posts: 109

Re: Installed Arch, will not boot — Non-System disk or disk error

heya,

Mystery solved.

It turns out that the HP 6730s does indeed have one of those buggy BIOSes that doesn’t play nice with GPT out of the box.

After reading http://rodsbooks.com/gdisk/bios.html, I started up the traditional fdisk, ignored the warning about this being a GPT disk, then set the bootable flag on the protective MBR entry.

http://rodsbooks.com/gdisk/bios.html wrote:

Particularly if you’ve got an Intel motherboard, use Linux fdisk or a similar tool to mark the EFI GPT protective partition entry in the MBR as active/bootable. In fdisk, type a followed by the partition number (probably 1), then type p to view the partition table. An asterisk (*) should appear in the Boot column for the relevant partition. You can then type w to save your changes. Do not use GParted, GNU Parted, or another libparted-based tool to make this change; these tools interpret the «boot flag» as being synonymous with an EFI System Partition type code on GPT disks, so changing the «boot flag» with these tools will not have the desired effect. You must use fdisk or some other tool that will alter the MBR data structures, not the GPT data structures!

I can now boot up successfully on this laptop smile.

Cheers,
Victor

The error on which this article is about is called as Non System Disk or Disk Error Replace And Strike Any Key When Ready. It wouldn’t be any wrong if we call this error being one of the scariest error. Most of the time the error occurs while working on the system and performing basic operations like copying files, moving files, installing ceratin programs, or running certain programs. This occurs right before the system boot. So as soon as you turn on the system the error appears. The first thing that comes to mind after getting this error is your data. We know how much your data means to you. That is why we have gathered all the possible ways to eliminate this error.

non system disk or disk error

Causes of Non System Disk or Disk Error Problem

Talking of the causes of Non System Disk or Disk Error Replace And Strike Any Key When Ready Windows 10, the error can be caused due to multiple reasons. If you had recently installed any application from a third-party source then maybe that it was infected and corrupted your system files. Also, any sort of virus or malware can also cause this issue. Furthermore, bad sectors in your hard drive can also be the cause. Users have also reported that the issue was temporary and the issue was fixed after rebooting.

  • Installation of any infected application
  • Virus or malware attack on the system
  • Possible corruption in the system files of the windows
  • Bad sectors on your hard drive
  • Loose Connection in between system hardware
  • Boot Order is not right

Similar Types of Non System Disk or Disk Error Issue

  • USB boot
  • Compaq
  • HP computer
  • PC
  • Ubuntu
  • Non-system disk press any key
  • After replacing hard drive
  • Hp disk error
  • Disk error on boot
  • Disk error message

How to Fix Non System Disk or Disk Error Replace And Strike Any Key When Ready

Since the error doesn’t appear while we are in the OS so there isn’t much we can do. But still, there are some ways in which this error can be resolved as reported bt the users. Below are all the ways you can solve Non System Disk or Disk Error Replace And Strike Any Key When Ready Windows 10.

1. Check if your Hard Disk is Connected Properly

If you have recently replaced your hard disk or repaired your system then chances are that the hard drive is loosely connected. If you haven’t replaced or repaired then also it is recommended that you should check if the hard disk is properly connected. Also, there might be dust stuck between the ports so clean them properly and reconnect the Hard drive. So then you can get rid of Non System Disk or Disk Error Replace And Strike Any Key When Ready Windows 10.

  • Check if the hard disk is properly connected
  • Clean the connection port between both the Hard drive and main system hardware

2. BIOS Hard Drive Diagoning Test

So if all the ports and wiring are connected properly. The next thing you can do is to perform a hard drive test using the BIOS. So that you may know what are the possible Non System Disk or Disk Error Replace And Strike Any Key When Ready Windows 10 issues with the hard drive.

  • STEP 1. Shut down your system first
  • STEP 2. Now reboot, once screen light turn up, press the BIOS hotkey continuously
**NOTE: BIOS hotkey can be different depending upon the manufacturer,
usually, it is F2, F5, F8, or Del key.
  • STEP 3. Once you get into the BIOS you can stop pressing the key
  • STEP 4. Now locate and go to Advanced/Diagnostic or similar tab
  • STEP 5. Here you will find the option to test the hard drive or possible errors

bios

  • STEP 6. Perform the scan completely and if there are any errors fix them
  • STEP 7. After fixing reboot to system and check if the error still persists

3. Correcting the Boot Order

If you have recently installed windows, chances are that the boot order has been disturbed. The boot order is the order of a booting device, like a thumb drive or system. If the system hard drive isn’t set to first then chances are the error is appearing. Follow the step to fix the Non System Disk or Disk Error Replace And Strike Any Key When Ready Windows 10 issue.

  • STEP 1. Power off your system
  • STEP 2. Power it on again, as soon as you power on, you have to press the BIOS hotkey continuously
**NOTE: BIOS hotkey can be different depending upon the manufacturer,
usually, it is F2, F5, F8, or Del key.
  • STEP 3. Once you get into the BIOS head on to the BOOT/BOOT Configuration or similar tab
  • STEP 4. Here can set the Boot order, make sure to put your internal hard drive on the top of the priority list

non system disk or disk error

4. Repairing Your Computer

One of the ways to fix the Non System Disk or Disk Error Replace And Strike Any Key When Ready Windows 10 on the system files is to use the Repair my computer feature. In order to use this feature, you will need a bootable media like a thumb drive or windows DVD. Follow the steps to see how it is done.

  • STEP 1. Put your Windows 10 bootable USB stick or DVD
  • STEP 2. Now Reboot your system and make sure to boot into the Bootable media drive
  • STEP 3. Once you get to the windows installation screen
  • STEP 4. Here you have to locate Repair your computer option located at the bottom left of the screen

windows repair

  • STEP 4. Now navigate to Troubleshoot > Advanced Options > Command Prompt
  • STEP 5. Once you get to the command prompt execute the commands mentioned below
**NOTE: After each command press enter
bootrec /fixmbr
bootrec /fixBoot
bootrec /scanos
bootrec /rebuildbcd

bootrec

  • STEP 6. Once these commands have been executed your system files will be repaired
  • STEP 7. Reboot your system

5. Reinstall the Windows

If all of the methods fail to work and still the same Non System Disk or Disk Error Replace And Strike Any Key When Ready Windows 10 error is appearing. You cant do anything you have to reinstall the windows.

  • STEP 1. Connect the bootable media drive or DVD
  • STEP 2. Now boot into the media
  • STEP 3. Follow the on-screen instruction to install the windows
Conclusion:

In the above troubleshooting guide on fixing Fix Non System Disk or Disk Error Replace And Strike Any Key When Ready Windows 10. We have managed to give all the possible ways by which the error can be fixed. If you have fixed the issue by some other method tell us in the comments.

For more similar guides and tips like this Non System Disk or Disk Error Replace And Strike Any Key When Ready Windows 10 follow us. Thank you!

Содержание

  1. Инструкция по устранению проблемы
  2. Сброс загрузочной последовательности
  3. Проверка состояния жесткого диска
  4. Извлечение винчестера и его повторная установка
  5. Переустановка или восстановление системы
  6. Что еще может помочь – советы от обычных пользователей
  7. Правильно выставить приоритет загрузки
  8. Отключение поиска информации в дисководе
  9. Подведем итоги

Non system disk or disk error replace and strike any key when ready – ошибка, с которой при загрузке операционной системы могут столкнуться владельцы ноутбуков HP или персональных компьютеров другой марки. Перевод на русский язык этой фразы – «Несистемный диск или ошибка диска замените и нажмите любую клавишу, когда будете готовы».

Что значит подобное сообщение? Оно означает, что при попытке запуска BIOS пытается обнаружить по указанным путям в настройках операционную систему. Но не может это сделать по каким-то причинам. В итоге, компьютер банально не запускается. И возникает вопрос- что делать?

Non system disk or disk error replace and strike any key when ready: что делать?

Сам производитель этих ноутбуков, компания HP, подготовил специальную инструкцию, которое следует воспользоваться именно в этой ситуации. Предназначена она, в первую очередь, для техники с операционными системами Windows 7 и Vista, но многие пункты можно реализовывать и с другими версиями этой ОС.

Инструкция по устранению проблемы

Желательно действовать в выбранной последовательности, так как именно ее считают наиболее эффективной и действенной представители компании-производителя:

Исключить ненужные накопители для поиска системы

Делается это очень просто:

  • Временно отключить любое внешнее устройство, которое подключается к ноутбуку посредством USB-порта;
  • Убедиться, что в приводе отсутствуют какие-нибудь диски.

Non system disk or disk error replace and strike any key when ready: что делать?

После этого рекомендуется зажать на 10-15 секунд кнопку питания техники, чтобы она полностью отключилась. Через пару секунд – включить оборудование и проверить результат. Если «ошибка чтения диска» исчезла, и система загружается нормально, то обязательно осуществить следующий пункт этой инструкции.

Сброс загрузочной последовательности

Этот этап необходимо реализовать, чтобы ситуация не повторилась снова – при том же подключении ранее деактивированных ЮСБ-устройств.

Что необходимо:

  • Выполнить перезапуск оборудования;
  • Нажать на «F10», чтобы активировалось окно системной конфигурации;
  • Перейти в Boot Order через раздел Boot options;
  • Воспользоваться клавишей «F9», чтобы выполнить сброс этих настроек до изначальных.

Boot Order

Обязательно подтвердить делаемые изменения.

Проверка состояния жесткого диска

Производитель изначально оснастил свое оборудованием специальными инструментами, позволяющими сделать необходимую проверку и избавиться от проблем, которые могут приводить к возникновению на экране сообщения «Non system disk or disk error replace and strike any key when ready».

Первый вариант:

  • Выполнить выключение/включение ноутбука и нажать «F10»;
  • В настройках БИОСа перейти в раздел «Средства диагностики», затем – в «Диагностику»;
  • Выбрать Hard Drive Self Test;
  • Система предложит быстрое или полное тестирование. Можно начать с первого, но второй вариант желательно также провести.Hard Drive Self Test

При запуске тестирования программа покажет время, необходимое ей для работы. Потребуется выждать его, перезапустить комп и проверить результат.

Второй вариант, если первый не помог или отсутствует в BIOS:

  • В очередной раз полностью отключить компьютер. Подождать пару секунд и активировать его;
  • Нажать на «F2». Несколько раз. Пока на экране не возникнет «Аппаратная диагностика UEFI для ПК HP»;
  • Перейти в проверку компонентов;
  • Выбрать проверку жесткого диска. Активировать тест в быстром режиме;
  • Подождать результата и повторить тестирование еще раз.

Hardware diagnostics UEFI for HP PC

Программа затребует диск, которые следует продиагностировать, если их используется несколько. Указать тот, который необходимо протестировать.

Не спешите выходить из этого окна. После парочки быстрых проверок рекомендуется запустить полное тестирования и дождаться результатов.

Извлечение винчестера и его повторная установка

Этот этап является необходимостью перед тестированием накопителя, описанными выше способами, если перед появлением сбоя ноутбук случайно упал. Или к нему было применено физическое воздействие другого типа.

Изначально нужно извлечь винчестер:

  • Полностью выключить ноутбук;
  • Перевернуть его, чтобы появилась возможность добраться до отсека с АКБ;
  • Переставить все защелки в положение «открыто». Выдвинуть и достать батарею из компьютера.

Теперь можно достать сам жесткий диск:

  • Взять подходящую крестовую отвертку и ослабить специальные винты, которые фиксируют крышку накопителя к самому ноутбуку;
  • Приподнять крышечку и аккуратно извлечь жесткий диск;
  • Ослабить подпружиненные винты;
  • Аккуратно прижать выступ винчестера и потянуть его к внешнему краю корпуса. Это позволит отсоединить устройство от материнки.
  • Теперь можно полностью вытащить винчестер из отсека.

замена HDD

Первый этап пройден. Теперь нужно поставить его обратно:

  • Вставить накопитель в предназначенный для него отсек;
  • Задвинуть жесткий диск внутрь, пока не будет обеспечена надежная фиксация;
  • Затянуть подпружиненные болты, установить крышку на место ее эксплуатации, затянуть фиксирующие ее болты.

АКБ устанавливается таким образом, чтобы был слышан характерный щелчок.

Переустановка или восстановление системы

Если все описанные выше варианты не принесли требуемого результата, то представители компании-производителя рекомендуют выполнить переустановку операционной системы или ее восстановление.

HP Recovery Manager

Для первого пункта потребуется наличие специально созданного загрузочного диска. Для второго – воспользоваться фирменной утилитой, которая называется HP Recovery Manager.

Что еще может помочь – советы от обычных пользователей

Non system disk or disk error replace and strike any key when ready: что делать?

Многие пользователи вообще не знают о существовании вышеописанной инструкции. Или всегда стараются действовать полностью самостоятельно. Поэтому не удивительно, что от юзеров часто также поступают весьма дельные советы, которые могут оказаться весьма эффективными:

Правильно выставить приоритет загрузки

Необходимо зайти в БИОС и выставить очередность устройств таким образом, чтобы на первом месте всегда находился жесткий диск. Если будет указан дисковод или ЮСБ-устройство, то вполне логично – ноутбук сначала попытается найти загрузочную область именно там. И иногда это может привести к возникновению именно этого неприятного состояния.

биос загрузка с хдд

Естественно, меня приоритетность загрузки, не стоит забывать о сохранении сделанных изменений.

Отключение поиска информации в дисководе

Потребуется, если каждый раз при загрузке человек вынужден дополнительно нажимать клавишу «F1» для ее продолжения.

Опять следует посетить меню БИОС. Найти в нем пункт «Floppy». Выставить рядом с ним «none» или «Disabled». Естественно, сохранить изменения и спокойно перезапуститься.

Подведем итоги

Итак, чтобы избавиться от проблем с загрузкой операционной системы, которая приводит к возникновению на экране сообщения Non system disk or disk error, требуется следующее:

  1. Исключить возможность поиска нужной информации на альтернативных источниках.
  2. Выставить правильную приоритетность устройств запуска.
  3. Убедиться в отсутствии повреждений жесткого диска.

В крайнем случае может потребоваться полная переустановка ОС Виндовс.

Понравилась статья? Поделить с друзьями:
  • Non recoverable error
  • Non raid disk как исправить на компьютере
  • Non page area windows 10 ошибка
  • Non oracle error
  • Non omnis error stultitia est dicenda