Skip to content
Discussion options

You must be logged in to vote

I was able to fix the USB drive to boot on the R630 by creating an EFI partition. Do do so, I did the following:

# Step 1: Write the ISO to USB
sudo dd if=~/Downloads/securityonion-2.4.201-20260114.iso of=/dev/sdX bs=4M status=progress oflag=sync

# Step 2: Add an EFI partition in the free space after the ISO
sudo fdisk /dev/sdX
# p        (print — confirm partition 1 ends around sector 30435327)
# n        (new partition)
# p        (primary)
# 2
# [accept default first sector]
# +64M
# t        (change type)
# 2
# ef       (EFI System)
# w        (write and exit)

# Step 3: Format the EFI partition
sudo mkfs.vfat -F32 /dev/sdX2

# Step 4: Mount the ISO and copy EFI files to the new part…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by DannyBoyk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
2.4
Labels
None yet
2 participants