« Atelier SysRes SE2a5 2023/2024 E2 » : différence entre les versions
Aller à la navigation
Aller à la recherche
Aucun résumé des modifications |
|||
Ligne 3 : | Ligne 3 : | ||
== '''13/09/2023 :''' == | == '''13/09/2023 :''' == | ||
== Création de la VM == | === Création de la VM === | ||
<syntaxhighlight lang="linux-config"> | <syntaxhighlight lang="linux-config"> | ||
xen-create-image --hostname=berlin --ip=172.26.145.112 --dir=/usr/local/xen --dhcp | xen-create-image --hostname=berlin --ip=172.26.145.112 --dir=/usr/local/xen --dhcp | ||
Ligne 14 : | Ligne 14 : | ||
== '''14/09/2023 :''' == | == '''14/09/2023 :''' == | ||
== Création d’un conteneur à la main == | |||
=== Création d’un conteneur à la main === | |||
<syntaxhighlight> | <syntaxhighlight> | ||
dd if=/dev/zero of=toto bs=1024k count=10240 | dd if=/dev/zero of=toto bs=1024k count=10240 | ||
Ligne 33 : | Ligne 34 : | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Docker == | === Docker === | ||
<syntaxhighlight> | <syntaxhighlight> | ||
docker run -i -t debian /bin/bash | docker run -i -t debian /bin/bash | ||
Ligne 39 : | Ligne 40 : | ||
== '''18/09/2023''' == | == '''18/09/2023''' == | ||
Configuration | |||
=== Configuration === | |||
<syntaxhighlight lang="linux-config"> | |||
nano /etc/network/interfaces | nano /etc/network/interfaces | ||
auto eth0 | auto eth0 |
Version du 17 septembre 2023 à 16:25
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"
Docker
docker run -i -t debian /bin/bash
18/09/2023
Configuration
nano /etc/network/interfaces
auto eth0
iface eth0 inet static
address 172.26.145.109/24 gateway 172.26.145.254
nano /etc/ssh/sshd_config
PermitRootLogin yes