From e7e1b8c736672e5936115f8b0c2c8db5d6220d2b Mon Sep 17 00:00:00 2001 From: RAJ RAUT <107211922+raj-raut8502@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:19:27 +0530 Subject: [PATCH] mkfs: add Hindi translation (#13929) Create mkfs.md --- pages.hi/linux/mkfs.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages.hi/linux/mkfs.md diff --git a/pages.hi/linux/mkfs.md b/pages.hi/linux/mkfs.md new file mode 100644 index 0000000000..9b00c760c0 --- /dev/null +++ b/pages.hi/linux/mkfs.md @@ -0,0 +1,17 @@ +# mkfs + +> एक हार्ड डिस्क पार्टीशन पर लिनक्स फाइल सिस्टम बनाएं। +> यह कमांड अब अप्रचलित है, और इसके स्थान पर फाइल सिस्टम विशेष mkfs. यूटिलिटीज़ का उपयोग करें। +> अधिक जानकारी: । + +- एक पार्टीशन पर लिनक्स ext2 फाइल सिस्टम बनाएं: + +`mkfs {{path/to/partition}}` + +- निर्दिष्ट प्रकार का फाइल सिस्टम बनाएं: + +`mkfs -t {{ext4}} {{path/to/partition}}` + +- निर्दिष्ट प्रकार का फाइल सिस्टम बनाएं और खराब ब्लॉक्स के लिए जांच करें: + +`mkfs -c -t {{ntfs}} {{path/to/partition}}`