একটি পরিষ্কার অবস্থা থেকে শুরু করতে আমার কমান্ড লাইন থেকে একটি হার্ড ডিস্কটি খালি অবস্থায় পুনরায় সেট করতে হবে।
এটি একটি মোছা ইউটিলিটি চালানোর বিষয়ে নয়, ডেটা ওভাররাইট করা হবে না।
এই প্রশ্নটি কমান্ড লাইন থেকে সমস্ত বিভাজন মুছে ফেলার মতোই
সেখানে সমাধান বেশ ভাল কাজ করে,
dd if=/dev/zero of=/dev/sda bs=512 count=1 conv=notrunc
তবে যদি আমি এই জাতীয় ওভাররাইটেড ডিস্কের সাথে কাজ করতে চাই, তবে আমি ত্রুটিটি পেয়েছি যে ডিভাইসটি এখনও ব্যবহৃত হচ্ছে।
root@grml ~ # blockdev --rereadpt /dev/sda
BLKRRPART: Device or resource busy
অথবা
root@grml ~ # partprobe
Error: Partition(s) 2, 3 on /dev/sda have been written, but we have been unable to inform the kernel of the change, probably because it/they are in use. As a result, the old partition(s) will remain in use. You should reboot now before making further changes.
Error: Partition(s) 2, 3 on /dev/sdb have been written, but we have been unable to inform the kernel of the change, probably because it/they are in use. As a result, the old partition(s) will remain in use. You should reboot now before making further changes.
সুতরাং ডিভাইসে যা "বসেছে" তা আমাকে নিজেই অক্ষম করতে হবে
umount /mnt/debootstrap
umount /mnt/debootstrap/tmp
umount /mnt/debootstrap/var/log
umount /mnt/debootstrap/var
umount /mnt/debootstrap/home
service mdadm stop
service lvm2 stop
vgremove vg_main
pvremove /dev/md1
mdadm --stop /dev/md0
mdadm --stop /dev/md1
mdadm --remove /dev/md0
mdadm --remove /dev/md1
এর পরে partprobe
কমান্ড কাজ করে।
কিছু আদেশ আছে যা সহজ কাজ করে? মত
harddiskreset /dev/sda
সুতরাং এটি সহজেই আলাদা পার্টিশন / lvm / এমডি লেআউট সহ সিস্টেমে ব্যবহার করা যায়?