edit: and I mean that in an entirely serious and helpful way, not sarcastic. No need to wait on others, just dive right on in
Edited by WizardStan, 31 March 2011 - 02:59 AM.
Posted 31 March 2011 - 02:58 AM
Edited by WizardStan, 31 March 2011 - 02:59 AM.
Posted 31 March 2011 - 03:13 AM
Posted 06 April 2011 - 07:53 PM
Posted 07 April 2011 - 07:06 AM
Posted 07 April 2011 - 07:19 AM
Posted 07 April 2011 - 07:35 AM
Posted 09 April 2011 - 05:24 PM
Posted 09 April 2011 - 08:30 PM
tar xJvf filename.tar.xzDo this from within the SD card's directory to extract there.
sudo mount -o remount,dev /media/mmcblk0p1Make sure to replace "/media/mmcblk0p1" with the actual path to your SD card. Then, run the extraction command again, with sudo if you need to.
Edited by Tempel, 09 April 2011 - 08:31 PM.
Posted 10 April 2011 - 12:48 AM
Posted 12 April 2011 - 10:15 AM
Actually, you do not need to specify the compression mehtod at all with almost all tar versions currently in use. So all you need to do is "tar xfv archive", where archive can be uncompressed tar, .tar.gz, .tar.bz2 or .tar.xz .The terminal command to extract is:
tar xJvf filename.tar.xzDo this from within the SD card's directory to extract there.
Mounting with the dev option should not be necessary, but should not do any harm either.I can think of two potential causes of the mknod issue. See, it's trying to extract block devices to the SD card, since these are an important part of any Linux root filesystem, but creating them is restricted. It could be restricted to the root user only; try running that command I gave earlier with "sudo" in front of it. It could also be restricted by the rules used when mounting your SD card; try remounting with the "dev" option enabled. The command should look something like this:
sudo mount -o remount,dev /media/mmcblk0p1Make sure to replace "/media/mmcblk0p1" with the actual path to your SD card. Then, run the extraction command again, with sudo if you need to.
I'll keep that option in mind or the next version. This might save some bytes, but even then the archive should still be extracted with the root user. If anyone has trouble extracting the archive as it is now, you are doing something wrong - either you aren't extracting as root or the filesystem on the target device is incompatible, e.g. fat instead of ext2. As said in my blog, the filesystem should be ext2 and nothing else (yes, this includes ext3 as well - do not use it).Maybe the rootfs tarballs should be generated using tar's --one-file-system option, so that it isn't trashed with temporary files or device nodes causing trouble while extracting. All device nodes should be generated dynamically within a virtual file system and therefore don't need to be saved.
Posted 28 April 2011 - 12:05 AM
Posted 03 May 2011 - 01:17 PM
Posted 03 May 2011 - 11:50 PM
Posted 04 May 2011 - 06:29 AM
Yes, indeed.so does that mean we officially (inadvertantly) have a kernel package now?
Posted 04 May 2011 - 07:09 AM
NOTE: this project should be added to the wiki... not sure who to contact about that...
http://pandorawiki.o...ftware_projects
was it gruso?