mirror of
https://github.com/SantaSpeen/santaspeen.ru-blog.git
synced 2026-02-16 02:30:58 +00:00
Add unpack-iso
This commit is contained in:
8
docs/other/_category_.json
Normal file
8
docs/other/_category_.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"label": "Остальное",
|
||||
"position": 99,
|
||||
"link": {
|
||||
"type": "generated-index",
|
||||
"description": "То, что не попало в какую-либо катигорию"
|
||||
}
|
||||
}
|
||||
21
docs/other/unpack-iso.md
Normal file
21
docs/other/unpack-iso.md
Normal file
@@ -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
|
||||
```
|
||||
Reference in New Issue
Block a user