app logoSearch

Explorer

  • Home Page
Ctrl+Btoggle sidebar
  1. Home
  2. 02 reference notes
  3. topics
  4. membuat usb bootable di linux

Membuat USB Bootable di Linux

Menggunakan dd

$ sudo dd bs=4M if=/path/to/file of=/dev/disk-id conv=fsync oflag=direct status=progress

Contoh

$ sudo dd bs=4M if=linuxmint-22.2-xfce-64bit.iso of=/dev/sda conv=fsync oflag=direct status=progress

Untuk melihat 'disk-id' jalankan perintah lsblk:

➜ lsblk
NAME        MAJ:MIN RM   SIZE RO TYPE MOUNTPOINTS
sda           8:0    1   7.2G  0 disk 
├─sda1        8:1    1  1023M  0 part 
└─sda2        8:2    1   175M  0 part 
nvme0n1     259:0    0 476.9G  0 disk 
├─nvme0n1p1 259:1    0   100M  0 part /efi
├─nvme0n1p2 259:2    0    16M  0 part 
├─nvme0n1p3 259:3    0 238.4G  0 part /mnt/windows
├─nvme0n1p4 259:4    0   100G  0 part /
└─nvme0n1p5 259:5    0 138.5G  0 part /home

Referensi:

https://wiki.archlinux.org/title/USB_flash_installation_medium

Graph Not Found

Table of Content

  • Menggunakan dd
Ctrl+Vtoggle sidebar