You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/debian/create_bootable_flash.md
+26-3Lines changed: 26 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,20 @@
1
1
+++
2
2
title="Create Bootable Flash Drive"
3
3
date = 2023-07-27
4
-
updated = 2025-04-26
4
+
updated = 2026-01-30
5
5
extra = { series = "Debian" }
6
6
taxonomies = { tags = ["Debian"] }
7
7
+++
8
8
9
-
### Display List of Hard Drives
9
+
# Create via terminal
10
+
11
+
## Display List of Hard Drives
10
12
11
13
```sh
12
14
lsblk
13
15
```
14
16
15
-
###Copy ISO onto a flash drive
17
+
## Copy ISO onto a flash drive
16
18
17
19
TIP: Before executing the command below you may want to format the disk but not create a volume.
18
20
I didn't format it once and it wrote to "cache" and I had a very hard time knowing when it was done actually writing to the drive.
@@ -24,3 +26,24 @@ _NB: Takes a while with no feedback, until fail/pass_
24
26
```sh
25
27
cp debian.iso /dev/sdX
26
28
```
29
+
30
+
# Create via GUI
31
+
32
+
Ubuntu has instructions on [their website](https://documentation.ubuntu.com/desktop/en/latest/tutorial/install-ubuntu-desktop/), which I've tried up to the part of loading onto the flash drive.
33
+
34
+
Relevant section copied below in case their site "goes away" (or gets relocated or reorganized or restructured or otherwise cannot be found anymore).
35
+
36
+
> 1. Open the Disks application. You can find it in the applications menu or by searching for “Disks”.
37
+
> 2. Insert your USB stick. It appears in the sidebar. Select it there.\
38
+
> **WARNING: Make sure to select the USB stick and not the disk with your running system. Both are listed.**\
39
+
> 
40
+
> 3. Close all applications that access files or folders on the USB stick, including the file browser.
41
+
> 4. In the Disks window header, click `Drive Options (⋮)` and select `Restore Disk Image…`\
42
+
> 
43
+
> 5. Next to `Image to Restore`, select the downloaded Ubuntu image file.
44
+
> 6. Click `Start Restoring…` and confirm. The application asks for your password.\
45
+
> 
46
+
> 7. A progress bar appears while Disks is writing the image.\
47
+
> 
48
+
> 8. When the progress bar finishes, click `Eject this disk (⏏)`.\
49
+
> 
0 commit comments