web-dev-qa-db-ja.com

Windowsウイルスに感染し、書き込み保護されているFAT32ファイルシステムをフォーマットする方法

FAT32ファイルシステムを搭載したペンドライブがあります。ウイルスに感染していますが、autorun.infを持ち、フォルダ内にexeファイルを作成します。さまざまなファイルシステムでフォーマットしようとしましたが、GPartedで削除しようとしましたが、書き込み保護されていると言うためファイルを削除することさえできませんでした。フォーマットする方法は?

user @ explorerx:〜$ Sudo fdisk -l

Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xbd04bd04

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         498     3998720   82  Linux swap / Solaris
Partition 1 does not end on cylinder boundary.
/dev/sda2             499       19457   152287585+   f  W95 Ext'd (LBA)
/dev/sda5            5100       10198    40957686    7  HPFS/NTFS
/dev/sda6           10199       14787    36861111    7  HPFS/NTFS
/dev/sda7           14788       19457    37511743+   7  HPFS/NTFS
/dev/sda8             499        5099    36956160   83  Linux

Partition table entries are not in disk order

Disk /dev/sdc: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xc13bc13b

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1               1        9729    78143488    7  HPFS/NTFS
/dev/sdc2            9729       19457    78143488    7  HPFS/NTFS

Disk /dev/sdb: 4194 MB, 4194304000 bytes
112 heads, 47 sectors/track, 1556 cylinders
Units = cylinders of 5264 * 512 = 2695168 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               2        1557     4091904    b  W95 FAT32

karthick87の更新

user @ explorerx:〜$ sudo fdisk/dev/sdb

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
     switch off the mode (command 'c') and change display units to
     sectors (command 'u').

Command (m for help): d
Selected partition 1

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)

E
4
Santosh Linkha

何かが失敗した場合は、 Transcend から専用の回復ツールを実行して、ペンドライブを低レベルで再フォーマットする必要があります。

残念ながら、このツールにはWindowsが必要です。さらに、製品シリアル番号(S/N)(私の場合、これは製品のブリスターにのみ印刷されています)。 S/Nを紛失した場合は、トランセンドに連絡する必要があります。

2
Takkat

試しましたか:

Sudo mkfs.vfat /dev/sdb1

devはマウントしないでください

1
jet

シンプルでなければなりません。ドライブがアンマウントされていることを確認してから、現在のパーティションを削除してから、新しいパーティションを作成する必要があります。これを行う方法に関する非常に良いチュートリアルを見つけました。私のために働いた。 buntuでディスクを再フォーマットおよびパーティション化する方法

0
Jim Stamp