Package install for format and write .iso image on USB sticks?

Need support for GhostBSD. Ask here if your question does not fit elsewhere.
Post Reply
Richard
Posts: 9
Joined: Mon Oct 21, 2024 4:56 am

Package install for format and write .iso image on USB sticks?

Post by Richard »

Hello, what software package can i install on GhostBSD to format and write .iso images to USB sticks?

Thank you.
User avatar
neville
Developer
Posts: 144
Joined: Fri Aug 13, 2021 10:27 am
Location: Japan

Re: Package install for format and write .iso image on USB sticks?

Post by neville »

Are you using windows? Etcher is pretty good apparently
Richard
Posts: 9
Joined: Mon Oct 21, 2024 4:56 am

Re: Package install for format and write .iso image on USB sticks?

Post by Richard »

No, I'm a Debian/Devuan user, for years.
Richard
Posts: 9
Joined: Mon Oct 21, 2024 4:56 am

Re: Package install for format and write .iso image on USB sticks?

Post by Richard »

I tried to install Etcher, Balena Etcher, balena-etcher no go, it doesn't exist in GhostBSD.
I have the balena-etcher package but it is a Debian package that I don't know if it can be installed on GhostBSD and how.
mameko
Posts: 9
Joined: Tue Oct 15, 2024 6:04 am

Re: Package install for format and write .iso image on USB sticks?

Post by mameko »

There is no gui app like Balena Etcher in BSD. You can use the good "dd" command.

Code: Select all

$ sudo dd if=xyz.iso of=/dev/daX bs=1M && sync
Double check the correct output device (dev/daX) because dd starts its work immediately without further questions.
To check it before starting dd:

Code: Select all

$ gpart show
You will find your device in this list.

If you need a gui app, try Linux.
Richard
Posts: 9
Joined: Mon Oct 21, 2024 4:56 am

Re: Package install for format and write .iso image on USB sticks?

Post by Richard »

mameko wrote: Tue Oct 22, 2024 6:28 pm There is no gui app like Balena Etcher in BSD. You can use the good "dd" command.

Code: Select all

$ sudo dd if=xyz.iso of=/dev/daX bs=1M && sync
Double check the correct output device (dev/daX) because dd starts its work immediately without further questions.
To check it before starting dd:

Code: Select all

$ gpart show
You will find your device in this list.

If you need a gui app, try Linux.
Yes of course, if I need to format a USB stick and write an .iso image file, I use my other notebook computer with Devuan and Mintstick installed.
Hopefully with time Eric Turgeon and his team will make a Mintstick-like GhostBSD too. ;)
I really like GhostBSD but it needs some work.
Post Reply