Создать файловую систему ntfs linux

Команда mkfs в Linux

Команда mkfs (Make file system) используется в Linux чаще всего для создания файловой системы в разделе жёсткого диска.

Команда Linux mkfs

Синтаксис

mkfs [параметры] [-t ] [параметры ФС] []

Опции

-t, —type= <тип>Тип файловой системы; ext2, если ничего не указано fs-options Параметры для программы создания реальной файловой системы Путь к используемому устройству Число используемых блоков устройства -V, —verbose Подробная информация о выполняемых действиях; указание параметра -V более одного раза приведет к тестовому запуску

Типы файловых систем

Вы можете увидеть список файловых систем, доступных для создания вашим дистрибутивом Linux. Для этого следует набрать в терминале команду и дважды нажать клавишу Tab:

Команда Linux mkfs, список доступных файловых систем

Эти варианты предлагают дистрибутивы Arch Linux и Ubuntu

Выбор файловой системы

Самой популярная файловая система Linux в настоящее время — Ext4. Она проверена, надёжна и является стандартной для ряда дистрибутивов. Ext4 позволяет уменьшить фрагментацию файлов и работать с очень большими дисками, разделами и файлами.

Создание файловой системы BFS вряд когда-либо потребуется, так как она является загрузочной и создаётся при установке Linux.

Системы MSDOS и FAT являются устаревшими и мало кому-нибудь нужны.

Система VFAT обычно используется на внешних носителях: флеш-накопителях, картах памяти.

Файловая система NTFS может потребоваться тем пользователям, которые хотят получить совместимость с операционной системой Windows.

Создание файловой системы

Помните! Все данные, находившиеся ранее на разделах будут безвозвратно утеряны!

Создаём файловую систему ext2 на /dev/sdb1 :

oleg@mobile:~:$ sudo mkfs -t ext2 /dev/sdb1 mke2fs 1.46.5 (30-Dec-2021) /dev/sdb1 contains a ext2 file system created on Sat Jul 2 11:34:38 2022 Proceed anyway? (y,N) y Creating filesystem with 3781376 4k blocks and 946560 inodes Filesystem UUID: d1be6ca8-ecd2-4e35-af67-5cceb323cb4e Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208 Allocating group tables: done Writing inode tables: done Writing superblocks and filesystem accounting information: done 

При создании файловой системы ext2 можно использовать команду mkfs и так:

Утилита mkfs без опций также создаст файловую систему ext2 по умолчанию.

При создании других файловых систем необходимо указывать их тип.

Проверка устройства хранения на наличие бед-блоков:

