web-dev-qa-db-ja.com

Windows10の後にUbuntuをインストールする際の複数のエラー

(コメントを読んで理解を深めてください)

それでは、最初から始めましょう。

Windows 10にUbuntuをダウンロードし、USBに書き込みました。再起動すると、起動オプションが表示され、Install Linuxを選択しました。すべてのデータをフォーマットする必要があるステップに到達しました。深夜だったのでパソコンを閉めました。

次回PCを開いたとき

Boot device not found

何度も試みた後、Linuxをインストールする必要があることがわかったので、始めました。 「ディスクの消去」を選択したところ、次のエラーが発生しました。

Error 1

そこで、「Something other」を選択すると、次のパーティションが作成されました。

Setup 1Setup 2

また、ディスクツールを使用してディスクをフォーマットしましたが、次のようになりました。

enter image description here

GPartedのスクリーンショット:

Gpartedenter image description hereenter image description here

とログ

:======================
libparted : 2.3
======================

(gpartedbin:19666): GLib-CRITICAL **: Source ID 7 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 6 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 10 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 9 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 29 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 28 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 56 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 55 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 60 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 59 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 66 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 65 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 73 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 72 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 79 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 78 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 84 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 83 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 87 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 86 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 92 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 91 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 95 was not found when attempting to remove it

(gpartedbin:19666): GLib-CRITICAL **: Source ID 94 was not found when attempting to remove it
/dev/sdb contains GPT signatures, indicating that it has a GPT table.  However, it does not have a valid fake msdos partition table, as it should.  Perhaps it was corrupted -- possibly by a program that doesn't understand GPT partition tables.  Or perhaps you deleted the GPT table, and are now using an msdos partition table.  Is this a GPT partition table?

コマンドSudo gdisk -l /dev/sdaは次の結果をもたらしました。

GPT fdisk (gdisk) version 0.8.8

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

Found valid GPT with protective MBR; using GPT.
Disk /dev/sda: 976773168 sectors, 465.8 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): D66EE60C-6D4C-4668-8DD8-94D5AAA8A182
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 976773134
Partitions will be aligned on 2048-sector boundaries
Total free space is 4077 sectors (2.0 MiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048         1050623   512.0 MiB   EF00  
   2         1050624         1550335   244.0 MiB   8300  
   3         1550336       976771071   465.0 GiB   8E00  

gdiskログ:

Sudo gdisk /dev/sda
GPT fdisk (gdisk) version 0.8.8

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

Found valid GPT with protective MBR; using GPT.

Command (? for help): x

Expert command (? for help): n

Expert command (? for help): w

Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!

Do you want to proceed? (Y/N): y
OK; writing new GUID partition table (GPT) to /dev/sda.
yWarning: The kernel is still using the old partition table.
The new table will be used at the next reboot.
The operation has completed successfully.
1
DevUt

@TomYanのコマンドで少し遊んでみた

Sudo gdisk -> x -> zを使用しました

パーティション全体をワイプして再起動しました(そして私はliveusbを使用していたので、[再起動]をクリックして、後の画面で入力しました)

再起動しました。[他の何か]をクリックして、そのパーティションをクリックすると論理的になり、マウントポイントを/にして、[続行]をクリックすると、スワップについて警告されましたが、続行して正常にインストールされました。

再起動後、sawpパーティションを追加しました

0
DevUt