Thank you The DIY Community for creating this amazing dustbin.
https://odysee.com/@TheDIYCommunity:9/DIY-Trash-Bin-we-made-back-in-2021:0
Thank you The DIY Community for creating this amazing dustbin.
https://odysee.com/@TheDIYCommunity:9/DIY-Trash-Bin-we-made-back-in-2021:0
No need to extract zipped #Raspbian images to disk first on #Linux with #atool:
acat 2020-02-13-raspbian-buster-lite.zip 2020-02-13-raspbian-buster-lite.img | dd of=/dev/sdX status=progress
(Replace sdX accordingly.)
It's easy to remember and works on many archive formats, but you need to know the file name inside. Use e.g. "als".
Or just use
unzip -p 2020-02-13-raspbian-buster-lite.zip | dd of=/dev/sdX status=progress
"unzip -p" outputs all files inside if there are more.