web-dev-qa-db-ja.com

古いHPラップトップにLubuntuをインストールする際の非システムディスクまたはディスクエラー

Lubuntuを搭載したい古いHPラップトップがあります(以前はWin 7を搭載していました)。 USBから起動し、Lubuntuをインストールしましたが、ラップトップのハードドライブから起動しようとすると、

non system disk or disk error

エラー。誰かが同様の何かに遭遇しましたか?そうであれば、あなたはそれを修正する方法を知っていますか?

1
Nenad

Fdsikを使用して、ブータブルパーティションがないことがわかったので、次のようにしました。

fdisk  /dev/sda

コマンド(ヘルプの場合はm):m

Command action
a   toggle a bootable flag
b   edit bsd disklabel
c   toggle the dos compatibility flag
d   delete a partition
l   list known partition types
m   print this menu
n   add a new partition
o   create a new empty DOS partition table
p   print the partition table
q   quit without saving changes
s   create a new empty Sun disklabel
t   change a partition's system id
u   change display/entry units
v   verify the partition table
w   write table to disk and exit
x   extra functionality (experts only)

Command (m for help): a

パーティションは1つしかなかったため、自動的にそのパーティションに設定されました。その後、すべてがうまくいきました。

1
Nenad