Difference between revisions of "Vnx-modify-rootfs"
(→Start a virtual machine in direct mode) |
|||
(25 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Title|Updating or modifying a VNX root filesystem}} | {{Title|Updating or modifying a VNX root filesystem}} | ||
− | |||
− | + | __TOC__ | |
− | + | This document describes how to make permanent changes to a VNX root filesystem. The recomended way is to use VNX to start a virtual machine that mounts the rootfs in direct mode and make the desired changes from the VM console. Alternatevily, modifications can be made manually by mounting the rootfs in the host or manually starting a virtual machine. Both ways are described below. | |
+ | == Using VNX == | ||
− | == Start a virtual machine in direct mode == | + | You can modify a KVM or LXC root filesystem by using the '''--modify-rootfs''' option, for example: |
+ | |||
+ | vnx --modify-rootfs vnx_rootfs_kvm_debian-7.0.0-v025.qcow | ||
+ | vnx --modify-rootfs vnx_rootfs_lxc_ubuntu-14.04-v025 | ||
+ | |||
+ | This command starts new VM that mounts the root filesystem specified in direct mode. Therefore, any change made in the VM will persist after stopping it. Besides, the VM is started with Internet connectivity, by means of a network interface connected to libvirt virbr0 or LXC lxcbr0 bridges. | ||
+ | |||
+ | Several aditional parameters can be used with '''--modify-rootfs''' option: | ||
+ | |||
+ | <ul> | ||
+ | <li>'''--arch''' to select processor architecture: '''i686''' for 32 bits and '''x86_64''' for 64 bits</li> | ||
+ | <li>'''--vcpu''' to select the number of procesor cores to assign to the VM.</li> | ||
+ | <li>'''--rootfs-type''' to specify the rootfs type (libvirt-kvm or lxc). If not specified, VNX tries to guess the type. Default value is libvirt-kvm.</li> | ||
+ | <li>'''--mem''' to specify the memory to assign to the VM (ignored for LXC). </li> | ||
+ | <li>'''--update-aced''' to try to automatically update the VNX autoconfiguration daemon (not applicable for LXC).</li> | ||
+ | </ul> | ||
+ | |||
+ | For example: | ||
+ | vnx --modify-rootfs vnx_rootfs_kvm_debian64.qcow2 --mem 512M --vcpu 4 --arch x86_64 --update-aced | ||
+ | |||
+ | Root filesystem modifications should be finished by executing '''vnx_halt''' command, that clears some system log files and caches (bash history, packages caches, etc) and optionally allows to write a one-line message describing the changes made that is stored in /etc/vnx_rootfs_version file. NOte: vnx_halt is not available yet for LXC. | ||
+ | |||
+ | == Manually == | ||
+ | |||
+ | === Manually modifying a KVM root filesystem === | ||
+ | |||
+ | In order to update or modify a KVM VNX root filesystem, you can mount it in the host and make the modifications directly without starting a virtual machine. To do that: | ||
+ | |||
+ | <ul> | ||
+ | <li>Create a ndb device with the filesystem:</li> | ||
+ | modprobe nbd | ||
+ | qemu-nbd -c /dev/nbd0 <rootfs_name> | ||
+ | being <rootfs_name> the rootfs filename. | ||
+ | <li>Consult the rootfs partitions with:</li> | ||
+ | fdisk -l /dev/ndb0 | ||
+ | <li>Mount the desired partition with:</li> | ||
+ | mount /dev/nbd0p1 /mnt | ||
+ | <li>Do the modifications desired directly accesing files. You can chroot the the mount directory in order to install software.</li> | ||
+ | <li>At the end, unmount the particition and release nbd device:</li> | ||
+ | umount /mnt | ||
+ | qemu-nbd -d /dev/nbd0 | ||
+ | </ul> | ||
+ | |||
+ | Examples: | ||
+ | <ul> | ||
+ | <li>Ubuntu rootfs</li> | ||
+ | <pre> | ||
+ | $ modprobe nbd | ||
+ | $ qemu-nbd -c /dev/nbd0 vnx_rootfs_kvm_ubuntu-12.04-v024.qcow2 | ||
+ | $ fdisk -l /dev/nbd0 | ||
+ | |||
+ | Disco /dev/nbd0: 8589 MB, 8589934592 bytes | ||
+ | 255 cabezas, 63 sectores/pista, 1044 cilindros, 16777216 sectores en total | ||
+ | Unidades = sectores de 1 * 512 = 512 bytes | ||
+ | Tamaño de sector (lógico / físico): 512 bytes / 512 bytes | ||
+ | Tamaño E/S (mínimo/óptimo): 512 bytes / 512 bytes | ||
+ | Identificador del disco: 0x0000e82c | ||
+ | |||
+ | Dispositivo Inicio Comienzo Fin Bloques Id Sistema | ||
+ | /dev/nbd0p1 * 2048 15728639 7863296 83 Linux | ||
+ | /dev/nbd0p2 15730686 16775167 522241 5 Extendida | ||
+ | /dev/nbd0p5 15730688 16775167 522240 82 Linux swap / Solaris | ||
+ | $ mount /dev/nbd0p1 /mnt/ | ||
+ | ... | ||
+ | $ umount /mnt | ||
+ | $ qemu-nbd -d /dev/nbd0 | ||
+ | /dev/nbd0 disconnected | ||
+ | </pre> | ||
+ | |||
+ | <li>FreeBSD rootfs:</li> | ||
+ | <pre> | ||
+ | $ modprobe nbd | ||
+ | $ qemu-nbd -c /dev/nbd0 vnx_rootfs_kvm_freebsd64-9.1-v025m2.qcow2 | ||
+ | $ fdisk -l /dev/nbd0 | ||
+ | |||
+ | AVISO: GPT (Tabla de partición GUID) detectado en '/dev/nbd0'! La utilidad fdisk no soporta GPT. Use GNU Parted. | ||
+ | |||
+ | |||
+ | Disco /dev/nbd0: 12.9 GB, 12884901888 bytes | ||
+ | 256 cabezas, 63 sectores/pista, 1560 cilindros, 25165824 sectores en total | ||
+ | Unidades = sectores de 1 * 512 = 512 bytes | ||
+ | Tamaño de sector (lógico / físico): 512 bytes / 512 bytes | ||
+ | Tamaño E/S (mínimo/óptimo): 512 bytes / 512 bytes | ||
+ | Identificador del disco: 0x00000000 | ||
+ | |||
+ | Dispositivo Inicio Comienzo Fin Bloques Id Sistema | ||
+ | /dev/nbd0p1 * 1 25165823 12582911+ ee GPT | ||
+ | $ parted /dev/nbd0 print | ||
+ | Modelo: Desconocida (unknown) | ||
+ | Disco /dev/nbd0: 12,9GB | ||
+ | Tamaño de sector (lógico/físico): 512B/512B | ||
+ | Tabla de particiones. gpt | ||
+ | |||
+ | Numero Inicio Fin Tamaño Sistema de archivos Nombre Banderas | ||
+ | 1 17,4kB 82,9kB 65,5kB | ||
+ | 2 82,9kB 11,8GB 11,8GB freebsd-ufs | ||
+ | 3 11,8GB 12,5GB 644MB | ||
+ | |||
+ | $ mount -r -t ufs -o ufstype=ufs2 /dev/nbd0p2 /mnt/ | ||
+ | $ ls /mnt/ | ||
+ | bin boot COPYRIGHT dev etc lib libexec media mnt proc rescue root sbin sys tmp usr var | ||
+ | $ umount /mnt | ||
+ | $ qemu-nbd -d /dev/nbd0 | ||
+ | /dev/nbd0 disconnected | ||
+ | </pre> | ||
+ | |||
+ | |||
+ | </ul> | ||
+ | |||
+ | <!-- | ||
+ | === Start a virtual machine in direct mode === | ||
To start a virtual machine directly mounting a rootfs and having Internet connection, you can use vnx command with the following parameters: | To start a virtual machine directly mounting a rootfs and having Internet connection, you can use vnx command with the following parameters: | ||
Line 13: | Line 123: | ||
being <rootfs_name> the rootfs filename. | being <rootfs_name> the rootfs filename. | ||
− | Alternatively, you can create a libvirt XML virtual machine definition (see examples in /usr/share/vnx/examples directory) and | + | Alternatively, you can create a libvirt XML virtual machine definition (see examples in /usr/share/vnx/examples directory) and start it using virsh: |
virsh create rootfs_XXX.xml | virsh create rootfs_XXX.xml | ||
and manually opening the console using: | and manually opening the console using: | ||
Line 22: | Line 132: | ||
At the end, halt the virtual machine using the '''vnx_halt''' command. This will clean some log and history files, clean the apt cache and optionally leave a text message in ''/etc/vnx_rootfs_version'' describing the modifications done. | At the end, halt the virtual machine using the '''vnx_halt''' command. This will clean some log and history files, clean the apt cache and optionally leave a text message in ''/etc/vnx_rootfs_version'' describing the modifications done. | ||
+ | --> | ||
− | == Updating VNXACE daemon == | + | ==== Updating VNXACE daemon ==== |
If you have a rootfs with the autoconfiguration and command execution daemon (ACE) already installed, you can use the autoupdate functionality to update the daemon to a newer version. Just follow this procedure: | If you have a rootfs with the autoconfiguration and command execution daemon (ACE) already installed, you can use the autoupdate functionality to update the daemon to a newer version. Just follow this procedure: | ||
− | + | <ul> | |
+ | <li>Linux and FreeBSD</li> | ||
<ul> | <ul> | ||
Line 62: | Line 174: | ||
</ul> | </ul> | ||
--> | --> | ||
− | + | <li>Windows: to be completed</li> | |
− | + | <li>Olive: to be completed</li> | |
− | + | </ul> | |
− | |||
− | |||
− | |||
− | |||
<!-- | <!-- | ||
<li> '''rootfs_XXX.xml''', which are libvirt specifications to start virtual machines with Internet connection (through a NAT) using the different VNX root file-systems. They are included to easily allow modifying root filesystems (for example, to install new software packages).</li> | <li> '''rootfs_XXX.xml''', which are libvirt specifications to start virtual machines with Internet connection (through a NAT) using the different VNX root file-systems. They are included to easily allow modifying root filesystems (for example, to install new software packages).</li> | ||
--> | --> | ||
+ | |||
+ | === Manually modifying a LXC root filesystem === | ||
+ | |||
+ | To manually install additional software or modify a LXC rootfs, you can: | ||
+ | <ul> | ||
+ | <li>Modify directly the files of the rootfs from the host, because LXC rootfs is just a directory on the host where all the files of the VM image can be directly modified. Beware that user and groud ids are different in host and VM.</li> | ||
+ | <li>Start a LXC virtual machine with:</li> | ||
+ | lxc-start -n vnx_rootfs_lxc_ubuntu -f /usr/share/vnx/filesystems/vnx_rootfs_lxc_ubuntu/config | ||
+ | Once the VM is started, check that the network is working. If not, start the network with: | ||
+ | dhclient eth0 | ||
+ | After installing or modifying the rootfs, stop the VM with "halt" (vnx_halt command not available yet for LXC). | ||
+ | </ul> |
Latest revision as of 18:40, 26 August 2015
Updating or modifying a VNX root filesystem
Contents
[hide]This document describes how to make permanent changes to a VNX root filesystem. The recomended way is to use VNX to start a virtual machine that mounts the rootfs in direct mode and make the desired changes from the VM console. Alternatevily, modifications can be made manually by mounting the rootfs in the host or manually starting a virtual machine. Both ways are described below.
Using VNX
You can modify a KVM or LXC root filesystem by using the --modify-rootfs option, for example:
vnx --modify-rootfs vnx_rootfs_kvm_debian-7.0.0-v025.qcow vnx --modify-rootfs vnx_rootfs_lxc_ubuntu-14.04-v025
This command starts new VM that mounts the root filesystem specified in direct mode. Therefore, any change made in the VM will persist after stopping it. Besides, the VM is started with Internet connectivity, by means of a network interface connected to libvirt virbr0 or LXC lxcbr0 bridges.
Several aditional parameters can be used with --modify-rootfs option:
- --arch to select processor architecture: i686 for 32 bits and x86_64 for 64 bits
- --vcpu to select the number of procesor cores to assign to the VM.
- --rootfs-type to specify the rootfs type (libvirt-kvm or lxc). If not specified, VNX tries to guess the type. Default value is libvirt-kvm.
- --mem to specify the memory to assign to the VM (ignored for LXC).
- --update-aced to try to automatically update the VNX autoconfiguration daemon (not applicable for LXC).
For example:
vnx --modify-rootfs vnx_rootfs_kvm_debian64.qcow2 --mem 512M --vcpu 4 --arch x86_64 --update-aced
Root filesystem modifications should be finished by executing vnx_halt command, that clears some system log files and caches (bash history, packages caches, etc) and optionally allows to write a one-line message describing the changes made that is stored in /etc/vnx_rootfs_version file. NOte: vnx_halt is not available yet for LXC.
Manually
Manually modifying a KVM root filesystem
In order to update or modify a KVM VNX root filesystem, you can mount it in the host and make the modifications directly without starting a virtual machine. To do that:
- Create a ndb device with the filesystem:
modprobe nbd qemu-nbd -c /dev/nbd0 <rootfs_name>
being <rootfs_name> the rootfs filename.
fdisk -l /dev/ndb0
mount /dev/nbd0p1 /mnt
umount /mnt qemu-nbd -d /dev/nbd0
Examples:
- Ubuntu rootfs
$ modprobe nbd $ qemu-nbd -c /dev/nbd0 vnx_rootfs_kvm_ubuntu-12.04-v024.qcow2 $ fdisk -l /dev/nbd0 Disco /dev/nbd0: 8589 MB, 8589934592 bytes 255 cabezas, 63 sectores/pista, 1044 cilindros, 16777216 sectores en total Unidades = sectores de 1 * 512 = 512 bytes Tamaño de sector (lógico / físico): 512 bytes / 512 bytes Tamaño E/S (mínimo/óptimo): 512 bytes / 512 bytes Identificador del disco: 0x0000e82c Dispositivo Inicio Comienzo Fin Bloques Id Sistema /dev/nbd0p1 * 2048 15728639 7863296 83 Linux /dev/nbd0p2 15730686 16775167 522241 5 Extendida /dev/nbd0p5 15730688 16775167 522240 82 Linux swap / Solaris $ mount /dev/nbd0p1 /mnt/ ... $ umount /mnt $ qemu-nbd -d /dev/nbd0 /dev/nbd0 disconnected
$ modprobe nbd $ qemu-nbd -c /dev/nbd0 vnx_rootfs_kvm_freebsd64-9.1-v025m2.qcow2 $ fdisk -l /dev/nbd0 AVISO: GPT (Tabla de partición GUID) detectado en '/dev/nbd0'! La utilidad fdisk no soporta GPT. Use GNU Parted. Disco /dev/nbd0: 12.9 GB, 12884901888 bytes 256 cabezas, 63 sectores/pista, 1560 cilindros, 25165824 sectores en total Unidades = sectores de 1 * 512 = 512 bytes Tamaño de sector (lógico / físico): 512 bytes / 512 bytes Tamaño E/S (mínimo/óptimo): 512 bytes / 512 bytes Identificador del disco: 0x00000000 Dispositivo Inicio Comienzo Fin Bloques Id Sistema /dev/nbd0p1 * 1 25165823 12582911+ ee GPT $ parted /dev/nbd0 print Modelo: Desconocida (unknown) Disco /dev/nbd0: 12,9GB Tamaño de sector (lógico/físico): 512B/512B Tabla de particiones. gpt Numero Inicio Fin Tamaño Sistema de archivos Nombre Banderas 1 17,4kB 82,9kB 65,5kB 2 82,9kB 11,8GB 11,8GB freebsd-ufs 3 11,8GB 12,5GB 644MB $ mount -r -t ufs -o ufstype=ufs2 /dev/nbd0p2 /mnt/ $ ls /mnt/ bin boot COPYRIGHT dev etc lib libexec media mnt proc rescue root sbin sys tmp usr var $ umount /mnt $ qemu-nbd -d /dev/nbd0 /dev/nbd0 disconnected
Updating VNXACE daemon
If you have a rootfs with the autoconfiguration and command execution daemon (ACE) already installed, you can use the autoupdate functionality to update the daemon to a newer version. Just follow this procedure:
- Linux and FreeBSD
- Start the virtual machine with the following command line options:
vnx --modify-rootfs <rootfs_name> --update-aced -y
being <rootfs_name> the rootfs filename. This command will try to update the VNXACE daemon to the latest version automatically (-y option).
- Mounting the update disk:
mount /dev/sdb /mnt # For Linux mount -t msdosfs /dev/ad1 /mnt # For FreeBSD
perl /mnt/vnxaced-lf/install_vnxaced
Manually modifying a LXC root filesystem
To manually install additional software or modify a LXC rootfs, you can:
- Modify directly the files of the rootfs from the host, because LXC rootfs is just a directory on the host where all the files of the VM image can be directly modified. Beware that user and groud ids are different in host and VM.
- Start a LXC virtual machine with:
lxc-start -n vnx_rootfs_lxc_ubuntu -f /usr/share/vnx/filesystems/vnx_rootfs_lxc_ubuntu/config
Once the VM is started, check that the network is working. If not, start the network with:
dhclient eth0
After installing or modifying the rootfs, stop the VM with "halt" (vnx_halt command not available yet for LXC).