oleg@mobile:~:$ sudo mkfs -c /dev/sdb1 mke2fs 1.46.5 (30-Dec-2021) /dev/sdb1 contains `DOS/MBR boot sector' data Proceed anyway? (y,N) y Creating filesystem with 3781376 4k blocks and 946560 inodes Filesystem UUID: d1cf78a6-aa45-41d7-9889-2e23c8103f06 Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208 Checking for bad blocks (read-only test): done Allocating group tables: done Writing inode tables: done Writing superblocks and filesystem accounting information: done 

Подобная проверка занимает значительное время.

Проверка типа файловой системы носителя:

oleg@mobile:~:$ sudo file -sL /dev/sdb1 /dev/sdb1: Linux rev 1.0 ext2 filesystem data, UUID=d1be6ca8-ecd2-4e35-af67-5cceb323cb4e (large files)

Выводы

Использование команды Linux mkfs не представит серьёзных трудностей даже при недостатке опыта. Необходимо лишь быть очень внимательным, ведь по ошибке можно навсегда распрощаться с данными, находившимися ранее на разделах диска.

Читайте также:  Linux which packages installed

Источник

Команда mkfs.ntfs: опции, ключи и примеры использования

Переведено в рамках проекта tldr-ru. Licensed under the CC-BY (original work).

mkfs.ntfs

Создает файловую систему NTFS на разделе.

Изображение Шпаргалка по командам Linux, FreeBSD и MacOS

Операционная система Linux (Линукс или Лайнакс) во многом похожая на проприетарную Unix. Линукс распространён на серверах, что означает, что изучая её вы улучшаете свой навык администрирования, DevOps и программирования. Открытая …

Фото Linux

Заметки об Операционной Системе FreeBSD (фри бсд). Один из старейших Unix (Юникс), прародитель многих ОС, а также по мнению многих — самая свободная операционная система. Разработан в рамках общего проекта …

Фото FreeBSD

Полезные заметки по работе с командной строкой: bash и прочие *sh. Однострочники, скрипты, позволяющие решать большие и малые задачи администрирования и настройки Юникс систем. Zsh для современного MacOS, Bash для …

Фото Трюки Bash

Команды и инструкции терминала (консоли) Linux, MacOS, Windows и прочих операционных систем. Трюки и особенности командных оболочек, скрипты для администрирования Unix. Программирование и скриптование Windows и Linux, тонкая настройка Macos. …

Фото Терминал/Консоль

Фото Как установить пакеты из requirements.txt через pip, игнорируя ошибки

Простой способ установить список зависимостей пакета через стандартный Python менеджер пакетов. При этом чтобы pip не падал на первой же …

Фото Малоизвестные, но полезные возможности утилиты less

Команда less является одной из самых известных на ряду с cd, cp, mv и т.д. Но используется less зачастую далеко …

Фото Как найти самые большие папки и файлы в Linux

Когда кончается место на жестком диске, возникает закономерный вопрос: на что же оно было потрачено, какие файлы разрослись больше положенного?

Фото Команда grep – полезные ключи и примеры использования

У команды «grep» довольно много различных особенностей. особенно, если учесть, что с английского это «решето» – а что может войти …

Фото Как создать неизменяемый файл в Linux / MacOS / FreeBSD

Само собой, root может всё (если введёт пару команд), однако, это вполне легальный способ запретить изменение файла.

Фото Как удалить все Docker образы и контейнеры

Не всегда нужно удалять всё, но объяснение данного «рецепта» объяснит как в целом удалять образы и контейнеры.

Небольшая заметка о конструкциях Bash, в которых путается большинство новичков. А именно: >,

Фото Лучше плохо, но сейчас. Взгляд на пути развития ПО

Сейчас такие языки как Perl и Ruby чувствуют себя не лучшим образом. Но ещё 10 – 15 лет назад они …

Фото Как запустить программу в терминале в фоне, без вывода какого либо текста

Запускаем программу в терминале в фоновом режиме и разбираемся, как и почему это работает в Linux / Unix терминале.

Источник

mkfs.ntfs(8) — Linux man page

mkntfs [ -C ] [ -c cluster-size ] [ -F ] [ -f ] [ -H heads ] [ -h ] [ -I ] [ -L volume-label ] [ -l ] [ -n ] [ -p part-start-sect ] [ -Q ] [ -q ] [ -S sectors-per-track ] [ -s sector-size ] [ -T ] [ -U ] [ -V ] [ -v ] [ -z mft-zone-multiplier ] [ —debug ] device [ number-of-sectors ]

Description

mkntfs is used to create an NTFS file system on a device (usually a disk partition) or file. device is the special file corresponding to the device (e.g /dev/hdXX). number-of-sectors is the number of blocks on the device. If omitted, mkntfs automagically figures the file system size.

Options

Below is a summary of all the options that mkntfs accepts. Nearly all options have two equivalent names. The short name is preceded by and the long name is preceded by . Any single letter options, that don’t take an argument, can be combined into a single command, e.g. -fv is equivalent to -f -v. Long named options can be abbreviated to any unique prefix of their name.

Basic options -f, —fast, -Q, —quick Perform quick (fast) format. This will skip both zeroing of the volume and bad sector checking. -L, —label STRING Set the volume label for the filesystem. -C, —enable-compression Enable compression on the volume. -n, —no-action Causes mkntfs to not actually create a filesystem, but display what it would do if it were to create a filesystem. All steps of the format are carried out except the actual writing to the device.

Читайте также:  Виды графической оболочки линукса

Advanced options -c, —cluster-size BYTES Specify the size of clusters in bytes. Valid cluster size values are powers of two, with at least 256, and at most 65536 bytes per cluster. If omitted, mkntfs uses 4096 bytes as the default cluster size.

Note that the default cluster size is set to be at least equal to the sector size as a cluster cannot be smaller than a sector. Also, note that values greater than 4096 have the side effect that compression is disabled on the volume (due to limitations in the NTFS compression algorithm currently in use by Windows). -s, —sector-size BYTES Specify the size of sectors in bytes. Valid sector size values are 256, 512, 1024, 2048 and 4096 bytes per sector. If omitted, mkntfs attempts to determine the sector-size automatically and if that fails a default of 512 bytes per sector is used. -p, —partition-start SECTOR Specify the partition start sector. The maximum is 4294967295 (2^32-1). If omitted, mkntfs attempts to determine part-start-sect automatically and if that fails a default of 0 is used. Note that part-start-sect is required for Windows to be able to boot from the created volume. -H, —heads NUM Specify the number of heads. The maximum is 65535 (0xffff). If omitted, mkntfs attempts to determine the number of heads automatically and if that fails a default of 0 is used. Note that heads is required for Windows to be able to boot from the created volume. -S, —sectors-per-track NUM Specify the number of sectors per track. The maximum is 65535 (0xffff). If omitted, mkntfs attempts to determine the number of sectors-per-track automatically and if that fails a default of 0 is used. Note that sectors-per-track is required for Windows to be able to boot from the created volume. -z, —mft-zone-multiplier NUM Set the MFT zone multiplier, which determines the size of the MFT zone to use on the volume. The MFT zone is the area at the beginning of the volume reserved for the master file table (MFT), which stores the on disk inodes (MFT records). It is noteworthy that small files are stored entirely within the inode; thus, if you expect to use the volume for storing large numbers of very small files, it is useful to set the zone multiplier to a higher value. Note, that the MFT zone is resized on the fly as required during operation of the NTFS driver but choosing a good value will reduce fragmentation. Valid values are 1, 2, 3 and 4. The values have the following meaning: -T, —zero-time

Читайте также:  File changed as we read it linux

Fake the time to be 00:00:00 UTC, Jan 1, 1970 instead of the current system time. This is only really useful for debugging purposes. -U, —with-uuid Generate a random volume UUID. -I, —no-indexing Disable content indexing on the volume. (This is only meaningful on Windows 2000 and later. Windows NT 4.0 and earlier ignore this as they do not implement content indexing at all.) -F, —force Force mkntfs to run, even if the specified device is not a block special device, or appears to be mounted.

Output options -q, —quiet Quiet execution; only errors are written to stderr, no output to stdout occurs at all. Useful if mkntfs is run in a script. -v, —verbose Verbose execution. —debug Really verbose execution; includes the verbose output from the -v option as well as additional output useful for debugging mkntfs.

Help options -V, —version Print the version number of mkntfs and exit. -l, —license Print the licensing information of mkntfs and exit. -h, —help Show a list of options with a brief description of each one.

Bugs

If you find a bug please send an email describing the problem to the development team:
ntfs-3g-devel@lists.sf.net

Authors

mkntfs was written by Anton Altaparmakov, Richard Russon, Erik Sornes and Szabolcs Szakacsits. It was ported to ntfs-3g by Erik Larsson and Jean-Pierre Andre.

Источник

How can I use fdisk to create a ntfs partition on /dev/sdx?

I would like to know how to create a ntfs partition on /dev/sdx. I could not figure out if I should use partition type 7 86 or 87. What is the full list of commands to use?

Yes, it seems to not work in GPT; but what is OK for GPT? 11 (Microsoft basic data)? Or 17 (HP-UX). Or is it better to change partition table to DOS for that?

2 Answers 2

  • to create the partition: n, p, [enter], [enter]
  • to give a type to the partition: t, 7 (don’t select 86 or 87, those are for volume sets)
  • if you want to make it bootable: a
  • to see the changes: p
  • to write the changes: w
mount /dev/sdx1 /mnt/myNtfsDevice 

In gdisk 1.0.8 (at least) the type to use for Microsoft Basic Data is actually 700, as shown in the «L» output.

You can use fdisk to create the partition «disk» division but for the partition’s file system you can use the mkfs.ntfs to create the file system in the partition that will use .

You must log in to answer this question.

Hot Network Questions

Subscribe to RSS

To subscribe to this RSS feed, copy and paste this URL into your RSS reader.

Site design / logo © 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2023.7.14.43533

Linux is a registered trademark of Linus Torvalds. UNIX is a registered trademark of The Open Group.
This site is not affiliated with Linus Torvalds or The Open Group in any way.

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.

Источник

Оцените статью
Adblock
detector