غیر قابل استفاده شدن فلش
با عرض سلام
دوستان من یه فلش 8 گیگ patriot دارم. تازه خریده شده و بعد از اینکه بوتیبلش کردم و باهاش ویندوز نصب کردم، از fat32 به raw تبدیل شده و پیغام فرمت میاد در صورتیکه که فرمت هم نمیشه و write protect شده.نظری ندارید که بشه فلش رو قابل استفاده مجدد کرد؟؟
پیشاپیش تشکر از توجهتون
3 پاسخ
ممنونم دوستان
اما دیسک پارت جواب نمیده
درود
من مشکلی مشابه با مشکل شما داشتم، بعد از اینکه فلشم رو برای نصب یک نسخه لینوکس بوتیبل کردم متوجه شدم که سایزش نصف شده، 8 گیگ بود و تبدیل شده بود به 4 گیگ !!! فرمت هم می کردمش باز هم همون 4 گیگ رو نشون میداد، به یک سیستم لینوکسی متصلش کردم و با اون فرمتش کردم و درست شد، حالا شما هم با لینوکس امتحان کنید احتمالا درست میشه
باید از دستور diskpart استفاده کنید ، برای من هم چند باری اتفاق افتاده و جواب داده
et’s remove unallocated space. First of all run Windows command line and type diskpart in the command prompt. Windows will ask you for Administrator permissions to run the tool. Then run list disk command to find your USB flash disk’s number. It should be the same as disk’s number in Computer Management tool. It was 1 in my case. Next you should chose the disk to work with. Type select disk <disk number> command, e.g. select disk 1. The next step is to clean all volumes and partitions on the disk. Use clean command to do that. The last step is to create a primary partition. You can do that using create partition primary command. That’s all. You should be able to format your flash disk now.
This is how I removed unallocated space on my machine:
Microsoft DiskPart version 6.2.9200 Copyright (C) 1999-2012 Microsoft Corporation. On computer: COMPUTER DISKPART> list disk Disk ### Status Size Free Dyn Gpt -------- ------------- ------- ------- --- --- Disk 0 Online 298 GB 0 B Disk 1 Online 7509 MB 6619 MB DISKPART> select disk 1 Disk 1 is now the selected disk. DISKPART> clean DiskPart succeeded in cleaning the disk. DISKPART> create partition primary DiskPart succeeded in creating the specified partition. DISKPART> exit