diff options
Diffstat (limited to 'documentation/content/en/books/handbook/linuxemu/_index.adoc')
-rw-r--r-- | documentation/content/en/books/handbook/linuxemu/_index.adoc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/documentation/content/en/books/handbook/linuxemu/_index.adoc b/documentation/content/en/books/handbook/linuxemu/_index.adoc index df1034c1e7..292af09e70 100644 --- a/documentation/content/en/books/handbook/linuxemu/_index.adoc +++ b/documentation/content/en/books/handbook/linuxemu/_index.adoc @@ -56,11 +56,11 @@ FreeBSD provides *optional* binary compatibility with Linux(R), commonly referre It is available for the x86 (both 32 and 64 bit) and AArch64 architectures. Some Linux-specific operating system features are not yet supported; this mostly happens with functionality specific to hardware or related to system management, such as cgroups or namespaces. -Before reading this chapter, you should: +Before reading this chapter: * Know how to install crossref:ports[ports,additional third-party software]. -After reading this chapter, you will know: +Read this chapter to learn: * How to enable Linux binary compatibility on a FreeBSD system. * How to install additional Linux shared libraries. @@ -119,7 +119,7 @@ In order to run Linux software a Linux userland must be installed first. If all that is wanted is to run some software already included in the Ports tree, it can be installed via package manager and man:pkg[8] will automatically setup the required Linux userland. For example, to install Sublime Text 4, along with all the Linux libraries it depends on, run this command: - + [source,shell] .... # pkg install linux-sublime-text4 @@ -231,7 +231,7 @@ Once enabled, execute the following command to install Ubuntu or Debian in [.fil [source,shell] .... -# debootstrap focal /compat/ubuntu +# debootstrap jammy /compat/ubuntu .... [NOTE] @@ -244,11 +244,11 @@ The output should be similar to the following: [.programlisting] .... -I: Retrieving InRelease +I: Retrieving InRelease I: Checking Release signature I: Valid Release signature (key id F6ECB3762474EDA9D21B7022871920D1991BC93C) -I: Retrieving Packages -I: Validating Packages +I: Retrieving Packages +I: Validating Packages I: Resolving dependencies of required packages... I: Resolving dependencies of base packages... I: Checking component main on http://archive.ubuntu.com/ubuntu... @@ -307,7 +307,7 @@ The output should be similar to the following: [.programlisting] .... -Linux 3.17.0 x86_64 +Linux 5.15.0 x86_64 .... Once inside the chroot, the system behaves as in a normal Ubuntu installation. @@ -321,10 +321,10 @@ For amd64 the following example can be used: [.programlisting] .... -deb http://archive.ubuntu.com/ubuntu focal main universe restricted multiverse -deb http://security.ubuntu.com/ubuntu/ focal-security universe multiverse restricted main -deb http://archive.ubuntu.com/ubuntu focal-backports universe multiverse restricted main -deb http://archive.ubuntu.com/ubuntu focal-updates universe multiverse restricted main +deb http://archive.ubuntu.com/ubuntu jammy main universe restricted multiverse +deb http://security.ubuntu.com/ubuntu/ jammy-security universe multiverse restricted main +deb http://archive.ubuntu.com/ubuntu jammy-backports universe multiverse restricted main +deb http://archive.ubuntu.com/ubuntu jammy-updates universe multiverse restricted main .... For arm64 this other example can be used: |