Configurer Debian

De Reliable Brain

Premières configurations

  • Forcer les locales à fr-UTF8 :
dpkg-reconfigure locales
  • Forcer l'heure
dpkg-reconfigure tzdata
  • Activer sudo
apt install sudo

Installer gVisor (SandBoxinig)

Source : https://gvisor.dev/docs/user_guide/install/

(
 set -e
 ARCH=$(uname -m)
 URL=https://storage.googleapis.com/gvisor/releases/release/latest/${ARCH}
 wget ${URL}/runsc ${URL}/runsc.sha512 \
   ${URL}/containerd-shim-runsc-v1 ${URL}/containerd-shim-runsc-v1.sha512
 sha512sum -c runsc.sha512 \
   -c containerd-shim-runsc-v1.sha512
 rm -f *.sha512
 chmod a+rx runsc containerd-shim-runsc-v1
 sudo mv runsc containerd-shim-runsc-v1 /usr/local/bin
)

Installer YARN