Creating purpose-built TinyCoreLinux Images
fabianstumpf.de
Creating purpose-built TinyCoreLinux Images
1–10 of 33 posts
Re: Creating purpose-built TinyCoreLinux Images
#2Re: Creating purpose-built TinyCoreLinux Images
#3As I get some pleasure out of writing scripts to build finely tuned minimal images like this, I found the article interesting. However, I think manipulating a qcow2 image directly via nbd is over-complicating it. I think it would be better to create a sparse file, mount that via a loopback device, work with that, and then convert it to a qcow2 image (or vmdk or whatever) at the end.
Re: Creating purpose-built TinyCoreLinux Images
#4As I get some pleasure out of writing scripts to build finely tuned minimal images like this, I found the article interesting. However, I think manipulating a qcow2 image directly via nbd is over-complicating it. I think it would be better to create a sparse file, mount that via a loopback device, work with that, and then convert it to a qcow2 image (or vmdk or whatever) at the end.
I'm not convinced that you're saving anything by avoiding nbd. You need to modprobe nbd and start qemu-nbd. Both single commands that you can cut and paste. What you gain is not having to convert an image at the end.
Re: Creating purpose-built TinyCoreLinux Images
#5http://www.gnu.org/software/grub/manual/multiboot/multiboot....
Re: Creating purpose-built TinyCoreLinux Images
#6Re: Creating purpose-built TinyCoreLinux Images
#7Does anyone have an idea how a minimal base Linux image can run inside a browser? Like can we create a small virtual Linux server right inside a browser?
It's a clever hack, but I don't know of any practical application. Did you have one in mind? Or is it just for the hack value?
Re: Creating purpose-built TinyCoreLinux Images
#8Does anyone have an idea how a minimal base Linux image can run inside a browser? Like can we create a small virtual Linux server right inside a browser?
http://jslinux.org/ It's a clever hack, but I don't know of any practical application. Did you have one in mind? Or is it just for the hack value?
I d like to describe the vm configuration similar to chef or ansible in js and run some dev/test code.
Re: Creating purpose-built TinyCoreLinux Images
#9Does anyone have an idea how a minimal base Linux image can run inside a browser? Like can we create a small virtual Linux server right inside a browser?
Re: Creating purpose-built TinyCoreLinux Images
#10Is the Linux kernel compatible with multiboot specification yet? http://www.gnu.org/software/grub/manual/multiboot/multiboot....