summaryrefslogtreecommitdiffstats
path: root/HACKING
Commit message (Collapse)AuthorAgeFilesLines
* New tool: virt-editRichard Jones2009-09-231-0/+3
| | | | | | | | | | | | | Edit any file in a guest. This was possibly previously using guestfish, but having a separate command makes it simpler. The usage is simply: virt-edit mydomain /some/file It runs $EDITOR or vi on the file, and if the user changes it, uploads the result back to the VM.
* Add 'virt-rescue' command.Richard Jones2009-09-231-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This command runs a "rescue appliance" against a virtual machine or disk image. This is useful for making ad-hoc interactive changes to virtual machines. $ virt-rescue --ro /dev/vg_trick/F11x64 Welcome to virt-rescue, the libguestfs rescue shell. Note: The contents of / are the rescue appliance. You have to mount the guest's partitions under /sysroot before you will be able to examine them. bash: cannot set terminal process group (-1): Inappropriate ioctl for device bash: no job control in this shell ><rescue> mount /dev/vg_f11x64/lv_root /sysroot EXT4-fs (dm-0): barriers enabled kjournald2 starting: pid 269, dev dm-0:8, commit interval 5 seconds EXT4-fs (dm-0): internal journal on dm-0:8 EXT4-fs (dm-0): delayed allocation enabled EXT4-fs: file extents enabled EXT4-fs: mballoc enabled EXT4-fs (dm-0): mounted filesystem with ordered data mode ><rescue> ls /sysroot/ bin dev home lib64 media opt root selinux sys usr boot etc lib lost+found mnt proc sbin srv tmp var ><rescue> exit
* Remove virt-v2v. New repo: http://gitorious.org/virt-v2v/Richard Jones2009-08-201-3/+0
|
* HACKING: Document make targets and ./configure --enable-gcc-warnings.Richard W.M. Jones2009-08-171-0/+7
|
* doc: improve emacs snippetsJim Meyering2009-08-121-2/+10
| | | | | * HACKING: Make (setq indent-tabs-mode nil) apply to nearly all files, not just C-mode ones.
* build: tweak HACKING so we pass "make syntax-check"Jim Meyering2009-08-041-2/+2
| | | | * HACKING: Convert leading TABs.
* Document and enforce the new spaces-only indentation policy.Jim Meyering2009-08-031-0/+23
| | | | | | | * cfg.mk (disable_temporarily): Remove sc_TAB_in_indentation, to enable the "make syntax-check" that enforces this. * .x-sc_TAB_in_indentation: New file. Exceptions. * HACKING: Document the policy, with tips on how to conform.
* Convert all TABs-as-indentation to spaces.Jim Meyering2009-08-031-25/+25
| | | | | | | | | | | Do it by running this command: [exempted files are matched via .x-sc_TAB_in_indentation] git ls-files \ | pcregrep -vf .x-sc_TAB_in_indentation \ | xargs pcregrep -l '^ *\t' \ | xargs perl -MText::Tabs -ni -le \ '$m=/^( *\t[ \t]*)(.*)/; print $m ? expand($1) . $2 : $_'
* Replace shell_quote function with %Q and %R printf specifiers.Richard Jones2009-07-281-0/+22
| | | | | | | %Q => simple shell quoted string %R => path will be prefixed by /sysroot eg. snprintf (cmd, sizeof cmd, "cat %R", path); system (cmd);
* Add libguestfs-test-tool.Richard Jones2009-07-221-0/+3
| | | | | | | | | | | This is an end-user testing tool, designed to test basic functionality of libguestfs/qemu/kernel combination on the end-user's final host machine. It does not perform a thorough test, but should be enough to find most booting issues. Also this is intended to be used when reporting bugs.
* New tool virt-cat: display a file in a virtual machine.Richard Jones2009-07-151-0/+3
| | | | | | | | | This script is just a simpler way to cat a file from a VM. It is otherwise equivalent to using guestfish. virt-cat someguest /etc/fstab virt-cat someguest /var/log/messages | tail
* Added framework for 'virt-df' command.Richard Jones2009-07-101-0/+3
|
* Added outline of the virt-v2v script.Richard Jones2009-07-101-0/+3
|
* Update with links to the new mailing list.Richard Jones2009-07-081-2/+2
|
* Generator now runs automatically when it has changed.Richard W.M. Jones2009-07-021-4/+0
|
* Move pure regression tests to their own subdirectory.Richard Jones2009-06-041-0/+3
|
* Move C API tests out of root build dir into 'capitests' subdir.Richard W.M. Jones2009-05-281-0/+3
|
* Move the appliance and build scripts into new appliance/ subdirectory.Richard W.M. Jones2009-05-281-0/+3
|
* Gettextize the source, make library strings translatable.Richard Jones2009-05-211-0/+17
|
* Partial Haskell bindings.Richard Jones2009-05-101-0/+3
|
* Experimental febootstrap install script.Richard Jones2009-05-081-0/+3
|
* Added virt-inspector program from virt-v2v.Richard Jones2009-04-281-0/+3
|
* Java bindings compile, not tested.Richard Jones2009-04-211-0/+3
|
* Added tar-in, tar-out, tgz-in, tgz-out commands.Richard Jones2009-04-201-0/+2
|
* Add ruby/ directory, add more warnings.Richard Jones2009-04-181-3/+6
|
* Updated HACKING notes about debugging.Richard Jones2009-04-091-2/+3
|
* Added framework for the language bindings.Richard Jones2009-04-071-1/+38
|
* Debugging tips.Richard Jones2009-04-061-0/+11
|
* Added a HACKING file.Richard Jones2009-04-031-0/+28