From owner-svn-doc-head@freebsd.org Mon Sep 5 11:34:08 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DA95B96A88; Mon, 5 Sep 2016 11:34:08 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E0548F3; Mon, 5 Sep 2016 11:34:08 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u85BY7eP057246; Mon, 5 Sep 2016 11:34:07 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u85BY7ZP057244; Mon, 5 Sep 2016 11:34:07 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609051134.u85BY7ZP057244@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 5 Sep 2016 11:34:07 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49366 - in head: en_US.ISO8859-1/books/porters-handbook/makefiles share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Sep 2016 11:34:08 -0000 Author: mat Date: Mon Sep 5 11:34:07 2016 New Revision: 49366 URL: https://svnweb.freebsd.org/changeset/doc/49366 Log: Document GH_SUBDIR. While there, add an example on how to do work with git submodules. Reviewed by: wblock Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D7661 Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml head/share/xml/man-refs.ent Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Fri Sep 2 21:40:36 2016 (r49365) +++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Mon Sep 5 11:34:07 2016 (r49366) @@ -1982,15 +1982,29 @@ MASTER_SITE_SUBDIR= stardict/WyabdcRealP + GH_SUBDIR + When the software needs an additional + distribution file to be extracted within + ${WRKSRC}, this variable can be + used. See the examples in + for more information. + (none) + + + GH_TUPLE - GH_TUPLE allows putting all - the GH_ACCOUNT, - GH_PROJECT, and - GH_TAGNAME into one variable. The - format is - account:project:tagname:group. - It is helpful when there is more than one GitHub - project from which to fetch. + GH_TUPLE allows putting + GH_ACCOUNT, + GH_PROJECT, + GH_TAGNAME, and + GH_SUBDIR into a single variable. + The format is + account:project:tagname:group/subdir. + The + /subdir + part is optional. It is helpful when there is more + than one GitHub project from which to fetch. @@ -2132,11 +2146,9 @@ USE_GITHUB= yes GH_ACCOUNT= bar:icons,contrib GH_PROJECT= foo-icons:icons foo-contrib:contrib GH_TAGNAME= 1.0:icons fa579bc:contrib +GH_SUBDIR= ext/icons:icons -CONFIGURE_ARGS= --with-contrib=${WRKSRC_contrib} - -post-extract: - @${MV} ${WRKSRC_icons} ${WRKSRC}/icons +CONFIGURE_ARGS= --with-contrib=${WRKSRC_contrib} This will fetch three distribution files from github. The default one comes from @@ -2165,6 +2177,17 @@ post-extract: with the contrib tag is called ${WRKSRC_contrib} and contains ${WRKDIR}/foo-contrib-fa579bc. + + The software's build system expects to find the icons + in a ext/icons subdirectory in its + sources, so GH_SUBDIR is used. + GH_SUBDIR makes sure that + ext exists, but that + ext/icons does not already exist. + Then it does this: + + post-extract: + @${MV} ${WRKSRC_icons} ${WRKSRC}/ext/icons @@ -2180,19 +2203,118 @@ post-extract: PORTVERSION= 1.0.2 USE_GITHUB= yes -GH_TUPLE= bar:foo-icons:1.0:icons \ +GH_TUPLE= bar:foo-icons:1.0:icons/ext/icons \ bar:foo-contrib:fa579bc:contrib -CONFIGURE_ARGS= --with-contrib=${WRKSRC_contrib} - -post-extract: - @${MV} ${WRKSRC_icons} ${WRKSRC}/icons +CONFIGURE_ARGS= --with-contrib=${WRKSRC_contrib} Grouping was used in the previous example with bar:icons,contrib. Some redundant information is present with GH_TUPLE because grouping is not possible. + + + How to Use <varname>USE_GITHUB</varname> with + <application>Git</application> Submodules? + + Ports with GitHub as an upstream repository sometimes + use submodules. See &man.git-submodule.1; for more + information. + + The problem with submodules is that each is a separate + repository. As such, they each must be fetched + separately. + + Using finance/moneymanagerex as an + example, its GitHub repository is . + It has a .gitmodules + file at the root. This file describes all the submodules + used in this repository, and lists additional repositories + needed. This file will tell what additional repositories + are needed: + + [submodule "lib/wxsqlite3"] + path = lib/wxsqlite3 + url = https://github.com/utelle/wxsqlite3.git +[submodule "3rd/mongoose"] + path = 3rd/mongoose + url = https://github.com/cesanta/mongoose.git +[submodule "3rd/LuaGlue"] + path = 3rd/LuaGlue + url = https://github.com/moneymanagerex/LuaGlue.git +[submodule "3rd/cgitemplate"] + path = 3rd/cgitemplate + url = https://github.com/moneymanagerex/html-template.git +[...] + + The only information missing from that file is the + commit hash or tag to use as a version. This information + is found after cloning the repository: + + &prompt.user; git clone --recurse-submodules https://github.com/moneymanagerex/moneymanagerex.git +Cloning into 'moneymanagerex'... +remote: Counting objects: 32387, done. +[...] +Submodule '3rd/LuaGlue' (https://github.com/moneymanagerex/LuaGlue.git) registered for path '3rd/LuaGlue' +Submodule '3rd/cgitemplate' (https://github.com/moneymanagerex/html-template.git) registered for path '3rd/cgitemplate' +Submodule '3rd/mongoose' (https://github.com/cesanta/mongoose.git) registered for path '3rd/mongoose' +Submodule 'lib/wxsqlite3' (https://github.com/utelle/wxsqlite3.git) registered for path 'lib/wxsqlite3' +[...] +Cloning into '/home/mat/work/freebsd/ports/finance/moneymanagerex/moneymanagerex/3rd/LuaGlue'... +Cloning into '/home/mat/work/freebsd/ports/finance/moneymanagerex/moneymanagerex/3rd/cgitemplate'... +Cloning into '/home/mat/work/freebsd/ports/finance/moneymanagerex/moneymanagerex/3rd/mongoose'... +Cloning into '/home/mat/work/freebsd/ports/finance/moneymanagerex/moneymanagerex/lib/wxsqlite3'... +[...] +Submodule path '3rd/LuaGlue': checked out 'c51d11a247ee4d1e9817dfa2a8da8d9e2f97ae3b' +Submodule path '3rd/cgitemplate': checked out 'cd434eeeb35904ebcd3d718ba29c281a649b192c' +Submodule path '3rd/mongoose': checked out '2140e5992ab9a3a9a34ce9a281abf57f00f95cda' +Submodule path 'lib/wxsqlite3': checked out 'fb66eb230d8aed21dec273b38c7c054dcb7d6b51' +[...] +&prompt.user; cd moneymanagerex +&prompt.user; git submodule status + c51d11a247ee4d1e9817dfa2a8da8d9e2f97ae3b 3rd/LuaGlue (heads/master) + cd434eeeb35904ebcd3d718ba29c281a649b192c 3rd/cgitemplate (cd434ee) + 2140e5992ab9a3a9a34ce9a281abf57f00f95cda 3rd/mongoose (6.2-138-g2140e59) + fb66eb230d8aed21dec273b38c7c054dcb7d6b51 lib/wxsqlite3 (v3.4.0) +[...] + + It can also be found on GitHub. Each subdirectory + that is a submodule is shown as + directory @ hash, + for example, + mongoose @ 2140e59. + + + While getting the information from GitHub seems more + straightforward, the information found using + git submodule status will provide + more meaningful information. For example, here, + lib/wxsqlite3's commit hash + fb66eb2 correspond to + v3.4.0. Both can be used + interchangeably, but when a tag is available, use + it. + + + Now that all the required information has been + gathered, the Makefile can be written + (only GitHub-related lines are shown): + + PORTNAME= moneymanagerex +PORTVERSION= 1.3.0 +DISTVERSIONPREFIX= v + +USE_GITHUB= yes +GH_TUPLE= utelle:wxsqlite3:v3.4.0:wxsqlite3/lib/wxsqlite3 \ + moneymanagerex:LuaGlue:c51d11a:lua_glue/3rd/LuaGlue \ + moneymanagerex:html-template:cd434ee:html_template/3rd/cgitemplate \ + cesanta:mongoose:2140e59:mongoose/3rd/mongoose \ + [...] + @@ -4755,6 +4877,10 @@ LIB_DEPENDS+= libb.so:devel/b + GH_SUBDIR + + + GH_TAGNAME Modified: head/share/xml/man-refs.ent ============================================================================== --- head/share/xml/man-refs.ent Fri Sep 2 21:40:36 2016 (r49365) +++ head/share/xml/man-refs.ent Mon Sep 5 11:34:07 2016 (r49366) @@ -257,6 +257,7 @@ getfacl1"> getopt1"> getopts1"> +git-submodule1"> glob1"> gnu-ar1"> gnu-ranlib1"> From owner-svn-doc-head@freebsd.org Mon Sep 5 15:46:01 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A631A9D702; Mon, 5 Sep 2016 15:46:01 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C2A4F831; Mon, 5 Sep 2016 15:46:00 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u85FjxAC053022; Mon, 5 Sep 2016 15:45:59 GMT (envelope-from bcr@FreeBSD.org) Received: (from bcr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u85Fjxtb053021; Mon, 5 Sep 2016 15:45:59 GMT (envelope-from bcr@FreeBSD.org) Message-Id: <201609051545.u85Fjxtb053021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bcr set sender to bcr@FreeBSD.org using -f From: Benedict Reuschling Date: Mon, 5 Sep 2016 15:45:59 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49367 - head/en_US.ISO8859-1/books/handbook/linuxemu X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Sep 2016 15:46:01 -0000 Author: bcr Date: Mon Sep 5 15:45:59 2016 New Revision: 49367 URL: https://svnweb.freebsd.org/changeset/doc/49367 Log: Mention that 64-bit binary compatibility with Linux is available now and how to use it. Submitted by: Randy Westlund Differential Revision: https://reviews.freebsd.org/D7783 Modified: head/en_US.ISO8859-1/books/handbook/linuxemu/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/linuxemu/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/linuxemu/chapter.xml Mon Sep 5 11:34:07 2016 (r49366) +++ head/en_US.ISO8859-1/books/handbook/linuxemu/chapter.xml Mon Sep 5 15:45:59 2016 (r49367) @@ -51,17 +51,21 @@ Linux - &os; provides 32-bit binary compatibility with &linux;, - allowing users to install and run most 32-bit &linux; binaries + &os; provides binary compatibility with &linux;, + allowing users to install and run most &linux; binaries on a &os; system without having to first modify the binary. It - has even been reported that, in some situations, 32-bit &linux; + has even been reported that, in some situations, &linux; binaries perform better on &os; than they do on &linux;. However, some &linux;-specific operating system features are not supported under &os;. For example, &linux; binaries will not work on &os; if they overly use &i386; specific calls, - such as enabling virtual 8086 mode. In addition, 64-bit &linux; - binaries are not supported at this time. + such as enabling virtual 8086 mode. + + + Support for 64-bit binary compatibility with &linux; was + added in &os; 10.3. + After reading this chapter, you will know: @@ -113,6 +117,10 @@ &prompt.root; kldload linux + For 64-bit compatibility: + + &prompt.root; kldload linux64 + To verify that the module is loaded: &prompt.user; kldstat @@ -134,6 +142,9 @@ linux_enable="YES" + On 64-bit machines, /etc/rc.d/abi will + automatically load the module for 64-bit emulation. + kernel options COMPAT_LINUX From owner-svn-doc-head@freebsd.org Tue Sep 6 19:38:11 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80460BC6745; Tue, 6 Sep 2016 19:38:11 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E46AE86; Tue, 6 Sep 2016 19:38:11 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u86JcACV092262; Tue, 6 Sep 2016 19:38:10 GMT (envelope-from bcr@FreeBSD.org) Received: (from bcr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u86JcATj092261; Tue, 6 Sep 2016 19:38:10 GMT (envelope-from bcr@FreeBSD.org) Message-Id: <201609061938.u86JcATj092261@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bcr set sender to bcr@FreeBSD.org using -f From: Benedict Reuschling Date: Tue, 6 Sep 2016 19:38:10 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49368 - head/en_US.ISO8859-1/books/handbook/virtualization X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2016 19:38:11 -0000 Author: bcr Date: Tue Sep 6 19:38:10 2016 New Revision: 49368 URL: https://svnweb.freebsd.org/changeset/doc/49368 Log: Use the proper version of FreeBSD (bumped to 10.3 for now) in all the examples where an ISO file is used to avoid confusion. Reported by: Nathan Dautenhahn (ndd@seas.upenn.edu) via freebsd-doc Modified: head/en_US.ISO8859-1/books/handbook/virtualization/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/virtualization/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/virtualization/chapter.xml Mon Sep 5 15:45:59 2016 (r49367) +++ head/en_US.ISO8859-1/books/handbook/virtualization/chapter.xml Tue Sep 6 19:38:10 2016 (r49368) @@ -1061,8 +1061,8 @@ net.link.tap.up_on_open: 0 -> 1 Download an installation image of &os; to install: - &prompt.root; fetch ftp://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.2/FreeBSD-10.2-RELEASE-amd64-bootonly.iso -FreeBSD-10.2-RELEASE-amd64-bootonly.iso 100% of 230 MB 570 kBps 06m17s + &prompt.root; fetch ftp://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.3/FreeBSD-10.3-RELEASE-amd64-bootonly.iso +FreeBSD-10.3-RELEASE-amd64-bootonly.iso 100% of 230 MB 570 kBps 06m17s &os; comes with an example script for running a virtual machine in bhyve. The script will @@ -1081,7 +1081,7 @@ FreeBSD-10.2-RELEASE-amd64-bootonly.iso machine, used to track the running machines. This example starts the virtual machine in installation mode: - &prompt.root; sh /usr/share/examples/bhyve/vmrun.sh -c 4 -m 1024M -t tap0 -d guest.img -i -I FreeBSD-10.0-RELEASE-amd64-bootonly.iso guestname + &prompt.root; sh /usr/share/examples/bhyve/vmrun.sh -c 4 -m 1024M -t tap0 -d guest.img -i -I FreeBSD-10.3-RELEASE-amd64-bootonly.iso guestname The virtual machine will boot and start the installer. After installing a system in the virtual machine, when the From owner-svn-doc-head@freebsd.org Wed Sep 7 18:59:25 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C4A8ABCF493; Wed, 7 Sep 2016 18:59:25 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 86AB7188; Wed, 7 Sep 2016 18:59:25 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u87IxO7G025377; Wed, 7 Sep 2016 18:59:24 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u87IxOqE025376; Wed, 7 Sep 2016 18:59:24 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201609071859.u87IxOqE025376@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Wed, 7 Sep 2016 18:59:24 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49369 - head/en_US.ISO8859-1/htdocs/releases/11.0R X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Sep 2016 18:59:25 -0000 Author: gjb Date: Wed Sep 7 18:59:24 2016 New Revision: 49369 URL: https://svnweb.freebsd.org/changeset/doc/49369 Log: Regen after r305551 Approved by: re (implicit) Sponsored by: The FreeBSD Foundation Modified: head/en_US.ISO8859-1/htdocs/releases/11.0R/relnotes.html Modified: head/en_US.ISO8859-1/htdocs/releases/11.0R/relnotes.html ============================================================================== --- head/en_US.ISO8859-1/htdocs/releases/11.0R/relnotes.html Tue Sep 6 19:38:10 2016 (r49368) +++ head/en_US.ISO8859-1/htdocs/releases/11.0R/relnotes.html Wed Sep 7 18:59:24 2016 (r49369) @@ -1,5 +1,5 @@ -FreeBSD 11.0-STABLE Release Notes

