Can all registered uses please login, even just for a few minutes..
It helps build a picture where our "good traffic" is coming from..
Thanks :)
It helps build a picture where our "good traffic" is coming from..
Thanks :)
Exxos's PiStorm blog
Re: Exxos's PiStorm blog
Hmm yeah some cards can be like this... mines a Sandisk. If you get really stuck I can investigate how to actually shrink my Pi's disk image from within the device itself, but I dunno how to do this I'd have to do a bit of research.
Re: Exxos's PiStorm blog
Another idea: I could zip-up simply my Home directory which will include all the Github stuff. You would just need to follow the parts in the guide that talk about configuring the Pi's speed/mhz etc. And cmdline.txt stuff.
Re: Exxos's PiStorm blog
Sounds simple enough...Steve wrote: Mon Apr 15, 2024 6:17 pm Another idea: I could zip-up simply my Home directory which will include all the Github stuff. You would just need to follow the parts in the guide that talk about configuring the Pi's speed/mhz etc. And cmdline.txt stuff.
I'll have to do the file copies over in Linux as windows might upset it.
Re: Exxos's PiStorm blog
Tried to be a good boy and use MX Linux for the PI stuff, but it won't let me select the image
Works fine in Windoze.
That's enough chaos for one day.
Works fine in Windoze.
That's enough chaos for one day.
Re: Exxos's PiStorm blog
Please give gnome-disk-utility a try, that's what it's called in Debian. Try apt-get install gnome-disk-utility (it's called Disks) I use it for everything, my favorite imager/restorer for Linux. Pi imager isn't supposed to be a general purpose thing.
Re: Exxos's PiStorm blog
I installed it. But it makes no sense other than list disks. The only option which to looks to do anything is add image, but that just goes in the list like a virtual drive and that's it. There isn't anything much else in the menus other than the normal "about" type stuff. I clicked all over the place, right clicked, can't see anything else in there.
EDIT:
Think I found the problem. The "gears" menu is totally greyed out. Seems I have to format the drive before restoring a image
Anyway, it says your image is 640MB to large to fit on my card. Isn't there something like partition magic on Linux ? That would resize the SD card. Then image a smaller one.
EDIT:
Think I found the problem. The "gears" menu is totally greyed out. Seems I have to format the drive before restoring a image
Anyway, it says your image is 640MB to large to fit on my card. Isn't there something like partition magic on Linux ? That would resize the SD card. Then image a smaller one.
Re: Exxos's PiStorm blog
I'll try and shrink it somehow. By the way it looks like you've mounted the image (that's the 32gb 'loop device' in your image) Don't have it mounted when you're doing this, it'll get confusing. You just click the one above that, the 31gb sd card 'mass storage device', click the gears and 'restore image'. Select the image and it writes it. No formatting needed.
Re: Exxos's PiStorm blog
Won't let me do that.. All the menu items are greyed out. Only way I could get the restore image menu enabled was to format the card.Steve wrote: Tue Apr 16, 2024 9:56 am You just click the one above that, the 31gb sd card 'mass storage device', click the gears and 'restore image'. Select the image and it writes it. No formatting needed.
Re: Exxos's PiStorm blog
From the terminal:
This copies steves_image.img to /dev/sde (which is what your SD card was reporting as in the screenshot above -- change if it's changed)
sudo = run as root
dd = the block copier
if = input file
of = output file (device SDE in this case)
oflag = output flag, skip buffering to make it faster in this case
Yeah, it won't quite fit, but it's likely blank at the end. Can tidy that up with gparted later if you're worried. Will take a long time. If Steve gives you a resized image, so much the better, but this will work.
BW
Code: Select all
sudo dd bs=4M if=steves_image.img of=/dev/sde oflag=direct
sudo = run as root
dd = the block copier
if = input file
of = output file (device SDE in this case)
oflag = output flag, skip buffering to make it faster in this case
Yeah, it won't quite fit, but it's likely blank at the end. Can tidy that up with gparted later if you're worried. Will take a long time. If Steve gives you a resized image, so much the better, but this will work.
BW
DFB1 Open source 50MHz 030 and TT-RAM accelerator for the Falcon
Smalliermouse ST-optimised USB mouse adapter based on SmallyMouse2
FrontBench The Frontier: Elite 2 intro as a benchmark
Smalliermouse ST-optimised USB mouse adapter based on SmallyMouse2
FrontBench The Frontier: Elite 2 intro as a benchmark
Re: Exxos's PiStorm blog
Thanks @Badwolf will give it a try after lunch 


