From owner-dev-commits-doc-all@freebsd.org Fri Apr 9 16:50:07 2021 Return-Path: Delivered-To: dev-commits-doc-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 61A405BDACD for ; Fri, 9 Apr 2021 16:50:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FH3yl2LTmz4tQg; Fri, 9 Apr 2021 16:50:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4383B21264; Fri, 9 Apr 2021 16:50:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 139Go70j054719; Fri, 9 Apr 2021 16:50:07 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 139Go7Z6054716; Fri, 9 Apr 2021 16:50:07 GMT (envelope-from git) Date: Fri, 9 Apr 2021 16:50:07 GMT Message-Id: <202104091650.139Go7Z6054716@gitrepo.freebsd.org> To: doc-committers@FreeBSD.org, dev-commits-doc-all@FreeBSD.org From: Marc Fonvieille Subject: git: e9e2952b46 - main - MFen: Update to b0fd96912189684a0ab542045c4560d1c72d60b2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: blackend X-Git-Repository: doc X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: e9e2952b4685234a6e13cb1f29dd9dd4bd88e1fb Auto-Submitted: auto-generated X-BeenThere: dev-commits-doc-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the doc repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Apr 2021 16:50:07 -0000 The branch main has been updated by blackend: URL: https://cgit.FreeBSD.org/doc/commit/?id=e9e2952b4685234a6e13cb1f29dd9dd4bd88e1fb commit e9e2952b4685234a6e13cb1f29dd9dd4bd88e1fb Author: Marc Fonvieille AuthorDate: 2021-04-09 16:49:21 +0000 Commit: Marc Fonvieille CommitDate: 2021-04-09 16:49:21 +0000 MFen: Update to b0fd96912189684a0ab542045c4560d1c72d60b2 --- .../content/fr/books/handbook/linuxemu/_index.adoc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/documentation/content/fr/books/handbook/linuxemu/_index.adoc b/documentation/content/fr/books/handbook/linuxemu/_index.adoc index 32f1328d17..2510841864 100644 --- a/documentation/content/fr/books/handbook/linuxemu/_index.adoc +++ b/documentation/content/fr/books/handbook/linuxemu/_index.adoc @@ -114,6 +114,26 @@ Sur les machines 64bits, [.filename]#/etc/rc.d/abi# chargera automatiquement le Depuis qu'à été ajouté le support pour l'exécution des binaires Linux(R) 32 et 64 bits à la couche de compatibilité Linux(R) (sur les hôtes 64 bits de type x86), il n'est plus possible d'ajouter l'émulation en statique dans un noyau personnalisé. +Pour certaines applications, [.filename]#/compat/linux/proc#, +[.filename]#/compat/linux/sys#, et [.filename]#/compat/linux/dev/shm# +pourront nécessiter d'être montés. Ajoutez la ligne suivante au fichier +[.filename]#/etc/fstab#: + +.... +linprocfs /compat/linux/proc linprocfs rw 0 0 +linsysfs /compat/linux/sys linsysfs rw 0 0 +tmpfs /compat/linux/dev/shm tmpfs rw,mode=1777 0 0 +.... + +Puis montez les systèmes de fichiers en conséquence: + +[source,shell] +---- +# mount /compat/linux/sys +# mount /compat/linux/proc +# mount /compat/linux/dev/shm +---- + [[linuxemu-libs-manually]] === Installer des bibliothèques supplémentaires à la main