search for: unsquashf

Displaying 6 results from an estimated 6 matches for "unsquashf".

Did you mean: unsquashfs
2008 Sep 30
1
Questions on custom LiveCD
I tried making my own LiveCD according to the instructions on the project site. First, applause, the basic procedure works like a charm. It's really easy to do and works right from the beginning (I'm building it inside a VM). I tried the minimal and the desktop version (with a few changes). I have encountered a few problems and have some questions. The German keyboard I set in the
2009 Sep 14
2
[PATCH node-image] add livecd-iso-to-iscsi script to support iscsi root booting setup
...omount +initrd="%s/isolinux/initrd0.img" % isomount +squashfs="%s/LiveOS/squashfs.img" % isomount +ext3fs="tftpboot/squashfs-root/LiveOS/ext3fs.img" +shutil.copy(kernel,"tftpboot") +shutil.copy(initrd,"tftpboot") + +unsquash = subprocess.call(["unsquashfs", squashfs]) + +# workaround until bug is fixed with squashfs -d option +shutil.move("squashfs-root","tftpboot/squashfs-root") + +print "Placing embedded file system on %s" % options.disk +dd_cmd="dd if=%s of=%s" % (ext3fs,options.disk) +copy_iscsi_ret...
2009 Dec 10
0
[PATCH node] Enables stateless iscsi remote boot
...hutil.copy(kernel,"tftpboot") shutil.copy(initrd,"tftpboot") +e2label_ret = subprocess.call(["e2label", options.disk_label]) +if e2label_ret != 0: + fail("Error relabeling %s to %s" % (options.disk,options.disk_label)) unsquash = subprocess.call(["unsquashfs", squashfs]) -- 1.6.5.2
2020 Mar 15
0
How to create a Bootable Live CD/DVD from your Linux From Scratch (LFS) build
...ect your LFS image onto the target computer ( rather than rebuilding from scratch..) First, mount /dev/cdrom somewhere. In the boot subdirectory in the cd image, you will find the root.sfs file. root.sfs is your LFS system in a squashed format. To install it into the target, either use the unsquashfs tools to uncompress it onto the target computer system or loop mount the root.sfs file and then use tar or some other directory copy tool to inject it into the target computer. ACKNOWLEDGEMENTS: * The LFS from script project (http://lfscript.org/wiki/index.php/Main_Page) * The LFS projec...
2009 Oct 14
4
Refactor ovirt-node-image code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Removed ks files, now in ovirt-node-recipe, which is subpackage of ovirt-node. Removed tools, these are now in ovirt-node-recipe which is subpackage of ovirt-node.
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe. Removes old sub packages form ovirt-node, stateless, logos, selinux. Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221 Added License file.