web-dev-qa-db-ja.com

Ubuntuのインストール後にUSBスティックを復元する方法は?

Xubuntu 12.04を搭載したliveUSBスティックを作成しました。 MacBook AirにXubuntuをインストールしました。 USBスティックを接続すると、認識されなくなります。通常のストレージUSBスティックとして再び使用するために、どのように認識してフォーマットすることができますか?

5
Marius Hofert

参照用の簡単な手順を次に示します。

A.最初に、USBキーに残っている古いパーティションを削除する必要があります。

Open a terminal and type Sudo su
Type fdisk -l and note your USB drive letter.
Type fdisk /dev/sdx (replacing x with your drive letter)
Type d to proceed to delete a partition
Type 1 to select the 1st partition and press enter
Type d to proceed to delete another partition (fdisk should automatically select the second partition)

B.次に、新しいパーティションを作成する必要があります。

Type n to make a new partition
Type p to make this partition primary and press enter
Type 1 to make this the first partition and then press enter
Press enter to accept the default first cylinder
Press enter again to accept the default last cylinder
Type w to write the new partition information to the USB key
Type umount /dev/sdx1 (replacing x with your drive letter)

C.最後のステップは、ファットファイルシステムを作成することです。

Type mkfs.vfat -F 32 /dev/sdx1 (replacing x with your USB key drive letter)

これで、任意のコンピューターから読み取ることができる単一のファット32パーティションを持つ復元されたUSBキーができました。

6
vicd

Linuxをインストールした直後には、これは最適ではないかもしれません。私が見つけた最も簡単な修正は、WindowsでUSBをフォーマットすることです。

表示されない場合タップスタート>右クリックコンピューター> D isk(またはデバイス)マネージャー>すべてのUSBパーティションを慎重に削除してからフォーマットします新しいパーティション。

0
Dawoodjee