Skip to content

Commit

Permalink
create persistence drive
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalii Cherkashyn authored Nov 5, 2020
1 parent 9f70dc6 commit 949f401
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -2285,7 +2285,17 @@ sudo lshw -class disk -short
sudo dd bs=4M if=/home/my-user/Downloads/archlinux-2019.07.01-x86_64.iso of=/dev/sdb status=progress && sync
```

## startup disk with splitting,
## create usb live with persistence, usb persistence, stick persistence
```sh
sudo add-apt-repository universe
sudo add-apt-repository ppa:mkusb/ppa
sudo apt-get update
sudo apt install --install-recommends mkusb mkusb-nox usb-pack-efi
mkusb
# Install, persistent live, upefi
```

## split usb drive, split disk
```bash
# detect disks
sudo lshw -class disk -short
Expand Down Expand Up @@ -2318,10 +2328,8 @@ set 1 boot on
set 2 lba on
quit
```

```sh
sudo fdisk -l
sudo dd if=/full/path/to/live.iso of=/dev/sdc2 status=progress && sync
```

## Elapsed time between two commands
Expand Down

0 comments on commit 949f401

Please sign in to comment.