tldr/pages.fa/common/dd.md

29 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# dd
> تبدیل و کپی یک فایل.
> اطلاعات بیشتر: <https://www.gnu.org/software/coreutils/dd>.
- یک حافظه قابل حمل با قابلیت بوت شدن میسازد، برای مثال `archlinux-xxx.iso` :
`dd if={{path/to/file.iso}} of=/dev/{{usb_drive}}`
- محتویات یک درایو را در مکانی دیگر با بلوک های 4 مگابایتی کپی و همچنین از خطاها صرف نظر میکند:
`dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs={{4194304}} conv={{noerror}}`
- یک فایل ۱۰۰ بایتی تصادفی با استفاده از درایور تصادفی هسته بسازید:
`dd if=/dev/urandom of={{path/to/random_file}} bs={{100}} count={{1}}`
- عملکرد نوشتن دیسک را بسنجید:
`dd if=/dev/zero of={{path/to/file_1GB}} bs={{1024}} count={{1000000}}`
- یک پشتیبان از سیستم را در یک فایل IMG میسازد :
`dd if={{/dev/drive_device}} of={{path/to/file.img}}`
- یک درایو را از یک فایل IMG بازیابی کنید:
`dd if={{path/to/file.img}} of={{/dev/drive_device}}`