1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 21:35:24 +02:00

mkfs: add Hindi translation (#13929)

Create mkfs.md
This commit is contained in:
RAJ RAUT 2024-10-02 17:19:27 +05:30 committed by GitHub
parent 217810f009
commit e7e1b8c736
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

17
pages.hi/linux/mkfs.md Normal file
View 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}}`