FreeBSD 11.0-STABLE Release Notes

The FreeBSD Project

FreeBSD 11.0-STABLE Release Notes

The FreeBSD Project

FreeBSD is a registered trademark of the FreeBSD Foundation.

IBM, AIX, OS/2, PowerPC, PS/2, S/390, and ThinkPad are @@ -18,7 +18,7 @@ as trademarks. Where those designations appear in this document, and the FreeBSD Project was aware of the trademark claim, the designations have been followed by the or the - ® symbol.

Last modified on 2016-08-30 13:26:00Z by gjb.
Abstract

The release notes for FreeBSD 11.0-STABLE contain + ® symbol.

Last modified on 2016-09-07 18:20:49Z by wblock.
Abstract

The release notes for FreeBSD 11.0-STABLE contain a summary of the changes made to the FreeBSD base system on the 11.0-STABLE development line. This document lists applicable security advisories that were issued since the last @@ -394,7 +394,13 @@ Sandvine, Inc.)

The service(8) utility has been updated to honor entries within /etc/rc.conf.d/. [r287576] (Sponsored by - ScaleEngine, Inc.)

5.6. /etc/periodic + ScaleEngine, Inc.)

Two new subcommands have been added to + the rc(8) subsystem. describe shows + an rc script's description, and + extracommands shows any non-standard + commands present in an rc script, like + reload, configtest, or + keygen. [r298515]

