From 7281baba57638524d0e41240ae9f40dc760efd28 Mon Sep 17 00:00:00 2001 From: max Date: Wed, 20 Dec 2023 21:59:29 +0300 Subject: [PATCH] Add unpack-iso --- docs/other/_category_.json | 8 ++++++++ docs/other/unpack-iso.md | 21 +++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 docs/other/_category_.json create mode 100644 docs/other/unpack-iso.md diff --git a/docs/other/_category_.json b/docs/other/_category_.json new file mode 100644 index 0000000..ac33a70 --- /dev/null +++ b/docs/other/_category_.json @@ -0,0 +1,8 @@ +{ + "label": "Остальное", + "position": 99, + "link": { + "type": "generated-index", + "description": "То, что не попало в какую-либо катигорию" + } +} diff --git a/docs/other/unpack-iso.md b/docs/other/unpack-iso.md new file mode 100644 index 0000000..2ede65a --- /dev/null +++ b/docs/other/unpack-iso.md @@ -0,0 +1,21 @@ +--- +sidebar_position: 1 +title: Как распаковать iso на Linux +--- + +Содаём папку для монтировани и распаковки +```bash +mkdir iso +mkdir iso_content +``` + +Монтируем и копируем всё в папку `iso_content` +```bash +sudo mount filename.iso iso +cp iso/* iso_content -r +``` + +Теперь размонтируем наш iso +```bash +sudo umount iso +```