Need help finding a USB writer that works with Parrot

I can’t seem to find a usb writer for Parrot. I tried a couple of different ones and wasn’t able to get it installed. Any help would be greatly appreciated.

What did you try?

Did you try the Wiki suggested Etcher?

dd command also works:

sudo dd bs=4M if=fileimage.iso of=/dev/sdb

(where /dev/sdb is the usb device)

1 Like

try also gnome-multi-writer
sudo apt install gnome-multi-writer -y
also what @RightToPrivacy told still works but on cli

That worked! Thank you. I had another question and I was hoping you knew the answer. I tried changing directories and it won’t let me. I type in CD downloads and it doesn’t change.

case sensitive
cd Downloads or use the tabs autocomplete

I tried it in lowercase and it wouldn’t work. I ended up reinstalling it and it resolved the issue. I appreciate your help.

Maybe you were in other directory
Always use
pwd to know where are you currently and then after direct your commands
and yeah the commands or syntax-es are case-sensitive

dd is the way to go :grinning:

dd if=fileimage.iso of=/dev/sdb bs=4M

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.