jose1711 / qemu_turrisos

Run TurrisOS inside QEMU
GNU Lesser General Public License v3.0
2 stars 1 forks source link

Use only curl or wget for downloading files (don't mix them to avoid more required deps) #3

Closed emanuelb closed 4 years ago

emanuelb commented 4 years ago

in: https://github.com/jose1711/qemu_turrisos/blob/5e3f60f0241a69b3d33ae4b31a3f2def9f5946b8/README.md#quick-how-to

both curl and wget are used to download files:

curl -o zImage https://downloads.openwrt.org/snapshots/targets/armvirt/32/openwrt-armvirt-32-zImage
wget --output-document=- https://repo.turris.cz/archive/omnia/3.2.1/omnia-medkit-201610271801.tar.gz | tar xvzf -
wget --output-document=- https://repo.turris.cz/archive/4.0.6/medkit/omnia-medkit-latest.tar.gz | tar xvzf -
wget --output-document=- https://repo.turris.cz/hbs/medkit/omnia-medkit-latest.tar.gz | tar xvzf -

it's better to use just 1 command util (curl or wget) instead of mixing them to avoid required both of them installed for the script to work.