mksdcard
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Użyj narzędzia mksdcard
, aby utworzyć obraz dysku FAT32, do którego będzie można wczytać plik
emulatory obsługujące różne wirtualne urządzenia z Androidem w celu symulowania obecności;
tej samej karty SD w kilku urządzeniach.
Narzędzie mksdcard
dostępne w pakiecie Android SDK Tools
znajduje się w lokalizacji: android-sdk/emulator/mksdcard
.
Jeśli nie potrzebujesz obrazu dysku, który można udostępnić
między wieloma urządzeniami wirtualnymi, nie musisz używać polecenia mksdcard
.
Domyślnie emulator używa domyślnego obrazu generowanego i zapisywanego przez
aktywny średni czas oglądania.
Wykorzystanie
Aby użyć narzędzia mksdcard
, użyj tego polecenia:
mksdcard -l label size file
Opcje
W poniższej tabeli opisano opcje wiersza poleceń mksdcard
:
Option |
Opis |
-l label |
Etykieta woluminu, w której ma zostać utworzony obraz dysku |
size |
Liczba całkowita określająca rozmiar obrazu dysku do utworzenia.
Jeśli size jest prostą liczbą całkowitą, określa rozmiar w bajtach. Możesz też
określ rozmiar w kilobajtach, megabajtach lub gigabajtach, dołączając K, M lub G
do size. na przykład 1048576K lub 1024M .
minimalny rozmiar to 9 MB. Emulator Androida nie może używać mniejszych obrazów. Maksymalny rozmiar to
1099511627264 bajty, co odpowiada 1023 GB.
|
file |
Ścieżka lub nazwa pliku obrazu dysku do utworzenia względem bieżącego katalogu roboczego.
|
Przykład
Utwórz obraz dysku mySdCardFile.img
:
mksdcard -l mySdCard 1024M mySdCardFile.img
Uruchom dwa emulatory z różnymi urządzeniami AVD. Określ nazwę za pomocą flagi -sdcard
i ścieżkę utworzonego obrazu dysku:
emulator -avd Pixel_API_25 -sdcard mySdCardFile.img
emulator -avd NEXUS_6_API_25 -sdcard mySdCardFile.img
Więcej informacji na temat
emulator
i jego opcje,
zapoznaj się z sekcją
Uruchamianie emulatora z wiersza poleceń.
Treść strony i umieszczone na niej fragmenty kodu podlegają licencjom opisanym w Licencji na treści. Java i OpenJDK są znakami towarowymi lub zastrzeżonymi znakami towarowymi należącymi do firmy Oracle lub jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-07-27 UTC.
[[["Łatwo zrozumieć","easyToUnderstand","thumb-up"],["Rozwiązało to mój problem","solvedMyProblem","thumb-up"],["Inne","otherUp","thumb-up"]],[["Brak potrzebnych mi informacji","missingTheInformationINeed","thumb-down"],["Zbyt skomplikowane / zbyt wiele czynności do wykonania","tooComplicatedTooManySteps","thumb-down"],["Nieaktualne treści","outOfDate","thumb-down"],["Problem z tłumaczeniem","translationIssue","thumb-down"],["Problem z przykładami/kodem","samplesCodeIssue","thumb-down"],["Inne","otherDown","thumb-down"]],["Ostatnia aktualizacja: 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)."]]