5.6. /etc/periodic Scripts

The daily periodic(8) script 110.clean-tmps has been updated to avoid crossing filesystem mount boundaries when cleaning files in From owner-svn-doc-head@freebsd.org Thu Sep 8 14:31:18 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 550C6BD1571; Thu, 8 Sep 2016 14:31:18 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 27D151E14; Thu, 8 Sep 2016 14:31:18 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u88EVHIW071977; Thu, 8 Sep 2016 14:31:17 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u88EVHdX071976; Thu, 8 Sep 2016 14:31:17 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609081431.u88EVHdX071976@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 8 Sep 2016 14:31:17 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49371 - head/en_US.ISO8859-1/books/porters-handbook/uses X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2016 14:31:18 -0000 Author: mat Date: Thu Sep 8 14:31:17 2016 New Revision: 49371 URL: https://svnweb.freebsd.org/changeset/doc/49371 Log: Catch up with USES=ssl changes. Modified: head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml Wed Sep 7 20:21:33 2016 (r49370) +++ head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml Thu Sep 8 14:31:17 2016 (r49371) @@ -2289,9 +2289,12 @@ ksh_CMD= ${LOCALBASE}/bin/ksh <literal>ssl</literal> - Possible arguments: (none) + Possible arguments: (none), build, + run Provide support for OpenSSL. + A build- or run-time only dependency can be specified using + build or run. These variables are available for the port's use, they are also added to MAKE_ENV: From owner-svn-doc-head@freebsd.org Thu Sep 8 14:40:05 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF89EBD1839; Thu, 8 Sep 2016 14:40:04 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0BA918F; Thu, 8 Sep 2016 14:40:04 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u88Ee41e076005; Thu, 8 Sep 2016 14:40:04 GMT (envelope-from gabor@FreeBSD.org) Received: (from gabor@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u88Ee4kO076004; Thu, 8 Sep 2016 14:40:04 GMT (envelope-from gabor@FreeBSD.org) Message-Id: <201609081440.u88Ee4kO076004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gabor set sender to gabor@FreeBSD.org using -f From: Gabor Kovesdan Date: Thu, 8 Sep 2016 14:40:04 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49372 - head/en_US.ISO8859-1/books/fdp-primer/xml-primer X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2016 14:40:05 -0000 Author: gabor Date: Thu Sep 8 14:40:03 2016 New Revision: 49372 URL: https://svnweb.freebsd.org/changeset/doc/49372 Log: - Update and simplify section on comments according to the XML standard (this section still reflected some old SGML constructs). PR: 204885 Submitted by: Andreas Perstinger Modified: head/en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml Modified: head/en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml Thu Sep 8 14:31:17 2016 (r49371) +++ head/en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml Thu Sep 8 14:40:03 2016 (r49372) @@ -717,56 +717,40 @@ example.xml:5: element head: validity er Comments - Comments are an XML construct, and are - normally only valid inside a DTD. However, - as shows, it is possible - to use XML syntax within the document. - - The delimiter for XML comments is the string - --. The first occurrence of - this string opens a comment, and the second closes it. + An XML document may contain comments. + They may appear anywhere as long as they are not inside tags. + They are even allowed in some locations inside the + DTD (e.g., between entity + declarations). + + XML comments start with the string + <!-- and end with the + string -->. + + Here are some examples of valid XML + comments: - <acronym>XML</acronym> Generic Comment + <acronym>XML</acronym> Generic Comments <!-- This is inside the comment --> -<!-- This is another comment --> +<!--This is another comment--> -<!-- This is one way - of doing multiline comments --> +<!-- This is how you + write multiline comments --> -<!-- This is another way of -- - -- doing multiline comments --> +<p>A simple <!-- Comment inside an element's content --> paragraph.</p> - XHTML users may be familiar with different - rules for comments. In particular, it is often believed that - the string <!-- opens a comment, and it is - only closed by -->. - - This is not correct. Many web browsers - have broken XHTML parsers, and will accept - incorrect input as valid. However, the XML - parsers used by the Documentation Project are more strict, and - will reject documents with that error. + XML comments may contain any strings + except --: - Erroneous <acronym>XML</acronym> Comments - - <!-- This is in the comment -- - - THIS IS OUTSIDE THE COMMENT! - - -- back inside the comment --> - - The XML parser will treat this as - though it were actually: - - <!THIS IS OUTSIDE THE COMMENT> + Erroneous <acronym>XML</acronym> Comment - That is not valid XML, and may give - confusing error messages. + <!-- This comment--is wrong --> From owner-svn-doc-head@freebsd.org Thu Sep 8 23:47:48 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81A8BBD2923; Thu, 8 Sep 2016 23:47:48 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4223C9D9; Thu, 8 Sep 2016 23:47:48 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u88Nlljm085658; Thu, 8 Sep 2016 23:47:47 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u88NlluM085657; Thu, 8 Sep 2016 23:47:47 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201609082347.u88NlluM085657@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Thu, 8 Sep 2016 23:47:47 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49373 - head/en_US.ISO8859-1/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2016 23:47:48 -0000 Author: gjb Date: Thu Sep 8 23:47:47 2016 New Revision: 49373 URL: https://svnweb.freebsd.org/changeset/doc/49373 Log: Remove a broken URL for 11.0 ia64 installation medium. Sponsored by: The FreeBSD Foundation Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent ============================================================================== --- head/en_US.ISO8859-1/share/xml/release.l10n.ent Thu Sep 8 14:40:03 2016 (r49372) +++ head/en_US.ISO8859-1/share/xml/release.l10n.ent Thu Sep 8 23:47:47 2016 (r49373) @@ -83,7 +83,6 @@

  • i386
  • armv6
  • aarch64
  • -
  • ia64
  • powerpc
  • powerpc64
  • sparc64
  • From owner-svn-doc-head@freebsd.org Fri Sep 9 13:09:14 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DCD16BD2F0B; Fri, 9 Sep 2016 13:09:14 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A8766D5F; Fri, 9 Sep 2016 13:09:14 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u89D9D3L087466; Fri, 9 Sep 2016 13:09:13 GMT (envelope-from ryusuke@FreeBSD.org) Received: (from ryusuke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u89D9DvM087465; Fri, 9 Sep 2016 13:09:13 GMT (envelope-from ryusuke@FreeBSD.org) Message-Id: <201609091309.u89D9DvM087465@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ryusuke set sender to ryusuke@FreeBSD.org using -f From: Ryusuke SUZUKI Date: Fri, 9 Sep 2016 13:09:13 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49374 - head/ja_JP.eucJP/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Sep 2016 13:09:15 -0000 Author: ryusuke Date: Fri Sep 9 13:09:13 2016 New Revision: 49374 URL: https://svnweb.freebsd.org/changeset/doc/49374 Log: - Merge the following from the English version: r49267 -> r49373 head/ja_JP.eucJP/share/xml/release.l10n.ent Modified: head/ja_JP.eucJP/share/xml/release.l10n.ent Modified: head/ja_JP.eucJP/share/xml/release.l10n.ent ============================================================================== --- head/ja_JP.eucJP/share/xml/release.l10n.ent Thu Sep 8 23:47:47 2016 (r49373) +++ head/ja_JP.eucJP/share/xml/release.l10n.ent Fri Sep 9 13:09:13 2016 (r49374) @@ -2,7 +2,7 @@ i386
  • armv6
  • aarch64
  • -
  • ia64
  • powerpc
  • powerpc64
  • sparc64
  • From owner-svn-doc-head@freebsd.org Fri Sep 9 14:18:37 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0342BD276D; Fri, 9 Sep 2016 14:18:37 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 957A0C9E; Fri, 9 Sep 2016 14:18:37 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u89EIa9K014097; Fri, 9 Sep 2016 14:18:36 GMT (envelope-from bhd@FreeBSD.org) Received: (from bhd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u89EIa3n014096; Fri, 9 Sep 2016 14:18:36 GMT (envelope-from bhd@FreeBSD.org) Message-Id: <201609091418.u89EIa3n014096@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhd set sender to bhd@FreeBSD.org using -f From: Bjoern Heidotting Date: Fri, 9 Sep 2016 14:18:36 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49375 - head/de_DE.ISO8859-1/books/handbook/virtualization X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Sep 2016 14:18:38 -0000 Author: bhd Date: Fri Sep 9 14:18:36 2016 New Revision: 49375 URL: https://svnweb.freebsd.org/changeset/doc/49375 Log: Update to r49368: Use the proper version of FreeBSD (bumped to 10.3 for now) in all the examples where an ISO file is used to avoid confusion. Modified: head/de_DE.ISO8859-1/books/handbook/virtualization/chapter.xml Modified: head/de_DE.ISO8859-1/books/handbook/virtualization/chapter.xml ============================================================================== --- head/de_DE.ISO8859-1/books/handbook/virtualization/chapter.xml Fri Sep 9 13:09:13 2016 (r49374) +++ head/de_DE.ISO8859-1/books/handbook/virtualization/chapter.xml Fri Sep 9 14:18:36 2016 (r49375) @@ -5,7 +5,7 @@ $FreeBSD$ $FreeBSDde: de-docproj/books/handbook/virtualization/chapter.xml,v 1.14 2010/07/03 14:29:30 jkois Exp $ - basiert auf: r48529 + basiert auf: r49368 --> 1 Laden Sie ein Installationsabbild von &os;: - &prompt.root; fetch ftp://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.2/FreeBSD-10.2-RELEASE-amd64-bootonly.iso -FreeBSD-10.2-RELEASE-amd64-bootonly.iso 100% of 230 MB 570 kBps 06m17s + &prompt.root; fetch ftp://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.3/FreeBSD-10.3-RELEASE-amd64-bootonly.iso +FreeBSD-10.3-RELEASE-amd64-bootonly.iso 100% of 230 MB 570 kBps 06m17s &os; enthält ein Beispielskript um eine virtuelle Maschine in bhyve auszuführen. Das Skript @@ -1191,7 +1191,7 @@ FreeBSD-10.2-RELEASE-amd64-bootonly.iso Beispiel startet die virtuelle Maschine im Installationsmodus: - &prompt.root; sh /usr/share/examples/bhyve/vmrun.sh -c 4 -m 1024M -t tap0 -d guest.img -i -I FreeBSD-10.0-RELEASE-amd64-bootonly.iso guestname + &prompt.root; sh /usr/share/examples/bhyve/vmrun.sh -c 4 -m 1024M -t tap0 -d guest.img -i -I FreeBSD-10.3-RELEASE-amd64-bootonly.iso guestname Die virtuelle Maschine wird starten und das Installationsprogramm ausführen. Nachdem das System in der From owner-svn-doc-head@freebsd.org Fri Sep 9 15:33:52 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 668D4BD4B2C; Fri, 9 Sep 2016 15:33:52 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 446EA762; Fri, 9 Sep 2016 15:33:52 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u89FXpXY044119; Fri, 9 Sep 2016 15:33:51 GMT (envelope-from wblock@FreeBSD.org) Received: (from wblock@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u89FXpka044118; Fri, 9 Sep 2016 15:33:51 GMT (envelope-from wblock@FreeBSD.org) Message-Id: <201609091533.u89FXpka044118@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wblock set sender to wblock@FreeBSD.org using -f From: Warren Block Date: Fri, 9 Sep 2016 15:33:51 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49376 - head/en_US.ISO8859-1/books/handbook/x11 X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Sep 2016 15:33:52 -0000 Author: wblock Date: Fri Sep 9 15:33:51 2016 New Revision: 49376 URL: https://svnweb.freebsd.org/changeset/doc/49376 Log: Update anti-aliased fonts section. Patch supplied by Tim Moore , based on bug report by Brandon S Allbery . Other edits added to fix wording in old section and correct indentation in programlisting elements (content, in this case). PR: 193612 Submitted by: Brandon S Allbery Sponsored by: iXsystems Differential Revision: https://reviews.freebsd.org/D7841 Modified: head/en_US.ISO8859-1/books/handbook/x11/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/x11/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/x11/chapter.xml Fri Sep 9 14:18:36 2016 (r49375) +++ head/en_US.ISO8859-1/books/handbook/x11/chapter.xml Fri Sep 9 15:33:51 2016 (r49376) @@ -1054,7 +1054,7 @@ EndSection GNOME, and Firefox. - In order to control which fonts are anti-aliased, or to + To control which fonts are anti-aliased, or to configure anti-aliasing properties, create (or edit, if it already exists) the file /usr/local/etc/fonts/local.conf. Several @@ -1078,15 +1078,15 @@ EndSection As previously stated, all fonts in /usr/local/share/fonts/ as well as ~/.fonts/ are already made available to - Xft-aware applications. If you wish to add another directory - outside of these two directory trees, add a line similar to - the following to + Xft-aware applications. To add another directory + outside of these two directory trees, add a line like + this to /usr/local/etc/fonts/local.conf: <dir>/path/to/my/fonts</dir> After adding new fonts, and especially new font - directories, you should run the following command to rebuild + directories, rebuild the font caches: &prompt.root; fc-cache -f @@ -1120,13 +1120,13 @@ EndSection spacing - Spacing for some monospaced fonts may also be + Spacing for some monospaced fonts might also be inappropriate with anti-aliasing. This seems to be an issue with KDE, in particular. One - possible fix for this is to force the spacing for such fonts - to be 100. Add the following lines: + possible fix is to force the spacing for such fonts + to be 100. Add these lines: - <match target="pattern" name="family"> + <match target="pattern" name="family"> <test qual="any" name="family"> <string>fixed</string> </test> @@ -1170,16 +1170,15 @@ EndSection </edit> </match> - Once you have finished editing - local.conf make sure you end the file + After editing + local.conf, make certain to end the file with the </fontconfig> tag. Not - doing this will cause your changes to be ignored. + doing this will cause changes to be ignored. - Finally, users can add their own settings via their - personal .fonts.conf files. To do this, - each user should simply create a - ~/.fonts.conf. This file must also be in - XML format. + Users can add personalized settings by creating their own + ~/.config/fontconfig/fonts.conf. This + file uses the same XML format described + above. LCD screen Fonts @@ -1192,7 +1191,7 @@ EndSection dramatic. To enable this, add the line somewhere in local.conf: - <match target="font"> + <match target="font"> <test qual="all" name="rgba"> <const>unknown</const> </test> From owner-svn-doc-head@freebsd.org Fri Sep 9 17:31:59 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB978BD47E5; Fri, 9 Sep 2016 17:31:59 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9B6B15AC; Fri, 9 Sep 2016 17:31:59 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u89HVxrp088668; Fri, 9 Sep 2016 17:31:59 GMT (envelope-from wblock@FreeBSD.org) Received: (from wblock@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u89HVx01088667; Fri, 9 Sep 2016 17:31:59 GMT (envelope-from wblock@FreeBSD.org) Message-Id: <201609091731.u89HVx01088667@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wblock set sender to wblock@FreeBSD.org using -f From: Warren Block Date: Fri, 9 Sep 2016 17:31:59 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49377 - head/en_US.ISO8859-1/books/handbook/security X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Sep 2016 17:32:00 -0000 Author: wblock Date: Fri Sep 9 17:31:58 2016 New Revision: 49377 URL: https://svnweb.freebsd.org/changeset/doc/49377 Log: Change the ssh-keygen example to RSA. Remove mention of DSA. Clean up some of the stilted, halting language here, improving readability by 31.8%. Modified: head/en_US.ISO8859-1/books/handbook/security/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/security/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/security/chapter.xml Fri Sep 9 15:33:51 2016 (r49376) +++ head/en_US.ISO8859-1/books/handbook/security/chapter.xml Fri Sep 9 17:31:58 2016 (r49377) @@ -2599,32 +2599,55 @@ COPYRIGHT 100% |************* Instead of using passwords, a client can be configured to connect to the remote machine using keys. To generate - DSA or RSA + RSA authentication keys, use ssh-keygen. To generate a public and private key pair, specify the type of key and follow the prompts. It is recommended to protect the keys with a memorable, but hard to guess passphrase. - &prompt.user; ssh-keygen -t dsa -Generating public/private dsa key pair. -Enter file in which to save the key (/home/user/.ssh/id_dsa): -Created directory '/home/user/.ssh'. -Enter passphrase (empty for no passphrase): type some passphrase here which can contain spaces -Enter same passphrase again: type some passphrase here which can contain spaces -Your identification has been saved in /home/user/.ssh/id_dsa. -Your public key has been saved in /home/user/.ssh/id_dsa.pub. + &prompt.user; ssh-keygen -t rsa +Generating public/private rsa key pair. +Enter file in which to save the key (/home/user/.ssh/id_rsa): +Enter passphrase (empty for no passphrase): +Enter same passphrase again: +Your identification has been saved in /home/user/.ssh/id_rsa. +Your public key has been saved in /home/user/.ssh/id_rsa.pub. The key fingerprint is: -bb:48:db:f2:93:57:80:b6:aa:bc:f5:d5:ba:8f:79:17 user@host.example.com - - Depending upon the specified protocol, the private key - is stored in ~/.ssh/id_dsa (or - ~/.ssh/id_rsa), and the public key - is stored in ~/.ssh/id_dsa.pub (or - ~/.ssh/id_rsa.pub). The - public key must be first copied to +SHA256:54Xm9Uvtv6H4NOo6yjP/YCfODryvUU7yWHzMqeXwhq8 user@host.example.com +The key's randomart image is: ++---[RSA 2048]----+ +| | +| | +| | +| . o.. | +| .S*+*o | +| . O=Oo . . | +| = Oo= oo..| +| .oB.* +.oo.| +| =OE**.o..=| ++----[SHA256]-----+ + + + + Type a passphrase here. It can contain spaces and + symbols. + + + + Retype the passphrase to verify it. + + + + + The private key + is stored in ~/.ssh/id_rsa + and the public key + is stored in ~/.ssh/id_rsa.pub. + The + public key must be copied to ~/.ssh/authorized_keys on the remote - machine in order for key-based authentication to + machine for key-based authentication to work. @@ -2638,42 +2661,48 @@ bb:48:db:f2:93:57:80:b6:aa:bc:f5:d5:ba:8 passphrase. In addition, to better secure end users, from may be placed in the public key file. For example, adding - from="192.168.10.5" in the front of - ssh-rsa or rsa-dsa - prefix will only allow that specific user to login from + from="192.168.10.5" in front of the + ssh-rsa + prefix will only allow that specific user to log in from that IP address. - The various options and files can be different - according to the OpenSSH version. + The options and files vary with different versions of + OpenSSH. To avoid problems, consult &man.ssh-keygen.1;. - If a passphrase is used, the user will be prompted for + If a passphrase is used, the user is prompted for the passphrase each time a connection is made to the server. - To load SSH keys into memory, without - needing to type the passphrase each time, use + To load SSH keys into memory and remove + the need to type the passphrase each time, use &man.ssh-agent.1; and &man.ssh-add.1;. Authentication is handled by - ssh-agent, using the private key(s) that - are loaded into it. Then, ssh-agent - should be used to launch another application such as a + ssh-agent, using the private keys that + are loaded into it. ssh-agent + can be used to launch another application like a shell or a window manager. To use ssh-agent in a shell, start it - with a shell as an argument. Next, add the identity by - running ssh-add and providing it the - passphrase for the private key. Once these steps have been - completed, the user will be able to ssh + with a shell as an argument. Add the identity by + running ssh-add and entering the + passphrase for the private key. + The user will then be able to ssh to any host that has the corresponding public key installed. For example: &prompt.user; ssh-agent csh &prompt.user; ssh-add -Enter passphrase for key '/usr/home/user/.ssh/id_dsa': type passphrase here -Identity added: /usr/home/user/.ssh/id_dsa (/usr/home/user/.ssh/id_dsa) +Enter passphrase for key '/usr/home/user/.ssh/id_rsa': +Identity added: /usr/home/user/.ssh/id_rsa (/usr/home/user/.ssh/id_rsa) &prompt.user; + + + Enter the passphrase for the key. + + + To use ssh-agent in &xorg;, add an entry for it in ~/.xinitrc. This provides the From owner-svn-doc-head@freebsd.org Fri Sep 9 20:04:28 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64749BD4F8B; Fri, 9 Sep 2016 20:04:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1AF2CC28; Fri, 9 Sep 2016 20:04:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u89K4RG9048002; Fri, 9 Sep 2016 20:04:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u89K4Rix048001; Fri, 9 Sep 2016 20:04:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609092004.u89K4Rix048001@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 9 Sep 2016 20:04:27 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49378 - head/en_US.ISO8859-1/books/porters-handbook/porting-dads X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Sep 2016 20:04:28 -0000 Author: amdmi3 (ports committer) Date: Fri Sep 9 20:04:27 2016 New Revision: 49378 URL: https://svnweb.freebsd.org/changeset/doc/49378 Log: - Document that verbose builds are strongly preferred Submitted by: amdmi3 Reviewed by: mat, wblock Approved by: mat, wblock Differential Revision: D7533 Modified: head/en_US.ISO8859-1/books/porters-handbook/porting-dads/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/porting-dads/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/porting-dads/chapter.xml Fri Sep 9 17:31:58 2016 (r49377) +++ head/en_US.ISO8859-1/books/porters-handbook/porting-dads/chapter.xml Fri Sep 9 20:04:27 2016 (r49378) @@ -322,6 +322,32 @@ exec %%LOCALBASE%%/bin/java -jar %%DATAD CFLAGS+= -DHAVE_SOUND + + Verbose Build Logs + + Make the port build system display all commands executed + during the build stage. Complete build logs are crucial to + debugging port problems. + + Non-informative build log example (bad): + + CC source1.o + CC source2.o + CCLD someprogram + + Verbose build log example (good): + + cc -O2 -pipe -I/usr/local/include -c -o source1.o source1.c +cc -O2 -pipe -I/usr/local/include -c -o source2.o source2.c +cc -o someprogram source1.o source2.o -L/usr/local/lib -lsomelib + + Some build systems such as CMake, + ninja, and GNU + configure are set up for verbose logging by + the ports framework. In other cases, ports might need + individial tweaks. + + Feedback From owner-svn-doc-head@freebsd.org Sat Sep 10 10:34:00 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0FD22BD4171; Sat, 10 Sep 2016 10:34:00 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF458D12; Sat, 10 Sep 2016 10:33:59 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8AAXxn7077993; Sat, 10 Sep 2016 10:33:59 GMT (envelope-from bhd@FreeBSD.org) Received: (from bhd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8AAXxG3077992; Sat, 10 Sep 2016 10:33:59 GMT (envelope-from bhd@FreeBSD.org) Message-Id: <201609101033.u8AAXxG3077992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhd set sender to bhd@FreeBSD.org using -f From: Bjoern Heidotting Date: Sat, 10 Sep 2016 10:33:59 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49379 - head/de_DE.ISO8859-1/books/handbook/x11 X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Sep 2016 10:34:00 -0000 Author: bhd Date: Sat Sep 10 10:33:58 2016 New Revision: 49379 URL: https://svnweb.freebsd.org/changeset/doc/49379 Log: Update to r49376: Update anti-aliased fonts section. Modified: head/de_DE.ISO8859-1/books/handbook/x11/chapter.xml Modified: head/de_DE.ISO8859-1/books/handbook/x11/chapter.xml ============================================================================== --- head/de_DE.ISO8859-1/books/handbook/x11/chapter.xml Fri Sep 9 20:04:27 2016 (r49378) +++ head/de_DE.ISO8859-1/books/handbook/x11/chapter.xml Sat Sep 10 10:33:58 2016 (r49379) @@ -4,7 +4,7 @@ $FreeBSD$ $FreeBSDde: de-docproj/books/handbook/x11/chapter.xml,v 1.79 2012/04/30 16:18:12 bcr Exp $ - basiert auf: r48719 + basiert auf: r49376 --> GNOME und Firefox. - In der Datei + In /usr/local/etc/fonts/local.conf werden die Schriftarten, die mit dem Anti-aliasing-Verfahren benutzt werden sollen und die Eigenschaften des Verfahrens @@ -1139,17 +1139,16 @@ EndSection gefolgt von einer DOCTYPE-Definition und dem <fontconfig>-Tag: - <?xml version="1.0"?> + <?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> Wie vorher erwähnt, stehen schon alle Schriftarten in /usr/local/share/fonts/ und ~/.fonts/ für Anwendungen, die - Xft unterstützen, zur Verfügung. Wenn Sie ein - Verzeichnis außerhalb dieser beiden Bäume - benutzen wollen, fügen Sie eine Zeile wie die - nachstehende zu + Xft unterstützen, zur Verfügung. Um ein Verzeichnis außerhalb + dieser beiden Bäume zu benutzen, fügen Sie eine Zeile wie die + nachstehende in /usr/local/etc/fonts/local.conf hinzu: @@ -1169,7 +1168,7 @@ EndSection auszuschließen, fügen Sie in local.conf die nachstehenden Zeilen ein: - <match target="font"> + <match target="font"> <test name="size" compare="less"> <double>14</double> </test> @@ -1198,7 +1197,7 @@ EndSection 100 festsetzen. Fügen Sie die nachstehenden Zeilen hinzu: - <match target="pattern" name="family"> + <match target="pattern" name="family"> <test qual="any" name="family"> <string>fixed</string> </test> @@ -1245,15 +1244,16 @@ EndSection </edit> </match> - Wenn Sie local.conf editiert haben, - stellen Sie bitte sicher, dass die Datei mit dem Tag + Nachdem Sie local.conf editiert + haben, müssen Sie sicherstellen, dass die Datei mit dem Tag </fontconfig> endet. Ist das nicht der Fall, werden die Änderungen nicht berücksichtigt. - Benutzer können eigene Einstellungen in der - Datei ~/.fonts.conf vornehmen. - Achten Sie auch hier auf die richtige XML-Syntax. + Benutzer können personalisierte Einstellungen in + ~/.fonts.conf vornehmen. Diese Datei + verwendet die gleiche XML-Syntax wie im obigen + Beispiel. LCD From owner-svn-doc-head@freebsd.org Sat Sep 10 10:35:12 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C97CDBD41EE; Sat, 10 Sep 2016 10:35:12 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A78DDD87; Sat, 10 Sep 2016 10:35:12 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8AAZBuX078082; Sat, 10 Sep 2016 10:35:11 GMT (envelope-from bhd@FreeBSD.org) Received: (from bhd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8AAZBco078081; Sat, 10 Sep 2016 10:35:11 GMT (envelope-from bhd@FreeBSD.org) Message-Id: <201609101035.u8AAZBco078081@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhd set sender to bhd@FreeBSD.org using -f From: Bjoern Heidotting Date: Sat, 10 Sep 2016 10:35:11 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49380 - head/de_DE.ISO8859-1/books/handbook/security X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Sep 2016 10:35:12 -0000 Author: bhd Date: Sat Sep 10 10:35:11 2016 New Revision: 49380 URL: https://svnweb.freebsd.org/changeset/doc/49380 Log: Update to r49377: Change the ssh-keygen example to RSA. Remove mention of DSA. Modified: head/de_DE.ISO8859-1/books/handbook/security/chapter.xml Modified: head/de_DE.ISO8859-1/books/handbook/security/chapter.xml ============================================================================== --- head/de_DE.ISO8859-1/books/handbook/security/chapter.xml Sat Sep 10 10:33:58 2016 (r49379) +++ head/de_DE.ISO8859-1/books/handbook/security/chapter.xml Sat Sep 10 10:35:11 2016 (r49380) @@ -5,7 +5,7 @@ $FreeBSD$ $FreeBSDde: de-docproj/books/handbook/security/chapter.xml,v 1.178 2012/04/30 17:07:41 bcr Exp $ - basiert auf: r49147 + basiert auf: r49377 --> Schlüsselbasierte Authentifizierung Ein Client kann bei der Verbindung auch Schlüssel - anstelle von Passwörtern verwenden. Mit - ssh-keygen können DSA- - oder RSA-Schlüssel erzeugt werden. Geben + anstelle von Passwörtern verwenden. Benutzen Sie + ssh-keygen um + RSA-Schlüssel erzeugen. Geben Sie das entsprechende Protokoll an, wenn Sie einen öffentlichen und einen privaten Schlüssel erzeugen. Folgen Sie anschließend den Anweisungen des Programms. Es wird empfohlen, die Schlüssel mit einer einprägsamen, aber schwer zu erratenen Passphrase zu schützen. - &prompt.user; ssh-keygen -t dsa -Generating public/private dsa key pair. -Enter file in which to save the key (/home/user/.ssh/id_dsa): -Created directory '/home/user/.ssh'. -Enter passphrase (empty for no passphrase): type some passphrase here which can contain spaces -Enter same passphrase again: type some passphrase here which can contain spaces -Your identification has been saved in /home/user/.ssh/id_dsa. -Your public key has been saved in /home/user/.ssh/id_dsa.pub. + &prompt.user; ssh-keygen -t rsa +Generating public/private rsa key pair. +Enter file in which to save the key (/home/user/.ssh/id_rsa): +Enter passphrase (empty for no passphrase): +Enter same passphrase again: +Your identification has been saved in /home/user/.ssh/id_rsa. +Your public key has been saved in /home/user/.ssh/id_rsa.pub. The key fingerprint is: -bb:48:db:f2:93:57:80:b6:aa:bc:f5:d5:ba:8f:79:17 user@host.example.com - - Abhängig vom verwendeten Protokoll wird der private - Schlüssel in ~/.ssh/id_dsa (oder - ~/.ssh/id_rsa) und der öffentliche - Schlüssel in ~/.ssh/id_dsa.pub (oder - ~/.ssh/id_rsa.pub) gespeichert. Der - öffentliche Schlüssel muss zuerst auf - den entfernten Rechner nach +SHA256:54Xm9Uvtv6H4NOo6yjP/YCfODryvUU7yWHzMqeXwhq8 user@host.example.com +The key's randomart image is: ++---[RSA 2048]----+ +| | +| | +| | +| . o.. | +| .S*+*o | +| . O=Oo . . | +| = Oo= oo..| +| .oB.* +.oo.| +| =OE**.o..=| ++----[SHA256]-----+ + + + + Geben Sie hier die Passphrase ein. Diese darf auch + Leer- und Sonderzeichen enthalten. + + + + Geben Sie die Passphrase zur Überprüfung erneut + ein. + + + + Der private Schlüssel wird in + ~/.ssh/id_rsa und der öffentliche + Schlüssel in ~/.ssh/id_rsa.pub + gespeichert. Der öffentliche Schlüssel + muss zuerst auf den entfernten Rechner nach ~/.ssh/authorized_keys kopiert werden, damit die schlüsselbasierte Authentifizierung funktioniert. @@ -2823,14 +2844,13 @@ bb:48:db:f2:93:57:80:b6:aa:bc:f5:d5:ba:8 from-Feld in der Datei des öffentlichen Schlüssels hinzugefügt werden. Zum Beispiel würde das Hinzufügen von from="192.168.10.5" vor - dem ssh-rsa- oder - ssh-dsa-Präfix dafür sorgen, dass sich - ein bestimmter Benutzer nur noch von dieser + dem ssh-rsa-Präfix dafür sorgen, dass + sich ein bestimmter Benutzer nur noch von dieser IP-Adresse anmelden darf. - Die Optionen und Dateinamen sind - abhängig von der OpenSSH-Version. + Die Optionen und Dateinamen sind abhängig von der + eingesetzten Version von OpenSSH. Die für das System gültigen Optionen finden Sie in &man.ssh-keygen.1;. @@ -2844,25 +2864,32 @@ bb:48:db:f2:93:57:80:b6:aa:bc:f5:d5:ba:8 ssh-agent übernimmt die Authentifizierung mit den geladenen privaten Schlüsseln. - ssh-agent sollte nur dazu verwendet + ssh-agent kann dazu verwendet werden, ein anderes Programm zu starten, beispielsweise eine Shell oder einen Window-Manager. Um ssh-agent in einer Shell zu verwenden, muss es mit einer Shell als Argument aufgerufen - werden. Zudem muss die zu verwaltende Identität mit - ssh-add sowie deren Passphrase für den - privaten Schlüssel übergeben werden. Nachdem dies erledigt - ist, kann sich ein Benutzer mit ssh auf + werden. Die zu verwaltende Identität muss mit + ssh-add sowie der Passphrase für den + privaten Schlüssel übergeben werden. Danach kann sich der + Benutzer mit ssh auf jedem Rechner anmelden, der einen entsprechenden öffentlichen Schlüssel besitzt. Dazu ein Beispiel: - &prompt.user; ssh-agent csh -&prompt.user; ssh-add -Enter passphrase for /usr/home/user/.ssh/id_dsa: type passphrase here -Identity added: /usr/home/user/.ssh/id_dsa (/home/user/.ssh/id_dsa) + &prompt.user; ssh-agent csh +&prompt.user; ssh-add +Enter passphrase for /usr/home/user/.ssh/id_rsa: +Identity added: /usr/home/user/.ssh/id_rsa (/home/user/.ssh/id_rsa) &prompt.user; + + + Geben Sie hier die Passphrase für den Schlüssel + ein. + + + Um ssh-agent unter &xorg; zu verwenden, muss ein Eintrag für das Programm in ~/.xinitrc From owner-svn-doc-head@freebsd.org Sat Sep 10 12:52:27 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A1AFBD4EE5; Sat, 10 Sep 2016 12:52:27 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2FC702CE; Sat, 10 Sep 2016 12:52:27 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8ACqQpX031338; Sat, 10 Sep 2016 12:52:26 GMT (envelope-from bhd@FreeBSD.org) Received: (from bhd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8ACqQmU031337; Sat, 10 Sep 2016 12:52:26 GMT (envelope-from bhd@FreeBSD.org) Message-Id: <201609101252.u8ACqQmU031337@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhd set sender to bhd@FreeBSD.org using -f From: Bjoern Heidotting Date: Sat, 10 Sep 2016 12:52:26 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49381 - head/de_DE.ISO8859-1/books/handbook/linuxemu X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Sep 2016 12:52:27 -0000 Author: bhd Date: Sat Sep 10 12:52:26 2016 New Revision: 49381 URL: https://svnweb.freebsd.org/changeset/doc/49381 Log: Update to r49367: Mention that 64-bit binary compatibility with Linux is available now and how to use it. Modified: head/de_DE.ISO8859-1/books/handbook/linuxemu/chapter.xml Modified: head/de_DE.ISO8859-1/books/handbook/linuxemu/chapter.xml ============================================================================== --- head/de_DE.ISO8859-1/books/handbook/linuxemu/chapter.xml Sat Sep 10 10:35:11 2016 (r49380) +++ head/de_DE.ISO8859-1/books/handbook/linuxemu/chapter.xml Sat Sep 10 12:52:26 2016 (r49381) @@ -5,7 +5,7 @@ $FreeBSD$ $FreeBSDde: de-docproj/books/handbook/linuxemu/chapter.xml,v 1.94 2012/04/30 17:13:51 bcr Exp $ - basiert auf: r48090 + basiert auf: r49367 --> @@ -58,12 +58,11 @@ Linux - &os; bietet 32-Bit-Binärkompatibilität zu &linux;, so dass - Benutzer 32-Bit &linux; Anwendungen auf einem &os;-System - installieren und ausführen können, ohne die Binärdatei ändern zu - müssen. Es wurde sogar berichtet, dass in einigen Situationen - die 32-Bit &linux; Anwendungen auf &os; besser laufen als unter - &linux;. + &os; bietet Binärkompatibilität zu &linux;, so dass Benutzer + &linux; Anwendungen auf einem &os;-System installieren und + ausführen können, ohne die Binärdatei ändern zu müssen. Es + wurde sogar berichtet, dass in einigen Situationen &linux; + Anwendungen auf &os; besser laufen als unter &linux;. Allerdings werden einige &linux;-spezifischen Merkmale nicht von &os; unterstützt. &linux;-Anwendungen, die @@ -71,6 +70,9 @@ des virtuellen 8086-Modus verwenden, werden derzeit nicht unterstützt. + Die Unterstützung für 64-Bit-Binärkompatibilität für &linux; + wurde in &os; 10.3 hinzugefügt. + Nach dem Lesen dieses Kapitels werden Sie wissen: @@ -121,6 +123,10 @@ &prompt.root; kldload linux + Für 64-Bit Kompatibilität: + + &prompt.root; kldload linux64 + Prüfen Sie, ob das Modul geladen wurde: &prompt.user; kldstat @@ -144,6 +150,10 @@ Id Refs Address Size Name linux_enable="YES" + Auf 64-Bit Maschinen wird das Modul für die 64-Bit + Emulation automatisch von /etc/rc.d/abi + geladen. + Kerneloptionen COMPAT_LINUX From owner-svn-doc-head@freebsd.org Sat Sep 10 16:42:54 2016 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 68188BD4A39; Sat, 10 Sep 2016 16:42:54 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 34A66803; Sat, 10 Sep 2016 16:42:54 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8AGgrOu020271; Sat, 10 Sep 2016 16:42:53 GMT (envelope-from bhd@FreeBSD.org) Received: (from bhd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8AGgr0O020270; Sat, 10 Sep 2016 16:42:53 GMT (envelope-from bhd@FreeBSD.org) Message-Id: <201609101642.u8AGgr0O020270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhd set sender to bhd@FreeBSD.org using -f From: Bjoern Heidotting Date: Sat, 10 Sep 2016 16:42:53 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r49382 - head/de_DE.ISO8859-1/books/handbook/security X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Sep 2016 16:42:54 -0000 Author: bhd Date: Sat Sep 10 16:42:53 2016 New Revision: 49382 URL: https://svnweb.freebsd.org/changeset/doc/49382 Log: Fix stray semicolon. Modified: head/de_DE.ISO8859-1/books/handbook/security/chapter.xml Modified: head/de_DE.ISO8859-1/books/handbook/security/chapter.xml ============================================================================== --- head/de_DE.ISO8859-1/books/handbook/security/chapter.xml Sat Sep 10 12:52:26 2016 (r49381) +++ head/de_DE.ISO8859-1/books/handbook/security/chapter.xml Sat Sep 10 16:42:53 2016 (r49382) @@ -2727,7 +2727,7 @@ Password for user@example.com: In der Voreinstellung akzeptieren aktuelle Versionen von - OpenSSH; nur + OpenSSH nur SSHv2 Verbindungen. Wenn möglich, wird der Client versuchen Version 2 zu verwenden, ist dies nicht möglich, fällt er auf Version 1 zurück. Der Client kann