« Atelier SysRes SE2a5 2023/2024 E2 » : différence entre les versions

De wiki-se.plil.fr
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 4 : Ligne 4 :


== Création de la VM ==
== Création de la VM ==
<syntaxhighlight lang="linux-config">
xen-create-image --hostname=berlin --ip=172.26.145.112 --dir=/usr/local/xen --dhcp
</syntaxhighlight>


# <xen-create-image --hostname=berlin --ip=172.26.145.112 --dir=/usr/local/xen --dhcp>
* vi /etc/network/interfaces : remplacer DHCP par static address 172.26.145.112/24 gateway 172.26.145.254
# vi /etc/network/interfaces : remplacer DHCP par static address 172.26.145.112/24 gateway 172.26.145.254


== '''14/09/2023 :''' ==
== '''14/09/2023 :''' ==
== Création d’un conteneur à la main ==
== Création d’un conteneur à la main ==
# dd if=/dev/zero of=toto bs=1024k count=10240
<syntaxhighlight>
# mkfs /home/pifou/toto
dd if=/dev/zero of=toto bs=1024k count=10240
# mkdir tmp/mnt
 
# mount -oloop /home/pifou/toto /tmp/mnt
mkfs /home/pifou/toto
# apt install debootstrap
 
# debootstrap stable /tmp/mnt
mkdir tmp/mnt
# echo "proc /proc proc defaults 0 0" >> /tmp/mnt/etc/fstab
 
# unshare -p -f -m chroot /tmp/mnt  /bin/sh -c "mount /proc ; /bin/bash"
mount -oloop /home/pifou/toto /tmp/mnt
 
apt install debootstrap
 
debootstrap stable /tmp/mnt
 
echo "proc /proc proc defaults 0 0" >> /tmp/mnt/etc/fstab
 
unshare -p -f -m chroot /tmp/mnt  /bin/sh -c "mount /proc ; /bin/bash"
</syntaxhighlight>


== Orchestrateur Docker / conteneurs ==
== Orchestrateur Docker / conteneurs ==
 
<syntaxhighlight>
# docker run -i -t debian /bin/bash
docker run -i -t debian /bin/bash
</syntaxhighlight>

Version du 14 septembre 2023 à 19:04

IP : 172.26.145.112

13/09/2023 :

Création de la VM

xen-create-image --hostname=berlin --ip=172.26.145.112 --dir=/usr/local/xen --dhcp
  • vi /etc/network/interfaces : remplacer DHCP par static address 172.26.145.112/24 gateway 172.26.145.254

14/09/2023 :

Création d’un conteneur à la main

dd if=/dev/zero of=toto bs=1024k count=10240

mkfs /home/pifou/toto

mkdir tmp/mnt

mount -oloop /home/pifou/toto /tmp/mnt

apt install debootstrap

debootstrap stable /tmp/mnt

echo "proc /proc proc defaults 0 0" >> /tmp/mnt/etc/fstab

unshare -p -f -m chroot /tmp/mnt  /bin/sh -c "mount /proc ; /bin/bash"

Orchestrateur Docker / conteneurs

docker run -i -t debian /bin/bash