mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 21:35:24 +02:00
parent
217810f009
commit
e7e1b8c736
1 changed files with 17 additions and 0 deletions
17
pages.hi/linux/mkfs.md
Normal file
17
pages.hi/linux/mkfs.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# mkfs
|
||||
|
||||
> एक हार्ड डिस्क पार्टीशन पर लिनक्स फाइल सिस्टम बनाएं।
|
||||
> यह कमांड अब अप्रचलित है, और इसके स्थान पर फाइल सिस्टम विशेष mkfs.<type> यूटिलिटीज़ का उपयोग करें।
|
||||
> अधिक जानकारी: <https://manned.org/mkfs>।
|
||||
|
||||
- एक पार्टीशन पर लिनक्स ext2 फाइल सिस्टम बनाएं:
|
||||
|
||||
`mkfs {{path/to/partition}}`
|
||||
|
||||
- निर्दिष्ट प्रकार का फाइल सिस्टम बनाएं:
|
||||
|
||||
`mkfs -t {{ext4}} {{path/to/partition}}`
|
||||
|
||||
- निर्दिष्ट प्रकार का फाइल सिस्टम बनाएं और खराब ब्लॉक्स के लिए जांच करें:
|
||||
|
||||
`mkfs -c -t {{ntfs}} {{path/to/partition}}`
|
Loading…
Add table
Reference in a new issue