small
parent
9dfe2ec978
commit
6c6aae38e8
|
@ -47,3 +47,5 @@
|
||||||
[Steam](steam.md)
|
[Steam](steam.md)
|
||||||
|
|
||||||
[Cheat](cheat.md)
|
[Cheat](cheat.md)
|
||||||
|
|
||||||
|
[Ventoy](ventoy.md)
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
# [Ventoy](https://github.com/ventoy/Ventoy)
|
||||||
|
|
||||||
|
A new bootable USB solution.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# Install
|
||||||
|
sh Ventoy2Disk.sh -i /dev/XXX
|
||||||
|
|
||||||
|
# Force install
|
||||||
|
sh Ventoy2Disk.sh -I /dev/XXX
|
||||||
|
|
||||||
|
# Update
|
||||||
|
sh Ventoy2Disk.sh -u /dev/XXX
|
||||||
|
```
|
|
@ -8,7 +8,17 @@ Assume your laptop/PC is UEFI-capable.
|
||||||
|
|
||||||
## [Installation guide](https://wiki.archlinux.org/index.php/Installation_guide)
|
## [Installation guide](https://wiki.archlinux.org/index.php/Installation_guide)
|
||||||
|
|
||||||
First [USB flash installation media](https://wiki.archlinux.org/index.php/USB_flash_installation_media).
|
Remember to check disks carefully:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
lsblk
|
||||||
|
```
|
||||||
|
|
||||||
|
Create USB flash installation media:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
dd bs=4M if=path/to/archlinux.iso of=/dev/sdx status=progress oflag=sync
|
||||||
|
```
|
||||||
|
|
||||||
### Connect to the internet
|
### Connect to the internet
|
||||||
|
|
||||||
|
@ -34,10 +44,20 @@ cfdisk
|
||||||
|
|
||||||
| Mount point | Partition type | Suggested size |
|
| Mount point | Partition type | Suggested size |
|
||||||
| ----------- | -------------------- | -------------- |
|
| ----------- | -------------------- | -------------- |
|
||||||
| /mnt/boot | EFI system partition | 1 GiB |
|
| /mnt/boot | EFI system partition | 512 MiB |
|
||||||
| /mnt | Linux | |
|
| /mnt | Linux | |
|
||||||
| /mnt/home | Linux | |
|
| /mnt/home | Linux | |
|
||||||
|
|
||||||
|
Format:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# /boot
|
||||||
|
mkfs.fat -F32 /dev/sdxY
|
||||||
|
|
||||||
|
# /, /home
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
Read [EFI system partition](https://wiki.archlinux.org/index.php/EFI_system_partition)
|
Read [EFI system partition](https://wiki.archlinux.org/index.php/EFI_system_partition)
|
||||||
|
|
||||||
### Boot loader
|
### Boot loader
|
||||||
|
|
Loading…
Reference in New Issue