एमकेएसडीकार्ड
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
mksdcard
टूल का इस्तेमाल करके, Drive के लिए एक FAT32 इमेज बनाएं, जिसमें फ़ाइल को लोड किया जा सके
अलग-अलग Android वर्चुअल डिवाइसों (एवीडी) का इस्तेमाल करने वाले एम्युलेटर
करने की सुविधा मिलती है.
Android SDK टूल के टूल पैकेज में दिया गया mksdcard
टूल
android-sdk/emulator/mksdcard
में है.
अगर डिस्क में सेव की गई ऐसी इमेज की ज़रूरत नहीं है जिसे शेयर किया जा सकता है
आपको mksdcard
कमांड का इस्तेमाल करने की ज़रूरत नहीं है.
डिफ़ॉल्ट रूप से, एम्युलेटर उस डिफ़ॉल्ट इमेज का इस्तेमाल करता है जिसे इमेज
एवीडी चालू होनी चाहिए.
इस्तेमाल
mksdcard
टूल का इस्तेमाल करने के लिए, इस निर्देश का इस्तेमाल करें:
mksdcard -l label size file
विकल्प
नीचे दी गई टेबल में, mksdcard
के कमांड-लाइन विकल्पों के बारे में बताया गया है:
विकल्प |
ब्यौरा |
-l label |
डिस्क इमेज बनाने के लिए वॉल्यूम लेबल |
size |
वह पूर्णांक जो डिस्क इमेज बनाने के लिए उसका साइज़ तय करता है.
अगर size एक सामान्य पूर्णांक है, तो यह साइज़ को बाइट में बताता है. आप यह भी कर सकते हैं
K, M, या G को जोड़कर, किलोबाइट, मेगाबाइट या गीगाबाइट में साइज़ तय करें
size तक. उदाहरण के लिए, 1048576K या 1024M . कॉन्टेंट बनाने
कम से कम साइज़ 9M हो. Android एम्युलेटर, छोटी इमेज का इस्तेमाल नहीं कर सकता. ज़्यादा से ज़्यादा साइज़ इतना है
1099511627264 बाइट, जो 1023 जीबी के बराबर है.
|
file |
मौजूदा वर्किंग डायरेक्ट्री के हिसाब से बनाने के लिए, डिस्क इमेज का पाथ/फ़ाइल नाम.
|
उदाहरण
mySdCardFile.img
डिस्क इमेज बनाएं:
mksdcard -l mySdCard 1024M mySdCardFile.img
अलग-अलग एवीडी वाले दो एम्युलेटर शुरू करें. नाम की जानकारी देने के लिए, -sdcard
फ़्लैग का इस्तेमाल करें
और आपकी बनाई डिस्क इमेज का पाथ:
emulator -avd Pixel_API_25 -sdcard mySdCardFile.img
emulator -avd NEXUS_6_API_25 -sdcard mySdCardFile.img
इस बारे में ज़्यादा जानकारी पाने के लिए
emulator
निर्देश और उसके विकल्प,
कमांड लाइन से एम्युलेटर शुरू करें देखें.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया."],[],[],null,["# mksdcard\n\nUse the `mksdcard` tool to create a FAT32 disk image that you can load into\nemulators running different Android Virtual Devices (AVDs) to simulate the presence\nof the same SD card in multiple devices.\n\n\nThe `mksdcard` tool provided in the Android SDK Tools package\nis located in \u003cvar translate=\"no\"\u003eandroid-sdk\u003c/var\u003e`/emulator/`\u003cvar translate=\"no\"\u003emksdcard\u003c/var\u003e.\n\n\nIf you don't need a disk image that can be shared\namong multiple virtual devices, you don't need to use the `mksdcard` command.\nBy default, the emulator uses the default image that is generated by and stored with the\nactive AVD instead.\n\n### Usage\n\n\nTo use the `mksdcard` tool, use the following command:\n\n```\nmksdcard -l label size file\n```\n\n### Options\n\nThe following table describes the command-line options of `mksdcard`:\n\n| Option | Description |\n|--------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `-l `\u003cvar translate=\"no\"\u003elabel\u003c/var\u003e | A volume label for the disk image to create |\n| \u003cvar translate=\"no\"\u003esize\u003c/var\u003e | An integer that specifies the size of the disk image to create. If \u003cvar translate=\"no\"\u003esize\u003c/var\u003e is a simple integer, it specifies the size in bytes. You can also specify the size in kilobytes, megabytes, or gigabytes by appending K, M, or G to \u003cvar translate=\"no\"\u003esize\u003c/var\u003e. For example, `1048576K` or `1024M`. The minimum size is 9M. The Android emulator cannot use smaller images. The maximum size is 1099511627264 bytes, which equates to 1023 GB. |\n| \u003cvar translate=\"no\"\u003efile\u003c/var\u003e | The path/filename of the disk image to create relative to the current working directory. |\n\n### Example\n\n\nCreate the `mySdCardFile.img` disk image: \n\n```\nmksdcard -l mySdCard 1024M mySdCardFile.img\n```\n\n\nStart two emulators with different AVDs. Use the `-sdcard` flag to specify the name\nand path of the disk image you created: \n\n```\nemulator -avd Pixel_API_25 -sdcard mySdCardFile.img\nemulator -avd NEXUS_6_API_25 -sdcard mySdCardFile.img\n```\nFor more information about the `emulator` command and its options, see [Start the emulator from the command line](/studio/run/emulator-commandline)."]]