From owner-freebsd-doc@FreeBSD.ORG Sun Feb 23 20:33:19 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 593122D6 for ; Sun, 23 Feb 2014 20:33:19 +0000 (UTC) Received: from aspen.ignorare.net (unknown [IPv6:2600:3c01::f03c:91ff:fe69:913d]) (using TLSv1.1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 32E4212DC for ; Sun, 23 Feb 2014 20:33:18 +0000 (UTC) Received: from [192.168.1.10] (c-76-121-48-30.hsd1.wa.comcast.net [76.121.48.30]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: psagers@ignorare.net) by aspen.ignorare.net (Postfix) with ESMTPSA id AFD2C3B93B for ; Sun, 23 Feb 2014 12:33:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ignorare.net; s=201209; t=1393187591; bh=flGTp85VfJ+rCg5jbppacpzSgRBvrK7+aGmSGNSOVsY=; h=From:Subject:Date:To; b=cQPuKsaCNz7JsjriNwNOTg94ufqCiLlO0IU6Fg3LbpRxbQs5GOOjQcFjS7jLZxfx+ IPKEiIQHj1KjgegAqL6NvCtLyuPl2YcXDEqY4nhkvmcBaahlXt9L0ZGD7NewFsHK30 LUuQx4nmy31JIKn5vBUWFJZu+E3677S9RX3dM2L4= From: Peter Sagerson Content-Type: multipart/signed; boundary="Apple-Mail=_4E93B2C6-ECB0-4242-9A1E-EC29B81308AB"; protocol="application/pgp-signature"; micalg=pgp-sha1 Subject: IPv6 handbook improvements Message-Id: <3472A13A-348C-460F-A159-A78C46BB5243@ignorare.net> Date: Sun, 23 Feb 2014 12:33:10 -0800 To: freebsd-doc@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) X-Mailer: Apple Mail (2.1827) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Feb 2014 20:33:19 -0000 --Apple-Mail=_4E93B2C6-ECB0-4242-9A1E-EC29B81308AB Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Hello all, I recently went through a voyage of discovery getting access to my ISP's = recently-introduced native IPv6. When my consumer router failed to come = through, it seemed like a perfect opportunity for a little FreeBSD = project. It turned out to be a bit of an adventure, though, as practical = information about IPv6 seems surprisingly hard to come by and the = handbook's page appears to be rather out of date. I would be happy to = contribute some fixes and new content to the page, but I'm not sure what = that process looks like, so I figured I'd start here. Assuming no changes to the basic structure of the document, the first = thing to do is obviously to add a CPE section, probably based on the = relevant content in section 3.2.4 of the 9.0 detailed release notes.[1] = ipv6_cpe_wanif is crucial to the home- or office-router scenario. Those = release notes turned out to be the most obscure piece of indispensable = documentation I found. More generally, I think there's probably an expository section missing = about whether and how to enable IPv6 on individual interfaces and the = common options available. Also the relationship between router = advertisement and DHCPv6 and the common use of self-assigned addresses = in various /64 subnets. It would probably be especially helpful to = identify areas where IPv4 analogies hold and areas where IPv4-based = instincts are likely to lead one astray. This section might also include = pointers on things like bridging and pf, if only to reassure the reader = that all of the same rules apply as for IPv4. On a more specific note, the reserved address section still lists the = fec0::/10 site-local addresses, despite the fact that these were = deprecated over nine years ago in RFC 3879. RFC 4193 specifies unique = local addresses in fc00::/7 (in practice, currently fd00::/8) to replace = them. Just to sum up in a handy list, here are the things that I needed to = discover in my particular--hopefully increasingly common--situation of = sharing my ISP's native IPv6 with my LAN and that I'd like future users = to be able to find in the handbook: - ipv6_cpe_wanif is necessary to make the system act like a traditional = home/office router with a WAN side and a LAN side. - IPv4's local subnets (192.168/16, etc.) are replaced by globally = unique /64 subnets in fd00::/8. Ideally, FreeBSD would have a tool to = generate global IDs according to the RFC (SHA1(ntp-time, = EUI-64(mac))[-5:]), but all you really need in practice in this scenario = is five random bytes (dd bs=3D1 count=3D5 if=3D/dev/random | hexdump). = Frankly, you can probably get away with fd00::/64, but I'd hesitate to = recommend it. - LAN clients can generally just self-assign IPv6 addresses, so no need = for a DHCP server here. However, my ISP still uses DHCPv6 to assign a = publicly routable address to the WAN interface. rtsold_flags=3D"-O = /path/to/script/run-dhclient-v6" should take care of this, although = rtsold seems to be ignoring this documented setting, so there may be a = bug here. Some ISPs might also use DHCPv6's prefix delegation, but I = can't speak to that. On a more general topic, one of the things that was enormously helpful = to me recently was discovering the man page for rc.conf. I have long = wished for some general reference to rc.conf variables, but somehow = never found this document or thought to look there. Maybe that's = unusual, or maybe it's one of those things that the knowledgable take = for granted, so it slips through the documentation cracks. One thing I = can say is that in the Advanced Networking chapter of the handbook, = there are many many references to rc.conf and its various settings, but = only one link to the man page (in section 30.2.4). As an = intermittent-to-casual user who leans fairly heavily on the handbook, I = would suggest linking to this reference rather more prominently and = regularly. It's extremely helpful both as a map of the possibilities and = as a way to discover ancillary settings (foo_flags) that may not merit = inclusion in the handbook itself. As I said at the top, I'm happy to actually propose a diff for the IPv6 = page, although it will presumably want an editor with deeper IPv6 and/or = FreeBSD experience to smoke out inaccuracies and over-generalizations. = Please advise if you'd like me to take this to the next step and what = that process looks like. Thanks, Peter [1] https://www.freebsd.org/releases/9.0R/relnotes-detailed.html#AEN1395 --Apple-Mail=_4E93B2C6-ECB0-4242-9A1E-EC29B81308AB Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJTClsGAAoJENfXJ2LQ+g524rUQAJmMGwW1jraX6eL8r5+c40CW EHIPn7PhfJ4pAeHfF5kJxWnBznUQ7QbqbUlwLCiR5oSO8wRCMp8eoqvgJnbfDg+x 1CPeUgaiEhYwFw8/eKGyrSdwGgIvMOsJ2jnXB4C8TTsqhJ0JLEbFqKomHms1+OoN A5KqZsFVvNyA8O3dYVU+1MJB8HtF/VxGtfbuAC3wQWvoaIOt+h4q4dERbFes3Wx1 MMntJm5QUs2WU8DJ8E831mJ4XowckhmxdNweLvZ3waOSoe5ZqYbDheNTJ2xMuXWE 70kd6U/YN4zsdjey/3oDX3FPIM87JCYJAx6NQs8CDCtuFUUAt/sT/WVQRwxQe8Ua FIdvIKppm2meFLHbCmNLi7c8TvWX+3teRVTmIagwQEXgcg0Z9ENUNjTvORGkJrqY 9G4qlNAYaL2J7kzSz6GUlAtZzbDSlIkGd5U7vR4XVfxEgVROpHhQ45m8TZT+jLEB eo2ZjK/zUgv2ylmDGo01RLU0W+efYyBYP00VUtIh1ayugAacoheiPJ5Z2JYhQHRY pEVdDL8dEWYGNnkwzGodtSMeCYhQiA4oud6pxnCbcKBvJrauLdTdT28C9s3oFUve Qif7xjGYABrZA+tFaDenmrPJJEnd2QUPnkPJlQpO/VW+qIkp9UP7BrxvpQs3BqYs 4xYMWskJ/iz1NUufIXAV =2IUc -----END PGP SIGNATURE----- --Apple-Mail=_4E93B2C6-ECB0-4242-9A1E-EC29B81308AB-- From owner-freebsd-doc@FreeBSD.ORG Mon Feb 24 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F0DE769 for ; Mon, 24 Feb 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F8D315A3 for ; Mon, 24 Feb 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1OB64Vw026610 for ; Mon, 24 Feb 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1OB64KU026608 for freebsd-doc@FreeBSD.org; Mon, 24 Feb 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Feb 2014 11:06:04 GMT Message-Id: <201402241106.s1OB64KU026608@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186625 doc Handbook rebuilding "world" upgrade procedure wrong me o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc Add an ipfilter rc.conf option in handbook for IPv6 o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178286 doc [PATCH] document the LOCAL_* vars in build(7) o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/178119 doc [ports] Porter's handbook lacks examples for using Opt o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172743 doc IPv6 handbooks lacks info about accepting router adver o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168814 doc [patch] remove `d` negative pointer EINVAL requirement o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong o docs/121585 doc [handbook] Wrong multicast specification s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/78480 doc Networked printer setup unnecessarily complex in handb o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) s docs/20028 doc ASCII docs should reflect tags in the sourc 259 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Feb 24 11:49:38 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 22C0A461; Mon, 24 Feb 2014 11:49:38 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EA3991B04; Mon, 24 Feb 2014 11:49:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1OBnb6N044745; Mon, 24 Feb 2014 11:49:37 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1OBnbp9044744; Mon, 24 Feb 2014 11:49:37 GMT (envelope-from remko) Date: Mon, 24 Feb 2014 11:49:37 GMT Message-Id: <201402241149.s1OBnbp9044744@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-www@FreeBSD.org, freebsd-doc@FreeBSD.org From: remko@FreeBSD.org Subject: Re: www/175685: HTTPS does not follow visitor among FreeBSD.org sub-domains X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2014 11:49:38 -0000 Synopsis: HTTPS does not follow visitor among FreeBSD.org sub-domains Responsible-Changed-From-To: freebsd-www->freebsd-doc Responsible-Changed-By: remko Responsible-Changed-When: Mon Feb 24 11:48:26 UTC 2014 Responsible-Changed-Why: redirect to doc, also, should we make links on the htdocs/ frontend just mention the /location.file instead of http://www.freebsd.org/ so that this behaviour is no longer seen? http://www.freebsd.org/cgi/query-pr.cgi?pr=175685 From owner-freebsd-doc@FreeBSD.ORG Mon Feb 24 12:25:16 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45F82D74 for ; Mon, 24 Feb 2014 12:25:16 +0000 (UTC) Received: from vmconcepts.protagonist.nl (unknown [IPv6:2a01:4f8:192:6212::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0A5F01FA1 for ; Mon, 24 Feb 2014 12:25:15 +0000 (UTC) Received: by vmconcepts.protagonist.nl (Postfix, from userid 10024) id 9B136B051C0; Mon, 24 Feb 2014 13:22:23 +0100 (CET) To: doc@freebsd.org Subject: Hello from Kalifah X-PHP-Originating-Script: 10024:error.php From: M. Kalifah MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Message-Id: <20140224122224.9B136B051C0@vmconcepts.protagonist.nl> Date: Mon, 24 Feb 2014 13:22:23 +0100 (CET) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: universcapital@rediffmail.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2014 12:25:16 -0000 Hello Sir, Please let’s talk and see if we can partner together to achieve our various future goals. I have access to funds but you will play a vital role to move the car forward. Lets talk about real business deal here. Regards, Kalifah From owner-freebsd-doc@FreeBSD.ORG Mon Feb 24 12:28:45 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE28CE06 for ; Mon, 24 Feb 2014 12:28:45 +0000 (UTC) Received: from vmconcepts.protagonist.nl (unknown [IPv6:2a01:4f8:192:6212::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 076E21FBE for ; Mon, 24 Feb 2014 12:28:45 +0000 (UTC) Received: by vmconcepts.protagonist.nl (Postfix, from userid 10024) id 3615EB03A38; Mon, 24 Feb 2014 13:27:13 +0100 (CET) To: freebsd-doc@freebsd.org Subject: Hello from Kalifah X-PHP-Originating-Script: 10024:error.php From: M. Kalifah MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Message-Id: <20140224122713.3615EB03A38@vmconcepts.protagonist.nl> Date: Mon, 24 Feb 2014 13:27:13 +0100 (CET) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: universcapital@rediffmail.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2014 12:28:45 -0000 Hello Sir, Please let’s talk and see if we can partner together to achieve our various future goals. I have access to funds but you will play a vital role to move the car forward. Lets talk about real business deal here. Regards, Kalifah From owner-freebsd-doc@FreeBSD.ORG Mon Feb 24 18:30:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D261D91 for ; Mon, 24 Feb 2014 18:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5EC8B1675 for ; Mon, 24 Feb 2014 18:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1OIU1QS076806 for ; Mon, 24 Feb 2014 18:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1OIU17s076805; Mon, 24 Feb 2014 18:30:01 GMT (envelope-from gnats) Date: Mon, 24 Feb 2014 18:30:01 GMT Message-Id: <201402241830.s1OIU17s076805@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Allan Jude Subject: Re: www/175685: HTTPS does not follow visitor among FreeBSD.org sub-domains X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Allan Jude List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2014 18:30:01 -0000 The following reply was made to PR www/175685; it has been noted by GNATS. From: Allan Jude To: bug-followup@FreeBSD.org Cc: Subject: Re: www/175685: HTTPS does not follow visitor among FreeBSD.org sub-domains Date: Mon, 24 Feb 2014 13:25:42 -0500 Another method that has become common in recent years is Which will keep the current protocol, be that HTTP or HTTPS Although I am not sure how some of the more basic browsers like lynx might handle that. Google et all use it for including javascript to avoid 'mixed content'. -- Allan Jude From owner-freebsd-doc@FreeBSD.ORG Mon Feb 24 18:43:44 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC297495 for ; Mon, 24 Feb 2014 18:43:44 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [78.47.69.234]) by mx1.freebsd.org (Postfix) with ESMTP id 8416E1837 for ; Mon, 24 Feb 2014 18:43:44 +0000 (UTC) Received: from [IPv6:2001:470:d701::cd72:3dd5:c798:bf91] (unknown [IPv6:2001:470:d701:0:cd72:3dd5:c798:bf91]) by mail.jr-hosting.nl (Postfix) with ESMTPSA id 5513F3F478; Mon, 24 Feb 2014 19:43:36 +0100 (CET) Content-Type: multipart/signed; boundary="Apple-Mail=_D28BF223-A5CD-4F78-9E8A-AE8A412BB1FB"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: www/175685: HTTPS does not follow visitor among FreeBSD.org sub-domains From: Remko Lodder In-Reply-To: <201402241830.s1OIU17s076805@freefall.freebsd.org> Date: Mon, 24 Feb 2014 19:43:33 +0100 Message-Id: <30FE87E3-162F-415E-9B31-4FC264D9BFEE@FreeBSD.org> References: <201402241830.s1OIU17s076805@freefall.freebsd.org> To: Allan Jude X-Mailer: Apple Mail (2.1827) Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2014 18:43:44 -0000 --Apple-Mail=_D28BF223-A5CD-4F78-9E8A-AE8A412BB1FB Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 On 24 Feb 2014, at 19:30, Allan Jude wrote: > The following reply was made to PR www/175685; it has been noted by = GNATS. >=20 > From: Allan Jude > To: bug-followup@FreeBSD.org > Cc: =20 > Subject: Re: www/175685: HTTPS does not follow visitor among = FreeBSD.org sub-domains > Date: Mon, 24 Feb 2014 13:25:42 -0500 >=20 > Another method that has become common in recent years is >=20 > >=20 > Which will keep the current protocol, be that HTTP or HTTPS >=20 > Although I am not sure how some of the more basic browsers like lynx > might handle that. Google et all use it for including javascript to > avoid 'mixed content=92. Cool. That would solve the problem here as well. To what degree should we support the =91lynx=92es out there and cli based browsers ? Cheers Remko >=20 >=20 > --=20 > Allan Jude > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" --=20 /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_D28BF223-A5CD-4F78-9E8A-AE8A412BB1FB Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJTC5LVAAoJEKjD27JZ84ywJHAP/jd4P8ul92mhADJjHGHkM2LL amFQgOWugZbzc3clZr610F4iOwzg97gvfy25cJ6CGvbFLDJWyxcy1A3/3gQI701V 0UHupNXV5H2RK3TQBNSVaD5UXF/0ZioYdBjMo/fbG4fL6xalw7as0SjDaxYq3bJr nk+abC9dz9O2hEN9NzDYSoMbasWRoSsRNAlcRCAW5BsSCxPJ3Ge90M3e+L5A32NK /Nje4df65PeIL9FOz7y4lVm3HHkAmEf6vXQifAUZjbkJJrl1kRg7gQxZdlKzosEf VVY2Ao4U4yFmDWgtIVlPu9QK52fMU5vaNuq30DqCet2I1YqQ5EwXt+yNIYF25yfT kiYZCrG7D5H/7XHg5IlIxecHVGm+GftRPRAfmAysFOBgR7E1zB/lOCg/VF6gSlYS v9mF7pMssbEkN3LgvE1DDP//+gvEwdoZQbQZ5fA35pn7bvPz/lh0NGaGkT4D0/R3 oCw3AjUeH3Gz7jJQz0DG2pxihiEr8cjTWWjE5AeeSqQ3BrBHWD9WFR1QUv5TZiko 6EGqotJ8UZR6y0o6kDg8eoW+MCbTgtjEAwi6vLAJAhfoSt3XQtVi4GO2RO50KC9X TyPNFNGXZuFBk/LonZLV5ZJ3JQQvNJFLP0Q16O+y84vyw5878hvlFDDaJGeXaKgd oHj0C5kMpOzjkJLe4Qao =w2qn -----END PGP SIGNATURE----- --Apple-Mail=_D28BF223-A5CD-4F78-9E8A-AE8A412BB1FB-- From owner-freebsd-doc@FreeBSD.ORG Mon Feb 24 20:02:11 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF074C9A; Mon, 24 Feb 2014 20:02:11 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6FBF21164; Mon, 24 Feb 2014 20:02:11 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s1OK25Xk002575 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 24 Feb 2014 13:02:05 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s1OK23LH002572; Mon, 24 Feb 2014 13:02:03 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Mon, 24 Feb 2014 13:02:03 -0700 (MST) From: Warren Block To: Remko Lodder Subject: Re: www/175685: HTTPS does not follow visitor among FreeBSD.org sub-domains In-Reply-To: <30FE87E3-162F-415E-9B31-4FC264D9BFEE@FreeBSD.org> Message-ID: References: <201402241830.s1OIU17s076805@freefall.freebsd.org> <30FE87E3-162F-415E-9B31-4FC264D9BFEE@FreeBSD.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Mon, 24 Feb 2014 13:02:05 -0700 (MST) Cc: freebsd-doc@FreeBSD.org, Allan Jude X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2014 20:02:11 -0000 On Mon, 24 Feb 2014, Remko Lodder wrote: > > On 24 Feb 2014, at 19:30, Allan Jude wrote: > >> The following reply was made to PR www/175685; it has been noted by GNATS. >> >> From: Allan Jude >> To: bug-followup@FreeBSD.org >> Cc: >> Subject: Re: www/175685: HTTPS does not follow visitor among FreeBSD.org sub-domains >> Date: Mon, 24 Feb 2014 13:25:42 -0500 >> >> Another method that has become common in recent years is >> >> >> >> Which will keep the current protocol, be that HTTP or HTTPS >> >> Although I am not sure how some of the more basic browsers like lynx >> might handle that. Google et all use it for including javascript to >> avoid 'mixed content?. > > Cool. That would solve the problem here as well. To what degree should > we support the ?lynx?es out there and cli based browsers ? Is there an example page we can test? Maybe this is already supported by some. From owner-freebsd-doc@FreeBSD.ORG Tue Feb 25 07:20:44 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D4A533C; Tue, 25 Feb 2014 07:20:44 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 8B77B143E; Tue, 25 Feb 2014 07:20:44 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 12D9D82D; Tue, 25 Feb 2014 07:20:39 +0000 (UTC) Date: Tue, 25 Feb 2014 07:20:28 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@freebsd.org, freebsd-doc@freebsd.org Message-ID: <1185155168.11.1393312834251.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Jenkins build is back to normal : FreeBSD_DOC #36 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Jenkins-Job: FreeBSD_DOC X-Jenkins-Result: SUCCESS X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Feb 2014 07:20:44 -0000 See From owner-freebsd-doc@FreeBSD.ORG Tue Feb 25 15:10:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BAA67C2C for ; Tue, 25 Feb 2014 15:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 95A4B13C6 for ; Tue, 25 Feb 2014 15:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1PFA0sh087345 for ; Tue, 25 Feb 2014 15:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1PFA0cU087344; Tue, 25 Feb 2014 15:10:00 GMT (envelope-from gnats) Resent-Date: Tue, 25 Feb 2014 15:10:00 GMT Resent-Message-Id: <201402251510.s1PFA0cU087344@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Björn Heidotting Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C38BA3C for ; Tue, 25 Feb 2014 15:05:13 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3199D1326 for ; Tue, 25 Feb 2014 15:05:13 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1PF5C3V031749 for ; Tue, 25 Feb 2014 15:05:12 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1PF5C5u031733; Tue, 25 Feb 2014 15:05:12 GMT (envelope-from nobody) Message-Id: <201402251505.s1PF5C5u031733@cgiserv.freebsd.org> Date: Tue, 25 Feb 2014 15:05:12 GMT From: Björn Heidotting To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187035: [patch] Minor fixes for bsnmpget(1) manpage X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Feb 2014 15:10:00 -0000 >Number: 187035 >Category: docs >Synopsis: [patch] Minor fixes for bsnmpget(1) manpage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 15:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Björn Heidotting >Release: 10.0-RELEASE >Organization: >Environment: >Description: Minor fixes for bsnmpget(1): - New sentence should start on a new line - Grammar fix >How-To-Repeat: >Fix: Patch attached with submission follows: --- bsnmpget.1 2013-04-11 21:05:24.000000000 +0200 +++ bsnmpget.1.work 2014-02-25 15:31:18.000000000 +0100 @@ -151,7 +151,8 @@ The context name. Default is "" (empty). .It Cm context-engine=engine-id The SNMP Engine ID of the context to query with SNMPv3 PDUs, represented as -binary octet string. By default, this is set to the Engine ID of the SNMP agent. +binary octet string. +By default, this is set to the Engine ID of the SNMP agent. .El .It Fl D Perform SNMP USM Engine Discovery, rather than sending a request for the value @@ -211,8 +212,9 @@ will be searched. .It Fl K Calculate and display the localized authentication and privacy keys -corresponding to a plain text password. The password is obtain via the -environment. Additionally, if one or more OIDs are specified, the calculated +corresponding to a plain text password. +The password is obtained via the environment. +Additionally, if one or more OIDs are specified, the calculated keys are used when processing the SNMPv3 requests. .It Fl l Ar filename The path of the posix local (unix domain) socket if local @@ -317,12 +319,12 @@ If any of the above is not specified, SNMP USM Engine Discovery is attempted. This is also the default behavior. .It Cm name=username -The USM user name to include in the SNMPv3 PDUs. By default, the user name is -obtain via the environment +The USM user name to include in the SNMPv3 PDUs. +By default, the user name is obtained via the environment. .El .It Fl v Ar version -The SNMP protocol version to use when sending requests. SNMP versions 1, 2 and -3 are supported. +The SNMP protocol version to use when sending requests. +SNMP versions 1, 2 and 3 are supported. If no version option is provided .Nm bsnmpget , .Nm bsnmpwalk @@ -417,8 +419,9 @@ Specifies a default SNMP USM user name. .It Ev SNMPPASSWD Specifies the SNMP USM plain text password to use when calculating localized -authentication and privacy keys. If this variable exists in the environment, -SMNPv3 is the default version to use for outgoing requests. +authentication and privacy keys. +If this variable exists in the environment, SMNPv3 is the +default version to use for outgoing requests. .El .Sh SEE ALSO .Xr gensnmpdef 1 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Feb 25 21:03:54 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0861130F; Tue, 25 Feb 2014 21:03:54 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CEC7B195A; Tue, 25 Feb 2014 21:03:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1PL3rrC007247; Tue, 25 Feb 2014 21:03:53 GMT (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1PL3rEu007246; Tue, 25 Feb 2014 22:03:53 +0100 (CET) (envelope-from brueffer) Date: Tue, 25 Feb 2014 22:03:53 +0100 (CET) Message-Id: <201402252103.s1PL3rEu007246@freefall.freebsd.org> To: b.heidotting@yahoo.com, brueffer@FreeBSD.org, freebsd-doc@FreeBSD.org, brueffer@FreeBSD.org From: brueffer@FreeBSD.org Subject: Re: docs/187035: [patch] Minor fixes for bsnmpget(1) manpage X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Feb 2014 21:03:54 -0000 Synopsis: [patch] Minor fixes for bsnmpget(1) manpage State-Changed-From-To: open->patched State-Changed-By: brueffer State-Changed-When: Tue Feb 25 22:02:15 CET 2014 State-Changed-Why: I took the opportunity to expand your patch into a bigger cleanup run, thanks for the submission! Responsible-Changed-From-To: freebsd-doc->brueffer Responsible-Changed-By: brueffer Responsible-Changed-When: Tue Feb 25 22:02:15 CET 2014 Responsible-Changed-Why: MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=187035 From owner-freebsd-doc@FreeBSD.ORG Tue Feb 25 21:49:31 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8EB65763 for ; Tue, 25 Feb 2014 21:49:31 +0000 (UTC) Received: from mail.f5.com (mail.f5.com [208.85.209.139]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 59AC91DE5 for ; Tue, 25 Feb 2014 21:49:31 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.97,542,1389744000"; d="scan'208,217";a="102231776" X-IPAS-Result: AucNABMPDVPAqArr/2dsb2JhbABZgkJ/V4MDiFGuTIcqBIEydIJPfjUCUwyIJaceoSuNbhEBbYJZgUkEiUmGAYhsgTKFP48EgVE5 Received: from unknown (HELO exchmail.f5net.com) ([192.168.10.235]) by seamgw02.olympus.f5net.com with ESMTP; 25 Feb 2014 21:48:11 +0000 Received: from shiny.int.lineratesystems.com (192.168.16.250) by exchmail.f5net.com (192.168.16.223) with Microsoft SMTP Server (TLS) id 14.3.158.1; Tue, 25 Feb 2014 13:48:11 -0800 Date: Tue, 25 Feb 2014 14:48:10 -0700 From: Joe To: Message-ID: Subject: how to read security advisories X-Mailer: Airmail Beta (205) MIME-Version: 1.0 X-Originating-IP: [192.168.16.250] Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Feb 2014 21:49:31 -0000 Hello, I am having trouble understanding the =22Corrected=22 version strings in = security advisories. =C2=A0Could you tell me (or point me to documentatio= n about) what the =22-p=22 extensions mean=3F =46or instance, in the =22How to read security advisories=22 page (http:/= /www5.us.freebsd.org/doc/en=5FUS.ISO8859-1/books/handbook/security-adviso= ries.html), there is an example of a list of corrected builds, which cont= ains several lines like =222003-09-23 20:08:42 UTC (RELENG=5F5=5F1, 5.1-R= ELEASE-p6)=22 I understand what 5.1-RELEASE means, but I cannot find references for wha= t the tailing =22-p6=22 means. In this example, if I am running =46reeBSD 5.1, do I already have the fix= =3F How can I tell=3F I have searched the web for the answer, as well (= not easy when looking for =22-p=22), and have had no luck discovering wha= t the -p extension means. =20 Apologies if this is the wrong address to be sending this question to, bu= t security advisories are the only place I've seen this notation, so I wa= s hoping to get an explanation for it when I read the =22how to read=22 p= age, but I didn't=E2=80=A6and the bottom of the page says to email this a= ddress for questions about this document. Could you point me in the right direction=3F Thank you, - Joe Harman From owner-freebsd-doc@FreeBSD.ORG Tue Feb 25 21:55:34 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 997A389B for ; Tue, 25 Feb 2014 21:55:34 +0000 (UTC) Received: from anubis.delphij.net (anubis.delphij.net [64.62.153.212]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7E1951FDB for ; Tue, 25 Feb 2014 21:55:34 +0000 (UTC) Received: from zeta.ixsystems.com (unknown [69.198.165.132]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by anubis.delphij.net (Postfix) with ESMTPSA id D71C614CF4; Tue, 25 Feb 2014 13:55:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=delphij.net; s=anubis; t=1393365334; bh=bS2YnTBlvu4/g598+daTAIH3lRqaE6SdMHHUE7ieyQw=; h=Date:From:Reply-To:To:Subject:References:In-Reply-To; b=qgiNr9kE/mAn4Qr0vSIhrbyEY89Bw/7SMng4X3iCYxiPnywHRH9jC6ZDB/xkSGtZD 6Oz2YGhkdobqYmM53cUMrCr6nEllEc09rb9LUUgIVTnlkETXxd+NyMLhYkE5/lU1Aj Gt0d/5b6hbG9myqRGOF0t3WP9cYhDya7aFXu20zc= Message-ID: <530D1155.8090903@delphij.net> Date: Tue, 25 Feb 2014 13:55:33 -0800 From: Xin Li Organization: The FreeBSD Project MIME-Version: 1.0 To: Joe , freebsd-doc@freebsd.org Subject: Re: how to read security advisories References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: d@delphij.net List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Feb 2014 21:55:34 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 On 02/25/14 13:48, Joe wrote: > Hello, > > I am having trouble understanding the "Corrected" version strings > in security advisories. Could you tell me (or point me to > documentation about) what the "-p" extensions mean? That's patchlevel. -p1 means patchlevel 1. If you have -p2, that means you have fixes from all up to patchlevel 2. Cheers, - -- Xin LI https://www.delphij.net/ FreeBSD - The Power to Serve! Live free or die -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCgAGBQJTDRFVAAoJEJW2GBstM+ns0acP/1HBGOPt99ia7LvSFRMPSyEs ZL+f0XKOhD0HHqEOEq7k7l7rNYT1RJbJN0KUSdkigO90HUUdxu4TC38bIpyRz5UO R9sdbQLfdy1E5DO4ejcFcc7QUyVLpuwTwTWx+UtNiIUuXQuPXn0MuNgBybxMijV/ dCspMC1U3rjIJPUM6vCuuYJX75mPY3193nP6uwWI453+ErQ+W/uHiQVCUdfuBFnZ DFplU1ijf+wjK3WB26DF9ylidhrFieICXg6mmjzHHnPobieL9eGmN8tY3ZConv3I MylwWcNvxO3p4cm6ZwmtcJ6KH9XhjJltiQiDdNT9QtZ0qqlnI9XmwSFgrstnHiR/ TnbtNAMRV0wjMGY8SePvrfpC1vl2kGfYwWoEfWTmhA6KpBMBj3X6oXeFp+jDjn0J WVYUsthYGDvx9+wxV0X1nCJCoa/344zNrrqoh8lTOVP4BSp+MthtFWFY5UaiOxEZ Q+K9AAPkdDfdl8m8djzafEVh+xLbExOM/7nt3pGrX8v2n/RktTziT3ud1i/e8KbT 5ImRFNXlhnE0zPACHhudYzs3KLN/nZgl56tnrzmNlzKnPiiX1hD2ug2jdy6RFbzb XOu2gRHwk4K0gnwa+d2tk8+AD/gw1O3vk3thx7cMTJ3WDMR3W2tmnGOgYfrMipB0 ivRfCX+ASnUpMaOsgRap =JVz3 -----END PGP SIGNATURE----- From owner-freebsd-doc@FreeBSD.ORG Wed Feb 26 01:27:19 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5028FB5F for ; Wed, 26 Feb 2014 01:27:19 +0000 (UTC) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 2382212DF for ; Wed, 26 Feb 2014 01:27:18 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id CFD5A33C19; Tue, 25 Feb 2014 20:27:06 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id CA2C23983C; Tue, 25 Feb 2014 20:27:04 -0500 (EST) From: Lowell Gilbert To: Joe Subject: Re: how to read security advisories References: Date: Tue, 25 Feb 2014 20:27:04 -0500 In-Reply-To: (Joe's message of "Tue, 25 Feb 2014 14:48:10 -0700") Message-ID: <44fvn64qaf.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Feb 2014 01:27:19 -0000 Joe writes: > I understand what 5.1-RELEASE means, but I cannot find references for what the tailing "-p6" means. Try the note at the end of http://www5.us.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-upgrading-freebsdupdate.html#freebsdupdate-security-patches or the last paragraph in http://www5.us.freebsd.org/doc/en_US.ISO8859-1/books/dev-model/release-branches.html From owner-freebsd-doc@FreeBSD.ORG Wed Feb 26 16:09:52 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 17D5BF6C for ; Wed, 26 Feb 2014 16:09:52 +0000 (UTC) Received: from mb49.e2ma.net (mb49.e2ma.net [66.179.68.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C81B91981 for ; Wed, 26 Feb 2014 16:09:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mb49.e2ma.net; bh=nVFNqEybxmFXFRUrVNQF3Lw1o6A=; b=aS0YsQoEjSPDafbvNRtGOHVUFkJuqDfjyjfb+nMg3fuZ5hUiDNv19UhFMtiBth57LzRW9kBjkUij OhHoOHHAYvEuszywLNblcSRiZQO+c+DJJLDIk9anF9CxhAeSZDpnXn5bRYx5sHMH90tLaVVpPDMj 8YTr3WqWRlkChzwl0iI= Received: by mb49.e2ma.net id h1o8su18e746 for ; Wed, 26 Feb 2014 09:37:17 -0600 (envelope-from <6940851.1355955@e2ma.net>) MIME-Version: 1.0 Subject: Collect shoes to raise funds for your organization From: "Gretchen Parker" To: freebsd-doc@freebsd.org Date: Wed, 26 Feb 2014 15:37:17 -0000 Precedence: bulk Message-ID: X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Feb 2014 16:09:52 -0000 To view this email online, paste this link into your browser: http://e2.ma/message/pv1ee/9ei8pz ___________________________________ Funds2Orgs (http://e2.ma/click/pv1ee/9ei8pz/18fkab) is a social enterprise = that offers a proven and effective fundraising strategy. We have helped non= profit organizations, churches, schools, and civic groups across the countr= y meet their fundraising goals and exceed expectations. =20 Through our shoe drive fundraisers, your organization will be able to engag= e the community, support micro-enterprises in developing countries, and mee= t your organizations goals. =20 It is easy to get started, simply click through to our website (http://e2.m= a/click/pv1ee/9ei8pz/h1gkab) and sign-up. We'll send you materials to help = you collect shoes - from marketing to collection bags - and when you meet y= our goals, contact us and we'll come pick-up the shoes! Then all you have t= o do is get ready for your check! =20 If you need any additional information about Funds2Orgs or would like me to= connect you with a Funds2Orgs Fundraising Coach, please reply to this emai= l. YOU MATTER! Gretchen Parker Special Projects // ___________________________________ Share This:=20 http://e2.ma/share/outbound/e/pv1ee/9ei8pz [Share via Email] This email was sent to freebsd-doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1357359/= 1355955.6940851/1538445491/?v=3Da) opt out using TrueRemove(r) (http://e2.ma/optout/pv1ee/9ei8pz?r=3DaHR0cHM6L= y9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzEzNTczNTkvMTM1NTk1NS8xNTM4= NDQ1NDkxLz92PWE=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1357359/1355955.6940851/1538445491/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 2401 Main St | Columbia, SC 29201 US From owner-freebsd-doc@FreeBSD.ORG Wed Feb 26 16:10:04 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D4BCFBE for ; Wed, 26 Feb 2014 16:10:04 +0000 (UTC) Received: from mb49.e2ma.net (mb49.e2ma.net [66.179.68.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 029E9198D for ; Wed, 26 Feb 2014 16:10:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mb49.e2ma.net; bh=i5I53e0xTEQaO6BUXrXeQY9Z6ac=; b=aKiB6OCkK0P3PXXkuPrYxN61uwrgfPEZVgR+obhxz25QpOydRpd3Sn2UwhDLTRhCDU2eNt/TmXA2 1ihchbpfO21/AoBT+C/cVzy8Z+Rg1/yskbvKxXJFkEK+pNaZ3kP/HNTY1Jr1sR3SVUQHEethVKan owuTjKqThS54bKB5z4Y= Received: by mb49.e2ma.net id h1o8to18e741 for ; Wed, 26 Feb 2014 09:37:15 -0600 (envelope-from <6940851.1355955@e2ma.net>) MIME-Version: 1.0 Subject: Collect shoes to raise funds for your organization From: "Gretchen Parker" To: doc@freebsd.org Date: Wed, 26 Feb 2014 15:37:15 -0000 Precedence: bulk Message-ID: X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Feb 2014 16:10:04 -0000 To view this email online, paste this link into your browser: http://e2.ma/message/pv1ee/144wpz ___________________________________ Funds2Orgs (http://e2.ma/click/pv1ee/144wpz/18fkab) is a social enterprise = that offers a proven and effective fundraising strategy. We have helped non= profit organizations, churches, schools, and civic groups across the countr= y meet their fundraising goals and exceed expectations. =20 Through our shoe drive fundraisers, your organization will be able to engag= e the community, support micro-enterprises in developing countries, and mee= t your organizations goals. =20 It is easy to get started, simply click through to our website (http://e2.m= a/click/pv1ee/144wpz/h1gkab) and sign-up. We'll send you materials to help = you collect shoes - from marketing to collection bags - and when you meet y= our goals, contact us and we'll come pick-up the shoes! Then all you have t= o do is get ready for your check! =20 If you need any additional information about Funds2Orgs or would like me to= connect you with a Funds2Orgs Fundraising Coach, please reply to this emai= l. YOU MATTER! Gretchen Parker Special Projects // ___________________________________ Share This:=20 http://e2.ma/share/outbound/e/pv1ee/144wpz [Share via Email] This email was sent to doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1357359/= 1355955.6940851/1537915059/?v=3Da) opt out using TrueRemove(r) (http://e2.ma/optout/pv1ee/144wpz?r=3DaHR0cHM6L= y9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzEzNTczNTkvMTM1NTk1NS8xNTM3= OTE1MDU5Lz92PWE=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1357359/1355955.6940851/1537915059/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 2401 Main St | Columbia, SC 29201 US From owner-freebsd-doc@FreeBSD.ORG Wed Feb 26 16:19:18 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 31271304 for ; Wed, 26 Feb 2014 16:19:18 +0000 (UTC) Received: from mail.f5.com (mail.f5.com [208.85.209.139]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EBB411A8F for ; Wed, 26 Feb 2014 16:19:17 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.97,548,1389744000"; d="scan'208,217";a="102315081" X-IPAS-Result: AgAOAHYTDlPAqArr/2dsb2JhbABagkJ/V4MDiFK1HYEwdIInAQEBAQIBAQIgVgULCw0BNAICKC8GDgUJh2gVqCigeBeOEkIHgm6BSQSJSYYBhhaCVoEyhT+Fc4kRgUpA Received: from unknown (HELO exchmail.f5net.com) ([192.168.10.235]) by seamgw02.olympus.f5net.com with ESMTP; 26 Feb 2014 16:19:06 +0000 Received: from shiny.int.lineratesystems.com (192.168.16.250) by exchmail.f5net.com (192.168.16.223) with Microsoft SMTP Server (TLS) id 14.3.158.1; Wed, 26 Feb 2014 08:19:05 -0800 Date: Wed, 26 Feb 2014 09:19:07 -0700 From: Joe To: Lowell Gilbert Message-ID: In-Reply-To: <44fvn64qaf.fsf@lowell-desk.lan> References: <44fvn64qaf.fsf@lowell-desk.lan> Subject: Re: how to read security advisories X-Mailer: Airmail (231) MIME-Version: 1.0 X-Originating-IP: [192.168.16.250] Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Feb 2014 16:19:18 -0000 Thank you for pointing me at some relevant docs. I'd like to point out that neither of these resources are of much help fo= r someone trying to figure out what the -p means, though. The first is only something you'd come across if you already knew what th= e -p meant (try searching -p on the internet. =C2=A0Or =46reeBSD's site. = =C2=A0Or even in the single-page HTML view of the handbook). The second would actually confuse me if I hadn't already been definitivel= y told what the -p was, as the example given is =224.6.2-RELEASE=22 inste= ad of =224.6-RELEASE-p2=22. I searched both on google and on =46reeBSD's site for: =C2=A0- freebsd release =C2=A0- freebsd version string =C2=A0- freebsd release p modifier =C2=A0- freebsd release tags =C2=A0- freebsd security advisory release naming The last one got me the closest, but still didn't actually inform me that= the -p extension was for patch level, or how to check what patch level I= had (which is pretty important if you're trying to figure out if a secur= ity advisory applies to a particular system or not).=C2=A0 I tried following through on that, but searching for =22security branch=22= or =22security branch tags=22 got me to=C2=A0http://www.freebsd.org/rele= ng/ which at the bottom points me to=C2=A0http://www.freebsd.org/doc/en=5F= US.ISO8859-1/articles/releng/index.html which looks like it is just about= the release process, not naming, and has a very loud warning at the top = about how badly out of date it is. I'm not trying to get in anyone's face or ruffle any feathers, so much as= to let you know that I spent longer than I thought was reasonable lookin= g for a definitive answer for this question, and I think it both could an= d should be made more obvious in the =46reeBSD documentation. =C2=A0I thi= nk good places for this would be in the second reference you gave me (rel= ease-branches.html) and in the =22how to read security advisories=22 docu= ment. I do very much appreciate both the responses I've gotten and speed at whi= ch I got them. =C2=A0I am also very appreciative of all the documentation= in general=21 Thanks, -Joe On =46ebruary 25, 2014 at 6:27:13 PM, Lowell Gilbert (freebsd-lists=40be-= well.ilk.org) wrote: Joe writes: =20 > I understand what 5.1-RELEASE means, but I cannot find references for w= hat the tailing =22-p6=22 means. =20 Try the note at the end of =20 http://www5.us.freebsd.org/doc/en=5FUS.ISO8859-1/books/handbook/updating-= upgrading-freebsdupdate.html=23freebsdupdate-security-patches =20 or the last paragraph in =20 http://www5.us.freebsd.org/doc/en=5FUS.ISO8859-1/books/dev-model/release-= branches.html =20 From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 12:52:59 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4FCB1CD for ; Thu, 27 Feb 2014 12:52:59 +0000 (UTC) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 22C2914AD for ; Thu, 27 Feb 2014 12:52:58 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id D9CA933C19; Thu, 27 Feb 2014 07:52:46 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id 9D7503983C; Thu, 27 Feb 2014 07:52:45 -0500 (EST) From: Lowell Gilbert To: Joe Subject: Re: how to read security advisories References: <44fvn64qaf.fsf@lowell-desk.lan> Date: Thu, 27 Feb 2014 07:52:45 -0500 In-Reply-To: (Joe's message of "Wed, 26 Feb 2014 09:19:07 -0700") Message-ID: <444n3kvhsy.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: freebsd-doc@freebsd.org List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 12:52:59 -0000 Joe writes: > I'd like to point out that neither of these resources are of much help > for someone trying to figure out what the -p means, though. That makes sense. What would you suggest as additional text for the how-to-read-a-security-advisory chapter? From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 12:54:36 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF79513B for ; Thu, 27 Feb 2014 12:54:36 +0000 (UTC) Received: from mxf1.bahnhof.se (mxf1.bahnhof.se [213.80.101.25]) by mx1.freebsd.org (Postfix) with ESMTP id 3535714C6 for ; Thu, 27 Feb 2014 12:54:36 +0000 (UTC) Received: from localhost (mxf1.local [127.0.0.1]) by mxf1-reinject (Postfix) with ESMTP id 9C3ED32BC89 for ; Thu, 27 Feb 2014 13:31:28 +0100 (CET) X-Virus-Scanned: by amavisd-new using ClamAV at bahnhof.se (MXF1) X-Spam-Score: -0.001 X-Spam-Level: X-Spam-Status: No, score=-0.001 tagged_above=-99 required=5 tests=[SPF_PASS=-0.001] Received: from mxf1.bahnhof.se ([127.0.0.1]) by localhost (mxf1.bahnhof.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0tsEpag35rYf for ; Thu, 27 Feb 2014 13:31:23 +0100 (CET) Received: from mail.bjuv.org (h-84-63.a175.priv.bahnhof.se [79.136.84.63]) by mxf1.bahnhof.se (Postfix) with ESMTP id A604132BC84 for ; Thu, 27 Feb 2014 13:31:23 +0100 (CET) Received: from [172.24.1.28] (unknown [31.15.36.83]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bjuv.org (Postfix) with ESMTPSA id 453DA20099 for ; Thu, 27 Feb 2014 13:31:23 +0100 (CET) Message-ID: <530F301B.7030101@cyberinfo.se> Date: Thu, 27 Feb 2014 13:31:23 +0100 From: Jack-Benny Persson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Patch to FreeBSD Handbook - jails X-Enigmail-Version: 1.6 Content-Type: multipart/mixed; boundary="------------090609050702000606060004" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 12:54:36 -0000 This is a multi-part message in MIME format. --------------090609050702000606060004 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi, I've noticed that the Jails chapter in the Handbook is a bit out of date. The handbook says one should place the jail_* config options in the /etc/rc.conf file but this is deprecated. The config options should now be placed in /etc/jail.conf. I've created a SVN patch here with an update. Best regards, Jack-Benny Persson --------------090609050702000606060004 Content-Type: text/x-patch; name="jails.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="jails.diff" Index: en_US.ISO8859-1/books/handbook/jails/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/jails/chapter.xml (revision 44074) +++ en_US.ISO8859-1/books/handbook/jails/chapter.xml (working copy) @@ -352,15 +352,22 @@ For each jail listed in jail_list, a - group of &man.rc.conf.5; settings, which describe the - particular jail, should be added: + group of &man.jail.conf.5; settings, which describe the + particular jail, should be added to /etc/jail.conf: - jail_www_rootdir="/usr/jail/www" # jail's root directory -jail_www_hostname="www.example.org" # jail's hostname -jail_www_ip="192.168.0.10" # jail's IP address -jail_www_devfs_enable="YES" # mount devfs in the jail -jail_www_devfs_ruleset="www_ruleset" # devfs ruleset to apply to jail + +www { # Name of the jail from jail_list in /etc/rc.conf + host.hostname = www.example.org; # Hostname + ip4.addr = 192.168.0.10; # IP address of the jail + path = "/usr/jail/www"; # Path to the jail + devfs_ruleset = 4; # DevFS ruleset + mount.devfs; # Mount devfs inside the jail + exec.start = "/bin/sh /etc/rc"; # Start command to run + exec.stop = "/bin/sh /etc/rc.shutdown"; # Stop command to run to stop the jail +} + + The default startup of jails configured in &man.rc.conf.5;, will run the /etc/rc script of the jail, which assumes the jail is a complete --------------090609050702000606060004-- From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 13:47:19 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3ED197B for ; Thu, 27 Feb 2014 13:47:19 +0000 (UTC) Received: from mail1.canodus2.canodus.be (mail1.canodus2.canodus.be [83.149.89.9]) by mx1.freebsd.org (Postfix) with ESMTP id 0152D1A28 for ; Thu, 27 Feb 2014 13:47:18 +0000 (UTC) Received: by mail1.canodus2.canodus.be (Postfix, from userid 65534) id 07B5132ACE6; Thu, 27 Feb 2014 14:38:51 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail1.canodus2.canodus.be X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 Received: from [192.168.1.103] (94-224-50-199.access.telenet.be [94.224.50.199]) by mail1.canodus2.canodus.be (Postfix) with ESMTPSA id 6140132AC92; Thu, 27 Feb 2014 14:38:49 +0100 (CET) Message-ID: <1393508329.3711.12.camel@debian.wout-t440s> Subject: Re: docs/186625: Handbook rebuilding "world" upgrade procedure wrong mergemaster command From: Wout =?ISO-8859-1?Q?Decr=E9?= To: freebsd-gnats-submit@FreeBSD.org, freebsd-doc@freebsd.org Date: Thu, 27 Feb 2014 14:38:49 +0100 In-Reply-To: <201402101120.s1ABKECO052831@cgiserv.freebsd.org> References: <201402101120.s1ABKECO052831@cgiserv.freebsd.org> Organization: Canodus Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.8.5-2+b3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 13:47:19 -0000 On Mon, 2014-02-10 at 11:20 +0000, Wout Decr wrote: > >Number: 186625 > >Category: docs > >Synopsis: Handbook rebuilding "world" upgrade procedure wrong mergemaster command > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-doc > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: doc-bug > >Submitter-Id: current-users > >Arrival-Date: Mon Feb 10 11:30:00 UTC 2014 > >Closed-Date: > >Last-Modified: > >Originator: Wout Decr > >Release: > >Organization: > Canodus > >Environment: > >Description: > Under Procedure 23.2. Overview of Build World Process, step 9: > > Update any remaining configuration files. > > # mergemaster -p > > It suggests you should do the mergemaster command two times with the -p option. > > Before r43796, this was: > > # mergemaster > Can someone confirm this? If it was a mistake, I think it should be corrected soon, as people may not fully merge their /etc directory when rebuilding world. Maybe a note can be added describing the -F option (ignore files which differ only by VCS Id)? Cheers > > >How-To-Repeat: > Check http://www.freebsd.org/doc/handbook/makeworld.html > >Fix: > I think this should just be: > > # mergemaster > > >Release-Note: > >Audit-Trail: > >Unformatted: > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 13:50:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 944743CF for ; Thu, 27 Feb 2014 13:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7DE4A1A5A for ; Thu, 27 Feb 2014 13:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1RDo12C063632 for ; Thu, 27 Feb 2014 13:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1RDo1JT063631; Thu, 27 Feb 2014 13:50:01 GMT (envelope-from gnats) Date: Thu, 27 Feb 2014 13:50:01 GMT Message-Id: <201402271350.s1RDo1JT063631@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Wout =?ISO-8859-1?Q?Decr=E9?= Subject: Re: docs/186625: Handbook rebuilding "world" upgrade procedure wrong mergemaster command X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Wout =?ISO-8859-1?Q?Decr=E9?= List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 13:50:01 -0000 The following reply was made to PR docs/186625; it has been noted by GNATS. From: Wout =?ISO-8859-1?Q?Decr=E9?= To: freebsd-gnats-submit@FreeBSD.org, freebsd-doc@freebsd.org Cc: Subject: Re: docs/186625: Handbook rebuilding "world" upgrade procedure wrong mergemaster command Date: Thu, 27 Feb 2014 14:38:49 +0100 On Mon, 2014-02-10 at 11:20 +0000, Wout Decr wrote: > >Number: 186625 > >Category: docs > >Synopsis: Handbook rebuilding "world" upgrade procedure wrong mergemaster command > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-doc > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: doc-bug > >Submitter-Id: current-users > >Arrival-Date: Mon Feb 10 11:30:00 UTC 2014 > >Closed-Date: > >Last-Modified: > >Originator: Wout Decr > >Release: > >Organization: > Canodus > >Environment: > >Description: > Under Procedure 23.2. Overview of Build World Process, step 9: > > Update any remaining configuration files. > > # mergemaster -p > > It suggests you should do the mergemaster command two times with the -p option. > > Before r43796, this was: > > # mergemaster > Can someone confirm this? If it was a mistake, I think it should be corrected soon, as people may not fully merge their /etc directory when rebuilding world. Maybe a note can be added describing the -F option (ignore files which differ only by VCS Id)? Cheers > > >How-To-Repeat: > Check http://www.freebsd.org/doc/handbook/makeworld.html > >Fix: > I think this should just be: > > # mergemaster > > >Release-Note: > >Audit-Trail: > >Unformatted: > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 17:44:39 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1F2DA34 for ; Thu, 27 Feb 2014 17:44:38 +0000 (UTC) Received: from mail.f5.com (mail.f5.com [208.85.209.139]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A81001198 for ; Thu, 27 Feb 2014 17:44:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=f5.com; i=@f5.com; q=dns/txt; s=seattle; t=1393523079; x=1425059079; h=date:from:to:cc:message-id:in-reply-to:references: subject:mime-version; bh=o95Rc9c8XFPAnQj0moBxtC55wZfU6frZMd0wDXakE0w=; b=sCrc0lU0aJAr91386lFJrjH1z2ip5gyzy8mdoY+C9AgI+DKcjHzNTnzS vvaHN/rwrECDr/g0FYEMuN2y/Ja6PXyniVzrOBP3ogiUre3+PQo7lH3PG +SZjr/Qd41neu7nBrY8dlMl4qx/kNF4PsDEa5jiVtcBj016EnrxPFeAXT E=; X-IronPort-AV: E=Sophos;i="4.97,556,1389744000"; d="scan'208,217";a="101593378" X-IPAS-Result: AmsWABd4D1PAqArr/2dsb2JhbABagkKBVoMDiFO1NYExdIIlAQEBAQIBAQIgVgULCw01AgIoLwYBDQWHcaoQoHYXjlUHgm6BSQSJSoYChhaCVoZyjwWCCg Received: from unknown (HELO exchmail.f5net.com) ([192.168.10.235]) by mail.f5.com with ESMTP/TLS/AES128-SHA; 27 Feb 2014 17:44:24 +0000 Received: from shiny.int.lineratesystems.com (192.168.16.250) by exchmail.f5net.com (192.168.16.223) with Microsoft SMTP Server (TLS) id 14.3.158.1; Thu, 27 Feb 2014 09:44:23 -0800 Date: Thu, 27 Feb 2014 10:44:21 -0700 From: Joe To: , Lowell Gilbert Message-ID: In-Reply-To: <444n3kvhsy.fsf@lowell-desk.lan> References: <44fvn64qaf.fsf@lowell-desk.lan> <444n3kvhsy.fsf@lowell-desk.lan> Subject: Re: how to read security advisories X-Mailer: Airmail (231) MIME-Version: 1.0 X-Originating-IP: [192.168.16.250] Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 17:44:39 -0000 =46or the patch level field, it would be informative to have a note indic= ating that the absence of a patch level field is itself information, rath= er than just an indication that the user is looking in the wrong place. =C2= =A0I think that's really the critical bit that I was missing. =46or example: ... 4.3-RELEASE-p39 (7) ... (7) The=C2=A0Corrected=C2=A0field indicates the date, time, time offset, = and release that was corrected. =C2=A0The -p suffix indicates a security = branch patch level. =C2=A0Builds which do not have the -p suffix in their= release string do not have a patch level. ... I think it would also be nice to have a link to a page describing the bra= nching and/or build-naming strategy, but the above would've been plenty t= o have pointed me in the right direction. Thanks, -joe On =46ebruary 27, 2014 at 5:52:54 AM, Lowell Gilbert (freebsd-lists=40be-= well.ilk.org) wrote: Joe writes: =20 > I'd like to point out that neither of these resources are of much help = =20 > for someone trying to figure out what the -p means, though. =20 That makes sense. What would you suggest as additional text for the =20 how-to-read-a-security-advisory chapter=3F =20 From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 17:51:56 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8900CD3D for ; Thu, 27 Feb 2014 17:51:56 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id 456A01288 for ; Thu, 27 Feb 2014 17:51:55 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allan.jude@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 0BE0361CD2 for ; Thu, 27 Feb 2014 17:51:54 +0000 (UTC) Message-ID: <530F7B3A.3000404@allanjude.com> Date: Thu, 27 Feb 2014 12:51:54 -0500 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: docs/186625: Handbook rebuilding "world" upgrade procedure wrong mergemaster command References: <201402271350.s1RDo1JT063631@freefall.freebsd.org> In-Reply-To: <201402271350.s1RDo1JT063631@freefall.freebsd.org> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hSNQwRhd9L5D8nBESSl0gap08teif5baS" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 17:51:56 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --hSNQwRhd9L5D8nBESSl0gap08teif5baS Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-02-27 08:50, Wout Decr=E9 wrote: > The following reply was made to PR docs/186625; it has been noted by GN= ATS. >=20 > From: Wout =3D?ISO-8859-1?Q?Decr=3DE9?=3D > To: freebsd-gnats-submit@FreeBSD.org, freebsd-doc@freebsd.org > Cc: =20 > Subject: Re: docs/186625: Handbook rebuilding "world" upgrade procedure= > wrong mergemaster command > Date: Thu, 27 Feb 2014 14:38:49 +0100 >=20 > On Mon, 2014-02-10 at 11:20 +0000, Wout Decr wrote: > > >Number: 186625 > > >Category: docs > > >Synopsis: Handbook rebuilding "world" upgrade procedure wrong= mergemaster command > > >Confidential: no > > >Severity: non-critical > > >Priority: low > > >Responsible: freebsd-doc > > >State: open > > >Quarter: =20 > > >Keywords: =20 > > >Date-Required: > > >Class: doc-bug > > >Submitter-Id: current-users > > >Arrival-Date: Mon Feb 10 11:30:00 UTC 2014 > > >Closed-Date: > > >Last-Modified: > > >Originator: Wout Decr > > >Release: =20 > > >Organization: > > Canodus > > >Environment: > > >Description: > > Under Procedure 23.2. Overview of Build World Process, step 9: > >=20 > > Update any remaining configuration files. > >=20 > > # mergemaster -p > >=20 > > It suggests you should do the mergemaster command two times with the= -p option. > >=20 > > Before r43796, this was: > >=20 > > # mergemaster > >=20 > =20 > Can someone confirm this? If it was a mistake, I think it should be > corrected soon, as people may not fully merge their /etc directory whe= n > rebuilding world. > =20 > Maybe a note can be added describing the -F option (ignore files which= > differ only by VCS Id)? > =20 > Cheers > =20 > >=20 > > >How-To-Repeat: > > Check http://www.freebsd.org/doc/handbook/makeworld.html > > >Fix: > > I think this should just be: > >=20 > > # mergemaster > >=20 > > >Release-Note: > > >Audit-Trail: > > >Unformatted: > > _______________________________________________ > > freebsd-doc@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.or= g" > =20 > =20 > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" >=20 Yes, the 2nd mergemaster (after installworld) should be without the -p And yes, I think it would be a good idea to at least offer a about using -F to avoid conflicts where the only difference is the VCS Id --=20 Allan Jude --hSNQwRhd9L5D8nBESSl0gap08teif5baS Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTD3s6AAoJEJrBFpNRJZKfRrIP/2wtT/Gf62uHHI2NH9RsOJYj 6uIRcZXjwugFL+FeUEWc2+ksw2LPKbQC71uQB+TkgcuIPL8Ci5eGXxc+Ki4DPRnK A1IBeEw6751eTAK/KgSsV4TgT3c8/ZWudLbEMJH5LRqf6Cl2JymimnBqb6/yyPu4 dnGoEZHyxJyzFPqQ4iiSSbg8lKdc3oCsgj78b8ZL3U8P3fICKP9jD9bSXTL1leYw xdp+XFJh+16o6Ewf3jMr8hIwkyRzY3yORknp0ODpH3OWBcY7Xp4GcQZejUSNkIGO vlrPXs9CbYbVLf1mUlScUrf8RpPdIKQRGjUw+PvnDRSzCbXUkC7w7K9H3DyK9DzJ lSb8tvkoA7pcfgEHKiScFDnCgg9g4w81LhChz1RoZxoq9zTIFzrB9lL/f2Dzmz3J GSaATbJDTMcsMiW+o8zojd6Ede+Jkz1cyBWOXTxI5WkI7brAcfE/J2spLGx+tgOR dL0VSikhuHqqF9HMFIrgE8jwAEc9CrbEEMsQndl+NYF/EopG/IY5mZdm9zI0Yg9s 3fZuqTVEsQ716BLUdH87zX9z7WmN5uQr/DK+Qm9g/WCJEljNjcRmHjflPXYBJghc MjLrLPIOfjUms0ZLCg10hCQsCNTOcqVSxWJrxutx+GeD49FCNMT8Te3hZP2NZQjB orjLi4UwhFhzGyS5dG5m =6O8x -----END PGP SIGNATURE----- --hSNQwRhd9L5D8nBESSl0gap08teif5baS-- From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 18:03:14 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E993D255 for ; Thu, 27 Feb 2014 18:03:14 +0000 (UTC) Received: from mail.f5.com (mail.f5.com [208.85.209.139]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BCE7C138A for ; Thu, 27 Feb 2014 18:03:14 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.97,556,1389744000"; d="scan'208,217";a="102455491" X-IPAS-Result: AmcWAON8D1PAqArr/2dsb2JhbABagkKBVoMDiFO1NYEzdIImAQUjVhALDTUCAlcGAQ2yBqB2F45VB4JugUkBA4lKhgKIbIZyjwWCCg Received: from unknown (HELO exchmail.f5net.com) ([192.168.10.235]) by seamgw02.olympus.f5net.com with ESMTP; 27 Feb 2014 18:03:14 +0000 Received: from shiny.int.lineratesystems.com (192.168.16.250) by exchmail.f5net.com (192.168.16.223) with Microsoft SMTP Server (TLS) id 14.3.158.1; Thu, 27 Feb 2014 10:03:13 -0800 Date: Thu, 27 Feb 2014 11:03:14 -0700 From: Joe To: , Lowell Gilbert Message-ID: In-Reply-To: References: <44fvn64qaf.fsf@lowell-desk.lan> <444n3kvhsy.fsf@lowell-desk.lan> Subject: Re: how to read security advisories X-Mailer: Airmail (231) MIME-Version: 1.0 X-Originating-IP: [192.168.16.250] Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 18:03:15 -0000 Builds which do not have the -p suffix in their release string do not hav= e a patch level. Or maybe it's more accurate to say =22If your release string does not con= tain the -p suffix, your build is not from the patched security branch=22= =3F =C2=A0 I'm sure you know better than I how to state this in a technically correc= t way. Thanks, -joe From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 18:09:15 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5A42535 for ; Thu, 27 Feb 2014 18:09:15 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6809B1437 for ; Thu, 27 Feb 2014 18:09:15 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s1RI99pE037365 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 27 Feb 2014 11:09:09 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s1RI99jw037362; Thu, 27 Feb 2014 11:09:09 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Thu, 27 Feb 2014 11:09:09 -0700 (MST) From: Warren Block To: Joe Subject: Re: how to read security advisories In-Reply-To: Message-ID: References: <44fvn64qaf.fsf@lowell-desk.lan> <444n3kvhsy.fsf@lowell-desk.lan> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Thu, 27 Feb 2014 11:09:10 -0700 (MST) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 18:09:15 -0000 On Thu, 27 Feb 2014, Joe wrote: > Builds which do not have the -p suffix in their release string do not have a patch level. > > Or maybe it's more accurate to say "If your release string does not contain the -p suffix, your build is not from the patched security branch"? ?? > I'm sure you know better than I how to state this in a technically correct way. "Release strings without a -p suffix have not been patched." From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 19:06:42 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70DD951D for ; Thu, 27 Feb 2014 19:06:42 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [78.47.69.234]) by mx1.freebsd.org (Postfix) with ESMTP id 2914019CE for ; Thu, 27 Feb 2014 19:06:42 +0000 (UTC) Received: from [IPv6:2001:470:d701::39be:975f:8891:ab39] (unknown [IPv6:2001:470:d701:0:39be:975f:8891:ab39]) by mail.jr-hosting.nl (Postfix) with ESMTPSA id 645143F467; Thu, 27 Feb 2014 20:06:40 +0100 (CET) Content-Type: multipart/signed; boundary="Apple-Mail=_C94C5BA3-2604-4F94-AFF7-627C1E07AF56"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: how to read security advisories From: Remko Lodder In-Reply-To: Date: Thu, 27 Feb 2014 20:06:39 +0100 Message-Id: <8C3865D6-0291-4756-B9EA-F3DB445DD9CC@FreeBSD.org> References: <44fvn64qaf.fsf@lowell-desk.lan> <444n3kvhsy.fsf@lowell-desk.lan> To: Warren Block X-Mailer: Apple Mail (2.1874) Cc: freebsd-doc@freebsd.org, Joe X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 19:06:42 -0000 --Apple-Mail=_C94C5BA3-2604-4F94-AFF7-627C1E07AF56 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 On 27 Feb 2014, at 19:09, Warren Block wrote: > On Thu, 27 Feb 2014, Joe wrote: >=20 >> Builds which do not have the -p suffix in their release string do not = have a patch level. >>=20 >> Or maybe it's more accurate to say "If your release string does not = contain the -p suffix, your build is not from the patched security = branch"?=20 > ?? >> I'm sure you know better than I how to state this in a technically = correct way. >=20 > "Release strings without a -p suffix have not been patched.=94 Have not yet received a Security Advisory and/or Errata Notice. A non -p system is fully patched and ready to go when it had been = released, though afterwards flaws and problems can be found that were not known yet, needing it to be updated, to be = able to see that, the -pX comes into play. It=92s safe to assume that only -pX systems are either because of a SA = or an EN. :) Remko > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" --=20 /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_C94C5BA3-2604-4F94-AFF7-627C1E07AF56 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJTD4y/AAoJEKjD27JZ84ywVtoP/iMCmOhTMWHO3A53NP6gI8Az WJ0LTRRQfsR7dkXYs5CvXhwd70zFqWo03Wuk9YXiLotaU155V92mTShq6J7WWOmB znLu2CmuWxbAItJaI7/tokQlfowIEIhhjDki+V6r8qFgFVYFrSpTvbeCGhiYQOSg zt9ogclq3HfxoCzrXQixgne3w5pd9phve1SQsLS0NgujN44afCFmE6iHemPLELVH BzG+kr3OsJl1p/H4CiIki8YNWRzqSoWqqUnO/YBQ+TAbUztpuQa5qec8o13Z1SDb BRugUPuE8pvXccZFi9lobpa8jD4l5YdhdGChX/9bk8kmUoAFyGpI8UpDYkO2cvdh zAQZnJ4sAntwZrgQBRZMaKwJjN99MZFZqZqx0jUkepU10qNRBp9Ns1oGh2dJEqsI RShG0FwWh8nAQw1NSI7wh2qAHopOipcOhI9DbfNEieBBVz5Ezxf7eYc+hYnLNXDS 1ggW3MkXwVLpcQlF3sJc77Z0ffKgymfz2VsXc+EMKi4cpg5XSdIilqHY5xG8Mxr7 xbaaLBTl2fa0Cz9U0vmnoUQOb8thLAphDJGBCASr9h7M4KCYF/R4udLT7TY/l+wK ZWQlYkBNLCjF8z3AoJbRQYM8YTPX5aBqVSO91dPKa65TNJWqAv2ME9qMlw43P5kv 475aq+3/RAgJuSdB+Yo9 =aaUT -----END PGP SIGNATURE----- --Apple-Mail=_C94C5BA3-2604-4F94-AFF7-627C1E07AF56-- From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 22:54:59 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A762A3AA for ; Thu, 27 Feb 2014 22:54:59 +0000 (UTC) Received: from na01-bn1-obe.outbound.protection.outlook.com (mail-bn1blp0183.outbound.protection.outlook.com [207.46.163.183]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F3891069 for ; Thu, 27 Feb 2014 22:54:58 +0000 (UTC) Received: from DM2PR03MB496.namprd03.prod.outlook.com (10.141.85.152) by BLUPR03MB591.namprd03.prod.outlook.com (10.255.124.37) with Microsoft SMTP Server (TLS) id 15.0.888.9; Thu, 27 Feb 2014 22:54:50 +0000 Received: from DM2PR03MB496.namprd03.prod.outlook.com ([10.141.85.152]) by DM2PR03MB496.namprd03.prod.outlook.com ([10.141.85.152]) with mapi id 15.00.0883.010; Thu, 27 Feb 2014 22:54:50 +0000 From: Erik Namtvedt To: "freebsd-doc@freebsd.org" Subject: Issues w/ FTP Thread-Topic: Issues w/ FTP Thread-Index: Ac80DprkDy9dng+PQJaizekfIKysJw== Date: Thu, 27 Feb 2014 22:54:49 +0000 Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [2001:4898:80e8:ed31::3] x-forefront-prvs: 013568035E x-forefront-antispam-report: SFV:NSPM; SFS:(10009001)(6009001)(428001)(189002)(199002)(83072002)(74876001)(46102001)(2656002)(81816001)(87936001)(92566001)(74706001)(85306002)(85852003)(74316001)(74366001)(33646001)(87266001)(54316002)(54356001)(53806001)(69226001)(76482001)(56776001)(16236675002)(47446002)(31966008)(74662001)(74502001)(93136001)(47736001)(47976001)(49866001)(50986001)(77982001)(59766001)(94946001)(94316002)(93516002)(76176001)(76796001)(86362001)(76786001)(81686001)(80976001)(76576001)(65816001)(63696002)(95416001)(19580395003)(83322001)(15202345003)(15975445006)(90146001)(81342001)(4396001)(56816005)(95666003)(81542001)(86612001)(79102001)(80022001)(19300405004)(24736002); DIR:OUT; SFP:1101; SCL:1; SRVR:BLUPR03MB591; H:DM2PR03MB496.namprd03.prod.outlook.com; CLIP:2001:4898:80e8:ed31::3; FPR:5CA8E276.C712DC75.1E01C7F.48E96E34.200D7; MLV:sfv; PTR:InfoNoRecords; MX:1; A:1; LANG:en; received-spf: None (: microsoft.com does not designate permitted sender hosts) MIME-Version: 1.0 X-OriginatorOrg: microsoft.com X-Mailman-Approved-At: Thu, 27 Feb 2014 23:34:03 +0000 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 22:54:59 -0000 It appears your FTP server is handing out bad port assignments for the FTP = traffic. With filezilla, linux, and other ftp clients I am getting 'Illegal PORT com= mand' errors. Putting the connection in passive mode solves the issue. You might want to look into it. It appears to only be impacting the 10.0 release server(s), not the 9.2. Happy su'ing :) From owner-freebsd-doc@FreeBSD.ORG Thu Feb 27 23:43:27 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26F48690; Thu, 27 Feb 2014 23:43:27 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ED617149F; Thu, 27 Feb 2014 23:43:26 +0000 (UTC) Received: from glenbarber.us (nucleus.glenbarber.us [IPv6:2001:470:8:1205:2:2:ff:100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id 350AA3C97; Thu, 27 Feb 2014 23:43:25 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us 350AA3C97 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 27 Feb 2014 18:43:23 -0500 From: Glen Barber To: Erik Namtvedt Subject: Re: Issues w/ FTP Message-ID: <20140227234323.GC1697@glenbarber.us> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="p2kqVDKq5asng8Dg" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.22 (2013-10-16) X-Mailman-Approved-At: Thu, 27 Feb 2014 23:45:07 +0000 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 23:43:27 -0000 --p2kqVDKq5asng8Dg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable [doc@ BCC'd to exclude from future replies] On Thu, Feb 27, 2014 at 10:54:49PM +0000, Erik Namtvedt wrote: > It appears your FTP server is handing out bad port assignments for the FT= P traffic. > With filezilla, linux, and other ftp clients I am getting 'Illegal PORT c= ommand' errors. > Putting the connection in passive mode solves the issue. > You might want to look into it. > It appears to only be impacting the 10.0 release server(s), not the 9.2. >=20 Which FTP mirror are you using? If 'ftp.FreeBSD.org', we will need to know which one of the top-level mirrors specifically it is. Glen --p2kqVDKq5asng8Dg Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTD82bAAoJELls3eqvi17QhTMP/2OPrXbQ2NugtuUBa7KD90Ai jbSZ2Z9jXbQwBCDpn4Q+F7CGoZlM+SF5ZNLMF7p+9VBwUzpctT0B1/i4KrJ2Kei3 eLiqOT8gD7bPkSjS3KAfh300ZC/gMNwY7kr9CNlzp9k7FDujs19T6GSWxnEzwJUf XRtPcPQoIoE0TWE5V2bEyOmqZBdRhvB8Q6+1XFHXOBlvwgcWl4eVGpJk8fhyeOd6 wSfXKcib1B/Gef7OHifHxtFnC7GUY+9wPqfKcKDRJV1lXQIOeIz4Vt+cBddobdiS US/I4z+wCUS51dm6wbfWuW5grkB4c5+WxcFnauCwVrswS05qtjUwb+NZrWr5tMtP b8aI0H46OQBVP3yDA8dhfiKsLfuahFnpGw2yA0J7Kc7H7bNcEKGHN0eVQTBk0sF3 3lap7b4NqLS8ogo2qv4iJ8TDC0LUZKLvPENvIbpcTUBnB5Nmwz2aGjK3ZjeVXP7T FeA7c6aIKonPeuePQb78pkC62rFgwNl2CqGl4FEhVDvvKGU+VYPo7wpT8Tvqy1r6 iHACQl4KWeOXvITKs6frW51aff+MOAgRE17L3FMyf8SkE+I2VCbnDhS7O12ahQQ3 odQlJ1IBrpx4v6v9m/dTYDpbifTouINenY15GQ5OeBz6hCd2c+oF1ityOIEG0Dwo 7FL8GUaxaQH/KXExnZpo =v9WF -----END PGP SIGNATURE----- --p2kqVDKq5asng8Dg-- From owner-freebsd-doc@FreeBSD.ORG Fri Feb 28 07:24:52 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E335F2E for ; Fri, 28 Feb 2014 07:24:52 +0000 (UTC) Received: from mxf1.bahnhof.se (mxf1.bahnhof.se [213.80.101.25]) by mx1.freebsd.org (Postfix) with ESMTP id 03517196E for ; Fri, 28 Feb 2014 07:24:51 +0000 (UTC) Received: from localhost (mxf1.local [127.0.0.1]) by mxf1-reinject (Postfix) with ESMTP id E30AC32BF37 for ; Fri, 28 Feb 2014 08:24:49 +0100 (CET) X-Virus-Scanned: by amavisd-new using ClamAV at bahnhof.se (MXF1) X-Spam-Score: -0.001 X-Spam-Level: X-Spam-Status: No, score=-0.001 tagged_above=-99 required=5 tests=[SPF_PASS=-0.001] Received: from mxf1.bahnhof.se ([127.0.0.1]) by localhost (mxf1.bahnhof.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1M7pAFNi5EJL for ; Fri, 28 Feb 2014 08:24:44 +0100 (CET) Received: from mail.bjuv.org (h-84-63.a175.priv.bahnhof.se [79.136.84.63]) by mxf1.bahnhof.se (Postfix) with ESMTP id A8DEB32BF39 for ; Fri, 28 Feb 2014 08:24:44 +0100 (CET) Received: from [192.168.0.2] (unknown [192.168.0.2]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bjuv.org (Postfix) with ESMTPSA id 46936201E7 for ; Fri, 28 Feb 2014 08:24:44 +0100 (CET) Message-ID: <531039BB.4020004@cyberinfo.se> Date: Fri, 28 Feb 2014 08:24:43 +0100 From: Jack-Benny Persson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Patch to FreeBSD Handbook - jails References: <530F301B.7030101@cyberinfo.se> In-Reply-To: <530F301B.7030101@cyberinfo.se> X-Enigmail-Version: 1.6 Content-Type: multipart/mixed; boundary="------------060707080707080806070201" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 07:24:52 -0000 This is a multi-part message in MIME format. --------------060707080707080806070201 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi again, I've changed my patch a bit since I'm figured it was a bad idea to remove the "old way" (keeping the jail settings in /etc/rc.conf) since /etc/jail.conf is rather new (from FreeBSD 9.1 and above). Included here is my new patch for the jail chapter in the Handbook. Best regards, Jack-Benny On 2014-02-27 13:31, Jack-Benny Persson wrote: > Hi, > > I've noticed that the Jails chapter in the Handbook is a bit out of > date. The handbook says one should place the jail_* config options in > the /etc/rc.conf file but this is deprecated. The config options should > now be placed in /etc/jail.conf. > > I've created a SVN patch here with an update. > > Best regards, > Jack-Benny Persson > > > > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" > --------------060707080707080806070201 Content-Type: text/plain; charset=UTF-8; name="jails.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="jails.txt" Index: en_US.ISO8859-1/books/handbook/jails/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/jails/chapter.xml (revision 44074) +++ en_US.ISO8859-1/books/handbook/jails/chapter.xml (working copy) @@ -373,6 +373,25 @@ For a full list of available options, please see the &man.rc.conf.5; manual page. + + +From FreeBSD 9.1 and above the recommended way is to place the jail settings in /etc/jail.conf (see &man.jail.conf.5;). +For example a jail config similar to above would look like this in /etc/jail.conf. + +www { # Name of the jail from jail_list in /etc/rc.conf + host.hostname = www.example.org; # Hostname + ip4.addr = 192.168.0.10; # IP address of the jail + path = "/usr/jail/www"; # Path to the jail + devfs_ruleset = www_ruleset; # DevFS ruleset + mount.devfs; # Mount devfs inside the jail + exec.start = "/bin/sh /etc/rc"; # Start command to run + exec.stop = "/bin/sh /etc/rc.shutdown"; # Stop command to run to stop the jail +} + + + + + --------------060707080707080806070201-- From owner-freebsd-doc@FreeBSD.ORG Fri Feb 28 08:04:25 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 31641EF7 for ; Fri, 28 Feb 2014 08:04:25 +0000 (UTC) Received: from mxf3.bahnhof.se (mxf3.bahnhof.se [213.80.101.27]) by mx1.freebsd.org (Postfix) with ESMTP id DC7791C9F for ; Fri, 28 Feb 2014 08:04:24 +0000 (UTC) Received: from localhost (mxf3.local [127.0.0.1]) by mxf3-reinject (Postfix) with ESMTP id 2C77B50EE5D for ; Fri, 28 Feb 2014 08:39:04 +0100 (CET) X-Virus-Scanned: by amavisd-new using ClamAV at bahnhof.se (MXF1) X-Spam-Score: -0.001 X-Spam-Level: X-Spam-Status: No, score=-0.001 tagged_above=-99 required=5 tests=[SPF_PASS=-0.001] Received: from mxf3.bahnhof.se ([127.0.0.1]) by localhost (mxf3.bahnhof.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BYLJ8t-JAeJz for ; Fri, 28 Feb 2014 08:39:00 +0100 (CET) Received: from mail.bjuv.org (h-84-63.a175.priv.bahnhof.se [79.136.84.63]) by mxf3.bahnhof.se (Postfix) with ESMTP id 932D750EE5B for ; Fri, 28 Feb 2014 08:39:00 +0100 (CET) Received: from [192.168.0.2] (elektra.nixnet.jke [192.168.0.2]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bjuv.org (Postfix) with ESMTPSA id 50F0B201E7 for ; Fri, 28 Feb 2014 08:39:00 +0100 (CET) Message-ID: <53103D13.9030402@cyberinfo.se> Date: Fri, 28 Feb 2014 08:38:59 +0100 From: Jack-Benny Persson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Correct way of sending patches? X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 08:04:25 -0000 Hi, I'm just wondering what the correct way is to send updates and patches to the FreeBSD Handbook? I've read (and heard) of both sending them to this list as well as using send-pr. I was recommended to send them here to the list so I've sent a small patch to the jail chapter. But maybe this wasn't the correct procedure? Best regards, Jack-Benny From owner-freebsd-doc@FreeBSD.ORG Fri Feb 28 13:07:14 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2DEAB0F for ; Fri, 28 Feb 2014 13:07:14 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 98CA4193F for ; Fri, 28 Feb 2014 13:07:14 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s1SD79qR004008 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 28 Feb 2014 06:07:10 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s1SD78bM004005; Fri, 28 Feb 2014 06:07:09 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Fri, 28 Feb 2014 06:07:08 -0700 (MST) From: Warren Block To: Jack-Benny Persson Subject: Re: Correct way of sending patches? In-Reply-To: <53103D13.9030402@cyberinfo.se> Message-ID: References: <53103D13.9030402@cyberinfo.se> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Fri, 28 Feb 2014 06:07:10 -0700 (MST) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 13:07:14 -0000 On Fri, 28 Feb 2014, Jack-Benny Persson wrote: > Hi, > > I'm just wondering what the correct way is to send updates and patches > to the FreeBSD Handbook? I've read (and heard) of both sending them to > this list as well as using send-pr. I was recommended to send them here > to the list so I've sent a small patch to the jail chapter. But maybe > this wasn't the correct procedure? A PR is better because it is kept in a database and not as easily lost or forgotten. Tangentially, the web version of send-pr is easier to use: http://www.freebsd.org/send-pr.html Just remember to add a .txt extension to patch filenames ("patch.diff.txt") so the web form will accept them. Thanks! From owner-freebsd-doc@FreeBSD.ORG Fri Feb 28 13:30:08 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE97C4ED for ; Fri, 28 Feb 2014 13:30:08 +0000 (UTC) Received: from mxf1.bahnhof.se (mxf1.bahnhof.se [213.80.101.25]) by mx1.freebsd.org (Postfix) with ESMTP id A504E1AF1 for ; Fri, 28 Feb 2014 13:30:08 +0000 (UTC) Received: from localhost (mxf1.local [127.0.0.1]) by mxf1-reinject (Postfix) with ESMTP id 6E87D32C19E; Fri, 28 Feb 2014 14:30:01 +0100 (CET) X-Virus-Scanned: by amavisd-new using ClamAV at bahnhof.se (MXF1) X-Spam-Score: -0.001 X-Spam-Level: X-Spam-Status: No, score=-0.001 tagged_above=-99 required=5 tests=[SPF_PASS=-0.001] Received: from mxf1.bahnhof.se ([127.0.0.1]) by localhost (mxf1.bahnhof.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Txz7TiB8CGCG; Fri, 28 Feb 2014 14:29:57 +0100 (CET) Received: from mail.bjuv.org (h-84-63.a175.priv.bahnhof.se [79.136.84.63]) by mxf1.bahnhof.se (Postfix) with ESMTP id F3E0332C1A2; Fri, 28 Feb 2014 14:29:56 +0100 (CET) Received: from [192.168.0.2] (elektra.nixnet.jke [192.168.0.2]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bjuv.org (Postfix) with ESMTPSA id AE7621FFAB; Fri, 28 Feb 2014 14:29:56 +0100 (CET) Message-ID: <53108F54.1070304@cyberinfo.se> Date: Fri, 28 Feb 2014 14:29:56 +0100 From: Jack-Benny Persson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Warren Block Subject: Re: Correct way of sending patches? References: <53103D13.9030402@cyberinfo.se> In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 13:30:09 -0000 >> Hi, >> >> I'm just wondering what the correct way is to send updates and patches >> to the FreeBSD Handbook? I've read (and heard) of both sending them to >> this list as well as using send-pr. I was recommended to send them here >> to the list so I've sent a small patch to the jail chapter. But maybe >> this wasn't the correct procedure? > > A PR is better because it is kept in a database and not as easily lost > or forgotten. > > Tangentially, the web version of send-pr is easier to use: > http://www.freebsd.org/send-pr.html > > Just remember to add a .txt extension to patch filenames > ("patch.diff.txt") so the web form will accept them. > > Thanks! Thanks for your kind reply and tip about the .txt extension! I'll post my updated patch with the web version of send-pr. Cheers! From owner-freebsd-doc@FreeBSD.ORG Fri Feb 28 13:50:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4AE7B26 for ; Fri, 28 Feb 2014 13:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F24B1CCC for ; Fri, 28 Feb 2014 13:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1SDo0Vm053252 for ; Fri, 28 Feb 2014 13:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1SDo0Oh053251; Fri, 28 Feb 2014 13:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 28 Feb 2014 13:50:00 GMT Resent-Message-Id: <201402281350.s1SDo0Oh053251@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jack-Benny Persson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF750AFC for ; Fri, 28 Feb 2014 13:49:11 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CBFF11CB7 for ; Fri, 28 Feb 2014 13:49:11 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1SDnBji039900 for ; Fri, 28 Feb 2014 13:49:11 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1SDnBqi039893; Fri, 28 Feb 2014 13:49:11 GMT (envelope-from nobody) Message-Id: <201402281349.s1SDnBqi039893@cgiserv.freebsd.org> Date: Fri, 28 Feb 2014 13:49:11 GMT From: Jack-Benny Persson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187142: The Handbook (chapter 15.4) does not mention /etc/jail.conf X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 13:50:00 -0000 >Number: 187142 >Category: docs >Synopsis: The Handbook (chapter 15.4) does not mention /etc/jail.conf >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 13:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jack-Benny Persson >Release: >Organization: >Environment: >Description: FreeBSD Handbook chapter 15.4 (Creating and Controlling Jails). Since FreeBSD 9.1 the /etc/jail.conf file is the recommended way to configure jails. The Handbook does not mention this in it's present form. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: en_US.ISO8859-1/books/handbook/jails/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/jails/chapter.xml (revision 44074) +++ en_US.ISO8859-1/books/handbook/jails/chapter.xml (working copy) @@ -373,6 +373,25 @@ For a full list of available options, please see the &man.rc.conf.5; manual page. + + +From FreeBSD 9.1 and above the recommended way is to place the jail settings in /etc/jail.conf (see &man.jail.conf.5;). +For example a jail config similar to above would look like this in /etc/jail.conf. + +www { # Name of the jail from jail_list in /etc/rc.conf + host.hostname = www.example.org; # Hostname + ip4.addr = 192.168.0.10; # IP address of the jail + path = "/usr/jail/www"; # Path to the jail + devfs_ruleset = www_ruleset; # DevFS ruleset + mount.devfs; # Mount devfs inside the jail + exec.start = "/bin/sh /etc/rc"; # Start command to run + exec.stop = "/bin/sh /etc/rc.shutdown"; # Stop command to run to stop the jail +} + + + + + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri Feb 28 19:23:27 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 199B5918 for ; Fri, 28 Feb 2014 19:23:27 +0000 (UTC) Received: from mail.elemental-net.ca (mail.elemental-net.ca [192.139.81.172]) by mx1.freebsd.org (Postfix) with ESMTP id BB8F51D45 for ; Fri, 28 Feb 2014 19:23:26 +0000 (UTC) X-Default-Received-SPF: pass (skip=forwardok (res=PASS)) x-ip-name=192.139.81.173; Received: from ganymede.elemental-net.ca (unverified [192.139.81.173]) by elemental-net.ca (SurgeMail 6.3c2) with ESMTP id 4734786-1854839 for ; Fri, 28 Feb 2014 13:37:39 -0500 Received: by ganymede.elemental-net.ca (Postfix, from userid 33) id 5FE1B33D69B; Fri, 28 Feb 2014 13:18:32 -0500 (EST) To: doc@freebsd.org Subject: Welcome From: "Erica Benton" Date: Fri, 28 Feb 2014 13:37:39 -0500 X-Originating-IP: 192.139.81.173 Message-ID: <1393612659_123369@mail.elemental-net.ca> X-ORBS-Accept: Trusted Forwarder X-Virus-Status: Clean X-Virus-Scanned: ClamAV 0.97.7/18524/Fri Feb 28 10:48:48 2014 v0.69.1-177 X-SpamDetect: ********: 8.8 sd=8.8 0.96(X-SpamContent:isspam) 0.96((X-Phrase:isspam), ((!X-myrbl:Color=blue), (Forwarder))) 0.95(X-MyUrl:black) 0.05(Forwarder) 0.80((!X-NotAscii:utf), (X-myrbl:unknown)) [nnot=1, ng=1, nsum=2, nb=3, nw=1, 5.83] X-Aspam: Words 0.0 -card -length -payment -quarterly -andrew -invoices -statement -ns1 -pdf X-Aspam: External-IP matched 192.139.81 2.0 X-Aspam: Best match was sample aspam_good\m1639.msg X-Aspam: Total 2.0 X-NakedCr: Body contained naked cr characters X-SpamContent: IsSpam X-LangGuess: English X-Probe: +OK skipped, known ip address X-MyUrl: Color=Black found=a.com X-Phrase: IsSpam score=1.00 X-MyRbl: Color=Unknown (rbl) Age=0 Spam=0 Notspam=0 Stars=0 Good=3640 Friend=0 Surbl=0 Catch=0 r=0 ip=192.139.81.173 X-IP-stats: Incoming Last 0, First 1549, in=121726, out=0, spam=0 ip=192.139.81.173 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 19:23:27 -0000 Reply-To: "Erica Benton" X-Priority: 3 (Normal) MIME-Version: 1.0 Content-Type: text/html; charset="iso-8859-1" Message-Id: <20140228181832.5FE1B33D69B@ganymede.elemental-net.ca> Date: Fri, 28 Feb 2014 13:18:32 -0500 (EST) Content-Transfer-Encoding: quoted-printable From owner-freebsd-doc@FreeBSD.ORG Sat Mar 1 20:07:39 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E190D540 for ; Sat, 1 Mar 2014 20:07:39 +0000 (UTC) Received: from smtp.tom.com (smtpfreer103.163vip.net [211.100.40.90]) by mx1.freebsd.org (Postfix) with SMTP id 752E71A16 for ; Sat, 1 Mar 2014 20:07:38 +0000 (UTC) Received: from smtp.tom.com (unknown [172.24.202.205]) by bjsd-tm-app4.localdomain (SMTP) with ESMTP id 1BEAC52B6CC for ; Sun, 2 Mar 2014 04:07:30 +0800 (CST) Authentication-Results: bjsd-antispam2 smtp.user=rushin29232@tom.com; auth=pass (LOGIN) Received: from [172.24.202.206] ([172.24.202.206:22426] helo=bjsd-tm-web5) by bjsd-antispam2 (envelope-from ) (ecelerity 3.5.4.38585 r(Platform:3.5.4.0)) with ESMTPA id 4E/EA-02503-00E32135; Sun, 02 Mar 2014 04:07:28 +0800 Date: Sun, 2 Mar 2014 04:07:28 +0800 (CST) From: =?UTF-8?B?cnVzaGluMjkyMzI=?= To: chuzj888@126.com, xxzx.bjb@hz.gov.cn, pinggongbo.student@sina.com, hz-cn@163.com, doc@freebsd.org, name@public.nbptt.zj.cn, name@163.net, ame@public.nbptt.zj.cn Message-ID: <324500051.1016.1393704448944.JavaMail.tomwebmail@bjsd-tm-web5> Subject: =?UTF-8?B?55yf6Kqg5ZCI5L2c?= MIME-Version: 1.0 X-Mailer: TOMWEBMAIL 2.0 X-Originating-IP: 113.85.26.192 Content-Type: text/plain;charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2014 20:07:39 -0000
  
=  =E4=BB=A3 =E7=90=86 =E7=99=BC =E7=A5=A8 =E9=9B=BB=EF=BC=9BI35-1594+3107

2014=E5=B9=B43=E6=9C= =882=E6=97=A5
 
  
From owner-freebsd-doc@FreeBSD.ORG Sat Mar 1 21:10:19 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 582F5CE4 for ; Sat, 1 Mar 2014 21:10:19 +0000 (UTC) Received: from mail-ve0-x241.google.com (mail-ve0-x241.google.com [IPv6:2607:f8b0:400c:c01::241]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 18A871E32 for ; Sat, 1 Mar 2014 21:10:19 +0000 (UTC) Received: by mail-ve0-f193.google.com with SMTP id oz11so433368veb.4 for ; Sat, 01 Mar 2014 13:10:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=KFrNSrSDyMDhCva/kHFnqocRyfBe+A0xRdKwZY+LtOY=; b=F2R0gmjniXlgHLGBIkCFGcutfhHFYAY/hB6HYol6TFKB+66emlwmoHukHOaGvBbIGb xzsS597EQJkjJ0SC0db7qk6q1SK1BTkQR9RpDI4pNGt6TVdkHYNjHOgShfdGGV9VGA8G PfTbMtms/NIUtRFQk0N3oVa28uHI9bXVqzMZbLqjbhj9+GJprkAiQ0kRFuh9h8gx92Y2 HcFjIW3TQcavI1Qx3V7QTkqhstULTlkKDyTEqlbzkvxF5M4ARApN3lehzSzYXpa34yU7 W2SCMPtroVz6yqu3B9Xnk7f5UKRfRkia9P+mXzdDjD7W8KIsL3GjH7NiyWtiJ6AjMsbX ZNxA== MIME-Version: 1.0 X-Received: by 10.220.250.203 with SMTP id mp11mr9407062vcb.2.1393708218236; Sat, 01 Mar 2014 13:10:18 -0800 (PST) Received: by 10.58.115.103 with HTTP; Sat, 1 Mar 2014 13:10:18 -0800 (PST) Date: Sat, 1 Mar 2014 15:10:18 -0600 Message-ID: Subject: Processes and Daemons From: daniel dallmann To: freebsd-doc@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2014 21:10:19 -0000 I was wondering if the output from top was displayed with two headers on purpose? http://www.za.freebsd.org/doc/handbook/basics-processes.html From owner-freebsd-doc@FreeBSD.ORG Sun Mar 2 15:43:02 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9DFE6E9 for ; Sun, 2 Mar 2014 15:43:02 +0000 (UTC) Received: from mail-ve0-x236.google.com (mail-ve0-x236.google.com [IPv6:2607:f8b0:400c:c01::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 871AE1C68 for ; Sun, 2 Mar 2014 15:43:02 +0000 (UTC) Received: by mail-ve0-f182.google.com with SMTP id jy13so2707993veb.41 for ; Sun, 02 Mar 2014 07:43:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=BIPDR9i6pPz7bSXo9Md8VRnKw8dDJoUeS/nq9mV/45Y=; b=0M8wuKpfMdwoEYfh1zAfJeKwVUSxKNPU0aijsBxwIj1l2PuOQSJVeILscYVlAJ/u2M wTGm4yPV4HZ3l0qeXvNjzDYa3nnu8Yey9vRwoftPUWGKcS20ve/oPZw4AN4VNH36IPz2 jqVSQIFR+Cijwen6Z1/XIakTJfwLIRj9E+fexfzObvjsGCcIgDufpbYjVKDBBvoJJTpR 6MgU3qK2HCBa2lrngXcCbu096pmYn2MDV/XJtkt4pArtRYxuVNPsgShEfiy2kADL/ohM GMnG5KmrGcZr3Naw4/+1quYWAGsg4Yw043oHpJP+xmBCXI3py5Tn3MWr+VB2AVq32fhH mAcw== MIME-Version: 1.0 X-Received: by 10.58.202.4 with SMTP id ke4mr12430109vec.7.1393774981605; Sun, 02 Mar 2014 07:43:01 -0800 (PST) Received: by 10.220.168.135 with HTTP; Sun, 2 Mar 2014 07:43:01 -0800 (PST) In-Reply-To: References: Date: Sun, 2 Mar 2014 10:43:01 -0500 Message-ID: Subject: Re: Processes and Daemons From: Thomas Hoffmann To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: daniel dallmann X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 15:43:02 -0000 On Sat, Mar 1, 2014 at 4:10 PM, daniel dallmann wrote: > I was wondering if the output from top was displayed with two headers on > purpose? > > http://www.za.freebsd.org/doc/handbook/basics-processes.html I'm guessing yes. The first is without ZFS stats (5 lines), the second with ZFS stats (6 lines). The text describes the 'top' heading as being 5 or 6 lines. So these two header formats are the two users will encounter, depending on their use or non-use of ZFS. -Tom From owner-freebsd-doc@FreeBSD.ORG Sun Mar 2 16:47:16 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9AB62853 for ; Sun, 2 Mar 2014 16:47:16 +0000 (UTC) Received: from mail-ve0-x22d.google.com (mail-ve0-x22d.google.com [IPv6:2607:f8b0:400c:c01::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 543EB123D for ; Sun, 2 Mar 2014 16:47:16 +0000 (UTC) Received: by mail-ve0-f173.google.com with SMTP id oy12so644764veb.18 for ; Sun, 02 Mar 2014 08:47:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=xS9Em7h3HIarbtrhLkFtRpAgTAnVU3+RUvx3IhIrsWg=; b=yaZeKDPuSBkaKmEAmrbLZAQzCdcGT9ZNNnlibKMo6/0qvaGwJgWlyfpphXfx1H8woJ DgVb5LBCEgsDhxfVMyG/VKgVlMiLxqAWBWWAdXNyCR3g+QxKUAaxzCo/vXpWHrsMuusk ZB8CcKI1zL6Zok9j37BYUeEG38mMupV26L3pORSsfhBekpIjmfGdQp9bxkfvGTf5U205 K7ulhVPLHlZZU6ujLFOIOeIR/yDrgl0aC1OzyTkFTMU9fQeWrLiJmKACBqthsZo6F4mt NRlexNXD71EF1hQJghxq7KZ7IaX69K6VtUyDC+ZhRrI0Iu+C+Q/3sAbZZ3wG8E5ZnH/e ayTg== MIME-Version: 1.0 X-Received: by 10.221.20.199 with SMTP id qp7mr13257554vcb.24.1393778835358; Sun, 02 Mar 2014 08:47:15 -0800 (PST) Received: by 10.220.168.135 with HTTP; Sun, 2 Mar 2014 08:47:15 -0800 (PST) In-Reply-To: References: Date: Sun, 2 Mar 2014 11:47:15 -0500 Message-ID: Subject: Re: Processes and Daemons From: Thomas Hoffmann To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: daniel dallmann X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 16:47:16 -0000 On Sun, Mar 2, 2014 at 11:42 AM, daniel dallmann wrote: > I would like to suggest showing the second header example since the text > says if you have zfs you'll also have line with ARC. It just simplifies the > example. > > Thanks for getting back to me. > On Mar 2, 2014 9:43 AM, "Thomas Hoffmann" wrote: > >> On Sat, Mar 1, 2014 at 4:10 PM, daniel dallmann wrote: >> >>> I was wondering if the output from top was displayed with two headers on >>> purpose? >>> >>> http://www.za.freebsd.org/doc/handbook/basics-processes.html >> >> >> I'm guessing yes. The first is without ZFS stats (5 lines), the second >> with ZFS stats (6 lines). The text describes the 'top' heading as being 5 >> or 6 lines. So these two header formats are the two users will encounter, >> depending on their use or non-use of ZFS. >> >> -Tom >> > Resent to include freebsd-doc@ as recipient. From owner-freebsd-doc@FreeBSD.ORG Sun Mar 2 17:20:28 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 071FF94 for ; Sun, 2 Mar 2014 17:20:28 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A7BCE14FB for ; Sun, 2 Mar 2014 17:20:27 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s22HKJph015523 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 2 Mar 2014 10:20:20 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s22HKJp6015520; Sun, 2 Mar 2014 10:20:19 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Sun, 2 Mar 2014 10:20:19 -0700 (MST) From: Warren Block To: Thomas Hoffmann Subject: Re: Processes and Daemons In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 02 Mar 2014 10:20:20 -0700 (MST) Cc: freebsd-doc@freebsd.org, daniel dallmann X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 17:20:28 -0000 On Sun, 2 Mar 2014, Thomas Hoffmann wrote: > On Sat, Mar 1, 2014 at 4:10 PM, daniel dallmann wrote: > >> I was wondering if the output from top was displayed with two headers on >> purpose? >> >> http://www.za.freebsd.org/doc/handbook/basics-processes.html > > > I'm guessing yes. The first is without ZFS stats (5 lines), the second with > ZFS stats (6 lines). The text describes the 'top' heading as being 5 or 6 > lines. So these two header formats are the two users will encounter, > depending on their use or non-use of ZFS. If intentional, it's a bit misleading. Better to show just one more realistically and note that the output will vary depending on the individual system. It does not seem necessary mention ZFS specifically. From owner-freebsd-doc@FreeBSD.ORG Sun Mar 2 17:40:28 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE0B26C9; Sun, 2 Mar 2014 17:40:28 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 15FA016B5; Sun, 2 Mar 2014 17:40:27 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s22HeQQY015735 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 2 Mar 2014 10:40:26 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s22HeQhC015732; Sun, 2 Mar 2014 10:40:26 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Sun, 2 Mar 2014 10:40:26 -0700 (MST) From: Warren Block To: Thomas Hoffmann Subject: Re: Processes and Daemons In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="3512871622-107515968-1393781935=:15729" Content-ID: X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 02 Mar 2014 10:40:26 -0700 (MST) Cc: dru@FreeBSD.org, freebsd-doc@freebsd.org, daniel dallmann X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 17:40:28 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --3512871622-107515968-1393781935=:15729 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; format=flowed Content-ID: On Sun, 2 Mar 2014, Warren Block wrote: > On Sun, 2 Mar 2014, Thomas Hoffmann wrote: > >> On Sat, Mar 1, 2014 at 4:10 PM, daniel dallmann >> wrote: >> >>> I was wondering if the output from top was displayed with two headers on >>> purpose? >>> >>> http://www.za.freebsd.org/doc/handbook/basics-processes.html >> >> >> I'm guessing yes. The first is without ZFS stats (5 lines), the second with >> ZFS stats (6 lines). The text describes the 'top' heading as being 5 or 6 >> lines. So these two header formats are the two users will encounter, >> depending on their use or non-use of ZFS. > > If intentional, it's a bit misleading. Better to show just one more > realistically and note that the output will vary depending on the individual > system. It does not seem necessary mention ZFS specifically. And now I see that it does mention ZFS conditionally. The second header has more detail, but the uptime has been moved more to the right than would show in a standard 80-column console. This patch provides a minimal change: Index: basics/chapter.xml =================================================================== --- basics/chapter.xml (revision 44101) +++ basics/chapter.xml (working copy) @@ -3034,13 +3034,7 @@ The output from &man.top.1; is similar: &prompt.user; top -last pid: 72257; load averages: 0.13, 0.09, 0.03 up 0+13:38:33 22:39:10 -47 processes: 1 running, 46 sleeping -CPU states: 12.6% user, 0.0% nice, 7.8% system, 0.0% interrupt, 79.7% idle -Mem: 36M Active, 5256K Inact, 13M Wired, 6312K Cache, 15M Buf, 408K Free -Swap: 256M Total, 38M Used, 217M Free, 15% Inuse - -last pid: 9609; load averages: 0.56, 0.45, 0.36 up 0+00:20:03 10:21:46 +last pid: 9609; load averages: 0.56, 0.45, 0.36 up 0+00:20:03 10:21:46 107 processes: 2 running, 104 sleeping, 1 zombie CPU: 6.2% user, 0.1% nice, 8.2% system, 0.4% interrupt, 85.1% idle Mem: 541M Active, 450M Inact, 1333M Wired, 4064K Cache, 1498M Free @@ -3068,9 +3062,9 @@ figures in the header relate to how many processes are running, how much memory and swap space has been used, and how much time the system is spending in different CPU states. If - the system has been formatted with the ZFS - file system, the ARC line provides an - indication of how much data was read from the memory cache + the ZFS + file system module has been loaded, an ARC line indicates + how much data was read from the memory cache instead of from disk. Below the header is a series of columns containing similar --3512871622-107515968-1393781935=:15729 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; NAME=hb-top.diff Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: ATTACHMENT; FILENAME=hb-top.diff SW5kZXg6IGJhc2ljcy9jaGFwdGVyLnhtbA0KPT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PQ0KLS0tIGJhc2ljcy9jaGFwdGVyLnhtbAkocmV2aXNpb24gNDQxMDEp DQorKysgYmFzaWNzL2NoYXB0ZXIueG1sCSh3b3JraW5nIGNvcHkpDQpAQCAt MzAzNCwxMyArMzAzNCw3IEBADQogICAgICAgPHBhcmE+VGhlIG91dHB1dCBm cm9tICZtYW4udG9wLjE7IGlzIHNpbWlsYXI6PC9wYXJhPg0KIA0KICAgICAg IDxzY3JlZW4+JnByb21wdC51c2VyOyA8dXNlcmlucHV0PnRvcDwvdXNlcmlu cHV0Pg0KLWxhc3QgcGlkOiA3MjI1NzsgIGxvYWQgYXZlcmFnZXM6ICAwLjEz LCAgMC4wOSwgIDAuMDMgICAgdXAgMCsxMzozODozMyAgMjI6Mzk6MTANCi00 NyBwcm9jZXNzZXM6ICAxIHJ1bm5pbmcsIDQ2IHNsZWVwaW5nDQotQ1BVIHN0 YXRlczogMTIuNiUgdXNlciwgIDAuMCUgbmljZSwgIDcuOCUgc3lzdGVtLCAg MC4wJSBpbnRlcnJ1cHQsIDc5LjclIGlkbGUNCi1NZW06IDM2TSBBY3RpdmUs IDUyNTZLIEluYWN0LCAxM00gV2lyZWQsIDYzMTJLIENhY2hlLCAxNU0gQnVm LCA0MDhLIEZyZWUNCi1Td2FwOiAyNTZNIFRvdGFsLCAzOE0gVXNlZCwgMjE3 TSBGcmVlLCAxNSUgSW51c2UNCi0NCi1sYXN0IHBpZDogIDk2MDk7ICBsb2Fk IGF2ZXJhZ2VzOiAgMC41NiwgIDAuNDUsICAwLjM2ICAgICAgICAgICAgICB1 cCAwKzAwOjIwOjAzICAxMDoyMTo0Ng0KK2xhc3QgcGlkOiAgOTYwOTsgIGxv YWQgYXZlcmFnZXM6ICAwLjU2LCAgMC40NSwgIDAuMzYgICAgdXAgMCswMDoy MDowMyAgMTA6MjE6NDYNCiAxMDcgcHJvY2Vzc2VzOiAyIHJ1bm5pbmcsIDEw NCBzbGVlcGluZywgMSB6b21iaWUNCiBDUFU6ICA2LjIlIHVzZXIsICAwLjEl IG5pY2UsICA4LjIlIHN5c3RlbSwgIDAuNCUgaW50ZXJydXB0LCA4NS4xJSBp ZGxlDQogTWVtOiA1NDFNIEFjdGl2ZSwgNDUwTSBJbmFjdCwgMTMzM00gV2ly ZWQsIDQwNjRLIENhY2hlLCAxNDk4TSBGcmVlDQpAQCAtMzA2OCw5ICszMDYy LDkgQEANCiAJZmlndXJlcyBpbiB0aGUgaGVhZGVyIHJlbGF0ZSB0byBob3cg bWFueSBwcm9jZXNzZXMgYXJlDQogCXJ1bm5pbmcsIGhvdyBtdWNoIG1lbW9y eSBhbmQgc3dhcCBzcGFjZSBoYXMgYmVlbiB1c2VkLCBhbmQgaG93DQogCW11 Y2ggdGltZSB0aGUgc3lzdGVtIGlzIHNwZW5kaW5nIGluIGRpZmZlcmVudCBD UFUgc3RhdGVzLiAgSWYNCi0JdGhlIHN5c3RlbSBoYXMgYmVlbiBmb3JtYXR0 ZWQgd2l0aCB0aGUgPGFjcm9ueW0+WkZTPC9hY3JvbnltPg0KLQlmaWxlIHN5 c3RlbSwgdGhlIDxsaXRlcmFsPkFSQzwvbGl0ZXJhbD4gbGluZSBwcm92aWRl cyBhbg0KLQlpbmRpY2F0aW9uIG9mIGhvdyBtdWNoIGRhdGEgd2FzIHJlYWQg ZnJvbSB0aGUgbWVtb3J5IGNhY2hlDQorCXRoZSA8YWNyb255bT5aRlM8L2Fj cm9ueW0+DQorCWZpbGUgc3lzdGVtIG1vZHVsZSBoYXMgYmVlbiBsb2FkZWQs IGFuIDxsaXRlcmFsPkFSQzwvbGl0ZXJhbD4gbGluZSBpbmRpY2F0ZXMNCisJ aG93IG11Y2ggZGF0YSB3YXMgcmVhZCBmcm9tIHRoZSBtZW1vcnkgY2FjaGUN CiAJaW5zdGVhZCBvZiBmcm9tIGRpc2suPC9wYXJhPg0KIA0KICAgICAgIDxw YXJhPkJlbG93IHRoZSBoZWFkZXIgaXMgYSBzZXJpZXMgb2YgY29sdW1ucyBj b250YWluaW5nIHNpbWlsYXINCg== --3512871622-107515968-1393781935=:15729-- From owner-freebsd-doc@FreeBSD.ORG Sun Mar 2 22:40:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E407463 for ; Sun, 2 Mar 2014 22:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3BB041158 for ; Sun, 2 Mar 2014 22:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s22Me1xN053504 for ; Sun, 2 Mar 2014 22:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s22Me14D053503; Sun, 2 Mar 2014 22:40:01 GMT (envelope-from gnats) Date: Sun, 2 Mar 2014 22:40:01 GMT Message-Id: <201403022240.s22Me14D053503@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Jilles Tjoelker Subject: Re: docs/166553: find(1): find -delete documentation is misleading X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Jilles Tjoelker List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 22:40:02 -0000 The following reply was made to PR docs/166553; it has been noted by GNATS. From: Jilles Tjoelker To: bug-followup@FreeBSD.org, rjk@greenend.org.uk Cc: Matthew Story Subject: Re: docs/166553: find(1): find -delete documentation is misleading Date: Sun, 2 Mar 2014 23:38:25 +0100 In PR docs/166553, Richard Kettlewell wrote: > The documentation for 'find -delete' includes the following remark: > It will not attempt to delete a filename with a "/" character in its > pathname relative to "." for security reasons. > This reflects a defensive test early in f_delete. However, the test > will not succeed, since find does not use FTS_NOCHDIR, so > entry->fts_accpath should never contain "/". > I suggest that this remark be deleted from the man page. In SVN r246628 and r253886 (both are in 10.0-RELEASE), I removed the two most common causes for the confusing error message about relative pathnames: if "." cannot be opened (except if find(1)'s own open succeeds but fts(3)'s open fails) and if an attempt is made to delete a pathname given as operand to find(1). The former now gives a clear error message and the latter is now allowed. -- Jilles Tjoelker From owner-freebsd-doc@FreeBSD.ORG Mon Mar 3 02:50:01 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE642D88; Mon, 3 Mar 2014 02:50:01 +0000 (UTC) Received: from mail-ve0-x22c.google.com (mail-ve0-x22c.google.com [IPv6:2607:f8b0:400c:c01::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 72AA81596; Mon, 3 Mar 2014 02:50:01 +0000 (UTC) Received: by mail-ve0-f172.google.com with SMTP id jx11so3093804veb.31 for ; Sun, 02 Mar 2014 18:50:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=X9ugnC6iJGbQPlFfoelr/QRuTu7VBfwAyjLxthmyA2g=; b=mRSUKLut8hXzdcPBt57LmT1ZcMb6ooIvZM3YOuptOcNzzBeoATB4XbsDWjCWJ/DwHa 1iJzIUVxyZQtXCmRlNk/TU/go4JIPVFq3n1wM9v5HSNxqnbL2yeJ5I0Hfzze0Crh3Kdw ne4MKmCpM2twPyWlSYh5d67qf9K6c65vX8whbzFBvchdf0l47/8MndhXJzLLViH4Mav4 M82K6VqQjZ5vYq2zdWNRz9XovxTd0etPgxzzZGAJwKGJQjASplRuZle1GCLCjGvnYnz8 1T8xAaxPtXJWMGNVPpKfTqk/+ynOCyQj3L84thTmLp+Dc2O5PVOehEFFYw+eO3PbLALQ x+KQ== MIME-Version: 1.0 X-Received: by 10.220.99.72 with SMTP id t8mr15013382vcn.10.1393815000183; Sun, 02 Mar 2014 18:50:00 -0800 (PST) Received: by 10.58.115.103 with HTTP; Sun, 2 Mar 2014 18:50:00 -0800 (PST) Received: by 10.58.115.103 with HTTP; Sun, 2 Mar 2014 18:50:00 -0800 (PST) In-Reply-To: References: Date: Sun, 2 Mar 2014 20:50:00 -0600 Message-ID: Subject: Re: Processes and Daemons From: daniel dallmann To: Warren Block Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: dru@freebsd.org, freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Mar 2014 02:50:02 -0000 Yes, that's great. On Mar 2, 2014 11:40 AM, "Warren Block" wrote: > On Sun, 2 Mar 2014, Warren Block wrote: > > On Sun, 2 Mar 2014, Thomas Hoffmann wrote: >> >> On Sat, Mar 1, 2014 at 4:10 PM, daniel dallmann >> >wrote: >>> >>> I was wondering if the output from top was displayed with two headers on >>>> purpose? >>>> >>>> http://www.za.freebsd.org/doc/handbook/basics-processes.html >>>> >>> >>> >>> I'm guessing yes. The first is without ZFS stats (5 lines), the second >>> with >>> ZFS stats (6 lines). The text describes the 'top' heading as being 5 or 6 >>> lines. So these two header formats are the two users will encounter, >>> depending on their use or non-use of ZFS. >>> >> >> If intentional, it's a bit misleading. Better to show just one more >> realistically and note that the output will vary depending on the >> individual system. It does not seem necessary mention ZFS specifically. >> > > And now I see that it does mention ZFS conditionally. The second header > has more detail, but the uptime has been moved more to the right than would > show in a standard 80-column console. > > This patch provides a minimal change: > > Index: basics/chapter.xml > =================================================================== > --- basics/chapter.xml (revision 44101) > +++ basics/chapter.xml (working copy) > @@ -3034,13 +3034,7 @@ > The output from &man.top.1; is similar: > > &prompt.user; top > -last pid: 72257; load averages: 0.13, 0.09, 0.03 up 0+13:38:33 > 22:39:10 > -47 processes: 1 running, 46 sleeping > -CPU states: 12.6% user, 0.0% nice, 7.8% system, 0.0% interrupt, 79.7% > idle > -Mem: 36M Active, 5256K Inact, 13M Wired, 6312K Cache, 15M Buf, 408K Free > -Swap: 256M Total, 38M Used, 217M Free, 15% Inuse > - > -last pid: 9609; load averages: 0.56, 0.45, 0.36 up > 0+00:20:03 10:21:46 > +last pid: 9609; load averages: 0.56, 0.45, 0.36 up 0+00:20:03 > 10:21:46 > 107 processes: 2 running, 104 sleeping, 1 zombie > CPU: 6.2% user, 0.1% nice, 8.2% system, 0.4% interrupt, 85.1% idle > Mem: 541M Active, 450M Inact, 1333M Wired, 4064K Cache, 1498M Free > @@ -3068,9 +3062,9 @@ > figures in the header relate to how many processes are > running, how much memory and swap space has been used, and how > much time the system is spending in different CPU states. If > - the system has been formatted with the ZFS > - file system, the ARC line provides an > - indication of how much data was read from the memory cache > + the ZFS > + file system module has been loaded, an ARC line > indicates > + how much data was read from the memory cache > instead of from disk. > > Below the header is a series of columns containing similar From owner-freebsd-doc@FreeBSD.ORG Mon Mar 3 06:06:33 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 930FAB1D; Mon, 3 Mar 2014 06:06:33 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6735DC79; Mon, 3 Mar 2014 06:06:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2366XiR001186; Mon, 3 Mar 2014 06:06:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2366XCa001184; Mon, 3 Mar 2014 06:06:33 GMT (envelope-from linimon) Date: Mon, 3 Mar 2014 06:06:33 GMT Message-Id: <201403030606.s2366XCa001184@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: docs/187215: Want to update Russian FreeBSD Handbook translation, how to do that? X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Mar 2014 06:06:33 -0000 Synopsis: Want to update Russian FreeBSD Handbook translation, how to do that? Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Mon Mar 3 06:06:13 UTC 2014 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=187215 From owner-freebsd-doc@FreeBSD.ORG Mon Mar 3 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E2D5BF5 for ; Mon, 3 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F5588D1 for ; Mon, 3 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s23B64bu007604 for ; Mon, 3 Mar 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s23B64n1007602 for freebsd-doc@FreeBSD.org; Mon, 3 Mar 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 3 Mar 2014 11:06:04 GMT Message-Id: <201403031106.s23B64n1007602@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Mar 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/187215 doc Want to update Russian FreeBSD Handbook translation, h o docs/187142 doc The Handbook (chapter 15.4) does not mention /etc/jail o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186625 doc Handbook rebuilding "world" upgrade procedure wrong me o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc Add an ipfilter rc.conf option in handbook for IPv6 o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178286 doc [PATCH] document the LOCAL_* vars in build(7) o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/178119 doc [ports] Porter's handbook lacks examples for using Opt o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172743 doc IPv6 handbooks lacks info about accepting router adver o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168814 doc [patch] remove `d` negative pointer EINVAL requirement o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong o docs/121585 doc [handbook] Wrong multicast specification s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/78480 doc Networked printer setup unnecessarily complex in handb o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) s docs/20028 doc ASCII docs should reflect tags in the sourc 262 problems total. From owner-freebsd-doc@FreeBSD.ORG Tue Mar 4 02:50:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7714146 for ; Tue, 4 Mar 2014 02:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 949CF248 for ; Tue, 4 Mar 2014 02:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s242o0bo017795 for ; Tue, 4 Mar 2014 02:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s242o00h017794; Tue, 4 Mar 2014 02:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 4 Mar 2014 02:50:00 GMT Resent-Message-Id: <201403040250.s242o00h017794@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Weber Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD202F5A for ; Tue, 4 Mar 2014 02:45:21 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AD6F2216 for ; Tue, 4 Mar 2014 02:45:21 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s242jLwG074851 for ; Tue, 4 Mar 2014 02:45:21 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s242jLk4074850; Tue, 4 Mar 2014 02:45:21 GMT (envelope-from nobody) Message-Id: <201403040245.s242jLk4074850@cgiserv.freebsd.org> Date: Tue, 4 Mar 2014 02:45:21 GMT From: Alex Weber To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187241: Small number of spelling mistakes X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 02:50:00 -0000 >Number: 187241 >Category: docs >Synopsis: Small number of spelling mistakes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 04 02:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Alex Weber >Release: >Organization: >Environment: >Description: There are a small number of spelling mistakes in the Porter's Handbook, the Handbook, and the FAQ. The attached diff patches them. >How-To-Repeat: >Fix: See attached patch. Patch attached with submission follows: Index: en_US.ISO8859-1/books/dev-model/book.xml =================================================================== --- en_US.ISO8859-1/books/dev-model/book.xml (revision 44112) +++ en_US.ISO8859-1/books/dev-model/book.xml (working copy) @@ -1637,7 +1637,7 @@ As the requests are prioritised by the individual developers on the basis of doing what they find interesting, necessary or are - funded to do, there is no overall strategy or priorisation of + funded to do, there is no overall strategy or prioritisation of what requests to regard as requirements and following up their correct implementation. However, most developers have some shared vision of what issues are more important, and they can Index: en_US.ISO8859-1/books/faq/book.xml =================================================================== --- en_US.ISO8859-1/books/faq/book.xml (revision 44112) +++ en_US.ISO8859-1/books/faq/book.xml (working copy) @@ -1559,7 +1559,7 @@ Microcode is a method of programmatically - implementating hardware level instructions. This allows + implementing hardware level instructions. This allows for CPU bugs to be fixed without replacing the on board chip. Install sysutils/devcpu-data, @@ -2960,7 +2960,7 @@ Long answer: Soft Updates has two characteristics that may be undesirable on certain - paritions. First, a Soft Updates + partitions. First, a Soft Updates partition has a small chance of losing data during a system crash. (The partition will not be corrupted; the data will simply be lost.) Second, Soft Updates can cause temporary Index: en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml =================================================================== --- en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml (revision 44112) +++ en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml (working copy) @@ -959,7 +959,7 @@ XML context. - Parameter entity definitons are similar to those for + Parameter entity definitions are similar to those for general entities. However, parameter entries are included with %entity-name;. Index: en_US.ISO8859-1/books/handbook/disks/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/disks/chapter.xml (revision 44112) +++ en_US.ISO8859-1/books/handbook/disks/chapter.xml (working copy) @@ -3215,7 +3215,7 @@ Swap partitions are not encrypted by default and should be cleared of any sensitive data before continuing. To - overwrite the current swap parition with random garbage, + overwrite the current swap partition with random garbage, execute the following command: &prompt.root; dd if=/dev/random of=/dev/ad0s1b bs=1m Index: en_US.ISO8859-1/books/handbook/linuxemu/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/linuxemu/chapter.xml (revision 44112) +++ en_US.ISO8859-1/books/handbook/linuxemu/chapter.xml (working copy) @@ -81,7 +81,7 @@ Ports Collection - &linux; libararies are not installed on &os; by default + &linux; libraries are not installed on &os; by default and &linux; binary compatibility is not enabled by default. &linux; libraries can be installed using the &os; Ports Collection. Alternately, &linux; libraries can be installed Index: en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml =================================================================== --- en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml (revision 44112) +++ en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml (working copy) @@ -2627,7 +2627,7 @@ When specific versions or specific major and minor revisions of a distfile should be checked. For example, if only version 0.6.4 should be - monitored because newer versions have compatablity issues + monitored because newer versions have compatibility issues with &os;, add: PORTSCOUT= limit:^0\.6\.4 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Mar 4 15:40:03 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 480A4D63 for ; Tue, 4 Mar 2014 15:40:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D16E33A for ; Tue, 4 Mar 2014 15:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s24Fe2K0071187 for ; Tue, 4 Mar 2014 15:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s24Fe2cs071159; Tue, 4 Mar 2014 15:40:02 GMT (envelope-from gnats) Date: Tue, 4 Mar 2014 15:40:02 GMT Message-Id: <201403041540.s24Fe2cs071159@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Taras Korenko Subject: Re: docs/187215: Want to update Russian FreeBSD Handbook translation, how to do that? X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Taras Korenko List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 15:40:03 -0000 The following reply was made to PR docs/187215; it has been noted by GNATS. From: Taras Korenko To: bug-followup@FreeBSD.org, blueboar_2@rambler.ru Cc: Subject: Re: docs/187215: Want to update Russian FreeBSD Handbook translation, how to do that? Date: Tue, 4 Mar 2014 17:23:28 +0200 The best way would be to get PRs, containing (svn)diffs relative to (outdated) XML source files. -- WBR, Taras Korenko From owner-freebsd-doc@FreeBSD.ORG Tue Mar 4 16:31:49 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C148764 for ; Tue, 4 Mar 2014 16:31:49 +0000 (UTC) Received: from eu1sys200aog101.obsmtp.com (eu1sys200aog101.obsmtp.com [207.126.144.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 89E90A65 for ; Tue, 4 Mar 2014 16:31:48 +0000 (UTC) Received: from mail-we0-f177.google.com ([74.125.82.177]) (using TLSv1) by eu1sys200aob101.postini.com ([207.126.147.11]) with SMTP ID DSNKUxX/7bSwsERlHzKRfeDrY8Sf4kiSnsm2@postini.com; Tue, 04 Mar 2014 16:31:48 UTC Received: by mail-we0-f177.google.com with SMTP id u57so3355105wes.36 for ; Tue, 04 Mar 2014 08:31:41 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:message-id:to:subject:reply-to; bh=bLt4jFFjxmUFVAyKXjIph08xueEOY+1/CLIDLu4qqdw=; b=f2mZnawwZP1600cArq2ganj+QmN7W+E9cJBlQNdCyzr2jhsKiDnqZ+ZTNBNbeg0s+L r+VZLObUolGc5+Fi1DD1KBR718E+mFC5Zi1vNUCZ0pf4kGjAO0DDZXZfVBry/8gdotG0 oGsY0nIa7jN3JXfM8isDlWai6yyuRKZtelnu49T9KQQ+0lRCNSzlMA/7jAXPCQkK4DSJ 116TZ8xaT7xYJ14CkhCFZZL8+NP+2v0aSAKBYIo6KvO5YEVXAoRBoHOxQVoK0Piv00Q6 VEfjEP1upH84xOSkiOVEOcLKhZ5TMrXttmC8QnfDrjaopQNtygtnrO1HEFnF4I6YbZHC 4V0g== X-Gm-Message-State: ALoCoQlEvUyI+DgQuqmPEEcsyy1L0ma0GO9/eNYvVit8Pd0jwEmbpQG9e0LcY6MSOyfxcbDaW8MohVmC8OhS8ZmbuRKcDe3L9Ul4MQd9HxaYIVvICdrjIcuQGtWCgMVI6XSlZ9mrg+tEP8Wt9vb4P4Wc1JUhP7VrXd9Mr7eCi4XIgJTU3SvBqyA= X-Received: by 10.194.8.196 with SMTP id t4mr547367wja.49.1393950701607; Tue, 04 Mar 2014 08:31:41 -0800 (PST) X-Received: by 10.194.8.196 with SMTP id t4mr547359wja.49.1393950701542; Tue, 04 Mar 2014 08:31:41 -0800 (PST) Received: from mech-cluster241.men.bris.ac.uk (mech-cluster241.men.bris.ac.uk. [137.222.187.241]) by mx.google.com with ESMTPSA id uq2sm54363303wjc.5.2014.03.04.08.31.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 04 Mar 2014 08:31:40 -0800 (PST) Sender: Anton Shterenlikht Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.7/8.14.6) with ESMTP id s24GVc93043549 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Tue, 4 Mar 2014 16:31:38 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.7/8.14.6/Submit) id s24GVcMj043548 for freebsd-doc@freebsd.org; Tue, 4 Mar 2014 16:31:38 GMT (envelope-from mexas) Date: Tue, 04 Mar 2014 08:31:40 -0800 (PST) From: Anton Shterenlikht Message-Id: <201403041631.s24GVcMj043548@mech-cluster241.men.bris.ac.uk> To: freebsd-doc@freebsd.org Subject: close my old PR X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: mexas@bris.ac.uk List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 16:31:49 -0000 Please close this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=docs/136712 I'm no longer interested in the topic. I was never picked up, so probably nobody else is interested either. Thanks Anton From owner-freebsd-doc@FreeBSD.ORG Tue Mar 4 16:41:30 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8595AA24 for ; Tue, 4 Mar 2014 16:41:30 +0000 (UTC) Received: from mail-oa0-x22b.google.com (mail-oa0-x22b.google.com [IPv6:2607:f8b0:4003:c02::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5105AB2F for ; Tue, 4 Mar 2014 16:41:30 +0000 (UTC) Received: by mail-oa0-f43.google.com with SMTP id g12so8662331oah.16 for ; Tue, 04 Mar 2014 08:41:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=WSVnjIf97kLpfKQAqQMaUXIVloGN/wSIXsGRmHqC5TQ=; b=v/gdcP+2B5iL+udW4yT9eWe66dJCgzKLzWslrB9axVSWjU3a+c5bmctzD/GFbSTzQZ BsUJuoICKnUB7kJbiEz6L3sM2HxY4/AAHYDwqKfp9/z5lRpWjxNWeK/d4Q5l1TFgsVB1 +VmH8yyj/FwtOSUVViXiBGheILj8UV7T+aFXAsc74v3cZOmTTyAqUmRTofpO1s3pqwqF raCNqphdvpg0y2E9jNtwcGHqEhSDYW2gOjLR9BKxDDc3lc+m0Xmi3GmawrLOp7DY6Cfs c+Z9lmo03TjBwHJnB0HX9uXdwvsTwNxl8L6uHzQuDRoWBEaApD+gsWMZHmhBiV7dyLUt /uKA== MIME-Version: 1.0 X-Received: by 10.60.134.200 with SMTP id pm8mr477076oeb.40.1393951289634; Tue, 04 Mar 2014 08:41:29 -0800 (PST) Received: by 10.182.235.47 with HTTP; Tue, 4 Mar 2014 08:41:29 -0800 (PST) Date: Tue, 4 Mar 2014 11:41:29 -0500 Message-ID: Subject: typo From: James Riggs To: freebsd-doc@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 16:41:30 -0000 looks like there is a small problem here https://www.freebsd.org/doc/handbook/x-config.html section 6.4.2 on the lines hald_enable="YES" dbus_enable="YES" the underscores are not visible on my browser (chrome on windows) not sure if this is an issue with the font or something From owner-freebsd-doc@FreeBSD.ORG Tue Mar 4 21:05:24 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB6C98C1 for ; Tue, 4 Mar 2014 21:05:24 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 08C81AC0 for ; Tue, 4 Mar 2014 21:05:23 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s24L5MnS042669 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 4 Mar 2014 14:05:22 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s24L5MRj042666; Tue, 4 Mar 2014 14:05:22 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Tue, 4 Mar 2014 14:05:22 -0700 (MST) From: Warren Block To: James Riggs Subject: Re: typo In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Tue, 04 Mar 2014 14:05:22 -0700 (MST) Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 21:05:25 -0000 On Tue, 4 Mar 2014, James Riggs wrote: > looks like there is a small problem here > https://www.freebsd.org/doc/handbook/x-config.html > > section 6.4.2 > > on the lines > hald_enable="YES" > dbus_enable="YES" > > the underscores are not visible on my browser (chrome on windows) > not sure if this is an issue with the font or something A font rendering problem, but where? On FreeBSD, Firefox and Chrome work. Midori does not show the underlines, unless it is zoomed in four or five steps (it does not show an actual zoom number). On Windows, Firefox shows the underline on the first line. If I force it to use my preferred fonts, it shows only the underline on the second line. Chrome does as reported, not showing either. IE 11 shows both underlines. If I zoom in, the underlines appear in Chrome at 125%. The question is whether this is something we can fix in the HTML or CSS. From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 03:23:24 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A03A6E82; Wed, 5 Mar 2014 03:23:24 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 752A967F; Wed, 5 Mar 2014 03:23:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s253NOBF005153; Wed, 5 Mar 2014 03:23:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s253NNTR005152; Wed, 5 Mar 2014 03:23:23 GMT (envelope-from linimon) Date: Wed, 5 Mar 2014 03:23:23 GMT Message-Id: <201403050323.s253NNTR005152@freefall.freebsd.org> To: mexas@bristol.ac.uk, linimon@FreeBSD.org, freebsd-doc@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: docs/136712: [handbook] [patch] draft new section on gmirror per partition X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 03:23:24 -0000 Synopsis: [handbook] [patch] draft new section on gmirror per partition State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Mar 5 03:23:01 UTC 2014 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=136712 From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 07:13:32 2014 Return-Path: Delivered-To: www@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83F886BF for ; Wed, 5 Mar 2014 07:13:32 +0000 (UTC) Received: from out3139-253.mail.aliyun.com (out3139-253.mail.aliyun.com [42.120.139.253]) by mx1.freebsd.org (Postfix) with ESMTP id 08068F2F for ; Wed, 5 Mar 2014 07:13:30 +0000 (UTC) X-Alimail-AntiSpam: AC=CONTINUE; BC=0.2056367|-1; FP=8870500602765678140|425|7|390|0|-1|-1|-1; HT=r41g06025; MF=sales9@icelectronicshk.com; PH=DS; RN=1; RT=1; SR=0; Received: from pynlnft(mailfrom:sales9@icelectronicshk.com ip:61.143.174.96) by smtp.aliyun-inc.com(10.147.38.254); Wed, 05 Mar 2014 15:08:01 +0800 Message-ID: From: "Parts Components Ltd" To: Subject: Electronic Components sell Date: Wed, 5 Mar 2014 15:07:48 +0800 Mime-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 14.0.8117.0416 X-MimeOLE: Produced By Microsoft MimeOLE V14.0.8117.0416 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: peter@partscomponentshk.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 07:13:32 -0000 DQpEZWFyIEN1c3RvbWVyLA0KDQpIb3cgYXJlIHlvdT8NCg0KV2UgYXJlIGRpc3RyaWJ1dG9yIG9m Og0KDQpJQyhJbnRlZ3JhdGVkIENpcmN1aXQpIDpTT1QsU09QL1NNRCxESVAsUUZOLFBMQ0MsUUZQ LEJHQQ0KICAgIEFEICAgICAgICBCQiAgICAgICAgVEkgICAgICAgIE5TICAgICAgTUFYSU0gICBJ TlRFUlNJTCBBTFRFUkEgICBYSUxJTlggTUlDUk9DSElQIEFUTUVMICAgIElEVCAgICAgTElORUFS ICANCg0KDQpEaW9kZXMvVHJhbnNpc3RvcnM6U09ELFNNQixTT1QtMjMsRE8tNDEsRE8tMjAxQUQs RE8tMjE0QUEsVE8tMjUyLFRPLTI1MSxUTy0yNjMsVE8tMjIwLFRPLTI0Nw0KICBESU9ERVMgICAg ICAgT04gICAgICAgICBTVCAgICAgICAgIE5YUCAgICAgIFZJU0hBWSAgICAgSVIgICAgSU5GSU5F T04gICBGU0MgICAgVE9TSElCQSAgIE5FQyAgICAgIElYWVMgICAgICBBUFQgICANCg0KDQpDYXBh Y2l0b3IvUmVzaXN0b3I6VGFudGFsdW0gQ2FwYWNpdG9ycyxDaGlwIENlcmFtaWMgQ2FwYWNpdG9y cyxBbHVtaW51bSBDYXBhY2l0b3JzLENoaXAgUmVzaXN0b3JzLFRocm91Z2gtSG9sZSBSZXNpc3Rv cnMNCkFWWEtFTUVUWUFHRU9UREtTQU1TVU5HTVVSQVRBVklTSEFZRVBDT1NTQU5ZT1BBTkFTT05J Q05JQ0hJQ09OTklQUE9ODQoNCg0KQ29ubmVjdG9ycyxNb2R1bGUsRGlvZGVzIExFRCxoYXJkLXRv LWZpbmQsc2hvcnRhZ2UgYW5kIG9ic29sZXRlIHBhcnRzLg0KDQpBY2NvcmRpbmcgdG8geW91ciBy ZXF1aXJlbWVudHMsIHdlIGhhdmUgbWFkZSB0aGUgYmVzdCBxdW90YXRpb24gZm9yIHlvdS4NCg0K DQpJZiB5b3UgZG9uJ3Qgd2FudCB0byByZWNlaXZlIHRoaXMgbWFpbCwgcGxzIHJldHVybiB3aXRo ICJyZW1vdmUiIG9uIHRoZSBzdWJqZWN0IGxpbmUuDQpCZXN0IFJlZ2FyZHMsDQpQZXRlcg0KDQoN ClBhcnRzIENvbXBvbmVudHMgTHRkDQoxOEYgVGlhbmxlIEJ1aWxkaW5nLEJ1amkgUm9hZDEwMjEs THVvaHUgRGlzdCxTaGVuemhlbixHdWFuZ2RvbmcsQ04sIDUxODAxOQ0KVGVsOiAgKzg2LTc1NS0y NTIwMDU2Nw0KRmF4OiArODYtNzU1LTI1ODUwNjE0DQpRUTogICAgICAgODU3MjcyODM4DQpTa3lw ZTogICBwYXJ0c2NvbXBvbmVudHNwZXRlcg0KTVNOOiAgICAgIHBhcnRzY29tcG9uZW50c3BldGVy QGhvdG1haWwuY29tDQpFLW1haWw6ICAgcGV0ZXJAcGFydHNjb21wb25lbnRzaGsuY29tDQpXZWJz aXRlOnd3dy5wYXJ0c2NvbXBvbmVudHNoay5jb20= From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 10:01:00 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 767B5EE2 for ; Wed, 5 Mar 2014 10:01:00 +0000 (UTC) Received: from vps798.lnx.vps.isx.net.nz (vps798.lnx.vps.isx.net.nz [111.65.227.173]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3B0F5335 for ; Wed, 5 Mar 2014 10:00:59 +0000 (UTC) Received: by vps798.lnx.vps.isx.net.nz (Postfix, from userid 48) id 1A4817ED54A4; Wed, 5 Mar 2014 22:53:29 +1300 (NZDT) To: doc@freebsd.org Subject: Fw: Welcome X-PHP-Originating-Script: 48:themesBJh1.php From: "Rosetta Gallegos" X-Priority: 3 (Normal) Message-Id: <20140305095329.1A4817ED54A4@vps798.lnx.vps.isx.net.nz> Date: Wed, 5 Mar 2014 22:53:29 +1300 (NZDT) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Rosetta Gallegos List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 10:01:00 -0000 Ha ha Pornstar julie robins fucking in garden movies [1]http://priutzorge.ru/modules/mod_ariimageslidersa/aee.html References 1. http://priutzorge.ru/modules/mod_ariimageslidersa/aee.html From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 13:10:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC0F3231 for ; Wed, 5 Mar 2014 13:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 857AD7C1 for ; Wed, 5 Mar 2014 13:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s25DA07C098339 for ; Wed, 5 Mar 2014 13:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s25DA0P9098338; Wed, 5 Mar 2014 13:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 5 Mar 2014 13:10:00 GMT Resent-Message-Id: <201403051310.s25DA0P9098338@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vladimir Romanov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01E278F for ; Wed, 5 Mar 2014 13:01:06 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E1E12758 for ; Wed, 5 Mar 2014 13:01:05 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s25D155D056257 for ; Wed, 5 Mar 2014 13:01:05 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s25D15AK056256; Wed, 5 Mar 2014 13:01:05 GMT (envelope-from nobody) Message-Id: <201403051301.s25D15AK056256@cgiserv.freebsd.org> Date: Wed, 5 Mar 2014 13:01:05 GMT From: Vladimir Romanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187278: New Russian translation of audit chapter in handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 13:10:00 -0000 >Number: 187278 >Category: docs >Synopsis: New Russian translation of audit chapter in handbook >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 05 13:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Vladimir Romanov >Release: >Organization: Kurgan TV Centre >Environment: >Description: File with diff attached. It is new Russian translation of audit chapter of handbook, as of last SVN revision 43688. >How-To-Repeat: >Fix: Patch attached with submission follows: 8c8 < Original revision: r30208 --- > Original revision: r43688 16c16,18 < --- > xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0" > xml:id="audit"> 19c21,33 < TomRhodesá×ÔÏÒ --- > > > Tom > Rhodes > > á×ÔÏÒ > > > > Robert > Watson > > 22c36,49 < äÅÎÉÓâÁÒÏ×ðÅÒÅ×ÏÄ ÎÁ ÒÕÓÓËÉÊ ÑÚÙË: --- > > > äÅÎÉÓ > âÁÒÏ× > > ðÅÒÅ×ÏÄ ÎÁ ÒÕÓÓËÉÊ ÑÚÙË: > > > > ÷ÌÁÄÉÍÉÒ > òÏÍÁÎÏ× > > ïÂÎÏ×ÌÅÎÉÅ ÐÅÒÅ×ÏÄÁ: > 25c52 < --- > 33,36c60,62 < &os; 6.2-RELEASE É ÂÏÌÅÅ ÐÏÚÄÎÉÅ ×ÅÒÓÉÉ &os; < ×ËÌÀÞÁÀÔ × ÓÅÂÑ ÐÏÄÄÅÒÖËÕ ÁÕÄÉÔÁ ÓÏÂÙÔÉÊ ÂÅÚÏÐÁÓÎÏÓÔÉ. < áÕÄÉÔ ÓÏÂÙÔÉÊ ÄÁÅÔ ÎÁÄÅÖÎÙÊ É ÔÏÞÎÙÊ ÓÐÏÓÏ ÄÌÑ < ÐÒÏÔÏËÏÌÉÒÏ×ÁÎÉÑ ÒÁÚÌÉÞÎÙÈ ÓÏÂÙÔÉÊ, Ó×ÑÚÁÎÎÙÈ Ó ÂÅÚÏÐÁÓÎÏÓÔØÀ, --- > ïÐÅÒÁÃÉÏÎÎÁÑ ÓÉÓÔÅÍÁ &os; ×ËÌÀÞÁÅÔ × ÓÅÂÑ ÐÏÄÄÅÒÖËÕ ÁÕÄÉÔÁ > ÓÏÂÙÔÉÊ ÂÅÚÏÐÁÓÎÏÓÔÉ. áÕÄÉÔ ÓÏÂÙÔÉÊ ÄÁÅÔ ÎÁÄÅÖÎÙÊ É ÔÏÞÎÙÊ ÓÐÏÓÏ > ÄÌÑ ÐÒÏÔÏËÏÌÉÒÏ×ÁÎÉÑ ÒÁÚÌÉÞÎÙÈ ÓÏÂÙÔÉÊ, Ó×ÑÚÁÎÎÙÈ Ó ÂÅÚÏÐÁÓÎÏÓÔØÀ, 87,107c113,128 < òÅÁÌÉÚÁÃÉÑ ÁÕÄÉÔÁ × &os; 6.2 - ÜËÓÐÅÒÉÍÅÎÔÁÌØÎÁÑ, ÉÓÐÏÌØÚÏ×ÁÎÉÅ < ÅÅ × ÒÅÁÌØÎÙÈ ÚÁÄÁÞÁÈ ÄÏÌÖÎÏ ÐÒÏÉÚ×ÏÄÉÔØÓÑ ÔÏÌØËÏ ÐÏÓÌÅ < ×ÎÉÍÁÔÅÌØÎÏÇÏ ÏÚÎÁËÏÍÌÅÎÉÑ ÓÏ ×ÓÅÍÉ ÒÉÓËÁÍÉ, Ë ËÏÔÏÒÙÍ ÐÒÉ×ÏÄÉÔ < ÉÓÐÏÌØÚÏ×ÁÎÉÅ ÜËÓÐÅÒÉÍÅÎÔÁÌØÎÏÇÏ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ. ë < ÉÚ×ÅÓÔÎÙÍ ÏÇÒÁÎÉÞÅÎÉÑÍ ÏÔÎÏÓÉÔÓÑ É ÔÏÔ ÆÁËÔ, ÞÔÏ ÎÅ ×ÓÅ ÓÏÂÙÔÉÑ < × ÎÁÓÔÏÑÝÉÊ ÍÏÍÅÎÔ ÐÒÏÔÏËÏÌÉÒÕÅÍÙ. îÁÐÒÉÍÅÒ, ÎÅËÏÔÏÒÙÅ ÍÅÈÁÎÉÚÍÙ < ×ÈÏÄÁ × ÓÉÓÔÅÍÕ (X11-ÏÓÎÏ×ÁÎÎÙÅ ÏËÏÎÎÙÅ ÍÅÎÅÄÖÅÒÙ, ÍÎÏÇÏÅ < ÐÒÏÇÒÁÍÍÎÏÅ ÏÂÅÓÐÅÞÅÎÉÅ ÏÔ ÓÔÏÒÏÎÎÉÈ ÐÒÏÉÚ×ÏÄÉÔÅÌÅÊ) ÎÅ < ÓËÏÎÆÉÇÕÒÉÒÏ×ÁÎÙ ÄÌÑ ÐÒÏÔÏËÏÌÉÒÏ×ÁÎÉÑ ÓÏÂÙÔÉÊ ×ÈÏÄÁ × ÓÉÓÔÅÍÕ ÞÅÒÅÚ < ÐÏÄÓÉÓÔÅÍÕ ÁÕÄÉÔÁ. < < < < éÓÐÏÌØÚÏ×ÁÎÉÅ ÓÉÓÔÅÍÙ × ÁÕÄÉÔÁ ÍÏÖÅÔ ÐÒÉ×ÅÓÔÉ Ë ÇÅÎÅÒÉÒÏ×ÁÎÉÀ < ÏÇÒÏÍÎÙÈ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ×: ÉÈ ÒÁÚÍÅÒ ÎÁ ÓÉÌØÎÏ ÚÁÇÒÕÖÅÎÎÙÈ ÓÅÒ×ÅÒÁÈ < × ÎÅËÏÔÏÒÙÈ ËÏÎÆÉÇÕÒÁÃÉÑÈ ÍÏÖÅÔ ÄÏÓÔÉÇÁÔØ ÎÅÓËÏÌØËÉÈ ÇÉÇÁÂÁÊÔ × ÎÅÄÅÌÀ. < áÄÍÉÎÉÓÔÒÁÔÏÒÙ ÄÏÌÖÎÙ ×ÎÉÍÁÔÅÌØÎÏ ÓÌÅÄÉÔØ ÚÁ ÄÉÓËÏ×ÙÍ ÐÒÏÓÔÒÁÎÓÔ×ÏÍ < × ÒÁÚÄÅÌÅ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ. îÁÐÒÉÍÅÒ, ÒÅËÏÍÅÎÄÕÅÔÓÑ ×ÙÄÅÌÉÔØ < ÏÔÄÅÌØÎÙÊ ÒÁÚÄÅÌ ÄÌÑ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ < /var/audit, ÞÔÏÂÙ ÐÅÒÅÐÏÌÎÅÎÉÅ ÒÁÚÄÅÌÁ ÁÕÄÉÔÁ < ÎÅ ×ÌÉÑÌÏ ÎÁ ÒÁÂÏÔÏÓÐÏÓÏÂÎÏÓÔØ ×ÓÅÊ ÏÓÔÁÌØÎÏÊ ÓÉÓÔÅÍÙ. --- > òÅÁÌÉÚÁÃÉÑ ÁÕÄÉÔÁ ÉÍÅÅÔ ÉÚ×ÅÓÔÎÙÅ ÏÇÒÁÎÉÞÅÎÉÑ, ÎÁÐÒÉÍÅÒ, > ÎÅ ×ÓÅ ÓÏÂÙÔÉÑ × ÎÁÓÔÏÑÝÉÊ ÍÏÍÅÎÔ ÐÒÏÔÏËÏÌÉÒÕÅÍÙ. > îÁÐÒÉÍÅÒ, ÎÅËÏÔÏÒÙÅ ÍÅÈÁÎÉÚÍÙ ×ÈÏÄÁ × ÓÉÓÔÅÍÕ (ïÓÎÏ×ÁÎÎÙÅ ÎÁ X11 > ÏËÏÎÎÙÅ ÍÅÎÅÄÖÅÒÙ, ÍÎÏÇÏÅ ÐÒÏÇÒÁÍÍÎÏÅ ÏÂÅÓÐÅÞÅÎÉÅ ÏÔ ÓÔÏÒÏÎÎÉÈ > ÐÒÏÉÚ×ÏÄÉÔÅÌÅÊ) ÎÅ ÓËÏÎÆÉÇÕÒÉÒÏ×ÁÎÙ ÄÌÑ ÐÒÏÔÏËÏÌÉÒÏ×ÁÎÉÑ ÓÏÂÙÔÉÊ > ×ÈÏÄÁ × ÓÉÓÔÅÍÕ ÞÅÒÅÚ ÐÏÄÓÉÓÔÅÍÕ ÁÕÄÉÔÁ. > éÓÐÏÌØÚÏ×ÁÎÉÅ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ ÍÏÖÅÔ ÐÒÉ×ÅÓÔÉ Ë ÇÅÎÅÒÉÒÏ×ÁÎÉÀ > ÏÇÒÏÍÎÙÈ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ×: ÉÈ ÒÁÚÍÅÒ ÎÁ ÓÉÌØÎÏ ÚÁÇÒÕÖÅÎÎÙÈ ÓÅÒ×ÅÒÁÈ > × ÎÅËÏÔÏÒÙÈ ËÏÎÆÉÇÕÒÁÃÉÑÈ ÍÏÖÅÔ ÄÏÓÔÉÇÁÔØ ÎÅÓËÏÌØËÉÈ ÇÉÇÁÂÁÊÔ × ÎÅÄÅÌÀ. > áÄÍÉÎÉÓÔÒÁÔÏÒÙ ÄÏÌÖÎÙ ÐÒÉÎÉÍÁÔØ ×Ï ×ÎÉÍÁÎÉÅ ÔÒÅÂÏ×ÁÎÉÑ > Ë ÄÉÓËÏ×ÏÍÕ ÐÒÏÓÔÒÁÎÓÔ×Õ ÄÌÑ ÎÁÇÒÕÖÅÎÎÙÈ ËÏÎÆÉÇÕÒÁÃÉÊ ÓÉÓÔÅÍÙ > ÁÕÄÉÔÁ. îÁÐÒÉÍÅÒ, ÒÅËÏÍÅÎÄÕÅÔÓÑ ×ÙÄÅÌÉÔØ ÏÔÄÅÌØÎÙÊ ÒÁÚÄÅÌ ÄÌÑ > ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ > /var/audit, > ÞÔÏÂÙ ÐÅÒÅÐÏÌÎÅÎÉÅ ÒÁÚÄÅÌÁ ÁÕÄÉÔÁ ÎÅ ×ÌÉÑÌÏ ÎÁ ÒÁÂÏÔÏÓÐÏÓÏÂÎÏÓÔØ > ×ÓÅÊ ÏÓÔÁÌØÎÏÊ ÓÉÓÔÅÍÙ. 113c134 < ëÌÀÞÅ×ÙÅ ÐÏÎÑÔÉÑ - ËÒÁÔËÉÊ ÓÌÏ×ÁÒØ. --- > ëÌÀÞÅ×ÙÅ ÐÏÎÑÔÉÑ × äÁÎÎÏÊ çÌÁ×Å. 116,118c137 < ËÌÀÞÅ×ÙÈ ÐÏÎÑÔÉÊ. üÔÏ ÎÕÖÎÏ ÄÌÑ ÔÏÇÏ, ÞÔÏÂÙ ÐÒÅÄÏÔ×ÒÁÔÉÔØ < ÎÅÄÏÒÁÚÕÍÅÎÉÑ, ËÏÔÏÒÙÅ ÍÏÇÕÔ ×ÏÚÎÉËÎÕÔØ ÉÚ-ÚÁ ÒÁÚÎÉÃÙ × ÔÒÁËÔÏ×ËÅ < ÎÅËÏÔÏÒÙÈ ÔÅÒÍÉÎÏ×. ÷ ÒÕÓÓËÏÊ ×ÅÒÓÉÉ ÄÏËÕÍÅÎÔÁ ÐÒÉ×ÏÄÑÔÓÑ --- > ËÌÀÞÅ×ÙÈ ÐÏÎÑÔÉÊ. ÷ ÒÕÓÓËÏÊ ×ÅÒÓÉÉ ÄÏËÕÍÅÎÔÁ ÐÒÉ×ÏÄÑÔÓÑ 125,128c144,145 < ÍÏÖÅÔ ÂÙÔØ ÚÁÎÅÓÅÎÏ × ÖÕÒÎÁÌ. áÄÍÉÎÉÓÔÒÁÔÏÒ ÍÏÖÅÔ ×ÙÂÉÒÁÔØ, < ËÁËÉÅ ÉÍÅÎÎÏ ÓÏÂÙÔÉÑ ÂÕÄÕÔ ÖÕÒÎÁÌÉÒÏ×ÁÔØÓÑ ÐÏÄÓÉÓÔÅÍÏÊ < ÁÕÄÉÔÁ. óÐÉÓÏË ×ÁÖÎÙÈ ÄÌÑ ÂÅÚÏÐÁÓÎÏÓÔÉ ÓÉÓÔÅÍÙ < ÓÏÂÙÔÉÊ ×ËÌÀÞÁÅÔ: ÓÏÚÄÁÎÉÅ ÆÁÊÌÁ, ÉÎÉÃÉÁÌÉÚÁÃÉÀ ÓÅÔÅ×ÏÇÏ --- > ÍÏÖÅÔ ÂÙÔØ ÚÁÎÅÓÅÎÏ × ÖÕÒÎÁÌ. ðÒÉÍÅÒÙ ×ÁÖÎÙÈ ÄÌÑ ÂÅÚÏÐÁÓÎÏÓÔÉ > ÓÉÓÔÅÍÙ ÓÏÂÙÔÉÊ ×ËÌÀÞÁÅÔ: ÓÏÚÄÁÎÉÅ ÆÁÊÌÁ, ÉÎÉÃÉÁÌÉÚÁÃÉÀ ÓÅÔÅ×ÏÇÏ 132c149,150 < É ÎÅ-ÐÒÉÐÉÓÙ×ÁÅÍÙÅ (non-attributable). ðÒÉÍÅÒ --- > É ÎÅ-ÐÒÉÐÉÓÙ×ÁÅÍÙÅ (non-attributable), ÅÓÌÉ > ÉÈ ÎÅÌØÚÑ ÏÔÎÅÓÔÉ Ë ËÏÎËÒÅÔÎÏÍÕ ÐÏÌØÚÏ×ÁÔÅÌÀ. ðÒÉÍÅÒ 134,135c152,153 < Á×ÔÏÒÉÚÁÃÉÉ ÐÏÌØÚÏ×ÁÔÅÌÑ, ÔÁËÏÅ, ËÁË ÎÅÕÄÁÞÎÙÊ ×ÈÏÄ ÐÏÌØÚÏ×ÁÔÅÌÑ < × ÓÉÓÔÅÍÕ. --- > ÁÕÔÅÎÔÉÆÉËÁÃÉÉ ÐÏÌØÚÏ×ÁÔÅÌÑ, ÔÁËÏÅ, ÎÁÐÒÉÍÅÒ, ÔÁËÏÅ, ËÁË > ÎÅÕÄÁÞÎÙÊ ×ÈÏÄ ÐÏÌØÚÏ×ÁÔÅÌÑ × ÓÉÓÔÅÍÕ. 139,147c157,162 < ëÌÁÓÓ (class): óÏÂÙÔÉÑ ÍÏÇÕÔ ÂÙÔØ < ÏÔÎÅÓÅÎÙ Ë ÏÄÎÏÍÕ ÉÌÉ ÂÏÌÅÅ ËÌÁÓÓÁÍ, ÏÂÙÞÎÏ ÏÓÎÏ×Ù×ÁÑÓØ < ÎÁ ËÁÔÅÇÏÒÉÉ ÓÏÂÙÔÉÑ: ÓÏÚÄÁÎÉÅ ÆÁÊÌÁ (fc), < ÄÏÓÔÕÐ Ë ÆÁÊÌÕ (fo), < ×ÙÐÏÌÎÅÎÉÅ ÆÁÊÌÁ (ex), ÓÏÂÙÔÉÑ < ×ÈÏÄÁ × ÓÉÓÔÅÍÕ É ×ÙÈÏÄÁ ÉÚ ÎÅÅ (lo). < éÓÐÏÌØÚÏ×ÁÎÉÅ ËÌÁÓÓÏ× ÐÏÚ×ÏÌÑÅÔ ÁÄÍÉÎÉÓÔÒÁÔÏÒÕ ÓÏÚÄÁ×ÁÔØ < ×ÙÓÏËÏÕÒÏ×ÎÅ×ÙÅ ÐÒÁ×ÉÌÁ ÁÕÄÉÔÁ ÂÅÚ ÕËÁÚÁÎÉÑ ËÏÎËÒÅÔÎÙÈ < ÏÐÅÒÁÃÉÊ, ÏÔÞÅÔ Ï ËÏÔÏÒÙÈ ÄÏÌÖÅÎ ÄÏÂÁ×ÌÑÔØÓÑ × ÖÕÒÎÁÌ. --- > ëÌÁÓÓ (class): ëÌÁÓÓÙ ÓÏÂÙÔÉÊ ÜÔÏ > ÉÍÅÎÏ×ÁÎÎÙÅ ÎÁÂÏÒÙ ÏÄÎÏÔÉÐÎÙÈ ÓÏÂÙÔÉÊ, ËÏÔÏÒÙÅ ÉÓÐÏÌØÚÕÀÔÓÑ > × ×ÙÒÁÖÅÎÉÑÈ ×ÙÂÏÒÁ. þÁÓÔÏÉÓÐÏÌØÚÕÅÍÙÅ ËÌÁÓÓÙ ÓÏÂÙÔÉÊ > ×ËÌÀÞÁÀÔ ÓÏÚÄÁÎÉÅ ÆÁÊÌÁ (fc), > ×ÙÐÏÌÎÅÎÉÅ ÆÁÊÌÁ (ex) > É ÓÏÂÙÔÉÑ ×ÈÏÄÁ × ÓÉÓÔÅÍÕ É ×ÙÈÏÄÁ ÉÚ ÎÅÅ (lo). 154,157c169,173 < ÉÎÆÏÒÍÁÃÉÀ Ï ÓÕÂßÅËÔÅ ÓÏÂÙÔÉÑ (ÐÏÌØÚÏ×ÁÔÅÌÅ), ×ÒÅÍÑ ÓÏÂÙÔÉÑ, < ÉÎÆÏÒÍÁÃÉÀ Ï ÏÂßÅËÔÁÈ ÓÏÂÙÔÉÑ (ÎÁÐÒÉÍÅÒ, ÆÁÊÌÁÈ) É < ÉÎÆÏÒÍÁÃÉÀ Ï ÕÓÐÅÛÎÏÓÔÉ ×ÙÐÏÌÎÅÎÉÑ ÏÐÅÒÁÃÉÉ, ÐÏÒÏÄÉ×ÛÅÊ < ÓÏÂÙÔÉÅ. --- > ÉÎÆÏÒÍÁÃÉÀ Ï ÓÕÂßÅËÔÅ ÓÏÂÙÔÉÑ (ÐÏÌØÚÏ×ÁÔÅÌÅ), ËÏÔÏÒÙÊ > ×ÙÐÏÌÎÉÌ ÎÅËÏÔÏÒÏÅ ÄÅÊÓÔ×ÉÑ, ÄÁÔÕ É ×ÒÅÍÑ ÓÏÂÙÔÉÑ, > ÉÎÆÏÒÍÁÃÉÀ Ï ÏÂßÅËÔÁÈ É ÁÒÇÕÍÅÎÔÁÈ ÓÏÂÙÔÉÑ, ÅÓÌÉ ÏÎÉ ÅÓÔØ, > Á ÔÁËÖÅ ÉÎÆÏÒÍÁÃÉÀ Ï ÕÓÐÅÛÎÏÓÔÉ ×ÙÐÏÌÎÅÎÉÑ ÏÐÅÒÁÃÉÉ, > ÐÏÒÏÄÉ×ÛÅÊ ÓÏÂÙÔÉÅ. 162,163c178,179 < ÖÕÒÎÁÌ ÁÕÄÉÔÁ, ÉÌÉ ÌÏÇ-ÆÁÊÌ - < ÓÏÄÅÒÖÉÔ ÓÅÒÉÀ ÚÁÐÉÓÅÊ Ï ÓÉÓÔÅÍÎÙÈ ÓÏÂÙÔÉÑÈ. --- > ÖÕÒÎÁÌ ÁÕÄÉÔÁ, ÉÌÉ ÌÏÇ-ÆÁÊÌ - > ÓÏÄÅÒÖÉÔ ÓÅÒÉÀ ÚÁÐÉÓÅÊ Ï ÓÉÓÔÅÍÎÙÈ ÓÏÂÙÔÉÑÈ. 166,167c182,183 < ÓÏÂÙÔÉÑ. ôÏÌØËÏ Á×ÔÏÒÉÚÏ×ÁÎÎÙÅ ÐÒÏÃÅÓÓÙ (ÎÁÐÒÉÍÅÒ, < auditd) ÉÍÅÀÔ ÄÏÓÔÕÐ Ë ÖÕÒÎÁÌÕ. --- > ÓÏÂÙÔÉÑ. ôÏÌØËÏ Á×ÔÏÒÉÚÏ×ÁÎÎÙÅ ÐÒÏÃÅÓÓÙ ÍÏÇÕÔ > ÄÏÂÁ×ÌÑÔØ ÚÁÐÉÓÉ × ÖÕÒÎÁÌ. 171c187 < ×ÙÒÁÖÅÎÉÅ ×ÙÄÅÌÅÎÉÑ (selection expression): --- > ×ÙÒÁÖÅÎÉÅ ×ÙÂÏÒÁ (selection expression): 173c189 < ÄÌÑ ×ÙÄÅÌÅÎÉÑ ÇÒÕÐÐÙ ÓÏÂÙÔÉÊ. --- > ÄÌÑ ×ÙÂÏÒÁ ÇÒÕÐÐÙ ÓÏÂÙÔÉÊ. 177,179c193,195 < ÐÒÅÄ×ÁÒÉÔÅÌØÎÏÅ ×ÙÄÅÌÅÎÉÅ (preselection): < ðÒÏÃÅÓÓ, ×Ï ×ÒÅÍÑ ËÏÔÏÒÏÇÏ ÓÉÓÔÅÍÁ ÏÐÒÅÄÅÌÑÅÔ, ËÁËÉÅ ÓÏÂÙÔÉÑ ÉÍÅÀÔ < ÐÒÉÏÒÉÔÅÔÎÕÀ ×ÁÖÎÏÓÔØ ÄÌÑ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ. üÔÏ ÎÅÏÂÈÏÄÉÍÏ ÄÌÑ ÔÏÇÏ, --- > ÐÒÅÄ×ÁÒÉÔÅÌØÎÙÊ ×ÙÂÏÒ (preselection): > ðÒÏÃÅÓÓ, Ó ÐÏÍÏÝØÀ ËÏÔÏÒÏÇÏ ÓÉÓÔÅÍÁ ÏÐÒÅÄÅÌÑÅÔ, ËÁËÉÅ ÓÏÂÙÔÉÑ ÉÍÅÀÔ > ×ÁÖÎÏÓÔØ ÄÌÑ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ. üÔÏ ÎÅÏÂÈÏÄÉÍÏ ÄÌÑ ÔÏÇÏ, 181,185c197,201 < ðÒÅÄ×ÁÒÉÔÅÌØÎÏÅ ×ÙÄÅÌÅÎÉÅ ÉÓÐÏÌØÚÕÅÔ ÒÑÄ < ×ÙÒÁÖÅÎÉÊ ×ÙÄÅÌÅÎÉÑ ÄÌÑ ÔÏÇÏ, ÞÔÏÂÙ ÏÐÒÅÄÅÌÉÔØ, < ËÁËÉÅ ÉÍÅÎÎÏ ËÌÁÓÓÙ ÓÏÂÙÔÉÊ ÄÌÑ ËÁËÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅÏÂÈÏÄÉÍÏ ×ÎÏÓÉÔØ < × ÖÕÒÎÁÌ, ÔÁË ÖÅ, ËÁË É ÄÌÑ Á×ÔÏÒÉÚÏ×ÁÎÎÙÈ É ÎÅÁ×ÔÏÒÉÚÏ×ÁÎÎÙÈ < ÐÒÏÃÅÓÓÏ×. --- > ðÒÅÄ×ÁÒÉÔÅÌØÎÙÊ ×ÙÂÏÒ ÉÓÐÏÌØÚÕÅÔ ÒÑÄ ×ÙÒÁÖÅÎÉÊ ×ÙÂÏÒÁ > ÄÌÑ ÔÏÇÏ, ÞÔÏÂÙ ÏÐÒÅÄÅÌÉÔØ, ËÁËÉÅ ÉÍÅÎÎÏ ËÌÁÓÓÙ ÓÏÂÙÔÉÊ ÄÌÑ > ËÁËÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅÏÂÈÏÄÉÍÏ ×ÎÏÓÉÔØ × ÖÕÒÎÁÌ, Á ÔÁË ÖÅ > ÇÌÏÂÁÌØÎÙÅ ÎÁÓÔÒÏÊËÉ, ËÏÔÏÒÙÅ ÂÕÄÕÔ ÐÒÉÍÅÎÑÔØÓÑ ËÁË ÄÌÑ > Á×ÔÏÒÉÚÏ×ÁÎÎÙÈ, ÔÁË É ÄÌÑ ÎÅÁ×ÔÏÒÉÚÏ×ÁÎÎÙÈ ÐÒÏÃÅÓÓÏ×. 191,197c207,213 < ×ÙÄÅÌÑÀÔÓÑ ÄÌÑ ÈÒÁÎÅÎÉÑ, ÒÁÓÐÅÞÁÔËÉ ÉÌÉ ÁÎÁÌÉÚÁ. ðÒÏÃÅÓÓ ×Ï ÍÎÏÇÏÍ < ÁÎÁÌÏÇÉÞÅÎ ÐÒÅÄ×ÁÒÉÔÅÌØÎÏÍÕ ×ÙÄÅÌÅÎÉÀ. éÓÐÏÌØÚÕÑ < ÆÉÌØÔÒÁÃÉÀ ÁÄÍÉÎÉÓÔÒÁÔÏÒÙ ÍÏÇÕÔ ÒÅÁÌÉÚÏ×Ù×ÁÔØ < ÒÁÚÌÉÞÎÙÅ ÐÏÌÉÔÉËÉ ÈÒÁÎÅÎÉÑ ÖÕÒÎÁÌÏ× ÁÕÄÉÔÁ. îÁÐÒÉÍÅÒ, ÄÅÔÁÌÉÚÉÒÏ×ÁÎÎÙÊ < ÖÕÒÎÁÌ ÍÏÖÅÔ ÈÒÁÎÉÔØÓÑ ÍÅÓÑÃ, ÎÏ ÐÏÓÌÅ ÜÔÏÇÏ ÏÎ ÄÏÌÖÅÎ ÂÙÔØ ÓÏËÒÁÝÅÎ < ÞÔÏÂÙ ÈÒÁÎÉÔØ ÔÏÌØËÏ ÉÎÆÏÒÍÁÃÉÀ Ï ×ÈÏÄÅ × ÓÉÓÔÅÍÕ É ×ÙÈÏÄÅ ÉÚ ÎÅÅ < ÂÏÌÅÅ ÄÌÉÔÅÌØÎÙÊ ÓÒÏË. --- > ×ÙÄÅÌÑÀÔÓÑ ÄÌÑ ÈÒÁÎÅÎÉÑ, ÒÁÓÐÅÞÁÔËÉ ÉÌÉ ÁÎÁÌÉÚÁ. ôÁËÖÅ, ÜÔÏ > ÐÒÏÃÅÓÓ, × ÒÅÚÕÌØÔÁÔÅ ËÏÔÏÒÏÇÏ ÎÅÖÅÌÁÔÅÌØÎÙÅ ÚÁÐÉÓÉ ÕÄÁÌÑÀÔÓÑ > ÉÚ ÖÕÒÎÁÌÁ ÁÕÄÉÔÁ. éÓÐÏÌØÚÕÑ ÆÉÌØÔÒÁÃÉÀ, ÁÄÍÉÎÉÓÔÒÁÔÏÒÙ ÍÏÇÕÔ > ÒÅÁÌÉÚÏ×Ù×ÁÔØ ÒÁÚÌÉÞÎÙÅ ÐÏÌÉÔÉËÉ ÈÒÁÎÅÎÉÑ ÄÁÎÎÙÈ ÁÕÄÉÔÁ. > îÁÐÒÉÍÅÒ, ÄÅÔÁÌÉÚÉÒÏ×ÁÎÎÙÊ ÖÕÒÎÁÌ ÍÏÖÅÔ ÈÒÁÎÉÔØÓÑ ÍÅÓÑÃ, ÎÏ > ÐÏÓÌÅ ÜÔÏÇÏ ÏÎ ÄÏÌÖÅÎ ÂÙÔØ ÓÏËÒÁÝÅÎ ÞÔÏÂÙ ÈÒÁÎÉÔØ ÔÏÌØËÏ > ÉÎÆÏÒÍÁÃÉÀ Ï ×ÈÏÄÅ × ÓÉÓÔÅÍÕ É ×ÙÈÏÄÅ ÉÚ ÎÅÅ ÄÌÑ ÃÅÌÅÊ ÁÒÈÉ×ÁÃÉÉ. 206,209c222,225 < ÂÁÚÏ×ÏÊ ÓÉÓÔÅÍÙ &os; ÎÁÞÉÎÁÑ Ó ×ÅÒÓÉÉ 6.2-RELEASE. ôÅÍ ÎÅ ÍÅÎÅÅ, < ÐÏÄÄÅÒÖËÁ ÁÕÄÉÔÁ ÄÏÌÖÎÁ ÂÙÔØ ÄÏÂÁ×ÌÅÎÁ × ÑÄÒÏ. üÔÏÇÏ < ÍÏÖÎÏ ÄÏÂÉÔØÓÑ, ÄÏÂÁ×É× ÓÌÅÄÕÀÝÕÀ ÓÔÒÏËÕ × ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÊ ÆÁÊÌ < ×ÁÛÅÇÏ ÓÐÅÃÉÁÌØÎÏÇÏ ÑÄÒÁ: --- > ÂÁÚÏ×ÏÊ ÓÉÓÔÅÍÙ &os;. ðÏÄÄÅÒÖËÁ ÁÕÄÉÔÁ ÓÏÂÙÔÉÊ ÓÏ ÓÔÏÒÏÎÙ ÑÄÒÁ > ÔÁËÖÅ ËÏÍÐÉÌÉÒÕÅÔÓÑ ÐÏ ÕÍÏÌÞÁÎÉÀ, ÎÏ ÐÏÄÄÅÒÖËÁ ÄÁÎÎÏÊ ×ÏÚÍÏÖÎÏÓÔÉ > ÔÒÅÂÕÅÔ ÓÏÚÄÁÎÉÑ Ó×ÏÅÇÏ ÑÄÒÁ, Ó ÄÏÂÁ×ÌÅÎÉÅÍ ÓÌÅÄÕÀÝÅÊ ÓÔÒÏËÉ > × ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÊ ÆÁÊÌ ÑÄÒÁ: 216c232,233 < ðÏÓÌÅ ÜÔÏÇÏ, ÎÅÏÂÈÏÄÉÍÏ ÒÁÚÒÅÛÉÔØ ÚÁÐÕÓË ÄÅÍÏÎÁ ÁÕÄÉÔÁ, --- > ëÁË ÔÏÌØËÏ ÑÄÒÏ Ó ÐÏÄÄÅÒÖËÏÊ ÁÕÄÉÔÁ ÂÙÌÏ ÓÏÂÒÁÎÏ É ÕÓÔÁÎÏ×ÌÅÎÏ, > Á ÓÉÓÔÅÍÁ ÂÙÌÁ ÐÅÒÅÚÁÇÒÕÖÅÎÁ, ÎÅÏÂÈÏÄÉÍÏ ÒÁÚÒÅÛÉÔØ ÚÁÐÕÓË ÄÅÍÏÎÁ ÁÕÄÉÔÁ, 221,224c238,242 < äÌÑ ÚÁÐÕÓËÁ ÄÅÍÏÎÁ ÓÏ ÓÐÅÃÉÆÉÞÅÓËÉÍÉ ÐÁÒÁÍÅÔÒÁÍÉ ÎÕÖÎÏ < ÕËÁÚÁÔØ ÜÔÉ ÐÁÒÁÍÅÔÒÙ × ÏÐÃÉÉ < ÆÁÊÌÁ &man.rc.conf.5;. < --- > úÁÔÅÍ ÎÕÖÎÏ ÚÁÐÕÓÔÉÔØ ÐÏÄÄÅÒÖËÕ ÁÕÄÉÔÁ ÌÉÂÏ ÐÕÔÅÍ > ÐÅÒÅÚÁÇÒÕÚËÉ, ÌÉÂÏ ×ÒÕÞÎÕÀ, ÚÁÐÕÓÔÉ× ÄÅÍÏÎ ÁÕÄÉÔÁ: > > service auditd start > 229d246 < 244c261 < ÁÕÄÉÔÁ, É ÄÒÕÇÉÅ. --- > ÁÕÄÉÔÁ, ÍÁËÓÉÍÁÌØÎÙÊ ÒÁÚÍÅÒ ÖÕÒÎÁÌÁ ÁÕÄÉÔÁ É ÄÒÕÇÉÅ. 248,249c265,268 < audit_event - ïÐÒÅÄÅÌÑÅÔ ÏÓÎÏ×ÎÙÅ < ÓÏÂÙÔÉÑ ÁÕÄÉÔÁ. üÔÏ, × ÏÓÎÏ×ÎÏÍ, ÓÉÓÔÅÍÎÙÅ ×ÙÚÏ×Ù. --- > audit_event - ôÅËÓÔÏ×ÙÅ ÉÍÅÎÁ É > ÏÐÉÓÁÎÉÑ ÓÏÂÙÔÉÊ ÁÕÄÉÔÁ, Á ÔÁËÖÅ ÓÐÉÓÏË, ÏÐÒÅÄÅÌÑÀÝÉÊ > ÓÏÏÔ×ÅÔÓÔ×ÉÅ ËÌÁÓÓÏ× É ÓÏÂÙÔÉÊ, ËÏÔÏÒÙÅ ÎÁÈÏÄÑÔÓÑ × ÄÁÎÎÙÈ > ËÌÁÓÓÁÈ. 253,256c272,275 < audit_user - óÏÂÙÔÉÑ ÁÕÄÉÔÁ ÄÌÑ < ÄÌÑ ÏÔÄÅÌØÎÙÈ ÐÏÌØÚÏ×ÁÔÅÌÅÊ. ðÏÌØÚÏ×ÁÔÅÌÉ, ÎÅ ÕÐÏÍÉÎÁÅÍÙÅ < × ÜÔÏÍ ÆÁÊÌÅ, ÂÕÄÕÔ ÒÁÓÓÍÁÔÒÉ×ÁÔØÓÑ ËÁË ÓÕÂßÅËÔÙ ËÏÎÆÉÇÕÒÁÃÉÉ < ÐÏ-ÕÍÏÌÞÁÎÉÀ × ÆÁÊÌÅ audit_control. --- > audit_user - ôÒÅÂÏ×ÁÎÉÑ ÁÕÄÉÔÁ, ËÏÔÏÒÙÅ > ÏÔÌÉÞÁÀÔÓÑ ÄÌÑ ÏÔÄÅÌØÎÙÈ ÐÏÌØÚÏ×ÁÔÅÌÅÊ. ïÎÉ ÓÏÅÄÉÎÑÀÔÓÑ Ó > ÇÌÏÂÁÌØÎÙÍÉ ÎÁÓÔÒÏÊËÁÍÉ ÐÏ ÕÍÏÌÞÁÎÉÀ ÐÒÉ ×ÈÏÄÅ ÐÏÌØÚÏ×ÁÔÅÌÑ > × ÓÉÓÔÅÍÕ. 259d277 < 262,263c280,281 < ÉÎÔÅÒÐÒÅÔÁÔÏÒÁ Bourne Shell, ËÏÔÏÒÙÊ ÉÓÐÏÌØÚÕÅÔÓÑ, ÞÔÏÂÙ < ÓÇÅÎÅÒÉÒÏ×ÁÔØ ÐÒÅÄÕÐÒÅÖÄÁÀÝÉÅ ÓÏÏÂÝÅÎÉÑ Ï ÉÓËÌÀÞÉÔÅÌØÎÙÈ --- > ÉÎÔÅÒÐÒÅÔÁÔÏÒÁ, ÉÓÐÏÌØÚÕÅÍÙÊ &man.auditd.8;, > ÞÔÏÂÙ ÓÇÅÎÅÒÉÒÏ×ÁÔØ ÐÒÅÄÕÐÒÅÖÄÁÀÝÉÅ ÓÏÏÂÝÅÎÉÑ Ï ÉÓËÌÀÞÉÔÅÌØÎÙÈ 265c283,284 < ÐÒÏÓÔÒÁÎÓÔ×Ï ÄÌÑ ÚÁÐÉÓÅÊ ÖÕÒÎÁÌÏ× ÁÕÄÉÔÁ. --- > ÐÒÏÓÔÒÁÎÓÔ×Ï ÄÌÑ ÚÁÐÉÓÅÊ ÖÕÒÎÁÌÏ× ÁÕÄÉÔÁ, ÌÉÂÏ ËÏÇÄÁ ÐÒÏÉÚÏÛÌÁ > ÒÏÔÁÃÉÑ ÆÁÊÌÁ ÖÕÒÎÁÌÁ ÁÕÄÉÔÁ. 268a288,293 > > æÁÊÌÙ ËÏÎÆÉÇÕÒÁÃÉÉ ÁÕÄÉÔÁ ÄÏÌÖÎÙ ÒÅÄÁËÔÉÒÏ×ÁÔØÓÑ É > ÉÚÍÅÎÑÔØÓÑ Ó ÏÓÔÏÒÏÖÎÏÓÔØÀ, ÔÁË ËÁË ÏÛÉÂËÉ × ËÏÎÆÉÇÕÒÁÃÉÉ > ÍÏÇÕÔ ÐÒÉ×ÅÓÔÉ Ë ÎÅÐÒÁ×ÉÌØÎÏÍÕ ÌÏÇÕ ÓÏÂÙÔÉÊ > > 270c295 < æÏÒÍÁÔ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÏÇÏ ÆÁÊÌÁ --- > ÷ÙÒÁÖÅÎÉÑ ×ÙÂÏÒÁ ÓÏÂÙÔÉÊ 272,280c297,306 < æÏÒÍÁÔ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÏÇÏ ÆÁÊÌÁ ÎÅ ÏÞÅÎØ ÌÏÇÉÞÅÎ, ÎÏ Ó ÎÉÍ, ÔÅÍ < ÎÅ ÍÅÎÅÅ, ÄÏÓÔÁÔÏÞÎÏ ÐÒÏÓÔÏ ÒÁÂÏÔÁÔØ. ïÄÎÁËÏ, ÁÄÍÉÎÉÓÔÒÁÔÏÒÁÍ < ÓÌÅÄÕÅÔ ÂÙÔØ ÏÞÅÎØ ×ÎÉÍÁÔÅÌØÎÙÍÉ ÐÒÉ ÉÚÍÅÎÅÎÉÉ ÚÎÁÞÅÎÉÊ ÐÏ < ÕÍÏÌÞÁÎÉÀ, ÐÏÓËÏÌØËÕ ÜÔÏ ÓÏÚÄÁÅÔ ÐÏÔÅÎÃÉÁÌØÎÕÀ ÏÐÁÓÎÏÓÔØ < ÎÅÐÒÁ×ÉÌØÎÏÇÏ ÓÂÏÒÁ ÄÁÎÎÙÈ ÓÉÓÔÅÍÏÊ ÁÕÄÉÔÁ. < < ÷ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÏÍ ÆÁÊÌÅ ÍÏÇÕÔ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ ËÁË ÐÏÌÎÙÅ, < ÔÁË É ÓÏËÒÁÝÅÎÎÙÅ ÐÁÒÁÍÅÔÒÙ. óÏÏÔ×ÅÔÓÔ×ÉÑ ÂÕÄÕÔ ÐÒÉ×ÅÄÅÎÙ < ÎÉÖÅ. --- > ÷ÙÒÁÖÅÎÉÑ ×ÙÂÏÒÁ ÉÓÐÏÌØÚÕÀÔÓÑ × ÎÅÓËÏÌØËÉÈ ÍÅÓÔÁÈ > ËÏÎÆÉÇÕÒÁÃÉÉ ÁÕÄÉÔÁ ÄÌÑ ÏÐÒÅÄÅÌÅÎÉÑ ÔÏÇÏ, ËÁËÉÅ ÓÏÂÙÔÉÑ ÄÏÌÖÎÙ > ÐÏÄ×ÅÒÇÁÔØÓÑ ÁÕÄÉÔÕ. ÷ÙÒÁÖÅÎÉÑ ÓÏÄÅÒÖÁÔ ÓÐÉÓÏË ËÌÁÓÓÏ× ÓÏÂÙÔÉÊ, > Ó ËÏÔÏÒÙÍÉ ÉÎÔÅÒÅÓÕÀÝÅÅ ÎÁÓ ÓÏÂÙÔÉÅ ÂÕÄÅÔ ÓÒÁ×ÎÉ×ÁÔØÓÑ. ëÁÖÄÏÅ > ×ÙÒÁÖÅÎÉÅ ÉÍÅÅÔ ÐÒÅÆÉËÓ, ÐÏËÁÚÙ×ÁÀÝÉÊ, ÎÕÖÎÏ ÌÉ ÐÒÉÎÑÔØ > ÉÌÉ ÉÇÎÏÒÉÒÏ×ÁÔØ ÎÁÊÄÅÎÎÏÅ ÓÏÂÙÔÉÅ, É, ×ÏÚÍÏÖÎÏ, ÐÏËÁÚÙ×ÁÀÝÉÊ, > ÉÎÔÅÒÅÓÕÀÔ ÌÉ ÎÁÓ ÕÓÐÅÛÎÙÅ ÉÌÉ ÎÅÕÓÐÅÛÎÙÅ ÏÐÅÒÁÃÉÉ. ÷ÙÒÁÖÅÎÉÑ > ×ÙÂÏÒÁ ÒÁÓÓÍÁÔÒÉ×ÁÀÔÓÑ ÓÌÅ×Á ÎÁÐÒÁ×Á, É Ä×Á ×ÙÒÁÖÅÎÉÑ > ÏÂßÅÄÉÎÑÀÔÓÑ ÐÒÏÓÔÙÍ ÄÏÂÁ×ÌÅÎÉÅÍ ×ÔÏÒÏÇÏ ×ÙÒÁÖÅÎÉÑ Ë ËÏÎÃÕ > ÐÅÒ×ÏÇÏ. 282c308 < óÌÅÄÕÀÝÉÊ ÓÐÉÓÏË ÓÏÄÅÒÖÉÔ ×ÓÅ ËÌÁÓÓÙ ÐÏ ÕÍÏÌÞÁÎÉÀ, --- > óÌÅÄÕÀÝÉÊ ÓÐÉÓÏË ÓÏÄÅÒÖÉÔ ËÌÁÓÓÙ ÐÏ ÕÍÏÌÞÁÎÉÀ, 287c313 < - all - --- > all - all - 292c318 < - administrative --- > ad - administrative 298c324 < - application - --- > ap - application - 303,305c329,330 < - file_close < - áÕÄÉÔ ×ÙÚÏ×Ï× ÓÉÓÔÅÍÎÏÊ ÆÕÎËÃÉÉ < close. --- > cl - file close > - áÕÄÉÔ ×ÙÚÏ×Ï× ÓÉÓÔÅÍÎÏÊ ÆÕÎËÃÉÉ close. 309c334 < - exec - --- > ex - exec - 317,319c342,344 < - file_attr_acc < - áÕÄÉÔ ÄÏÓÔÕÐÁ Ë ÁÔÒÉÂÕÔÁÍ ÏÂßÅËÔÏ× É ÉÈ ÉÚÍÅÎÅÎÉÀ, < ÎÁÐÒÉÍÅÒ ÞÅÒÅÚ &man.stat.1;, &man.pathconf.2;, Á --- > fa - file attribute access > - áÕÄÉÔ ÄÏÓÔÕÐÁ Ë ÁÔÒÉÂÕÔÁÍ ÏÂßÅËÔÏ×, > ÎÁÐÒÉÍÅÒ &man.stat.1;, &man.pathconf.2;, Á 324c349 < - file_creation --- > fc - file create 330c355 < - file_deletion --- > fd - file delete 336c361 < - file_attr_mod --- > fm - file attribute modify 343c368 < - file_read --- > fr - file read 349c374 < - file_write - --- > fw - file write - 351c376 < ÚÁÐÉÓØ ÄÁÎÎÙÈ, ÉÚÍÅÎÅÎÉÅ ÆÁÊÌÏ× É ÔÁË ÄÁÌÅÅ. --- > ÚÁÐÉÓØ ÄÁÎÎÙÈ, ÚÁÐÉÓØ ÉÌÉ ÉÚÍÅÎÅÎÉÅ ÆÁÊÌÏ× É ÔÁË ÄÁÌÅÅ. 355c380 < - ioctl - --- > io - ioctl - 360c385 < - ipc - --- > ip - ipc - 362c387 < ×ËÌÀÞÁÑ ÓÏÚÄÁÎÉÅ ÎÅ-ÉÍÅÎÏ×ÁÎÎÙÈ ËÁÎÁÌÏ× (pipe) É --- > ×ËÌÀÞÁÑ ÓÏÚÄÁÎÉÅ ÎÅ-ÉÍÅÎÏ×ÁÎÎÙÈ ËÁÎÁÌÏ× (POSIX pipe) É 368,369c393,395 < - login_logout - < áÕÄÉÔ ÓÏÂÙÔÉÊ &man.login.1; É &man.logout.1;. --- > lo - login_logout - > áÕÄÉÔ ÓÏÂÙÔÉÊ &man.login.1; É &man.logout.1;, > ÐÒÏÉÓÈÏÄÑÝÉÈ × ÓÉÓÔÅÍÅ. 373c399 < - non_attrib - --- > na - non attributable - 378,380c404,405 < - no_class - < ðÕÓÔÏÊ ËÌÁÓÓ, ÉÓÐÏÌØÚÕÅÔÓÑ ÄÌÑ ÏÔËÌÀÞÅÎÉÑ < ÁÕÄÉÔÁ. --- > no - invalid class - > îÅ ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÉËÁËÉÍ ÓÏÂÙÔÉÑÍ ÁÕÄÉÔÁ. 384c409 < - network - --- > nt - network - 390,391c415,416 < - other - < áÕÄÉÔ ÓÏÂÙÔÉÊ, ÎÅ ×ÏÛÅÄÛÉÈ × ÄÒÕÇÉÅ ËÌÁÓÓÙ. --- > ot - other - > áÕÄÉÔ ÒÁÚÌÉÞÎÙÈ ÓÏÂÙÔÉÊ. 395c420 < - process - --- > pc - process - 405,406c430,433 < ëÁÖÄÙÊ ËÌÁÓÓ ËÏÍÂÉÎÉÒÕÅÔÓÑ Ó ÐÒÅÆÉËÓÏÍ, ÐÏËÁÚÙ×ÁÀÝÉÍ ÕÄÁÞÎÏÅ < ÉÌÉ ÎÅÕÄÁÞÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ ÏÐÅÒÁÃÉÉ. --- > ëÁÖÄÙÊ ËÌÁÓÓ ÁÕÄÉÔÁ ËÏÍÂÉÎÉÒÕÅÔÓÑ Ó ÐÒÅÆÉËÓÏÍ, ÐÏËÁÚÙ×ÁÀÝÉÍ, > ËÁËÉÅ ÏÐÅÒÁÃÉÉ ÂÕÄÕÔ ÕÞÉÔÙ×ÁÔØÓÑ - ÕÄÁÞÎÙÅ ÉÌÉ ÎÅÕÄÁÞÎÙÅ, > Á ÔÁËÖÅ ÔÏ, ×ËÌÀÞÁÅÔ ÌÉ ÄÁÎÎÁÑ ÚÁÐÉÓØ ÁÕÄÉÔ ÄÌÑ ÄÁÎÎÏÇÏ > ËÌÁÓÓÁ É ÔÉÐÁ, ÌÉÂÏ ÏÔËÌÀÞÁÅÔ ÅÇÏ. 411,413c438 < ÕÓÐÅÛÎÏÇÏ, ÔÁË É ÄÌÑ ÏÛÉÂÏÞÎÏÇÏ ÓÏÂÙÔÉÑ. îÁÐÒÉÍÅÒ, ÐÒÏÓÔÏ < ÕËÁÚÁÎÉÅ ËÌÁÓÓÁ ÂÅÚ ÐÒÅÆÉËÓÁ ÐÒÉ×ÅÄÅÔ Ë ÚÁÎÅÓÅÎÉÀ ÓÏÂÙÔÉÑ < × ÖÕÒÎÁÌ ÐÒÉ ÌÀÂÏÍ ÒÅÚÕÌØÔÁÔÅ ÏÐÅÒÁÃÉÉ. --- > ÕÓÐÅÛÎÏÇÏ, ÔÁË É ÄÌÑ ÏÛÉÂÏÞÎÏÇÏ ÓÏÂÙÔÉÑ. 418c443 < ÓÏÂÙÔÉÊ. --- > ÓÏÂÙÔÉÊ × ÄÁÎÎÏÍ ËÌÁÓÓÅ. 423c448 < ÓÏÂÙÔÉÊ. --- > ÓÏÂÙÔÉÊ × ÄÁÎÎÏÍ ËÌÁÓÓÅ. 428c453 < ÏÛÉÂÏÞÎÙÈ ÓÏÂÙÔÉÊ. --- > ÏÛÉÂÏÞÎÙÈ ÓÏÂÙÔÉÊ × ÄÁÎÎÏÍ ËÌÁÓÓÅ. 432,433c457,458 < ^- - ïÔËÌÀÞÅÎÉÅ ÁÕÄÉÔÁ ÏÛÉÂÏÞÎÙÈ < ÓÏÂÙÔÉÊ. --- > ^+ - ïÔËÌÀÞÅÎÉÅ ÁÕÄÉÔÁ ÕÓÐÅÛÎÙÈ > ÓÏÂÙÔÉÊ × ÄÁÎÎÏÍ ËÌÁÓÓÅ. 437,438c462,463 < ^+ - ÷ËÌÀÞÅÎÉÅ ÁÕÄÉÔÁ ÕÓÐÅÛÎÙÈ < ÓÏÂÙÔÉÊ. --- > ^- - ïÔËÌÀÞÅÎÉÅ ÁÕÄÉÔÁ ÏÛÉÂÏÞÎÙÈ > ÓÏÂÙÔÉÊ × ÄÁÎÎÏÍ ËÌÁÓÓÅ. 457,459c482,483 < ÏÂÝÉÅ ÎÁÓÔÒÏÊËÉ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ É ÕÓÔÁÎÏ×ËÉ ÐÏ ÕÍÏÌÞÁÎÉÀ ËÁË < ÄÌÑ ÐÒÉÐÉÓÙ×ÁÅÍÙÈ, ÔÁË É ÄÌÑ ÎÅ-ÐÒÉÐÉÓÙ×ÁÅÍÙÈ ÓÏÂÙÔÉÊ. ÷ÔÏÒÏÊ < ÉÓÐÏÌØÚÕÅÔÓÑ ÄÌÑ ÎÁÓÔÒÏÊËÉ ÁÕÄÉÔÁ ÐÏÌØÚÏ×ÁÔÅÌØÓËÉÈ ÓÏÂÙÔÉÊ. --- > ÏÂÝÉÅ ÎÁÓÔÒÏÊËÉ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ, ×ÔÏÒÏÊ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ > ÄÌÑ ÂÏÌÅÅ ÔÏÎËÏÊ ÎÁÓÔÒÏÊËÉ ÁÕÄÉÔÁ ÐÏÌØÚÏ×ÁÔÅÌÅÍ. 464,466c488,489 < æÁÊÌ audit_control ÓÏÄÅÒÖÉÔ < ÎÁÓÔÒÏÊËÉ ÐÏ ÕÍÏÌÞÁÎÉÀ, ËÏÔÏÒÙÅ, ×ÏÚÍÏÖÎÏ, ÐÏÔÒÅÂÕÅÔÓÑ < ÉÚÍÅÎÉÔØ. óÏÄÅÒÖÉÍÏÅ ÜÔÏÇÏ ÆÁÊÌÁ: --- > îÅËÏÔÏÒÙÅ ÎÁÓÔÒÏÊËÉ ÐÏ ÕÍÏÌÞÁÎÉÀ ÄÌÑ ÐÏÄÓÉÓÔÅÍÙ > ÁÕÄÉÔÁ ÓÏÄÅÒÖÁÔÓÑ × ÆÁÊÌÅ audit_control: 475,476c498,502 < ðÁÒÁÍÅÔÒ ÕËÁÚÙ×ÁÅÔ ËÁÔÁÌÏÇ, × < ËÏÔÏÒÏÍ ÂÕÄÅÔ ÓÏÈÒÁÎÑÔØÓÑ ÖÕÒÎÁÌ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ. ëÁË --- > úÁÐÉÓØ ÉÓÐÏÌØÚÕÅÔÓÑ ÄÌÑ > ÕÓÔÁÎÏ×ËÉ ÏÄÎÏÇÏ ÉÌÉ ÂÏÌÅÅ ËÁÔÁÌÏÇÏ×, × > ËÏÔÏÒÙÈ ÂÕÄÅÔ ÓÏÈÒÁÎÑÔØÓÑ ÖÕÒÎÁÌ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ. åÓÌÉ > ÕËÁÚÁÎ ÂÏÌÅÅ ÞÅÍ ÏÄÉÎ ËÁÔÁÌÏÇ, ÔÏ ÕËÁÚÁÎÎÙÅ ËÁÔÁÌÏÇÉ > ÂÕÄÕÔ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ ÐÏ ÏÞÅÒÅÄÉ, ÐÏ ÍÅÒÅ ÚÁÐÏÌÎÅÎÉÑ. ëÁË 479,492c505,513 < ÐÒÅÄÏÔ×ÒÁÔÉÔØ ÓÂÏÉ × ÒÁÂÏÔÅ ÏÐÅÒÁÃÉÏÎÎÏÊ ÓÉÓÔÅÍÙ, ÅÓÌÉ < Ó×ÏÂÏÄÎÏÅ ÍÅÓÔÅ ÎÁ ÒÁÚÄÅÌÅ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ ÂÕÄÅÔ < ÉÓÞÅÒÐÁÎÏ. < < ðÁÒÁÍÅÔÒ ÉÓÐÏÌØÚÕÅÔÓÑ ÄÌÑ < ÕÓÔÁÎÏ×ËÉ ÇÌÏÂÁÌØÎÙÈ ÏÐÃÉÊ. úÎÁÞÅÎÉÅ ÜÔÏÇÏ ÐÁÒÁÍÅÔÒÁ < ÎÁÓÔÒÁÉ×ÁÅÔ ÁÕÄÉÔ ÄÌÑ ×ÓÅÈ ÓÏÂÙÔÉÊ < &man.login.1; É &man.logout.1;. âÏÌÅÅ ÐÏÄÒÏÂÎÙÊ < ÐÒÉÍÅÒ: < < dir:/var/audit < flags:lo,ad,-all,^-fa,^-fc,^-cl < minfree:20 < naflags:lo --- > ÐÒÅÄÏÔ×ÒÁÔÉÔØ ÐÅÒÅÓÅÞÅÎÉÅ ÐÏÄÓÉÓÔÅÍÙ ÁÕÄÉÔÁ É ÏÓÔÁÌØÎÙÈ > ÐÏÄÓÉÓÔÅÍ × ÓÌÕÞÁÅ, ÅÓÌÉ Ó×ÏÂÏÄÎÏÅ ÍÅÓÔÅ ÎÁ ÒÁÚÄÅÌÅ > ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ ÂÕÄÅÔ ÉÓÞÅÒÐÁÎÏ. > > úÁÐÉÓØ ÉÓÐÏÌØÚÕÅÔÓÑ ÄÌÑ > ÕÓÔÁÎÏ×ËÉ ÇÌÏÂÁÌØÎÏÊ ÍÁÓËÉ ÐÒÅÄ×ÁÒÉÔÅÌØÎÏÇÏ ×ÙÂÏÒÁ > ÄÌÑ ÐÒÉÐÉÓÙ×ÁÅÍÙÈ ÓÏÂÙÔÉÊ. ÷ ÐÒÉÍÅÒÅ ×ÙÛÅ, ÂÕÄÕÔ ÐÏÄ×ÅÒÇÁÔØÓÑ > ÁÕÄÉÔÕ ËÁË ÕÓÐÅÛÎÙÅ, ÔÁË É ÎÅÕÄÁÞÎÙÅ ÐÏÐÙÔËÉ ×ÈÏÄÁ × > ÓÉÓÔÅÍÕ É ×ÙÈÏÄÁ ÉÚ ÎÅÅ ÄÌÑ ×ÓÅÈ ÐÏÌØÚÏ×ÁÔÅÌÅÊ 494,508c515 < ôÁËÏÅ ÚÎÁÞÅÎÉÅ ÐÁÒÁÍÅÔÒÁ < ÐÒÉ×ÅÄÅÔ Ë ÁÕÄÉÔÕ ×ÓÅÈ ÓÏÂÙÔÉÊ &man.login.1; É < &man.logout.1;, ×ÓÅÈ ÁÄÍÉÎÉÓÔÒÁÔÉ×ÎÙÈ ÓÏÂÙÔÉÊ, ×ÓÅÈ ÏÛÉÂÏÞÎÙÈ < ÓÉÓÔÅÍÎÙÈ ÓÏÂÙÔÉÊ É, ÎÁËÏÎÅÃ, ÏÔËÌÀÞÁÅÔ ÁÕÄÉÔ ×ÓÅÈ ÏÛÉÂÏÞÎÙÈ < ÓÏÂÙÔÉÊ ËÌÁÓÓÏ× , É < . îÅÓÍÏÔÒÑ ÎÁ ÔÏ, ÞÔÏ ÐÁÒÁÍÅÔÒ < ÕËÁÚÙ×ÁÅÔ ÎÁ ÎÅÏÂÈÏÄÉÍÏÓÔØ ÁÕÄÉÔÁ < ×ÓÅÈ ÓÉÓÔÅÍÎÙÈ ÓÏÂÙÔÉÊ, ÐÒÅÆÉËÓ ÏÔÍÅÎÑÅÔ < ÜÔÏ ÐÏ×ÅÄÅÎÉÅ ÄÌÑ ×ÓÅÈ ÐÏÓÌÅÄÕÀÝÉÈ ÏÐÃÉÊ. < < úÁÍÅÔØÔÅ, ÞÔÏ ÚÎÁÞÅÎÉÑ ÓÞÉÔÙ×ÁÀÔÓÑ ÓÌÅ×Á ÎÁÐÒÁ×Ï. < ðÏÜÔÏÍÕ ÎÁÈÏÄÑÝÉÅÓÑ ÓÐÒÁ×Á ÚÎÁÞÅÎÉÑ ÐÅÒÅÏÐÒÅÄÅÌÑÀÔ ÚÎÁÞÅÎÉÑ, < ÎÁÈÏÄÑÝÉÅÓÑ ÓÌÅ×Á. < < ðÁÒÁÍÅÔÒ ÏÐÒÅÄÅÌÑÅÔ ÍÉÎÉÍÁÌØÎÏÅ --- > úÁÐÉÓØ ÏÐÒÅÄÅÌÑÅÔ ÍÉÎÉÍÁÌØÎÏÅ 510,520c517,544 < ËÏÔÏÒÙÊ ÓÏÈÒÁÎÑÀÔÓÑ ÆÁÊÌÙ ÖÕÒÎÁÌÏ× ÁÕÄÉÔÁ. îÁÐÒÉÍÅÒ, ÅÓÌÉ < ÚÎÁÞÅÎÉÅ ÐÁÒÁÍÅÔÒÁ ÕÓÔÁÎÏ×ÌÅÎÏ × < /var/audit, Á ÐÁÒÁÍÅÔÒ < ÒÁ×ÅÎ Ä×ÁÄÃÁÔÉ (20), ÔÏ ÐÒÅÄÕÐÒÅÖÄÁÀÝÅÅ < ÓÏÏÂÝÅÎÉÅ ÂÕÄÅÔ ×ÙÄÁÎÏ, ËÏÇÄÁ ÒÁÚÄÅÌ /var ÂÕÄÅÔ ÚÁÐÏÌÎÅÎ ÎÁ < ×ÏÓÅÍØÄÅÓÑÔ (80%) ÐÒÏÃÅÎÔÏ×. < < ðÁÒÁÍÅÔÒ ÏÐÒÅÄÅÌÑÅÔ ËÌÁÓÓÙ < ÁÕÄÉÔÁ ÄÌÑ ÎÅ-ÐÒÉÐÉÓÙ×ÁÅÍÙÈ ÓÏÂÙÔÉÊ, ÔÏ ÅÓÔØ ÓÏÂÙÔÉÊ, < ÄÌÑ ËÏÔÏÒÙÈ ÎÅ ÏÐÒÅÄẠ̊ΠËÏÎËÒÅÔÎÙÊ ÐÏÌØÚÏ×ÁÔÅÌØ. < --- > ËÏÔÏÒÙÊ ÓÏÈÒÁÎÑÀÔÓÑ ÆÁÊÌÙ ÖÕÒÎÁÌÏ× ÁÕÄÉÔÁ. ëÏÇÄÁ ÄÁÎÎÁÑ > ÇÒÁÎÉÃÁ ÂÕÄÅÔ ÐÒÅ×ÙÛÅÎÁ, ÂÕÄÅÔ ÓÇÅÎÅÒÉÒÏ×ÁÎÏ ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ. > ÷ÙÛÅÐÒÉ×ÅÄÅÎÎÙÊ ÐÒÉÍÅÒ ÕÓÔÁÎÁ×ÌÉ×ÁÅÔ ÍÉÎÉÍÁÌØÎÏÅ Ó×ÏÂÏÄÎÏÅ > ÐÒÏÓÔÒÁÎÓÔ×Ï × Ä×ÁÄÃÁÔØ ÐÒÏÃÅÎÔÏ×. > > úÁÐÉÓØ ÏÐÒÅÄÅÌÑÅÔ ËÌÁÓÓÙ > ÁÕÄÉÔÁ ÄÌÑ ÎÅ-ÐÒÉÐÉÓÙ×ÁÅÍÙÈ ÓÏÂÙÔÉÊ, ÎÁÐÒÉÍÅÒ, ÐÒÏÃÅÓÓÏ× > ×ÈÏÄÁ × ÓÉÓÔÅÍÕ É ÓÉÓÔÅÍÎÙÈ ÄÅÍÏÎÏ×. > > úÁÐÉÓØ ÏÐÒÅÄÅÌÑÅÔ ÓÐÉÓÏË > ÆÌÁÇÏ× ÐÏÌÉÔÉËÉ, ÏÐÒÅÄÅÌÑÀÝÅÊ ÒÁÚÌÉÞÎÙÅ ÁÓÐÅËÔÙ ÐÏ×ÅÄÅÎÉÑ > ÁÕÄÉÔÁ. üÌÅÍÅÎÔÙ ÓÐÉÓËÁ ÏÔÄÅÌÑÀÔÓÑ ÄÒÕÇ ÏÔ ÄÒÕÇÁ ÚÁÐÑÔÙÍÉ. > ðÏ ÕÍÏÌÞÁÎÉÀ, ÆÌÁÇ cnt ÕËÁÚÙ×ÁÅÔ, ÞÔÏ > ÓÉÓÔÅÍÁ ÄÏÌÖÎÁ ÐÒÏÄÏÌÖÁÔØ ÒÁÂÏÔÁÔØ, ÎÅÓÍÏÔÒÑ ÎÁ ÏÛÉÂËÉ > ÁÕÄÉÔÁ (ÄÁÎÎÙÊ ÆÌÁÇ ÏÞÅÎØ ÓÉÌØÎÏ ÒÅËÏÍÅÎÄÕÅÔÓÑ ÉÓÐÏÌØÚÏ×ÁÔØ). > äÒÕÇÏÊ ÞÁÓÔÏÉÓÐÏÌØÚÕÅÍÙÊ ÆÌÁÇ - argv, > ËÏÔÏÒÙÊ ÚÁÓÔÁ×ÌÑÅÔ ÐÏÄ×ÅÒÇÁÔØ ÁÕÄÉÔÕ ÁÒÇÕÍÅÎÔÙ ËÏÍÁÎÄÎÏÊ > ÓÔÒÏËÉ ÐÒÉ ×ÙÚÏ×Å ÓÉÓÔÅÍÎÏÇÏ ×ÙÚÏ×Á &man.execve.2;, ËÁË > ÞÁÓÔØ ×ÙÐÏÌÎÅÎÉÑ ËÏÍÁÎÄÙ. > > úÁÐÉÓØ ÏÐÒÅÄÅÌÑÅÔ > ÍÁËÓÉÍÁÌØÎÙÊ ÒÁÚÍÅÒ × ÂÁÊÔÁÈ, ÄÏ ËÏÔÏÒÏÇÏ ÍÏÖÅÔ ÒÁÓÔÉ > ÖÕÒÎÁÌ ÓÏÂÙÔÉÊ ÁÕÄÉÔÁ, ÐÒÅÖÄÅ ÞÅÍ ÏÎ ÂÕÄÅÔ Á×ÔÏÍÁÔÉÞÅÓËÉ > ÚÁËÏÎÞÅÎ É ÐÏÄ×ÅÒÇÎÕÔ ÒÏÔÁÃÉÉ. ðÏ ÕÍÏÌÞÁÎÉÀ, ÚÎÁÞÅÎÉÅ 0 > ÚÁÐÒÅÝÁÅÔ Á×ÔÏÍÁÔÉÞÅÓËÕÀ ÒÏÔÁÃÉÀ ÌÏÇÏ×. åÓÌÉ ÔÒÅÂÕÅÍÙÊ > ÒÁÚÍÅÒ ÆÁÊÌÁ ÎÅÎÕÌÅ×ÏÊ, ÎÏ ÎÉÖÅ ÍÉÎÉÍÁÌØÎÏÇÏ ÚÎÁÞÅÎÉÑ × > 512ë, ÔÏ ÏÎ ÂÕÄÅÔ ÐÒÏÉÇÎÏÒÉÒÏ×ÁÎ, É ÂÕÄÅÔ ÓÇÅÎÅÒÉÒÏ×ÁÎÏ > ÐÒÅÄÕÐÒÅÖÄÁÀÝÅÅ ÓÏÏÂÝÅÎÉÅ × ÌÏÇÁÈ. 526,546c550,575 < æÁÊÌ audit_user ÐÏÚ×ÏÌÑÅÔ < ÁÄÍÉÎÉÓÔÒÁÔÏÒÕ ÏÐÒÅÄÅÌÉÔØ ËÌÁÓÓÙ ÓÏÂÙÔÉÊ, ÁÕÄÉÔ ËÏÔÏÒÙÈ ÂÕÄÅÔ < ÐÒÏÉÚ×ÏÄÉÔØÓÑ ÄÌÑ ËÁÖÄÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ ÓÉÓÔÅÍÙ. < < ðÏ ÕÍÏÌÞÁÎÉÀ ÆÁÊÌ audit_user < ÓÏÄÅÒÖÉÔ: < < root:lo:no < audit:fc:no < < ïÂÒÁÔÉÔÅ ×ÎÉÍÁÎÉÅ: ÐÏ ÕÍÏÌÞÁÎÉÀ ÐÒÏÉÚ×ÏÄÉÔÓÑ ÁÕÄÉÔ ×ÓÅÈ < login/logout ÓÏÂÙÔÉÊ É < ÏÔËÌÀÞÁÅÔÓÑ ÁÕÄÉÔ ×ÓÅÈ ÄÒÕÇÉÈ ÓÏÂÙÔÉÊ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ < root. üÔÁ ËÏÎÆÉÇÕÒÁÃÉÑ ÔÁËÖÅ ×ËÌÀÞÁÅÔ < ÁÕÄÉÔ ×ÓÅÈ ÓÏÂÙÔÉÊ, Ó×ÑÚÁÎÎÙÈ Ó ÓÏÚÄÁÎÉÅÍ ÆÁÊÌÏ× É ÏÔËÌÀÞÁÅÔ < ÁÕÄÉÔ ×ÓÅÈ ÄÒÕÇÉÈ ÓÏÂÙÔÉÊ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ < audit. èÏÔÑ ÉÓÐÏÌØÚÏ×ÁÎÉÅ ÓÉÓÔÅÍÙ < ÁÕÄÉÔÁ ÎÅ ÔÒÅÂÕÅÔ ÎÁÌÉÞÉÑ × ÓÉÓÔÅÍÅ ÓÐÅÃÉÁÌØÎÏÇÏ < ÐÏÌØÚÏ×ÁÔÅÌÑ, × ÎÅËÏÔÏÒÙÈ ËÏÎÆÉÇÕÒÁÃÉÑÈ, ÏÓÏÂÅÎÎÏ < ÉÓÐÏÌØÚÕÀÝÉÈ MAC (Mandatory Access < Control), ÜÔÏ ÍÏÖÅÔ ÂÙÔØ ÎÅÏÂÈÏÄÉÍÏ. --- > áÄÍÉÎÉÓÔÒÁÔÏÒ ÍÏÖÅÔ ÏÐÒÅÄÅÌÉÔØ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ > ÔÒÅÂÏ×ÁÎÉÑ Ë ÁÕÄÉÔÕ ÄÌÑ ËÏÎËÒÅÔÎÙÈ ÐÏÌØÚÏ×ÁÔÅÌÅÊ > × ÆÁÊÌÅ audit_user. > ëÁÖÄÁÑ ÓÔÒÏËÁ ËÏÎÆÉÇÕÒÉÒÕÅÔ ÁÕÄÉÔ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ > Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ Ä×ÕÈ ÐÏÌÅÊ: ÐÅÒ×ÏÅ ÐÏÌÅ > alwaysaudit, ËÏÔÏÒÏÅ ÏÐÒÅÄÅÌÑÅÔ > ÎÁÂÏÒ ÓÏÂÙÔÉÊ, ËÏÔÏÒÙÅ ÄÏÌÖÎÙ ×ÓÅÇÄÁ ÐÏÄ×ÅÒÇÁÔØÓÑ > ÁÕÄÉÔÕ ÄÌÑ ÄÁÎÎÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ, Á ×ÔÏÒÏÅ - ÐÏÌÅ > neveraudit, ËÏÔÏÒÏÅ ÏÐÒÅÄÅÌÑÅÔ > ÎÁÂÏÒ ÓÏÂÙÔÉÊ, ËÏÔÏÒÙÅ ÎÉËÏÇÄÁ ÎÅ ÄÏÌÖÎÙ ÐÏÄ×ÅÒÇÁÔØÓÑ > ÁÕÄÉÔÕ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ. > > îÉÖÅÓÌÅÄÕÀÝÉÊ ÐÒÉÍÅÒ audit_user > ÐÒÏ×ÏÄÉÔ ÁÕÄÉÔ ×ÓÅÈ ÓÏÂÙÔÉÊ ×ÈÏÄÁ × ÓÉÓÔÅÍÕ É ×ÙÈÏÄÁ ÉÚ > ÓÉÓÔÅÍÙ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ root, > Á ÔÁËÖÅ ÐÒÏ×ÏÄÉÔ ÁÕÄÉÔ ×ÓÅÈ ÓÏÂÙÔÉÊ, Ó×ÑÚÁÎÎÙÈ Ó ÓÏÚÄÁÎÉÅÍ > ÆÁÊÌÏ× É ÕÓÐÅÛÎÙÍ ×ÙÐÏÌÎÅÎÉÅÍ ËÏÍÁÎÄ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ > www. ðÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ Ó > ×ÙÛÅÐÒÉ×ÅÄÅÎÎÙÍ ÐÒÉÍÅÒÏÍ ÆÁÊÌÁ audit_control, > ÚÁÐÉÓØ lo ÄÌÑ root > Ñ×ÌÑÅÔÓÑ ÌÉÛÎÅÊ, ËÒÏÍÅ ÔÏÇÏ, ÓÏÂÙÔÉÑ ×ÈÏÄÁ × ÓÉÓÔÅÍÕ É ×ÙÈÏÄÁ > ÉÚ ÓÉÓÔÅÍÙ ÂÕÄÕÔ ÐÏÄ×ÅÒÇÁÔØÓÑ ÁÕÄÉÔÕ É ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ > www. > > root:lo,+ex:no > www:fc,+ex:no 553c582 < áÄÍÉÎÉÓÔÒÉÒÏ×ÁÎÉÅ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ --- > áÄÍÉÎÉÓÔÒÉÒÏ×ÁÎÉÅ ÐÏÄÓÉÓÔÅÍÙ ÁÕÄÉÔÁ 560,561c589,590 < ÕÔÉÌÉÔÙ. ëÏÍÁÎÄÁ praudit ÐÒÅÏÂÒÁÚÕÅÔ ÖÕÒÎÁÌ ÁÕÄÉÔÁ < × ÔÅËÓÔÏ×ÙÊ ÆÏÒÍÁÔ; ËÏÍÁÎÄÁ auditreduce ÍÏÖÅÔ ÂÙÔØ --- > ÕÔÉÌÉÔÙ. ëÏÍÁÎÄÁ &man.praudit.1; ÐÒÅÏÂÒÁÚÕÅÔ ÖÕÒÎÁÌ ÁÕÄÉÔÁ > × ÔÅËÓÔÏ×ÙÊ ÆÏÒÍÁÔ; ËÏÍÁÎÄÁ &man.auditreduce.1; ÍÏÖÅÔ ÂÙÔØ 563,566c592,595 < ÁÒÈÉ×ÉÒÏ×ÁÎÉÑ ÉÌÉ ÒÁÓÐÅÞÁÔËÉ. ëÏÍÁÎÄÁ auditreduce < ÐÏÄÄÅÒÖÉ×ÁÅÔ ÍÎÏÖÅÓÔ×Ï ÐÁÒÁÍÅÔÒÏ× ×ÙÂÏÒËÉ, ×ËÌÀÞÁÑ ÔÉÐÙ ÓÏÂÙÔÉÊ, ËÌÁÓÓÙ < ÓÏÂÙÔÉÊ, ÐÏÌØÚÏ×ÁÔÅÌØÓËÉÅ ÓÏÂÙÔÉÑ, ÄÁÔÕ É ×ÒÅÍÑ ÓÏÂÙÔÉÊ É ÐÕÔÉ ÆÁÊÌÏ×, < Ë ËÏÔÏÒÙÍ ÏÔÎÏÓÑÔÓÑ ÓÏÂÙÔÉÑ. --- > ÁÒÈÉ×ÉÒÏ×ÁÎÉÑ ÉÌÉ ÒÁÓÐÅÞÁÔËÉ. íÎÏÖÅÓÔ×Ï ÐÁÒÁÍÅÔÒÏ× ×ÙÂÏÒËÉ > ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ËÏÍÁÎÄÏÊ &man.auditreduce.1;, ×ËÌÀÞÁÑ ÔÉÐÙ > ÓÏÂÙÔÉÊ, ËÌÁÓÓÙ ÓÏÂÙÔÉÊ, ËÏÎËÒÅÔÎÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ, ÄÁÔÕ É > ×ÒÅÍÑ ÓÏÂÙÔÉÊ,Á ÔÁËÖÅ ÐÕÔÉ ÆÁÊÌÏ×, Ë ËÏÔÏÒÙÍ ÏÔÎÏÓÑÔÓÑ ÓÏÂÙÔÉÑ. 568c597 < îÁÐÒÉÍÅÒ, ÕÔÉÌÉÔÁ praudit ×Ù×ÅÄÅÔ ×ÓÅ ÓÏÄÅÒÖÉÍÏÅ --- > îÁÐÒÉÍÅÒ, ÕÔÉÌÉÔÁ &man.praudit.1; ×Ù×ÅÄÅÔ ×ÓÅ ÓÏÄÅÒÖÉÍÏÅ 573c602 < ÷ ÄÁÎÎÏÍ ÐÒÉÍÅÒÅ AUDITFILE - ÖÕÒÎÁÌ, --- > ÷ ÄÁÎÎÏÍ ÐÒÉÍÅÒÅ AUDITFILE - ÖÕÒÎÁÌ, 577,580c606,609 < ÏÞÅÒÅÄØ ÓÏÓÔÏÑÔ ÉÚ ÜÌÅÍÅÎÔÏ×. üÔÉ ÜÌÅÍÅÎÔÙ ËÏÍÁÎÄÁ < praudit ×Ù×ÏÄÉÔ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏ - ÐÏ ÏÄÎÏÍÕ ÎÁ ÓÔÒÏËÕ. < ëÁÖÄÙÊ ÜÌÅÍÅÎÔ ÉÍÅÅÔ ÓÐÅÃÉÆÉÞÅÓËÉÊ ÔÉÐ, ÎÁÐÒÉÍÅÒ < ÚÁÇÏÌÏ×ÏË (header) ÓÏÄÅÒÖÉÔ ÚÁÇÏÌÏ×ÏË pfgbcb, a --- > ÏÞÅÒÅÄØ ÓÏÓÔÏÑÔ ÉÚ ÜÌÅÍÅÎÔÏ×, ËÏÔÏÒÙÅ ËÏÍÁÎÄÁ &man.praudit.1; > ×Ù×ÏÄÉÔ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏ - ÐÏ ÏÄÎÏÍÕ ÎÁ ÓÔÒÏËÕ. ëÁÖÄÙÊ ÜÌÅÍÅÎÔ > ÉÍÅÅÔ ÓÐÅÃÉÆÉÞÅÓËÉÊ ÔÉÐ, ÎÁÐÒÉÍÅÒ > ÚÁÇÏÌÏ×ÏË (header) ÓÏÄÅÒÖÉÔ ÚÁÇÏÌÏ×ÏË ÚÁÐÉÓÉ, a 582,583c611 < lookup. óÌÅÄÕÀÝÉÊ ÐÒÉÍÅÒ ÐÏËÁÚÙ×ÁÅÔ ÚÁÐÉÓØ ÄÌÑ ÓÏÂÙÔÉÑ ×ÙÐÏÌÎÅÎÉÑ < (execve): --- > óÌÅÄÕÀÝÉÊ ÐÒÉÍÅÒ ÐÏËÁÚÙ×ÁÅÔ ÚÁÐÉÓØ ÄÌÑ ÓÏÂÙÔÉÑ execve: 593c621 < üÔÁ ÚÁÐÉÓØ Ñ×ÌÑÅÔÓÑ ÒÅÚÕÌØÔÁÔÏÍ ÕÓÐÅÛÎÏÇÏ ×ÙÐÏÌÎÅÎÉÑ ÓÉÓÔÅÍÎÏÇÏ --- > üÔÁ ÚÁÐÉÓØ ÏÔÒÁÖÁÅÔ ÒÅÚÕÌØÔÁÔ ÕÓÐÅÛÎÏÇÏ ×ÙÐÏÌÎÅÎÉÑ ÓÉÓÔÅÍÎÏÇÏ 595,596c623,624 < ËÏÍÁÎÄÙ finger doug. üÌÅÍÅÎÔ exec ÓÏÄÅÒÖÉÔ É < ËÏÍÁÎÄÕ, ËÏÔÏÒÕÀ ÏÂÏÌÏÞËÁ ÐÅÒÅÄÁÌÁ ÑÄÒÕ, É ÅÅ ÁÒÇÕÍÅÎÔÙ. üÌÅÍÅÎÔ --- > ËÏÍÁÎÄÙ finger doug. ÷ ÜÌÅÍÅÎÔÁÈ ÚÁÐÉÓÉ ÅÓÔØ É > ËÏÍÁÎÄÎÁÑ ÓÔÒÏËÁ, ËÏÔÏÒÕÀ ÏÂÏÌÏÞËÁ ÐÅÒÅÄÁÌÁ ÑÄÒÕ. üÌÅÍÅÎÔ 599,610c627,640 < ÏÐÉÓÙ×ÁÅÔ ÉÓÐÏÌÎÑÅÍÙÊ ÆÁÊÌ, É, × ÞÁÓÔÎÏÓÔÉ, ÐÒÁ×Á ÄÏÓÔÕÐÁ Ë ÆÁÊÌÕ. < üÌÅÍÅÎÔ ÓÕÂßÅËÔ (subject) ÏÐÉÓÙ×ÁÅÔ ÐÒÏÃÅÓÓ, ×ÙÚ×Á×ÛÉÊ < ×ÙÐÏÌÎÅÎÉÅ É ÓÏÈÒÁÎÑÅÔ ÅÇÏ × ×ÉÄÅ ÒÑÄÁ ÚÎÁÞÅÎÉÊ, ÐÒÅÄÓÔÁ×ÌÑÀÝÉÈ ÓÏÂÏÊ < UID ÁÕÄÉÒÕÅÍÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ, ÉÓÐÏÌÎÑÀÝÉÅ (effective) UID É GID, < ÒÅÁÌØÎÙÅ (real) UID É GID, ÉÄÅÎÔÉÆÉËÁÔÏÒ ÐÒÏÃÅÓÓÁ, ÉÄÅÎÔÉÆÉËÁÔÏÒ ÓÅÓÓÉÉ, < ÐÏÒÔ É ÁÄÒÅÓ, Ó ËÏÔÏÒÏÇÏ ÂÙÌ ÏÓÕÝÅÓÔ×ÌÅÎ ×ÈÏÄ × ÓÉÓÔÅÍÕ. < ïÂÒÁÔÉÔÅ ×ÎÉÍÁÎÉÅ - ÉÄÅÎÔÉÆÉËÁÔÏÒ ÁÕÄÉÒÕÅÍÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ É ÒÅÁÌØÎÙÊ < ÉÄÅÎÔÉÆÉËÁÔÏÒ ÐÏÌØÚÏ×ÁÔÅÌÑ ÏÔÌÉÞÁÀÔÓÑ: ÜÔÏ ÚÎÁÞÉÔ, ÞÔÏ ÐÏÌØÚÏ×ÁÔÅÌØ < robert ÐÏ×ÙÓÉÌ ÐÒÉ×ÉÌÅÇÉÉ ÄÏ ÐÏÌØÚÏ×ÁÔÅÌÑ < root ÐÅÒÅÄ ×ÙÐÏÌÎÅÎÉÅÍ ËÏÍÁÎÄÙ, ÎÏ ÓÉÓÔÅÍÁ ÁÕÄÉÔÁ < ÚÁÎÅÓÌÁ ÅÇÏ ÄÅÊÓÔ×ÉÑ × ÖÕÒÎÁÌ ÉÓÐÏÌØÚÕÑ ÉÚÎÁÞÁÌØÎÙÊ ÉÄÅÎÔÉÆÉËÁÔÏÒ. < îÁËÏÎÅÃ, ÜÌÅÍÅÎÔ ×ÏÚ×ÒÁÔ (return) ÏÐÉÓÙ×ÁÅÔ ÕÓÐÅÛÎÏÅ --- > ÏÐÉÓÙ×ÁÅÔ ÉÓÐÏÌÎÑÅÍÙÊ ÆÁÊÌ, É, × ÞÁÓÔÎÏÓÔÉ, ÒÅÖÉÍ ÆÁÊÌÁ, ÞÔÏ > ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÄÌÑ ÏÐÒÅÄÅÌÅÎÉÑ, ÉÓÐÏÌØÚÏ×ÁÌÏ ÌÉ ÐÒÉÌÏÖÅÎÉÅ > setuid. üÌÅÍÅÎÔ ÓÕÂßÅËÔ (subject) ÏÐÉÓÙ×ÁÅÔ ÐÒÏÃÅÓÓ, ×ÙÚ×Á×ÛÉÊ > É ÓÏÈÒÁÎÑÅÔ ÅÇÏ × ×ÉÄÅ ÒÑÄÁ ÚÎÁÞÅÎÉÊ, ÐÒÅÄÓÔÁ×ÌÑÀÝÉÈ ÓÏÂÏÊ > ID ÁÕÄÉÒÕÅÍÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ, ÉÓÐÏÌÎÑÀÝÉÅ (effective) UID É GID, > ÒÅÁÌØÎÙÅ ID ÐÏÌØÚÏ×ÁÔÅÌÑ É ÇÒÕÐÐÙ, ÉÄÅÎÔÉÆÉËÁÔÏÒ ÐÒÏÃÅÓÓÁ, > ÉÄÅÎÔÉÆÉËÁÔÏÒ ÓÅÓÓÉÉ, ÐÏÒÔ É ÁÄÒÅÓ, Ó ËÏÔÏÒÏÇÏ ÂÙÌ ÏÓÕÝÅÓÔ×ÌÅÎ > ×ÈÏÄ × ÓÉÓÔÅÍÕ. ïÂÒÁÔÉÔÅ ×ÎÉÍÁÎÉÅ - ÉÄÅÎÔÉÆÉËÁÔÏÒ ÁÕÄÉÒÕÅÍÏÇÏ > ÐÏÌØÚÏ×ÁÔÅÌÑ É ÒÅÁÌØÎÙÊ ÉÄÅÎÔÉÆÉËÁÔÏÒ ÐÏÌØÚÏ×ÁÔÅÌÑ ÏÔÌÉÞÁÀÔÓÑ: > ÜÔÏ ÚÎÁÞÉÔ, ÞÔÏ ÐÏÌØÚÏ×ÁÔÅÌØ robert ÐÏ×ÙÓÉÌ > ÐÒÉ×ÉÌÅÇÉÉ ÄÏ ÐÏÌØÚÏ×ÁÔÅÌÑ root ÐÅÒÅÄ > ×ÙÐÏÌÎÅÎÉÅÍ ËÏÍÁÎÄÙ, ÎÏ ÓÉÓÔÅÍÁ ÁÕÄÉÔÁ ÚÁÎÅÓÌÁ ÅÇÏ ÄÅÊÓÔ×ÉÑ × > ÖÕÒÎÁÌ ÉÓÐÏÌØÚÕÑ ÉÚÎÁÞÁÌØÎÙÊ ÉÄÅÎÔÉÆÉËÁÔÏÒ. îÁËÏÎÅÃ, ÜÌÅÍÅÎÔ > ×ÏÚ×ÒÁÔ (return) ÏÐÉÓÙ×ÁÅÔ ÕÓÐÅÛÎÏÅ 613a644,647 > äÁÎÎÙÅ × ÆÏÒÍÁÔÅ XML ÔÁËÖÅ ÍÏÖÎÏ > ×Ù×ÅÓÔÉ Ó ÐÏÍÏÝØÀ ËÏÍÁÎÄÙ &man.praudit.1;, ÉÓÐÏÌØÚÕÑ ÁÒÇÕÍÅÎÔ > . > 625,626c659,660 < üÔÁ ËÏÍÁÎÄÁ ×ÙÄÅÌÉÔ ×ÓÅ ÚÁÐÉÓÉ, ÏÔÎÏÓÑÝÉÅÓÑ Ë ÐÏÌØÚÏ×ÁÔÅÌÀ < trhodes, ËÏÔÏÒÙÅ ÈÒÁÎÑÔÓÑ × ÆÁÊÌÅ --- > üÔÁ ËÏÍÁÎÄÁ ×ÙÄÅÌÉÔ ×ÓÅ ÚÁÐÉÓÉ, ÏÔÎÏÓÑÝÉÅÓÑ Ë > trhodes, ËÏÔÏÒÙÅ ÈÒÁÎÑÔÓÑ × 634c668,669 < Ë ÖÕÒÎÁÌÕ ÁÕÄÉÔÁ, ÎÁÈÏÄÑÝÅÍÕÓÑ × /var/audit; --- > Ë ÖÕÒÎÁÌÕ ÁÕÄÉÔÁ, ÎÁÈÏÄÑÝÅÍÕÓÑ × > /var/audit; 639,641c674,676 < ÉÎÆÏÒÍÁÃÉÉ Ï ÐÏ×ÅÄÅÎÉÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ É ÐÒÏÃÅÓÓÏ×, ÞÔÏ ÍÏÖÅÔ ÐÒÉ×ÅÓÔÉ Ë < ÒÁÓËÒÙÔÉÀ ËÏÎÆÉÄÅÎÃÉÁÌØÎÙÈ ÄÁÎÎÙÈ. ðÏÜÔÏÍÕ, ÒÅËÏÍÅÎÄÕÅÔÓÑ ÄÅÌÅÇÉÒÏ×ÁÔØ < ÐÒÁ×Á ÎÁ ÞÔÅÎÉÅ ÖÕÒÎÁÌÁ ÁÕÄÉÔÁ Ó ÂÏÌØÛÏÊ ÏÓÔÏÒÏÖÎÏÓÔØÀ. --- > ÉÎÆÏÒÍÁÃÉÉ Ï ÐÏ×ÅÄÅÎÉÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ É ÐÒÏÃÅÓÓÏ×, ÐÏÜÔÏÍÕ, > ÒÅËÏÍÅÎÄÕÅÔÓÑ ÄÅÌÅÇÉÒÏ×ÁÔØ ÐÒÁ×Á ÎÁ ÞÔÅÎÉÅ ÖÕÒÎÁÌÁ ÁÕÄÉÔÁ > Ó ÂÏÌØÛÏÊ ÏÓÔÏÒÏÖÎÏÓÔØÀ. 645c680 < íÏÎÉÔÏÒÉÎÇ ÓÉÓÔÅÍÙ × ÒÅÁÌØÎÏÍ ×ÒÅÍÅÎÉ --- > íÏÎÉÔÏÒÉÎÇ ÓÉÓÔÅÍÙ × ÒÅÁÌØÎÏÍ ×ÒÅÍÅÎÉ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÐÏÔÏËÏ× ÁÕÄÉÔÁ 647,655c682,691 < ðÏÔÏËÉ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ - ËÌÏÎÉÒÏ×ÁÎÎÙÅ ÐÓÅ×ÄÏ-ÕÓÔÒÏÊÓÔ×Á, < ÉÓÐÏÌØÚÕÑ ËÏÔÏÒÙÅ, ÐÒÉÌÏÖÅÎÉÑ ÍÏÇÕÔ ÐÏÌÕÞÁÔØ ÉÎÆÏÒÍÁÃÉÀ Ï ÓÉÓÔÅÍÎÙÈ < ÓÏÂÙÔÉÑÈ × ÒÅÁÌØÎÏÍ ×ÒÅÍÅÎÉ. ÷ ÐÅÒ×ÕÀ ÏÞÅÒÅÄØ, ÜÔÏ ÄÏÌÖÎÏ < ÚÁÉÎÔÅÒÅÓÏ×ÁÔØ Á×ÔÏÒÏ× ÐÒÏÇÒÁÍÍ ÄÌÑ ÍÏÎÉÔÏÒÉÎÇÁ É ÏÐÒÅÄÅÌÅÎÉÑ < ×ÔÏÒÖÅÎÉÊ × ÓÉÓÔÅÍÕ. ôÅÍ ÎÅ ÍÅÎÅÅ, ÄÌÑ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ ÐÏÔÏËÉ < ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ ÍÏÇÕÔ ÓÔÁÔØ ÕÄÏÂÎÙÍ ÉÎÓÔÒÕÍÅÎÔÏÍ ÄÌÑ ÍÏÎÉÔÏÒÉÎÇÁ < × ÒÅÁÌØÎÏÍ ×ÒÅÍÅÎÉ ÂÅÚ ÔÏÇÏ, ÞÔÏÂÙ ×ÄÁ×ÁÔØÓÑ × ÄÅÔÁÌÉ ÏÂÅÓÐÅÞÅÎÉÑ < ÂÅÚÏÐÁÓÎÏÓÔÉ ÐÒÉ ÐÅÒÅÄÁÞÉ ÐÒÁ× ÎÁ ÞÔÅÎÉÅ ÖÕÒÎÁÌÁ ÁÕÄÉÔÁ. äÌÑ ÔÏÇÏ, < ÞÔÏÂÙ ÐÏÌÕÞÉÔØ ÐÏÔÏË ÓÏÂÙÔÉÊ × ÒÅÁÌØÎÏÍ ×ÒÅÍÅÎÉ ÉÓÐÏÌØÚÕÊÔÅ --- > ðÏÔÏËÉ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ - ËÌÏÎÉÒÏ×ÁÎÎÙÅ ÐÓÅ×ÄÏ-ÕÓÔÒÏÊÓÔ×Á × > ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ ÕÓÔÒÏÊÓÔ×, ÉÓÐÏÌØÚÕÑ ËÏÔÏÒÙÅ, ÐÒÉÌÏÖÅÎÉÑ ÍÏÇÕÔ > ÐÏÌÕÞÁÔØ ÉÎÆÏÒÍÁÃÉÀ Ï ÓÉÓÔÅÍÎÙÈ ÓÏÂÙÔÉÑÈ × ÒÅÁÌØÎÏÍ ×ÒÅÍÅÎÉ. > ÷ ÐÅÒ×ÕÀ ÏÞÅÒÅÄØ, ÜÔÏ ÄÏÌÖÎÏ ÚÁÉÎÔÅÒÅÓÏ×ÁÔØ Á×ÔÏÒÏ× ÐÒÏÇÒÁÍÍ > ÄÌÑ ÍÏÎÉÔÏÒÉÎÇÁ É ÏÐÒÅÄÅÌÅÎÉÑ ×ÔÏÒÖÅÎÉÊ × ÓÉÓÔÅÍÕ. ôÅÍ ÎÅ > ÍÅÎÅÅ, ÄÌÑ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ ÐÏÔÏËÉ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ ÍÏÇÕÔ ÓÔÁÔØ > ÕÄÏÂÎÙÍ ÉÎÓÔÒÕÍÅÎÔÏÍ ÄÌÑ ÍÏÎÉÔÏÒÉÎÇÁ × ÒÅÁÌØÎÏÍ ×ÒÅÍÅÎÉ ÂÅÚ > ÐÒÏÂÌÅÍ, Ó×ÚÑÁÎÎÙÈ Ó ÐÒÁ×ÁÍÉ ÆÁÊÌÁ ÁÕÄÉÔÁ, É ×ÏÚÍÏÖÎÏÓÔØÀ > ÐÒÏÃÅÓÓÁ ÒÏÔÁÃÉÉ, ÞÔÏ ÐÒÉ×ÅÄÅÔ Ë ÏÂÒÙ×Õ ÐÏÔÏËÁ ÓÏÂÙÔÉÊ. > äÌÑ ÔÏÇÏ, ÞÔÏÂÙ ÐÏÌÕÞÉÔØ ÐÏÔÏË ÓÏÂÙÔÉÊ × ÒÅÁÌØÎÏÍ ×ÒÅÍÅÎÉ ÉÓÐÏÌØÚÕÊÔÅ 660,661c696,697 < ðÏ ÕÍÏÌÞÁÎÉÀ, ÐÏÔÏËÉ ÄÏÓÔÕÐÎÙ ÔÏÌØËÏ ÐÏÌØÚÏ×ÁÔÅÌÀ root. þÔÏÂÙ < ÓÄÅÌÁÔØ ÉÈ ÄÏÓÔÕÐÎÙÍÉ ÞÌÅÎÁÍ ÇÒÕÐÐÙ audit ÄÏÂÁ×ØÔÅ --- > ðÏ ÕÍÏÌÞÁÎÉÀ, ÐÏÔÏËÉ ÄÏÓÔÕÐÎÙ ÔÏÌØËÏ ÐÏÌØÚÏ×ÁÔÅÌÀ root. > þÔÏÂÙ ÓÄÅÌÁÔØ ÉÈ ÄÏÓÔÕÐÎÙÍÉ ÞÌÅÎÁÍ ÇÒÕÐÐÙ audit ÄÏÂÁ×ØÔÅ 667c703 < óÍÏÔÒÉÔÅ ÓÔÒÁÎÉÃÕ ÓÐÒÁ×ÏÞÎÉËÁ &man.devfs.rules.5; ÄÌÑ ÂÏÌÅÅ ÐÏÌÎÏÊ --- > óÍÏÔÒÉÔÅ &man.devfs.rules.5; ÄÌÑ ÂÏÌÅÅ ÐÏÌÎÏÊ 673,677c709,716 < ÓÅÔÅ×ÏÇÏ ××ÏÄÁ-×Ù×ÏÄÁ, É ËÏÍÁÎÄÁ praudit < ÚÁÐÕÝÅÎÁ ×Ï ×ÒÅÍÑ SSH-ÓÅÓÓÉÉ, ÔÏ ÌÀÂÏÅ ÓÏÂÙÔÉÅ ÐÏÒÏÄÉÔ ×Ù×ÏÄ < ÓÏÏÂÝÅÎÉÑ, ËÏÔÏÒÏÅ × Ó×ÏÀ ÏÞÅÒÅÄØ ÔÏÖÅ ÂÕÄÅÔ ÓÏÂÙÔÉÅÍ É ÔÁË ÄÏ < ÂÅÓËÏÎÅÞÎÏÓÔÉ. òÁÚÕÍÎÅÅ ÂÕÄÅÔ ÎÅ ÚÁÐÕÓËÁÔØ praudit < ÎÁ ÐÏÔÏËÅ ÓÏÂÙÔÉÊ ÉÚ ÓÅÓÓÉÉ, ËÏÔÏÒÁÑ ÄÅÔÁÌØÎÏ ÖÕÒÎÁÌÉÒÕÅÔÓÑ. --- > ÓÅÔÅ×ÏÇÏ ××ÏÄÁ-×Ù×ÏÄÁ, É ËÏÍÁÎÄÁ &man.praudit.1; > ÚÁÐÕÝÅÎÁ ×Ï ×ÒÅÍÑ SSH-ÓÅÓÓÉÉ, ÔÏ ÂÕÄÅÔ ÓÇÅÎÅÒÉÒÏ×ÁÎ > ÐÏÓÔÏÑÎÎÙÊ ÐÏÔÏË ÓÏÏÂÝÅÎÉÊ ÁÕÄÉÔÁ, ÔÁË ËÁË ËÁÖÄÏÅ ÓÏÂÙÔÉÅ > ×ÙÚÏ×ÅÔ ÅÝÅ ÏÎÄÏ ÓÏÂÙÔÉÅ, É ÔÁË ÄÏ ÂÅÓËÏÎÅÞÎÏÓÔÉ. > òÁÚÕÍÎÅÅ ÂÕÄÅÔ ÚÁÐÕÓËÁÔØ &man.praudit.1; > ÎÁ ÕÓÔÒÏÊÓÔ×Å ÐÏÔÏËÁ ÔÏÌØËÏ ÉÚ ÓÅÓÓÉÊ, × ËÏÔÏÒÙÈ > ÎÅÔ ÂÏÌØÛÏÇÏ ÁÕÄÉÔÁ ××ÏÄÁ-×Ù×ÏÄÁ, ÞÔÏÂÙ ÉÚÂÅÖÁÔØ ÔÁËÏÇÏ > ÐÏ×ÅÄÅÎÉÑ. 685c724 < ÁÕÄÉÔÁ auditd. áÄÍÉÎÉÓÔÒÁÔÏÒÙ ÎÅ ÄÏÌÖÎÙ ÐÙÔÁÔØÓÑ --- > ÁÕÄÉÔÁ &man.auditd.8;. áÄÍÉÎÉÓÔÒÁÔÏÒÙ ÎÅ ÄÏÌÖÎÙ ÐÙÔÁÔØÓÑ 689c728 < ËÏÍÁÎÄÁ audit. óÌÅÄÕÀÝÁÑ ËÏÍÁÎÄÁ ÐÒÉ×ÅÄÅÔ Ë --- > ËÏÍÁÎÄÁ &man.audit.8;. óÌÅÄÕÀÝÁÑ ËÏÍÁÎÄÁ ÐÒÉ×ÅÄÅÔ Ë 692,693c731,732 < ÓÁÍ ÆÁÊÌ - ÐÅÒÅÉÍÅÎÏ×ÁÎ. üÔÏ ÒÅËÏÍÅÎÄÏ×ÁÎÎÙÊ ÓÐÏÓÏ ÒÏÔÁÃÉÉ < ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ×. --- > ÓÁÍ ÆÁÊÌ - ÐÅÒÅÉÍÅÎÏ×ÁÎ, × ÒÅÚÕÌØÔÁÔÅ ÞÅÇÏ Ó ÎÉÍ ÍÏÖÎÏ ÂÕÄÅÔ > ÒÁÂÏÔÁÔØ ÁÄÍÉÎÉÓÔÒÁÔÏÒÕ. 698c737 < åÓÌÉ ÄÅÍÏÎ auditd ÎÅ ÚÁÐÕÝÅÎ, ÔÏ ÜÔÁ ËÏÍÁÎÄÁ --- > åÓÌÉ &man.auditd.8; ÎÅ ÚÁÐÕÝÅÎ, ÔÏ ÜÔÁ ËÏÍÁÎÄÁ 711,714c750,753 < á×ÔÏÍÁÔÉÞÅÓËÁÑ ÒÏÔÁÃÉÑ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ× ×ÏÚÍÏÖÎÁ ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ < ÏÐÃÉÉ × ÆÁÊÌÅ < &man.audit.control.5;, É ÏÐÉÓÁÎ × ÓÅËÃÉÉ < "æÏÒÍÁÔ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÏÇÏ ÆÁÊÌÁ". --- > á×ÔÏÍÁÔÉÞÅÓËÁÑ ÒÏÔÁÃÉÑ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ× ÎÁ ÏÓÎÏ×ÁÎÉÉ > ÉÈ ÒÁÚÍÅÒÁ ×ÏÚÍÏÖÎÁ ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ÏÐÃÉÉ > × ÆÁÊÌÅ &man.audit.control.5;, É ÏÐÉÓÁÎÁ × ÒÁÚÄÅÌÅ > "æÏÒÍÁÔ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÏÇÏ ÆÁÊÌÁ" ÄÁÎÎÏÊ ÇÌÁ×Ù. 722,725c761,764 < ÐÏÓÌÅ ÚÁËÒÙÔÉÑ ÉÈ ÄÅÍÏÎÏÍ auditd. äÌÑ ×ÙÐÏÌÎÅÎÉÑ < ÏÐÒÅÄÅÌÅÎÎÙÈ ÐÏÌØÚÏ×ÁÔÅÌÅÍ ÄÅÊÓÔ×ÉÊ ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÈ ÒÁÚÎÏÏÂÒÁÚÎÙÍ < ÓÏÂÙÔÉÑÍ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ, ×ËÌÀÞÁÑ ÎÏÒÍÁÌØÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ ÒÁÂÏÔÙ ÓÉÓÔÅÍÙ < ÁÕÄÉÔÁ É ÆÉÌØÔÒÁÃÉÀ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ×, ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎ ÓËÒÉÐÔ --- > ÐÏÓÌÅ ÚÁËÒÙÔÉÑ ÉÈ ÄÅÍÏÎÏÍ ÁÕÄÉÔÁ. äÌÑ ×ÙÐÏÌÎÅÎÉÑ > ÏÐÒÅÄÅÌÅÎÎÙÈ ÐÏÌØÚÏ×ÁÔÅÌÅÍ ÄÅÊÓÔ×ÉÊ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÈ ÒÁÚÎÏÏÂÒÁÚÎÙÍ > ÓÏÂÙÔÉÑÍ ÓÉÓÔÅÍÙ ÁÕÄÉÔÁ, ×ËÌÀÞÁÑ ÎÏÒÍÁÌØÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ ÖÕÒÎÁÌÏ× > ÁÕÄÉÔÁ ÐÒÉ ÉÈ ÒÏÔÁÃÉÉ, ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎ ÓËÒÉÐÔ 737,743c776,781 < ðÒÉÍÅÒÁÍÉ ÄÒÕÇÉÈ ÄÅÊÓÔ×ÉÊ ÍÏÇÕÔ ÂÙÔØ, ÎÁÐÒÉÍÅÒ, ËÏÐÉÒÏ×ÁÎÉÅ ÆÁÊÌÏ× × ÍÅÓÔÏ ÉÈ < ÐÏÓÌÅÄÕÀÝÅÇÏ ÈÒÁÎÅÎÉÑ, ÕÄÁÌÅÎÉÅ ÓÔÁÒÙÈ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ×, ÆÉÌØÔÒÁÃÉÑ < ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ× ÄÌÑ ÕÄÁÌÅÎÉÑ ÎÅÎÕÖÎÙÈ ÚÁÐÉÓÅÊ. óËÒÉÐÔ < audit_warn ÂÕÄÅÔ ÚÁÐÕÝÅÎ ÔÏÌØËÏ ÔÏÌØËÏ ÐÒÉ < ËÏÒÒÅËÔÎÏÍ ÚÁËÒÙÔÉÉ ÖÕÒÎÁÌÁ ÓÉÓÔÅÍÏÊ ÁÕÄÉÔÁ É ÎÅ ÚÁÐÕÓÔÉÔÓÑ < ÄÌÑ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ×, ÚÁÐÉÓØ × ËÏÔÏÒÙÅ ÂÙÌÁ ÐÒÅËÒÁÝÅÎÁ × < ÒÅÚÕÌØÔÁÔÅ ÎÅËÏÒÒÅËÔÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ. --- > ðÒÉÍÅÒÁÍÉ ÄÒÕÇÉÈ ÄÅÊÓÔ×ÉÊ ÍÏÇÕÔ ÂÙÔØ, ÎÁÐÒÉÍÅÒ, ËÏÐÉÒÏ×ÁÎÉÅ ÆÁÊÌÏ× > ÁÕÄÉÔÁ ÎÁ ÃÅÎÔÒÁÌÉÚÏ×ÁÎÎÙÊ ÓÅÒ×ÅÒ, ÕÄÁÌÅÎÉÅ ÓÔÁÒÙÈ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ×, > ÆÉÌØÔÒÁÃÉÑ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ× ÄÌÑ ÕÄÁÌÅÎÉÑ ÎÅÎÕÖÎÙÈ ÚÁÐÉÓÅÊ. óËÒÉÐÔ > ÂÕÄÅÔ ÚÁÐÕÝÅÎ ÔÏÌØËÏ ÔÏÌØËÏ ÐÒÉ ËÏÒÒÅËÔÎÏÍ ÚÁËÒÙÔÉÉ ÖÕÒÎÁÌÁ ÓÉÓÔÅÍÏÊ > ÁÕÄÉÔÁ É ÎÅ ÚÁÐÕÓÔÉÔÓÑ ÄÌÑ ÖÕÒÎÁÌØÎÙÈ ÆÁÊÌÏ×, ÚÁÐÉÓØ × ËÏÔÏÒÙÅ ÂÙÌÁ > ÐÒÅËÒÁÝÅÎÁ × ÒÅÚÕÌØÔÁÔÅ ÎÅËÏÒÒÅËÔÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 13:40:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E668BE96 for ; Wed, 5 Mar 2014 13:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A9A11A4E for ; Wed, 5 Mar 2014 13:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s25De0Zd007905 for ; Wed, 5 Mar 2014 13:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s25De0NA007904; Wed, 5 Mar 2014 13:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 5 Mar 2014 13:40:00 GMT Resent-Message-Id: <201403051340.s25De0NA007904@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vladimir Romanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD7D8E53 for ; Wed, 5 Mar 2014 13:36:22 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F143A25 for ; Wed, 5 Mar 2014 13:36:22 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s25DaMEs071944 for ; Wed, 5 Mar 2014 13:36:22 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s25DaMX2071940; Wed, 5 Mar 2014 13:36:22 GMT (envelope-from nobody) Message-Id: <201403051336.s25DaMX2071940@cgiserv.freebsd.org> Date: Wed, 5 Mar 2014 13:36:22 GMT From: Vladimir Romanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187279: Typo in audit part of handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 13:40:01 -0000 >Number: 187279 >Category: docs >Synopsis: Typo in audit part of handbook >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 05 13:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Vladimir Romanov >Release: >Organization: Kurgan TV Centre >Environment: >Description: In audit chapter xml, there are words This audit represents a successful execve call, in which the command finger doug has been run. The arguments token contains BOTH the processed command line presented by the shell to the kernel. What is the purpose of words "both"? Both means that besides the command line there is something else? Is this a typo? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 14:19:24 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26B9EE1F; Wed, 5 Mar 2014 14:19:24 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EDA08DA9; Wed, 5 Mar 2014 14:19:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s25EJNgx024660; Wed, 5 Mar 2014 14:19:23 GMT (envelope-from wblock@freefall.freebsd.org) Received: (from wblock@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s25EJN5U024659; Wed, 5 Mar 2014 14:19:23 GMT (envelope-from wblock) Date: Wed, 5 Mar 2014 14:19:23 GMT Message-Id: <201403051419.s25EJN5U024659@freefall.freebsd.org> To: wblock@FreeBSD.org, freebsd-doc@FreeBSD.org, wblock@FreeBSD.org From: wblock@FreeBSD.org Subject: Re: docs/187279: Typo in audit part of handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 14:19:24 -0000 Synopsis: Typo in audit part of handbook Responsible-Changed-From-To: freebsd-doc->wblock Responsible-Changed-By: wblock Responsible-Changed-When: Wed Mar 5 14:19:07 UTC 2014 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=187279 From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 15:26:19 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 25C445E2 for ; Wed, 5 Mar 2014 15:26:19 +0000 (UTC) Received: from mb49.e2ma.net (mb49.e2ma.net [66.179.68.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4228E826 for ; Wed, 5 Mar 2014 15:26:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mb49.e2ma.net; bh=j3GfruIr1YRnX/gIZ1mP4p8/XiM=; b=DZpAgRpFRfgDuQxZcbdMBoxfeNW4yW+K3QNVM+vHaK3e0Q5ICavD9Fxoe1/eXFuCka5yZhMhcHaE 3qwZT6Y1OemeDgMEJWR/8yonNY+Vw505PgdGgK6w56QTL8fWz0Z5F1mz0KnGpQB+9aLzQcM/rA4c nExEDf3J6uLls9CKlLs= Received: by mb49.e2ma.net id h2t11g18e74q for ; Wed, 5 Mar 2014 09:19:33 -0600 (envelope-from <6997171.1355955@e2ma.net>) MIME-Version: 1.0 Subject: Thank you for visiting Funds2Orgs From: "Gretchen Parker" To: doc@freebsd.org Date: Wed, 05 Mar 2014 15:19:33 -0000 Precedence: bulk Message-ID: X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 15:26:19 -0000 To view this email online, paste this link into your browser: http://t.e2ma.net/message/5b9fe/144wpz ___________________________________ Thank you for your interest in Funds2Orgs (http://t.e2ma.net/click/5b9fe/14= 4wpz/hp3xab). I am excited to connect you with a Funds2Orgs Fundraising Coa= ch. Your Fundraising Coach will guide you through the process of hosting a = successful shoe drive fundraising event. As our previous e-mail explained, Funds2Orgs is a social enterprise that of= fers a proven and effective fundraising strategy. We have helped nonprofit = organizations, churches, schools, and civic groups across the country meet = their fundraising goals and exceed expectations. Through our shoe drive fundraisers, your organization will engage the commu= nity, support micro-enterprises in developing countries, and meet your orga= nization=E2=80=99s goals. If you would like me to connect you with a Funds2Orgs Fundraising Coach to = learn more about Funds2Orgs shoe drive fundraisers, please reply to this em= ail. YOU MATTER! Gretchen Parker Special Projects // ___________________________________ Share This:=20 http://t.e2ma.net/share/outbound/e/5b9fe/144wpz [Share via Email] This email was sent to doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1357359/= 1355955.6997171/1537915059/?v=3Da) opt out using TrueRemove(r) (http://t.e2ma.net/optout/5b9fe/144wpz?r=3DaHR0= cHM6Ly9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzEzNTczNTkvMTM1NTk1NS8= xNTM3OTE1MDU5Lz92PWE=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1357359/1355955.6997171/1537915059/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 2401 Main St | Columbia, SC 29201 US From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 15:26:19 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AFC5F5E3 for ; Wed, 5 Mar 2014 15:26:19 +0000 (UTC) Received: from mb49.e2ma.net (mb49.e2ma.net [66.179.68.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4976C827 for ; Wed, 5 Mar 2014 15:26:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mb49.e2ma.net; bh=LlvRs9vGjxS7CBPS5GykruErqhU=; b=EOwfl2jFOfLFgZGAmGDdlifqyW0qN0DfdnVDqk51aUYm4n50kGhKCmKUnuOcL7c/twcIIQpRVnhF 4skaL3tjW4Si5wNCCIFesEPvCeY2AAYFTgx7nzG9EOOaQFO3HU52KscYSSNsihVJSxWWexyWcfpl APMHdAZeK+QftlRvlYk= Received: by mb49.e2ma.net id h2t11m18e74s for ; Wed, 5 Mar 2014 09:19:35 -0600 (envelope-from <6997171.1355955@e2ma.net>) MIME-Version: 1.0 Subject: Thank you for visiting Funds2Orgs From: "Gretchen Parker" To: freebsd-doc@freebsd.org Date: Wed, 05 Mar 2014 15:19:35 -0000 Precedence: bulk Message-ID: X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 15:26:19 -0000 To view this email online, paste this link into your browser: http://t.e2ma.net/message/5b9fe/9ei8pz ___________________________________ Thank you for your interest in Funds2Orgs (http://t.e2ma.net/click/5b9fe/9e= i8pz/hp3xab). I am excited to connect you with a Funds2Orgs Fundraising Coa= ch. Your Fundraising Coach will guide you through the process of hosting a = successful shoe drive fundraising event. As our previous e-mail explained, Funds2Orgs is a social enterprise that of= fers a proven and effective fundraising strategy. We have helped nonprofit = organizations, churches, schools, and civic groups across the country meet = their fundraising goals and exceed expectations. Through our shoe drive fundraisers, your organization will engage the commu= nity, support micro-enterprises in developing countries, and meet your orga= nization=E2=80=99s goals. If you would like me to connect you with a Funds2Orgs Fundraising Coach to = learn more about Funds2Orgs shoe drive fundraisers, please reply to this em= ail. YOU MATTER! Gretchen Parker Special Projects // ___________________________________ Share This:=20 http://t.e2ma.net/share/outbound/e/5b9fe/9ei8pz [Share via Email] This email was sent to freebsd-doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1357359/= 1355955.6997171/1538445491/?v=3Da) opt out using TrueRemove(r) (http://t.e2ma.net/optout/5b9fe/9ei8pz?r=3DaHR0= cHM6Ly9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzEzNTczNTkvMTM1NTk1NS8= xNTM4NDQ1NDkxLz92PWE=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1357359/1355955.6997171/1538445491/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 2401 Main St | Columbia, SC 29201 US From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 15:30:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64A336C0 for ; Wed, 5 Mar 2014 15:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 288D884F for ; Wed, 5 Mar 2014 15:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s25FU1sp046124 for ; Wed, 5 Mar 2014 15:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s25FU0Ad046123; Wed, 5 Mar 2014 15:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 5 Mar 2014 15:30:00 GMT Resent-Message-Id: <201403051530.s25FU0Ad046123@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Trey Valenta Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C7B969D for ; Wed, 5 Mar 2014 15:29:12 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A23A841 for ; Wed, 5 Mar 2014 15:29:12 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s25FTAQa027358 for ; Wed, 5 Mar 2014 15:29:10 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s25FTA0A027352; Wed, 5 Mar 2014 15:29:10 GMT (envelope-from nobody) Message-Id: <201403051529.s25FTA0A027352@cgiserv.freebsd.org> Date: Wed, 5 Mar 2014 15:29:10 GMT From: Trey Valenta To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187284: ls(1) man page typo X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 15:30:01 -0000 >Number: 187284 >Category: docs >Synopsis: ls(1) man page typo >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 05 15:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Trey Valenta >Release: 10.0 >Organization: >Environment: FreeBSD x1.sea.trey.net 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: In the man page for ls, the section on "-G" reads: -G Enable colorized output. This option is equivalent to defining CLICOLOR in the environment. (See below.) This functionality can be compiled out by removing the definition of COLORLS. COLORLS should be LSCOLORS >How-To-Repeat: man ls | grep -A3 -- -G >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 15:37:16 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4360906 for ; Wed, 5 Mar 2014 15:37:16 +0000 (UTC) Received: from mb49.e2ma.net (mb49.e2ma.net [66.179.68.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D9955921 for ; Wed, 5 Mar 2014 15:37:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mb49.e2ma.net; bh=PU5cIAJ1O4MnQMvx7QQJx0X4oLg=; b=eQ520DluFMKyMtYvuApOvyok7YfgzChPRAua+fpkm3VGb8INZyz/vIM9lSmTY4x7kQ/pBNM1uDCr Yr7J9N2hY2sCcoPG2HVq7elAO6gBORs5UeDqs8wZzGFf9zGZBuppaDI2KkvOvBZnbvI/FfGBfLvr Veiap7eyNXEO0H1LSlE= Received: by mb49.e2ma.net id h2t2ao18e74q for ; Wed, 5 Mar 2014 09:37:14 -0600 (envelope-from <7005363.1355955@e2ma.net>) MIME-Version: 1.0 Subject: Update on Your Conference Event From: "Cliff Smith" To: doc@freebsd.org Date: Wed, 05 Mar 2014 15:37:14 -0000 Precedence: bulk Message-ID: X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 15:37:16 -0000 To view this email online, paste this link into your browser: http://t.e2ma.net/message/pnfge/144wpz ___________________________________ ___________________________________ Share This:=20 http://t.e2ma.net/share/outbound/e/pnfge/144wpz [Share via Email] This email was sent to doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1357359/= 1355955.7005363/1537915059/?v=3Da) opt out using TrueRemove(r) (http://t.e2ma.net/optout/pnfge/144wpz?r=3DaHR0= cHM6Ly9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzEzNTczNTkvMTM1NTk1NS8= xNTM3OTE1MDU5Lz92PWE=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1357359/1355955.7005363/1537915059/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 2401 Main St | Columbia, SC 29201 US From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 15:37:17 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4510E907 for ; Wed, 5 Mar 2014 15:37:17 +0000 (UTC) Received: from mb49.e2ma.net (mb49.e2ma.net [66.179.68.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D51FB922 for ; Wed, 5 Mar 2014 15:37:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mb49.e2ma.net; bh=+uResaeD4DccQebVYcpa8z8r5C0=; b=SACv0RYHf8NViNWcHy3rIlKqO5b2hpNVj6AMxt9D+fOnsxCAafvtgNAobbUGOjjMQGW0tcpKaPX6 QPm22HqgfDjM9tKUlkHDgTTQnusvVW2vCNL5+NMeR432+bGpMcodczLCoQMGFNFFWLT8Rzo5FFS4 Iw/XSAXJRdiR2gn3w1g= Received: by mb49.e2ma.net id h2t2aq18e74o for ; Wed, 5 Mar 2014 09:37:14 -0600 (envelope-from <7005363.1355955@e2ma.net>) MIME-Version: 1.0 Subject: Update on Your Conference Event From: "Cliff Smith" To: freebsd-doc@freebsd.org Date: Wed, 05 Mar 2014 15:37:14 -0000 Precedence: bulk Message-ID: X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 15:37:17 -0000 To view this email online, paste this link into your browser: http://t.e2ma.net/message/pnfge/9ei8pz ___________________________________ ___________________________________ Share This:=20 http://t.e2ma.net/share/outbound/e/pnfge/9ei8pz [Share via Email] This email was sent to freebsd-doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1357359/= 1355955.7005363/1538445491/?v=3Da) opt out using TrueRemove(r) (http://t.e2ma.net/optout/pnfge/9ei8pz?r=3DaHR0= cHM6Ly9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzEzNTczNTkvMTM1NTk1NS8= xNTM4NDQ1NDkxLz92PWE=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1357359/1355955.7005363/1538445491/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 2401 Main St | Columbia, SC 29201 US From owner-freebsd-doc@FreeBSD.ORG Wed Mar 5 16:25:05 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70CE0925; Wed, 5 Mar 2014 16:25:05 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 45F3FDC5; Wed, 5 Mar 2014 16:25:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s25GP5r5064274; Wed, 5 Mar 2014 16:25:05 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s25GP5hJ064273; Wed, 5 Mar 2014 16:25:05 GMT (envelope-from eadler) Date: Wed, 5 Mar 2014 16:25:05 GMT Message-Id: <201403051625.s25GP5hJ064273@freefall.freebsd.org> To: t@trey.net, eadler@FreeBSD.org, freebsd-doc@FreeBSD.org From: eadler@FreeBSD.org Subject: Re: docs/187284: ls(1) man page typo X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 16:25:05 -0000 Synopsis: ls(1) man page typo State-Changed-From-To: open->closed State-Changed-By: eadler State-Changed-When: Wed Mar 5 16:25:04 UTC 2014 State-Changed-Why: LSCOLORS in an envrionment variable documented in the man page for controlling the ls colors. COLORLS is a compile time macro which controls wether color exists in the ls binary at all. http://www.freebsd.org/cgi/query-pr.cgi?pr=187284 From owner-freebsd-doc@FreeBSD.ORG Thu Mar 6 05:41:52 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B59F5E3F for ; Thu, 6 Mar 2014 05:41:52 +0000 (UTC) Received: from mail184.e2ma.net (mail184.e2ma.net [66.179.147.184]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7BD2DEAF for ; Thu, 6 Mar 2014 05:41:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Content-Transfer-Encoding:To:From:Subject:Date:Message-ID; i=@mail184.e2ma.net; bh=8RAMYB4AKqnOVzBGATAQfYcpEsY=; b=lnMbAYHRd2EWNyZOKoodyitumX1Nh/EA6EoAkP7QW7M1qcRWModnQTEOHrQLDdRC3rgv6eeYar5T tXjdwP1sPEoAeWeyYQ7CngzH4wOyqHC7gu/lsywwPSpJxULLDSjpJFLzatEviFPpcCIWDrVHBhvm gnch746sE598jdNQvDk= Received: by mail184.e2ma.net id h305a018e74p for ; Wed, 5 Mar 2014 23:11:44 -0600 (envelope-from ) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable To: doc@freebsd.org From: "Jimmy LaRose" Subject: Confirming changes to your subscription to the Jimmy LaRose email list Date: Thu, 06 Mar 2014 05:11:44 -0000 Message-ID: <8c48b6ff87b17fc058c587ab9b195609.1355955@e2ma.net> X-Message-Type: 3 Delivery-Key: 224888289.1355955 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Mar 2014 05:41:52 -0000 Your subscription to the Jimmy LaRose list has been updated. To view your subscription details, or to make additional changes, use this = link: https://app.e2ma.net/app2/audience/signup/1357359/1355955/1537915059/?v=3Da To opt out of our list at any time, please click or copy and paste this lin= k in your browser window: http://t.e2ma.net/signup/optout/pjc3/144wpz/pmd3?r=3DaHR0cHM6Ly9hcHAuZTJtYS= 5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzEzNTczNTkvMTM1NTk1NS8xNTM3OTE1MDU5Lz92P= WE=3D From owner-freebsd-doc@FreeBSD.ORG Thu Mar 6 15:46:21 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C12BC469 for ; Thu, 6 Mar 2014 15:46:21 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 59F53610 for ; Thu, 6 Mar 2014 15:46:21 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s26FkJEH055235 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Thu, 6 Mar 2014 08:46:20 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s26FkJBw055232 for ; Thu, 6 Mar 2014 08:46:19 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Thu, 6 Mar 2014 08:46:19 -0700 (MST) From: Warren Block To: doc@FreeBSD.org Subject: Interactive text analysis Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Thu, 06 Mar 2014 08:46:20 -0700 (MST) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Mar 2014 15:46:21 -0000 http://www.hemingwayapp.com/ shows an interesting way of examining and making suggestions on improving text quality. Ultimately, it would be really nice to see textproc/igor integrated with an editor. From owner-freebsd-doc@FreeBSD.ORG Thu Mar 6 17:30:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 090EAD3E for ; Thu, 6 Mar 2014 17:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DADA589 for ; Thu, 6 Mar 2014 17:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s26HU1OX059767 for ; Thu, 6 Mar 2014 17:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s26HU1bo059766; Thu, 6 Mar 2014 17:30:01 GMT (envelope-from gnats) Resent-Date: Thu, 6 Mar 2014 17:30:01 GMT Resent-Message-Id: <201403061730.s26HU1bo059766@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jack-Benny Persson Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBE3488A for ; Thu, 6 Mar 2014 17:21:38 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C91C0FB0 for ; Thu, 6 Mar 2014 17:21:38 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s26HLcsP053124 for ; Thu, 6 Mar 2014 17:21:38 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s26HLcG5053121; Thu, 6 Mar 2014 17:21:38 GMT (envelope-from nobody) Message-Id: <201403061721.s26HLcG5053121@cgiserv.freebsd.org> Date: Thu, 6 Mar 2014 17:21:38 GMT From: Jack-Benny Persson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187321: Clarification needed on using geli rc.d script X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Mar 2014 17:30:02 -0000 >Number: 187321 >Category: docs >Synopsis: Clarification needed on using geli rc.d script >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 06 17:30:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jack-Benny Persson >Release: FreeBSD 10.0 >Organization: >Environment: >Description: When automatically attaching a provider during boot, the provider will detach itself again if it's not mounted with an entry in /etc/fstab during boot. This could need some clarification in chapter 18.14.2.1. >How-To-Repeat: >Fix: See attached patch. Patch attached with submission follows: Index: en_US.ISO8859-1/books/handbook/disks/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/disks/chapter.xml (revision 44144) +++ en_US.ISO8859-1/books/handbook/disks/chapter.xml (arbetskopia) @@ -3164,6 +3164,20 @@ the geli provider from the kernel before the system shuts down. + + During boot the system will prompt for the passphrase to + attach the provider. If the correct password is given the + system will attach the provider. But, if the provider is not + mounted by an entry in /etc/fstab the + provider will be detached again. + So, in order to keep the provider attached an entry in + /etc/fstab is necessary. See + &man.fstab.5; for more information. + + + + + More information about configuring rc.d is provided in the rc.d section of the >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 00:02:37 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA07FA39; Fri, 7 Mar 2014 00:02:37 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7CFA9E04; Fri, 7 Mar 2014 00:02:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2702bQ5086533; Fri, 7 Mar 2014 00:02:37 GMT (envelope-from bjk@freefall.freebsd.org) Received: (from bjk@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2702bGS086532; Fri, 7 Mar 2014 00:02:37 GMT (envelope-from bjk) Date: Fri, 7 Mar 2014 00:02:37 GMT Message-Id: <201403070002.s2702bGS086532@freefall.freebsd.org> To: bjk@FreeBSD.org, freebsd-doc@FreeBSD.org, bjk@FreeBSD.org From: bjk@FreeBSD.org Subject: Re: docs/187241: [patch] Small number of spelling mistakes X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 00:02:37 -0000 Synopsis: [patch] Small number of spelling mistakes Responsible-Changed-From-To: freebsd-doc->bjk Responsible-Changed-By: bjk Responsible-Changed-When: Fri Mar 7 00:02:25 UTC 2014 Responsible-Changed-Why: take http://www.freebsd.org/cgi/query-pr.cgi?pr=187241 From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 12:29:49 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 615E7D82; Fri, 7 Mar 2014 12:29:49 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 502689AE; Fri, 7 Mar 2014 12:29:49 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 2335C6A9; Fri, 7 Mar 2014 12:29:48 +0000 (UTC) Date: Fri, 7 Mar 2014 12:29:46 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@freebsd.org, freebsd-doc@freebsd.org, gabor@FreeBSD.org Message-ID: <723919869.0.1394195387732.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_DOC #73 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Jenkins-Job: FreeBSD_DOC X-Jenkins-Result: FAILURE X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 12:29:49 -0000 See Changes: [gabor] - Move the PGP keyring generation to the language-independent share directory Discussed with: hrs, wblock [gabor] - Allow generating only PGP fingerprints ------------------------------------------ [...truncated 80 lines...] ===> en_US.ISO8859-1/books (all) ===> en_US.ISO8859-1/books/arch-handbook (all) ===> en_US.ISO8859-1/books/design-44bsd (all) ===> en_US.ISO8859-1/books/dev-model (all) ===> en_US.ISO8859-1/books/developers-handbook (all) ===> en_US.ISO8859-1/books/faq (all) ===> en_US.ISO8859-1/books/fdp-primer (all) ===> en_US.ISO8859-1/books/handbook (all) ===> en_US.ISO8859-1/books/pmake (all) ===> en_US.ISO8859-1/books/porters-handbook (all) ===> bn_BD.UTF-8 (all) ===> bn_BD.UTF-8/articles (all) ===> bn_BD.UTF-8/articles/explaining-bsd (all) ===> bn_BD.UTF-8/articles/new-users (all) ===> da_DK.ISO8859-1 (all) ===> da_DK.ISO8859-1/articles (all) ===> da_DK.ISO8859-1/articles/ipsec-must (all) ===> da_DK.ISO8859-1/articles/pxe (all) ===> de_DE.ISO8859-1 (all) ===> de_DE.ISO8859-1/articles (all) ===> de_DE.ISO8859-1/articles/contributing (all) ===> de_DE.ISO8859-1/articles/contributing-ports (all) ===> de_DE.ISO8859-1/articles/explaining-bsd (all) ===> de_DE.ISO8859-1/articles/freebsd-update-server (all) ===> de_DE.ISO8859-1/articles/laptop (all) ===> de_DE.ISO8859-1/articles/linux-comparison (all) ===> de_DE.ISO8859-1/articles/nanobsd (all) ===> de_DE.ISO8859-1/articles/new-users (all) ===> de_DE.ISO8859-1/articles/port-mentor-guidelines (all) ===> de_DE.ISO8859-1/articles/solid-state (all) ===> de_DE.ISO8859-1/books (all) ===> de_DE.ISO8859-1/books/developers-handbook (all) ===> de_DE.ISO8859-1/books/faq (all) ===> de_DE.ISO8859-1/books/fdp-primer (all) ===> de_DE.ISO8859-1/books/handbook (all) ===> de_DE.ISO8859-1/books/porters-handbook (all) ===> el_GR.ISO8859-7 (all) ===> el_GR.ISO8859-7/articles (all) ===> el_GR.ISO8859-7/articles/bsdl-gpl (all) ===> el_GR.ISO8859-7/articles/compiz-fusion (all) ===> el_GR.ISO8859-7/articles/contributing (all) ===> el_GR.ISO8859-7/articles/cvs-freebsd (all) ===> el_GR.ISO8859-7/articles/explaining-bsd (all) ===> el_GR.ISO8859-7/articles/freebsd-questions (all) ===> el_GR.ISO8859-7/articles/gjournal-desktop (all) ===> el_GR.ISO8859-7/articles/greek-language-support (all) ===> el_GR.ISO8859-7/articles/laptop (all) ===> el_GR.ISO8859-7/articles/linux-users (all) ===> el_GR.ISO8859-7/articles/mailing-list-faq (all) ===> el_GR.ISO8859-7/articles/nanobsd (all) ===> el_GR.ISO8859-7/articles/new-users (all) ===> el_GR.ISO8859-7/articles/problem-reports (all) ===> el_GR.ISO8859-7/articles/releng (all) ===> el_GR.ISO8859-7/articles/releng-packages (all) ===> el_GR.ISO8859-7/books (all) ===> el_GR.ISO8859-7/books/faq (all) ===> el_GR.ISO8859-7/books/handbook (all) ===> es_ES.ISO8859-1 (all) ===> es_ES.ISO8859-1/articles (all) ===> es_ES.ISO8859-1/articles/casestudy-argentina.com (all) ===> es_ES.ISO8859-1/articles/contributing (all) ===> es_ES.ISO8859-1/articles/cvs-freebsd (all) ===> es_ES.ISO8859-1/articles/explaining-bsd (all) ===> es_ES.ISO8859-1/articles/fbsd-from-scratch (all) ===> es_ES.ISO8859-1/articles/fdp-es (all) ===> es_ES.ISO8859-1/articles/laptop (all) ===> es_ES.ISO8859-1/articles/linux-comparison (all) ===> es_ES.ISO8859-1/articles/linux-users (all) ===> es_ES.ISO8859-1/articles/mailing-list-faq (all) ===> es_ES.ISO8859-1/articles/nanobsd (all) ===> es_ES.ISO8859-1/articles/p4-primer (all) ===> es_ES.ISO8859-1/articles/problem-reports (all) ===> es_ES.ISO8859-1/articles/releng (all) ===> es_ES.ISO8859-1/books (all) ===> es_ES.ISO8859-1/books/faq (all) ===> es_ES.ISO8859-1/books/handbook (all) ===> fr_FR.ISO8859-1 (all) ===> fr_FR.ISO8859-1/articles (all) ===> fr_FR.ISO8859-1/articles/building-products (all) ===> fr_FR.ISO8859-1/articles/committers-guide (all) ===> fr_FR.ISO8859-1/articles/contributing (all) ===> fr_FR.ISO8859-1/articles/contributing-ports (all) ===> fr_FR.ISO8859-1/articles/contributors (all) ===> fr_FR.ISO8859-1/articles/explaining-bsd (all) ===> fr_FR.ISO8859-1/articles/filtering-bridges (all) ===> fr_FR.ISO8859-1/articles/fonts (all) ===> fr_FR.ISO8859-1/articles/ipsec-must (all) ===> fr_FR.ISO8859-1/articles/laptop (all) ===> fr_FR.ISO8859-1/articles/linux-users (all) ===> fr_FR.ISO8859-1/articles/mh (all) ===> fr_FR.ISO8859-1/articles/nanobsd (all) ===> fr_FR.ISO8859-1/articles/new-users (all) ===> fr_FR.ISO8859-1/articles/pam (all) ===> fr_FR.ISO8859-1/articles/pr-guidelines (all) ===> fr_FR.ISO8859-1/articles/problem-reports (all) ===> fr_FR.ISO8859-1/articles/releng-packages (all) ===> fr_FR.ISO8859-1/books (all) ===> fr_FR.ISO8859-1/books/faq (all) ===> fr_FR.ISO8859-1/books/handbook (all) ===> fr_FR.ISO8859-1/books/fdp-primer (all) ===> fr_FR.ISO8859-1/books/developers-handbook (all) ===> hu_HU.ISO8859-2 (all) ===> hu_HU.ISO8859-2/articles (all) ===> hu_HU.ISO8859-2/articles/compiz-fusion (all) ===> hu_HU.ISO8859-2/articles/cups (all) ===> hu_HU.ISO8859-2/articles/explaining-bsd (all) ===> hu_HU.ISO8859-2/articles/gjournal-desktop (all) ===> hu_HU.ISO8859-2/articles/laptop (all) ===> hu_HU.ISO8859-2/articles/linux-comparison (all) ===> hu_HU.ISO8859-2/articles/linux-users (all) ===> hu_HU.ISO8859-2/books (all) ===> hu_HU.ISO8859-2/books/faq (all) ===> hu_HU.ISO8859-2/books/fdp-primer (all) ===> hu_HU.ISO8859-2/books/handbook (all) ===> it_IT.ISO8859-15 (all) ===> it_IT.ISO8859-15/articles (all) ===> it_IT.ISO8859-15/articles/committers-guide (all) ===> it_IT.ISO8859-15/articles/explaining-bsd (all) ===> it_IT.ISO8859-15/articles/filtering-bridges (all) ===> it_IT.ISO8859-15/articles/new-users (all) ===> it_IT.ISO8859-15/articles/vm-design (all) ===> it_IT.ISO8859-15/books (all) ===> it_IT.ISO8859-15/books/handbook (all) ===> it_IT.ISO8859-15/books/unix-introduction (all) ===> ja_JP.eucJP (all) ===> ja_JP.eucJP/articles (all) ===> ja_JP.eucJP/articles/contributing (all) ===> ja_JP.eucJP/articles/contributors (all) ===> ja_JP.eucJP/articles/fbsd-from-scratch (all) ===> ja_JP.eucJP/articles/fonts (all) ===> ja_JP.eucJP/articles/ipsec-must (all) ===> ja_JP.eucJP/articles/problem-reports (all) ===> ja_JP.eucJP/books (all) ===> ja_JP.eucJP/books/design-44bsd (all) ===> ja_JP.eucJP/books/faq (all) ===> ja_JP.eucJP/books/handbook (all) ===> ja_JP.eucJP/books/porters-handbook (all) ===> mn_MN.UTF-8 (all) ===> mn_MN.UTF-8/books (all) ===> mn_MN.UTF-8/books/handbook (all) ===> nl_NL.ISO8859-1 (all) ===> nl_NL.ISO8859-1/articles (all) ===> nl_NL.ISO8859-1/articles/contributing (all) ===> nl_NL.ISO8859-1/articles/contributing-ports (all) ===> nl_NL.ISO8859-1/articles/explaining-bsd (all) ===> nl_NL.ISO8859-1/articles/problem-reports (all) ===> nl_NL.ISO8859-1/articles/solid-state (all) ===> nl_NL.ISO8859-1/books (all) ===> nl_NL.ISO8859-1/books/handbook (all) ===> pl_PL.ISO8859-2 (all) ===> pl_PL.ISO8859-2/articles (all) ===> pl_PL.ISO8859-2/articles/filtering-bridges (all) ===> pl_PL.ISO8859-2/articles/new-users (all) ===> pl_PL.ISO8859-2/books (all) ===> pl_PL.ISO8859-2/books/handbook (all) ===> pt_BR.ISO8859-1 (all) ===> pt_BR.ISO8859-1/articles (all) ===> pt_BR.ISO8859-1/articles/building-products (all) ===> pt_BR.ISO8859-1/articles/contributing (all) ===> pt_BR.ISO8859-1/articles/contributing-ports (all) ===> pt_BR.ISO8859-1/articles/explaining-bsd (all) ===> pt_BR.ISO8859-1/articles/freebsd-questions (all) ===> pt_BR.ISO8859-1/articles/freebsd-update-server (all) ===> pt_BR.ISO8859-1/articles/hubs (all) ===> pt_BR.ISO8859-1/articles/linux-users (all) ===> pt_BR.ISO8859-1/articles/new-users (all) ===> pt_BR.ISO8859-1/articles/portbuild (all) ===> pt_BR.ISO8859-1/articles/problem-reports (all) ===> pt_BR.ISO8859-1/books (all) ===> pt_BR.ISO8859-1/books/faq (all) ===> pt_BR.ISO8859-1/books/fdp-primer (all) ===> ru_RU.KOI8-R (all) ===> ru_RU.KOI8-R/articles (all) ===> ru_RU.KOI8-R/articles/committers-guide (all) ===> ru_RU.KOI8-R/articles/console-server (all) ===> ru_RU.KOI8-R/articles/contributing (all) ===> ru_RU.KOI8-R/articles/cups (all) ===> ru_RU.KOI8-R/articles/custom-gcc (all) ===> ru_RU.KOI8-R/articles/cvs-freebsd (all) ===> ru_RU.KOI8-R/articles/explaining-bsd (all) ===> ru_RU.KOI8-R/articles/fbsd-from-scratch (all) ===> ru_RU.KOI8-R/articles/fonts (all) ===> ru_RU.KOI8-R/articles/freebsd-questions (all) ===> ru_RU.KOI8-R/articles/geom-class (all) ===> ru_RU.KOI8-R/articles/gjournal-desktop (all) ===> ru_RU.KOI8-R/articles/hubs (all) ===> ru_RU.KOI8-R/articles/ipsec-must (all) ===> ru_RU.KOI8-R/articles/laptop (all) ===> ru_RU.KOI8-R/articles/linux-comparison (all) ===> ru_RU.KOI8-R/articles/mailing-list-faq (all) ===> ru_RU.KOI8-R/articles/mh (all) ===> ru_RU.KOI8-R/articles/new-users (all) ===> ru_RU.KOI8-R/articles/pam (all) ===> ru_RU.KOI8-R/articles/portbuild (all) ===> ru_RU.KOI8-R/articles/pr-guidelines (all) ===> ru_RU.KOI8-R/articles/problem-reports (all) ===> ru_RU.KOI8-R/articles/relaydelay (all) ===> ru_RU.KOI8-R/articles/releng (all) ===> ru_RU.KOI8-R/articles/releng-packages (all) ===> ru_RU.KOI8-R/articles/solid-state (all) ===> ru_RU.KOI8-R/articles/vm-design (all) ===> ru_RU.KOI8-R/books (all) ===> ru_RU.KOI8-R/books/faq (all) ===> ru_RU.KOI8-R/books/handbook (all) ===> ru_RU.KOI8-R/books/porters-handbook (all) ===> sr_YU.ISO8859-2 (all) ===> sr_YU.ISO8859-2/articles (all) ===> tr_TR.ISO8859-9 (all) ===> tr_TR.ISO8859-9/articles (all) ===> tr_TR.ISO8859-9/articles/explaining-bsd (all) ===> zh_CN.UTF-8 (all) ===> zh_CN.UTF-8/articles (all) ===> zh_CN.UTF-8/articles/contributing (all) ===> zh_CN.UTF-8/articles/cvs-freebsd (all) ===> zh_CN.UTF-8/articles/linux-users (all) ===> zh_CN.UTF-8/articles/nanobsd (all) ===> zh_CN.UTF-8/articles/rc-scripting (all) ===> zh_CN.UTF-8/articles/remote-install (all) ===> zh_CN.UTF-8/books (all) ===> zh_CN.UTF-8/books/arch-handbook (all) ===> zh_CN.UTF-8/books/handbook (all) ===> zh_CN.UTF-8/books/porters-handbook (all) ===> zh_TW.Big5 (all) ===> zh_TW.Big5/articles (all) ===> zh_TW.Big5/articles/contributing (all) ===> zh_TW.Big5/articles/cvs-freebsd (all) ===> zh_TW.Big5/articles/freebsd-questions (all) ===> zh_TW.Big5/articles/hubs (all) ===> zh_TW.Big5/articles/mailing-list-faq (all) ===> zh_TW.Big5/articles/nanobsd (all) ===> zh_TW.Big5/articles/pr-guidelines (all) ===> zh_TW.Big5/articles/problem-reports (all) ===> zh_TW.Big5/articles/remote-install (all) ===> zh_TW.Big5/books (all) ===> zh_TW.Big5/books/developers-handbook (all) ===> zh_TW.Big5/books/fdp-primer (all) ===> zh_TW.Big5/books/handbook (all) ===> zh_TW.Big5/books/porters-handbook (all) ===> share (all) ===> share/pgpkeys (all) "Makefile", line 20: Could not find /share/mk/doc.project.mk make: fatal errors encountered -- cannot continue *** [all] Error code 1 Stop in *** [all] Error code 1 Stop in Build step 'Execute shell' marked build as failure From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 13:24:16 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B023C86 for ; Fri, 7 Mar 2014 13:24:16 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 76BA8E94 for ; Fri, 7 Mar 2014 13:24:16 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s27DOG2e042185 for ; Fri, 7 Mar 2014 13:24:16 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s27DOGN2042183 for freebsd-doc@FreeBSD.org; Fri, 7 Mar 2014 13:24:16 GMT (envelope-from www-data) Date: Fri, 7 Mar 2014 13:24:16 GMT From: User Www-data Message-Id: <201403071324.s27DOGN2042183@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 13:24:16 -0000 install -C -o www-data -g www-data -m 444 imagelib/callouts/8.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/9.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/10.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/11.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/12.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/13.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/14.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/15.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/16.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/17.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/18.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/19.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/20.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/21.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 book.html /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook install -C -o www-data -g www-data -m 444 docbook.css /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook install -C -o www-data -g www-data -m 444 imagelib/callouts/1.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/2.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/3.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/4.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/5.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/6.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/7.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/8.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/9.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/10.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/11.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/12.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/13.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/14.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/15.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/16.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/17.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/18.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/19.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/20.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/21.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/handbook.html -> /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/index.html /home/www/build/head/en_US.ISO8859-1/htdocs/doc/faq -> /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/faq /home/www/build/head/en_US.ISO8859-1/htdocs/doc/handbook -> /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/handbook /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en -> /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1 "Makefile", line 20: Could not find /share/mk/doc.project.mk make: fatal errors encountered -- cannot continue *** [all-pgpkeyring] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/doc. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 250.97 real 239.76 user 9.92 sys From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 14:20:18 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64DB0DB for ; Fri, 7 Mar 2014 14:20:18 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 509DD3E6 for ; Fri, 7 Mar 2014 14:20:18 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s27EKI2C099437 for ; Fri, 7 Mar 2014 14:20:18 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s27EKI8D099435 for freebsd-doc@FreeBSD.org; Fri, 7 Mar 2014 14:20:18 GMT (envelope-from www-data) Date: Fri, 7 Mar 2014 14:20:18 GMT From: User Www-data Message-Id: <201403071420.s27EKI8D099435@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 14:20:18 -0000 install -C -o www-data -g www-data -m 444 imagelib/callouts/8.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/9.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/10.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/11.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/12.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/13.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/14.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/15.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/16.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/17.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/18.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/19.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/20.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/21.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 book.html /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook install -C -o www-data -g www-data -m 444 docbook.css /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook install -C -o www-data -g www-data -m 444 imagelib/callouts/1.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/2.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/3.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/4.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/5.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/6.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/7.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/8.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/9.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/10.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/11.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/12.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/13.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/14.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/15.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/16.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/17.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/18.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/19.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/20.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/21.png /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/handbook.html -> /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/porters-handbook/index.html /home/www/build/head/en_US.ISO8859-1/htdocs/doc/faq -> /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/faq /home/www/build/head/en_US.ISO8859-1/htdocs/doc/handbook -> /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1/books/handbook /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en -> /home/www/build/head/en_US.ISO8859-1/htdocs/doc/en_US.ISO8859-1 "Makefile", line 20: Could not find /share/mk/doc.project.mk make: fatal errors encountered -- cannot continue *** [all-pgpkeyring] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/doc. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 13.90 real 6.40 user 7.87 sys From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 15:16:43 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C86CAA5C; Fri, 7 Mar 2014 15:16:43 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [78.47.69.234]) by mx1.freebsd.org (Postfix) with ESMTP id 84633B21; Fri, 7 Mar 2014 15:16:43 +0000 (UTC) Received: from [IPv6:2001:470:d701::dc56:306f:2ba3:9185] (unknown [IPv6:2001:470:d701:0:dc56:306f:2ba3:9185]) by mail.jr-hosting.nl (Postfix) with ESMTPSA id 5A0AC3F4B2; Fri, 7 Mar 2014 16:16:41 +0100 (CET) Content-Type: multipart/signed; boundary="Apple-Mail=_074DE44E-D12C-498B-913D-5AF161B57116"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: Build failed in Jenkins: FreeBSD_DOC #73 From: Remko Lodder In-Reply-To: <723919869.0.1394195387732.JavaMail.jenkins@jenkins-9.freebsd.org> Date: Fri, 7 Mar 2014 16:16:38 +0100 Message-Id: <10D64EA3-5FB4-4754-B3C4-B18EE1F05DD6@FreeBSD.org> References: <723919869.0.1394195387732.JavaMail.jenkins@jenkins-9.freebsd.org> To: jenkins-admin@freebsd.org X-Mailer: Apple Mail (2.1874) Cc: freebsd-doc@freebsd.org, gabor@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 15:16:43 -0000 --Apple-Mail=_074DE44E-D12C-498B-913D-5AF161B57116 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii On 07 Mar 2014, at 13:29, jenkins-admin@freebsd.org wrote: > See >=20 > Changes: >=20 > [gabor] - Move the PGP keyring generation to the language-independent = share directory >=20 > Discussed with: hrs, wblock >=20 > [gabor] - Allow generating only PGP fingerprints >=20 >=20 This is nice! --=20 /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_074DE44E-D12C-498B-913D-5AF161B57116 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJTGeLWAAoJEKjD27JZ84ywOrMQAJGYyunee7ZreZFat4KRqY+y yxj9PukRMYYO2DEvCfVft1UomtT/D0G75YzolmY8qjjCyIc3p7DPhDgxvscjx16r ZL6rTwmmTP+x7fulCMjsluBMHZMti7qzxKJOSJJBX7qE36VI3PH/ABTdGVlfA+rd jgs99mOAiTE8gvni+CW2HxDIP0hdU0RclZ5kLbG9GSU6bqU8Ac8lzLB1HKTF87es HUWQAgbxBBQZGj/SOYdEDjMXjn3wUz8nE/yE46F31a/OlqzFZUUppP/E1p3mzDdA JtDt1GXsrgkuDJiCl+erfZKJ9cHXzwUSbxzmyMmEOqSIcOQzBsQ00xLUhKnlf/MA 5yQpzpD9VwyzMImxYWGUCXtJ2Smd8FB2KD7LexhYXkno2XgHMfumhvBdlXyNdqkQ rlvG3Dn315ijU+cBOQqwOQ0dlxbYix8Ah+vXd4Hlt7Q/mAkEaGdzIfxYjycxhmMD DdTPPxxSHrWeHn4EKthcNmobBlX3OTGbddsH5swRZH/BlZ+SlcBheotLtNnE2cFT gQMgfUG8yxCrj84ERGu9+r9Ui7pf05ih8NRAiY90C7vr5lMcveBPTtAu2kqC0bSt SRTGpIW2fac+77WZOFdmH0f38nCjmPexdxZWKw8SEyMNQGsqdsOpElAcBiNG8EIu 5GfojEdDUSo+IAZ21nUD =pwXx -----END PGP SIGNATURE----- --Apple-Mail=_074DE44E-D12C-498B-913D-5AF161B57116-- From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 15:25:45 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78AB1FBD for ; Fri, 7 Mar 2014 15:25:45 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 65396BDF for ; Fri, 7 Mar 2014 15:25:45 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s27FPjI7001431 for ; Fri, 7 Mar 2014 15:25:45 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s27FPjDN001429 for freebsd-doc@FreeBSD.org; Fri, 7 Mar 2014 15:25:45 GMT (envelope-from www-data) Date: Fri, 7 Mar 2014 15:25:45 GMT From: User Www-data Message-Id: <201403071525.s27FPjDN001429@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 15:25:45 -0000 install -C -o www-data -g www-data -m 444 imagelib/callouts/7.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/8.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/9.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/10.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/11.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/12.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/13.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/14.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/15.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/16.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/17.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/18.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/19.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/20.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/21.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 book.html /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook install -C -o www-data -g www-data -m 444 docbook.css /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook install -C -o www-data -g www-data -m 444 imagelib/callouts/1.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/2.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/3.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/4.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/5.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/6.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/7.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/8.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/9.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/10.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/11.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/12.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/13.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/14.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/15.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/16.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/17.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/18.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/19.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/20.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts install -C -o www-data -g www-data -m 444 imagelib/callouts/21.png /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/imagelib/callouts /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/handbook.html -> /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/porters-handbook/index.html /usr/local/www/www.freebsd.org-clean/data/doc/faq -> /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/faq /usr/local/www/www.freebsd.org-clean/data/doc/handbook -> /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1/books/handbook /usr/local/www/www.freebsd.org-clean/data/doc/en -> /usr/local/www/www.freebsd.org-clean/data/doc/en_US.ISO8859-1 make: don't know how to make pgpkeyring. Stop *** [install] Error code 2 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/doc. *** [realinstall] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 17.16 real 5.96 user 11.35 sys From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 15:43:06 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E280712; Fri, 7 Mar 2014 15:43:06 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id EFA9DD7E; Fri, 7 Mar 2014 15:43:05 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 877C96EC; Fri, 7 Mar 2014 15:43:06 +0000 (UTC) Date: Fri, 7 Mar 2014 15:43:03 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@freebsd.org, freebsd-doc@freebsd.org, gjb@FreeBSD.org, ryusuke@FreeBSD.org, remko@FreeBSD.org, gabor@FreeBSD.org, jonathan@FreeBSD.org Message-ID: <1904224650.1.1394206985681.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <723919869.0.1394195387732.JavaMail.jenkins@jenkins-9.freebsd.org> References: <723919869.0.1394195387732.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Jenkins build is back to normal : FreeBSD_DOC #74 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Jenkins-Job: FreeBSD_DOC X-Jenkins-Result: SUCCESS X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 15:43:06 -0000 See From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 15:50:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EFE696C for ; Fri, 7 Mar 2014 15:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5BC3ADCA for ; Fri, 7 Mar 2014 15:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s27Fo1ra019187 for ; Fri, 7 Mar 2014 15:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s27Fo1uZ019186; Fri, 7 Mar 2014 15:50:01 GMT (envelope-from gnats) Resent-Date: Fri, 7 Mar 2014 15:50:01 GMT Resent-Message-Id: <201403071550.s27Fo1uZ019186@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Allan Jude Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AAE76F6 for ; Fri, 7 Mar 2014 15:41:13 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 770B2D6C for ; Fri, 7 Mar 2014 15:41:13 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s27FfD9n076055 for ; Fri, 7 Mar 2014 15:41:13 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s27FfD6D076048; Fri, 7 Mar 2014 15:41:13 GMT (envelope-from nobody) Message-Id: <201403071541.s27FfD6D076048@cgiserv.freebsd.org> Date: Fri, 7 Mar 2014 15:41:13 GMT From: Allan Jude To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187351: handbook section on ports does not mention pkg search X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 15:50:01 -0000 >Number: 187351 >Category: docs >Synopsis: handbook section on ports does not mention pkg search >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 07 15:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Allan Jude >Release: 9.2-RELEASE >Organization: ScaleEngine Inc. >Environment: FreeBSD Trooper.HML3.ScaleEngine.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The handbook section "5.3. Finding Software" does not mention 'pkg search' as a way to find software. Even for searching the ports tree, this can be useful, but it is especially useful when searching for a package >How-To-Repeat: >Fix: Patch attached Patch attached with submission follows: Index: ports/chapter.xml =================================================================== --- ports/chapter.xml (revision 44112) +++ ports/chapter.xml (working copy) @@ -197,9 +197,11 @@ Before installing any application, check http://vuxml.freebsd.org/ for security issues related to the application or install - ports-mgmt/portaudit. Once installed, type + ports-mgmt/portaudit. Once installed, type portaudit -F -a to check all installed - applications for known vulnerabilities. + applications for known vulnerabilities. If you are using + pkg, the audit functionality is + built in, simply run: pkg audit -F. The remainder of this chapter explains how to use packages @@ -246,6 +248,61 @@ + + pkg + search + + + To search the binary package + repository for an application: + + &prompt.root; pkg search subversion +git-subversion-1.8.5.2 +java-subversion-1.8.5 +p5-subversion-1.8.5 +py27-hgsubversion-1.5.1 +py27-subversion-1.8.5 +ruby-subversion-1.8.5 +subversion-1.6.23_2 +subversion-1.7.14 +subversion-1.8.5 +subversion-book-4515 +subversion-static-1.8.5 + + Package names include the version number and in the + case of ports based on python, the version number of the + version of python the package was built with. Some ports + also have multiple versions available. In the case of + subversion there are different + versions available, as well as different compile options, + in this case, the staticly linked version of + subversion. When indicating + which package to install, it is best to specify the + application by the port origin, the path in the ports tree. + Repeat the pkg search with + to list the origin of each + package: + + &prompt.root; pkg search -o subversion +devel/git-subversion +java/java-subversion +devel/p5-subversion +devel/py-hgsubversion +devel/py-subversion +devel/ruby-subversion +devel/subversion16 +devel/subversion17 +devel/subversion +devel/subversion-book +devel/subversion-static + + pkg search also supports searching + using shell globs, regular expressions, exact match, + search by description, or any other field in the + repository database. See &man.pkg-search.8; + + + If the Ports Collection is already installed, there are several methods to query the local version of the ports tree. To find out which category a port is in, type >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 16:43:31 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9A43968; Fri, 7 Mar 2014 16:43:31 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9AE8D320; Fri, 7 Mar 2014 16:43:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s27GhVJZ037030; Fri, 7 Mar 2014 16:43:31 GMT (envelope-from dru@freefall.freebsd.org) Received: (from dru@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s27GhVQm037029; Fri, 7 Mar 2014 16:43:31 GMT (envelope-from dru) Date: Fri, 7 Mar 2014 16:43:31 GMT Message-Id: <201403071643.s27GhVQm037029@freefall.freebsd.org> To: dru@FreeBSD.org, freebsd-doc@FreeBSD.org, dru@FreeBSD.org From: dru@FreeBSD.org Subject: Re: docs/121585: [handbook] Wrong multicast specification X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 16:43:31 -0000 Synopsis: [handbook] Wrong multicast specification Responsible-Changed-From-To: freebsd-doc->dru Responsible-Changed-By: dru Responsible-Changed-When: Fri Mar 7 16:42:59 UTC 2014 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=121585 From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 16:54:09 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13403D54; Fri, 7 Mar 2014 16:54:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D9BB760B; Fri, 7 Mar 2014 16:54:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s27Gs8hu039849; Fri, 7 Mar 2014 16:54:08 GMT (envelope-from dru@freefall.freebsd.org) Received: (from dru@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s27Gs83o039848; Fri, 7 Mar 2014 16:54:08 GMT (envelope-from dru) Date: Fri, 7 Mar 2014 16:54:08 GMT Message-Id: <201403071654.s27Gs83o039848@freefall.freebsd.org> To: dru@FreeBSD.org, freebsd-doc@FreeBSD.org, dru@FreeBSD.org From: dru@FreeBSD.org Subject: Re: docs/162404: [handbook] IPv6 link-local address compared with IPv4 loopback address and IPv6 site-local deprecated X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 16:54:09 -0000 Synopsis: [handbook] IPv6 link-local address compared with IPv4 loopback address and IPv6 site-local deprecated Responsible-Changed-From-To: freebsd-doc->dru Responsible-Changed-By: dru Responsible-Changed-When: Fri Mar 7 16:53:51 UTC 2014 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=162404 From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 17:11:29 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76B843A3; Fri, 7 Mar 2014 17:11:29 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 49C8A83B; Fri, 7 Mar 2014 17:11:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s27HBTjx045753; Fri, 7 Mar 2014 17:11:29 GMT (envelope-from dru@freefall.freebsd.org) Received: (from dru@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s27HBTF7045752; Fri, 7 Mar 2014 17:11:29 GMT (envelope-from dru) Date: Fri, 7 Mar 2014 17:11:29 GMT Message-Id: <201403071711.s27HBTF7045752@freefall.freebsd.org> To: dru@FreeBSD.org, freebsd-doc@FreeBSD.org, dru@FreeBSD.org From: dru@FreeBSD.org Subject: Re: docs/172743: IPv6 handbooks lacks info about accepting router advertisements X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 17:11:29 -0000 Synopsis: IPv6 handbooks lacks info about accepting router advertisements Responsible-Changed-From-To: freebsd-doc->dru Responsible-Changed-By: dru Responsible-Changed-When: Fri Mar 7 17:11:07 UTC 2014 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=172743 From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 17:48:05 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1EFFE16C for ; Fri, 7 Mar 2014 17:48:05 +0000 (UTC) Received: from mail-la0-x243.google.com (mail-la0-x243.google.com [IPv6:2a00:1450:4010:c03::243]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A0AD7AE3 for ; Fri, 7 Mar 2014 17:48:04 +0000 (UTC) Received: by mail-la0-f67.google.com with SMTP id gl10so1112527lab.2 for ; Fri, 07 Mar 2014 09:48:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=KEajdIpJSuXE8NNMIj9s9VDqx8G2p11H1ZpONLh9Cj4=; b=hg3nWJdZnkriAQc7dN9aIHt5Rt5GqVazzBY1ZwrHuCRgCYh+9fdGaSr/k3l7TvokG+ zeVX6ekVD+8sB3qIWfDLne1QEjPzy16AK4cM4fHME1uO+lf21IPz5Qvt2A57Setukn63 KnwreL9VuI00xOVPiCCYUCVWQEIKAJ9Gp3cgJCLQp0LPBi0+tpvvey5jScOWnEQ8WQQo m7FaoWcO6hVMPCEQbbd/MEMTNvFp/1mG2fuXBtXkkvwR4D9AXA0kPRaImBC6sprNgNVb HlMtpc+VUWkqFJxdBDTNhfz41x5LqODk2W2H88Hv+tEFfEzxhxGriU1unFMvIY+PRAqQ bEeA== MIME-Version: 1.0 X-Received: by 10.152.87.14 with SMTP id t14mr2156220laz.52.1394214482672; Fri, 07 Mar 2014 09:48:02 -0800 (PST) Received: by 10.112.200.102 with HTTP; Fri, 7 Mar 2014 09:48:02 -0800 (PST) Received: by 10.112.200.102 with HTTP; Fri, 7 Mar 2014 09:48:02 -0800 (PST) Date: Fri, 7 Mar 2014 22:48:02 +0500 Message-ID: Subject: From: malakabdulhadi Kakar To: freebsd-doc@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 17:48:05 -0000 Asd From owner-freebsd-doc@FreeBSD.ORG Fri Mar 7 18:39:21 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16B3A214; Fri, 7 Mar 2014 18:39:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E191BF72; Fri, 7 Mar 2014 18:39:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s27IdKT4070999; Fri, 7 Mar 2014 18:39:20 GMT (envelope-from dru@freefall.freebsd.org) Received: (from dru@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s27IdK23070998; Fri, 7 Mar 2014 18:39:20 GMT (envelope-from dru) Date: Fri, 7 Mar 2014 18:39:20 GMT Message-Id: <201403071839.s27IdK23070998@freefall.freebsd.org> To: dru@FreeBSD.org, freebsd-doc@FreeBSD.org, dru@FreeBSD.org From: dru@FreeBSD.org Subject: Re: docs/186625: Handbook rebuilding "world" upgrade procedure wrong mergemaster command X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 18:39:21 -0000 Synopsis: Handbook rebuilding "world" upgrade procedure wrong mergemaster command Responsible-Changed-From-To: freebsd-doc->dru Responsible-Changed-By: dru Responsible-Changed-When: Fri Mar 7 18:39:00 UTC 2014 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=186625 From owner-freebsd-doc@FreeBSD.ORG Sat Mar 8 06:49:07 2014 Return-Path: Delivered-To: www@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6781AAF for ; Sat, 8 Mar 2014 06:49:07 +0000 (UTC) Received: from datenverkehr.org (66-232-117-126.static.hvvc.us [66.232.117.126]) by mx1.freebsd.org (Postfix) with ESMTP id A1E03143 for ; Sat, 8 Mar 2014 06:49:07 +0000 (UTC) Date: Sat, 8 Mar 2014 06:38:50 +0000 To: www@freebsd.org From: Saskia Schimpf Subject: Kostenlos Links tauschen X-Priority: 3 MIME-Version: 1.0 Message-Id: <20140308064103.21F572F90490@datenverkehr.org> Content-Type: text/plain; charset = "UTF-8" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Mar 2014 06:49:07 -0000 Lieber Webmaster, Als Betreiber der Webseite Datenverkehr.org möchte ich Sie einladen, Links mit uns auszutauschen. Wir werden die ganze Woche lang einen einzigartigen Linktausch durchführen, der sich auf echte Links mit echtem Traffic von echten Seiten mit echten Inhalten konzentriert! Warum sollten Sie Links mit uns tauschen? A. Komplett kostenlos. B. Wir haben einen extrem hohen Alexa Traffic Rank im Vergleich zu anderen online SEO-Webseiten. C. Wir belegen für verschiedene Themen die obersten Positionen bei Google. D. Wir verfügen über reichhaltige Inhalte und sind stolz darauf! Ich möchte diesen Linktausch so relevant wie möglich für Ihre Seite(n) machen, daher biete ich Ihnen eine Vielzahl von Unterseiten an, auf die Sie verlinken können - und denken Sie daran: Seiten, die gute, relevante Links senden, werden dieselbe Behandlung erfahren, was Qualität und Relevanz betrifft. Bitte lassen Sie mich wissen, welche Art von Linktausch für freebsd.org zur Verfügung steht. Ich kann Ihnen folgendes anbieten: Dreiseitigen/Indirekten Tausch Links von relevanten Seiten im Inhalt Backlinks mit hohem PR und/oder guten Inhalten Andere Vorschläge, die Sie haben könnten... Es hängt alles davon ab, was Sie anzubieten haben. Wir versprechen einen kostenlosen, fairen und ehrlichen Tausch mit allen unseren Teilnehmern. Saskia Schimpf - Datenverkehr.org http://www.linkedin.com/pub/saskia-schimpf/82/8a6/725 From owner-freebsd-doc@FreeBSD.ORG Sat Mar 8 19:12:04 2014 Return-Path: Delivered-To: docs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8913799C; Sat, 8 Mar 2014 19:12:04 +0000 (UTC) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5BE1AF8D; Sat, 8 Mar 2014 19:12:03 +0000 (UTC) Received: from Julian-MBP3.local ([12.157.112.67]) (authenticated bits=0) by vps1.elischer.org (8.14.7/8.14.7) with ESMTP id s28JBunI093142 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sat, 8 Mar 2014 11:11:56 -0800 (PST) (envelope-from julian@freebsd.org) Message-ID: <531B6B77.1040907@freebsd.org> Date: Sat, 08 Mar 2014 11:11:51 -0800 From: Julian Elischer User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Eduardo Morras , freebsd-hackers@freebsd.org Subject: Re: How to read HTML file in FreeBSD(base system) References: <20140308142656.cfcbdea1daaeed5ada8c1111@yahoo.es> In-Reply-To: <20140308142656.cfcbdea1daaeed5ada8c1111@yahoo.es> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: docs@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Mar 2014 19:12:04 -0000 On 3/8/14, 5:26 AM, Eduardo Morras wrote: > On Sat, 8 Mar 2014 14:36:16 +0800 > by wrote: > >> Hello, >> I use FreeBSD 10.0 RELEASE now, and I just install the base system, >> but I add doc when I install FreeBSD, so there are some docs in my >> system, and they are HTML files, so I want to ask that does FreeBSD >> provide some utilities to read HTML file in terminal? >> >> You may say w3m is a good choice : ) >> I have use it before, it is a great web browser in CLI, and its use >> experience is like vi : ) But I must install it from ports or src by >> myself, so does FreeBSD provide some utilities in base system to >> implement that? > I think no one has answered your original question. No, there's no browser in Base to read FreeBSD Base documentation in HTML. You must install something from ports always. If you want install w3m as pkg, pkg must be installed from ports first. > > HTH > >> - by Base documentation is derived from sources which can also deliver other media types. Try formatting them as text. A Doc team member can probably tell you how to do that. > > --- --- > Eduardo Morras > _______________________________________________ > freebsd-hackers@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hackers > To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@freebsd.org" > From owner-freebsd-doc@FreeBSD.ORG Sat Mar 8 22:24:09 2014 Return-Path: Delivered-To: docs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 62B74C10 for ; Sat, 8 Mar 2014 22:24:09 +0000 (UTC) Received: from nm20.bullet.mail.bf1.yahoo.com (nm20.bullet.mail.bf1.yahoo.com [98.139.212.179]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E5103B2 for ; Sat, 8 Mar 2014 22:24:08 +0000 (UTC) Received: from [98.139.212.150] by nm20.bullet.mail.bf1.yahoo.com with NNFMP; 08 Mar 2014 22:17:57 -0000 Received: from [98.139.213.15] by tm7.bullet.mail.bf1.yahoo.com with NNFMP; 08 Mar 2014 22:17:57 -0000 Received: from [127.0.0.1] by smtp115.mail.bf1.yahoo.com with NNFMP; 08 Mar 2014 22:17:57 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1394317077; bh=fq30N4IKOYJfuFxed/Za+SaFIgyVYr3QWQpkO5ilMGQ=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:X-Rocket-Received:References:Mime-Version:In-Reply-To:Content-Type:Content-Transfer-Encoding:Message-Id:Cc:X-Mailer:From:Subject:Date:To; b=HGz+g94vqlooWvP6r9cTH93wdl8u/j9jQ1L+Nym/5kFmZpq/aKOIwrVvBxIrSfqe+/imr7CfqSIk2iLInjA9ZKprzNUXOoaR3LD60q9NXOZrfW24b0O5qLt0KqCHXYjdwv+ilafa5ALBwVgsb+X3ZQUTJ8dH+JCWW3aAGgRlVL8= X-Yahoo-Newman-Id: 865911.9170.bm@smtp115.mail.bf1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: oaRvSbsVM1kVObN9QmvxFHCeR_ZFQp2MozO3P4gLuUp2.Aq p61tCwKefRTpcEdslv.7al8kDpWXENU7SHiDewwpPYnJgfPxPCqvoMeTQLtV OgankHNi_li7wcniH4DXUoX5jU0_TsgaeWnvnTw2j2nNEx.VyhKkXBWQ_NIb X4f5EAOM8pxQPgcXPgCJF898WOd9kJoOxncbeaFESLR_yvbwQ_FB7V7J2W5Y JRRpR6.nyG430c04O93.dH1C32OV4rJqOdeoy.WiwITw735TOWu5yI8gnP1L 0Ch82ef1VJDUejR15z6TCaoOqD0hOrPHIjMWFfJVbIb97rqwIwouKfGJM4kJ jdlvhLusAyUM6f1npGKZ.Kv64gSmScnIx3nSjIprYEFdFozkgQcZp2PoREs4 BWDKXn.U3vtY0IIQ1LWutE2mx3FxA8gCpl3Xskan1EM7CTxPAVVq6fdCdlbd 5D_RKRF9dzEnl3jrD3bCUG_ZGjwfcmeoN2vRknK.sHeHepfbONqz9tLy4yCN kBaZ4mZT0TeIAyfNDmXQjXVA- X-Yahoo-SMTP: LAFNfTaswBDguI7meB90l2l3wOU- X-Rocket-Received: from [192.168.1.105] (free7by@220.169.172.141 with xymcookie [106.10.149.123]) by smtp115.mail.bf1.yahoo.com with SMTP; 08 Mar 2014 14:17:57 -0800 PST References: <20140308142656.cfcbdea1daaeed5ada8c1111@yahoo.es> <531B6B77.1040907@freebsd.org> Mime-Version: 1.0 (1.0) In-Reply-To: <531B6B77.1040907@freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: <636085F5-B71E-4CFA-9F54-13FE422C7980@yahoo.com> X-Mailer: iPhone Mail (11B651) From: by Subject: Re: How to read HTML file in FreeBSD(base system) Date: Sun, 9 Mar 2014 06:17:32 +0800 To: Julian Elischer Cc: "freebsd-hackers@freebsd.org" , "docs@freebsd.org" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Mar 2014 22:24:09 -0000 Oh, that sounds a great idea. I think I will try it myself first, if I meet troubles or I can not do that m= yself, I should find help from doc team. Thank you! You give me an idea of solve this : ) - by > On Mar 9, 2014, at 3:11, Julian Elischer wrote: >=20 > Base documentation is derived from sources which can also deliver other m= edia types. > Try formatting them as text. A Doc team member can probably tell you how t= o do that. > ____________________________________________ > freebsd-hackers@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hackers > To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@freebsd.org"= From owner-freebsd-doc@FreeBSD.ORG Sun Mar 9 09:15:16 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9CFF0E40; Sun, 9 Mar 2014 09:15:16 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 731CB8BB; Sun, 9 Mar 2014 09:15:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s299FGFp041258; Sun, 9 Mar 2014 09:15:16 GMT (envelope-from taras@freefall.freebsd.org) Received: (from taras@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s299FFte041257; Sun, 9 Mar 2014 09:15:15 GMT (envelope-from taras) Date: Sun, 9 Mar 2014 09:15:15 GMT Message-Id: <201403090915.s299FFte041257@freefall.freebsd.org> To: blueboar_2@rambler.ru, taras@FreeBSD.org, freebsd-doc@FreeBSD.org, taras@FreeBSD.org From: taras@FreeBSD.org Subject: Re: docs/187215: Want to update Russian FreeBSD Handbook translation, how to do that? X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Mar 2014 09:15:16 -0000 Synopsis: Want to update Russian FreeBSD Handbook translation, how to do that? State-Changed-From-To: open->closed State-Changed-By: taras State-Changed-When: Sun Mar 9 09:13:43 UTC 2014 State-Changed-Why: Further explanations were provided beyond the ML. Responsible-Changed-From-To: freebsd-doc->taras Responsible-Changed-By: taras Responsible-Changed-When: Sun Mar 9 09:13:43 UTC 2014 Responsible-Changed-Why: Further explanations were provided beyond the ML. http://www.freebsd.org/cgi/query-pr.cgi?pr=187215 From owner-freebsd-doc@FreeBSD.ORG Sun Mar 9 09:19:14 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A26A4F68; Sun, 9 Mar 2014 09:19:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 75A0C8D4; Sun, 9 Mar 2014 09:19:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s299JEE7041359; Sun, 9 Mar 2014 09:19:14 GMT (envelope-from taras@freefall.freebsd.org) Received: (from taras@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s299JEOp041358; Sun, 9 Mar 2014 09:19:14 GMT (envelope-from taras) Date: Sun, 9 Mar 2014 09:19:14 GMT Message-Id: <201403090919.s299JEOp041358@freefall.freebsd.org> To: taras@FreeBSD.org, freebsd-doc@FreeBSD.org, taras@FreeBSD.org From: taras@FreeBSD.org Subject: Re: docs/187278: New Russian translation of audit chapter in handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Mar 2014 09:19:14 -0000 Synopsis: New Russian translation of audit chapter in handbook Responsible-Changed-From-To: freebsd-doc->taras Responsible-Changed-By: taras Responsible-Changed-When: Sun Mar 9 09:18:30 UTC 2014 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=187278 From owner-freebsd-doc@FreeBSD.ORG Sun Mar 9 14:30:14 2014 Return-Path: Delivered-To: docs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE8C4432; Sun, 9 Mar 2014 14:30:14 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 69B8AE1B; Sun, 9 Mar 2014 14:30:14 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s29EUB9s071366 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 9 Mar 2014 08:30:12 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s29EUBX1071363; Sun, 9 Mar 2014 08:30:11 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 9 Mar 2014 08:30:11 -0600 (MDT) From: Warren Block To: Julian Elischer Subject: Re: How to read HTML file in FreeBSD(base system) In-Reply-To: <531B6B77.1040907@freebsd.org> Message-ID: References: <20140308142656.cfcbdea1daaeed5ada8c1111@yahoo.es> <531B6B77.1040907@freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 09 Mar 2014 08:30:12 -0600 (MDT) Cc: freebsd-hackers@freebsd.org, docs@freebsd.org, Eduardo Morras X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Mar 2014 14:30:14 -0000 On Sat, 8 Mar 2014, Julian Elischer wrote: > On 3/8/14, 5:26 AM, Eduardo Morras wrote: >> On Sat, 8 Mar 2014 14:36:16 +0800 >> by wrote: >> >>> Hello, >>> I use FreeBSD 10.0 RELEASE now, and I just install the base system, >>> but I add doc when I install FreeBSD, so there are some docs in my >>> system, and they are HTML files, so I want to ask that does FreeBSD >>> provide some utilities to read HTML file in terminal? >>> >>> You may say w3m is a good choice : ) >>> I have use it before, it is a great web browser in CLI, and its use >>> experience is like vi : ) But I must install it from ports or src by >>> myself, so does FreeBSD provide some utilities in base system to >>> implement that? >> I think no one has answered your original question. No, there's no browser >> in Base to read FreeBSD Base documentation in HTML. You must install >> something from ports always. If you want install w3m as pkg, pkg must be >> installed from ports first. >> > Base documentation is derived from sources which can also deliver other > media types. > Try formatting them as text. A Doc team member can probably tell you how to > do that. The XML documents like the Handbook can be built as text with make FORMATS=txt Building the documents from source requires installation of the textproc/docproj metaport. Text versions are generated from the HTML version with www/links using -dump. But if www/links is installed, the HTML versions can be read directly: links book.html From owner-freebsd-doc@FreeBSD.ORG Mon Mar 10 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64732EF5 for ; Mon, 10 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2797379D for ; Mon, 10 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2AB64uT042307 for ; Mon, 10 Mar 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2AB63PO042305 for freebsd-doc@FreeBSD.org; Mon, 10 Mar 2014 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 10 Mar 2014 11:06:03 GMT Message-Id: <201403101106.s2AB63PO042305@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Mar 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/187351 doc handbook section on ports does not mention pkg search o docs/187321 doc [handbook] [patch] Clarification needed on using geli o docs/187142 doc The Handbook (chapter 15.4) does not mention /etc/jail o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc Add an ipfilter rc.conf option in handbook for IPv6 o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178286 doc [PATCH] document the LOCAL_* vars in build(7) o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/178119 doc [ports] Porter's handbook lacks examples for using Opt o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168814 doc [patch] remove `d` negative pointer EINVAL requirement o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/78480 doc Networked printer setup unnecessarily complex in handb o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) s docs/20028 doc ASCII docs should reflect tags in the sourc 258 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Mar 10 12:30:04 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30E80AD6 for ; Mon, 10 Mar 2014 12:30:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D76120E for ; Mon, 10 Mar 2014 12:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2ACU3C0071344 for ; Mon, 10 Mar 2014 12:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2ACU3Ww071343; Mon, 10 Mar 2014 12:30:03 GMT (envelope-from gnats) Resent-Date: Mon, 10 Mar 2014 12:30:03 GMT Resent-Message-Id: <201403101230.s2ACU3Ww071343@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Björn Heidotting Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AA708AA for ; Mon, 10 Mar 2014 12:23:17 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 272451A2 for ; Mon, 10 Mar 2014 12:23:17 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2ACNGK2003418 for ; Mon, 10 Mar 2014 12:23:16 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2ACNGiD003413; Mon, 10 Mar 2014 12:23:16 GMT (envelope-from nobody) Message-Id: <201403101223.s2ACNGiD003413@cgiserv.freebsd.org> Date: Mon, 10 Mar 2014 12:23:16 GMT From: Björn Heidotting To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187417: [patch] Handbook: Add some missing -tags in advanced-networking section X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Mar 2014 12:30:04 -0000 >Number: 187417 >Category: docs >Synopsis: [patch] Handbook: Add some missing -tags in advanced-networking section >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 10 12:30:03 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Björn Heidotting >Release: 10.0-RELEASE >Organization: >Environment: >Description: In the advanced-networking section of the handbook, add some missing -tags. >How-To-Repeat: >Fix: Patch attached with submission follows: --- chapter.xml 2014-03-10 10:54:27.000000000 +0100 +++ chapter.xml.work 2014-03-10 13:20:55.000000000 +0100 @@ -838,8 +838,8 @@ frequency and probe for available access points. Only the superuser can initiate a scan: - &prompt.root; ifconfig wlan0 create wlandev ath0 -&prompt.root; ifconfig wlan0 up scan + &prompt.root; ifconfig wlan0 create wlandev ath0 +&prompt.root; ifconfig wlan0 up scan SSID/MESH ID BSSID CHAN RATE S:N INT CAPS dlinkap 00:13:46:49:41:76 11 54M -90:96 100 EPS WPA WME freebsdap 00:11:95:c3:0d:ac 1 54M -83:96 100 EPS WPA @@ -921,7 +921,7 @@ One can also display the current list of known networks with: - &prompt.root; ifconfig wlan0 list scan + &prompt.root; ifconfig wlan0 list scan This information may be updated automatically by the adapter or manually with a request. @@ -1068,7 +1068,7 @@ to see the status of the interface ath0: - &prompt.root; ifconfig wlan0 + &prompt.root; ifconfig wlan0 wlan0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500 ether 00:11:95:d5:43:62 inet 192.168.1.100 netmask 0xffffff00 broadcast 192.168.1.255 @@ -1213,7 +1213,7 @@ the information in /etc/wpa_supplicant.conf: - &prompt.root; wpa_supplicant -i wlan0 -c /etc/wpa_supplicant.conf + &prompt.root; wpa_supplicant -i wlan0 -c /etc/wpa_supplicant.conf Trying to associate with 00:11:95:c3:0d:ac (SSID='freebsdap' freq=2412 MHz) Associated with 00:11:95:c3:0d:ac WPA: Key negotiation completed with 00:11:95:c3:0d:ac [PTK=CCMP GTK=CCMP] @@ -1223,11 +1223,11 @@ to get the IP address from the DHCP server: - &prompt.root; dhclient wlan0 + &prompt.root; dhclient wlan0 DHCPREQUEST on wlan0 to 255.255.255.255 port 67 DHCPACK from 192.168.0.1 bound to 192.168.0.254 -- renewal in 300 seconds. -&prompt.root; ifconfig wlan0 +&prompt.root; ifconfig wlan0 wlan0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500 ether 00:11:95:d5:43:62 inet 192.168.0.254 netmask 0xffffff00 broadcast 192.168.0.255 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Mon Mar 10 17:31:17 2014 Return-Path: Delivered-To: www@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A4C5C6D for ; Mon, 10 Mar 2014 17:31:17 +0000 (UTC) Received: from o251119254192.static.reverse.sendgrid.net (o251119254192.static.reverse.sendgrid.net [192.254.119.251]) by mx1.freebsd.org (Postfix) with SMTP id E2F177CC for ; Mon, 10 Mar 2014 17:31:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=email1.flashissue.com; h=from:to:subject:mime-version:content-type:sender; s=smtpapi; bh=GGjk0y7RutNHJ0VQObyIurbrk/c=; b=f3mKm8gsg4eEJrIGfhiPLGdqxcp90 0SSMKOjq2WEP+rJU0xWHJNB5/iYYsdtgLAE3S5m99lc/KCDNaaXSjtQxEkA1bgGj QYfpD/20HsP1+3ApBqXZFcqBJk0GpAntSloA8neAllmUHXRylOh0ng2+be5w+DSk WREXzY4oaBZhu0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=email1.flashissue.com; h=from:to:subject:mime-version:content-type:sender; q=dns; s=smtpapi; b=tftpUuUck8sqc+8FsdAV+K1a/DuWWFHLiXx14OU0qbn4Fz3fuQS n0hAfl/ukq3EIfu5Ga003gZoH5PzcCVvAMNsgpNOWGU/CBTCKTqIHU2Pgas+jXl3 4w3se6gF2AukdGcr5l13eXyIW4yyoFFS4yI8dxhFcD7QQvwBvDYY6qD0= Received: by mf205.sendgrid.net with SMTP id mf205.9051.531DF5C79 Mon, 10 Mar 2014 17:26:31 +0000 (UTC) Received: from ip-10-191-123-72.ec2.internal (ec2-23-21-128-144.compute-1.amazonaws.com [23.21.128.144]) by ismtpd-001 (SG) with ESMTP id 144ad0812f4.2e60.c2dd5f for ; Mon, 10 Mar 2014 17:26:31 +0000 (GMT) From: Clayton Williams <8clayton.c.williams@gmail.com> To: Message-ID: <2066186329.240791.1394472391421.JavaMail.root@ip-10-191-123-72> Subject: We help You Rank High On Google MIME-Version: 1.0 Date: Mon, 10 Mar 2014 17:26:31 +0000 (UTC) X-SG-EID: 2CI6rEXrA9FLiwqu0YNfvkKI8B1cisDytcXxviHmKXXMM2wKdASPJvQ4GvcPGJyIgQBSvK4zY0ehd70gaKly+VsstBnVVkL664qOms2Qq64kSMuDEv/hc5Jh8gAm4faNvvdfjjiKk+vDdLTXinhZig== X-SG-ID: abJri/z89ozyEJuJkS5UoDaB/x8mT16BRdU6pWHt6OxYThwsJ3IEaTZ5jsgbHZWCDyiZwpEVXzD8qqzXChGvOmftA5axTbPk4thYG75MaDEhIDavJquedb99Dza9x3xf2Aa5JbTZg7cpwpEhe8Lb6/BvViWmEZ09kZQA3VveBYJwpeJlieQUrWwq6EQ9j4S2BZ6GX3e6kO1+5hS2/Wu08G9+CFF6r/mGGPvPzSUW8VVA+ks4UoI9GyM9uxSi6g0Vt9Pz/agr0vMv4cf5/Y9BvmjxlimjEycK1ELzkHEoRCHo36F/lvrfcZBsSKIzENkbx3GNGd8M/7UF2MzcayKIPQ== Sender: Clayton Williams <8clayton.c.williams=gmail.com@email1.flashissue.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Mar 2014 17:31:17 -0000 We help You Rank High On Google We help You Rank High On Google - =C2=A0 = =C2=A0 View in web browser =C2=A0 =C2=A0 We help You Rank High On Google = =C2=A0 =C2=A0 Upgrade to our New Plan :Guaranteed SEO Services =C2=A0=C2=A0= =C2=A0 =C2=A0=C2=A0 Dedicated SEO Project Manager Monthly Updates via Phone= and Email Monthly Tracking of Rankings 100% Transparent Work White Hat SEO= Practices Pay for Results Guaranteed Top 10 Rankings within 3=C2=A0months = or your money back*=C2=A0We would Like to follow up this with a qucik phone= call Can We call you this week to run your campaign?=C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 You have received this mail= because you are a member of submitedgeseo. To stop receiving these emails = please click to unsubscribe =C2=A0 =C2=A0 Click here to unsubscribe= From owner-freebsd-doc@FreeBSD.ORG Tue Mar 11 15:19:40 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1BAE482 for ; Tue, 11 Mar 2014 15:19:40 +0000 (UTC) Received: from mb49.e2ma.net (mb49.e2ma.net [66.179.68.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2E430208 for ; Tue, 11 Mar 2014 15:19:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mb49.e2ma.net; bh=hLLcC7oKj9/P60FU61xPTRNxEoM=; b=m3ePI3aRvCu0ki1CAtfx3QDzQI2Y6Ajom9LRnINUH80lBfn4BDkGd46bru2u+N8g98bBqDa7c6g0 6dKMqZwzk4kltKH0jW0GQ6Mbn+lVCeH87j5dnnU3tTbJvn9ISIjIK9WqchGE9Bro9PyJN0FL3NjR 6GCE6thw8AIxiK890+4= Received: by mb49.e2ma.net id h3skoo18e74u for ; Tue, 11 Mar 2014 10:19:39 -0500 (envelope-from <7048371.1355955@e2ma.net>) MIME-Version: 1.0 Subject: United Way invites you to Major Gifts Ramp-Up From: "Cliff Smith" To: freebsd-doc@freebsd.org Date: Tue, 11 Mar 2014 15:19:39 -0000 Precedence: bulk Message-ID: X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Mar 2014 15:19:40 -0000 To view this email online, paste this link into your browser: http://t.e2ma.net/message/duche/9ei8pz ___________________________________ ___________________________________ Share This:=20 http://t.e2ma.net/share/outbound/e/duche/9ei8pz [Share via Email] This email was sent to freebsd-doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1357359/= 1355955.7048371/1538445491/?v=3Da) opt out using TrueRemove(r) (http://t.e2ma.net/optout/duche/9ei8pz?r=3DaHR0= cHM6Ly9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzEzNTczNTkvMTM1NTk1NS8= xNTM4NDQ1NDkxLz92PWE=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1357359/1355955.7048371/1538445491/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 2401 Main St | Columbia, SC 29201 US From owner-freebsd-doc@FreeBSD.ORG Tue Mar 11 15:19:44 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD965485 for ; Tue, 11 Mar 2014 15:19:44 +0000 (UTC) Received: from mb49.e2ma.net (mb49.e2ma.net [66.179.68.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EDF6920A for ; Tue, 11 Mar 2014 15:19:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mb49.e2ma.net; bh=Zp8s/s1/UdhfXXQGgex+OUBBKAo=; b=Hhm7LoHPSx4WX+29w5FPo7fkE6MTp6f3rcoDvo32IMDMWP0mgQppYWnsiQ6bENMVkVggUEeIoB9K nIwbj6gTmj1yMqneE0s6bYp7bLjY7j74XPChjbJ/BYt/9oEKG6KlEAzyfAGLSeSWwXm8TJOF3LMc ZbX9/V7VLGQV4x6VnhM= Received: by mb49.e2ma.net id h3skp018e747 for ; Tue, 11 Mar 2014 10:19:42 -0500 (envelope-from <7048371.1355955@e2ma.net>) MIME-Version: 1.0 Subject: United Way invites you to Major Gifts Ramp-Up From: "Cliff Smith" To: doc@freebsd.org Date: Tue, 11 Mar 2014 15:19:42 -0000 Precedence: bulk Message-ID: X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Mar 2014 15:19:44 -0000 To view this email online, paste this link into your browser: http://t.e2ma.net/message/duche/pfdtsz ___________________________________ ___________________________________ Share This:=20 http://t.e2ma.net/share/outbound/e/duche/pfdtsz [Share via Email] This email was sent to doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1357359/= 1355955.7048371/1542778035/?v=3Da) opt out using TrueRemove(r) (http://t.e2ma.net/optout/duche/pfdtsz?r=3DaHR0= cHM6Ly9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzEzNTczNTkvMTM1NTk1NS8= xNTQyNzc4MDM1Lz92PWE=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1357359/1355955.7048371/1542778035/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 2401 Main St | Columbia, SC 29201 US From owner-freebsd-doc@FreeBSD.ORG Wed Mar 12 00:20:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B8B753D3 for ; Wed, 12 Mar 2014 00:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7D223873 for ; Wed, 12 Mar 2014 00:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2C0K0EM078579 for ; Wed, 12 Mar 2014 00:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2C0K0rp078578; Wed, 12 Mar 2014 00:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 12 Mar 2014 00:20:00 GMT Resent-Message-Id: <201403120020.s2C0K0rp078578@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Lowell Gilbert Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C0D5230 for ; Wed, 12 Mar 2014 00:11:55 +0000 (UTC) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 5500F812 for ; Wed, 12 Mar 2014 00:11:55 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id 4B33633C22 for ; Tue, 11 Mar 2014 20:11:44 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id 230283983C; Tue, 11 Mar 2014 20:11:42 -0400 (EDT) Message-Id: <20140312001143.230283983C@lowell-desk.lan> Date: Tue, 11 Mar 2014 20:11:42 -0400 (EDT) From: Lowell Gilbert To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: docs/187465: mention patchlevels in explaining security advisories X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Lowell Gilbert List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Mar 2014 00:20:00 -0000 >Number: 187465 >Category: docs >Synopsis: mention patchlevels in explaining security advisories >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 00:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Lowell Gilbert >Release: FreeBSD 9.2-STABLE amd64 >Organization: The Ilk >Environment: System: FreeBSD lowell-desk.lan 9.2-STABLE FreeBSD 9.2-STABLE #35 r262621: Fri Feb 28 16:57:11 EST 2014 root@lowell-desk.lan:/usr/obj/usr/src/sys/LOWELL64 amd64 >Description: Someone asked for something like this. >How-To-Repeat: >Fix: Index: handbook/security/chapter.xml =================================================================== --- handbook/security/chapter.xml (revision 44213) +++ handbook/security/chapter.xml (working copy) @@ -3284,7 +3284,10 @@ The Corrected field indicates the date, time, time offset, and release that was - corrected. + corrected. The section in parentheses shows each release + for which a fix has been announced, with the branch from + which that release came and the release identifier itself, + including patchlevel if appropriate. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Mar 12 08:50:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A9D94892 for ; Wed, 12 Mar 2014 08:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6E24ACB8 for ; Wed, 12 Mar 2014 08:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2C8o0Rc051428 for ; Wed, 12 Mar 2014 08:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2C8o0f8051427; Wed, 12 Mar 2014 08:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 12 Mar 2014 08:50:00 GMT Resent-Message-Id: <201403120850.s2C8o0f8051427@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Max Brazhnikov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF3E84FE for ; Wed, 12 Mar 2014 08:41:10 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C357FC36 for ; Wed, 12 Mar 2014 08:41:10 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2C8fAAK029786 for ; Wed, 12 Mar 2014 08:41:10 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2C8fAiQ029781; Wed, 12 Mar 2014 08:41:10 GMT (envelope-from nobody) Message-Id: <201403120841.s2C8fAiQ029781@cgiserv.freebsd.org> Date: Wed, 12 Mar 2014 08:41:10 GMT From: Max Brazhnikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187473: [porters-handbook]: update Qt and KDE sections X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Mar 2014 08:50:00 -0000 >Number: 187473 >Category: docs >Synopsis: [porters-handbook]: update Qt and KDE sections >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 08:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Max Brazhnikov >Release: FreeBSD 9.2-STABLE amd64 >Organization: >Environment: >Description: http://people.freebsd.org/~makc/patches/ph-qt.diff Qt section: - Rework due to recently added Qt 5 ports KDE section: - Remove stale staff, reflect current state - Consistently use KDE 4 (instead of KDE 4.x) - Update description for KDE components >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Mar 12 09:27:25 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3120E7BC for ; Wed, 12 Mar 2014 09:27:25 +0000 (UTC) Received: from mail-pa0-x243.google.com (mail-pa0-x243.google.com [IPv6:2607:f8b0:400e:c03::243]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0781E101 for ; Wed, 12 Mar 2014 09:27:25 +0000 (UTC) Received: by mail-pa0-f67.google.com with SMTP id bj1so471960pad.6 for ; Wed, 12 Mar 2014 02:27:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=reply-to:from:to:subject:date:message-id:mime-version:content-type :thread-index:content-language; bh=lY82oNJPGdwSRx0UzrH0Pk/QcV+rNXmqnEjs0EklcRQ=; b=XP7l6swlzYMR7IfuuaeWV2hHDsMqqfHiWFC53uwm839mlEMdcC28jyje73ej5BUjUe DxeihUGtcYyrNiZqPyHd0iV8HdcD6CONSwE+t/HZ1Ef3oZxBGseFQEhURCzvmQ+LHW+J wPwqzA5mbpO6a5M40RLVZFGKhrRSQ5C0yIsv8gZBchQn0buoipgCSzVPC7PLdWQNRlCw G0PALe3saRf5xJXKDUPPHSqypYaFbmFweoaa29ADdfRYIut4ktzZaDsAaiJrs1AgZ4a0 1yhqvI0Th/1Gs7LZeltcIxTw8KkZsUBmAfedUbJWt1V+NVXDHmnhOzZNN7m9ioBjo+iP /yhw== X-Received: by 10.66.197.135 with SMTP id iu7mr3616349pac.149.1394616444683; Wed, 12 Mar 2014 02:27:24 -0700 (PDT) Received: from 3ciPC ([122.177.201.131]) by mx.google.com with ESMTPSA id hc4sm5215373pbc.29.2014.03.12.02.27.22 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 12 Mar 2014 02:27:24 -0700 (PDT) From: "Kajal Jain" To: Subject: first page on Google... Date: Wed, 12 Mar 2014 14:56:07 +0530 Message-ID: <081201cf3dd5$47274cc0$d575e640$@com> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Ac891QrKogVv/jwWRxmMZsyuP0nk1w== Content-Language: en-us Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: annulinkservice@gmail.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Mar 2014 09:27:25 -0000 Hi, Hope you are doing well. My name is Kajal Jain and working with a reputed leading Search Engine Optimization Company in India having the experience of getting our customer's websites top in Google and producing high revenue with top page rank. I was searching related to your business on Google and saw your website is not on first page on Google for most of the relevant and user oriented keywords pertaining to your domain so I was wondering If you would be interested in getting very Affordable Search engine optimization done for your website. You Can contact me with 1) Keyword to rank in google 2) Website URL With in 24 Hours we will contact with Quotation & Time Frame to bring your keyword to front page and Let me know your phone number & skype if you want to discuss more I look forward to your positive response. Regards, Kajal Jain From owner-freebsd-doc@FreeBSD.ORG Wed Mar 12 14:33:31 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83E34B8F for ; Wed, 12 Mar 2014 14:33:31 +0000 (UTC) Received: from mail182.e2ma.net (mail182.e2ma.net [66.179.147.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 44B0D293 for ; Wed, 12 Mar 2014 14:33:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mail182.e2ma.net; bh=w6qTipZyhLf9biniAgLarXCIw0U=; b=O65upUxhA0h2Ux7UDSQ4DMDIkA7SWYP3aDOU5U2wNM3kaLhBDTPvERvwASsvtXJBShEncbc1A5WM fXe28XjrvDtGYlLeqzE9h6cvDDlcTIde5Vbp8DQhJa0IFQI3bExW8lqcVHaAxm1muC0GRB7if9T7 rK3Se1lDU4ODM4syMl4= Received: by mail182.e2ma.net id h41o3m18e74t for ; Wed, 12 Mar 2014 09:33:30 -0500 (envelope-from <6358259.1714419@e2ma.net>) MIME-Version: 1.0 Subject: Funds2Orgs is your fundraising solution From: "Gretchen Parker" To: freebsd-doc@freebsd.org Date: Wed, 12 Mar 2014 14:33:30 -0000 Precedence: bulk Message-ID: <140ab.lck2d.9y54zn@e2ma.net> X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Mar 2014 14:33:31 -0000 To view this email online, paste this link into your browser: http://t.e2ma.net/message/lck2d/9y54zn ___________________________________ Funds2Orgs (http://t.e2ma.net/click/lck2d/9y54zn/xd5c9) is a social enterpr= ise that offers a proven and effective fundraising strategies for nonprofit= organizations, churches, schools, and civic groups. We=E2=80=99ve helped h= undreds of organizations across the country meet their fundraising goals. =20 Through our shoe drive fundraisers, your organization will be able to engag= e the community, support micro-enterprises in developing countries, and mee= t your goals. =20 It is easy to get started, simply click through to our website (http://t.e2= ma.net/click/lck2d/9y54zn/d65c9) and sign-up. We'll send you all the materi= als to get you started with your shoe drive, from marketing to collection b= ags. When your drive is complete, contact us and we'll come pick-up the bag= s of gently, worn used shoes! Then all you have to do is get ready for your= check! =20 If you need any additional information about Funds2Orgs or would like me to= connect you with a Funds2Orgs Fundraising Coach, please reply to this emai= l. YOU MATTER! Gretchen Parker Special Projects ___________________________________ Share This:=20 http://t.e2ma.net/share/outbound/e/lck2d/9y54zn [Share via Email] This email was sent to freebsd-doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1719350/= 1714419.6358259/829491443/?v=3Da) opt out using TrueRemove(r) (http://t.e2ma.net/optout/lck2d/9y54zn?r=3DaHR0= cHM6Ly9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzE3MTkzNTAvMTcxNDQxOS8= 4Mjk0OTE0NDMvP3Y9YQ=3D=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1719350/1714419.6358259/829491443/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 711 Main St. | Lexington, SC 29072 US From owner-freebsd-doc@FreeBSD.ORG Wed Mar 12 14:39:17 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DAFCD67 for ; Wed, 12 Mar 2014 14:39:17 +0000 (UTC) Received: from mail182.e2ma.net (mail182.e2ma.net [66.179.147.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E40852EF for ; Wed, 12 Mar 2014 14:39:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=e2ma; d=e2ma.net; h=Content-Type:MIME-Version:Subject:From:To:Date:Message-ID:List-Unsubscribe; i=@mail182.e2ma.net; bh=aEEJJSbPyHQMvgogIv8dra7QCeU=; b=dMINVWvfQt3AhBXdDuymVvYQarpa/zzikdfNoKfrQIEC5+IkSidHNAB4f0cIkG55umtZtXGm+Y4X N2l13r9fjPahT35c7TJplqowKAh9X5aQRqsam2wbe56hYejavs5w30MhV2Z4Tok3asdBAfoYnDDo kOAtA1iIUewG0Rui278= Received: by mail182.e2ma.net id h41opa18e74r for ; Wed, 12 Mar 2014 09:39:15 -0500 (envelope-from <6358259.1714419@e2ma.net>) MIME-Version: 1.0 Subject: Funds2Orgs is your fundraising solution From: "Gretchen Parker" To: doc@freebsd.org Date: Wed, 12 Mar 2014 14:39:15 -0000 Precedence: bulk Message-ID: <140ab.lck2d.pz48zo@e2ma.net> X-Test-Mailing: no Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Mar 2014 14:39:17 -0000 To view this email online, paste this link into your browser: http://t.e2ma.net/message/lck2d/pz48zo ___________________________________ Funds2Orgs (http://t.e2ma.net/click/lck2d/pz48zo/xd5c9) is a social enterpr= ise that offers a proven and effective fundraising strategies for nonprofit= organizations, churches, schools, and civic groups. We=E2=80=99ve helped h= undreds of organizations across the country meet their fundraising goals. =20 Through our shoe drive fundraisers, your organization will be able to engag= e the community, support micro-enterprises in developing countries, and mee= t your goals. =20 It is easy to get started, simply click through to our website (http://t.e2= ma.net/click/lck2d/pz48zo/d65c9) and sign-up. We'll send you all the materi= als to get you started with your shoe drive, from marketing to collection b= ags. When your drive is complete, contact us and we'll come pick-up the bag= s of gently, worn used shoes! Then all you have to do is get ready for your= check! =20 If you need any additional information about Funds2Orgs or would like me to= connect you with a Funds2Orgs Fundraising Coach, please reply to this emai= l. YOU MATTER! Gretchen Parker Special Projects ___________________________________ Share This:=20 http://t.e2ma.net/share/outbound/e/lck2d/pz48zo [Share via Email] This email was sent to doc@freebsd.org. To ensure that you continue receiving our emails, please add us to your address book or safe list. manage your preferences (https://app.e2ma.net/app2/audience/signup/1719350/= 1714419.6358259/890142963/?v=3Da) opt out using TrueRemove(r) (http://t.e2ma.net/optout/lck2d/pz48zo?r=3DaHR0= cHM6Ly9hcHAuZTJtYS5uZXQvYXBwMi9hdWRpZW5jZS9vcHRfb3V0LzE3MTkzNTAvMTcxNDQxOS8= 4OTAxNDI5NjMvP3Y9YQ=3D=3D) Got this as a forward? Sign up to receive our future emails. (https://app.e= 2ma.net/app2/audience/signup/1719350/1714419.6358259/890142963/?v=3Da) email powered by Emma(R) http://www.myemma.com/ 711 Main St. | Lexington, SC 29072 US From owner-freebsd-doc@FreeBSD.ORG Wed Mar 12 16:33:52 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58B13AA6 for ; Wed, 12 Mar 2014 16:33:52 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0CBE9198 for ; Wed, 12 Mar 2014 16:33:51 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s2CGXonC003874 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Wed, 12 Mar 2014 10:33:50 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s2CGXn1j003871 for ; Wed, 12 Mar 2014 10:33:50 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Wed, 12 Mar 2014 10:33:49 -0600 (MDT) From: Warren Block To: freebsd-doc@FreeBSD.org Subject: Heads up: lost tags Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Wed, 12 Mar 2014 10:33:50 -0600 (MDT) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Mar 2014 16:33:52 -0000 During the DocBook 5 conversion, some tags were lost from the XML source. I've written a script to help check which files contained replaceable tags and show the counts before and after the conversion, along with the current count. Instructions and suggestions on using devel/diffuse to replace the missing tags are at: http://www.wonkity.com/~wblock/replaceable/procedure.txt The script and a sample report: http://www.wonkity.com/~wblock/replaceable/element-count.sh http://www.wonkity.com/~wblock/replaceable/report-2014-03-12.txt Notes: I have fixed the FDP Primer, as the counts in the sample report show. The Handbook printing chapter current count does not apply, because that is my rewrite of the old printing chapter with none of the previous content. From owner-freebsd-doc@FreeBSD.ORG Thu Mar 13 00:13:19 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5B2E1E7 for ; Thu, 13 Mar 2014 00:13:19 +0000 (UTC) Received: from mail.kuldo.net (mail.kuldo.net [109.61.3.2]) by mx1.freebsd.org (Postfix) with ESMTP id 6702592C for ; Thu, 13 Mar 2014 00:13:18 +0000 (UTC) Received: by mail.kuldo.net (Postfix, from userid 33) id 9CDC07CF9; Thu, 13 Mar 2014 01:17:07 +0100 (CET) To: doc@freebsd.org Subject: Fw: I am confused X-PHP-Originating-Script: 33:sslurY.php From: "Morgan Lynn" X-Priority: 3 (Normal) Message-Id: <20140313001707.9CDC07CF9@mail.kuldo.net> Date: Thu, 13 Mar 2014 01:17:07 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Morgan Lynn List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 00:13:19 -0000 :) Ultra thin teen doing first anal [1]http://www.join2meet.com/tmp/install_4dda709fbadac/axy.html References 1. http://www.join2meet.com/tmp/install_4dda709fbadac/axy.html From owner-freebsd-doc@FreeBSD.ORG Thu Mar 13 00:40:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 948B35B6 for ; Thu, 13 Mar 2014 00:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 57D74AE7 for ; Thu, 13 Mar 2014 00:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2D0e0LP064638 for ; Thu, 13 Mar 2014 00:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2D0e0d3064637; Thu, 13 Mar 2014 00:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 13 Mar 2014 00:40:00 GMT Resent-Message-Id: <201403130040.s2D0e0d3064637@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Warren Block Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0D9A580 for ; Thu, 13 Mar 2014 00:35:09 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CE134ACC for ; Thu, 13 Mar 2014 00:35:09 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2D0Z9VF052863 for ; Thu, 13 Mar 2014 00:35:09 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2D0Z9Wq052860; Thu, 13 Mar 2014 00:35:09 GMT (envelope-from nobody) Message-Id: <201403130035.s2D0Z9Wq052860@cgiserv.freebsd.org> Date: Thu, 13 Mar 2014 00:35:09 GMT From: Warren Block To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187515: userinput inside screen elements is not rendered differently X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 00:40:00 -0000 >Number: 187515 >Category: docs >Synopsis: userinput inside screen elements is not rendered differently >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 13 00:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Warren Block >Release: 10-IRRELEVANT >Organization: >Environment: FreeBSD nomatter 10.0-IRRELEVANT FreeBSD 10.0-IRRELEVANT #15 r263032: Tue Mar 11 11:14:05 MDT 2014 root@nomatter:/usr/obj/usr/src/sys/NOMATTER amd64 >Description: Text in tags is not rendered differently from the rest of text in elements. As an example, consider the text in http://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/article.html#idp62149040. In the section after "Take a quick note of how it looks before moving on to the next step; doing the actual merge:", the prompts, user input, and computer output are all rendered in the same font and style. >How-To-Repeat: Look at http://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/article.html#idp62149040 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Thu Mar 13 01:00:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B528761 for ; Thu, 13 Mar 2014 01:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F9BDC32 for ; Thu, 13 Mar 2014 01:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2D101M0071153 for ; Thu, 13 Mar 2014 01:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2D101wC071152; Thu, 13 Mar 2014 01:00:01 GMT (envelope-from gnats) Date: Thu, 13 Mar 2014 01:00:01 GMT Message-Id: <201403130100.s2D101wC071152@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Warren Block Subject: Re: docs/187515: userinput inside screen elements is not rendered differently X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Warren Block List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 01:00:01 -0000 The following reply was made to PR docs/187515; it has been noted by GNATS. From: Warren Block To: bug-followup@FreeBSD.org, wblock@FreeBSD.org Cc: Subject: Re: docs/187515: userinput inside screen elements is not rendered differently Date: Wed, 12 Mar 2014 18:50:48 -0600 (MDT) elements are not rendered inside , either. The ~/doc in the commands given in the FDP Primer Quick Start are marked up with tags, and should be rendered different from the rest of the text: http://www.freebsd.org/doc/en_US.ISO8859-1/books/fdp-primer/book.html#overview-quick-start From owner-freebsd-doc@FreeBSD.ORG Thu Mar 13 18:40:10 2014 Return-Path: Delivered-To: www@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61E6861E for ; Thu, 13 Mar 2014 18:40:10 +0000 (UTC) Received: from vps.webseocompany.info (webseocompany.info [162.222.227.125]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 318A0E81 for ; Thu, 13 Mar 2014 18:40:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=webseocompany.info; s=default; h=Content-Type:MIME-Version:Message-ID:Date:Subject:To:From; bh=r7vWzggADP6MSpWahZlnw2Xhd3M1Gq2r8ww2q9fZfBM=; b=hnvS2cm5kUJfsR4iIVXTs2lG4lVCoFTzh6YHm325r2GogOl+1SUnE++m934CKRKwnS2ap4PFbsgAkhMEyNyPqsFZuDbuF3bJXGMFv7+1+lUgKn6ejvWUHYqUTNJwQOxB4tA16Xew/X4+dQXVU8eASCStESm94d8bU8rER5od+l0=; Received: from [122.161.32.16] (port=12015 helo=PWS2PC) by vps.webseocompany.info with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.82) (envelope-from ) id 1WNc6Z-0007Sr-7t for www@freebsd.org; Wed, 12 Mar 2014 08:53:27 +0300 From: To: Subject: Quality SEO Date: Wed, 12 Mar 2014 11:17:45 +0530 Message-ID: <03c501cf3db7$60d735e0$2285a1a0$@info> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Ac89tdgJZrpxuTLbT5iQhz04tyLKSA== Content-Language: en-us X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - vps.webseocompany.info X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - webseocompany.info X-Get-Message-Sender-Via: vps.webseocompany.info: authenticated_id: bhushan@webseocompany.info Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 18:40:10 -0000 Hi We checked your website: www.freebsd.org and found good scope of improvement. We can provide you professional Web Design, Web Development, Search Engine Optimization or any other Website consultation. We are a group of experts' web consultants. Please revert to us if we could be of any help for you. Kind Regards, Best Regards Bhushan Business Development Manager Disclaimer: The CAN-SPAM Act of 2003 (Controlling the Assault of Non-Solicited Pornography and Marketing Act) establishes requirements for those who send commercial email, spells out penalties for spammers and companies whose products are advertised in spam if they violate the law, and gives consumers the right to ask mailers to stop spamming them. The above mail is in accordance to the Can Spam act of 2003: There are no deceptive subject lines and is a manual process through our efforts on World Wide Web. From owner-freebsd-doc@FreeBSD.ORG Fri Mar 14 05:55:32 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7101567 for ; Fri, 14 Mar 2014 05:55:32 +0000 (UTC) Received: from me-ss2-ieksw9.mailengine1.com (me-ss2-ieksw9.mailengine1.com [72.19.210.94]) by mx1.freebsd.org (Postfix) with ESMTP id ACD311CB for ; Fri, 14 Mar 2014 05:55:32 +0000 (UTC) Received: by me-ss2-ieksw9.mailengine1.com (PowerMTA(TM) v3.5r15sb7) id h4act80jql4u for ; Thu, 13 Mar 2014 22:55:18 -0700 (envelope-from ) MIME-Version: 1.0 X-Mailer: StreamSend2 - 344961 X-Mailer-Version: 2.0 X-Mailer-Environment: production X-Report-Abuse-At: abuse@streamsend.com X-Report-Abuse-Info: It is important to please include full email headers in the report X-rpcampaign: StreamSend20800779 X-Streamsend2id: 344961+1+997237+20800779+me-ss2-ieksw9.mailengine1.com Date: Thu, 13 Mar 2014 22:52:24 -0700 From: "Nicholas Meyler" To: doc@freebsd.org Subject: Exciting C# and C++ Software Careers/Robotics and Instrumentation Message-ID: <300.0.15.65F.1CF3F49FA807FBA.B9618@me-ss2-ieksw9.mailengine1.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: "Nicholas J. Meyler" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Mar 2014 05:55:32 -0000 Attention Multi-talented Engineers: We have yet another exciting opportunity with my client which is a $10+ bil= lion world leader in connectivity. The company designs and manufactures pro= ducts at the heart of electronic connections for the world=E2=80=99s leadin= g industries including automotive, energy and industrial, broadband communi= cations, consumer devices, healthcare, and aerospace and defense.=20 #1) Senior Engineer, Systems Control, Advanced Manufacturing (Harrisburg, P= A)=20 This is an opportunity for an Automation/Control engineer with strong techn= ical and team working capabilities in establishing global robotic automatio= n platforms in a leading electrical component manufacturing company. The in= dividual shall be an expert to provide insight into electrical design/wirin= g and control system programming in automated assembly production lines, an= d also be able to provide in-depth technical advises over control system de= sign during entire assembly production line development cycle. The individual shall be an expert to develop the next generation automation= technologies in robot programming, machine vision algorithm design, machin= e vision programming and writing communication stacks that can communicate = to different automation control devices (e.g., PLC, industrial OPC server a= nd cloud connected devices). Ability to improve software performance to ena= ble low cost flexible modular robotic automation with integration of advanc= ed manufacturing process to help design engineering systems is also part of= the desired technical capabilities.=20 This is a rare opportunity to join a high performing organization with a gl= obal role, reporting to the Automation Manger, who reports directly to the = Fellow, Technology, Advanced Manufacturing, as part of the corporate global= technology team. This role will be a focal point of company global robotic= automation technical expertise on current leading edge and next generation= technologies. This position will also have the responsibility for establis= hing robotic automation modular flexible platforms at various Company manuf= acturing sites worldwide.=20 As a Senior Control Engineer, you will report to the automation manager, wh= o report and interface directly with manufacturing engineering team inside = different business units to provide robotic & machine vision programming, e= lectrical/control system design technical expertise on current cutting edge= and next generation technologies. You will be working on research and deve= lopment of next generation of automation technology with universities and r= esearch institutes. During the technology transfer phase, you will be working closely with proc= ess engineers, manufacturing engineers and external system integrators. Mos= t importantly, you will be the technical safeguard for program design durin= g different phases of an automation project, including requirement definiti= ons, conduct concept review and detailed design review, installation, train= ing and final ramp-up troubleshooting, all the way to transition the automa= tion project to business unit:=20 =E2=80=A2 Innovate and develop the next generation of robotic automation so= ftware platforms and standard modules for flexible manufacturing processes.= =20 =E2=80=A2 Identify levels of technologies should be sourced internally or e= xternally.=20 =E2=80=A2 Design control policies for nonlinear and high dynamics systems.= =20 =E2=80=A2 Develop algorithms using force control strategies.=20 =E2=80=A2 Implement control policies on embedded systems.=20 =E2=80=A2 Develop motor control strategies.=20 =E2=80=A2 Research, source and implement motor systems and controls.=20 =E2=80=A2 Implement sensor data acquisition on embedded systems.=20 =E2=80=A2 Develop state estimation solutions for nonlinear systems.=20 =E2=80=A2 Develop adaptive control techniques for nonlinear systems.=20 =E2=80=A2 Manage sourcing of components and technologies from suppliers.=20 =E2=80=A2 Develop parameter-tuning solutions for production.=20 =E2=80=A2 Lead controls testing for production.=20 =E2=80=A2 As a robotic / machine vision resource to address and to develop = and/or execute robotic automation projects and strategies, and collaborate = with other robotic/machine vision inside Company to provide consulting serv= ices.=20 =E2=80=A2 Work with intellectual property (IP) councils and legal teams to = innovate and to strengthen Company IP strategies and portfolios in advanced= manufacturing automation technology.=20 =E2=80=A2 Provide necessary engineering support in automation control, deve= lop and implement control algorithms for servo control in tandem with visio= n guidance.=20 =E2=80=A2 Enable smooth and open communication with external non-standard a= utomation equipment vendor regarding the requirement of electrical design a= nd control system.=20 =E2=80=A2 Work with internal or external automation team members to over-co= me major technical challenges in electrical design and control area in a ti= mely manner.=20 Professional Qualifications:=20 =E2=80=A2 A strong technically oriented engineer with clearly demonstrated = experience and a track record of developing robotic program and machine vis= ion system & programs=20 =E2=80=A2 Mastery of optimal and adaptive control theory=20 =E2=80=A2 Minimum 4 year experience with nonlinear model-based control=20 =E2=80=A2 Minimum 4 years hands-on experience robot development, controls a= nd operation=20 =E2=80=A2 Proficient at Matlab=C2=AE, Simulink=C2=AE and LabView=C2=AE=20 =E2=80=A2 Hands-on experience in brush and brushless motor control=20 =E2=80=A2 Experience in model-based state estimation and filtering=20 =E2=80=A2 Strong oral and written communication and presentation skills=20 =E2=80=A2 Strong problem solving and analytical skills=20 =E2=80=A2 Experience in embedded operating systems and robot operating syst= ems=20 =E2=80=A2 Develop and maintain system models for simulation and testing of = algorithms.=20 =E2=80=A2 Develop test cases and methodologies to evaluate new control, opt= imization and diagnostic algorithms with simulations and conduct testing in= the field.=20 =E2=80=A2 Familiar with different robot & machine vision programming platfo= rm, including EPSON SPEL+=C2=AE, ABB Rapid=C2=AE; Familiar with ROC and MVT= ec=C2=AE Halcon=C2=AE is preferred=20 =E2=80=A2 Familiar with motion planning, image processing and machine visio= n algorithm design=20 =E2=80=A2Experience with different programming language is preferred, inclu= ding MS. NET, C++, C; familiar with Python is preferred;=20 Minimum Degree and Experience:=20 MS + 6 years=E2=80=99 experience or PhD and 2+ years=E2=80=99 experience (p= referred) in control / robotics or equivalent. #2) Senior Software Developer (Pleasanton, California, United States) My client in the SF Bay area is looking for a skilled C#, C++, UI designer.= They are a large scientific instrument company which manufactures a broad = spectrum of products in the Biotechnology arena, and have been picked as on= e of the 'best places to work in the Bay Area' by San Francisco Business Ti= mes and Business Journal. They are a 60-year old company with over 7,000 em= ployees and are widely-recognized as one of the leading life sciences compa= nies worldwide.=20 =20 As a Senior Software Developer you will design and implement software for d= dPCR systems which consists of both instrument control and data analysis. =20 The position requires an individual who works well within a team setting an= d as an independently motivated contributor to ensure all assigned projects= are accomplished with exceptional quality and on time within larger organi= zational goals. =20 Responsibilities:=20 =E2=80=A2Designs, Develops and Implements software requirements as specifie= d. =E2=80=A2Demonstrate work performed, conduct design and coding reviews. =E2=80=A2Works with domain experts to capture user requirements. =E2=80=A2Works independently and in cross-functional teams on multiple proj= ects following established procedures. =E2=80=A2Assists with or performs the investigation of technical support ca= ses and provides customer support as needed. =E2=80=A2Develops and maintains automated functional software tests. =20 Required Experience:=20 =E2=80=A28+ years experience in the area of Software Design and Development= using C#, C/C++ and Visual Studio.=20 =E2=80=A26+ years experience in authoring design documents, developing UI d= esign standards and implement functional tests.=20 =E2=80=A2Full knowledge of software design, architecture, coding languages,= validation/verification, and industry standard software development practi= ces.=20 =E2=80=A2Developing using Agile Software methods such as Scrum.=20=20 =E2=80=A2Understanding of genetics, gene expression, medical, or a related = field of biology is desired.=20 =E2=80=A2Experience in lab and manufacturing environment preferred.=20 =E2=80=A2Excellent verbal and written communication and troubleshooting ski= lls.=20 =E2=80=A2Experience in FDA or ISO regulated software projects is a big plus= .=20 =E2=80=A2Knowledge of Python programming a plus.=20 =E2=80=A2Passion for execution, teamwork, and user experience. NOTE: Experience with analytical instrumentation GUI design, and/or biotech= /medical=20=20 devices (coding UI for them) would be a big plus.=20=20=20 IF you are interested in exploring one or more of these opportuniti= es to work with some of the leading technology companies in the world, plea= se respond with a resume. Referrals, recommendations and suggestions are al= ways welcome, as are 'random' resume submissions for other possible opportu= nities not described above.=20 =20 IF you are interested in exploring one or more of these opportunities to w= ork with some of the leading technology companies in the world, please resp= ond with a resume. Referrals, recommendations and suggestions are always we= lcome, as are 'random' resume submissions for other possible opportunities = not described above.=20 =20 Best Regards, =20 Nicholas Meyler GM/President, Technology Wingate Dunross, Inc. ph (818)597-3200 ext. 211 URL: www.wdsearch.com=20 Email: Nickm@wdsearch.com=20=20 =20 Email: Nickm@wdsearch.com http://app.streamsend.com/private/u4Kt/nKR/vrH0FVB/unsubscribe/20= 800779= From owner-freebsd-doc@FreeBSD.ORG Sat Mar 15 19:00:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C7C0357 for ; Sat, 15 Mar 2014 19:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 79642A2B for ; Sat, 15 Mar 2014 19:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2FJ00KG068978 for ; Sat, 15 Mar 2014 19:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2FJ00Br068977; Sat, 15 Mar 2014 19:00:00 GMT (envelope-from gnats) Resent-Date: Sat, 15 Mar 2014 19:00:00 GMT Resent-Message-Id: <201403151900.s2FJ00Br068977@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Fernando Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E85E34A for ; Sat, 15 Mar 2014 18:57:18 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4BB53A20 for ; Sat, 15 Mar 2014 18:57:18 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2FIvH88004291 for ; Sat, 15 Mar 2014 18:57:17 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2FIvHf1004290; Sat, 15 Mar 2014 18:57:17 GMT (envelope-from nobody) Message-Id: <201403151857.s2FIvHf1004290@cgiserv.freebsd.org> Date: Sat, 15 Mar 2014 18:57:17 GMT From: Fernando To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187613: [PATCH] Improve boot section in handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Mar 2014 19:00:00 -0000 >Number: 187613 >Category: docs >Synopsis: [PATCH] Improve boot section in handbook >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 15 19:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Fernando >Release: 9.1-RELEASE >Organization: >Environment: FreeBSD beastie 9.1-RELEASE-p3 FreeBSD 9.1-RELEASE-p3 #0: Tue Jun 11 18:21:20 CEST 2013 root@beastie:/usr/obj/usr/src/sys/APEKERNEL-9.1 amd64 >Description: In the handbook, there is missing information about how the boot loader searches for files with the boot and load commands[1]. The proposed patch adds some hints about how those files are looked for. Specifically, we should inform that if the name is not qualified, it will be searched under /boot/kernel and /boot/modules. [1] http://www.freebsd.org/doc/en/books/handbook/boot-blocks.html >How-To-Repeat: >Fix: Apply the attached patch. If this patch gets committed I can write another one for the Spanish manual since that's my mother tongue. Patch attached with submission follows: Index: chapter.xml =================================================================== --- chapter.xml (revision 44236) +++ chapter.xml (working copy) @@ -377,7 +377,10 @@ name on the command-line is only applicable after an unload command has been issued; otherwise the previously-loaded kernel will be - used. + used. If kernelname is not + qualified it will be searched under + /boot/kernel and + /boot/modules @@ -425,7 +428,11 @@ Loads the kernel, kernel module, or file of the type given, with the specified filename. Any arguments after filename - are passed to the file. + are passed to the file. If + filename is not qualified it + will be searched under + /boot/kernel + and /boot/modules >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Mar 16 01:58:48 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F332A64; Sun, 16 Mar 2014 01:58:48 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 62A93E63; Sun, 16 Mar 2014 01:58:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2G1wmdb006400; Sun, 16 Mar 2014 01:58:48 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2G1wmgW006399; Sun, 16 Mar 2014 01:58:48 GMT (envelope-from jgh) Date: Sun, 16 Mar 2014 01:58:48 GMT Message-Id: <201403160158.s2G1wmgW006399@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-doc@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Subject: Re: docs/187613: [handbook] [patch] Improve boot section in handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Mar 2014 01:58:48 -0000 Synopsis: [handbook] [patch] Improve boot section in handbook Responsible-Changed-From-To: freebsd-doc->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sun Mar 16 01:58:48 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=187613 From owner-freebsd-doc@FreeBSD.ORG Sun Mar 16 22:40:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D76222B4 for ; Sun, 16 Mar 2014 22:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B3BB8C7A for ; Sun, 16 Mar 2014 22:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2GMe1NT011945 for ; Sun, 16 Mar 2014 22:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2GMe1P4011944; Sun, 16 Mar 2014 22:40:01 GMT (envelope-from gnats) Resent-Date: Sun, 16 Mar 2014 22:40:01 GMT Resent-Message-Id: <201403162240.s2GMe1P4011944@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrew Merenbach Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C7172A7 for ; Sun, 16 Mar 2014 22:39:13 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D2E3DC72 for ; Sun, 16 Mar 2014 22:39:12 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2GMdB5V094779 for ; Sun, 16 Mar 2014 22:39:11 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2GMdB0T094775; Sun, 16 Mar 2014 22:39:11 GMT (envelope-from nobody) Message-Id: <201403162239.s2GMdB0T094775@cgiserv.freebsd.org> Date: Sun, 16 Mar 2014 22:39:11 GMT From: Andrew Merenbach To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187644: ifconfig man page address_family paragraph needs clarification X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Mar 2014 22:40:01 -0000 >Number: 187644 >Category: docs >Synopsis: ifconfig man page address_family paragraph needs clarification >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 16 22:40:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Andrew Merenbach >Release: 10.0-RELEASE >Organization: >Environment: FreeBSD chitsa 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: man 8 ifconfig states the following: address_family Specify the address family which affects interpretation of the remaining parameters. Since an interface can receive transmis‐ sions in differing protocols with different naming schemes, spec‐ ifying the address family is recommended. The address or proto‐ col families currently supported are “inet”, “inet6”, “atalk”, “ipx”, and “link”. The default if available is “inet” or other‐ wise “link”. “ether” and “lladdr” are synonyms for “link”. The last paragraph here asserts that link, ether, and lladdr are synonymous. When running ifconfig to check a list of available interfaces (-l flag) this does not appear to be the case. >How-To-Repeat: What I see: $ ifconfig -l link em0 lo0 $ ifconfig -l lladdr em0 lo0 $ ifconfig -l ether em0 What I expected to see: $ ifconfig -l link em0 lo0 $ ifconfig -l lladdr em0 lo0 $ ifconfig -l ether em0 lo0 Since the source code (ifconfig.c:328) contains a 'special case for "ether" address family' that appears to exclude layer 2 vlan, bridge, and straight-out Ethernet interfaces, I feel that the documentation should be updated to reflect this. >Fix: A patch is attached. I would not be surprised if someone knows of a better way to phrase this, though, so please let me know if I may revise. Fix is a modification to the last sentence of the man page, currently ifconfig.8:172-176. Preview of change included in patch: > The default if available is "inet" or otherwise "link". "ether" and "lladdr" are synonyms for "link". becomes > The default if available is "inet" or otherwise "link". "ether" and "lladdr" are synonyms for "link", with one caveat: if the -l flag is specified in conjunction with the “ether” address family, non-ethernet interfaces will be excluded in the output. Patch attached with submission follows: --- ifconfig.8 2014-01-16 12:36:52.000000000 -0800 +++ ifconfig.8 2014-03-16 15:14:38.720858851 -0700 @@ -173,7 +173,12 @@ and .Dq lladdr are synonyms for -.Dq link . +.Dq link , +with one caveat: if the +.Fl l +flag is specified in conjunction with the +.Dq ether +address family, non-ethernet interfaces will be excluded from the output. .It Ar dest_address Specify the address of the correspondent on the other end of a point to point link. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Mon Mar 17 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44A626CD for ; Mon, 17 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 25414223 for ; Mon, 17 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2HB64vg010358 for ; Mon, 17 Mar 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2HB6300010356 for freebsd-doc@FreeBSD.org; Mon, 17 Mar 2014 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 17 Mar 2014 11:06:03 GMT Message-Id: <201403171106.s2HB6300010356@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Mar 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/187644 doc ifconfig man page address_family paragraph needs clari o docs/187515 doc userinput inside screen elements is not rendered diffe o docs/187473 doc [porters-handbook]: update Qt and KDE sections o docs/187465 doc mention patchlevels in explaining security advisories o docs/187417 doc [patch] Handbook: Add some missing -tags o docs/187351 doc handbook section on ports does not mention pkg search o docs/187321 doc [handbook] [patch] Clarification needed on using geli o docs/187142 doc The Handbook (chapter 15.4) does not mention /etc/jail o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc Add an ipfilter rc.conf option in handbook for IPv6 o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178286 doc [PATCH] document the LOCAL_* vars in build(7) o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/178119 doc [ports] Porter's handbook lacks examples for using Opt o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168814 doc [patch] remove `d` negative pointer EINVAL requirement o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/78480 doc Networked printer setup unnecessarily complex in handb o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) s docs/20028 doc ASCII docs should reflect tags in the sourc 263 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Mar 17 16:06:57 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2F803AC for ; Mon, 17 Mar 2014 16:06:57 +0000 (UTC) Received: from www5.zeon-inc.com (www5.zeon-inc.com [210.175.235.154]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4DA407A6 for ; Mon, 17 Mar 2014 16:06:56 +0000 (UTC) Received: from www5.zeon-inc.com (localhost [127.0.0.1]) by www5.zeon-inc.com (8.14.5/8.14.5) with ESMTP id s2HFseRm065047 for ; Tue, 18 Mar 2014 00:54:40 +0900 (JST) (envelope-from brandie_huff@smilelabo.tv) Received: (from www@localhost) by www5.zeon-inc.com (8.14.5/8.14.5/Submit) id s2HFsd3S065042; Tue, 18 Mar 2014 00:54:39 +0900 (JST) (envelope-from brandie_huff@smilelabo.tv) Date: Tue, 18 Mar 2014 00:54:39 +0900 (JST) Message-Id: <201403171554.s2HFsd3S065042@www5.zeon-inc.com> X-Authentication-Warning: www5.zeon-inc.com: www set sender to brandie_huff@smilelabo.tv using -f To: doc@freebsd.org Subject: RE: What's up ? From: "Brandie Huff" X-Priority: 3 (Normal) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Brandie Huff List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Mar 2014 16:06:57 -0000 heh Petite teen chick fucked hard by her boyfriend [1]http://ros-prazdnik.ru/plugins/vmpayment/payzen/acf.html References 1. http://ros-prazdnik.ru/plugins/vmpayment/payzen/acf.html From owner-freebsd-doc@FreeBSD.ORG Mon Mar 17 23:50:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34A276D9 for ; Mon, 17 Mar 2014 23:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 10881AE4 for ; Mon, 17 Mar 2014 23:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2HNo0Gm049671 for ; Mon, 17 Mar 2014 23:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2HNo0fa049662; Mon, 17 Mar 2014 23:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Mar 2014 23:50:00 GMT Resent-Message-Id: <201403172350.s2HNo0fa049662@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Allan Jude Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A6F3659 for ; Mon, 17 Mar 2014 23:43:53 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 85885AA9 for ; Mon, 17 Mar 2014 23:43:53 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2HNhokJ054375 for ; Mon, 17 Mar 2014 23:43:50 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2HNhor2054372; Mon, 17 Mar 2014 23:43:50 GMT (envelope-from nobody) Message-Id: <201403172343.s2HNhor2054372@cgiserv.freebsd.org> Date: Mon, 17 Mar 2014 23:43:50 GMT From: Allan Jude To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187683: [patch] Handbook section on bsdinstall is missing details of ZFS feature added in 10.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Mar 2014 23:50:01 -0000 >Number: 187683 >Category: docs >Synopsis: [patch] Handbook section on bsdinstall is missing details of ZFS feature added in 10.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Mar 17 23:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Allan Jude >Release: 10.0-RELEASE >Organization: ScaleEngine Inc. >Environment: >Description: Update the bsdinstall handbook section to describe the automatic 'root-on-zfs' feature. Also add documentation for the 'shell' mode feature that was not documented before. Includes many screenshots >How-To-Repeat: >Fix: Apply this patch Patch attached with submission follows: Index: head/en_US.ISO8859-1/books/handbook/Makefile =================================================================== --- head/en_US.ISO8859-1/books/handbook/Makefile (revision 44203) +++ head/en_US.ISO8859-1/books/handbook/Makefile (working copy) @@ -56,6 +56,7 @@ IMAGES_EN+= bsdinstall/bsdinstall-final-confirmation.png IMAGES_EN+= bsdinstall/bsdinstall-finalconfiguration.png IMAGES_EN+= bsdinstall/bsdinstall-final-modification-shell.png +IMAGES_EN+= bsdinstall/bsdinstall-keymap-10.png IMAGES_EN+= bsdinstall/bsdinstall-keymap-select-default.png IMAGES_EN+= bsdinstall/bsdinstall-mainexit.png IMAGES_EN+= bsdinstall/bsdinstall-netinstall-files.png @@ -73,6 +74,14 @@ IMAGES_EN+= bsdinstall/bsdinstall-timezone-country.png IMAGES_EN+= bsdinstall/bsdinstall-timezone-region.png IMAGES_EN+= bsdinstall/bsdinstall-timezone-zone.png +IMAGES_EN+= bsdinstall/bsdinstall-zfs-disk_info.png +IMAGES_EN+= bsdinstall/bsdinstall-zfs-disk_select.png +IMAGES_EN+= bsdinstall/bsdinstall-zfs-geli_password.png +IMAGES_EN+= bsdinstall/bsdinstall-zfs-menu.png +IMAGES_EN+= bsdinstall/bsdinstall-zfs-partmenu.png +IMAGES_EN+= bsdinstall/bsdinstall-zfs-vdev_invalid.png +IMAGES_EN+= bsdinstall/bsdinstall-zfs-vdev_type.png +IMAGES_EN+= bsdinstall/bsdinstall-zfs-warning.png IMAGES_EN+= geom/striping.pic IMAGES_EN+= install/adduser1.scr IMAGES_EN+= install/adduser2.scr Index: head/en_US.ISO8859-1/books/handbook/bsdinstall/chapter.xml =================================================================== --- head/en_US.ISO8859-1/books/handbook/bsdinstall/chapter.xml (revision 44203) +++ head/en_US.ISO8859-1/books/handbook/bsdinstall/chapter.xml (working copy) @@ -54,6 +54,17 @@ + + + + + Allan + Jude + + + Updated for root-on-ZFS by + + @@ -159,7 +170,8 @@ &intel; EM64T architecture. Examples of these processors include the &intel; &core; 2 Duo, Quad, Extreme processor families, the &intel; &xeon; 3000, - 5000, and 7000 sequences of processors, and the + 5000, and 7000 sequences of processors, the + &intel; &xeon; E3, E5 and E7 processors, and the &intel; &core; i3, i5 and i7 processors. If you have a machine based on an nVidia nForce3 @@ -1056,6 +1068,23 @@ ISO-8859-1 is also a safe option if the choice of keymap is not clear. + + In &os; 10.0-RELEASE and later, this menu has been + enhanced. The full selection of keymaps is shown, with the + default preselected. In addition, when selecting a different + keymap, a dialog is displayed that allows the user to try + the keymap and ensure it is correct before proceeding. + +
+ Enhanced Keymap Menu + + + + + + +
+ @@ -1213,16 +1242,19 @@ Allocating Disk Space - There are three ways to allocate disk space for &os;. + There are four ways to allocate disk space for &os;. Guided partitioning automatically sets up disk partitions, while Manual partitioning - allows advanced users to create customized partitions. Finally, + allows advanced users to create customized partitions. The + ZFS option, only available in &os; 10 and + later, will create an optionally encrypted root-on-ZFS system + with support for Boot Environments Finally, there's the option of starting a shell where command-line programs like &man.gpart.8;, &man.fdisk.8;, and &man.bsdlabel.8; can be used directly.
- Selecting Guided or Manual Partitioning + Selecting Guided, Manual or Shell Partitioning @@ -1232,6 +1264,18 @@
+
+ Selecting Guided, Manual, Shell or + <acronym>ZFS</acronym> Partitioning + + + + + + +
+ + Guided Partitioning @@ -1427,7 +1471,7 @@ Another partition type worth noting is freebsd-zfs, used for partitions that will - contain a &os; ZFS filesystem. See + contain a &os; ZFS filesystem. See . &man.gpart.8; shows more of the available GPT partition types. @@ -1564,6 +1608,174 @@ [ Finish ] to continue with the installation.
+ + + Root-on-ZFS Automatic Partitioning + + Support for automatic creation of root-on-ZFS + installations was added in &os; 10.0-RELEASE. This + partitioning mode only works with whole disks and will erase + the contents of the entire disk. The installer will + automatically create partitions aligned to 4k boundries, as + well as force ZFS to use 4k sectors. This + is safe even with 512 byte sector disks, and has the added + benefit of ensuring that pools created on 512 byte disks will + be able to have 4k sector disks added to them in the future, + for additional storage space, or as replacements for failed + disks. The installer can also optionally employ GELI disk encryption. + If encryption is enabled, a 2 GB unencrypted boot pool is + created that contains the /boot + directory, which holds the kernel and other files necessary + to boot the system. A swap partition of a user selectable + size is also created, and all remaining space is used for the + ZFS pool. + + The main ZFS menu in the installer + offers a number of options to control the creation of the + pool. + +
+ <acronym>ZFS</acronym> Partitioning Menu + + + + + + +
+ + The most important option is selecting the vdev type + and one or more disks that will make up the vdev that will + constitute the pool. The automatic ZFS + installer currently only supports the creation of a single + top level vdev, except in stripe mode. To create more complex + pools, use Shell Mode to create + the pool. The installer supports the creation of various + pool types, including stripe (not recommended, no redundnacy), + mirror (best performance, least usable space), and RAID-Z 1, + 2, and 3 (with the capability to withstand the concurrent + failure of 1, 2, and 3 disks respectively). A tooltip across + the bottom of the screen while selecting the pool type + provides advice about the number of required disks for each + type, and in the case of RAID-Z, the optimal number of disks + for each configuration. + +
+ <acronym>ZFS</acronym> Pool Type + + + + + + +
+ + Once a pool type has been selected, a list of available + disks is displayed, and the user is prompted to select one or + more disks to make up the pool. The configuration is then + validated, to ensure enough disks were selected. If not, + select <Change Selection> to + return to the list of disks, or + <Cancel> to change the pool + type. + +
+ Disk Selection + + + + + + +
+ +
+ Invalid Selection + + + + + + +
+ + If one or more disks is missing from the list, or if disks + were attached after the installer was started, select + - Rescan Devices to repopulate the list + of available disks. To ensure that the correct disk is + selected, so as not to accidently destroy the wrong disks, the + - Disk Info menu allows you to inspect + each disk, including its partition table, and various other + information, including the device model number and serial + number, if available. + +
+ Analysing a Disk + + + + + + +
+ + The menu also allows the user to enter a name for the + pool, disable forcing 4k sectors, enable or disable + encryption, switch between GPT (recommended) and MBR partition + table types, and select the desired amount of swap + space. Once all options have been set to the desired values, + select the >>> Install option at the top of + the menu. + + If &man.geli.8; disk encryption was enabled, the installer + will prompt for the passphrase to be used to encrypt the disks + twice. + +
+ Disk Encryption Password + + + + + + +
+ + The installer then offers a last chance to cancel before + the contents of the selected drives are destroyed to create + the ZFS pool. + +
+ Last Chance + + + + + + +
+ + The installation then provides normally + +
+ + + Shell Mode Partitioning + + When creating advanced installations the basic interface + of bsdinstall may not provide the level of flexibility + required. Selecting the Shell option + from the partitioning menu will drop the user to a shell. The + user is expected to partition the drives and create the + desired file system(s), populate an &man.fstab.5; file in + /tmp/bsdinstall_etc/fstab, and mount the + file systems under /mnt. Once this is + done, running exit will return to + bsdinstall and continue the installation, starting with the + extraction of the distribution sets. + Index: head/share/images/books/handbook/bsdinstall/bsdinstall-keymap-10.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = image/png Index: head/share/images/books/handbook/bsdinstall/bsdinstall-keymap-10.png =================================================================== --- head/share/images/books/handbook/bsdinstall/bsdinstall-keymap-10.png (revision 0) +++ head/share/images/books/handbook/bsdinstall/bsdinstall-keymap-10.png (working copy) Property changes on: head/share/images/books/handbook/bsdinstall/bsdinstall-keymap-10.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/png \ No newline at end of property Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_info.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = image/png Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_info.png =================================================================== --- head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_info.png (revision 0) +++ head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_info.png (working copy) Property changes on: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_info.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/png \ No newline at end of property Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_select.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = image/png Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_select.png =================================================================== --- head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_select.png (revision 0) +++ head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_select.png (working copy) Property changes on: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-disk_select.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/png \ No newline at end of property Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-geli_password.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = image/png Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-geli_password.png =================================================================== --- head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-geli_password.png (revision 0) +++ head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-geli_password.png (working copy) Property changes on: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-geli_password.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/png \ No newline at end of property Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-menu.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = image/png Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-menu.png =================================================================== --- head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-menu.png (revision 0) +++ head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-menu.png (working copy) Property changes on: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-menu.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/png \ No newline at end of property Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-partmenu.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = image/png Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-partmenu.png =================================================================== --- head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-partmenu.png (revision 0) +++ head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-partmenu.png (working copy) Property changes on: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-partmenu.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/png \ No newline at end of property Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_invalid.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = image/png Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_invalid.png =================================================================== --- head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_invalid.png (revision 0) +++ head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_invalid.png (working copy) Property changes on: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_invalid.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/png \ No newline at end of property Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_type.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = image/png Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_type.png =================================================================== --- head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_type.png (revision 0) +++ head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_type.png (working copy) Property changes on: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-vdev_type.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/png \ No newline at end of property Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-warning.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = image/png Index: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-warning.png =================================================================== --- head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-warning.png (revision 0) +++ head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-warning.png (working copy) Property changes on: head/share/images/books/handbook/bsdinstall/bsdinstall-zfs-warning.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/png \ No newline at end of property >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Mar 18 00:00:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F5718E3 for ; Tue, 18 Mar 2014 00:00:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4BB8FBC2 for ; Tue, 18 Mar 2014 00:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2I0010q052591 for ; Tue, 18 Mar 2014 00:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2I001h5052590; Tue, 18 Mar 2014 00:00:01 GMT (envelope-from gnats) Date: Tue, 18 Mar 2014 00:00:01 GMT Message-Id: <201403180000.s2I001h5052590@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Allan Jude Subject: Re: docs/187683: [patch] Handbook section on bsdinstall is missing details of ZFS feature added in 10.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Allan Jude List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 00:00:02 -0000 The following reply was made to PR docs/187683; it has been noted by GNATS. From: Allan Jude To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: docs/187683: [patch] Handbook section on bsdinstall is missing details of ZFS feature added in 10.0 Date: Mon, 17 Mar 2014 19:51:43 -0400 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --khn8dqftHUkRBut5swindfsLrX6DRfhNp Content-Type: multipart/mixed; boundary="------------020306050500030101010109" This is a multi-part message in MIME format. --------------020306050500030101010109 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-03-17 19:50, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `docs/187683'. > The individual assigned to look at your > report is: freebsd-doc.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D187683 >=20 >> Category: docs >> Responsible: freebsd-doc >> Synopsis: [patch] Handbook section on bsdinstall is missing deta= ils of ZFS feature added in 10.0 >> Arrival-Date: Mon Mar 17 23:50:00 UTC 2014 Attached find the images to go with the patch in head/share/images/books/handbook/bsdinstall --=20 Allan Jude --------------020306050500030101010109 Content-Type: image/png; name="bsdinstall-zfs-disk_select.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bsdinstall-zfs-disk_select.png" iVBORw0KGgoAAAANSUhEUgAAAtAAAAGQCAIAAAAIhcA6AAAONUlEQVR42u3dW3Kj2BJAUc9S U/QsudHtuApaQJLnARzEylgfLlOWMWWLbR6qn5+fXwCAg9kEAMCFwfGapqWD1iP+RFuLWtbt iC+q4qGCdTh6mwPAKEc45ju8o3d+W59rNTKWf6xujiPWv9cHCg4AHhccdb/BnxYcFbtnwQEA YwXH6jmOrcP+FSdHiiKj1zGYYB1azuwEH9UlOOLVcC4GgLsGR7zby7dC5lhF5tMdFxzVB1oy nz2+VqM0ieJt6OgIAN9whGN3x7xaD/FVqJl0KDou0jc4dh9/99rPjsHRsg0BYPRrOLr/vl6R DkdfwxE/YGk31FVU9XEUkQGA4KgMjpMvGq1OBMEBAJcFR3s6nHxbbPs1HMlHOO4aDt/WANwp ODKXcJZetdB+o8fRL/y1GxmlL9UVX8hZsZEzW8N3NgB3OsIBACA4AADBAQAgOAAAwQEACA4A AMEBAAgOAEBwAAAIDgBAcAAA7AXH8v83+fhPRiyyyCKLLLLIIoty/4eX5gIAnFIBAAQHAIDg AAAEBwAgOAAABAcAIDgAAAQHACA4AADBAQAgOAAAwQEACA4AAMEBAAgOAADBAQAIDgBAcAAA CA4AQHAAAIIDAEBwAACCAwBAcAAAggMAEBwAAIIDABAcAIDgAAAQHACA4AAAEBwAgOAAAAQH AIDgAAAEBwAgOAAABAcAIDgAAAQHACA4AADBAQAgOAAAwQEACA4AAMEBAAgOAADBAQAIDgBA cAAACA4AQHAAAIIDAEBwAACCAwBAcAAAggMAEBwAAIIDABAcAIDgAAAQHACA4AAAEBwAgOAA AAQHAIDgAAAEBwAgOAAABAcAIDgAAAQHACA4AADBAQAgOAAAwQEACA4AAMEBAAgOAADBAQAI DgBAcAAACA4AQHAAAIIDAEBwAACCAwBAcAAAggMAEBwAAIIDABAcAIDgAAAQHACA4AAAEBwA gOAAAAQHAIDgAAAEBwAgOAAABAcAIDgAAAQHJzHGjDaelxAcCA5jjOBAcMDDguP1mlZtLdr6 wLrP2PdLCJaOsJ3j9ZcIggPBAd8fHFvvybxdtMsMHqRx/bcebYTdebwOgkNwIDjgEcER7PyW f2wJjtW46bgvH3a3LSkEB4IDegbH9O985dGO5f6yYiea+UV/69zN1qmT5GMG7y89ihOsRvz+ 3TVp3xoPzot/RnAgOBAct6yN3estSvd5+Sstgj8u3y49YZE8NxTUQ+kZnJY1LF1JwSE4EBx8 c3BMi5knyMiL4v1WcISj8QKOLsGR+ezdgyP4wPhwxdHBMf432xHfvT+LERwIDhzhuNOxjcaL M74+OIquhHWEwxEOBAc8PTi2dpD5XWyXi0YFh+AQHAgOcFtsn+D4rb3P9muCI5kjgsNdKggO eOgLf+VvKin6jMkHrL5otPpzbd3Akrl+tvpulMatYQQHggPBYe53/YoRHCA4EBymT2QIDsEB ggPBYc44kWRrCA4QHAgOY4zgQHCA4DBm0OCoG09oCA4EhzFGcCA4EBy/9//P24y5dV4IDgQH gsMYIzgQHCA4jBEcggPBwXcHx/K50pjHTq8fIsGB4MBFo4LDmM7BsfVjJTgQHDjCsf6cGDxX WmTRFy96//jMxxEOBAc4pWKMUyogOBAcxggOwYHgQHAYYzqO4EBwIDiMMYIDwQED3KVijDko QQQHggPBYYwRHAgOEBzGCA4QHAgOY4zgQHAgOIwxggNsAgSHMYJDcCA48MJfH8+Ydc+zvZ67 X6/pT8WHFH1Ucvu83xO8TvZyaeYB86ux+iGr74lXo2jNd/+Vdz9X/ust3T69vg+98BeCA64J jl476S7NUfGX25sj7oPM2/GiXsGxtX/NrNVuVJVultItkEmHun+y0o8VHAgOEBxT3d9sbI7u wVG3R0w+YH5tWwrptOCoOFBR13OCA8EBwwVHZs9RFhzhBSlbJ0fi9w8eHBW70rpWODM44n/3 3UMmvfpVcIDg4GYXje7uPDJ7l9JP+fH1vFshiIaPRcsPOSE4di/UKN09Jy9CzAdHcMlFx+DY PbNT941RFxwtieOiUQQHXHyEY/NpstcRjtlHxZdizI9wXB4cFUc4Gn9xD6Ln6LMtmZVvP6Jz VXA4woHggIGu4eh5hGP+NaSDI7nIKZWTT6lkVtgpFcGB4EBwXHENx/DBUbdjPvOi0UGC46C7 VAQHCA7cpdJjD9E7OH573xYbH5AY4bbY9uAY+bbY5LWopU0sOBAc8LwX/pp/JWvNsXopRrDo t+sLfxXtVIKljb+CtxycCJJo8Bf+qr5ayAt/geDgNnepGGPcpYLgAMFhjOAAwYHgMEZwCA4E B4LDGCM4EBxwZXCcuYbjbyjfYH5SBAeCAwSH4EBwgODgnrfF/j3sNJv8yqx+VOPufJpef4o2 y/JD6ma5Bd7vmRaztSnmi4IH3N2w8YesvidejaI1j/+Vd7/k93vqvqkK//XLvg8P+CESHAgO BEdJcNStUt/gWK2HikbpHhzJt+NFvYJjqw8ya7UbVZkIiNewOjiqq3f5tuBAcIDg6Bkc79oY Mzjq9r7JB8yvbUshnRYcFYfZghUTHAgOuFNwZPYcRcEx/19f8/Ww9f4zT6lUB0fFrrSuFc4M jrgkdg+Z9DqlIjhAcHCzi0Z3dx6ZvUvREY5lc7yjoSgszg+O3Qs1SnfP8TaPL4kovVajY3Ds ntmpO2xWFxzLN1w0iuCA2xzhmDam1xGOeXDMiyE+wnF5cFQc4Wj8xT2InqPPtmRWvv2IzlXB 4QgHggMGuoaj4xGOeWTkgyNuEadUrjqlkllhp1QEB4IDwXHBNRzjB0fdjvnMi0YHCY6D7lIR HCA4cJdKh7tUbhEcP3uvPHHtbbHtwTHybbHJa1HdFguCg3sHxwkv/DW/emO1OVavG80s+rjC o/GVRndf5+qqF/7KXN6Rv9z1Z6QX/iq9Wqj6+1BwIDjgsrtUzlnD8TeUbzA/Ke5SQXCA4BAc CA4QHAgOwYHgEBwIDjyNCg7B4SdFcCA4YLinUWOM4EBwIDiMMYIDBAdD3hZrjOmSF4IDwYHg MMYIDgQHCA5jBIfgQHDw3cGxfK405rHjlUYRHHDURaOCw5juhwkFB4IDRzii58T543yMRRZ9 8aLVpY5wIDjAKRVjnFIBwYHgMEZwCA4EB4LDGNNxBAeCA8FhjBEcCA4Y4C4VY8xBCSI4EBwI DmOM4EBwgOAwRnCA4EBwGGMEB4IDwWGMERxgEyA4jBEcggPBgeAwxggOBAcIDmMEBwgOBIcx gkNwIDjwSqPGmO55ITgQHAgOY4zgQHBAc3BMi5kniEUWWXTEotWwEBwIDhzhMMY4woHgAMFh jOAAwYG7VIwxRQkiOBAcCA5jjOBAcIDgMEZwgOBAcBhjBAeCA8FhjBEcYBMgOIwRHIIDwYHg 6P3ke96XbMsbwQGCA8EhOIzgEBwIDrzw132CY/X1pP/dCK8/f39z/vbXBkfvNXv9f3RDUV4I DgQHgmOsHeLfejb+FM2f3//7f1j8dg+OrRU+fze2s4mXb7c1x4ErLDgEB4IDwXFocPSojbOD Y2u1R6mNYYLjsc0hOBAcCI6xgqNTbWSDo+/5lOXKj1IbYXC8ZrN16mS5dP6e0vh4YHMIDgQH LhodKDj61UYqOI64euPjSxilNpZnrRIHLZJ/dG7FRaMIDrjTEY6utXFZcHx8IaPURvoIR1AY wcGPU78QRzhAcCA47nWE44hbVEY/wrF4OzgzcmhwPO0Ih+BAcCA4Hn0NR9/muOM1HI3BUXdK xTUcggPBgeBwl8qz7lLJB0fwx6LmcJeK4EBwIDiGCI4uzfF77gt/jf46HOGazc+MrFbF1uUd FcHhdTgEB4IDd6kMFByHfsm2vHGXCggOBIfgMIJDcCA4EByCQ3AYwYHgAMEhOIzgAMGB4DDG CA4EB4LDGCM4EBwgOIwRHCA4EBzGGMGB4EBwGGMEBwgOjg6OYV9p1Jgn5IXgQHAgOIwxggPB Ac3BMS0meNazyCKLuixaXSo4EBw4wmGMcYQDwQGCwxjBAYIDd6kYY4oSRHAgOBAcxhjBgeAA wWGM4ADBgeAwxggOBAeCwxgjOMAmQHAYIzgEB4KDh3wjGmMGG89LCA4EhzFGcCA4QHAYIzhA cCA4jDGCA8GB4DDGCA4EBwgOYwQHCA4EhzFGcCA4QHAYIzgQHCA4jDGelxAcCA5jjOBAcIDg MEZwgOBAcBhjBAeCA8FhjBEcCA4QHMYIDhAcCA5jjOBAcIDgMEZwIDgAAAQHACA4AAAEBwAg OAAAwQEAIDgAAMEBAAgOAADBAQAIDgAAwQEACA4AQHAAAAgOAEBwAACCAwBAcAAAggMAQHAA AIIDABAcAACCAwAQHACA4AAAEBwAgOAAABAcAIDgAAAEBwCA4AAABAcAIDgAAAQHACA4AAAE BwAgOAAAwQEAIDgAAMEBAAgOAADBAQAIDgAAwQEACA4AQHAAAAgOAEBwAACCAwBAcAAAggMA QHAAAIIDABAcAACCAwAQHACA4LAJAADBAQAIDgAAwQEACA4AQHAAAAgOAEBwAADYBACA4AAA BAcAgOAAAAQHACA4AAAEBwAgOAAABAcAIDgAAMEBACA4AADBAQAIDgAAwQEACA4AAMEBAAgO AEBwAAAIDgBAcAAAggMAQHAAAIIDAEBwAACCAwAQHAAAggMAEBwAgOAAABAcAIDgAAAQHACA 4AAABAcAgOAAAAQHACA4AAAEBwAgOAAABAcAIDgAAMEBACA4AADBAQAIDgAAwQEACA4AAMEB AAgOAEBwAAAIDgBAcAAAggMAQHAAAIIDAEBwAACCAwAQHAAAggMAEBwAgOAAABAcAIDgAAD4 8D+t/rKWbNdPvgAAAABJRU5ErkJggg== --------------020306050500030101010109 Content-Type: image/png; name="bsdinstall-zfs-geli_password.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bsdinstall-zfs-geli_password.png" iVBORw0KGgoAAAANSUhEUgAAAtAAAAGQCAIAAAAIhcA6AAASRklEQVR42u3d63KjvBIF0Lxl XpG3zLnV+SoVG9FqtUDgtWv9mBkmNua6LbDz9fW1AQBMZhEAABcWju+fn1eT5qP9RHuTRuZt xotKPFRjHmYvcwBYZYTj9wlv9slv77nelozXv6Y7x4z5r/pBhQOAjyscuXfwpxWOxOlZ4QCA tQrH22sce8P+iYsjXSWjagymMQ8jV3YaP1VSONqz4VoMAHctHO3TXrwrRMYqIk83r3CkB1oi z96+V6O3ErWXodERAJ4wwnF4Yn7bHtp3oUaqQ9e4SG3hOHz8w3s/CwvHyDIEgNXv4Sh/v56o DrPv4Wg/YG9vyLWo9DiKkgGAwpEsHCffNJquCAoHAFxWOMarw8kfix2/hyP4CPPu4bBZA3Cn whG5hbP3roXxD3rM/uKvw5LR+1Vd7Rs5Ews5sjRs2QDcaYQDAEDhAAAUDgAAhQMAUDgAAIUD AEDhAAAUDgBA4QAAUDgAAIUDAOCocLz+fpM/v2TEJJNMMskkk0wyKfY7vHQuAMAlFQBA4QAA UDgAAIUDAFA4AAAUDgBA4QAAUDgAAIUDAFA4AAAUDgBA4QAAFA4AAIUDAFA4AAAUDgBA4QAA FA4AAIUDAFA4AACFAwBA4QAAFA4AAIUDAFA4AACFAwBA4QAAFA4AQOEAAFA4AACFAwBA4QAA FA4AQOEAAFA4AACFAwBQOAAAFA4AQOEAAFA4AACFAwBQOAAAFA4AQOEAABQOAACFAwBQOAAA FA4AQOEAABQOAACFAwBQOAAAhQMAQOEAABQOAACFAwBQOAAAhQMAQOEAABQOAEDhAABQOAAA hQMAQOEAABQOAEDhAABQOAAAhQMAUDgAABQOAEDhAABQOAAAhQMAUDgAABQOAEDhAAAUDgAA hQMAUDgAABQOAEDhAAAUDgAAhQMAUDgAAIUDAEDhAAAUDgCAtzYRERGRcBQOERERUThEls/3 989be5P2fjD3jLUvoTF1heXcnn+boojCIfL8wrH3L5E/d50yGw8yOP97j7bC6bw9DwqHiMIh 8hGFo3Hye/3rSOF4W24Kz+XLnrZVCpFPLxw//43lKHI42vF6vkycRCNv9Peu3Ww7l06Cj9n4 995RnMZstP/9cE7Gl4aIFNWL/0ThEDnvXXj7fovec178TovGX1//3HvBInhtqNEets4rOCNz 2DuTIrJW4fh5ye8KYpJJnzOpfd5qjHAkhjrKC0fk2csLR+MH28MVswuHDdskk8aPh18vMcIh Mndso6tMjP+32xWO4AMa4RD59BEOhUOkfYKMn2K3iptGFQ6FQ+TJhUNEus7Hg4Vjy37O9jGF I1hHFA6R9SqIwiFSUTgOv/jr8Adzzxh8wPRNo+nn2vsAS+T+2fSnUQaXhogoHCJymwEeERGF Q0SKS4bCISIKh4jM7RzahogoHCIiIqJwiIiIyAcVjlQsOBERETmvcHR98ddgd7l10dHSgtuG RTG+WNZfjOVzaMu5an2dsNuuf3B49w1XV87w3rM3luSMhby3WE4qHH/moOvl3fps5FRqKZ22 WNZfjCcc1+S0xXvOwlc4qhZXbtITCkfX+xKFw5nVYlE4bDmfuWMqHNd2kdsXjr3V8/oU7asw e5MaDxiZw9xRvmvm23M4+FPxrSc+G8GXPDjzb1vpaXM4vl91PVd7NnrnMLen5LaNka03MYe5 B4y/7Wk8ZmQtlxxtph4cIq8lsXh7d73BBZVeX/GfmnEQSGxRI+Wm/aLuXThyc9DYRrsKY3CT yi3KquPXFruiFjmctRdUyeWq9qz2zlLifzY6R3tVVs3hjGPNyP8sGeFIv+TE+srtDiPra3AR BZ8rWCsTXX/kqUtWSuLY23v+qzrLluxf5UeAxtktvUWNjKYsUjgib4quGeEYKRwz+uNIAY9P HTmmnFM4Dt90jmzThQeLrjks/+BV7njdmI30qjy/cFT1g+DSKDlQziscXfOTO3zFDzXPKxzB d8y9s3HmtZWPKhzL3cNRO8IxvvjGD/SRN9+9/35V4Th8wMQ9z7VvQXJzOHW/KpmN2xWO8QG/ kePgaoWj/F1KrnBUlYD1C8fIwPM5p9gZhaMxoqZw7C79xxSOxHzevXAkJp1cONKn2/JrUl2z oXAoHApH4pJKYpuvPcsqHOsWjtxGP3XQrGSMK3E75O0Kx7x7OKoKx+CD116Tqj23JQ7NaxaO qo2h8OaJCwtH4T0ckwpHcE+ZWji2aZdlS86+pxWOyP3Xn144Bm+5SN++nlhGvffrHd4Q0DuH wY2p5NbryKcDtv6bJ3Lra+819t54u419SmXkglrtgtqKru7VbhvprTc3h7kH7DoWjayU8aNN yW7etVK6jhu9H6TKva7g9pzevxIvOb02p+7m8Y/FBedwZBs+tXDImim84/XCGbvF0rMheY13 f8nWspy5FhSOp+1RCodYX15g1/tOa1kUDkmuznk/cubsyb02pzse9T7wQG8ti8IhIiIiCofC ISIiIgqHiIiIPLNw5D4W+4BFNmMd9P7UIkvjwueKLLqHVeQPLP2DL/nr6l+tPrL1rrMKbneA nbd4c4/5sXvuZYXjGUf/GS+h5Nskn7Eoep/r0wrH5oMVdT942pI852sun7G9FT7dCsfqT95z FY6H7NIKh7Ovl/yAPUXhePybQ4Xj+sIR+XWRXa+n6vvdBn8LV+JLEnMvOf2FjJHHjLyu3Gy0 F9TIS946f73c1I0t/ly5BXX4TfknzGFuixqcjW3sG6Dj+3LhN/mmt95J+3LX6xrZzUe+E6hk h520V+b2lM+8A/L6bxoN/laRxP68Vf8q7a43JYnZyB1GD+ehdxmW/1an4KFtK/p2ssMH7P1d D8F5KP+lFb3/s/016ifMYW6LSszGjM2m94C4jX07Z+/WW77kS35VTddzpc8aM3bYwm0+fdAz wL+t88vb0hto4gHnFY6q2Ti/cOR+wU3krUPJr27ahn9DfcnY5sgvdOg9HU76DVVdc5jbKyMb wOFb8ETVKywcjT9UnURPOB6m613XW6zGka2wI9busJMKR/lx3gjH3MJReFWs/FCe2x9ys3Hh CEfXTCYODVNXdGLVpBf7+JW4yBhy1SDE4LXCkjU18iZ+ncJRdeSddDwMrsrDa0kju/mMwjFv h50xwlF1nFc4FA6F4yGFY/DsldiSuyadXDgGx64VjnUKx8iQRskY4aTCMWmHVTgUjm3qEOKF haP8ksrsK+7BwpG7NSG37faushPu4Si8M+P8wnHmPRzp7WS8cPRuG4dnzZLZqD0ezr6Ho/cB qwrH1B32tKWhcGzXfkpl/K7s9v/PPVf79rTDy9K52Uh3jnM+U5Abiu9dUImXfHg//Pkfvtj6 b56o+ghAcDusmsPTFtTIpx622Acfgu/OR+6d731dUz8f1PtcI5+x2rKfLTpnO0w8V+05ReGY +CmV9ZeIyApbiy1TbF3yyA1P4RBROMRmLKJwzH/xNgVZZ2uxZcrUA70FIgqHiIiIKBwKh4iI iCgcIiIi8szC0fuxWBEREfmQeqFwiIiIiMIhIiIiCsd44XAjiIiIyC1SdaK/5qZRhUNEROTB hWPv1H/Z71LZ+yUFJplkkkkmmWTShZP+OcX/zpUjHC6piIiIGOFQOERERORTC4eIiIg8OAqH iIiI3LBwiIiIiAQriMIhIiIiCoeIiIgoHCIiIiI3KBzKjYiIiMKhcIiIiMh1heOE7wOxkkRE RK7K075pVOEQERFROBQOERERhUPhEBERkQcXjqooHCIiIg+OEQ4RERHZjUsqIiIionAoHCIi IgqHwiEiIiIKh8IhIiKicFRH4RAREXlwFA4RERFROBQOERERhUPhEBERkdsUDhEREVE4FA4R ERG5rnDkPi0jIiIij68XCoeIiIgoHCIiIqJwzPimUREREVkw9/6mUYVDRETkwYVj79R/3gjH 3kP9vItJJplkkkkmmXTJpLdTrxzhcElFRETECIfCISIiIp9aOEREROTBUThERETkhoVDRERE JFhBFA4RERFROEREREThEBEREVE4REREROEQERERhUPhEBEREYVDREREFA4RERFROHzTqIiI iJTXC4VDREREblI4fl7yu4KYZJJJJplkkkmfNultsTDCISIiIsuPcCgcIiIiclLhEBEREQlW EIVDREREFA4RERFROEREREQUDhEREVE4REREROFQOGTVzfeZREQUDoVDFA6FQ0Tk9MLhi7/k YYXjz5f1/vr37//5/VeF4yFbz3X5/n+sEHlkvVA45JmF409FSLeN/b8WF469GZbpx77fC3qN znF4sBZROBQOWaJwjLeN8wvH3mzLeW3jn39ZrHDoHKJwKByyYuEoaRvxwlF7PeV15mXqUa+9 lL9/5W0taEztndQuHDqHKBx2AFmrcFS1jWDhmHH3xp8nkoltY4teQ2l0jsaf45MihUPnkOft j0Y45K6Fo7BtXFg4/jyXTGwbPSMcucLReLRE4dA5xAiHwiEfOsIx4yMqRjgWGeFo14h04egd StE2ROFQOGTFwnH+PRy1ncM9HGd3jv2bRlcrHNqGKBwKh6xVOHxKRfKd49efSwpH1T0c2oYo HAqHrFg4ajvHOV/85Xs4ru8cL0v8950WvU0i8SmVvUnahigcPqUi6xYOX20uIrJ4BVE4ROFQ OEREFA4RhUNEROEQUTgUDhERhUNEREQUDhEREVE4FI6brtE//7j316vmcNL/v+kqe+TrOu0B F9mkG8fJ19lb5LjamPPGcaPxkg8fsPGSnWUUDoXj9mevpQpHYgYUDi+q/YArFI63f2iX5sbZ /aqV9bYfNP7b25fc1Vo+bX93elI4FA6FQ25cOBYZy/lzNt07N69cOF7nfK9SRF7y6+iOwuGw 4JtGP7pwtMeBE0Xz8EcaR97GbGxHX12Xez8aPBpGRpsbD3g4htzeM2vfgne95PZK2XvAw0t7 8VUZH4cPLsPDlVK498UvbsbnpPx1/f7Bw9ND1wEnN6ijcDz1ZKRwfHrhyE0afFfaO7y89zYr fZCKDP8enkfb4+fxme89S41vGMGXvKXGyXOruHcbvuRMP6lwdPWDwY2t6x3C29sy4isr3aQV DoXj71by85LDUmzS1EmDIxzB4a+Rd2CDhSMxtND7Vjv+dn/vcNz7tj5+tl65cIyv4sPN5taF I71t5ApHbshkb4QjMoyUGOGIFw7H+dudibp+ygjHZ11SObyQUXJim1E40qeNGYWjd5hH4Ris ZY8Z4ZhUOMpHIhOFo/D4IC6pKBwPKRyTDl4Kx7zCMXLjrcIx+HTPLhxdF1WDBxyFw8lo8ykV haP8Hg6Fo3e55e7hWKpwBO/zLSkcJffBKBwla3lGs1Q4Hn96UjieuUYba3p8UmQetoEPI7x9 tK30LrmuB4x88UD7WmbV+hopHO3n2iruntlbccHnOmwV8VsUg7c6VRWO3u/cSx9X0xtb/BzQ VSsTt1x0PaAoHCJnjM1I1bKyeC0rEYVDxFHe4hURhUPhkHM3REvD4hURhcMxS0RERM4qHP+u HCkiIiIiCoeIiIgoHCIiIqJwKBwiIiKicIiIiIjCISIiIqJwiIiIiMIhIiIiCoelJiIiIgqH iIiIKBwiIiKicCgcIiIionCIiIiIwiEiIiKicIiIiIjCISIiIgoHAEDnUIVFAAAoHACAwgEA oHAAAAoHAKBwAAAoHACAwgEAYBEAAAoHAKBwAAAoHACAwgEAKBwAAAoHAKBwAAAoHACAwgEA KBwAAAoHAKBwAAAKBwCAwgEAKBwAAAoHAKBwAAAKBwCAwgEAKBwAgMIBAKBwAAAKBwCAwgEA KBwAgMIBAKBwAAAKBwCgcAAAKBwAgMIBAKBwAAAKBwCgcAAAKBwAgMIBACgcAAAKBwCgcAAA KBwAgMIBACgcAAAKBwCgcAAACgcAgMIBACgcAAAKBwCgcAAACgcAgMIBACgcAIDCAQCgcAAA CgcAgMIBACgcAIDCAQCgcAAACgcAoHAAACgcAIDCAQCgcAAACgcAoHAAACgcAIDCAQAoHAAA CgcAoHAAACgcAIDCAQAoHAAACgcAoHAAAAoHAIDCAQAoHAAACgcAoHAAAAoHAIDCAQAoHACA wgEAoHAAAAoHAIDCAQAoHACAwgEAoHAAAAoHAKBwAAAoHACAwgEAoHAAAAoHAKBwAAAoHACA wgEAKBwAAAoHAKBwAAAoHACAwgEAKBwAAAoHAKBwAAAKBwCAwgEAKBwAAAoHAKBwAAAKBwCA wgEAKBwAgMIBAKBwAAD39i/ciVcldYOXdQAAAABJRU5ErkJggg== --------------020306050500030101010109 Content-Type: image/png; name="bsdinstall-zfs-menu.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bsdinstall-zfs-menu.png" iVBORw0KGgoAAAANSUhEUgAAAtAAAAGQCAIAAAAIhcA6AAAbgUlEQVR42u3dW3LjOhIAUe+y t6hdembujXG4RbJQKIAUHycjP7otS6JoWUiDr6+vrxdJkuTOWgUkSfKDwfHn+3vpTssRP9HW TSPLtseLKjxUsAx7r3OSJM8yw/F7wNt78Nt6rtXIWP633Bx7LP+sOwoOkuTjgqP2F/xhwVEY ngUHSZLnCo7VbRxb0/6FjSNdkTFrDiZYhpEtO8G9pgRHvBi2xZAkrxoc8bCXb4XMXEXm6fYL jvJES+bZ4301epMoXodmR0iSd5jhaA7Mq/UQ74WaSYeueZG5wdF8/Oa+nxODY2QdkiR59n04 pv+9XkiHvffhiB+wtxtqFVWeRxEZJEnBUQyOg3caLSeC4CBJ8mPBMZ4OBx8WO74PR/IR9tuH w9uaJHml4Mjswtm718L4gR57n/irGRm9p+qKd+QsrOTM2vDOJkleaYaDJElScJAkScFBkiQp OEiSpOAgSZKCgyRJUnCQJEnBQZIkBQdJkqTgIEmSgoMkSbIVHMvrm7xdZMRNbnKTm9zkJje5 KXcNL81FkiRtUiFJkoKDJElScJAkScFBkiQFB0mSpOAgSZKCgyRJUnCQJEnBQZIkBQdJkqTg IEmSgoMkSQoOkiRJwUGSJAUHSZKk4CBJkoKDJEkKDpIkScFBkiQFB0mSFBwkSZKCgyRJCg6S JEnBQZIkBQdJkhQcJEmSgoMkSQoOkiQpOEiSJAUHSZIUHCRJkoKDJEkKDpIkKThIkiQFB0mS FBwkSVJwkCRJCg6SJCk4SJIkBcdEAQBXwZglOAQHAEBwCA4Kjgfw58/3qls3bd2x9oxzX0Jw 6xnWc7z83ooQHIKDguP+wbH1lcy/u4bM4EEGl3/r0c4wnMfLIDggOAQHBccjgiMY/Jb/HQmO 1biZOJafdtiWFBAcgoOjwfH9D36fbz/bsRwvC4No5g/9rW03W5tOko8ZfL13FidYjPjrzSUZ XxvAP3nxPwSH4BAcuExtvFr7W/SOefk9LYL/Lv/du8EiuW0oqIfeLTgjS9i7kIDgEBx3C47v Bb8TxE1XuSket4IZjsJUx/TgyDz79OAI7hhPV+wdHN7Yfpe/FggOwWGGA9fYw6C8c8btgyP5 gGY4YIZDcFBwIBog80Psa8ZOo4JDcEBwCA46SuVZwZEZz6YfFvuQ4EjmiODA7ASh4BAcOEdw NE/81bxj7RmTD1jeabT8XFsHsGT2ny0fjTK4NgDBITgEB3ClLUqA4KDgEBzAzMgQHBAcFByC A9i3OdQGBAcFh+AAAAgOwSE4AACXCY4aBjvBITgAAIJDcDjxV/6tP/d3Kbj1Ep8CvfeNH9aH LPDkvBAcguPpwfH36f0njIs/D7L1aKcdfd8WrGs5428WHIDgEByC49HBsfprMPFX61qj7H7B 8dmPNgCCg4LjdMGR2b7wNoex+ovUfMzg61uTLoXF6No4EgRH8FxbV4PMv+S5r0twAIKDguN0 O43m97TIDMav3O4gcaMknyifKfkxuPaSa5tURlavtgDukSCCQ3CY4RgafZuj4PTgiLsnP8lx /uAQGYAZDgoOwfHh4BjfrHCJ4Hi1DgICIDgoOK6006jgOG1w7PHaAQgOwcHPHBZ7p+A4cpNK sH/o+HNlXpfgAAQHBcfFTvwV7ANR3mm0/Fxbe4bGzdG79SGzGM1n3G/1vsZOTQZAcAgOq8Cp zc/+B7oBHsDczxPBITgExyfHcsEBQHAIDsEhOI749bN4AASH4BAcggMAIDgEh+AAAAgOCg7B AQCCQ3AIjiceFgsA2DsvBIfgEBwAAMEhOCg4AEBwCA7BcY/gcMAnADSZ9QErOATHc3caFRwA sFNwbH3kCg7B8cSLty1PbLX+ZneTm9zkpufd9PPR+hszHIJDcNikAgA2qVBwCA4AEByCQ3A4 SgUAMBHBITgEBwBAcAgOOrU5ANw3QQSH4BAcAADBITgoOABAcFBwCA4AgOAQHIJj/FeFKtDb hn5hBYfg8Kti5BAcgoMUHBQcVz/x1/Gv7vv7z48TH7O8GMmb8JvlmaFP+9s0fQmDR1t+feTZ 91i9hYcKlqG8eMFdZr3e/Nt4/ANWcAgOwZENju8/f/5rMCr33pQc7OcWzNw7Co722+bXwHCJ 5tj70Xq/fp4lH2ys3seM7yI4KDhuPsNxcHMIDsFx3eCYFSKC4+ObVASH4OBnNqkc2RzLe/18 ZXVzxu+tML9vevt6cC/BcVhw/Px7db492BAz/abCVomtx483IsQbmN5WyODYXFu9mSWsVUXX am9uicv8HJeva/WOgkNw8NQ7jR7WHKt3+f3FrX/HsdI7kyE4xoMjHlfiiZBdb6qN9M3gKG9S qTVHMPr2ro3MsxcmaQrbR3rvkvwpv/3bTqOCg2ffafSY5ugKjubjN/f9FBx7z3CMj4jNR1vt m+ZNvXP4+wVHbWtCV3CUd49o7v87MsNx5uAwwyE4+LHgOOcMR/Kgkq5HExyHBUdy5Jg4nz8l OII5iTMHR+agksLidf0Img8oOASH4LAPxyf34RhJBMEhOARHeVuG4BAcgkNwPO4olfF9OJKP IDjOHxxzb+oNjuROoM1YOTg48vtw9K6onYIjmSOCg4LDeTiGaiPe9zM+GuUrd6qu31/sOoZl 9SZsnfir68CQI49Sqe2tmdxgkTwRVrBnSfnEX83I6D1VV7yiCj/r5povP2B+bQgOwcFTH6XC k/xQLjHDQfqFFRyCw6+KkUNweNvQL6zgEBwUHH4ogoMUHBQcgoOCw9uGfmEFh+DwqwIAOE9/ Cw7BITgAAIJDcPAMh8XWquefA2n/csrvbe+jLRdj4sIUFjt49trruvqncPmz+zzjR+2Og6+r 9uzoxWGxgoOfCI7VfyQGxcJomn/Y/Dcv//GR5ggWoHfBrh4c5fHy4wPt7wUoN8f46xIcgoOC 447B8VYev794+uBYXZjDImO/tTHyIGeIlfOMl4WphTOEguAQHBQctwuO5VRH/6j2NsIFmxia Wx9qg+XWE8VLW1vC/OM3N5E0V1Tv6j0yON4/O7c/fJfvzK1NBqtfj++19VzHB0ewGM2vx88b r2HdIDgEB6+202gpOJbDXn4kDsbgXYMjWKrMEjafLvm6kkuYfyEfnDbIj9O/h8lgDE5u5mgu Rvl1xQuZuWNvysRxll/z+NSvg+AQHGY4jpjhqP3pf9rgiKcQml+s3SvouRNuMWm+zTLj7qzg mPgXfy04Mrt95F9scr7EMG+Gg1ai4LjPDEftVXe9rszWlvy9PvWHXS048u/e5AzHHhW1a3Ak t7Z0rXkIDsFBwXH54Ege9Vp4XcHyFw61PbhFuv4KPz44DtiHYyQ4ms/bnAXRDYJDcFBwXD44 Ci1S2+3jNXUvkwOCI78PR+8+B9P34Rg5zKR3B47XDvtwvHbebUVwCA7BITiODY7OfVaTE/69 x4DUTt6VfK7B42iatZFcIcnnGjlK5eDtKflp/+aeFvEhG7WjVAZfWmHrUryQmYV/+4qjVAQH BYdTm1+GkxzcgYlbbYBTvT8Fh+AQHGhvzoDgAASH4BAcqEdGc0OGFXWtT3NrA4KDgkNwAIDg EByCQ3AAAASH4KDgAADBQcHxgPNw9NA8//eZ2W/J7RcCXAiHxQoOXiA4Xrtdnv7I5pi+5IID EByCQ3AIDsFxk4UHIDgoOARHY5vF+E3BREW+GwoLnzw3eXz61Clr4yTsehE1QHBQcNhptG9g rl2ppHZFkvzYPOVaKoWvzF0bJ2kOtYGHIzgEhxmO7HfXkmdrN4jl/qS1kuiaCZgbHKtPNyU4 ghd1rZOvb36CAmY4BIfgEBzHbFJpjpTNbshv/th7hmM8LwoXl29uozHDAQgOCg7BkR3183/Q nyQ4Mt85NzgusT3lyLccIDgoOATH6K4JyZumB0d+B5TldpDCLMjN9uEABIfgEByC46ATfwUD 5B5Hqbw69+uMF773oJL4WfY7MEdtAIKDgsOpzQHg0QgOwSE4AACCQ3BQcACA4KDgEBwAAMEh OAQHAEBwCA4KDgAQHIJDcDgsdoTMQZuFq6nVjv+sHT7qiFPg4TgsVnDwAsHx2j53Vi04XmOn tyo/l+YABIfgEByC46qXpz8mGmbFjeAABIfgEByC46rBUTiP50jBBI9Wu1acDS5dbzPXUoHg EByCw06jH5vh6LqwyOBmjuYCbF2DPn4czZH55FUb8IsgOASHGY7Ud9eSpxAc+amFKZtUCpdD ExyDn7DWDMxwCA7BITg+P8OR39oiOMxwAIKDgkNwDAVHc4PL3ptUBMfE2jjyLQcIDgoOh8Wm DotN7sPxmnRIreAAIDgEB29+4q/4UJTlTW9fqZ00LHnYS37J1QYgOASH4HCUCgDg8wgOwSE4 AACCQ3BQcACA4KDgEBwAAMEhOAQHAEBwCA4KDgAQHIJDcDgs9ue7/3rKXPK8HTs66/DR3kdz 2oynfaxbCZiIw2IFBz8RHD/fP+9aKiPNUQsUwXH7PyKtBwgOCo5bXLztssFRPic6BAcEh+AQ HILjqleLDba2JE9RWgiO4OylW8vQu/CIP2Hf3n6r13ULri67dZNr0kJwUHDcYqfRt7mNzuDY GubzXTIeHK/c2crjTFmdI9Ecmc/c4PM3/s7kTWY4cMX+FhyCwwzHdnC8XuUZjubovndwvNZ2 OG0m0dY/THIMvtm2SkJwwAyH4BAcgmPjv9cJjlfram354PBBPPhOS35dcEBwUHAIDsGB+ttM cEBwCA7BITgER0dw6I/ke6yZCxODQ3lAcFBwPPTEX/GtXUep9O45kdlfdVkScWfYgSP/HguO Uombo/cAlrdvsP4hOCg4nNocAPS34BAcggMAIDgEBwUHAAgOCg7BAQAQHIJDcAAABIfgoOAA AMEhOATHIw+L/fuetQupnPwI0uBw2VfPyTZ2er3HrLq5C988T0bySmzGKnwQh8UKDn4oODon WHa6PP1+A+3gwu90TrBjVt30hY/PBFq4lgogOCg4nhEc/Vt0lmPYmWtDcHwqOP79r+CA4BAc gkNwLK5Q3zmGxScMDc4pnj8JaW1zQHCFlNrFU4JvLix8vE1q+jqcnjiZqYv4QrKA4KDgeNJO o8vL08+bPHj1n268OQNRmJCIB+a5G2h6Fz5zQZnxdbjThErmJOXBvQx4uAeCQ3CY4ejfmNKT PFszHJnBsmu7Rm0H1fheg7tPNucq8ttrysFRq7HpW3BW32zBDIepDpjhEByCw1Eqr5F9OAqD ZdfWipGPlVmbVPIzKIMFUFuHwRzMp4JjrzcqIDgoOATHtYLjNWOn0VMFx05hMRIcdhqF4BAc gkNwnDQ4xvfh+GBw1PbhyN+rtuY/NcPhsFgIDsEhOATHWm3kmiPeB6K258T0o1S2nnSPE3+N LHz52JauJdwjODKn9nLiLwgOwSE4HKUCAJhZ3oJDcAgOAIDgEBwUHAAgOCg4BAcAQHAIDsEB ABAcgoOCAwAEh+AQHE5t3ps8tdONf4SuBZt+8bPyyjn5uo3PqOHYV1wCh8UKDh4bHK/i9dtq p7I4vjbKZwmbdSqL8TOVnXD1vsWEs3tBcAgOwSE4OoPj3/+WBsWbBceskf7ewfFzkTbBAcEh OASH4EgHR8+9mleLLZxAc/VemROHx2fkLGwE2Rrptx6teabR4LUcfLm16cERzHYIDggOwSE4 7DS6CI7O5w5GyuQ16LdG31f1wiLxYD9rhqP5LHFLdU1jnHZb1dvchuDAkxEcgsMMx2dmOPLB MTFTPhscr8QFY2s9cf7geIX7cwgOmOEQHIJDcKwFR3Vgnh4chfmDzwZHcmtL/l4XCo6XfTgg OASH4BAcleAY3mn0mcHRXIYrhoXggOAQHIJDcOwTHDMOix3fODI9OHqvQf/qOSy2toT32IdD cEBwCA7BITh6amPqib8Kx2Uktzs0j0bp3WYRP1H8DZk7vn2ltvDXCo6XE39BcAgOweEolRtw /nNUAHgUgkNwCI7714bgACA4BAcFx8zIaG7IsKIACA7BQcEBAIJDcAgOwQEAEByCQ3AAAAQH Bce9DotNUL40WuaR4yedeK+JFNbGDfY+WT32deuibsHnshELH8FhsYKDxwbHa/6JvwaH7d5b a/eaXhuFZ7x0cCRP9rX679Xr2gOCg4JDcJwiOE47bD8wOFY/czPBEXwREBwUHIKjLzjio1hX tyY0t9Fkzu+ZvNerdWLQwvaO5NVi82de3+nUpfsFR3Lyo/gWBQQHBccddhotPX1mbAvG0Vf/ WbxmbVIZuThLZoX0PtdybTQXabW0jjwHayY4gl00BAfuhOAQHGY4SjMcMzZkZP6mv19wFDav xNd1W12Ny7xYzsocMMnxthNG7wXbBAfMcBjpBIfgGA2OPZLiQsHR9QjJC8nGW2EKV8SdPsMh OCA4BIfgEByCY/fgKD+C4AAEBwWH4PhkcAR7eo7f64PBkfzOzLc1g+PI/UYFBwSH4BAcgiNX G53NEe8lEO8LmWmO+LiS8XuV9zLJrJBdjzeJO+Owo1TePmdfi0NegzehU35BcAgOweHU5gCA YnkLDsEhOAAAgkNwUHAAgOCg4BAcAADBITgEBwBAcAgOCg4AEByCQ3A4D8d+11I5gOZiXPoS 8Bf6kLVCcDkcFis4eGxwvD1lrjkOPsfUyGIIjv1qo964gOAw2AkOwXGz4MDx/QEIDsEhOARH ojlKg33w9czJRpeXPB1cjLenC7bCJE/xicLnrxaB4BAcgsNOo2vN0fnczVODd23pKF+mNY6D ricyZTLrw9fMB572WyA4BIcZjv7smL1dI3mxj8Hrwhd2Gu2d/EDmnSY4YIZDcAgOwXFEcyQv Zzo9OF7Va8zmN9Ag8zYTHBAcgkNwCI5EYQzvNHpkcJSPUnEM7U61ITggOASH4BAchwbH6oaJ kwRHppb0R9d7bCsyBAcEh+AQHIJj0RzzTvzVHMKX/fGqHh4S3ytzHIqjVMrBsXXuL+cEg+AQ HILDUSrnxQD/qC0vwL37W3AIDsEhOHBcZAgOCA7BITgExxlrQ3Pc7/PX2oDgEByCQ3AAAASH 4BAcAADBQcEhOAAAgkNwPPewWADArnkhOASH4AAACA7BQcEBAIJDcAgOF28DgIfgTKOCg/MD HAAwJTi2PnIFh+B41gzH1uUtvtdwk5vc5KYH3rR6qxkOwSE4bFIBAJtUKDgEBwAIDsEhOByl AgCYiOAQHIIDACA4BAed2hwA7psggkNwCA4AgOAQHBQcACA4KDgEBwBAcAgOwQEAEByCg4ID AASH4BAcggMAIDgEh+AAAAgOCg7BAQCCQ3AIDmcaBQBMzwvBITgEBwBAcAgOpoPje8HvBHGT m9zkJjcdedNqWAgOwWGGAwBghkNwUHAAgOCg4HCUCgCgK0EEh+AQHAAAwSE4KDgAQHBQcAgO AIDgEByCAwAgOAQHBQcACA7BITgEB/7+4Kj8ULyjAMEhOASH4IDg8IMFBIfgoBN/XSc4Vs9q nAmO7+8//zrxTdL1aA/6sX2OP//H79ET8kJwCA7BgZnB8e/6/3ln/x0Zv6+kkG2OibWx+mh/ L/A9g+P94/73KzxHczTHJwgOwSE4BIePkmDwvkBwbDXHI2rj5ysnCw7NITgEh+AQHNgMjuWw HQwbvzeabM89rHw9uNfWTW9fT85z3PWDPn55f36xmgXBrb03xcGhOQSH4BAcdvHDyvgVTBIs d+D4pwtXmqAZHMG9mg/YnC95ewn3rI30NpSgOYJ/52/KBIfmuH2CCA7BYYYDfcGR2Q3ibeRY zjrkg2P1XomeaG+g+f1C7lkbPTMcteAIHq0QHJrDDIfgEByCA9kZjtUPndzw3zFLMR4cZjji jCgHR+9UitoQHIJDcAgObAbHRnNs7jR6tuB49D4c///v2YJDbQgOwSE4BAdWgqPrKJUP7sOx dtOTjlJ5bR4WOyU4Zu3DoTYEh+AQHIIDm8Gx3A0iOPFXZgeO/KEo+cNeMrVx8/NwvDZP/PV7 T4vekigcpbJ1k9oQHIJDcDhKBY3gcGpzAMkEERyCQ3BAcPjBAoJDcNDwIDi8owDBQcFheBAc ggOA4BAcggMAIDgEBwUHAAgOwSE4BAcAQHAIDsEBABAcFByCAwAEh+AQHM40CgCYnheCQ3AI DgCA4BAcTAfH94Lgne0mN7nJTW7a9abVWwWH4DDDAQAwwyE4KDgAQHBQcDhKBQDQlSCCQ3AI DgCA4BAcFBwAIDgoOAQHAEBwCA7BAQAQHIKDggMABIfgEBw3W/UAgItgzBIcggMAIDgEBwUH AAgOWomCAwAgOASH4AAACA7BQcEBAIKDgkNwAAAEh+AQHAAAwSE4KDgAAMYswSE4AACCQ3BQ cACA4KDgEBwAAMEhOAQHAEBwCA4KDgAQHBQcggMAIDgEh+AAAAgOwUGSJCk4SJKk4CBJkhQc JElScJAkScFBkiQpOEiSpOAgSZKCgyRJUnCQJEnBQZIkKThIkqTgIEmSgoMkSVJwkCRJwUGS JAUHSZKk4CBJkoKDJElScJAkScFBkiQFB0mSpOAgSZKCgyRJCg6SJEnBQZIkBQdJkqTgIEmS goMkSQoOkiRJwUGSJAUHSZIUHCRJkoKDJEkKDpIkScFBkiQFB0mSFBwkSZKCgyRJCg6SJCk4 SJIkBQdJkhQcJEmSgoMkSQoOkiQpOEiSJAUHSZIUHCRJ8onBAQAAAAAAcHtevzjm6aYv9ttL 2Pr66h27nuu0a2PKmpz+mMmXPLgAwd3nvq4jf00OfrrgWY58yQDuXxuHfbJMfIrlQ229luA1 9jbHadfG2ZaktwAGF+CY4Dj+R3bM08XPIjgA7DVmXyg4gkde/ldwnGFJDg6O666o8wQHAOz7 QbPcPLG8tXlTcJf8Aw7OdmxN4NeeYvW+hdcVr43myxz5oYyP9/HcUnLxgp9X108n83NJ/rzi 1RusqOaLitdS12MmV0XydTXfh3PX4eCvOYB7BsfbR0Zhq0TwORV/sTbkdH1eFz7ytkbE4L/N 11X42C1sKsqs3rnB8VXdpNLbHM271CKgvKJmvTdGVkXhdfVuUqk91+CvOYD7B8fWv2u7ZGb+ Whoc/JozHOOj7KyRXnDkR/raXXpfbC04mn/ud/0S1XarOn9wiAxAcHSPxzt9Xs9d/sKgJTjK kz3XCo6v1paCrhVVmLcY/CW6bnB8HX6kD4DzBkd5W8nxwbH1UF0LLzieGRyFehAcU57LVAeg OToG49om262xqhwBhdHitMHx2cWoBUdyJ9DMG+DI4Ji+D8eU4DjJJpXCS/6yDweA3uYIdsVo DjmrN321NngnH7Aw7JUXPv904zcFa+PgxRjcdSZ/pNLWSw52Ykiuja7FmL6igsWo7e00sgvt 3PdheR0GkWGrCgBcbEYK11q9H/zZedsAAIwcj1i9n/3BedsAALqHDYPHVVbvSbYgeNsAAAAA uAn/AWqBhTnmfFI0AAAAAElFTkSuQmCC --------------020306050500030101010109 Content-Type: image/png; name="bsdinstall-zfs-partmenu.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bsdinstall-zfs-partmenu.png" iVBORw0KGgoAAAANSUhEUgAAAtAAAAGQCAIAAAAIhcA6AAAWTElEQVR42u3d4ZaqOBZA4X7L +4q+Zc1M9+pajkJycpJAgG+v/eN20SoCyjYC/vXXXy+SJMnJWgQkSfLE4Pjz8/PtpPkoP9De pJ55m/GkEndVmIfZy5wkyVVGON53eLN3fnuPtRkZ3/+Zbo4Z8z/qhoKDJPm44Mh9gj8sOBK7 Z8FBkuRawbH5HcfesH/iy5GmyBg1BlOYh55vdgq3GhIc5dnwXQxJ8qrBUd7txVshMlYRebh5 wZEeaIk8evlYjdYkKi9DoyMkyTuMcFR3zJv1UD4KNZIOTeMiY4Ojev/VYz8HBkfPMiRJcvVj OIZ/Xk+kw+xjOMp32NoNuYpKj6OIDJKk4EgGx8EHjaYTQXCQJHlacPSnw8GnxfYfwxG8h3nH cNisSZJXCo7IIZytRy30n+gx+8Jf1chovVRX+UDOxEKOLA1bNknySiMcJEmSgoMkSQoOkiRJ wUGSJAUHSZIUHCRJkoKDJEkKDpIkKThIkiQFB0mSFBwkSZK14Pj+fZOPHxkxySSTTDLJJJNM iv2Gl+YiSZK+UiFJkoKDJElScJAkScFBkiQFB0mSpOAgSZKCgyRJUnCQJEnBQZIkBQdJkqTg IEmSgoMkSQoOkiRJwUGSJAUHSZKk4CBJkoKDJEkKDpIkScFBkiQFB0mSFBwkSZKCgyRJCg6S JEnBQZIkBQdJkhQcJEmSgoMkSQoOkiQpOEiSJAUHSZIUHCRJkoKDJEkKDpIkKThIkiQFB0mS FBwkSVJwkCRJCg6SJCk4SJIkBQdJkhQcJElScJAkSQoOkiQpOEiSpOAgSZIUHCRJUnCQJEkK DpIkKThIkqTgIEmSFBwkSVJwkCRJwUGSJCk4SJKk4CBJkrxYcAAAcDMEh+AAAEBwCA5gPf78 +flw4D2XH3TgrXqeu20AEByCAziuOcbug8v3szc1dyvBAQgOwWGzhOBQAIDgEBwHBsfP39hM ca3g2Puq5fcv31Or39EU7rD1Vt83jMxhdTaqM6mN8LC8+B+CQ3AAY4KjfAxH6973mK9U9iIj OHJT/WPk34DgEByrBMfPF+8JYpJJ50561Q7hrA5yCA5blEl3fXP46wvBYYQDGPOVyuykMMIB GOEQHIIDgkNwCA5AcDhLBbhgcMT39IlbCQ7gpAQRHIIDSNVGuQC+IyByobDIeSX9t+o8yqTp VpOukAYIDsEhOAA0jAkBgkNwCA4AwyJDcEBwCA7BAWBuc6gNQHAIDgAABIfgAADgDsGRQ3AI DgAABMcDL/z1cZWV74uuXGhzTEy9xMwf83TWX++FOSwvw8Stbv/e3bk0gi+6By5hDNlEBYfg uNI2eqH9SlNwTHo666/33Cq+9IZx8JJsXRrB+9EcEByCQ3BcY+aPeTpXDw5JcfwyERwQHIJj ZHDsDY3ubRO5LSn+WK0fzlrHdfuXRuLttTrzhf8/OIfVR9+7VfoO9+a//ECbtyrPYeSB4reK rOVzt6jcbFRfDq1Lo/OFCQiOJx40ur2iau+Vw4Mj+FhN72t7d57bPXTOYe4TZ9Pz6vlkGfnu JrcY46vsffNr3cBGfaUSX6TBpTFjiyovqGAIDlwaagMHJIjguPkIx6WDIxcBFwqO4OeA1YIj /YlZcIyajVy1J4YPBQeMcAiOkW+ITZ+0CrcSHKOCY9SLfEZwzEiKhwdHYv2mv5cUHBAcgkNw PDE4XkOPzhMcgiO9rIQFBIfgmB4crQP4hVsJjlwHBOcwPg9D7nBqcDSN/LfeSnAMXBpCBIJD cLxa31PSx6g3vfFFzpWobo7xW8WrqH8Ogw8XmRQ5sDd3waVRZ6nkFlTkUXJj+623mrTNj9qi hqzfxIuoaTsUHBAczlLBgC8aYLlZMsDBrxrBITjsG2DRWSyA4BAc6NuyLZDOZWhp2KIAwSE4 AAAQHIJDcAAABIfgEBwAAAgOp8X+2EwBAFfMC8EhOAAAEByCQ3AAAASH4Fg8OJy2BwAYxag9 keC44UGjggMAcG5w7O2bBMdNRjj2fuuh8PNsJplkkkkmmbR5XbufL4xwCA4jHAAAX6kIDsEB ABAcgsNZKgAADERwCA4AAASH4HBpcwDAfRNEcAgOAAAEh+AAAEBwCA7BAQCA4BAcw7ebey7D i2/ZJJ+r4BAcgkNwkKQdh+Bw4a+OHfPPnz+/Nj3Bn58//7UwaW9q+Q7fb5Xj+zq+o9Zp4a4K D5S7VXoOx97h3kMMX8g99/Nxw3kbwCLmnlfiVscswKkv2JXX/ubszcOFvwTHycHx3hmtzVFO ikRwfN8q/7zeXsmj3nTK97M3NXer9YNj8x+nzPzmrWZsAOvvq8beavj6Dc7YwIdbf9V/z6Hg EBz3DI7vwmgd5EjnyP2C47pveelhno+FfMoSjnSe4OgMjlHr9/jguOKqFByC4ynBsbnj30yH wpcmv5M+pr7/vXCHs4Njb+T24/Nc0xB94Q5bb/V9w8gcVmejOpOJN/qmmS9POjI4cnNYXil7 EZaYjfhablq8iS8syt8S5mY+ERyRlbI5t7mXefDl3HkrwSE4HnfsT09wlEPke2rwP8cGR9Pr PPj+Nfsrlb23s+AHwabvFzo/VjbNfPl5TQqOwu6haQ6rkzbjsjqpZ67i95D7cqTaLtUDaNIP l1gyTa++xErPPeXINn9kcDho1AjHEiMc38eN5oKjcKuP4Y29/3PGCEfrR/Dg3lRwrB8ckeNJ I0sg8rwS/4jsZZt2gdXnNWSEo3MTbRrh6HxeY4OjdX0Fl4ARDsHxxK9UDgiO1tGU4cExIykE x8rBEX+axwdHbu/bumM7MTj6j+HofF6TRjgSr/H4zQWH4BAcgkNwCA7BITiSh+I6hkNwOC12 97TY2cFx1lcqQ4KjaWfZeivBMfW02EnHcHQGx6ivVDp3nOsHx8rHcLQuKKfFCo5HX/jr47TY 9yMtyqec7J29Uj6MI3Kr/gt/lUc4976mbR0djT9i5+kGkWBqulX6gksDT/RIn0YROYjvmLNU Ep2RW8vVI09HnYsU3KSDp4D1XPhr+BbVU5mtTzkyhy78JTgecoXaey7D55zBf60rhpG23lvs OASH7UZwCA5XW6KtV3AIDsEhOATHsu/aaoO2XjsOwSE4BIfgIPkUBYfguOd2AwCA4BAcAAAI DsFx/dNiN8rovFb6vbr6qNfD0Quz9uJsmtT/RjB75s9dqq1viAPvOfGCzd3qlIVW3qmcO3vX 2ggXxGmxgmOB4Ph9lLMHZ8YGx+/SO/3t8ph99vdTHnWH5WBa+UPY2Pks309uKS2yDDdnY8Yy PHLJQ3AIjiWDY41vg4YHxyKfzw4Ijs03hbH77CuO+h4ZHNfdHQZTadng0ByCQ3BcPjjefkH2 ZzMLvqe+/+feDQtVcUxw7CXIxwf67+HlyMuvPzgKD935EbDwvMoLJDKMtPn3veWWmI3Waqw+ XGIDKMxGZM6Dt+pcX4m8rgZHdcP4XuNNc9iz5AWH4BAcFzlo9HdGv/9R7IC9sCgHRzUshh/D Uf5SoLyLDe4sOwfVDwiO8h2Wn2brUHakKspvYfE7aYrO1nfSV/uRQKO+UulZX7kdcPUYo6Zv W3Jz2LPkBccpA06CwwhHNji2/vI+IDEkOAp3OCk4Cm+C1c/08eCo7tuuGBy5d/nO4KiurNbg aG2R+EyuFhw97xitIxzBgaKmVdmz5AWHEQ7Bce3giKRDU3BEBj8OCI6e3V5iPyo4Ovco83ai A5NikeB4ZY+PTi/8psGPGctWcAgOwSE4BMf5wdE0lC047hEcuYWWO2i0Z5hQcAgOwSE4BMdV g+PV9935VYKj/yuVIcERPCQod6vjj+F4tZ8WO+kYjrFLHoJDcFwjOF7/fxJKvB6qt9qc9Aqc wzIkOF7Fw9Mipza8Use7VU9GKL+em55401Em6YNG04+1V36RQxcTR4wWpr6yx8nGV2XuVrmj TDpPAo9f+KvzGKnyqSi5JS8mBIfgAMaP1phzWO84fRULDsEB792rzLAdj40WgkNwCA5c5sV8 6fm3Np+89VoagkNwCA4AAASH4AAAQHAIDsEBABAcgsNpsc0PsznTPWeoVi9ePuRiG00viZu9 zsfe9uCltMhKyV1m6twfSR++6OatC0dyLIjTYgXHqcHxMaNbzZG74wN+Eja+6O7XHMNve/Ai On2NHHPN0EssunmzLTgEh+AQHIJDcAiOAZfGutwGIDgEh+AQHKe+XPePNwleFbT1IuXnBsfH JSabroSYGCjOfa0TudDk7B+tzT2v6oJK/+hrdX0Fb1W9imvu2q+R5zt1i+q/BvyQxduz2UNw CI4HHDS6M8d7VyIvXOb8EiMcw39zZGw+Rmaj+rswrReBHvgbaZG5Suxiy/MZv4x65Pmu8zNs 8T7oDI7yejlgLeNy46yCwwjHyKGO8q+ylQc5rhsc1Y+kuXfz9C42uPctz/zUEY7+H8BLB0fu N0fuERyvQT/eNnbxutSsEQ7BITgyzRH8GdjWqrjKCEfic3b/TYJD9Ln7HxUcw39xt38Xe9cf mj8xOA5eyxAcgsNBo4LjnODoeaMXHIJDcEBwCI4bBodjOMYGx4yZFxx799m0oFpvJTgEh+AQ HILjqzlqF/7ajIzyARytk2Y0R9OpKK+OYwIi34z0H/nx8Zf4N+6v4okD6aNMqkcvBo947V+V r/0jWnJfWrVeJO34LSpxKk316cTX1/C1DMEhOFza/IZ4E7S+LDRg1Mc5wSE44L3Y+rLEAMEh OLDAS8XSsL7uug+wQCA4BAcAAIJDcAgOAAAEh+AAAEBwCI5rXodja9bL1y+v/njbOi+Mw241 fA5HbQCJsyUXXFDxd71X7Cr16aVR/TW4K/4Q7mEbQO7HBTEEp8UKjgWCY+cvPRf+WirDV36/ PiA4XnMux7TgnjVxNarcJecPWLzrr5eBP/inOQSH4HhGcOz3x3dYXCg40pceWic4Jj3QnYKj OvDw/T/3BEfwo/lDdpkzgkNzCA7B8fRfi226cvmCb4VNH3ZbLxkZv/pn+RUbHJ7p//nZ1l8E rX4lkbg+afkHzcf+6EzTJd47g6N6efXvDk4s+cjmUfhjcAMoPFb8lSI4BIfgcNBovTZetcuQ r3wAR8+vtUX+WP1d+NzdNn1l8Bp3rfR4l/TsGGb8sEh12bZeobwnOFq/ben5TZ/ET7oUDnbJ rZTqAhz1G3hY8w1WcBjhGFYb5RGOS3yfsrmXnRQce1/iJCpk4D6+8MF6UnAEl3zr3jf4iyTB EY5RzRR8rNbfUokc8dq0ARc20Z7HiuSX4DDCITgER7024jGxYHMcP8IRLI/TgyP3mXvZEY7+ ww9nHMPRNAbT+vQTjxXcRJu+iXt1HD8rOASH4HCWytsfiyWx/kGjguMJwbG3SJv2dgccNJob 4RAcEByC46GnxT4wOFp3zD3B0To23jMSMDw4cn0wIzgSe7vZp8VOOoZjUnDkvlJpLSenxQoO weHCX7sX/tprjmWPGx1y2F3uxIHXzvfxTY/1Cp/eEl8aA89Sqc58dU5yrVC+t70LfzXNRnrr ihy28gof3xM5P6i6TFo30cRKqZ4U03QOi9oQHILDpc0BTM9i4FqbruAQHAAEByA4BAcABL4c AQSH4BAcAADBITgEBwAAgkNwAAAgOATHQqfFAgCwQl4IDsEBAIDgEByCAwAgOASHK40CAB6C K406aFRwAAAWDY69fZPguMkIx95PM/xsYZJJJplkkkl7kzanGuEQHEY4AAC+UhEcggMAIDgE h7NUAAAYiOAQHAAACA7B4dLmAID7JojgEBwAAAgOwQEAgOAQHIIDAADBITgAABAcgkNwAAAE h+BwWiwAAK15ITgEBwAAgkNwCA4AgOAQHIIDAADB4aBRAABWTBDBYYQDAAAjHIIDAADBITgE BwAAgkNwAAAgOASH4AAACA7B4SwVAAD6E0RwCA4AAASH4AAAQHAIDsEBAIDgEBwAAAgOwSE4 AACCQ3A4LRYAgNa8EByCAwAAwSE4BAcAQHAIDsEBAIDgcNAoAAArJojgMMIBAIARDsEBAIDg EByCAwAAwSE4AAAQHIJDcAAABIfgcJYKAAD9CSI4BAcAAIJDcAAAIDgEh+AAAEBwCA4AAASH 4BAcAADBITgEBwAAgkNwAAAgOASH4AAACA7B4UqjAAAMzwvBITgAABAcguPf1HjnPUFMMskk k0wyacFJm2EhOIxwAABghENwCA4AgOAQHM5SAQCgKUEEh+AAAEBwCA4AAASH4BAcAAAIDsEB AIDgEByCAwAgOASH4MCE195xm42tF4DgEBzesgWH4AAgOASHC3/hOsGxeTnhvzekP//4z//5 /m/BcfTKPo8//2KF4LC8EByCA8sFxz/runPLfn95//9PGLyGB8feDOPzffZ9uazRHNUdAyA4 BAfuGRwjauPo4NibbW+yu7Xx+5fFgkNzQHAIDsHxiOAYVBvR4Bj7fcr3zHuH3VjNxd3/dwT8 /qUwtXVSOTg0BwSHg0Zx8+AYVxuh4Jhx9MbHU/D2Gg+OQge8/2Xv3/FJkeDQHDjmNSI4jHDg hOAYWhunBcfHE1EbuRGOXHAU7i0RHJoDRjgEB4xwLPqVihGO9AhHOSPSwdE6lKI2IDgEh+B4 RHAcfwzH2OZwDEdlh71/0OhqwaE2IDgEh+C4eXA4S+VBzfH27yHBMeoYDrUBwSE4BMcjgmNI c7yOvfCX63A0N8fXAno/0qK1JBJnqexNUhsQHIIDDwoOlzYH8IQEERyCA4LD1gtAcAgOCA7B AUBwCA5v2RActl4AgkNwAAAgOASH4AAACA7BITgAABAcggMAAMEhOAQHAEBwCA5XGgUAYHhe CA7BAQCA4BAc/6bGO4UVZpJJJplkkkkrTNqcKjiMcAAAYIRDcAgOAIDgEBzOUgEAoClBBIfg AABAcAgOAAAEh+AQHAAACA7BAQCA4BAcggMAIDgEx1WeGAAA90JwCA4AAASH4AAAQHAIDsEB AIDgEBwAAAgOwSE4AACCQ3AIDgAABIfgAABAcAgOwQEAgOAQHAAACA7BAQCA4BAcggMAAMEh OAAAEByCQ3AAAASH4BAcAAAIDsEBAIDgEBwkSfL6AwEWAUmSFBwkSVJwkCRJCg6SJCk4SJKk 4CBJkhQcJElScJAkSVoEJElScJAkScFBkiQpOEiSpOAgSZKCgyRJUnCQJEnBQZIkKThIkqTg IEmSgoMkSVJwkCRJwUGSJAUHSZKk4CBJkoKDJElScJAkScFBkiQFB0mSpOAgSZKCgyRJCg6S JEnBQZIkBQdJkqTgIEmSgoMkSQoOkiRJwUGSJAUHSZIUHCRJkoKDJEkKDpIkScFBkiQFB0mS FBwkSZKCgyRJCg6SJCk4SJIkBQdJkhQcJEmSgoMkSQoOkiQpOEiSJAUHSZIUHCRJUnCQJEkK DpIkKThIkiQFB0mSFBwkSVJwkCRJCg6SJCk4SJKk4CBJkhQcJElScJAkSQoOkiQpOEiSpOAg SZIUHCRJUnCQJEnBQZIkKThIkqTgIEmSFBwkSVJwkCRJwUGSJCk4SJKk4CBJkoKDJElScJAk ScFBkiQpOEiSpOAgSZKCgyRJUnCQJEnBQZIkBQdJkqTgIEmSgoMkSVJwkCRJwUGSJAUHSZKk 4CBJkoKDJEkKDpIkScFBkiSv6X8AwdMATe8nNR4AAAAASUVORK5CYII= --------------020306050500030101010109 Content-Type: image/png; name="bsdinstall-zfs-vdev_invalid.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bsdinstall-zfs-vdev_invalid.png" iVBORw0KGgoAAAANSUhEUgAAAtAAAAGQCAIAAAAIhcA6AAAO1klEQVR42u3dYXLiuhKA0ewy W8wu8+rNrUpRGLVaLdnY+HSdHzNhIA4h+ItsmK+vrx8AgJ25CwCANwbH9+/v1k7bEX+i1kUz 27bHF1W4qWAb9r7PAeAsKxyPO7y9d36tz/UyMrZ/LTfHHtu/6oqCA4DbBUftN/jDgqOwexYc AHCu4Hh5jKO17F84ODIUGavWYIJtmDmyE1xrSXDEm+FYDABXDY54t5dvhcxaRebT7Rcc5YWW zGePz9UYTaL4PrQ6AsAnrHB0d8wv6yE+CzWTDkPrImuDo3v73XM/FwbHzH0IAGc/h2P57+uF dNj7HI74Bke7oVZR5XUUkQGA4CgGx8EnjZYTQXAAwNuCYz4dDn5Z7Pw5HMlb2O8cDg9rAK4U HJlTOEfPWph/ocfeb/zVjYzRt+qKT+Qs3MmZe8MjG4ArrXAAAAgOAEBwAAAIDgBAcAAAggMA QHAAAIIDABAcAACCAwAQHAAAveDY/v8mT//JiItc5CIXuchFLnJR7v/w0lwAgEMqAIDgAAAQ HACA4AAABAcAgOAAAAQHAIDgAAAEBwAgOAAABAcAIDgAAMEBACA4AADBAQAgOAAAwQEACA4A AMEBAAgOAEBwAAAIDgBAcAAACA4AQHAAAIIDAEBwAACCAwAQHAAAggMAEBwAAIIDABAcAIDg AAAQHACA4AAABAcAgOAAAAQHAIDgAAAEBwAgOAAABAcAIDgAAMEBACA4AADBAQAgOAAAwQEA CA4AAMEBAAgOAEBwAAAIDgBAcAAACA4AQHAAAIIDAEBwAACCAwAQHAAAggMAEBwAAIIDABAc AIDgAAAQHACA4AAABAcAgOAAAAQHAIDgAAAEBwAgOAAABAcAIDgAAMEBACA4AADBAQAgOAAA wQEACA4AAMEBAAgOAEBwAAAIDgBAcAAACA4AQHAAAIIDAEBwAACCAwAQHAAAggMAEBwAAIID ABAcAIDgAAAQHACA4AAABAcAgOAAAAQHAIDgAAAEBwAgOAAABAcAIDgAAMEBACA4AADBAQAg OAAAwQEACA4AAMEBAAgOAEBwAAAIDgBAcAAACI6dGWOMucrYZwkOwWGMMUZwCA4Exw3m+/v3 pdZFrSvWPuPaLyG49Az3c7z9HopGcAgOBMfnB0frI5k/D+0ygxuZ3P7WrZ1hdx5vg+AwgkNw IDhuERzBzm/715ngeBk3C/flp91tSwojOAQHs8Hx+2/8PH/8asd2f1nYiWZ+0W8du2kdOkne ZvDx0VWcYDPij3e3ZP7eMOZfXvx/BIfgEBzmMrXx0zvfYnSflz/TIvjr9s+jByySx4aCehg9 gjOzhaMbaYzgEByfFhy/m3lMEBdd5aJ4vxWscBSWOpYHR+azLw+O4IrxcsXeweGB7Wf5azOC Q3BY4TDXOMOgfHLGxwdH8gatcBgrHIIDwWGiHWR+F/uz4qRRwSE4jOAQHHiVyr2CI7M/W/6y 2JsERzJHBIdZnSAIDsFhzhEc3Tf+6l6x9hmTN1g+abT8uVovYMmcP1t+NcrkvWGM4BAcgsOY Kx1RMkZwIDgEhzErI0NwGMGB4BAcxuzbHGrDCA4Eh+AwxhgjOASH4DDGGHOZ4KiNnZ3gEBzG GGMEh+Dwxl+7/szEP06rbnDmdkZv9uuCBVe7wzNXH7rZyc041X2y8LGx05Zs3kvqxVtoH7O/ POAp5YDnjf0+UfebJTgEh+CY+vEr7ObXBsfDf1swvMu87u9My69e+z5+xn2y8Nb23pLJyB66 1pLPdcXgWLiFgkNwCI63/WR2f1uauTXB8cblJcHxlr3ykeuL1/2ROexbKTgEh+D4edolBz8S hUX4l78GxSuxewRHd0uCa00uL+fv3tbvi8G1gl80y2tLre9I8PH4V+3kPV9eve/eYG3jRx8b mUf1kcFx8NHMoXWR5GM7+UPU/eGKH5Ot7/LaNT/BITicNNrfgdUW27u7w7U/ycmQip9iFh5B SH7Va/9Z/lvZva/mV+8zD4Alq/eZGxza+Npjo3ZvnOdQ5uRhgtFHWibdgs0b+i6//Fz5IC78 XlS79wSH4LjLIZWZ30eHfrtdvowx9EXtHRyjyxX7BUd5d17LysJ6yar9a23fEFyrtnKQvMFj guMtZ2qPPtiCCFsbHN1P2q3DVQ9jKxyCQ3BkdzMLg2P5L2fLfy1ee47kpwZH8mjL0JG4/Gr8 zKkMM3vrmeOABwTHu07CEByCQ3AIjtMFx8yx55kTPwXHHsGRf65fu4YvOPZY5z/sHA7BITgE h+DYPThqR9zfGBxLXiL4kcGx/Eu+3Dkc89/K5YeZ5l+qWjjv54bB4WWxgoNicORXv/OvYYnP z1r+CpFyBCxc9l/+ko3uS1GCO7C28yh/l4c24+BXqRSuVXts1L6Va4+DZM5oWd4chZNGf3qn FdfWTYfSoXsOafLEZ8EhOLxKxdxi7vbmB8Z83s+v4BAcgsNcIDIEhzGCA8EhOMwRz1PuDWME B4JDcBhjjBEcgkNwGGOMERyCA8FhjDGCQ3AIDsFhjDFGcAgOwWGMMUZwIDgEhzHGCA7BIThu 9NbmxhhjDsgLwSE4BIcxxhjBIThIB8fvZh4TxEUucpGLXHTkRT/t/yVKcAgOKxzGGGOscAgO BIcxxggOBIdXqRhjjEkmiOAQHILDGGOM4BAcCA5jjBEcCA7BYYwxRnAIDsFhjDFGcAgOBIcx xggOwSE4BEf1B6yy8b6zHofGCA7BITg80QsOBIcxgkNweOOvSwXH9t1//3053/85853/t5Gj m7rHVxfc2gH35G3n+2HOsBn26CfMC8EhOATHe4Ljv+382/jt/zLwd62TB8fT5tWaY6eN2e9z PX77jgyO7RP3eWpj++e3b8z597uCQ3AIDsGxb3BsdlcvfhoFx/LgWP2Fv2iOm9fG30cEh+YQ HIJDcLw/OF7tqJrPQY870e3etHUg4+kqrWu1cmH0SEfwj7s3+PLjwbVaFz19PLjN5OeK78PW t/KGO6p4B9861PL3keDS0YsuERz3bA7BITicrPeG4GgsxfeDo9Ucrd3240cyf55cq4i7p9sW yWt1b3D0kEr+Hkg2xw13UckdfNAc8UGZ5EUXCo47H1sRHILDCsdBwdE68J9c4RhakCgHR/kM 0NoNdtcwMnv9NwbH9nScu+2c8iscteAIbu26wXG35rDCITgEx5VWOIbSYckKx/xZFJkbHFql OGFwWOHo9sHkCsdoTFjhEBwIDsExcA5H66TREwZHbVXgM4LDORw/4UmjgkNtCA7BITjeGRwv fy1Oviz2yOBI9sfMKRf7ncMx/7kS97BXqQykg3M47nz2huAQHILjbcHx8sB/5o2/WidJFPbT Q68BKb/xV/KVI/lrJV/2svBzNe5D78PRPLvi5ccLJVF4lcpJ3n9MbQgOweFVKicKjjO8tfn5 38PU49CYD04QwSE4PNF/cnCMnmOB4DBGcAgOBMfsf33ikSM4jBEcggPB4TvrcWiM4BAcgsMT vTHGGMEhOASHMcYYwYHgEBxnfyIInh3cUe99Xn76N91rnWfjHy96+pfdL7l7g8GX7NErOBAc guOMTwTxxz1rH//t2P7h6Yn7nN+v9jvafcUXtb7koWrJP7yN4BAcCA7Bcfdvx8v7v7VvPnNw bLe8lRSZL3m7uiM4BAeCwzuNfnJwbJe7g6eV+YtGDwbFW1jb+MzeffnqffxJa7/ud3cDyTsq uUKTPNoSPxRbNyg4rvWsIjgEh+AwnWfqeMdcXvFOXjT/7BYfkigv18c3/sbgGOqD5A2WCyau wKHg6F7U/u+XBYfgEBxMB8fvZrq/S7mouxvLPFN3j9Mn1wkm9wrJLypZErXg2G+XlnzKntmk /ZZMWisc25RZssKRf2h5Btj7KWXoWoJDcFjhsMJR7IPubin4ZbS8dJ9ZDChsfP6sxsLGn+SQ Sv4Glz+cCsEx+hiwwmGFA8EhOO4bHAuXOk4VHHvs8z4jOIYOnGU+6KRRwYHg8CoVwXHoORzH B0fwRhHl39E/OzhGv8ujL/cVHJd7nhEcgkNweCKIDsRm/n3raWX+ouQBmlYfrN34zGkBS/Z5 mZNght4FK7kbSN5RQzuVZHAkTwjIvLHHzJdgBIfgQHCYj1pAMkZwCA7BITiMMcYIDsGB4DDG GMGB4BAcxhhjBIfguPtdb4wx5iJjnyU4BIcxxhjBITgQHMYYIzhwJwoOY4wxgkNwCA5jjDGC Q3AgOIwxRnAgOASHMcYYwSE4BIcxxhjBITgQHMYYY+yzBIfgMMYYIzgEB4LDGGMEB4JDcBhj jBEcgkNwGGOMERyCA8FhjDGCA8EhOIwxxggOwSE4jDHGCA7BAQAgOAAAwQEAIDgAAMEBAAgO AADBAQAIDgBAcAAACA4AQHAAAAgOAEBwAACCAwBAcAAAggMAEBwAAIIDABAcAACCAwAQHACA 4AAAEBwAgOAAAAQHAIDgAAAEBwCA4AAABAcAIDgAAAQHACA4AADBAQAgOAAAwQEAIDgAAMEB AAgOAADBAQAIDgBAcAAACA4AQHAAAAgOAEBwAACCAwBAcAAAggMAEBwAAIIDABAcAACCAwAQ HACA4AAAEBwAgOAAAAQHAIDgAAAEBwCA4AAABAcAIDgAAAQHACA4AADBAQAgOAAAwQEAIDgA AMEBAAgOAADBAQAIDgBAcAAACA4AQHAAAAgOAEBwAACCAwBAcAAAggMAEBwAAIIDABAcAACC AwAQHACA4AAAEBwAgOAAAAQHAIDgAAAEBwCA4AAABAcAIDgAAAQHACA4AADBAQAgOAAAwQEA IDgAAMEBAAgOAADBAQAIDgBAcLgLAADBAQAIDgAAwQEACA4AQHAAAAgOAEBwAAC4CwAAwQEA CA4AAMEBAAgOAEBwAAAIDgBAcAAACA4AQHAAAIIDAEBwAACCAwAQHAAAggMAEBwAAIIDABAc AIDgAAAQHACA4AAABAcAgOAAAAQHAIDgAAAEBwAgOAAABAcAIDgAAMEBACA4AADBAQAgOAAA wQEACA4AAMEBAAgOAEBwAAAIDgBAcAAACA4AQHAAAIIDAEBwAACCAwAQHAAAggMAEBwAAA/+ BxLuYj8kT8rBAAAAAElFTkSuQmCC --------------020306050500030101010109 Content-Type: image/png; name="bsdinstall-zfs-vdev_type.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bsdinstall-zfs-vdev_type.png" iVBORw0KGgoAAAANSUhEUgAAAtAAAAGQCAIAAAAIhcA6AAAafElEQVR42u3dbXajOhZG4cwy U/Qs0923+ma5bBBHRx8I/Lxr/6gyMQYhS9tCwNfX1wMAAGAwigAAAJwoHN8/P+8M2o7yB+0t atm2ETuVWFVhG0aXOQAAq4xwPHd4ozu/vc/alIz3/6adY8T293oj4QAAfJxw5H7BTxOORPdM OAAAWEs4Ns9x7A37J06OVElGrzGYwja0nNkpvKuLcJQ3w7kYAMBVhaPc7cVdITJWEfm4ccKR HmiJfHp5rkatEpXL0OgIAOAOIxyHHfOmPZRnoUbUoWpcpK9wHK7/cO5nR+FoKUMAAFafw9H9 93pCHUbP4SivsNYbchaVHkchGQAAwpEUjsmTRtOKQDgAADhNONrVYfJlse1zOIJrGDeHQ7UG AFxJOCJTOGtnLbRf6DH6xl+HklF7q67yRM5EIUdKQ80GAFxphAMAAIBwAAAAwgEAAEA4AAAA 4QAAAIQDAACAcAAAAMIBAAAIBwAAAOEAAACEAwAA4Eg43p9v8vKQEYssssgiiyyyyKLYM7w4 FwAAcEoFAAAQDgAAAMIBAAAIBwAAIBwAAACEAwAAEA4AAADCAQAACAcAACAcAAAAhAMAABAO AABAOAAAAAgHAAAgHAAAAIQDAAAQDgAAQDgAAAAIBwAAIBwAAIBwAAAAEA4AAEA4AAAACAcA ACAcAACAcAAAABAOAABAOAAAAOEAAAAgHAAAgHAAAAAQDgAAQDgAAADhAAAAIBwAAIBwAAAA wgEAAEA4AAAA4QAAACAcAACAcAAAAMIBAABAOAAAAOEAAACEAwAAgHAAAADCAQAAQDgAAADh AAAAhAMAAIBwAAAAwgEAAAgHAAAA4QAAAIQDAACAcAAAAMIBAAAIBwAAAOEAAACEAwAAEA4A AADCAQAACAcAAADhAAAAhAMAABAOAAAAwgEAAAgHAAAgHAAAAIQDAAAQDgAAAMJxBUREPiqa fcIBwiEiQjhAOAiHdM33988me4v23pj7xL67UFi6QjmXt19VJBwgHCAc9xeOvVci/67qMgsr adz+vbWt0J2Xt4FwEA4QDhCOjxCOQuf3/t8W4diUm459+bLdNqUQwkE4sJxw/PwTjdFqox3v /WWiE4380N87d7N36iS4zsLrtaM4hc0ov364Je2lIQvrxf9COAgHCIc8Dru9eHeeEI7DkZWC E9SesAieGyrYQ+0ZnJYtrN1IIRwgHDgQjp+3PCuIRYMWlfutwghHYqiju3BEPr27cBTeWB6u GC0cKvaa36+vtxAOwgEjHMY2kjLR/meXE47gCo1wiBEOwgHCIaUOMt7FPnpMGiUchINwgHDA VSqfJRyR/qz7ZbEfIhxBHSEcn6EgIBwgHJ8nHIc3/jp8Y+4TgytMTxpNf9beBSyR+bPpq1Ea S0MIBwgHCIdc6YySCOEA4SAcIj0lg3AI4QDhIBwiM04kKQ0hHCAchENEhHCAcIBwiIgkhSMX /QXhAOEQESEcIBx3vfHX5j2Dq97YtwWp3YDaV7pvRveCSh+RRIkN7Qz0iDK09hIOwoErCcfL dzjnHGd1h4OEY0SvnN61c0v4EmYjhINwEA4QjvOFY5HOsmXXrth5T95mfkM4CAfhwGVOqeTG 9jdfL7xrb9He0yAbhaOwDZtLC5tRNoDDLe8oHJEtjJdG7nhVnVaP2G3hoKTroRAOwkE4sNyk 0XLHfOgWwXfVdpDjTqk872/VW4KKNk44Eho07njVWmzCP9oH4eT2CkI4CAcuM8Jx+IO48OMy +Jsj2FVMFo7ub+n4E7zc+waLt3GOS6QCTBOOcRNpxQgHCAdmC0di6kCiA1tNOBKdZdUww9AR jvbS6HgaaM4IhxAOwkE4cLdJo+sLR2SDP0c4cqVxD+EgJYSDcBAO3Ec4Zs7hSN+1Itfz7S3t MpGiUTjinXSuNEbP4YivsGUOB+EgHISDcODaN/6KTOCoeldwrkOvO2ccXhFzWCZ7LxYuAElc wxI/Ii3zRUYcr8helHuI0ZshhINwEA64tbnoP1x+Iq1ViHAQDhAOkepfq0pGCAcIB+EQ6dk9 tJx1EiEchAOEQ0SEcIBwEA4REcIBwgHCISJCOEA4bn6nURGRlfWCcBAOEA4REcIBwkE4REQI B+EgHDhdOFyRKCJz0quNIhyEA5ecNEo4RGRl4dhrtQgH4cBVn6Xy8tAsiyyyyKIui35bp+cY 4QDhcEpFRMQpFRAOEA4RIRyEg3DAVSoiIh1DOAgHCIeICOEA4XCViojIfRWEcBAOEA4REcIB wkE4REQIBwgHCIeICOEgHIqAcIiIEA4QDsIhIkI4CAfhwO1v/PX9/ZN7V+6Ng5qwzT9Ir3bZ JrvjdhZua1319u4HVPe8Ttz4C4SDcHRrlNPecK5wHPa+6VJaXDheHoTRsRjTzjHusArhAOEA 4Vj95/79uq6XoQjCIYQDhAOLCcfOx/9RjWfeLeR90ct7N92lsHRvhR07p8KZgpfe+v3tm6+X 39VyVqL9LHjjZhSEo7zCcvEWjLBqhYev1x6U7qelCAfhAOEwafRv29j77/4Ix7MZFJyj8OLe vzsOq5QncJR1ZO9vDl+MdKtDB3X2njOe2Ixcx7xXgOXxkriOVPVhVQeFcKwwPkc4CAfuPsJR eUqloAtp4eg+yBFUhKqTCAnhqB1daHlXZD5HrXAcDm+0d+1BP6gaQIqvxAiHEQ4QDsIxaw7H /uhKRDjiphIc4Rg9pSMoHDl96T5zs33aSrtw5Prs0cLRvkLCQThAOAjHXOHYH+q4qHCkJ40S DsJBOAgHCAfhGCAc4TkctdMszp3DEReO2j5m/Tkc84XjrFMqXYTDHA7CAcJBOE6+SuWl+38X goIW7P1BYZbGoKtUDueN7k1NOFxn1UyCaVeplP9btRmRiSDlXS68K9Hxj1hhpOdjFYQDhMNV KtfLRe/qMfA0ljisQjgIBwgH4dAzsQ0hHCAchOOStnE/5zD8ftduT4EQDhAOwiEiQjj0F4QD 1xGOu5aGWgQ/HggHCAcIB+GA77IQDsKBT7osNrI9Pz/f/+VaTfafovt7L45f+UBmFsuFDkqv zbh9XBYLwkE4CMfPc5/x8l/CcaJwXOKgEA7CAcJBOE4QjisOSv/sRO1aQTg+56AQDsIBwkE4 /v2Ify9U/X+X8PTv5+GNlxGO31felxYWPb8Yf9cg4Sj/vN77+/Iba981SB2qPqssHHtasLeb jcKxyEGp3YyXF5+XEg7CAcLhV9GrcLxweErl2Qw27eF90Z5klN/VOIdjsxsodJN7PUdhUbn3 Laxw6HBFlQQEi6WLcFzioBy+GPm3SaMmjYJwGOF4FY7nsY0q4Tg0iVrheP/35EmjwU6rtm9r HwloEY7CCssScDhI0F1uFjkohMMIBwgH4VhROIKL4sJx4lUqhb5zb1GXzvj0EY6IeawgHHMO CuEgHCAchINwEI7+wrE5/kE4CAfhAOEgHISDcPQRjlw/SjgIB+EA4SAcnYWjcFFJeTJpwTmq VjhIOMpXSRTmLRa6t6oVri8cwdma8R28ykGJXJtTLg3CQThAOFyl8in34VCLzr2Zh6JwlYqr VEA4CAfhANuYNLAkhAOEg3AQDrR2se7fengWRggHCAfhIBzArb7LhAOEAxopERHCAUVAOERE CAcIh8tic1/dOc3En0evFBbtLU2ssLH92vybw/furbCxGZ1/vCKl0XEzaguq8VDO2ZJxK7xc xe7eRhEOwgHC0eQHtfaQc5RIORQauHgZ/r4YL+FDvejee0U2o7x3gz503KGc/40YtGsXqtiE A4SDcMwWjo7DFc9Pqx3dSx22sIddcrCQg7axgnCM/lDCMUE4plVswgHCQTjqm4zfj9yaQlKW gMii56XPL+69d4JwpH/uD+r2Vuj+y+d6CksL3VvhxdyZqUNpK39cosMOrvDw9c0Vpk8VLVWx CQcIh0mjdd/+V+0Ij1WUpWFTOBIr7Dtr4ZR2uXaUe+g0jsRge7yfqz2dNO5Q7vlQ5JREbvyg doUt5rpIxe5eOQkH4cCtT6k8f+rfW1Aejdj0g0arGDHCcfjLsrFdbpwW2j4LddxAywjhSGx8 4lAGf/rH/SA4c2KacEyo2EY4QDgIx0jhaFaHw3f1nWe6/sjz4V/O/03Zy7EaRzi6H8ragYpe wpEeMuk7h8MpFRAOEI4Kn7iZcOytZ7JwdN9lwkE4CAcIB+FYVzjK/72QcHS8LPaThSNXjImO /xLCMbQ0uldswgHCQTjqO7DibNXn2Rt7blF4fdM/9uaFHF7A0jJBsqpdnnbjr8bZGF1mGhZ2 +dH78pBcMRYOZWTyRHm6Q5U9dF/h5g5eomITDhAOV6mIzM46932Rq9ciwkE4QDhEup31FyEc hAOEQyTTQygNIRwgHIRDRIRwgHCAcIgI4SAchAOEQ0SEcIBwuCx296s7p5k4vEl57mmx7bfi iFxxWr5n1PzLYqe15h1XmP6DvoeyZVO773tihZer2N3bKMJBOEA48sLxqLmLV+SeYC3lUL5J Q7AM+974a/Ij41tu7pSrZh5PP2hVK1RswgHCQThmC0eLjox4Y7BdPmxhO97aPHhopglHr88i HAsKx7SKTThAOAhHfZPx+5FbU0gij4otLyrfS3ToE+qXeuTE4+wn1Cdu1hl/Pmrtj+ncmamq jT88iRDpsHN3UC0MHpQf7nrFik04QDhMGq379r9qR1gCys9DKZwoGW0bwX50Wrt8rm08ej+O JPdjuvFZKrWHMnev8Zbxg8fEh7ctUrG7z4whHIQDH/Pwtr+3IDEa0WIVHW3jsL+J/DKu6rMP H+rR5WBFNn6ycMT7tvaNjx/KmQ9vewQe6dJdOCZUbCMcIByEY6RwNKvD4bvm2MY6I8+nj22s JhzjNr52oOLh8fSEA4SDcNxVOKbZxiLt8t565o9dEw7CQThAOPApwhGf0jH0KpX2dvlOl8We KBxnnQ9aUziGlkb3ik04QDgIR33XVZyt+jx7Y88tCq9vWsXmvJDgBSyJuQ6JdnnOjb/SExra Z+TFl75vcGKd8S2pPZTtG19lD91XuLmDl6jYhAOEw1UqIiLXC+EgHCAcIiKEA4SDcIiIEA4Q DhAOERHCAcJBOERECAcIB+EQESEchINw4Cb34WhI4frV2qtbO14T+4g9Gat8z6jRl8U+mq9I bG/Nx9WojjvVePFw9+IdscLLVezubRThIBwgHHnheNTcv2vmjb8i3cbNbvz1/qGjhePh8fSD Ze7cik04QDgIx2zhaNGREW8MtsuJJ50+src2Dx6a0cKxuQsTBskJx0zhmFaxCQcIB+GobzJ+ P3JrCknkUbHlRe/jFpFTJ4vf2nxEtzf/IfWbXVTwPpiH73oc3VUzPcTSfsPTeIedu4NqsKC6 nOHyLBUQDlxq0ujzBweeq3L4+t7d0IMPku31ILe91vyUdrncK08blDpUio6l0f1ZKrWHMnev 8Zbxg8fEh7ctUrG7z4whHIQDH/Pwtr+34HA0IvF4+sgARt8RjsNflo3t8uEKI0ek6vGz6Yl+ vdShRTjSj1OpOpQzH972CDzSpbtwTKjYRjhAOAjHSOFoVofgMMaJczgm/xBseZD9zBGOCZri 8fQeT084CAcIxyThCJrEbYRjbz2Eg3AQDsJBOEA4RglHfErH4sJxucti1xSOXDEmOv5LCMfQ 0uhesQkHCAfhqO+6irNVn2dv7LlF4fVNq9ibFzLoxl+Jdvl+N/4K7lf8XY/U5SG5XS4cysjk ifJ0hyp76L7CzR28RMUmHCAcrlIRmZR1bvcit6lOhINwgHCIEA4hHCAchEPkvO5BaQjhAOEg HCIihAOEA4RDRIRwEA4QDhERwgHC4bJYEZGr6gXhIBwgHCIihAOEg3CIiBAOwkE4cL1bm4uI pOJOoyAcHz1plHCIyMrCsddqEQ7CgcuMcOw9s+NnKxZZZJFFuUWbS41wgHA4pSIi4pQKCAcI h4gQDsJBOOAqFRGRjiEchAOEQ0SEcIBwuEpFROS+CkI4CAcIh4gI4QDhIBwiIoQDhAOEQ0SE cBAORUA4REQIBwgH4RARIRyEg3CAcIiIEA4QDsIhIkI4QDhAOESEcBAOwgF3GhUR6a4XhINw gHCIiBAOEI7PEI6ftzwriEUWWWTR5RZtigXhIBwwwiEiYoQDhINwiIgQDhAOuEpFRKRKQQgH 4QDhEBEhHCAchENEhHCAcIBwiIgQDsKhCAiHiAjhAOEgHCIihINwEA4QjiXbr3kHRd0QIRwg HISDcBAOEcIBwgE3/rqOcGzekvmfw/T9hz9/+fxvwnFwbM7L97/xZTlLLwgH4QDhuKFw/CnJ xq/KcxP592MgHt2FY2+DL9+1PO/GGs5x2BcK4QDhIBwSEo4etjFbOPY2+z628fvKYsLBOQgH CAfhkIxwdLKNqHD0PZ/yvvGX7lTK+/D9lE0tKCytXVQWDs5BOEA4TBqVOuHoZxsh4Rgxe+Nl Fy5sG+FzKAXnKPw7vigiHJzjlApDOAgHjHBcUji62sZpwvGyIxe2jZoRjpxwFNaWEA7OYYQD hINwyKIjHCMuUfmQEY6yRqSFIzeHg20QDhAOwiGrz+Ho6xz3n8Px739XEw62QThAOAiH1AmH q1TWdY6nf3cRjl5zONgG4QDhIBySEY4uzvGYe+Ov296H47F746/nmRa1JpG4SmVvEdsgHCAc rlKRvHC4tbnI+gpCOAgHCAfhIBwihAOEg3AI4RAhHCAc0KkQDnVDhHAQDkVAOERECAcIB+EQ ESEchINwgHCMaHQKLZHW+dw+4OVvDt+1zsY/L3r5y8NdPlxhYZfVXsIBwkE4Vmx0yq9rtecf jvd/vHQSax6vvc0o+Ed5l6usJV69hXAQDhAOwvHpfcBm+e/1zSsLx/uW7ylFZJffR3cIB+EA 4XCn0TsLx/twd6EJa19UezKovIW5jY/07t1H78sfmvu5f9jlBAsqOEITPNtSrop7KyQcvWoU 4SAcIBxLCEe5Y06PeAcXtbek5VMS6eH68spPFI4qPwiuMG0wZQusEo7DRXubRzgIB+FQBCsK x89bDn+cXXpR+qfh4Xn64DhBY68Q3KmgSeSEY1yXFuweWjZp3JDJ3ghHfBpK1QhHvGrd9bsc qRvBdxEOwgEjHGeeUml/S7mnaRm6jwwGJDY+PqsxsfGLnFKJr7B7dUoIR26akREOIxyEQxEQ jk8Ujo5DHUsJx4g+7x7CUXXiLPKiSaOEA4TDVSqEY+ocjvnCUbhRRPo3+r2Fo/Yo117uSzi6 fPcJB+EA4Tih0amdqZeYVzHiKpWCH/Td+Mi0gC59XmQSTNVdsGrnweSuu8nd+CtYD/fmH1St UAgH4QDhkM8aQBIhHCAchENEhHAQDsIBwiEiQjhAOAiHiAjhAOFA52MpIvJJ0ewTDhAOERHC AcJBOERECAcIBwiHiAjhIBwgHCIihAOEg3CIiBAOEA4QDhERwkE4QDhERAgHCAcIh4iIZp9w gHCIiBAOEA7CISJCOEA4QDhERAgH4QDhEBEhHCAchENEhHCAcIBwiIgQDsIBwiEiQjhAOAAA AOEAAAAgHAAAgHAAAADCAQAAQDgAAADhAAAAhAMAAIBwAAAAwgEAAEA4AAAA4QAAAIQDAACA cAAAAMIBAAAIBwAAAOEAAACEAwAAgHAAAADCAQAACAcAAADhAAAAhAMAABAOAAAAwgEAAAgH AAAA4QAAAIQDAAAQDgAAAMIBAAAIBwAAIBwAAACEAwAAEA4AAADCAQAACAcAACAcAAAAhAMA ABAOAABAOAAAAAgHAAAgHAAAAIQDAAAQDgAAQDgAAAAIBwAAIBwAAIBwAAAAEA4AAEA4AAAA CAcAACAcAACAcAAAABAOAABAOAAAAOEAAAAgHAAAgHAAAAAQDgAAQDgAAADhAAAAIBwAAIBw AAAAKAIAAEA4AAAA4QAAACAcAACAcAAAAMIBAABAOAAAAOEAAAAgHAAAgHAAAADCAQAAQDgA AADhAAAAhAMAAIBwAAAAwgEAAEA4AADAHOEQEREREREREbl9Hk/Ze/1lUeOn7K2t6oNaNqx2 v/YKJ73xo4/mXWtp95qQ2IzRnz5ud9apn7esojPLId3uzTkck4/yiO0nBlOb8pcXOzpHYW21 n9K4VbXC8fvHBT8jHKfs15y97lVvTzmIK1SMwxZAwzvujdNq7+T6dolvn9SVb1/hGLHCOcLR d9RHrtVGEI6+LYBKSzgIh3o/qqaWhWOvFy/08YUV9j2Dcygc5c3b+/vyG2vfldiMlxeDBTJu v/ZeKRzHxAnBhDWWXbNQgDlDLbwlsV85UR5RRSPnxeIr3Bx3DFaM2v366n2KObKFh83amrW3 cKyDxVtVNxq/X/EVttT5w+Y60X/dUzh6TbmIjHAEO57Dr0rwfFC68f0Kz+GIVKlIExP3g8MX I/9uOZSJ/UpPkUlUgJZzhYfS0+uzRuxXY5/RXkUPW96WFcZXntuvmaeYE+3kUrU315jXtvm9 Nqy2qck1yy21627OkVCKxt9M6c6y9odgr6Gz9h4xXuHSfcxSwtHSmideOfyl0uULHGlKDnvE 9p4+t1/dhSOyGd37mM1/R3QkIRyHY5wdG96qTRp3SqVL7T0cw46MLnT5SdzxN3aj+ie+Jrcd 5EgPAEwY4YifbYm/6yzhyBV7bWe5lHDkBL+XcETGVCc02YO6otr9GjfCcVadLwhHvHZVCce4 hndZ4ejYrQSLN36yuL004itsH0SfPH52MeEYMZO08YtUdfaxpfkjHJOF46v5dFvuG9vrqqh1 hKNvL0U4TmkPCUfVUWi8ujg30E44xgrHWZfFNo61Ng7hEI5pwhEcr8ptQ/c5HH3rYboPyM3h GLoZdxKO2kM5XzjWrL2JxryldqXnvFet8EThuOcpldGnkQ5XlZ57XzhIuXMx6S9PcJ78V/hk UHyFkTJMFFTt0cztV/B7W3WJzaDLDfrWw8SXpWW/JmzGzDofnMPx1eOMe0vtbSnexCmG02vv V9u1Y4nN6FixCytsbPSmtVEiVx3o6jV6LLevEspKWYnKIxKq6IRDHGWRxdtekcvX+163pZJP rhgi4ismIiIiMjb/AWVNORoSmOygAAAAAElFTkSuQmCC --------------020306050500030101010109 Content-Type: image/png; name="bsdinstall-zfs-warning.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bsdinstall-zfs-warning.png" iVBORw0KGgoAAAANSUhEUgAAAtAAAAGQCAIAAAAIhcA6AAAReUlEQVR42u3d7XabSBaGUd9l blF36ZnprEk7Ag6nThUFgv2u/aMTt23ZUcQT9OGvr68XAMDBfAsAgBOD49f399JBlyP+RFtv 6rlsR3xRhQ8VXIajv+cAcJUzHD8PeEcf/LY+12pkLH9Zbo4jLv+odxQcADwuOGr/gp8WHIXD s+AAgGsFx+p9HFun/Qt3jjRFxqhzMMFl6LlnJ3ivIcERXwz3xQDwqcERH/byrZA5V5H5dMcF R/lES+azx4/VaE2i+Hvo7AgAdzjDsXtgXq2H+FGomXRoOi8yNjh2P/7uYz8HBkfP9xAArv4Y juH/Xi+kw9GP4Yg/YGs31CqqfB5FZAAgOIrBMflBo+VEEBwAcFpw9KfD5KfF9j+GI/kRjnsM h6s1AJ8UHJmHcLY+aqH/iR5Hv/DXbmS0vlRX/EDOwjc5891wzQbgk85wAAAIDgBAcAAACA4A QHAAAIIDAEBwAACCAwAQHAAAggMAEBwAAHvBsfz5Jm8/ZMSbvMmbvMmbvMmbvCn3M7w0FwDg LhUAQHAAAAgOAEBwAACCAwBAcAAAggMAQHAAAIIDABAcAACCAwAQHACA4AAAEBwAgOAAABAc AIDgAAAEBwCA4AAABAcAIDgAAAQHACA4AAAEBwAgOAAAwQEAIDgAAMEBAAgOAADBAQAIDgAA wQEACA4AQHAAAAgOAEBwAACCAwBAcAAAggMAQHAAAIIDABAcAACCAwAQHACA4AAAEBwAgOAA ABAcAIDgAAAEBwCA4AAABAcAIDgAAAQHACA4AAAEBwAgOAAAwQEAIDgAAMEBAAgOAADBAQAI DgAAwQEACA4AQHAAAAgOAEBwAACCAwBAcAAAggMAQHAAAIIDABAcAACCAwAQHACA4AAAEBwA gOAAABAcAIDgAAAEBwCA4AAABAcAIDgAAAQHACA4AAAEx6WYmVnPHEcEB4LDzExwIDgEh23s 16/vVVtv2nrH2mcc+yUEb73C9zm+/K6KJjgEB4Lj/sGx9TuZ/246ZAYfpPPyb320KxzO48sg OExwCA4ExyOCIzj4LX/ZExyrcTPwWH7Zw7akMMEhODgnOL7/mduODzrbsTxeFg6imX/ob913 s3XXSfJjBr/fehYnuBjx7+9ekv7vht0uL/43wSE4EBw3r43X3uMtWo95+UdaBL9c/nfrHRbJ +4aCemi9B6fnErZeSBMcCA7+TY2f+5kg3jT/TfFxKzjDUTjVMTw4Mp99eHAE7xifrjg6OFyx 7/S38msxwSE4cIbjnuc2Oh+ccfvgSH5AZzjMGQ7BgeCw6ACZP8S+RjxoVHAIDhMcggPPUnlW cGSOZ8OfFvuQ4EjmiOCw7QRBcCA4Pjk4dl/4a/cda58x+QHLDxotf66tJ7BkHj9bfjZK53fD BAeCA8Fhn3SPkpngQHAIDrORkSE4THAgOASH2Yw7knw3THAgOASHmZkJDsHBlOD4su65mTbH 2Hv8M6t8G4DgEByCQ3CYCQ7BITi42At/DT8M9xy5l795qbxoDQ5dYmOvG8OuUctbkIE3SdcO juBmR3AIDsYHx+oR9IijctO7rDbH1U5m5IPDuRDLH/OOe6/9MxwDg2PO6RPBITgQHK0fc/W0 wT2C4+3LcYg1wSE4EByCI3V8Xb2xC46+/YESXNStT7Q87Zy58PGbCsGxeq/Qaog0fbdbP1fw AbdOLzXf9//2+8v//vnL1QNG+7Fk5pe89WeUuU4m7yKs3e/ZebXZ+YPYrZPgrpmtN23dfbP7 XsFVS3AIDj7iQaOZv2nxfRzB8X7IGZHMpY0vQ/L+msxdOU2P4UgeEeOjYNMdN5nDaub703aU 2joSBAezZJpc5kuOg6OpSw46w1G72qx0QP5IH5zP2DrDsfp5y5/Lg0YFB7c8w9GUFEcER9AE u5cw/idpnA79wdH6T+3ac2GmBkdwi58JjuBw0hLR1wmO3bMO1w2O3UN78sRD8i6V5NVgSnA4 wyE4uEpw5G9VzwqOzJntwkF94LNUMmc4Drpf//DgiO8ZyQRH5vevFxzBf3zkGY6m8xbx/Wit wRH8vuBAcDwhOIYcpI970OjpwdF07uHmwdF094rguF9wBP+b4EBwCI44OAqPe4gP9rXHjSYf ZjEkOE5/DEfre93hMRxNH/BKwRG83kxncDT1wcCH/jQER+0xHMmIERwIjke98Ffw/IumB0+U X7Br9zIEF6NQEsEjP5ruLeo5Iiaf2lN+yFvmA24dO7P3p7Q+MnT3uQwtx5KZX/Lu0X31A+72 Te1lWkY+S2XrgZy1Z6kEd7gk///8tUVwCA68tLmXNj99D3zZD690UvuufeQtnWepIDgEh+Bw 6PUlC44ZtSE48C0QHILjxCPuo15G/YFf8hODo+muFsEhOBAcgsNMcFzqpc0Fh+DgIn/1zMye Vl+CQ3AgOMzMBAeC4wZPix31bL3b3O7c8mJM+7rKV55p18OBT0Y97nLO/Au4+6Ud/Ud/Vl4I DsHB1OAY+5KX9/hXzv0uxrSvq/ZiVjOvh+VLGL/LRwfHwO+/4EBwCA7BITi+Jl/yiwdH4azP zOD40Ktcz8eZf1JHcAgO5r20eeYHXY55TcO9H/+2eiuw9aNV4jdlPlf+p9CVv64jLsa0D9j5 JXfedz7hetj6ddWCI3OdD6758bdizIvG5l5st3YFyL/8q+BAcDziQaOZu6X7f2pD+cdb7L5u dOslHPvztGo/0aN2MSZ/wPKXPPBnkh10PSx/N5qCo/MPaPcCDPk5fLuN0vR1BR+w66e9TEwQ wSE4OPkuleSPWu0/F134B1PrJTw0OCb0wdivq/9xDKMOJHOuh6++H5t3s+DIvFft+9D6Xh7D geAQHMN+jvmQ4Bhyr/+nB8fwr6vzLolzg+OgTzQtOHbvMLpmcLxKPw3xdaWnsQgOwYHgEByz g6PnKCU4Hhscu1/18L+5ggPBcZ/gqD3MYs5jOAYeOZKfbuzXNeRiTP6AZwXHodfDSwVH8tGy VwuO2vWw89srOBAc93nhr/hB8q2PNs88Jiv/wMCeM7dNDwrpuYuh9TkgtYsx8wMWvuTOnzIz 4XpYvtrUro3lP68jngOy+z1vvRhzbjcEB4LDS5ub2RXnxwr2fN8Eh+BAcJhZ150jJjgEB4LD zEYeL303BIfgQHCYmQkOBIfgMDMTHIJDcCA4zMwEB771n/q0WDOzB+aF4BAcCA4zM8GB4BAc ZmaCQ3AIDsHh1sTMTHAIDjxo1MzsigkiOAQHznCYmTnDgeAQHGZmggPBITjMzExwCA4Eh5mZ 4EBwCA4zM8EhOAQHZmbWnyCCQ3AgOMzMBAeCQ3CYmQkOBIfgMDMzwSE4EBxmZoIDwSE4zMwE h+AQHPzZRz8t9t+/waXbiBMvxmvtWXZmdvFbG8EhOHju63A0HbZ//s9HNMfRjWJmggPBITiu HhxbtxdndY/gMBMcCA7Bcbm7SPNvjX+/UAljL4a7VMwEB4LDg0Y/7K96fNh+e9PyXWr3g3Re DMFhdqcEERyCg7ud4VhNh8w/O/qDY+zFEBxmznAgOATHRf9654/0yTflD/nDL4bgMBMcCA7B ITgEh5kJDsGB4Og70heeFis4zExwCA6e8hiOrSN665tepaekDr8YK7dAZiY4EByepWJmZlv/ FBEcggPBYWYmOBAcgsPMTHAgOASHmZkJDsGB4DAzExwIDsFhZiY4BIfgEBy/9+k/LdbMbFpe CA7BgeAwMxMcCA7BYWYmOASH4BAcbk3MzASH4MCDRs3MrpgggkNw4AyHmZkzHAgOwWFmJjgQ HILDzMwEh+BAcJiZCQ4Eh+AwMxMcgkNwYGZm/QkiOAQHgsPMTHAgOASHmZngQHAIDjMzExyC A8FhZiY4EByCw8xMcAgOwYGZmQkOwYHgMDMTHAgOwWFmJjgEh+DAK42amQ3PC8EhOBAcZmaC A8FxyeD4XuxngniTN3mTN3nTalgIDsGBMxxmZs5wIDgEh5mZ4EBweJaKmZk1JYjgEBwIDjMz wYHgEBxmZoIDwSE4zMxMcAgOBIeZmeBAcAgOMzPBITgEB2bPOzwM/pviL6zgEByCA7dfZoLD BAeCwwt/We1oufY7v9b25//a+n3Bkb+R+vlyT3+/svV///r8+klw3D4vBIfgQHDc51asNTj+ VEX838tfDrhUnxwcv6/5yeB4+/EZ//+781dkDGmOrUtlggPBITjs+NpoCY7fv+wMjls2R6k2 Xm8/suvo4Ni6bCY4EByCw46vjWVz/P2n+Kcklj3Rc0/KzZqjVBvrB5VDg2P1EprgQHB40KhN PJZv/BHGj9LoeQDHnZqjVBuvt3Mbc4JjeTntsn+LBYfgwBmO29XG1n0r4RmO/lMdt2mOUm28 lg/gmBMcb5fWnOFAcAgOm9scYXDEKzSHMxzBs1Sc4RAcgkNwIDjufq9KWBJDHjT68hiO84LD YzgEB4JDcNjZzbEXHEOeFvvyLJXzgsOzVAQHgkNw2NnNsfZHeMQLf3kdjrNe+MvrcAgOBIdn qZjdKji8tLkNSRDBIThw+2UmOExwIDgEh5ng8BdWcCA4BIeZ4BAcJjgEB26/zMwEB4JDcJiZ CQ7BITiw+OYjuE3xjTr31vzt/9l9r+tc+J9vevs/d7/k3Q8YfMmuvYIDwSE4rnjzEf++W+35 fxyrPxr+tfjJJlf789q6GEF/xF9yU7Xkr94mOAQHgkNwPP2PY/X7v3VsvnJwLC/5VlJkvuTl 2R3BITgQHF5p9M7BsTzdHdwY9b+p9c6g+BLWLnzm6D787H38SWv/3N89eCS/UckzNMl7W+Kr 4tYHFBxn3T4IDsGB4DgkOOIDc/mMd/JN/beJ8V0S5dP18Qc/MTia+iD5AcsFE1dgU3Dsvmnr 4gkOwSE4fAtOC47vxXb/BXbXN5X/abh7P33yPEHnUSH5RSVLohYcxx3Skjf0PRfpuFMmW2c4 8g9DaTrDkb9qPfCvefnGoem9BIfgwBmOMXep9L9LfKTpOXWfORlQuPD5RzUWLvxF7lLJf8Dh V6dCcLReB5zhcIYDwSE4nhscA091XCo4jjjm3SM4mu44y/ymB40KDgSHZ6kIjqmP4ZgfHMEL RZT/jX7v4Gj9U259uq/gOPEWQ3AIDgRH181H/Ju7b3qd9CyVoA/GXvjMwwKGHPMyD4JpehWs 1sfB1J53U3vhr+T1cOuRBE0f0ASH4EBw2LNOIJkJDgSH4DAzM8EhOBAcZmaCA8EhOMzMBIfg EBxU/sDMzKxjjiOCA8FhZiY4BAeCw8xMcCA4BIeZmQkOwYHgMDMTHIIDwWFmJjgQHAgOMzPB ITgQHGZmggPBITjMzMxxRHAgOMzMBIfgQHCYmQkOBIfgMDMzwSE4EBxmZoJDcCA4zMwEB4ID wWFmJjgEB4LDzExwIDgAAMEBAAgOAADBAQAIDgBAcAAACA4AQHAAAAgOAEBwAACCAwBAcAAA ggMAEBwAAIIDABAcAACCAwAQHACA4AAAEBwAgOAAAPAtAAAEBwAgOAAABAcAIDgAAMEBACA4 AADBAQAgOAAAwQEACA4AAMEBAAgOAEBwAAAIDgBAcAAACA4AQHAAAIIDAEBwAACCAwAQHAAA ggMAEBwAAIIDABAcAIDgAAAQHACA4AAABAcAgOAAAAQHAIDgAAAEBwAgOAAABAcAIDgAAMEB ACA4AADBAQAgOAAAwQEACA4AAMEBAAgOAEBwAAAIDgBAcAAACA4AQHAAAIIDAEBwAACCAwAQ HAAAggMAEBwAAIIDABAcAIDgAAAQHACA4AAABAcAgOAAAAQHAIDgAAAEBwAgOAAABAcAIDgA AMEBACA4AADBAQAgOAAAwQEACA4AAMEBAAgOAEBwAAAIDgBAcAAACA4AQHAAAIIDAEBwAACC AwAQHAAAggMAEBwAAIIDABAcAIDgAAAQHACA4AAABAcAgOAAAAQHAIDgAAAEBwAgOAAABAcA IDgAAMEBACA4AADBAQAgOAAAwQEACA4AgLL/AKnEPlcroUdEAAAAAElFTkSuQmCC --------------020306050500030101010109 Content-Type: image/png; name="bsdinstall-zfs-disk_info.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bsdinstall-zfs-disk_info.png" iVBORw0KGgoAAAANSUhEUgAAAtAAAAGQCAIAAAAIhcA6AAAbUElEQVR42u3dXZajOLNG4Z5l TZFZ1lnn65vstC1CoZAQ+NnrvagyaRsEtraFfv75559DREREZHIUgYiIiFwoHH/+/n3NpP1o v9GnTSP7NuOgEi/V2IfZZS4iIrJLC8fPCm925ffpvd5Kxut/084xY/+rnkg4RETk64Qj9wt+ mXAkqmfCISIispdwvL3H8anZP3FzpEsyqtpgGvswcmen8awS4WjvhnsxIiJyV+FoV3txV4i0 VUTebp5wpBtaIu/e7qvRq0TtMtQ6IiIiT2jhOK2Y39pDuxdqRB262kVqheP09U/7fhYKx0gZ ioiI7N6Ho/z3ekIdZvfhaL9grzfkLCrdjkIyRESEcCSFY3Gn0bQiEA4REZHLhGNcHRYPix3v wxF8hXl9OFzWIiJyJ+GIdOHs7bUwPtBj9sRfp5LRO1VXuyNnopAjpeHKFhGRO7VwiIiIiBAO ERERIRwiIiIihENEREQIh4iIiBAOEREREcIhIiIihENEREQIh4iIiAjhEBEREcIhIiIiciYc r+ub/FpkxCabbLLJJptssim2hhfnEhEREbdUREREhHCIiIiIEA4REREhHCIiIkI4RERERAiH iIiIEA4RERGRpHAAAIC7QzgAAADhIBx4KH/+/H2bT5s+PTH3jrWH0Ni6Qzm399+lCBAOwoHn C8enRyL/7qoyGy8yuP+fXm2H6ry9D4QDIByEA18hHI3K7/W/I8LxVm4K6/Jtq21KARCOjHD8 /R/OGb6qteO1vkxUopEf+p/u3Rwfbp0EX7PxeG8rTmM32o+f7sl4aQB40Yv/h3AAu/8Kb/e3 6K3z4j0tGv99/XfvDYvgvaGGPRydd3BG9rB3JwE8QTj+vvBTQWyy6Y6b2vVWo4Uj0dRRLhyR dy8XjsYT280Vs4XDhW2TTT+/2f55QQsHsGPbRpdMjP/Z7YQj+IJaOAAtHIQDaFWQ8Sr2qOg0 SjgIB0A4jFLBdwlHpD4rHxb7JcIR1BHCAcxUEMIBXCccpxN/nT4x947BF0x3Gk2/16cBLJH+ s+nRKIOlAYBwALhNAw8AwkE4ABRLBuEACAfhADDXOdgGQDgIBwAAIBwAAOCWwpGDcAAAgEcK x/4Tf/3T9KN3s6C8mfy18ffjp3m3yy7xLB9aALiLXhCORYUbKfr208ud4y7Ftb8zAQAIx3Y1 aEQmPj29qpa9tXA02oE0fgAA4bhYOH5WUf9dsO4/DzZK5G3ZvW79tDLeeuFo7Mbbomg/67RV JucH7T3MWQXhAADCcU2n0beGEdx6Wli9lXGk6h2vStu6cKpfveU2csGNFJePMQDcV0Ee2MKR Fo5II0GJcMxr4egqkBnCEWky6e1CSzgAQAvHc4RjpLrdpA9H5LZOr3BEmiXiMpcQHcIBAISD cOwlHCOHfF/h4CIAQDi+TjiC/UbLh8VG+nAkKv7TLrGEAwDwvcJxBHpjtDc1at/Td8yV/ngl 2u48Ud5tJVIOwb6rwU1m4wAAwrHv1Objoy0AAMB4XfzVw2IBAADhqDm2yOMAAIBwAAAAwkE4 AAAA4QAAAITj3qvF1q6Kkn6v02Gxr1uDM23kxvRGxkQtOzWJZ824PBqlcfqxLNyZ3se71uE7 9MsG6IXl6edVJ+0Xr6ozaqfSOnomDw3OKnbsNzd51fTw4+/eOxtb1xyv47bR5Q2nFxjnAAgH 4Zj7bbhyXMxIfRAsh/iMZyVyc7lw1J6stxdDRDgaD86zjZH1CC1/A+B7heO0RXrSt+GnX7F3 FI7gzl8oHJE7QQkFnN2icEkjQe9iQOPlQzgAwnFL4bj8t2+i5stNDT5Sy453F+itDkvea97F nas4VwpHV9eZ9cJxem0QDgC5VoCv6zQ6teab3U0y9xu0q12ktz9svGYq7NTSa0vLavpf0tNb bW/VwtHoZbJbrx0AWjj2uqVyrL3NceEtlfFN6VsDU4XjkpVpR07Q84Rj/TUPgHDcr4VjTR8O wkE4CAcAwmGUSv1LTf3yLalWx2uOqe/1JOEYLIFr78GlTzrbAEA45n6P56ZIKnyv8k2NnZ/0 XunS+FQjpjfN28ngJbG4d23vWf50XGwDwGGUCgAAuFBBCAcAACAcAACAcBAOAABAOAAAAOEg HAAAEI5nT21+93PW+Jvad2zvyZ57OFjCa87jgqfPO6Jlyx8mFmI8Hev76bnG9AIzvpYJx71P 4ensCPPqxcbS6pvs4WAJL3OONU9fPNFt+ZdU7wVg1jKAcBCOdWe0tjUlVytctYclRUo4Fr9m ou4PXgDXzjYLqJ4Ix2MbPGbfsAgKR27J+GtrvtPqZ9Icr416tL113MwSOz9pDeR0Y0N6mZhl d/0AwqHT6I1PZOJHW7lwNL6424/sKRzBKd6PouVj2tOr12pl4r1O746tbOFIL/ucNjbCAcyr ubRw3FshI33rlglHsOaY3SxR+1Ltbitvj6t9yIOr6HV1rkz0udlEOEZaQUbWNiIcwPe2cBCO 3u/TBS0c6daL291SyZV2vEprfDhLWom+UDgi58UtFYBwEI67CkfwrQnHkeq6SDh6ewtVlTwA wvHVp/Aq4TjGhsU+WzgSfThyErCPcKy5fzciHIbFAoSDcCTPYqRv4/g3ZrvLRXD8Qskgi9we jrxa1z6Pj1JJbOqqF8t343Vnln1PRS6ASMeaZS03AOE4jFIBAADrfy0TDgAAQDgAAADhIBwA AIBwAAAAwkE4AAAgHIbFzjsH7XPTPmGfti7byfZVFXzBwZG0M5ZTqZ1bYs3as+l3WbOTm3zE 0mc5d4kaZ4uv1QvCsaPxNU5VcK6n4Ixb5TuZnqYpsVxZ/AVLPiG1r7nMOa56+r2+9RJHnZsw jXOAcBCOvdqXgl+R64Wjd2n14PSU44uMdL3ghRXwr2MhHNd+5aWPuutTaa50gHDc8hfYhcJx +r7pKaWrhGNe+0GtsZ2Wbfn8pA1xLJn7NbIs7afzdXqFL1tGONe8kbv2CAcIh06j+wrHp3+k J6Ie+Wme7sMRvzfUrsAa/zh2XZwlPi94yfomn6rAEgsMamVwpvDChXDT5zG3GE37OiQcQPBX ihaO3YUj7gS1C4uke8MFl7eIHFdEvxbUUoWv1rax3iVCjuFV9BI9lHsbvU51eZlw5LqLxi9I wgF64ZbKnYRjvLaYXWumm6wL+3Cs/E28ps6btN59eTUfuTkSb5FaKRyJ14/fUiEcAOEgHIRj tW1sJRyn10nu8KtugS0TjpLDJBwA4XjCWTnCw2I3F450F9dEpbj/sNh0qSb6cOQum8I+HG/v xawXjiM7LLbrU3kYFgsQjlucj9y40wWdRtt7Epx/LP2CkafE3zF9RgpfMH1E5QNYGrdaep2j 9zZN472WTVs30jkpckKPl2GxbAOE4zBKBcDOTX0AHvwbm3AAIBwACAeAR38TKQ2AcBAOAABA OAAAAOEgHAAAEA7DYvtKLfh4ZOxoeoxo8L2qro/BTSWHXPJe5aUx/pprPuc77OT6vhqFs8iM TPMPfKFeEI4pX5e9a7VXTYrV+2fpy2V8/rGSQ75qGrRLFuNdUOmuefolhxz5vJxOFfPppTgH QDjWtQjFH++tfRunbWQ17cKrJ177jgtHbqL3laVRVaRfJRwLDvlIzd91nK1a/PORBVcaQDi+ UTi61m69VjjWzNVIOKZWh+3f2SObGvVr74yo7do6vsbsMfOOVdfW3hVSCAfwQOHYp+xG+nA0 lpyI/8xavAp213Gld75dUKc1wRrbmNQjpLH1KLqLFKxHg88aaQmL3IxYs/ZvYlJ2wgGUfOlp 4cj/bgt+1+Qqxa4vwUt+yo8fV+SQEy1M8yqAleu6nS6N1tu0kOgVVLUcycpWqLRwRMTXkrDA k1s4bjpKZaVwXHXjYI1wJMp/3rf/JgvJ5irX9vptXa16tZ+RSesOlmy1Bj1AOAjHP5O+6Uo6 qBKOWwhH7dU12IxxbR8OwgEQjtsLR27k57H9QNCS44p7w1U3mKYOi01fY7nWr8QVlbbPqwZ1 1ypasEDYBkA46gsx3h0yNzqgfFqtwSNdfFzBYj9iIyxmnPqpnUbjRVE+gKVxq6Xr/tppL5PZ xdv7xdd7vR0vw2LZBvAc4QAAALdWEMIBAAAIBwAAIByEAwAAEA4AAEA4CAcAAITDsFgAANCr F4QDAAAQDsIBAADhIBwAAOCxwgEAAG6tIFo4AACAFg7CAQAA4SAcAACAcAAAAMJBOAAAIBxG qQAAgHEFIRwAAIBwAAAAwkE4AAAA4QAAAISDcAAAQDgMi519Dmac0fYfNC6C07/v2pOV1/E+ H6c77jwATP1aJhzbnZKpr/npCmg/N7eTXygciT3JOQoAEA7Csa9wRGSi67kYLKhGw5JiB0A4 biMcjTsFp483KuPTF3xbf3/a1Pus4+wOyCbC0djz0+P69XaNM5J7r+Ah9/pB78WWa5ECAMKx V6fRXD368XCbLxivz07vaHTVvkfnHZBITVlY853uW9AqToUjIiK9ZZj7IOXsgVUA+B4FeWAL R6Tj5GnTQq4iKRSOXrnZp4VjH+HIlWHusjn6++QSDgBaOB4rHJG6Zyvh6PUDwjFehrnLpnDn AYBwEA7CQTgWCQcXAUA4biYcvXXbqXCU9+EY6XQyUoEtHhZLOAgHAMLxjaNUPlUJja29I0cS gyzioyEar9brHLUTfyVKI3G+Gu/VVYa9fTgaO5/bZDYOAITD1Oa4/jJ90tsBwDd/txMOfKlw sA0AIByE49uvyDUXvTIHAMJBOAAAIByEAwAAEA4AAEA4rBYLAMBj9YJwAAAAwkE4AAAgHIQD AAA8VjgAAMCtFUQLBwAA0MJBOAAAIByEAwAAEA4AAEA4CAcAAITDKBUAADCuIIQDAAAQDgAA QDgIBwAAIBwAAIBwEA4AAAiHYbEAAKBXLwgHAAAgHIQDAADCQTgAAMBjhQMAANxaQbRwAAAA LRyEAwAAwkE4AAAA4QAAAISDcAAAQDiMUgEAAOMKQjgAAADhAAAAhINwAAAAwgEAAAgH4QAA gHAYFgsAAHr1gnAAAADCQTgAACAchAMAADxWOAAAwK0VRAsHAADQwkE4AAAgHIQDAAAQDgAA QDgIBwAAhMMoFQAAMK4ghAMAABAOAABAOAgHAAAgHAAAgHAQDgAACIdhsbPPwYwz2v6DxkVw +vdde5LbycIy/PRG5fsweF56yxAA9tcLwrH1KZn6mp+ugPZzczvZ6z2TyrB9ROudY7ajAADh IBwXC0dEJrqeu8mBD7Yc7CkcjTYnjR8ACMdewtG4U3D6eKMyPn3Bt/X3p029zzrO7oBsIhyn uze7DNu7ETzM+FFHzkj8Osw1VgEA4big02iuHv14uM0XbL9X4y+PWA+D+HvlpOHUYMZbET7Z Q/B85cowctFXCcfp2+XsgVUAeJiCPLCFI1IJnf6YztUWhcLRKzf7tHCcHmxE9SYJx+wWjt49 TzRWAYAWjhsIR6T+3ko4emvE+wpH5KU2FI7gcXVdGIQDAOEgHISDcFwvHFwEAOHYUTh671Cc Ckd5H46RTicjtdTKYbG5QkuXIeEAAMKxyyiVT9/7ja29I0dO65X24Iuu4zpSAx9mTPzVW/Ll ZdjYja7i7e3D0Tiu3CazcQAgHKY2x9d9YAAAI9+ohANgGwBAOIArPg8KBAAIBwAAIByEAwAA EA4AAEA4brla7IIb/6ezUKSXRus6iuDsHadX2+nuHeH5v3sP+XQOjMKzPKNfSKR435ZJ+jti 2RMv/HwBmF1bEY5Kd5t62uJzVKSnnCoRjsisHqezrkU2BY8iMelW1VlOz6/auxvB2epm29U8 RSAcAOEgHEPrjJdU7WnhyNW+wRdMTzbau4drhCPRUJGb2jX4mq8v9fbogtI2o4KnCADheL5w vN5oCNYc4237hd+8keaHceFIVKUzJnqvFY7g6ShZI6bwDI4LaKHljOhC+a29GR9YAISjptNo Yq2KdD064/dcoi4JfpuP73yjr0DkrXvnL88Jx9E55flU4Ugs+LKJcIy069Sua9h1XFV3rwDU VmpPXktlpNrrrRUKv9RynRXSLRyFv7Pb/RbL77ZEdn68RWe2cIxIQFw4GoKYcMfxz125cPQW FAAtHHOFI70S2HHW7W6TFo6EcDzylkpkh3e4pbJ5C0e5cKQLqvbnAQDCcb1wpDct6MORq5hX dhrdRDgmjVI5vrgPx1ThKDnLhAMgHLcRjnl9OKpGqbQbJHYYFjtepDsPi02c5fHSfqpw9La0 6cMBEI6thaPdff3o794R2VT71Za+Tx/Z+ZXC0bhtf4uJvxKdJ+KCWCUc6V7DvR+iyLO6Pl8j ZWiUCkA4dhmlAgAALlcQwgEAAAjH2IE5zQAAEA6rxQIAQDgIBwAAIBwAAIBwfMvy9MeEqc0L B/tFxnPGN51OlbG4D80OPXW26jPUOw1JcNTu20d6L7bxL6ng1ZvejeDQ967p/E93vvBaWjAs H0hcOYRjx/qmfDqj8tk/P33hnr7g5p43vg9b7UzvBRCZsOR0BdcZM26VTzWbuJxKZiUemev9 wo8D5wDh2LSlqPwTO3XG9K5pPRvNGDnhmOFnl3+0rt2ZSH3cq5Xts9y7ct7OwlG71kHiQPYU Ds4BwtHxizM+g/L4lJeEI7daTaIBPL4sbfACiD8rvWzp+HvtIBzB6nxGm99XCUdiNvdJU7IS DnyXcJR/SR0L11KpbTUZvDPdbk4f/Efu+2ukHT6ytG9ueY7eKdtzNf2nAiwsjRHhOD3dCz4O CdcfEY5IV4zgptOPXtB948fVewEsdkdQkO9avG3wp+pWjZmFLRxpveiqp2fUT5GvyNwFMH7H PdKdcFwyZgtHsIlrtnwnfksNtnCUN3iML3M4IhzxBZUIB769hWPZ8vSRdcKeJxynP62qhCNy 96FcOBKH3/7ADO5DV6P6tsJR0kBFOJYJR+SnJ+EA4VgqHIM/Z8s/rk8Sjhm/pVYKR69FjX+J X96Ho1c4Vp5iwlElHFO/wUA4CEf+M5/4VI/chh/fjUnDYufpXa64Enejq8xpvJNQVWkc1cNi B4Wj5PbZDsKxclOJcJTsBtsA4eg42tN5dXrv7gcnBSo5VYWDZXaY+CvYqJu+j/DpPLb/vve7 OP1eJc+q+qjHr7SccESut8RnoesPyqfI23NT72RivQXFNvCNwlF4JwLAPl9DUJj4nsuVcAAA 2wAIx9iBOc0AHvmVrUBAOKwWCwAACAcAACAchAMAAMJhtVgAAHCiF4QDAAAQDsIBAADhIBwA AOCxwgEAAG6tIFo4AACAFg7CAQAA4SAcAACAcAAAAMJBOAAAIBxGqQAAgHEFIRwAAIBwAAAA wkE4AAAA4QAAAISDcAAAQDgMi/1VZIvPzdSd/3iGhw+56r3af//rD64tXgDAz+9YwlFZgjd6 u08V/L+PvP5jpGKufa+fD57+wYbnEQAIB+H4FuFo1PFvK/X2s9rtGeXvVSscbAMACEeZcPyq vRrVYbtEGiUVeVZ6U23V+KkEIhdHZGcaQlDyXoQDAAjHvp1GT2vB19/Tp5VlpLYLvmCuYt5Q OOKuMCgcVWZ22ikEADBJQZ55SyVR8c8WjnEJKDzNORu95FmRGzrxF+x9cQDAd7VwTBKOLgm4 tXCUt3D0lsZgC0fXlT1YGgAAwkE4thCOdBkSDgAgHIQjKhzjHTVuLRzlIkU4AIBw3Fs42uNN 4s96/YPgs9KjVAp7NQZFqmuoyMr3apdDoqB0GgUAwjFllAoAALhcQQgHAAAgHGMH5jQDAEA4 rBYLAADhIBwAAIBwAAAAwnHxarHlPTn27xeSOOTCUjqdvKR3kHBw+rX2bnwaeHz6eTjdvaNn KHXvSoF3ueQAIFgXPHx5+m8TjtxOLhCOI7WKzSThiKzz0l5nuCFVvcVyZKdZAwDC8VjhuOmZ vq9w5Grf4AvG93bEkAgHAMLxcOEob72PzAra297e2O32PnTNT1q7wvti4Tj6xzmnJ5VfJhxH bIZ4tgGAcNxm4q+Rn5KJR8ZXQv9Y6tkf7heu23J8nqd86h6ml6c/dcdC4QgqrG8uAI9RkAe2 cMRbCMqFI1jtdalSxCRyh3yXFo6jboW2dmmU322J7Px4iw4AaOHYVDgSlWVaOMbbZkqEo/fi 2Eo4HnlLJbLDnAMA4XigcBwVvf++XDhyFfPKTqObCIdOowAIx3cJR++P6WV9OOYJx9RbKu0y 3GFY7LhwGBYLAITjzbEdnQM9jkAXv/gYkPQolU/VWOS9jqKxLbOvtkhBrRSORp8eE38BwLcI BwAAuLWCEA4AAEA4AAAA4SAcAACAcAAAAMJBOAAAIByEAwCAzfnz5+/PNP6GcBAOAADyttEW i7aLEA5XEQAAQ/7xq/2j/WeEo3umUQAACMfP/7aFo7D947umNgcA4As9o6ERy7p33FU4/r7w U0Fssskmm2yy6cs3NezhV2fSRveOn4+kd+PTsllaOAAAeGZTR/DxGT1J3VIBAIBwzLWNw2qx AAB8g2EEhWNep9FPCkI4AAB4gnM0Jtt43bqmtYNwAACARRAOAABAOAgHAACEg3AAAADCAaD9 FVCcle/lewMgHIQDIByEA8A9hcPEX8AthOPtrMb/+wj/+Tf//uXPfxMO4JF6QTgAvBeOfz9l Y5X9f75l/ruSwlEuHJ92GADhIBzApsJRYRurhePTbgMgHIQD2FE4imwjKhy191Nedx4A4XAv FthOOOpsIyQcM3pv/DoEAHsqiBYO4HuFo9Q2LhOOXwcCQAsH4QC+vYVjxhAVLRwA4SAcwO7C sb4PR61z6MMBEA7CAdxDOIxSAUA4CAewQjhKnONYO/GXeTgAwmGUCnA/4TC1OYCpCkI4AMJB OAAQDgCEw/cGQDgIB0A4CAcAwgEAAAgH4QAAgHAQDgAAQDgAAADhIBwAABAOM40CAIByvSAc AACAcLwIx98XGntvk0022WSTTTZdsuntVi0cAABACwfhAACAcBilAgAAuhSEcAAAAMIBAAAI B+EAAACEAwAAEA7CAQAA4bhWONJvBgAAbg7hAAAAhMMpAgCAcBAOAABAOAAAAOEgHAAAEA7C AQAACAcAACAchAMAABAOAABAOAgHAACEg3AAAADCAQAACAfhAACAcBAOAABAOAAAAOEQERER GWh0UAQiIiJCOERERIRwiIiIiBAOERERIRwiIiJCOEREREQIh4iIiBAOEREREUUgIiIihENE REQIh4iIiAjhEBEREcIhIiIihENERESEcIiIiAjhEBERESEcIiIiQjhERESEcIiIiIgQDhER ESEcIiIiQjhERERECIeIiIgQDhERERHCISIiIoRDRERECIeIiIgI4RARERHCISIiIoRDRERE hHCIiIjIPfJ/uAOgG78yPaEAAAAASUVORK5CYII= --------------020306050500030101010109 Content-Type: image/png; name="bsdinstall-keymap-10.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bsdinstall-keymap-10.png" iVBORw0KGgoAAAANSUhEUgAAAtAAAAGQCAIAAAAIhcA6AAAhz0lEQVR42u3da3LrNhJA4ezS W+TysgPPTFJJeSwJbDQa4Os71T8S84oEQYo4auLxxx9/bEIIIYQQ8+LPP//8Qy0IIYQQ4jDh +Pr+fo1J5Wgf6NOmkbLNOKnErhplmF3nQgghxFkyHD8bvNmN36djvZWM1/9NO8eM8ld9kHAI IYR4nHDkfsEvE45E80w4hBBCiHMJx9t3HJ/S/omXI12SUZWDaZRh5M1O41MlwtEuhncxQggh rioc7WYv7gqRXEXkcPOEI51oiRy93VejV4nadSg7IoQQ4g4Zjt2G+a09tHuhRtShKy9SKxy7 +9/t+1koHCN1KIQQQpy9D0f57/WEOszuw9HeYa835CwqnUchGUIIIQhHUjgWdxpNKwLhEEII IQ4TjnF1WDwsdrwPR3AP8/pwuK2FEEJcSTgiXTh7ey2MD/SYPfHXrmT0TtXV7siZqORIbbiz hRBCXCnDIYQQQghBOIQQQghBOIQQQgghCIcQQgghCIcQQgghCIcQQgghBOEQQgghBOEQQggh BOEQQgghhCAcQgghhCAcQgghhBB7wvG6vsmvRUZssskmm2yyySabImt4yXAIIYQQwisVIYQQ QhAOIYQQQgjCIYQQQgjCIYQQQgjCIYQQQghBOIQQQghBOIQQQgghziMcAADgvxAOwgEAAOEg HMAwX1/ff8fP/71i+XtLnvhIZJ/tw7nfAMJBOPB057hiu/irtDnnmFQYwgEQDsIBEI7VwgGA cBwvHN9/4YbD4c32a5P56YVF43/b72g+vf74VYZ4y934x7tvW97+vfGpdm00jrX790/1OeO9 D3ACvfgfhINw4KHC0ZCA3UTIW+GItMEliZbewgfLED/lSJl7S3jpjjUA4TidcHy/8FNBbLJp waZd4XjrDZHW8W3iZDd/kG5id7MOceGInHJXrqVQONy9Nl36afPHC4RDhgNeqey/regVjnb7 Pf6bvncPXVmKkwgHIMNBOAgHLi8c8XbuJMIx2EgTDoBwGKUCnE44xl+pHCgcK/twjB+LcOB5 CkI4CAeeYRuRQSW73R12hePX4eLHipQ/PqjkdWvJDrfYaJSuYxEOEA7CQTiArZ0/OGQnAAgH 4SAcYBuEAwDhIBxApxwUTktVuzcAhINwEA4AAAgH4QAAYLVw5CAchAMAcL4W/fW/T7JDwnHG ib8+1vqPTZe49Z8p74fv8wx3yJob9dPXZM2xGlt3/z6vGsvrob3D8gpfeevOKPzKyo/7wdvb MnKXjgjH7teEcJxION7+x0mak0u0efc46ysKx9v79io/6SY9zdPFy7U3M5q9BXfaylt30rGO rZPELRq8ewnHnYXj7cUmHITjinndlXV+ZuFYoI+Tap5wXEU4frUUiXvyrSXk7ijCcbG1VN7e ao0fMbn8bTsb3JuFG8w8937H0sf6lK5M7DByvUZy4/HCt0+q3XYmjpV4RM471qcTLLzKXY/p ceEYLGHX3nrFIvc1j3+RFzzZIseK31HB61WywxIvD969tapEOE7daXS3Rck9AYM34qAUN1Rp t80Lfs3K84Qjpxyph97nb/tLmy5GY/8NEey6o3pvgNyxIofr+qakX3XvNhtVN0DwS1Tyrcll OEYas8Id5p5RvZre9TKr67tc+3YsWBuHdLoiHNfIcETa7MJ8adfXPvJb/+2JdH3N4t/tQZMY FI7ei9JuA3ZbiIRwRLJcK++oXMM8/k0Zr42Sbne792cwK9mbyCwRjpE2stZgEs+oXIor8oUt 3OEM4ZiR6pDhuL9wDIpnlRQHG8KGzh8lHOnayP2KGhSOxC+zrt9Ptf0cZ+R1u35Qpj/S9XUb F6l05jJyyguEYysdYDWeMsk9o0r8IPddPko4ap2DcBCO+vd8cbe4inCka+O0wpG+bQhHog4J R/qalgvHyDPqIcIxrz8H4XiQcJykD0fvDkeE4zZ9OGYIx7bXC3WBBJxTOKbeNlvqZXyuSAcK R1UDtqZ3WvBYhINwPEg4EqM5avtyb83u3MEhG7mRI1uqi2LhcINEV/lJHey3zo6BheNoCgfX rD9WrhjbtOFXI/N3JQaI5Xa420gMfs0HX+8WPtkix0q0013Vm75eI81/+fUiHKY2n8Izp9YA ABQ2IoSDcLANAADhIBwnuDl8WwAAhINwAABAOAgHAACEg3AQDgAACMcTl6cvH560uB/GRTt/ RIbSHXimutRcqw7Pf71GSuhuxO7tQTguMA/Hpdd9PvaghQXOTdSjVq/4KHzy9RpfFcEdBcJB OAgH4QDhIBwgHIQjdqm65hls/2/XRJPb3uyZ296S3IlFxrsKv1uMQuGITDS59awVmS587b0x o+anznhbcgPkvg4jhd9S64iOTNe7pjYSc9fyFcJBOM7VaTQyt+5WsaBDeoW2yATACeGITB8e bH3XZzh6l4HIzV5ce2+U1/yklS9qb4DBr0NX4RP3RvlqL/Nqo2v9IMJBQQjHeTMcQUMceRLF 8yLj6xh1PfIajeJphSPYnJc0D1X3xoyar1rPc+Q+zGWJIu6VK/yIOgSv8iG1QTggw3Fz4Uj/ zEr/lpq9zmGj2cut33gq4cg1VGvujUk1P/KeqOuOmtHEjj9YS1JBvVf5kNrICUftsmQgHISj pg9H/Lcj4XiUcFTdG1NrPtfmEY7EyybCAcJBOEaFY5v8cvf2wjHyOzveAbA2bb7y3iiv+fJu EAcKR2EfjvLrlXh/MaM2EsIR7H8NwkE4Dpj4q7dfRePlbro/fOPB0S5/7yO7fbiu2sg9v4I7 /NQrcOscOZIuXtW9MaPm541SqW1iFxS+6np1bVpWGzNKSDgIB+G43tTmD/neejwdVWlqHkDi oUE47iYcz2kMNHtH1ZiaB0A4HiocuVTwbW5fX+aV94aaB0A4ZDgAACAchAMAAMJBOAgHAACE 4ynzcAAAcHW9IByEAwAAwkE4AAAgHIRjmXAYdggAOJaq9otwnLrTKOEAAFxROD61aITj1MvT 765+ZJNNNtlkk021m/5tuX4iw+GVCgAAXqkQDsIBACAchMMoFQAACiEchAMAAMJhlAoAAPdV EMJBOAAAIByEAwAAwkE4CAcAAITjPsJx/qoX4roBgHAQDsIhBOEACAfhWDXx1/pT+P7++jcK 99k+3JnvrUYJX/8+WHWJj8+4WF2nvLJshANYgIm/nisc319f/41EW5h40P/8VFVT0d7PdYWj 9+8l1fXpH89wjpJTIxwA4SAcV8pwrHGO13+/QDiuG6cSjqqLRTgAEI6nv1JZ4ByRVMRrkvzX j+zXTY13NG//vrvDhh71vg9qHH23hJ+Olc46tHfYPlbv3nrFYvdSJnJmu3fUpz1Edhi8owAQ Dp1G3/ThmO0c8Z0kPKDroJ92uNvY9J51pLS5Vyq9zvHpI5HWt32Iros1L8ORvoU+nfKuyEbu KADzIBzX7jQ61TluIBy9v8LnCUe65rvOK5jhOFw4IimTuHB88phgKohwADIchGNHOGQ44hmO 9O/vcwrHSGeLMwtHOiUTMQ/CARAOwnGZPhyJ9xeEg3AkXqkQDoBwEI4HjVIp6TDR24nyDH04 gp1AE01puXAET3O2cOTSZrlSEQ6AcBCOG87DMT5WIj4aJTeSotEls3wYxW7HzMbAnNz7rK7z ipctXoeJU45P/BW/XrvdO9p9OOLHAkA4jFJ504dDiAdGyUwen3YCYB6Eg3AI8SzbIBwA4SAc hEOI6IDeGcsDASAchINwCGFqc4BwEA7PLwAACAfhAACAcBgW27o8R90cfw2/fRMlex4pz9SP jOzw2LIBwAwMiyUcH9uw2sb17X+U7Hb2Z2uLvVuGxFEIBwDCQTiumuEobMP+3c/PfV5ROEqK TTgAEA7CQTjmNmNvd9h4z/Jp08jbmd5jtesh8pG4WKTPq3G4dh029hDZYSMPRIAAEA6dRg9z jt22fLedq8oEJFrf9rHiJzI1w9F7Xrun3Dj9nGYBwCCE42oZjrDX7DZF48IR/BU+2DDH0wDx YkQ+skw4uqo3UuC3HhNMBREOADIchOO8GY5GU7pAOHorobf9Pko40imZiHkQDgCEg3CMCseC PhzBQwRT+g8Xjq7zIhwACAfhuNsolbhw5PpwJKwl3tfhQOGIX4JPhxvpw0E4ABAOwnGxeTh+ 7jMxPGT3rUrvaI5GMqA9Iia3w22v88rgecUHlQQHxQT7cHQdCwAIh1EqwPFTsQFAl4IQDsKB h9oG4QBAOAgH8F4Oate18TIFAOEgHAAAEA7CQTgAACAchAMAAMJhWGzo8jQ2b0sGzZ7k7f6x /QwO6ehQOEP8Cc/uzDcbgPL2i3BcVjhSKZSR6bcfLhzrC1C7JM35q3czXgYgHITjdMIx8MIm t366luBswnHLxt5tBhAOwvFE4YjPov1pps6tc2LQRkJl9+/tCdR7Tzmyz0/FiJ9XZJrUdG2k F3bpqt7cVd4CC/96ygOEg3CcoNPo0cKxfZ4q++3S6pElynZX9Oh9xZBbIiTSKG7ZFV5yi84k zncbWyQvdzOMnL4MB3B7CIcMx86/7P21uruEWOLnb/An+Brh6FWH9qeC5U8IR8mNEblYhAOQ 4ZDhIBzTMxyNT7XXEutq6XM5jEsIR1XKYYZwjJ8j4QAIB+EgHISDcBAOAISDcLSFY1sxLHa2 cIy/UrmTcHT1Ud2W9OE4UDiYB0A4CMeDJv7abTmCbUaj40KvPTT+njCYxllXjb7ZeoZmNArT KGSk8F1n3VW9kVE2wR22TxkA4SAcpja/FVo7lQZgBoSDcEDbqcYAEA7CgeVtpxa0q6LUFQDC QTgAACAchAMAAMJBOAgHAACEw7DYFcNiB4dZHn6LLyvG4KppF+0J0Sh5bnk5nUKAs2FYrIm/ pk/8tWWnsjhVy7GmGCMVdd1WtncGkeBcZ4QDIByE41lTm99DOA5xmicIx+7kb71ztxv2AhAO wkE4dpqHeG58dzrO3lVk28XIzdTZ+1M7suhJ1Zyh7RIGq6L3UubOPbdYDOEACAfhOFOn0bXC 0bU6eVczHGkRcyt6DBajq67ijW7bHno/tQVWtCmpw1rh0IcDeCaEQ4Yjk+F47U8abOkTa47E V2jr/RmdWNKlUDji2aNeexj5yALhkOEAZDgIB+HoE47eA+XUIbjEaLzZK19jdpJwjFyUdIaj 8HYiHADhIByE41bCEf/4MuGoXeCecAAgHITjocNic50nyoVjdjFy/UYTDX9JH44S4Zj6SmW8 zw0AwkE4Hjfx1+Dgi+1zp5BGSbbOERa9xdgGRgInKip3Xit3mLs94pvi9xsAwkE4TG2Opcx7 CQIA8yAchAP3F47BiVABgHAQDjzRNkZWbGEbAAgH4QAAgHAQDsIBAADhIBwAABAOw2JvNSw2 +NnDb/FlxRjvXXHFJ0jXzPHpGfEBHIhhsSb+OnLir1O19GcoxuAwkIu2sruL0fTWjG6tAOEg HKY2v6pwHOI0TxCOYEYnfgsZRwMQDsJBOD7+cu1dZ3x3jdaulU638Eyj48VIV+ngXKjtFe0b n2pURe+lHDz3rnuPcACEg3CcqdPoWuFoS8CWWhSjd9bzyHELi9FVV7nVYl/tofdTW3jJulOt pZLwVAA3gHDIcGQyHOnef7tLacT/O3g6VcUoF4549qjXHkY+UiUc6WQG4QBkOAgH4Tjp8vTt ZvKQ5elLhGPkohy7PP1IvREOgHAQDsJxUuHo/am9QDhql6e/lnAM9n0hHADhIByGxfY1WguE Y3Yxcm1nouEv6cNRIhzjr1QGXYdwAISDcJj4KzM8pKtnaNs5EiMseouxDYwETlRU7rxW7jBx e0Q6oESKQTsAwkE4TG2OI5nR6wIAZkM4CAfuLxyDE6ECAOEgHHiibYys2MI2ABAOwgEAAOEg HIQDAADCQTgAACAchsXealhs8LOH3+LLijEyirVkgZttb2rzxFDV+L2hawhwVwyLNfHXkRN/ naqlP08xymfB2j1EbrKv4A7Pf3EBEA7Ccf/l6bVJhMODGCAchINwTBeO3Drju2u0dq10uoVn Gh0vRrpuEyvIEw4AhINwnKPT6FrhaEvAlloUo3fW88hxC4tRm9Rpy03vsUr6cDQ+FRcOHTgA 9CoI4ZDh6MtwRPoM7qYWgi19bsm38mKM123vkmyNlUp6MxzxcvZeZQkPQIZDhoNwTBeO3gNN Wp6+ty2csVpswn5WvlLJCcekmwoA4SAchOOSwhH/+HrhOEmnUcIBgHAQjpRwbAcPi811nigX jtnFuI1wBI/V24+EcACEg3CY+KvMNnKTVu1+avvcXaBRkq1zsExvMUaE48wTf8U3pW8PD2WA cBAOU5sDAHAwhINwAABAOAgHAACEg3AQDgAACAfhAACAcBAOAAAIB+EwLHZwzGTvKS8bY3nm UaztOcVHxqMawgqgF8NiTfx15MRf89q2lS3ic1aTH7RAAISDcJjavKCVPZVwrORRwmGSLgCE g3BcUjh2E/u7C621JwCNNJa/dlXyfiF4OlfMcGxeqQAgHDqN9l7JlcLxqRtBb8sdaVO7Vnif lIPZXbY+nVpI9+FofIpwALgEhEOGI5PhaPdqLBeO3dZ3xs/9uGM1amPl4q65iwIAMhyE41nL 0+c+NbWXyf1WkyccAAgH4SAcxwvHSTqNEg4AhINwGBYbbSwJx1bUaTTX34VwACAchKNCOLaD J/6K9BUo/9SWHdzRPrtgCZdN/BXfVHU1AYBwGKVyT7R5APAoCAfhOEYyCAcAEA7CQTjmOgfb AADCQTgIBwAAhINwAABAOAgH4QAAgHAYFtv37wcHYfae8rLuHWceFtuepHxkdGu6ek/e7WbN zTl4s2lvcFEMizXx15ETf817yK58ND9qefpLWOCy5nz9GXEOEA7CYWrzcwnHsW3AjYVjfVKE cHAOEA7CQTgKhGM3sd+eS7TR3vfOQJr+7d61nuoNMhy1bXNwxtjxN1aNq5x+65e4sSP/2y4G 4QDhIBwX7DS6Vjh6H76R/EFufZA1q8W25WYktZDuw9H41FHC0dUSDyaQ4uvp9J7UgsITDoBw yHDkfwi2ezWWC8du6zvj535vU/S2kCtXi81dlJIMR9WJRPZZKBwRmUsoUaHtATIchINw3HN5 +t7Ee+8hrrg8/a64LDiRxcKRENAt8F6PcIBwEA7CQTgq/YBwXEU4RgqfeG9COEA4CIdhsaPC MfWVygOFY16fgKphsSXdL8r7cPR2rKkqYe7rABAOwmHirzdp595ZsCZ9assO7uhNqh878Vd8 U9XVTDtH46KUn/Juc97bjbehC73ddcu7zgCEg3CY2rwGj2C4gYFHQTgIxzHPaM9rsA2AcBAO wjH3Se15jUvfuu5egHAQDgAACAfhAACAcBAOwgEAAOEwLPb35gOHxU6ia32T9KmNlC2y9EnX dOORw+XKea2HUaJ6BysKQATDYk38deTEX+uFYzt6DsfydV+n1vzlWt90HRr6BBAOwnHz5ekP b5NO1UDWVtrbH/GEI1hRnAMgHITjhmupdKW447nxrpLn5i3dBl49zP7NHdl/1RyvuUu5ZWca JRwA4SAcl+o0ulY4eqcbH2lFZi/9Ne4EiUXtB1vfYJVu4TXJxq9L7brtESWK2BLhAM4M4ZDh yGQ4IpsaTWy5Vez+1q8SjsH1x3NLviUa/q5+l4lLmT5WIsMRuScJByDDQTgeIRxdbXm6zU6n 1quEY9A2DheO3qtcu7btVOEYPDoAwkE47iYcIzmAY4WjJHuRPlZvw084ABAOwlEhHNvxw2IT whHZw1WEI9jUDXZoSDf8JX04SoRjvHrHO6AAIByEY0A4tiMn/op00Xh9pz4yg9PIuIySVipY +N0P5uo/uMPcyJGVO4zXcHyHJv4CCAfhcKPiAgw21Vp6AHEFIRyEA4Qj+RHCAYBwEA4gpA4j K7awDQCEg3AAAEA4CAcAAISDcBAOAAAIh2Gxhw2LnUfvCm25UxspW2Sxj/hI4ODhIsXYFo5H jcyVPtI1xKMZOA+GxZr46+CJvxYLxzaweNuMguUmxRqvjfIZP8vPa2TiUb1QAcJBOExtfvxP z1M1Rem5twlHb0YHAOEgHM8Vjl+zTwYnDI3PNNpV8twMpCO/p3NLk1RdrMQK8lfJcGxeqQCE g3Ccq9PoWuHonfQ60Zj1Zg7SBjDuBF3HGuwH0+VYJamFdB+OtlkSDgCEQ4Yjk+GIbNpdbKXQ KnYzHFXCMbhC/QK5aZxjo1tr7xXPXZpIF1rCAchwEA7CUbA8/UibfexqseO2sU14v3BUH46q 5JMMB0A4CAfhmCIcIzmAUy1Pf5RwnKTTKOEACAfhMCx2VoM3LhyRPVxFOIIuVd6D8pyjVBLv zggHQDgIh4m//u/f7/YZbHxw63yFv/tqPzEa5W231rRwBPuFND6Yq//gDpdN/BXfVHK/ASAc hMPU5gAARBWEcBAOAAAIB+EAAIBwEA7CAQAA4SAcAAAQDsIBAADhIByGxS4bpti7Qlvu1EbK FllYpGsy78jhIsXYFg6LbZ/XjOVj5n1wDbmv3sriGYeMTxgWa+Kvgyf+Wv/gO1Y4yldVzdXG jZen36at33sG2zj/BGicA4SDcJx0avNLPLUPFyPCkVu09mYt5VVOinOAcBCO0wnHrxk8gxNN xmca7Sp5bgbSeb+npwrHFp5H/IoZjtq2OTg77fgbq8YdNfhCrVGljWJ0fYpwgHDoNLpzJVcK R+/E4YnGrDdzkDaAcSdILBlf/ts9Mrd6LrWQ7sPRNstjkwHxhjmdQBpcs7BR5gWFJxxYA+GQ 4Rj6mZX7LVVuFblfsYMVMt7yzZCbxjk2urWOtFJb5wum9u0xKcNRdSKRfRYKR1eaMLFWIuGA DAfhuJhwdLXl6Tb72NVix21jxvsFy9NHbrMFJ7JYOBICugXeIRIOEA7CcR/hGMkBnGp5+qOE 4ySdRgnHGuEYKXxtfhGEg3AYFjvRNsqFI7KHqwhHsFEp70F5zlEqhX0CqrrxlnS/KO/DkUun jZdw8KsHwkE4TPx12MRfkS4ar0/Y+CiV+JCTLfC2e6uYKiNY+N0PViXVj534K76p5H4bcY7G DVB+yrvNeW833oYu9HbXLe86A8JBOExtDgAcAqeDcBAOAGwDIByEAwDCkrF+HRaAcBAOAAAI B+EAAIBwEA7CAQAA4TAs9shhsfHPrrmPly1Pnx5w6M06gItiWKyJvw6e+OsMErD4WJGZlMbX swAAwkE4TG1+UuFYrzXBmcQIBwDCQTgIR76JTS80H5z88e1+dt9ZfPp77w4LhYNkACAchOPK nUbXCkfvYtyf/h7Ml3TNUR05qdrVYhMzW+vAAQCEQ4ZjXYYj2CqnF6qo8oPaDIdUBwAZDsJB OM4iHOWL2pevFjsuHJwDAOEgHISDcEwRDv05ABAOwmFYLOGoFw7DYgEQDsJh4q/Kib/aHTl3 PxXf4e6sWYkSJoTDxF8ACAfhMLX59dD6AsCjIByE4xjJIBwAQDgIB+GY6xxsAwAIB+EgHAAA EA7CAQAA4SAchAMAAMJxpWGxl+DvLhnz/j0AXONhaJbhF70gHITjMNvgHABubBuNWRAJB+Eg HKttg3MAuKtttKf+a+c8bmYkhONeM40u94lff2lLw8hWALiodgQ3XWjdAzONPqLTKOEAgFsK R3zrRYXjU4tGOE6X4XhT5T/284tJm9LC8bLqyNeucKw8L5tsssmmwk2DwvG66TzntXvKMhxe qchwAMAFMhyX6EzqlQrhWO0cu/5BOAAQjvimqwxdIRxGqSx1juCbkXTuBAAeJRwX6jSag3AQ jtE8x7g9sA0At1SNtyNgP23aHSVLOAiHqc0BAEgqCOEgHAAAEA7CAQAA4SAchAMAAMJBOAAA IByEAwAAwkE4CAcAAISDcAAAQDgIBwAAhINwmGkUAIByvSAchAMAAMJxL+H4fuGngthkk002 2WTTbTa9FQvCIcMBAIAMB+EAAIBwEA6jVAAA6FIQwkE4AAAgHIQDAADCQTgIBwAAhINwAABA OAgHAACEg3AQDkz47mVum/N/9wCAcHj4gnC45wEQDhN/gXD8c9u8nRg4Ihzf319/R+Ft3LU3 5O+D4/j6BxcEtXpBOAgHTiccf98h//zvL8n4uRhB1DkKbePt3v6/wIQj9Qj+WWXncI7dNgMg HIQDFxaOl8b7AsLxyTmQsY1//3Iy4eAcIByEA/cRjtdmu/GU//nS5HPu4c3fG5/6tOnX34N5 DgQfvu36+vrBWy1obO3d1BYOzgHCodMo7iAcjSTBaweOv8z1jRPsCkfjU7s73M2X/DoFRBvs WH01nKPx3/FNEeHgHCj8IhAOGQ4cIByRbhC/HvSvWYe4cLz9VMAn9l/Q/DwRRJvqcIYjJxyN vSWEg3NAhoNw4LYZjrff21jz35GlGBcOGY7yDEdbI9LC0ZtKYRsgHIQD9xGOD87xsdPo2YRD H468c3zuNHo24WAbIByEA3cQjq5RKgf24Xi3ySiVOuf48d8lwlHVh4NtgHAQDtxHOF67QTQm /op04IgPRYkPe4nYhoYp6Rwvdfezp0WvSSRGqXzaxDZAOIxSwd2Ew9TmAJ6gIITDwxeEwz0P gHAQDhAOwgGAcBAOD18QDvc8AMLh4QsAAOEgHAAAEA7CQThQ9TVrfPdU1LFPvV//ZvdT5yn8 z02//uXuKe/usHHK7l4QDsKBM37N2n/31F5/OV7/49dj8ZzX61MxGv7RPuUua4nf3gDhIBwg HE+/HG/r/1PbfGbheC35J6WInPJrdodwgHCYaRR3Fo7XdHfjSzu+KfiAaCQJ3jZRXcWItO7l 2fv2QXM/93cfssGKCmZodp/mkVvx0w4JB2Z8vwgH4cBhwtFumLdsxju4afzZsTVfSaTT9e2d HygcXX4Q3GHaYNoW2CUcu5s+FY9wgHCcRTi+X9j9OWLTbTalfxruvqcP5gkGW4XgSQVNIicc 85q04ANxpEjzUiafMhyvKlOS4YjfWp4AHnpdnyIcMhxY/Upl/CPtlmYkdR9JBiQKH+/VmCj8 SV6pxHdYfjslhKP3HpDhgAwH4cBzhaMw1XEq4ZjR5t1DOLpenEX+qNMoCIdRKiAcS/twrBeO xkQR6d/o9xaO3qvcO9yXcKD8SUg4CAcWfc3af9zdtB00SqXhB7WFbzR7u7utuihBJco9ZIMV 1fXIDgpH8HV7ZGKPkVOAJyHhIBzArRJIAAgH4QAAgHAQDsIBAADhIBwAABAOwjEeAACAcBAO AAAIB+EAAIBwEA7CAQAA4SAcAAAQDsIBAADhIByEAwAAwkE4AAAgHITD/QUAAOEgHAAAEA7C AQAA4SAchAMAAMJBOAAAIByEAwAAwkE4CAcAAISDcAAAQDgIhxBCCCEuEoRDCCGEEIRDCCGE EIRDCCGEEIJwCCGEEIJwCCGEEIJwCCGEEEIQDiGEEEIQDiGEEEIIwiGEEEIIwiGEEEIIwiGE EEIIQTiEEEIIQTiEEEIIQTiEEEIIIQiHEEIIIS4kHAAAABMhHAAAgHAAAADCAQAAQDgAAADh AAAAhAMAAIBwAAAAwgEAAEA4AAAA4QAAAIQDAACAcAAAAMIBAAAIBwAAAOEAAABXEY7/AL5e zeHXJ3/MAAAAAElFTkSuQmCC --------------020306050500030101010109-- --khn8dqftHUkRBut5swindfsLrX6DRfhNp Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTJ4qTAAoJEJrBFpNRJZKfMdwQAJcanCzyz1uuIkgyfoM0jyFh UjgvenHZ6rKNyYxixMvjM3BXyxlPTpTJte7dWrwQTpzZ4iXuNgl2f1ZazqA2P9f0 R/okHnO4XoW+Bl6YO1D32lfpF8taZKvfy7lR5ovjY9sTiYGvW/wLfrI3PorpuNsd SjgYzQr4n4x3aiw9oPAelIY/94gNHbCBC/+QthDVRKB1bMGNsim9uX+z932odNI6 qvW1PSLAQM2XV8pkwtwSM4/p39Mjn4cXqGOELLBKPRpNIWk6rBQC4c1Fo9xYzok9 ttAZANl7J8cTr6bD8Okzu7GmBaIFYW4sTSS1cGvfxt54LQQOIFvJH35a//jNdD8Z OF0SMvkO5wf9Hsk2AdQYtGdog5QabkXkHFHgRYsUZTcI6qjdM/8Jrp856AA0aw49 j7g5DsSqPcFUUqG7J9dUDKbeHRv80eYgW5kKAocxpwM4rgy+D8OtDqDZ5bNnjiDC zR/jLjQqcYcPbABaj2OOEf2f3ZrxqKualGzLxOR1VMhprqWPzwOnWiY87jWaSgsu xLoS9XlahKXA8O/BqvZb381fcxl72eJmO6+y2IMLVQl/PgXRviM90esiRf3kZZeV ExQE4f5zd34xRPgKpgcxKCZbs6FL1kkMBSgXP9ohW+NhyWtlmKrwEIPOHA/KlBfe sW8ifg80nd4QWSMDzXpa =od2q -----END PGP SIGNATURE----- --khn8dqftHUkRBut5swindfsLrX6DRfhNp-- From owner-freebsd-doc@FreeBSD.ORG Tue Mar 18 00:04:21 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D9C0A29; Tue, 18 Mar 2014 00:04:21 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id 64632C5F; Tue, 18 Mar 2014 00:04:20 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allan.jude@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 122D14F492; Tue, 18 Mar 2014 00:04:19 +0000 (UTC) Message-ID: <53278D87.6040807@allanjude.com> Date: Mon, 17 Mar 2014 20:04:23 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/187683: [patch] Handbook section on bsdinstall is missing details of ZFS feature added in 10.0 References: <201403172350.s2HNo0cI049650@freefall.freebsd.org> In-Reply-To: <201403172350.s2HNo0cI049650@freefall.freebsd.org> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XnmJ1QLt5WT2sxbLQ6UKVOGqlKv1x2HbH" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 00:04:21 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --XnmJ1QLt5WT2sxbLQ6UKVOGqlKv1x2HbH Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-03-17 19:50, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `docs/187683'. > The individual assigned to look at your > report is: freebsd-doc.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D187683 >=20 >> Category: docs >> Responsible: freebsd-doc >> Synopsis: [patch] Handbook section on bsdinstall is missing deta= ils of ZFS feature added in 10.0 >> Arrival-Date: Mon Mar 17 23:50:00 UTC 2014 Well that didn't work... http://www.allanjude.com/bsd/bsdinstall-zfs_images.tar --=20 Allan Jude --XnmJ1QLt5WT2sxbLQ6UKVOGqlKv1x2HbH Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTJ42KAAoJEJrBFpNRJZKflCIP/3be7tP9pIj6/iG1IbZz/TqB 7VbFn+kCDZoZn5M44PxnYZ9Sz/V3d8ARpt9zcOVaBs1glcX8Zbec/ARZS5owuvcN L9y5INBkExr7Xzr1PnJJgpdQgmq4iYbpH1T9Qkusk4PYYAaj2lSltOahek7HPwhr D8ruznnf0rXRy+VEDcawFAH9ZQJAGmdqAXBAazVNoUbirrL/YiAqhzqoh58H0TL2 riYdCn46oo2jKwv5CUTvY0wAmY8Ce6mDpeuqfNmngeD0mqfZ/W7FtELZNRjOw1uV K1f7NVwdl20Py6Q3J9Hw6IuJmf5qitli7iEfwGBuMf0TZgLhZ2UXEchq4mBCqGJb wEr6UflaE2JWrVn6ReSojNnaRiid9u56nSHMSHmEEgxOs2UT/MKkjz0aMeIDp0SY n2NmI9RGgdSNWZMONYZuYTCGd/6gLBmZgjrF4cFRuujMVQ8TeeaMRhU7t3dL1RxI NmzKjI+zQWRtIYrA/AR9Kbf4PqvkM2BS2sAt0UfYMF9yQpywMomCKVRP4S2Wxk1l z5j2RSx1uFRBiv5ZbXVwU7uuiOMIK1gGwiwxNnEkN70nuaRdgCwZT13r4YReCFEy A8vPxHU/6uFDa155ybyUoEafYq1iez2MhpozA725C3dM8MTOZrgGP2b8+3cPjYrM R+VH4vgyfjVYcBFB7Mga =X8eL -----END PGP SIGNATURE----- --XnmJ1QLt5WT2sxbLQ6UKVOGqlKv1x2HbH-- From owner-freebsd-doc@FreeBSD.ORG Tue Mar 18 00:10:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A18DABA7 for ; Tue, 18 Mar 2014 00:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7395FC96 for ; Tue, 18 Mar 2014 00:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2I0A0Ia062273 for ; Tue, 18 Mar 2014 00:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2I0A02M062272; Tue, 18 Mar 2014 00:10:00 GMT (envelope-from gnats) Date: Tue, 18 Mar 2014 00:10:00 GMT Message-Id: <201403180010.s2I0A02M062272@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Allan Jude Subject: Re: docs/187683: [patch] Handbook section on bsdinstall is missing details of ZFS feature added in 10.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Allan Jude List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 00:10:01 -0000 The following reply was made to PR docs/187683; it has been noted by GNATS. From: Allan Jude To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/187683: [patch] Handbook section on bsdinstall is missing details of ZFS feature added in 10.0 Date: Mon, 17 Mar 2014 20:04:23 -0400 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --XnmJ1QLt5WT2sxbLQ6UKVOGqlKv1x2HbH Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-03-17 19:50, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `docs/187683'. > The individual assigned to look at your > report is: freebsd-doc.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D187683 >=20 >> Category: docs >> Responsible: freebsd-doc >> Synopsis: [patch] Handbook section on bsdinstall is missing deta= ils of ZFS feature added in 10.0 >> Arrival-Date: Mon Mar 17 23:50:00 UTC 2014 Well that didn't work... http://www.allanjude.com/bsd/bsdinstall-zfs_images.tar --=20 Allan Jude --XnmJ1QLt5WT2sxbLQ6UKVOGqlKv1x2HbH Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTJ42KAAoJEJrBFpNRJZKflCIP/3be7tP9pIj6/iG1IbZz/TqB 7VbFn+kCDZoZn5M44PxnYZ9Sz/V3d8ARpt9zcOVaBs1glcX8Zbec/ARZS5owuvcN L9y5INBkExr7Xzr1PnJJgpdQgmq4iYbpH1T9Qkusk4PYYAaj2lSltOahek7HPwhr D8ruznnf0rXRy+VEDcawFAH9ZQJAGmdqAXBAazVNoUbirrL/YiAqhzqoh58H0TL2 riYdCn46oo2jKwv5CUTvY0wAmY8Ce6mDpeuqfNmngeD0mqfZ/W7FtELZNRjOw1uV K1f7NVwdl20Py6Q3J9Hw6IuJmf5qitli7iEfwGBuMf0TZgLhZ2UXEchq4mBCqGJb wEr6UflaE2JWrVn6ReSojNnaRiid9u56nSHMSHmEEgxOs2UT/MKkjz0aMeIDp0SY n2NmI9RGgdSNWZMONYZuYTCGd/6gLBmZgjrF4cFRuujMVQ8TeeaMRhU7t3dL1RxI NmzKjI+zQWRtIYrA/AR9Kbf4PqvkM2BS2sAt0UfYMF9yQpywMomCKVRP4S2Wxk1l z5j2RSx1uFRBiv5ZbXVwU7uuiOMIK1gGwiwxNnEkN70nuaRdgCwZT13r4YReCFEy A8vPxHU/6uFDa155ybyUoEafYq1iez2MhpozA725C3dM8MTOZrgGP2b8+3cPjYrM R+VH4vgyfjVYcBFB7Mga =X8eL -----END PGP SIGNATURE----- --XnmJ1QLt5WT2sxbLQ6UKVOGqlKv1x2HbH-- From owner-freebsd-doc@FreeBSD.ORG Tue Mar 18 00:20:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8A78D62 for ; Tue, 18 Mar 2014 00:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7FB38D62 for ; Tue, 18 Mar 2014 00:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2I0K0JY065954 for ; Tue, 18 Mar 2014 00:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2I0K0rO065953; Tue, 18 Mar 2014 00:20:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Mar 2014 00:20:00 GMT Resent-Message-Id: <201403180020.s2I0K0rO065953@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Allan Jude Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 719B3BFB for ; Tue, 18 Mar 2014 00:11:28 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D9B1D0C for ; Tue, 18 Mar 2014 00:11:28 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2I0BSEL070996 for ; Tue, 18 Mar 2014 00:11:28 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2I0BS6u070992; Tue, 18 Mar 2014 00:11:28 GMT (envelope-from nobody) Message-Id: <201403180011.s2I0BS6u070992@cgiserv.freebsd.org> Date: Tue, 18 Mar 2014 00:11:28 GMT From: Allan Jude To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187686: [patch] Update disks section of handbook for 9.x/10.x X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 00:20:00 -0000 >Number: 187686 >Category: docs >Synopsis: [patch] Update disks section of handbook for 9.x/10.x >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Mar 18 00:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Allan Jude >Release: 9.2-RELEASE >Organization: ScaleEngine Inc. >Environment: FreeBSD Trooper.HML3.ScaleEngine.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The disks section of the handbook is full of examples based on the FreeBSD 8.x and prior disk laying (MBR/BSD with separate partitions for / /tmp /usr /var) and the old device names (ad4 instead of ada1) Updated the docs for all of that, and also added a lot of markup: acronym, replaceable, changed some incorrect literal to filename (for device names), etc. Added 'mfi' to the RAID list since it is the most popular controller now Updated the USB instructions to mention USB 3.0 and xhci Added some missing xml:id to allow cross referencing the GELI section from the installer section etc. >How-To-Repeat: >Fix: Patch Attached Patch attached with submission follows: Index: head/en_US.ISO8859-1/books/handbook/disks/chapter.xml =================================================================== --- head/en_US.ISO8859-1/books/handbook/disks/chapter.xml (revision 44203) +++ head/en_US.ISO8859-1/books/handbook/disks/chapter.xml (working copy) @@ -14,9 +14,9 @@ Synopsis - This chapter covers the use of disks in &os;. This includes - memory-backed disks, network-attached disks, standard SCSI/IDE - storage devices, and devices using the USB interface. + This chapter covers the configuration and use of disks in &os;. This includes + memory-backed disks, network-attached disks, standard SCSI/IDE and SATA + storage devices, and removable devices using the USB interface. After reading this chapter, you will know: @@ -23,7 +23,7 @@ The terminology &os; uses to describe the organization - of data on a physical disk. + of data on a physical or logical disk.
@@ -32,7 +32,7 @@ - How to configure &os; to use USB storage devices. + How to configure &os; to use USB storage devices. @@ -93,75 +93,76 @@ - IDE hard drives - ad or - ada + IDE hard drives + ad or + ada - IDE CD-ROM drives - acd or - cd + IDE CD-ROM drives + acd or + cd - SATA hard drives - ad or - ada + SATA hard drives + ad or + ada - SATA CD-ROM drives - acd or - cd + SATA CD-ROM drives + acd or + cd - SCSI hard drives and USB Mass storage + SCSI hard drives and USB Mass storage devices - da + da - SCSI CD-ROM drives - cd + SCSI CD-ROM drives + cd Assorted non-standard CD-ROM drives - mcd for Mitsumi CD-ROM and - scd for Sony CD-ROM devices + mcd for Mitsumi CD-ROM and + scd for Sony CD-ROM devices Floppy drives - fd + fd - SCSI tape drives - sa + SCSI tape drives + sa - IDE tape drives - ast + IDE tape drives + ast Flash drives - fla for &diskonchip; Flash + fla for &diskonchip; Flash device RAID drives - aacd for &adaptec; AdvancedRAID, - mlxd and mlyd + aacd for &adaptec; AdvancedRAID, + mlxd and mlyd for &mylex;, - amrd for AMI &megaraid;, - idad for Compaq Smart RAID, - twed for &tm.3ware; RAID. + amrd for AMI &megaraid;, + idad for Compaq Smart RAID, + twed for &tm.3ware; RAID, + mfid for &lsilogic; &megaraid;. @@ -402,7 +403,7 @@ - USB Storage Devices + <acronym>USB</acronym> Storage Devices @@ -420,52 +421,44 @@ disks - Many external storage solutions, such as hard drives, USB + Many external storage solutions, such as hard drives, USB thumbdrives, and CD/DVD burners, use the Universal Serial Bus - (USB). &os; provides support for these devices. + (USB). &os; provides support for these devices. Configuration - The USB mass storage devices driver, &man.umass.4;, is + The USB mass storage devices driver, &man.umass.4;, is built into the GENERIC kernel and - provides support for USB storage devices. For a custom + provides support for USB storage devices. For a custom kernel, be sure that the following lines are present in the kernel configuration file: - device scbus -device da -device pass -device uhci -device ohci -device ehci -device usb -device umass + device scbus # SCSI bus (required for ATA/SCSI) +device da # Direct Access (disks) +device cd # CD +device pass # Passthrough device (direct ATA/SCSI access) +device uhci # UHCI PCI->USB interface +device ohci # OHCI PCI->USB interface +device ehci # EHCI PCI->USB interface (USB 2.0) +device xhci # XHCI PCI->USB interface (USB 3.0) +device usb # USB Bus (required) +device umass # Disks/Mass storage - Requires scbus and da - Since the &man.umass.4; driver uses the SCSI subsystem to - access the USB storage devices, any USB device will be seen as - a SCSI device by the system. Depending on the USB chipset on + Since the &man.umass.4; driver uses the SCSI subsystem to + access the USB storage devices, any USB device will be seen as + a SCSI device by the system. Depending on the USB chipset on the motherboard, device uhci or - device ohci is used to provide USB 1.X - support. Support for USB 2.0 controllers is provided by - device ehci. - - - If the USB device is a CD or DVD burner, &man.cd.4;, - must be added to the kernel via the line: - - device cd - - Since the burner is seen as a SCSI drive, the driver - &man.atapicam.4; should not be used in the kernel - configuration. - + device ohci is used to provide USB 1.X + support. Support for USB 2.0 controllers is provided by + device ehci and USB 3.0 + by xhci. Testing the Configuration - To test the USB configuration, plug in the USB device. In + To test the USB configuration, plug in the USB device. In the system message buffer, &man.dmesg.8;, the drive should appear as something like: @@ -479,8 +472,8 @@ The brand, device node (da0), and other details will differ according to the device. - Since the USB device is seen as a SCSI one, - camcontrol can be used to list the USB + Since the USB device is seen as a SCSI device, + camcontrol can be used to list the USB storage devices attached to the system: &prompt.root; camcontrol devlist @@ -488,7 +481,7 @@ If the drive comes with a file system, it can be mounted. Refer to for - instructions on how to format and create partitions on the USB + instructions on how to format and create partitions on the USB drive. @@ -511,24 +504,24 @@ add path 'da*' mode 0660 group operator - If SCSI disks are installed in the system, change + If SCSI disks are installed in the system, change the second line as follows: add path 'da[3-9]*' mode 0660 group operator - This will exclude the first three SCSI disks - (da0 to - da2)from belonging to the + This will exclude the first three SCSI disks + (da0 through + da2) from belonging to the operator group. - Next, enable the &man.devfs.rules.5; ruleset in + Enable the &man.devfs.rules.5; ruleset in /etc/rc.conf: devfs_system_ruleset="localrules" - Next, instruct the running kernel to allow regular users + Instruct the running kernel to allow regular users to mount file systems. The easiest way is to add the following line to /etc/sysctl.conf: @@ -551,7 +544,7 @@ &prompt.root; mkdir /mnt/username &prompt.root; chown username:usergroup /mnt/username - Suppose a USB thumbdrive is plugged in, and a device + Suppose a USB thumbdrive is plugged in, and a device /dev/da0s1 appears. If the device is preformatted with a FAT file system, it can be mounted using: @@ -646,13 +639,13 @@ Which tool to use to burn the CD depends on whether the - CD burner is ATAPI or something else. ATAPI CD burners use + CD burner is ATAPI or something else. ATAPI CD burners use burncd which is part of the base system. - SCSI and USB CD burners should use cdrecord + SCSI and USB CD burners should use cdrecord from the sysutils/cdrtools port. It is also possible to use cdrecord and other - tools for SCSI drives on ATAPI hardware with the - ATAPI/CAM module. + tools for SCSI drives on ATAPI hardware with the + ATAPI/CAM module. For CD burning software with a graphical user interface, consider X-CD-Roast or @@ -661,7 +654,7 @@ sysutils/k3b ports. X-CD-Roast and K3b require the - ATAPI/CAM module with ATAPI + ATAPI/CAM module with ATAPI hardware. @@ -755,7 +748,7 @@ CD-ROMs burning - For an ATAPI CD burner, burncd can be + For an ATAPI CD burner, burncd can be used to burn an ISO image onto a CD. burncd is part of the base system, installed as /usr/sbin/burncd. Usage is @@ -774,7 +767,7 @@ <application>cdrecord</application> - For systems without an ATAPI CD burner, + For systems without an ATAPI CD burner, cdrecord can be used to burn CDs. cdrecord is not part of the base system and must be installed from either the @@ -838,11 +831,11 @@ To duplicate an audio CD, extract the audio data from the CD to a series of files, then write these files to a blank CD. - The process is slightly different for ATAPI and SCSI + The process is slightly different for ATAPI and SCSI drives. - SCSI Drives + <acronym>SCSI</acronym> Drives Use cdda2wav to extract the @@ -864,12 +857,12 @@ - ATAPI Drives + <acronym>ATAPI</acronym> Drives With the help of the - ATAPI/CAM module, - cdda2wav can also be used on ATAPI + ATAPI/CAM module, + cdda2wav can also be used on ATAPI drives. This tool is usually a better choice for most of users, as it supports jitter correction and endianness, than the method proposed below. @@ -876,7 +869,7 @@ - The ATAPI CD driver makes each track available as + The ATAPI CD driver makes each track available as /dev/acddtnn, where d is the drive number, and nn is the track number @@ -941,7 +934,7 @@ will generate an error about Incorrect super block, and will fail to mount the CD. The CD - does not use the UFS file system, so + does not use the UFS file system, so attempts to mount it as such will fail. Instead, tell &man.mount.8; that the file system is of type ISO9660 by specifying @@ -950,7 +943,7 @@ under /mnt, use: - &prompt.root; mount -t cd9660 /dev/cd0 /mnt + &prompt.root; mount -t cd9660 /dev/cd0 /mnt Replace /dev/cd0 with the device name for the CD device. Also, @@ -989,7 +982,7 @@ It can take a couple of seconds for a CD-ROM drive to realize that a media is present, so be patient. - Sometimes, a SCSI CD-ROM may be missed because it did not + Sometimes, a SCSI CD-ROM may be missed because it did not have enough time to answer the bus reset. To resolve this, add the following option to the kernel configuration and rebuild the @@ -997,7 +990,7 @@ options SCSI_DELAY=15000 - This tells the SCSI bus to pause 15 seconds during boot, + This tells the SCSI bus to pause 15 seconds during boot, to give the CD-ROM drive every possible chance to answer the bus reset. @@ -1026,7 +1019,7 @@ - Using the ATAPI/CAM Driver + Using the <acronym>ATAPI</acronym>/<acronym>CAM</acronym> Driver @@ -1041,11 +1034,11 @@ CD burner - ATAPI/CAM driver + ATAPI/CAM driver - This driver allows ATAPI devices, such as CD/DVD drives, - to be accessed through the SCSI subsystem, and so allows the + This driver allows ATAPI devices, such as CD/DVD drives, + to be accessed through the SCSI subsystem, and so allows the use of applications like sysutils/cdrdao or &man.cdrecord.1;. @@ -1092,17 +1085,17 @@ &prompt.root; mount -t cd9660 /dev/cd0 /mnt As root, run the - following command to get the SCSI address of the + following command to get the SCSI address of the burner: &prompt.root; camcontrol devlist <MATSHITA CDRW/DVD UJDA740 1.00> at scbus1 target 0 lun 0 (pass0,cd0) - In this example, 1,0,0 is the SCSI - address to use with &man.cdrecord.1; and other SCSI + In this example, 1,0,0 is the SCSI + address to use with &man.cdrecord.1; and other SCSI applications. - For more information about ATAPI/CAM and SCSI system, + For more information about ATAPI/CAM and SCSI system, refer to &man.atapicam.4; and &man.cam.4;. @@ -1205,14 +1198,14 @@ sysutils/dvd+rw-tools utilities which support all DVD media types.
- These tools use the SCSI subsystem to access the devices, - therefore ATAPI/CAM support + These tools use the SCSI subsystem to access the devices, + therefore ATAPI/CAM support must be loaded or statically compiled into the kernel. This - support is not needed if the burner uses the USB interface. + support is not needed if the burner uses the USB interface. Refer to for more details - on USB device configuration. + on USB device configuration. - DMA access must also be enabled for ATAPI devices, by + DMA access must also be enabled for ATAPI devices, by adding the following line to /boot/loader.conf: @@ -1516,8 +1509,8 @@ Configuration - DVD-RAM writers can use either a SCSI or ATAPI - interface. For ATAPI devices, DMA access has to be + DVD-RAM writers can use either a SCSI or ATAPI + interface. For ATAPI devices, DMA access has to be enabled by adding the following line to /boot/loader.conf: @@ -1613,7 +1606,7 @@ The floppy is now ready to be high-level formatted with - a file system. The floppy's file system can be either UFS + a file system. The floppy's file system can be either UFS or FAT, where FAT is generally a better choice for floppies. @@ -1638,8 +1631,8 @@ to be used in a modern system. Modern backup systems tend to use off site combined with local removable disk drive technologies. Still, &os; will support any tape drive that - uses SCSI, such as LTO and older devices such as DAT. There is - limited support for SATA and USB tape drives. + uses SCSI, such as LTO and older devices such as DAT. There is + limited support for SATA and USB tape drives. Serial Access with &man.sa.4; @@ -1777,7 +1770,7 @@ Typically, a mix of backup techniques is used. For example, one could create a schedule to automate a weekly, full system backup that is stored off-site and to supplement this - backup with hourly ZFS snapshots. In addition, one could make a + backup with hourly ZFS snapshots. In addition, one could make a manual backup of individual directories or files before making file edits or deletions. @@ -1857,7 +1850,7 @@ This example sets RSH in order to write the - the backup to a tape drive on a remote system over a + backup to a tape drive on a remote system over a SSH connection: @@ -1896,7 +1889,7 @@ same directory that is being backed up.
- Backing Up the Current Directory With + <title>Backing Up the Current Directory with <command>tar</command> &prompt.root; tar czvf /tmp/mybackup.tgz . @@ -1910,7 +1903,7 @@ backup to restore.
- Restoring Up the Current Directory With + <title>Restoring Up the Current Directory with <command>tar</command> &prompt.root; tar xzvf /tmp/mybackup.tgz @@ -1968,7 +1961,7 @@ examples would be:
- Backing Up the Current Directory With + <title>Backing Up the Current Directory with <command>pax</command> &prompt.root; pax -wf /tmp/mybackup.pax . @@ -2158,7 +2151,7 @@ While &man.mdconfig.8; is useful, it takes several command lines to create a file-backed file system. &os; also comes with &man.mdmfs.8; which automatically configures a - &man.md.4; disk using &man.mdconfig.8;, puts a UFS file system + &man.md.4; disk using &man.mdconfig.8;, puts a UFS file system on it using &man.newfs.8;, and mounts it using &man.mount.8;. For example, to create and mount the same file system image as above, type the following: @@ -2273,11 +2266,11 @@ snapshots - &os; offers a feature in conjunction with + &os; offers a feature in conjunction with UFS Soft Updates: file system snapshots. - UFS snapshots allow a user to create images of specified + UFS snapshots allow a user to create images of specified file systems, and treat them as a file. Snapshot files must be created in the file system that the action is performed on, and a user may create no more than 20 snapshots per file system. @@ -2285,8 +2278,8 @@ persistent across unmount and remount operations along with system reboots. When a snapshot is no longer required, it can be removed using &man.rm.1;. While snapshots may be removed in - any order, all the used space may not be acquired because - another snapshot will possibly claim some of the released + any order, all the used space may not be reclaimed because + another snapshot will possibly still be using some of the blocks. The un-alterable file flag is set @@ -2656,7 +2649,7 @@ systems. No cleartext ever touches the hard drive's platter. - + Disk Encryption with <application>gbde</application> @@ -2702,14 +2695,13 @@ Install the new drive to the system as explained in . For the purposes of this example, a new hard drive partition has been - added as /dev/ad4s1c and - /dev/ad0s1* + added as /dev/ada1p1 and + /dev/ada0* represents the existing standard &os; partitions. - &prompt.root; ls /dev/ad* -/dev/ad0 /dev/ad0s1b /dev/ad0s1e /dev/ad4s1 -/dev/ad0s1 /dev/ad0s1c /dev/ad0s1f /dev/ad4s1c -/dev/ad0s1a /dev/ad0s1d /dev/ad4 + &prompt.root; ls /dev/ada* +/dev/ada0 /dev/ada0p2 /dev/ada1 +/dev/ada0p1 /dev/ada0p3 /dev/ada1p1 @@ -2737,7 +2729,7 @@ initialized before it can be used. This initialization needs to be performed only once: - &prompt.root; gbde init /dev/ad4s1c -i -L /etc/gbde/ad4s1c.lock + &prompt.root; gbde init /dev/ada1p1 -i -L /etc/gbde/ada1p1.lock &man.gbde.8; will open the default editor, in order to set various configuration options in a template. For @@ -2767,7 +2759,7 @@ gbde initcreates a lock file for the gbde partition. In this example, it is stored as - /etc/gbde/ad4s1c.lock. + /etc/gbde/ada1p1.lock. gbde lock files must end in .lock in order to be correctly detected by the /etc/rc.d/gbde start up @@ -2791,7 +2783,7 @@ Attach the Encrypted Partition to the Kernel - &prompt.root; gbde attach /dev/ad4s1c -l /etc/gbde/ad4s1c.lock + &prompt.root; gbde attach /dev/ada1p1 -l /etc/gbde/ada1p1.lock This command will prompt to input the passphrase that was selected during the initialization of the @@ -2800,10 +2792,9 @@ /dev as /dev/device_name.bde: - &prompt.root; ls /dev/ad* -/dev/ad0 /dev/ad0s1b /dev/ad0s1e /dev/ad4s1 -/dev/ad0s1 /dev/ad0s1c /dev/ad0s1f /dev/ad4s1c -/dev/ad0s1a /dev/ad0s1d /dev/ad4 /dev/ad4s1c.bde + &prompt.root; ls /dev/ada* +/dev/ada0 /dev/ada0p2 /dev/ada1 /dev/ada1p1.bde +/dev/ada0p1 /dev/ada0p3 /dev/ada1p1 @@ -2815,7 +2806,7 @@ &man.newfs.8;. This example creates a UFS2 file system with soft updates enabled. - &prompt.root; newfs -U /dev/ad4s1c.bde + &prompt.root; newfs -U /dev/ada1p1.bde &man.newfs.8; must be performed on an attached @@ -2836,7 +2827,7 @@ Mount the encrypted file system: - &prompt.root; mount /dev/ad4s1c.bde /private + &prompt.root; mount /dev/ada1p1.bde /private @@ -2848,12 +2839,9 @@ &prompt.user; df -H Filesystem Size Used Avail Capacity Mounted on -/dev/ad0s1a 1037M 72M 883M 8% / -/devfs 1.0K 1.0K 0B 100% /dev -/dev/ad0s1f 8.1G 55K 7.5G 0% /home -/dev/ad0s1e 1037M 1.1M 953M 0% /tmp -/dev/ad0s1d 6.1G 1.9G 3.7G 35% /usr -/dev/ad4s1c.bde 150G 4.1K 138G 0% /private +/dev/ada0p2 1037M 72M 883M 8% / +/devfs 1.0K 1.0K 0B 100% /dev +/dev/ada1p1.bde 150G 4.1K 138G 0% /private
@@ -2872,7 +2860,7 @@ Attach the <command>gbde</command> Partition to the Kernel - &prompt.root; gbde attach /dev/ad4s1c -l /etc/gbde/ad4s1c.lock + &prompt.root; gbde attach /dev/ada1p1 -l /etc/gbde/ada1p1.lock This command will prompt for the passphrase that was selected during initialization of the encrypted @@ -2887,13 +2875,13 @@ the file systems must be checked for errors by running &man.fsck.8; manually before mounting: - &prompt.root; fsck -p -t ffs /dev/ad4s1c.bde + &prompt.root; fsck -p -t ffs /dev/ada1p1.bde Mount the Encrypted File System - &prompt.root; mount /dev/ad4s1c.bde /private + &prompt.root; mount /dev/ada1p1.bde /private The encrypted file system is now available for use. @@ -2915,7 +2903,7 @@ &man.rc.conf.5;: gbde_autoattach_all="YES" -gbde_devices="ad4s1c" +gbde_devices="ada1p1" gbde_lockdir="/etc/gbde" This requires that the @@ -2950,12 +2938,12 @@ probing for devices. To detach the encrypted device used in the example, use the following command: - &prompt.root; gbde detach /dev/ad4s1c + &prompt.root; gbde detach /dev/ada1p1 - + Disk Encryption with <command>geli</command> @@ -3116,11 +3104,8 @@ &prompt.root; df -H Filesystem Size Used Avail Capacity Mounted on -/dev/ad0s1a 248M 89M 139M 38% / +/dev/ada0p2 248M 89M 139M 38% / /devfs 1.0K 1.0K 0B 100% /dev -/dev/ad0s1f 7.7G 2.3G 4.9G 32% /usr -/dev/ad0s1d 989M 1.5M 909M 0% /tmp -/dev/ad0s1e 3.9G 1.3G 2.3G 35% /var /dev/da2.eli 150G 4.1K 138G 0% /private @@ -3198,7 +3183,7 @@ passwords stay in physical memory, these passwords will not be written to disk and be cleared after a reboot. If &os; starts swapping out memory pages to free space for other applications, - the passwords may be written to the disk platters unencrypted. + the passwords may be written to disk unencrypted. Encrypting swap space can be a solution for this scenario. @@ -3209,7 +3194,7 @@ For the remainder of this section, - ad0s1b will be the swap + ada0p3 will be the swap partition. @@ -3218,7 +3203,7 @@ overwrite the current swap partition with random garbage, execute the following command: - &prompt.root; dd if=/dev/random of=/dev/ad0s1b bs=1m + &prompt.root; dd if=/dev/random of=/dev/ada0p3 bs=1m Swap Encryption with &man.gbde.8; @@ -3228,7 +3213,7 @@ line: # Device Mountpoint FStype Options Dump Pass# -/dev/ad0s1b.bde none swap sw 0 0 +/dev/ada0p3.bde none swap sw 0 0 @@ -3241,11 +3226,11 @@ line: # Device Mountpoint FStype Options Dump Pass# -/dev/ad0s1b.eli none swap sw 0 0 +/dev/ada0p3.eli none swap sw 0 0 &man.geli.8; uses the AES algorithm with a key length of 128 bit by default. These defaults can - be altered by using geli_swap_flags in + be altered by using geli_swap_flags in /etc/rc.conf. The following line tells the encswap rc.d script to create &man.geli.8; swap partitions using the Blowfish algorithm with @@ -3270,13 +3255,13 @@ &prompt.user; swapinfo Device 1K-blocks Used Avail Capacity -/dev/ad0s1b.bde 542720 0 542720 0% +/dev/ada0p3.bde 542720 0 542720 0% If &man.geli.8; is being used: &prompt.user; swapinfo Device 1K-blocks Used Avail Capacity -/dev/ad0s1b.eli 542720 0 542720 0% +/dev/ada0p3.eli 542720 0 542720 0% @@ -3897,9 +3882,9 @@ - For this example, a standard UFS file system was used. + For this example, a standard UFS file system was used. To reduce the time needed for recovery, a journal-enabled - UFS or ZFS file system can be used instead. + UFS or ZFS file system can be used instead. More detailed information with additional examples can Index: head/share/xml/trademarks.ent =================================================================== --- head/share/xml/trademarks.ent (revision 44203) +++ head/share/xml/trademarks.ent (working copy) @@ -183,6 +183,7 @@ LSI Logic, AcceleRAID, eXtremeRAID, MegaRAID and Mylex are trademarks or registered trademarks of LSI Logic Corp."> +LSI Logic Corp."> AcceleRAID"> MegaRAID"> Mylex"> >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Mar 18 17:01:34 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27D9099C for ; Tue, 18 Mar 2014 17:01:34 +0000 (UTC) Received: from col0-omc1-s5.col0.hotmail.com (col0-omc1-s5.col0.hotmail.com [65.55.34.15]) by mx1.freebsd.org (Postfix) with ESMTP id 0968BE8A for ; Tue, 18 Mar 2014 17:01:33 +0000 (UTC) Received: from COL128-W64 ([65.55.34.8]) by col0-omc1-s5.col0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Tue, 18 Mar 2014 10:00:27 -0700 X-TMN: [s056opkHU8lc6NIBQkcsEuBPmz+vTULM] X-Originating-Email: [assembler914@outlook.com] Message-ID: From: velocidade da luz To: "freebsd-doc@freebsd.org" Subject: This may help freebsd.doc? Date: Tue, 18 Mar 2014 20:00:27 +0300 Importance: Normal MIME-Version: 1.0 X-OriginalArrivalTime: 18 Mar 2014 17:00:27.0495 (UTC) FILETIME=[8FC60F70:01CF42CB] Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 17:01:34 -0000 VXNpbmcgR29vZ2xlIFRyYW5zbGF0ZSwgSSBhbSBhY3RpdmUgb24gc2V2ZXJhbCBuYXRpb25hbGl0 eS1zcGVjaWZpYyBwbGF0Zm9ybXMsIGluY2x1ZGluZ3RoZSBEdXRjaCwgU3BhbmlzaCwgQnJhemls aWFuLCBGcmVuY2ggYW5kIFJ1c3NpYW4gVWJ1bnR1IGZvcnVtcywgYXMgd2VsbCBhcyB0aGUgSXRh bGlhbiBhbmQgaW50ZXJuYXRpb25hbE9wZW5NYW5kcml2YSBmb3J1bXMsIHdoZXJlIG15IHVzZXJu YW1lIGlzIGFzc2VtYmxlcjt0aGUgR2VybWFuIFVidW50dSBmb3J1bSwgd2hlcmUgbXkgdXNlcm5h bWUgaXMgYXNzZW1ibGV1cjt0aGUgU3BhbmlzaCBGcmVlQlNEIG1haWxpbmcgbGlzdCwgd2hlcmUg SSdtIGtub3duIGFzIEpvcmdlIEx1aXMgQ2FydmFsaG8gU2FudG9zO0ZVRy1CUiAodGhlIEJyYXpp bGlhbiBjaGFwdGVyIG9mIHRoZSBGcmVlQlNEIFVzZXJzJyBHcm91cCkuQSB1c2VyIG9mIHRoZSBH ZXJtYW4gVWJ1bnR1IGZvcnVtIHRvbGQgbWUgdGhhdCBteSB3cml0aW5nIHN0eWxlIGlzIHRoZSBz dHlsZSBoZSB3YW50ZWQgdG8gaGF2ZSBhbmQgdGhhdCBteSBzdHlsZSBpcyBlYXNpbHkgdHJhbnNs YXRlZCBieSBHb29nbGUgaW4gYWxsIG90aGVyIGxhbmd1YWdlcyDigIsuIE15IG5hdGl2ZSBsYW5n dWFnZSBpcyAoQnJhemlsaWFuKSBQb3J0dWd1ZXNlLiBNeSB3b3JraW5nIG1ldGhvZCBpcyB0byBj b3B5IGFuZCBwYXN0ZSB0aGUgdGV4dCBJIHdhbnQgdG8gdHJhbnNsYXRlIGludG8gR29vZ2xlIFRy YW5zbGF0ZTogaHR0cHM6Ly90cmFuc2xhdGUuZ29vZ2xlLmNvbS5ici8uDQpUaGlzIG1heSBoZWxw IGZyZWVic2QuZG9jP0lmIG5vdCwgd2hhdCBJIHNob3VsZCAgbGVhcm4gdG8gaGVscCBmcmVlYnNk LmRvYz8NCiAJCSAJICAgCQkgIA== From owner-freebsd-doc@FreeBSD.ORG Tue Mar 18 22:58:50 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35991996 for ; Tue, 18 Mar 2014 22:58:50 +0000 (UTC) Received: from web.genesi-group.it (host253-26-static.238-77-b.business.telecomitalia.it [77.238.26.253]) by mx1.freebsd.org (Postfix) with ESMTP id EB542BA0 for ; Tue, 18 Mar 2014 22:58:49 +0000 (UTC) Received: by web.genesi-group.it (Postfix, from userid 48) id B07A91805C0; Tue, 18 Mar 2014 23:51:41 +0100 (CET) To: doc@freebsd.org Subject: call me X-PHP-Originating-Script: 500:xmlrpc2RB1.php From: "Tisha Barrera" X-Priority: 3 (Normal) Message-Id: <20140318225141.B07A91805C0@web.genesi-group.it> Date: Tue, 18 Mar 2014 23:51:41 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Tisha Barrera List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 22:58:50 -0000 He he Large cock banging babe indoors [1]http://betexe.ru/tmp/install_4e25427bf092e/Slider-v1.5.0/files_15/fo rced/plugins/editors-xtd/slider/ava.html References 1. http://betexe.ru/tmp/install_4e25427bf092e/Slider-v1.5.0/files_15/forced/plugins/editors-xtd/slider/ava.html From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 07:28:35 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6F1C8B9 for ; Wed, 19 Mar 2014 07:28:35 +0000 (UTC) Received: from smtp.smtpout.orange.fr (smtp05.smtpout.orange.fr [80.12.242.127]) by mx1.freebsd.org (Postfix) with ESMTP id 7CE0CF45 for ; Wed, 19 Mar 2014 07:28:34 +0000 (UTC) Received: from [192.168.1.10] ([90.62.45.139]) by mwinf5d62 with ME id fKTE1n00V30AAb603KUSG5; Wed, 19 Mar 2014 08:28:27 +0100 Message-Id: <13CAEODH-Z8E-BESU-AZBQ-BLNKAHGHPQYX@orange.fr> Mime-Version: 1.0 From: =?iso-8859-1?Q?Soci=E9t=E9_de_Calcul_Math=E9matique_SA?= To: Doc Subject: Archimedes' Modern Works Date: Wed, 19 Mar 2014 08:28:27 +0100 X-Mailer: MBM 8.4.4-FR Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 07:28:35 -0000 Dear Colleagues, Archimedes died more than 2 200 years ago=2E Most people think that, even i= f he is considered to be one of the greatest geniuses of all time, everything he did, no matter how clever he was, has been long ago incorpora= ted by modern science, and that he belongs to the past=2E But this is not true at all, as this book shows=2E Two main ideas, namely w= hat we call "Archimedes Maps" and what he called himself "the Method", lead to completely new approaches to modern day scientific and social probl= ems, with far more powerful tools than the ones which were later produced b= y other means=2E Archimedes Maps are the key to many of our modern concerns: optimal allocat= ion of resources, monitoring and surveillance=2E Lost for more than 2 000 years, the "Weighing Method" provides - when corre= ctly understood - extremely efficient tools in various areas of mathematics= and physics: probability theory, optics, systems of polynomial equations, nondestructive= testing, and many others=2E In order to learn more about the book and see an order form, please see: http://scmsa=2Eeu/archives/SCM_AMW_order=2Ehtm In order to see the readers' comments, including the two reviews recently p= ublished by the Bulletin, Irish Math=2E Society, please see: http://scmsa=2Eeu/archives/AMW_Readers_comments=2Epdf The book can be bought on line=2E Thank you for your interest Prof=2E Bernard Beauzamy Chairman and CEO, Societe de Calcul Mathematique SA 111 Faubourg St Honor=E9 75008 Paris - France +33 1=2E42=2E89=2E08=2E91 assistante@scmsa=2Eeu **** If you do not wish to be kept informed about our activities, please send an email to assistante@scmsa=2Eeu subject: remove From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 13:00:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7845572 for ; Wed, 19 Mar 2014 13:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AB169202 for ; Wed, 19 Mar 2014 13:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JD00E6095624 for ; Wed, 19 Mar 2014 13:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JD00NQ095623; Wed, 19 Mar 2014 13:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Mar 2014 13:00:00 GMT Resent-Message-Id: <201403191300.s2JD00NQ095623@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dru Lavigne Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D38A3F9 for ; Wed, 19 Mar 2014 12:56:08 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2127F1E1 for ; Wed, 19 Mar 2014 12:56:08 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JCu7p1077178 for ; Wed, 19 Mar 2014 12:56:08 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2JCu7rs077177; Wed, 19 Mar 2014 12:56:07 GMT (envelope-from nobody) Message-Id: <201403191256.s2JCu7rs077177@cgiserv.freebsd.org> Date: Wed, 19 Mar 2014 12:56:07 GMT From: Dru Lavigne To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187733: line numbers in program listings cycle from 0-9 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 13:00:01 -0000 >Number: 187733 >Category: docs >Synopsis: line numbers in program listings cycle from 0-9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 19 13:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Dru Lavigne >Release: >Organization: >Environment: >Description: If a program listing is more than 9 lines long, the line numbers cycle back to 0-9. For example, the first program listing in http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-iscsi.html is 15 lines long, but the lines are numbered from 1-9, then from 0-5. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 15:02:37 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD684B7B; Wed, 19 Mar 2014 15:02:37 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6ECEA1FB; Wed, 19 Mar 2014 15:02:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JF2bKo036347; Wed, 19 Mar 2014 15:02:37 GMT (envelope-from wblock@freefall.freebsd.org) Received: (from wblock@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JF2bW3036346; Wed, 19 Mar 2014 15:02:37 GMT (envelope-from wblock) Date: Wed, 19 Mar 2014 15:02:37 GMT Message-Id: <201403191502.s2JF2bW3036346@freefall.freebsd.org> To: wblock@FreeBSD.org, freebsd-doc@FreeBSD.org, wblock@FreeBSD.org From: wblock@FreeBSD.org Subject: Re: docs/187733: line numbers in program listings cycle from 0-9 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 15:02:37 -0000 Synopsis: line numbers in program listings cycle from 0-9 Responsible-Changed-From-To: freebsd-doc->wblock Responsible-Changed-By: wblock Responsible-Changed-When: Wed Mar 19 15:02:17 UTC 2014 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=187733 From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 15:39:22 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71E12936 for ; Wed, 19 Mar 2014 15:39:22 +0000 (UTC) Received: from col0-omc1-s19.col0.hotmail.com (col0-omc1-s19.col0.hotmail.com [65.55.34.29]) by mx1.freebsd.org (Postfix) with ESMTP id 529B886C for ; Wed, 19 Mar 2014 15:39:22 +0000 (UTC) Received: from COL128-W75 ([65.55.34.9]) by col0-omc1-s19.col0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Wed, 19 Mar 2014 08:39:21 -0700 X-TMN: [oEVSxDsj8u1ZL89qpEs8pjifFqS8puBH] X-Originating-Email: [assembler914@outlook.com] Message-ID: From: velocidade da luz To: "freebsd-doc@freebsd.org" Subject: RE: This may help freebsd.doc? Date: Wed, 19 Mar 2014 18:39:21 +0300 Importance: Normal In-Reply-To: References: MIME-Version: 1.0 X-OriginalArrivalTime: 19 Mar 2014 15:39:21.0877 (UTC) FILETIME=[660D6C50:01CF4389] Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 15:39:22 -0000 DQoNCj4gRnJvbTogYXNzZW1ibGVyOTE0QG91dGxvb2suY29tDQo+IFRvOiBmcmVlYnNkLWRvY0Bm cmVlYnNkLm9yZw0KPiBTdWJqZWN0OiBUaGlzIG1heSBoZWxwIGZyZWVic2QuZG9jPw0KPiBEYXRl OiBUdWUsIDE4IE1hciAyMDE0IDIwOjAwOjI3ICswMzAwDQo+IA0KPiBVc2luZyBHb29nbGUgVHJh bnNsYXRlLCBJIGFtIGFjdGl2ZSBvbiBzZXZlcmFsIG5hdGlvbmFsaXR5LXNwZWNpZmljIHBsYXRm b3JtcywgaW5jbHVkaW5ndGhlIER1dGNoLCBTcGFuaXNoLCBCcmF6aWxpYW4sIEZyZW5jaCBhbmQg UnVzc2lhbiBVYnVudHUgZm9ydW1zLCBhcyB3ZWxsIGFzIHRoZSBJdGFsaWFuIGFuZCBpbnRlcm5h dGlvbmFsT3Blbk1hbmRyaXZhIGZvcnVtcywgd2hlcmUgbXkgdXNlcm5hbWUgaXMgYXNzZW1ibGVy O3RoZSBHZXJtYW4gVWJ1bnR1IGZvcnVtLCB3aGVyZSBteSB1c2VybmFtZSBpcyBhc3NlbWJsZXVy O3RoZSBTcGFuaXNoIEZyZWVCU0QgbWFpbGluZyBsaXN0LCB3aGVyZSBJJ20ga25vd24gYXMgSm9y Z2UgTHVpcyBDYXJ2YWxobyBTYW50b3M7RlVHLUJSICh0aGUgQnJhemlsaWFuIGNoYXB0ZXIgb2Yg dGhlIEZyZWVCU0QgVXNlcnMnIEdyb3VwKS5BIHVzZXIgb2YgdGhlIEdlcm1hbiBVYnVudHUgZm9y dW0gdG9sZCBtZSB0aGF0IG15IHdyaXRpbmcgc3R5bGUgaXMgdGhlIHN0eWxlIGhlIHdhbnRlZCB0 byBoYXZlIGFuZCB0aGF0IG15IHN0eWxlIGlzIGVhc2lseSB0cmFuc2xhdGVkIGJ5IEdvb2dsZSBp biBhbGwgb3RoZXIgbGFuZ3VhZ2VzIOKAiy4gTXkgbmF0aXZlIGxhbmd1YWdlIGlzIChCcmF6aWxp YW4pIFBvcnR1Z3Vlc2UuIE15IHdvcmtpbmcgbWV0aG9kIGlzIHRvIGNvcHkgYW5kIHBhc3RlIHRo ZSB0ZXh0IEkgd2FudCB0byB0cmFuc2xhdGUgaW50byBHb29nbGUgVHJhbnNsYXRlOiBodHRwczov L3RyYW5zbGF0ZS5nb29nbGUuY29tLmJyLy4NCj4gVGhpcyBtYXkgaGVscCBmcmVlYnNkLmRvYz9J ZiBub3QsIHdoYXQgSSBzaG91bGQgIGxlYXJuIHRvIGhlbHAgZnJlZWJzZC5kb2M/DQo+ICAJCSAJ ICAgCQkgIA0KPiBfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f Xw0KPiBmcmVlYnNkLWRvY0BmcmVlYnNkLm9yZyBtYWlsaW5nIGxpc3QNCj4gaHR0cDovL2xpc3Rz LmZyZWVic2Qub3JnL21haWxtYW4vbGlzdGluZm8vZnJlZWJzZC1kb2MNCj4gVG8gdW5zdWJzY3Jp YmUsIHNlbmQgYW55IG1haWwgdG8gImZyZWVic2QtZG9jLXVuc3Vic2NyaWJlQGZyZWVic2Qub3Jn Ig0KDQpiZWNhdXNlIG5vIG9uZSByZXNwb25kcz8gIAkJIAkgICAJCSAg From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 16:47:21 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 459A8BA8; Wed, 19 Mar 2014 16:47:21 +0000 (UTC) Received: from dmz-mailsec-scanner-3.mit.edu (dmz-mailsec-scanner-3.mit.edu [18.9.25.14]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF003EBA; Wed, 19 Mar 2014 16:47:20 +0000 (UTC) X-AuditID: 1209190e-f79ee6d000000c40-8a-5329c8e49c90 Received: from mailhub-auth-2.mit.edu ( [18.7.62.36]) (using TLS with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by dmz-mailsec-scanner-3.mit.edu (Symantec Messaging Gateway) with SMTP id C0.4C.03136.4E8C9235; Wed, 19 Mar 2014 12:42:12 -0400 (EDT) Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11]) by mailhub-auth-2.mit.edu (8.13.8/8.9.2) with ESMTP id s2JGgAaL010973; Wed, 19 Mar 2014 12:42:11 -0400 Received: from multics.mit.edu (system-low-sipb.mit.edu [18.187.2.37]) (authenticated bits=56) (User authenticated as kaduk@ATHENA.MIT.EDU) by outgoing.mit.edu (8.13.8/8.12.4) with ESMTP id s2JGg8RU028843 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 19 Mar 2014 12:42:09 -0400 Received: (from kaduk@localhost) by multics.mit.edu (8.12.9.20060308) id s2JGg5Jl020345; Wed, 19 Mar 2014 12:42:05 -0400 (EDT) Date: Wed, 19 Mar 2014 12:42:05 -0400 (EDT) From: Benjamin Kaduk X-X-Sender: kaduk@multics.mit.edu To: Bruce Evans Subject: em dashes in mdoc (was Re: Hello fdclose) In-Reply-To: <20140319071034.H996@besplex.bde.org> Message-ID: References: <201403181404.52197.jhb@freebsd.org> <20140319071034.H996@besplex.bde.org> User-Agent: Alpine 1.10 (GSO 962 2008-03-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFvrPIsWRmVeSWpSXmKPExsUixG6novvkhGawwYF/AhYtC36zWpw608Vq sffIdWYHZo8Zn+azeLw+v449gCmKyyYlNSezLLVI3y6BK+P2rkXsBRO4KraffcfYwPiAvYuR k0NCwERi+9RHrBC2mMSFe+vZuhi5OIQEZjNJ3H3WD+VsZJRYvGUCO4RziEliafMPZgingVFi 5oNpQP0cHCwC2hKdnUwgo9gE1CQe722GGqsosfnUJGYQWwQovvzCfLAaZgFriWd77jGC2MIC RhIHV20Ei3MC2Td27AE7j1fAUeL5sW0sUCcxSsw4vRdsqKiAjsTq/VNYIIoEJU7OfMICMdRS 4tyf62wTGIVmIUnNQpJawMi0ilE2JbdKNzcxM6c4NVm3ODkxLy+1SNdYLzezRC81pXQTIyic OSX5djB+Pah0iFGAg1GJh3fFHs1gIdbEsuLK3EOMkhxMSqK8nUeBQnxJ+SmVGYnFGfFFpTmp xYcYJTiYlUR4X4GU86YkVlalFuXDpKQ5WJTEefvOSgQLCaQnlqRmp6YWpBbBZGU4OJQkeA2B cSskWJSanlqRlplTgpBm4uAEGc4DNFwfpIa3uCAxtzgzHSJ/ilFRSpzX5DhQQgAkkVGaB9cL SzevGMWBXhHmdQBp5wGmKrjuV0CDmYAGL5quBjK4JBEhJdXAuDZEbMFmpqMPjLxCbZZ5CGxP 4N6ok2zwvLZtymehiWL/N+u9P9MVwajHrd45RWLlZx3+6h8xHaJZ3spTa+eHL5r95whXf3vp gfsCV0Q5jFNXM16XNvp1ddPyfV/EnmedeyKqHit+VYNT59CKXar6aqX5WdELVgby/nmbZSbr 4nH03NNapoSDSizFGYmGWsxFxYkAgAdaGRIDAAA= Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 16:47:21 -0000 [changing cc list dramatically] On Wed, 19 Mar 2014, Bruce Evans wrote: > On Tue, 18 Mar 2014, John Baldwin wrote: > >> @@ -84,7 +130,9 @@ >> .Sh NOTES >> The >> .Fn fclose >> -function >> +and >> +.Fn fdclose >> +functions >> does not handle NULL arguments; they will result in a segmentation >> violation. >> This is intentional - it makes it easier to make sure programs written >> > > In the old version: > > Em-dash seems to be handled poorly by mdoc. It seems to be necessary > to hard code it. It shouldn't be hard coded as a hyphen. I seem to remember looking into mdoc's handling of em dashes a month or two ago, and concluding that mdoc did not handle em dashes at all. That is, I did not see any macros that attempted to render as a dash of any type, so that the man page author is required to hard code a dash as either one or two (or three, I suppose) hyphens. A scan of the prior art suggested that most existing instances use a single hyphen, and the double hyphen is quite rare. Warren did note that it is probably best to write in a style that avoids the need for the em dash, which I cannot really argue against. Bruce, do you have any details you can add about mdoc's interaction with em (or en) dashes? Thanks, Ben From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 17:43:26 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83DCE686 for ; Wed, 19 Mar 2014 17:43:26 +0000 (UTC) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 59CC475F for ; Wed, 19 Mar 2014 17:43:26 +0000 (UTC) Received: by be-well.ilk.org (Postfix, from userid 1147) id 64F7E33C25; Wed, 19 Mar 2014 13:43:25 -0400 (EDT) From: Lowell Gilbert To: velocidade da luz Subject: Re: This may help freebsd.doc? References: Date: Wed, 19 Mar 2014 13:43:24 -0400 In-Reply-To: (velocidade da luz's message of "Wed, 19 Mar 2014 18:39:21 +0300") Message-ID: <44mwgmcceb.fsf@be-well.ilk.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: "freebsd-doc@freebsd.org" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 17:43:26 -0000 velocidade da luz writes: >> From: assembler914@outlook.com >> To: freebsd-doc@freebsd.org >> Subject: This may help freebsd.doc? >> Date: Tue, 18 Mar 2014 20:00:27 +0300 >>=20 >> Using Google Translate, I am active on several nationality-specific >> platforms, includingthe Dutch, Spanish, Brazilian, French and >> Russian Ubuntu forums, as well as the Italian and >> internationalOpenMandriva forums, where my username is assembler;the >> German Ubuntu forum, where my username is assembleur;the Spanish >> FreeBSD mailing list, where I'm known as Jorge Luis Carvalho >> Santos;FUG-BR (the Brazilian chapter of the FreeBSD Users' Group).A >> user of the German Ubuntu forum told me that my writing style is the >> style he wanted to have and that my style is easily translated by >> Google in all other languages =E2=80=8B. My native language is (Brazilia= n) >> Portuguese. My working method is to copy and paste the text I want >> to translate into Google Translate: >> https://translate.google.com.br/. >> This may help freebsd.doc?If not, what I should learn to help freebsd.d= oc? >>=20=20=09=09=20=09=20=20=20=09=09=20=20 >> _______________________________________________ >> freebsd-doc@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-doc >> To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" > > because no one responds?=20=20=09=09=20=09=20=20=20=09=09=20=20 There is a Brazilian Portuguese documentation group, but it's fairly quiet for a country with such an active userbase. Those are the people with whom to check, I would think. From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 18:44:17 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D7622BF for ; Wed, 19 Mar 2014 18:44:17 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [78.47.69.234]) by mx1.freebsd.org (Postfix) with ESMTP id 88099D98 for ; Wed, 19 Mar 2014 18:44:16 +0000 (UTC) Received: from [IPv6:2001:470:d701::857a:5055:629e:3b30] (unknown [IPv6:2001:470:d701:0:857a:5055:629e:3b30]) by mail.jr-hosting.nl (Postfix) with ESMTPSA id C0C223F492; Wed, 19 Mar 2014 19:44:08 +0100 (CET) Content-Type: multipart/signed; boundary="Apple-Mail=_5F968FB6-1A36-4E44-B32E-73ED2C180D25"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: This may help freebsd.doc? From: Remko Lodder In-Reply-To: <44mwgmcceb.fsf@be-well.ilk.org> Date: Wed, 19 Mar 2014 19:44:05 +0100 Message-Id: References: <44mwgmcceb.fsf@be-well.ilk.org> To: Lowell Gilbert X-Mailer: Apple Mail (2.1874) Cc: "freebsd-doc@freebsd.org" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 18:44:17 -0000 --Apple-Mail=_5F968FB6-1A36-4E44-B32E-73ED2C180D25 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 On 19 Mar 2014, at 18:43, Lowell Gilbert = wrote: > velocidade da luz writes: >=20 >>> From: assembler914@outlook.com >>> To: freebsd-doc@freebsd.org >>> Subject: This may help freebsd.doc? >>> Date: Tue, 18 Mar 2014 20:00:27 +0300 >>>=20 >>> Using Google Translate, I am active on several nationality-specific >>> platforms, includingthe Dutch, Spanish, Brazilian, French and >>> Russian Ubuntu forums, as well as the Italian and >>> internationalOpenMandriva forums, where my username is assembler;the >>> German Ubuntu forum, where my username is assembleur;the Spanish >>> FreeBSD mailing list, where I'm known as Jorge Luis Carvalho >>> Santos;FUG-BR (the Brazilian chapter of the FreeBSD Users' Group).A >>> user of the German Ubuntu forum told me that my writing style is the >>> style he wanted to have and that my style is easily translated by >>> Google in all other languages =E2=80=8B. My native language is = (Brazilian) >>> Portuguese. My working method is to copy and paste the text I want >>> to translate into Google Translate: >>> https://translate.google.com.br/. >>> This may help freebsd.doc?If not, what I should learn to help = freebsd.doc? >>> =20 >>> _______________________________________________ >>> freebsd-doc@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-doc >>> To unsubscribe, send any mail to = "freebsd-doc-unsubscribe@freebsd.org" >>=20 >> because no one responds? =20 >=20 > There is a Brazilian Portuguese documentation group, but it's fairly > quiet for a country with such an active userbase. Those are the people > with whom to check, I would think. > _______________________________________________ >=20 Also please note that smacking the text through Google Translate is = likely to give.. awkward translations. As far as I know none of the translation projects actually = use Google Translate to do the translations. As one of the two doc_NL members, I can state = for sure that we do not use that. And I would not consider it at all given the =E2=80=A6 strange = translations it generates. Thanks Remko --=20 /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_5F968FB6-1A36-4E44-B32E-73ED2C180D25 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJTKeV1AAoJEKjD27JZ84ywBmoQAIJ319X7p/dYfxROni9RqaqC 1dlxbcI7fr0hC+AaF7tab08xNAABWoTFmxuLtPn05LkhsI/zxqiCBn/x6EsATzv9 W8t/5Hrl62kdaXZsL1km56z9MBhWHGOTilxLvSYuKub8m5pXWSRlX+sC1lI7XORC 7oJi7L+0zn50vNjedMw2Dl1KviOiyfDscT23ZXF+JM82bLUF0knDh0fwPLqbJJ5M Wpn1iRFiEOTCE71hL6HBGx8SH2NWuI10hswUsrbGN7bQ0Bc7oqEkDIpaT/Y/JQpG +OB8hVvVE019nC0CIwyHmex60TjZUTkDFbcbxKaO9ULJ3OdNxyZZURpA9kQXbbIM Zo2T8WkBn0145AOPhDQ/ybc8oAQdoHdyPtRIqLGLfpNSTGxeHblKzgTWX6qYkrL1 lqyfjqzvSHchNj5NNxiCdPTZ6ri5bl/BbvCPaRy5HXIWrPE856WknkQ3wGfxNJ0G VugRfD8/dk3NhdTkjqHYM0dLmqoyr+cKcvXfN/5XaHbe/nqIP6glGEhCLydt02TJ N2ysS+rPHlVjnusE+Llk3FhrFvivWqUFCNgAKfkMcxu6Hq5MTbhxKaiVG2lxnEW6 MyQrOhRCGx7f9KLNmd5GFO084mCXMkNuSDPMBuUH1lAJygnN9pX5WNfTgI41mmbo ZzWWfloRNAepmOSYGhAq =ktyp -----END PGP SIGNATURE----- --Apple-Mail=_5F968FB6-1A36-4E44-B32E-73ED2C180D25-- From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 19:16:37 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B50AE54 for ; Wed, 19 Mar 2014 19:16:37 +0000 (UTC) Received: from mail-pd0-x241.google.com (mail-pd0-x241.google.com [IPv6:2607:f8b0:400e:c02::241]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A0B5FD for ; Wed, 19 Mar 2014 19:16:37 +0000 (UTC) Received: by mail-pd0-f193.google.com with SMTP id x10so3506535pdj.8 for ; Wed, 19 Mar 2014 12:16:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:mime-version:content-type :thread-index:content-language; bh=q0kw80eKxfxu/fA7CB6zsCD7a+4ZT0MaTLmrXK0aBLs=; b=nvFBNxI6gd3rYVkHbta589BfTNfKxSaQnFd4ns1yEkyPX+nUEt4rRWZHQgiVNhKZg3 fXrSPDMNB0L+/xu43RXU/JxUzEzEgKPPbBYtSt3VN6h+10BspaeQi7RmPyws27+XNPNz dWmeu5jM2Di64OSaybgwdqTmiNK4ETI2fayGO+FwyTy3qJo5agQNeoqb0tcG0u+dq0jE j5Y7j5+hqkbBTq+vFU+1yl9CDm/ekJi6a7Xi3bzQ2yDXtyh3ocgcvmeFPgA0lAWp/6Cn QIf9UOltdYNGt1BWvrgfV+U6h6ytX8/glP/ZKGiyij7cWeCasl6ytOzaY+oHvuOveic2 8Qow== X-Received: by 10.68.102.34 with SMTP id fl2mr42610595pbb.2.1395256596943; Wed, 19 Mar 2014 12:16:36 -0700 (PDT) Received: from mohitPC ([116.203.8.228]) by mx.google.com with ESMTPSA id ss2sm107989315pab.8.2014.03.19.12.16.29 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 19 Mar 2014 12:16:34 -0700 (PDT) From: "Mohit singh" To: Subject: Web Design and Mobile Application Development Date: Thu, 20 Mar 2014 00:46:18 +0530 Message-ID: <5329ed12.4291420a.2e65.ffffb20b@mx.google.com> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Ac9Dp7Hxkqjq4eT7S/CaFiDy5FOBsw== Content-Language: en-us x-cr-hashedpuzzle: N+s= AJkb Bfg3 Bloh Dz1W D3S+ EBFF E1nk GyJw HRTu Ic/a JNI7 Jand Jvgr J9Qm KAgl; 1; ZABvAGMAQABmAHIAZQBlAGIAcwBkAC4AbwByAGcA; Sosha1_v1; 7; {263C30C8-CB77-4BEE-B8EB-F65BCBB2214B}; dwBlAGIAaQBuAGYAbwAuAHQAZQBjAGgAMQAxAEAAZwBtAGEAaQBsAC4AYwBvAG0A; Wed, 19 Mar 2014 19:16:14 GMT; VwBlAGIAIABEAGUAcwBpAGcAbgAgAGEAbgBkACAATQBvAGIAaQBsAGUAIABBAHAAcABsAGkAYwBhAHQAaQBvAG4AIABEAGUAdgBlAGwAbwBwAG0AZQBuAHQA x-cr-puzzleid: {263C30C8-CB77-4BEE-B8EB-F65BCBB2214B} Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 19:16:37 -0000 Hi, My name is Mohit singh, Online Marketing Consultant. I found you and your from Internet. I would like to discuss a business opportunity with you. We are in Web Design and Development firm based in India, with over 6 years of experience. With Web Designing & Development, Flash Design, Graphic Design, PHP Development, CMS and E-commerce Solution. We offer following Services with affordable cost than what it might be in house: - PHP Website Development Mobile Application Development Joomla Website Development iPhone Apps Development Word press Website Development Andriod Apps Development Magento Website Development iPad Apps Development Shopify Website Development Android Tablet Apps Drupal Development Windows Applications Development Face book Aps & Social Media Mobile Website Development eCommerce Solutions iOS Apps Development Payment Gateway Integration Web Design I will highly appreciate if you have any requirement for the same or any other requirement on the above mentioned services provided by us. Looking forward to hearing from you. Kinds Regards, Mohit singh Online Marketing Consultant Disclaimer: The CAN-SPAM Act of 2003 (Controlling the Assault of Non-Solicited Pornography and Marketing Act) establishes requirements for those who send commercial email, spells out penalties for spammers and companies whose products are advertised in spam if they violate the law, and gives consumers the right to ask mailers to stop spamming them. The above mail is in accordance to the Can Spam act of 2003: There are no deceptive subject lines and is a manual process through our efforts on World Wide Web. From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 21:30:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DFE28F9E for ; Wed, 19 Mar 2014 21:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B31D6F8E for ; Wed, 19 Mar 2014 21:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JLU12W058099 for ; Wed, 19 Mar 2014 21:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JLU1l7058098; Wed, 19 Mar 2014 21:30:01 GMT (envelope-from gnats) Date: Wed, 19 Mar 2014 21:30:01 GMT Message-Id: <201403192130.s2JLU1l7058098@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Allan Jude Subject: Re: docs/187321: [handbook] [patch] Clarification needed on using geli rc.d script X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Allan Jude List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 21:30:01 -0000 The following reply was made to PR docs/187321; it has been noted by GNATS. From: Allan Jude To: bug-followup@FreeBSD.org, jack-benny@cyberinfo.se Cc: Subject: Re: docs/187321: [handbook] [patch] Clarification needed on using geli rc.d script Date: Wed, 19 Mar 2014 17:24:22 -0400 This is a multi-part message in MIME format. --------------050203020502020103060605 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Minor edits to the patch - added double spaces after periods - removed whitespace at ends of lines - reflowed paragraphs for 70 columns - removed the duplicated reference to /etc/fstab - added a warning about the fact that the password prompt can be hidden by device attachments - Other minor grammar edits -- Allan Jude --------------050203020502020103060605 Content-Type: text/plain; charset=windows-1252; name="docs.disks_geli_fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="docs.disks_geli_fix.patch" Index: en_US.ISO8859-1/books/handbook/disks/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/disks/chapter.xml (revision 44271) +++ en_US.ISO8859-1/books/handbook/disks/chapter.xml (working copy) @@ -3164,6 +3164,18 @@ the geli provider from the kernel before the system shuts down. + During the boot process, the system will prompt + for the passphrase in order to attach the + GELI provider. The password prompt may + become hidden by other kernel messages, look carefully + when the boot process seems to stall. If the correct + password is given, the system will attach the provider. + However, if the provider is not subsequently used by a file + system the provider will timeout and automatically be + detached. In order to keep the provider attached, it must + be mounted by an entry in /etc/fstab. + See &man.fstab.5; for more information. + More information about configuring rc.d is provided in the rc.d section of the --------------050203020502020103060605-- From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 22:10:03 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 39008B4C for ; Wed, 19 Mar 2014 22:10:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 25E93389 for ; Wed, 19 Mar 2014 22:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JMA2DB069624 for ; Wed, 19 Mar 2014 22:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JMA2So069623; Wed, 19 Mar 2014 22:10:02 GMT (envelope-from gnats) Date: Wed, 19 Mar 2014 22:10:02 GMT Message-Id: <201403192210.s2JMA2So069623@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Allan Jude Subject: Re: docs/187321: [handbook] [patch] Clarification needed on using geli rc.d script X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Allan Jude List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 22:10:03 -0000 The following reply was made to PR docs/187321; it has been noted by GNATS. From: Allan Jude To: bug-followup@FreeBSD.org, jack-benny@cyberinfo.se Cc: Subject: Re: docs/187321: [handbook] [patch] Clarification needed on using geli rc.d script Date: Wed, 19 Mar 2014 18:00:53 -0400 This is a multi-part message in MIME format. --------------020407010902050606020603 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Fix a typo that caused a build error -- Allan Jude --------------020407010902050606020603 Content-Type: text/plain; charset=windows-1252; name="docs.disks_geli_fix_v2.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="docs.disks_geli_fix_v2.patch" Index: en_US.ISO8859-1/books/handbook/disks/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/disks/chapter.xml (revision 44271) +++ en_US.ISO8859-1/books/handbook/disks/chapter.xml (working copy) @@ -3164,6 +3164,18 @@ the geli provider from the kernel before the system shuts down. + During the boot process, the system will prompt + for the passphrase in order to attach the + GELI provider. The password prompt may + become hidden by other kernel messages, look carefully + when the boot process seems to stall. If the correct + password is given, the system will attach the provider. + However, if the provider is not subsequently used by a file + system the provider will timeout and automatically be + detached. In order to keep the provider attached, it must + be mounted by an entry in /etc/fstab. + See &man.fstab.5; for more information. + More information about configuring rc.d is provided in the rc.d section of the --------------020407010902050606020603-- From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 22:20:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0F4EE07 for ; Wed, 19 Mar 2014 22:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B41D267D for ; Wed, 19 Mar 2014 22:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JMK0MW073486 for ; Wed, 19 Mar 2014 22:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JMK0Yw073485; Wed, 19 Mar 2014 22:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Mar 2014 22:20:00 GMT Resent-Message-Id: <201403192220.s2JMK0Yw073485@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Allan Jude Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC18ECBA for ; Wed, 19 Mar 2014 22:13:07 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8825607 for ; Wed, 19 Mar 2014 22:13:07 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JMD7m5072033 for ; Wed, 19 Mar 2014 22:13:07 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2JMD7JI072030; Wed, 19 Mar 2014 22:13:07 GMT (envelope-from nobody) Message-Id: <201403192213.s2JMD7JI072030@cgiserv.freebsd.org> Date: Wed, 19 Mar 2014 22:13:07 GMT From: Allan Jude To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187773: [handbook] callouts appear to be broken, failing to render X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 22:20:01 -0000 >Number: 187773 >Category: docs >Synopsis: [handbook] callouts appear to be broken, failing to render >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 19 22:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Allan Jude >Release: 9.2-RELEASE >Organization: ScaleEngine Inc. >Environment: FreeBSD Trooper.HML3.ScaleEngine.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: While reading the handbook I noticed that callouts appear to be broken Looking at: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/security-advisories.html#idp77807024 In the programlisting there are no callout images After the programlisting, the legend has each of the callouts defined, but the numbers are not shown inline in the programlisting Appears to have been broken by r44109 I suspect it is this change that also broke userinput inside of screen: http://www.freebsd.org/cgi/query-pr.cgi?pr=docs/187515 And any other inline elements inside a screen or programlisting >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 22:30:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C3F702D6 for ; Wed, 19 Mar 2014 22:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9872C7CD for ; Wed, 19 Mar 2014 22:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JMU2QO076687 for ; Wed, 19 Mar 2014 22:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JMU2UY076686; Wed, 19 Mar 2014 22:30:02 GMT (envelope-from gnats) Date: Wed, 19 Mar 2014 22:30:02 GMT Message-Id: <201403192230.s2JMU2UY076686@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Allan Jude Subject: Re: docs/187465: mention patchlevels in explaining security advisories X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Allan Jude List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 22:30:02 -0000 The following reply was made to PR docs/187465; it has been noted by GNATS. From: Allan Jude To: bug-followup@FreeBSD.org, freebsd-bugs-local@be-well.ilk.org Cc: Subject: Re: docs/187465: mention patchlevels in explaining security advisories Date: Wed, 19 Mar 2014 18:21:20 -0400 This is a multi-part message in MIME format. --------------040705090909050100010306 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Minor edits to the patch - Fix whitespace in patch it self - Add double space after periods - Improve explaination - Minor grammar changes Note: I noticed while editing this callouts appears to be broken. Filed a separate PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=docs/187773 -- Allan Jude --------------040705090909050100010306 Content-Type: text/plain; charset=windows-1252; name="docs.security_corrected_fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="docs.security_corrected_fix.patch" Index: handbook/security/chapter.xml =================================================================== --- handbook/security/chapter.xml (revision 44271) +++ handbook/security/chapter.xml (working copy) @@ -3284,7 +3284,15 @@ The Corrected field indicates the date, time, time offset, and release that was - corrected. + corrected. The section in parentheses shows each branch + to which the fix has been merged, and the version number + of the corresponding release from that branch. The + release identifier itself, includes the version number + and, if appropriate, the patch level. The patch level is + the letter p followed by a number, + indicating the sequence number of the patch, allowing + users to track which patches have already been applied to + the system. --------------040705090909050100010306-- From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 22:30:03 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8FE42D7 for ; Wed, 19 Mar 2014 22:30:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 963027CE for ; Wed, 19 Mar 2014 22:30:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JMU3nw076693 for ; Wed, 19 Mar 2014 22:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JMU3KO076692; Wed, 19 Mar 2014 22:30:03 GMT (envelope-from gnats) Date: Wed, 19 Mar 2014 22:30:03 GMT Message-Id: <201403192230.s2JMU3KO076692@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Allan Jude Subject: Re: docs/187515: userinput inside screen elements is not rendered differently X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Allan Jude List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 22:30:03 -0000 The following reply was made to PR docs/187515; it has been noted by GNATS. From: Allan Jude To: bug-followup@FreeBSD.org, wblock@FreeBSD.org Cc: Subject: Re: docs/187515: userinput inside screen elements is not rendered differently Date: Wed, 19 Mar 2014 18:21:14 -0400 I have confirmed that this problem goes away if you revert r44109 The changes in 44109 seem to break all inline elements (userinput, replaceable, callouts, etc) inside screen, programlisting etc (all the things we added line numbers to) Hopefully some XSLT wizardry and fix this, as the line numbers are really nice. Also see: http://www.freebsd.org/cgi/query-pr.cgi?pr=docs/187773 -- Allan Jude From owner-freebsd-doc@FreeBSD.ORG Wed Mar 19 23:09:40 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60C8A210; Wed, 19 Mar 2014 23:09:40 +0000 (UTC) Received: from mail107.syd.optusnet.com.au (mail107.syd.optusnet.com.au [211.29.132.53]) by mx1.freebsd.org (Postfix) with ESMTP id 2236CB75; Wed, 19 Mar 2014 23:09:39 +0000 (UTC) Received: from c122-106-147-133.carlnfd1.nsw.optusnet.com.au (c122-106-147-133.carlnfd1.nsw.optusnet.com.au [122.106.147.133]) by mail107.syd.optusnet.com.au (Postfix) with ESMTPS id 68288D43730; Thu, 20 Mar 2014 10:09:32 +1100 (EST) Date: Thu, 20 Mar 2014 10:09:31 +1100 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Benjamin Kaduk Subject: Re: em dashes in mdoc (was Re: Hello fdclose) In-Reply-To: Message-ID: <20140320093525.N1015@besplex.bde.org> References: <201403181404.52197.jhb@freebsd.org> <20140319071034.H996@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.1 cv=PqKqMW83 c=1 sm=1 tr=0 a=7NqvjVvQucbO2RlWB8PEog==:117 a=PO7r1zJSAAAA:8 a=kRj94Bpp-QgA:10 a=kj9zAlcOel0A:10 a=JzwRw_2MAAAA:8 a=Ttr4Qf4ixbLBRZaoufAA:9 a=CjuIK1q_8ugA:10 Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 23:09:40 -0000 On Wed, 19 Mar 2014, Benjamin Kaduk wrote: > [changing cc list dramatically] > > On Wed, 19 Mar 2014, Bruce Evans wrote: > >> On Tue, 18 Mar 2014, John Baldwin wrote: >> >>> @@ -84,7 +130,9 @@ >>> .Sh NOTES >>> The >>> .Fn fclose >>> -function >>> +and >>> +.Fn fdclose >>> +functions >>> does not handle NULL arguments; they will result in a segmentation >>> violation. >>> This is intentional - it makes it easier to make sure programs written >> >> In the old version: >> >> Em-dash seems to be handled poorly by mdoc. It seems to be necessary >> to hard code it. It shouldn't be hard coded as a hyphen. > > I seem to remember looking into mdoc's handling of em dashes a month or two > ago, and concluding that mdoc did not handle em dashes at all. That is, I > did not see any macros that attempted to render as a dash of any type, so > that the man page author is required to hard code a dash as either one or two > (or three, I suppose) hyphens. > > A scan of the prior art suggested that most existing instances use a single > hyphen, and the double hyphen is quite rare. I thought the double hyphen was used more. A single hyphen is especially bad for em-dash in C and math ASCII text since it normally means a minus sign. > Warren did note that it is probably best to write in a style that avoids the > need for the em dash, which I cannot really argue against. > > Bruce, do you have any details you can add about mdoc's interaction with em > (or en) dashes? I just noticed that old gnu man pages use double dashes more, and ones that haven't been fully translated to mdoc even have a macro for it. E.g., from patch.1: %%% '\" '\" Set up \*(-- to give an unbreakable dash; '\" string Tr holds user defined translation string. '\" Bell System Logo is used as a dummy character. '\" .if !d Tr .ds Tr .ie n \{\ .tr \(*W-\*(Tr .ds -- \(*W- .if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch .if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch .ds L" "" .ds R" "" .ds L' ' .ds R' ' 'br \} .el \{\ .ds -- \(em\| .tr \*(Tr .ds L" `` .ds R" '' .ds L' ` .ds R' ' 'br\} %%% I don't understand the syntax for this. patch.1 actually uses double dashes (not em-dashes) a lot for gnu-style options. In the old version, the source code for the -c option is: .B "\-c, \-\-context" Lots of hard-coding there, in a way that disguises the double dashes (I missed this at first by grepping for "\--"). In the current version, the corresponding source code is: .It Fl c, Fl Fl context Bruce From owner-freebsd-doc@FreeBSD.ORG Thu Mar 20 09:40:15 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C908660 for ; Thu, 20 Mar 2014 09:40:15 +0000 (UTC) Received: from mail-pb0-x241.google.com (mail-pb0-x241.google.com [IPv6:2607:f8b0:400e:c01::241]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5742A9E for ; Thu, 20 Mar 2014 09:40:14 +0000 (UTC) Received: by mail-pb0-f65.google.com with SMTP id rp16so268820pbb.0 for ; Thu, 20 Mar 2014 02:40:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:reply-to:from:to:subject:date:mime-version:content-type :thread-index; bh=h3cIXDYfF7JtccZCelCek7obQWBAbZ9ij0klVGO+JFM=; b=bWGO5XeANmq3zD9F0dv2V3Wqj/BQ16hrN7nhyfy7E/n4htdcwVjb7vih2Zgx3oSlxN vvS/EDYvy3vQeTzIuCX6Ot7ofvLrqw5qz8xv3MoGhyMH29+vj/KAVxGaPx/MpoSu81cz Ex2Fj+5s9NiBGfOLBM5D2mE8NQA//A75NM0NAjl/aznoaNfA/43Ub3YZ+S1jdKH0RSXv bT9nnY13/bhp3KKx6B4DfFZ/iwx9dbu27yg8fbX7qnTUvT4rqfuxOp2rORr0WbsdJUj8 9huq9rAZuA6SraMj/BZljOjS1MksSZJ82gZcPUGxrgnbZ0QE5qY9SmYXvMDCOAtJWX/A f2jw== X-Received: by 10.66.142.42 with SMTP id rt10mr46497659pab.1.1395308414513; Thu, 20 Mar 2014 02:40:14 -0700 (PDT) Received: from 3ciPC ([122.177.230.169]) by mx.google.com with ESMTPSA id os1sm7343047pac.20.2014.03.20.02.40.11 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 20 Mar 2014 02:40:13 -0700 (PDT) Message-ID: <532ab77d.c1d8420a.07c6.ffffa55f@mx.google.com> From: "Sophia" To: Subject: SEO Special offer at very affordable price Date: Thu, 20 Mar 2014 15:09:54 +0530 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: Ac9EIFjIg3GmPMEfQmC9guR2zpAkjA== X-MimeOLE: Produced By Microsoft MimeOLE V6.1.7600.16385 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: webdegineservice65@gmail.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Mar 2014 09:40:15 -0000 Greetings, We are offering SEO Special offer at very affordable price for this month only and this service will be continue for a long term for this month clients. For achieving top ten ranking and traffic we will do all possible activities and implement new techniques. Monthly Task and responsibilities: - We will do the following on page activities for 1st month and off page on per month basis: - 1. 200 Manually Directory Submissions 2. 50 Social Bookmarking Submissions 3. 1 Press Release writing (500+ words) 4. 1 Press Release submit in 30 Sites 5. 1 Unique Article writing (500+ words) 6. 1 Articles Submit in 30 Top Directories 7. 4 Web2.0/Blog postings 8. 10 Social media like Twitter and facebook Post 9. Squidoo Web page 10. Keywords Mapping 11. Keywords density check 12. Content optimization 13. Keywords proximity and frequency 14. Title Tag changes suggestions 15. Meta tags changes suggestions 16. Alt tag changes suggestions 17. HTML Site Map suggestions 18. XML site map setup 19. Anchor text optimization 20. Interlinking suggestions 21. Google analytics setup 22. Keywords Analysis & Research 23. Fortnightly Work Report 24. Monthly Ranking Report 25. Monthly Full Detailed SEO Work Report in Excel. Please let us know, If you are interested in our Affordable seo services. NOTE: Kindly let me know your phone number and Skype ID is the best timing along with time zone to give you a call to discuss more. Waiting for your positive response. Kind Regards, Sophia From owner-freebsd-doc@FreeBSD.ORG Fri Mar 21 08:31:02 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 975285E7 for ; Fri, 21 Mar 2014 08:31:02 +0000 (UTC) Received: from smtp001.eqx-dc2.vs3.com (smtp001.eqx-dc2.vs3.com [63.218.93.19]) by mx1.freebsd.org (Postfix) with ESMTP id 589E5A70 for ; Fri, 21 Mar 2014 08:31:01 +0000 (UTC) Received: from smtp001.eqx-dc2.vs3.com (smtp001.eqx-dc2.vs3.com [127.0.0.1]) by smtp001.eqx-dc2.vs3.com (Postfix) with ESMTP id 8E6C114980F6 for ; Fri, 21 Mar 2014 04:21:53 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=vs.com; h=to:from:reply-to :subject:date:mime-version:content-type :content-transfer-encoding:list-unsubscribe:message-id; s=mail; bh=J64hTohOmYUbSJHtQm3l++gN0T4=; b=iBQgNf+iExMsYh2vnwspk7A6bjNN RM/ggVh+mQlE2oseEfK+MyCe27Db3n3p+PxpY8tn8vupMJNWJ1zF1eriTrlKS7hj INC0h3Ktu+xyC8RRoLsPFovg//YWGwq7DoSykFSlDv6Qr/jdW9ql5PSP/pwpJzMt MY3eYeQxVPUoR00= DomainKey-Signature: a=rsa-sha1; c=nofws; d=vs.com; h=to:from:reply-to :subject:date:mime-version:content-type :content-transfer-encoding:list-unsubscribe:message-id; q=dns; s=mail; b=Buitlbho33GJCZ0pAYCA+40z6i7rq0URboINuSmKbKPByioGj6Luu 2ReOlXzWWOuuEe2U6A9LBKLu9hPohBa5jr0iNyJjs2FQ51B/Dxybcusx2vexAA08 NRFQANNwbY3ZsuxpJZFTQKP77JgU/Om2oYTB2FfU3BR6X1aq51lgSU= Received: from localhost.localdomain (live015.vs3.com [72.37.153.195]) by smtp001.eqx-dc2.vs3.com (Postfix) with SMTP id 4FAD914980E1 for ; Fri, 21 Mar 2014 04:21:53 -0400 (EDT) To: doc@freebsd.org From: CamZhub Subject: 80 Free Credits - Limited Time Special offer Date: Fri, 21 Mar 2014 04:21:53 -0400 X-LibVersion: 3.3.2 MIME-Version: 1.0 Precedence: bulk X-RISK-HEADER: scheduled::24955::2014-03-21 04:21:53::doc@freebsd.org::freebsd.org::DORMANT::smtp001.eqx-dc2.vs3.com::WL::80 Free Credits - Limited Time Special offer Message-ID: <20140321082153.26451.1559953359.swift@live015.vs3.com> X-VSENCRECIP: ZG9jQGZyZWVic2Qub3Jn Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Reply-To: CamZhub List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Mar 2014 08:31:02 -0000 CamZhub - The Hottest Adult Webcam Experience! We see you've experienced some problems logging into your account. We wou= ld like to make up for it with a special offer. For a limited time, we would like to offer you 80 FREE Credits*=20 This offer can be only redeemed from Friday March 21st EST thru Sunday Ma= rch 23rd EST. Going to this URL, http://www.camzhub.com/click/login/auto.php?address=3D= doc@freebsd.org&schedule_id=3D24955&sitekey=3Dwhitelabel&wl_domain=3Dcamz= hub.com&username=3DOzzyRebdowt&eng_params=3D441f957b8a93634e19e3f5636f7a9= f2f¶ms=3D441f957b8a93634e19e3f5636f7a9f2f&page=3D%2F_special%2F1click= -offer.php, will automatically load the free credits in to your account. = That's it! Username: OzzyRebdowt http://www.camzhub.com/click/login/auto.php?address=3Ddoc@freebsd.org&sch= edule_id=3D24955&sitekey=3Dwhitelabel&wl_domain=3Dcamzhub.com&username=3D= OzzyRebdowt&eng_params=3D441f957b8a93634e19e3f5636f7a9f2f¶ms=3D441f95= 7b8a93634e19e3f5636f7a9f2f&page=3D%2F_special%2F1click-offer.php *80 free credit offer can only be redeemed once per user It is not our intention to send you email if you do not want it! If you h= ave never visited our=20 site, have not intentionally given us your email address, or believe you = are getting our messages=20 in error, please follow these steps to ensure removal from our database: Click the following link to permanently remove your information from this= list: http://www.camzhub.com/newsletters.php?a=3Dunsubscribe&type_id=3D103&emai= l=3Ddoc@freebsd.org Follow these steps and you will be automatically removed from our databas= e. If you are=20 having trouble please contact our 24 hour support staff at 818-880-9021 o= r customerservice@vs.com,=20 or by mail at: VS Media Inc. ATTN: E-Mail Service Rep. 26500 W. Agoura Rd. Suite 102-734 =09 Calabasas, CA 91302 USA Tel: +1-818-880-9021 From owner-freebsd-doc@FreeBSD.ORG Sat Mar 22 07:07:26 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4F4C67F for ; Sat, 22 Mar 2014 07:07:26 +0000 (UTC) Received: from www2896.sakura.ne.jp (www2896.sakura.ne.jp [IPv6:2403:3a00:201:1c:49:212:198:106]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6B13DB94 for ; Sat, 22 Mar 2014 07:07:26 +0000 (UTC) Received: from www2896.sakura.ne.jp (localhost [127.0.0.1]) by www2896.sakura.ne.jp (8.14.4/8.14.4) with ESMTP id s2M77O77045714 for ; Sat, 22 Mar 2014 16:07:24 +0900 (JST) (envelope-from ibukichi@www2896.sakura.ne.jp) Received: (from ibukichi@localhost) by www2896.sakura.ne.jp (8.14.4/8.14.4/Submit) id s2M77O6s045713; Sat, 22 Mar 2014 16:07:24 +0900 (JST) (envelope-from ibukichi) Date: Sat, 22 Mar 2014 16:07:24 +0900 (JST) Message-Id: <201403220707.s2M77O6s045713@www2896.sakura.ne.jp> To: doc@freebsd.org Subject: Voice Message Notification From: "WhatsApp Messaging Service" X-Mailer: DynamailerV8.0 Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: WhatsApp Messaging Service List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Mar 2014 07:07:26 -0000 WhatsApp You have a new Voice Message! Message Details: Time of Call: Mar-18 2014 05:25:25 Lenth of Call: 75sec Play *If you cannot play, move message to the "Inbox" folder. 2014 WhatsApp Inc From owner-freebsd-doc@FreeBSD.ORG Sat Mar 22 10:30:01 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E44BF9EA for ; Sat, 22 Mar 2014 10:30:01 +0000 (UTC) Received: from smtp002.eqx-ny1.vs3.com (smtp002.eqx-ny1.vs3.com [209.170.119.150]) by mx1.freebsd.org (Postfix) with ESMTP id 83E1BCFD for ; Sat, 22 Mar 2014 10:30:00 +0000 (UTC) Received: from smtp002.eqx-ny1.vs3.com (smtp002.eqx-ny1.vs3.com [127.0.0.1]) by smtp002.eqx-ny1.vs3.com (Postfix) with ESMTP id C7912358398 for ; Sat, 22 Mar 2014 06:21:00 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=vs.com; h=to:from:reply-to :subject:date:mime-version:content-type :content-transfer-encoding:list-unsubscribe:message-id; s=mail; bh=dE/bmeNCafgPVNr+WXiBuU818QE=; b=qHLY3Pnh/kW2CeQsk4Urp8YbRoGr ieCWhMlQR+21q2HeDavWZs9PyZsrWIocph6VDmb/3//GsEJ+DSOmStmuCf2d1spm KNWNrS09lq3K8MJuw3uUPX6rYRD+cQryJ8WDaqL8D5gsUM2RP5Cty3v5/9j0lO5t W8W7lpOltw1ABVE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=vs.com; h=to:from:reply-to :subject:date:mime-version:content-type :content-transfer-encoding:list-unsubscribe:message-id; q=dns; s=mail; b=Qn2IPfr3M1F58x5RQXRpAaR2ygznz0ptRf0ZwbJMkOehYyh9nkL0N N32W40SApBToqJxvh+JzGI4Eb1YcztSYiiYL1f9EMCD6Hmbl62k2TZel+hsUP5XI En51L9ujXt3YjgGn2iJem6+kQZzsMWD/6qgQKsl79hIq+vSQY95mGA= Received: from localhost.localdomain (unknown [68.64.146.198]) by smtp002.eqx-ny1.vs3.com (Postfix) with SMTP id 6969D3583A1 for ; Sat, 22 Mar 2014 06:21:00 -0400 (EDT) To: From: CamZhub Subject: Busty Babes Want To Play Date: Sat, 22 Mar 2014 06:21:00 -0400 X-LibVersion: 3.3.2 MIME-Version: 1.0 X-RISK-HEADER: engagement::top_boob_girls::2014-03-22 06:21:00::doc@freebsd.org::freebsd.org::IS_FL::smtp002.eqx-ny1.vs3.com::WL::Busty Babes Want To Play Message-ID: <20140322102100.23764.921638822.swift@cheetah011.vs3.com> X-VSENCRECIP: ZG9jQGZyZWVic2Qub3Jn Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: CamZhub List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Mar 2014 10:30:02 -0000 CamZhub - Sat., March 22, 2014 Free Big Boob Webcams Our girls cannot wait to show their big boobs on cam for you. If you like= boob chat, you are in the right place. See live web cam girls with every= thing from big natural tits to huge fake juggs. Watch them play with thei= r hard nipples and ask our big-breasted women to let you see them bouncin= g naked. Pick your busty babe and get ready for some nude action. Video c= hat or have a private cam show with your favorite girl, and watch a hot s= triptease. Don't forget to ask her to fondle her perfect tits for you. Be= autiful big tits of all shapes, ready to be licked, fucked and sucked. Ta= lk dirty live with our big-busted beauties free on our live adult webchat= . http://camzhub.com/click/live/girls/big boobs/ It is not our intention to send you email if you do not want it. If you h= ave never visited our=20 site, have not intentionally given us your email address, or believe you = are getting our messages=20 in error, please follow these steps to ensure removal from our database: http://camzhub.com/newsletters.php?a=3Dunsubscribe&type_id=3D103&email=3D= doc@freebsd.org to permanently remove your information. Follow these steps and you will be automatically removed from our databas= e. If you are=20 having trouble please contact our 24 hour support staff at 818-880-9021 o= r customerservice@vs.com,=20 or by mail at: VS Media Inc. ATTN: E-Mail Service Rep. 26500 W. Agoura Rd. Suite 102-734= Calabasas, CA 91302 USA Tel: +1-818-880-9021 From owner-freebsd-doc@FreeBSD.ORG Sun Mar 23 15:50:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C6D5B0B for ; Sun, 23 Mar 2014 15:50:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 09A7E81B for ; Sun, 23 Mar 2014 15:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2NFo1l2025426 for ; Sun, 23 Mar 2014 15:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2NFo1dI025425; Sun, 23 Mar 2014 15:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 23 Mar 2014 15:50:01 GMT Resent-Message-Id: <201403231550.s2NFo1dI025425@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrew Stevenson Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BAB02982 for ; Sun, 23 Mar 2014 15:47:10 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A6A167E3 for ; Sun, 23 Mar 2014 15:47:10 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2NFl9BT080122 for ; Sun, 23 Mar 2014 15:47:09 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2NFl94Q080121; Sun, 23 Mar 2014 15:47:09 GMT (envelope-from nobody) Message-Id: <201403231547.s2NFl94Q080121@cgiserv.freebsd.org> Date: Sun, 23 Mar 2014 15:47:09 GMT From: Andrew Stevenson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187854: options XENHVM requires options SMP X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Mar 2014 15:50:02 -0000 >Number: 187854 >Category: docs >Synopsis: options XENHVM requires options SMP >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 23 15:50:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Andrew Stevenson >Release: 10-RELEASE >Organization: UgH! >Environment: 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: If compiling a kernel with options XENHVM the build will fail unless you also have options SMP. cc -c -O2 -pipe -fno-strict-aliasing -march=k8 -std=c99 -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mno-avx -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror /usr/src/sys/x86/xen/hvm.c /usr/src/sys/x86/xen/hvm.c:120:18: error: use of undeclared identifier 'lapic_ipi_vectored'; did you mean 'xen_ipi_vectored'? .ipi_vectored = lapic_ipi_vectored, ^~~~~~~~~~~~~~~~~~ xen_ipi_vectored /usr/src/sys/x86/xen/hvm.c:75:13: note: 'xen_ipi_vectored' declared here static void xen_ipi_vectored(u_int vector, int dest); ^ 1 error generated. *** Error code 1 Stop. I don't know this dependency is a problem per se but it should be documented, e.g in xen(4) or in comments in GENERIC or if it is documented then documented in bigger letters :-) >How-To-Repeat: cd /usr/src/sys/amd64/conf cp GENERIC BLAH cd /usr/src make build kernel KERNCONF=BLAH >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Mar 23 22:40:04 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB76D7E1 for ; Sun, 23 Mar 2014 22:40:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C9053E2E for ; Sun, 23 Mar 2014 22:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2NMe3hX054649 for ; Sun, 23 Mar 2014 22:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2NMe3sL054648; Sun, 23 Mar 2014 22:40:03 GMT (envelope-from gnats) Resent-Date: Sun, 23 Mar 2014 22:40:03 GMT Resent-Message-Id: <201403232240.s2NMe3sL054648@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Allan Jude Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0217F782 for ; Sun, 23 Mar 2014 22:31:43 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C994DD89 for ; Sun, 23 Mar 2014 22:31:42 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2NMVgEY002122 for ; Sun, 23 Mar 2014 22:31:42 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2NMVgWY002114; Sun, 23 Mar 2014 22:31:42 GMT (envelope-from nobody) Message-Id: <201403232231.s2NMVgWY002114@cgiserv.freebsd.org> Date: Sun, 23 Mar 2014 22:31:42 GMT From: Allan Jude To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187872: [patch] Add EuroBSDCon 2014 to the events list X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Mar 2014 22:40:04 -0000 >Number: 187872 >Category: docs >Synopsis: [patch] Add EuroBSDCon 2014 to the events list >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Mar 23 22:40:02 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Allan Jude >Release: 11-CURRENT >Organization: ScaleEngine Inc. >Environment: FreeBSD Nexus.HML3.ScaleEngine.net 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r263560: Fri Mar 21 17:54:43 UTC 2014 root@Nexus.HML3.ScaleEngine.net:/usr/obj/usr/src/sys/NODEBUG amd64 >Description: Add EuroBSDCon 2014 (in Sophia, Bulgaria) to the events list >How-To-Repeat: >Fix: Patch attached with submission follows: Index: share/xml/events2014.xml =================================================================== --- share/xml/events2014.xml (revision 44335) +++ share/xml/events2014.xml (working copy) @@ -118,4 +118,34 @@ Administration, Security, Hacking and Embedded. Followed immediately by PGCon at the same location. + + + EuroBSDCon 2014 + http://2014.eurobsdcon.org/ + + 2014 + 9 + 25 + + + 2014 + 9 + 28 + + + Bulgaria + Sophia + InterExpo Congress Center + + EuroBSDcon is the premier European conference on the + open source BSD operating systems attracting about 250 highly + skilled engineering professionals, software developers, computer + science students and professors, and users from all over Europe + and other parts of the world. The goal of EuroBSDcon is to + exchange knowledge about the BSD operating systems, facilitate + coordination and cooperation among users and + developers. The dates for EuroBSDCon 2014 in Sofia have been + set to September 25-26th for tutotials and September 27-28th for + the main conference. + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Mon Mar 24 08:50:33 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 299D76C; Mon, 24 Mar 2014 08:50:33 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F134A380; Mon, 24 Mar 2014 08:50:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2O8oWWg070541; Mon, 24 Mar 2014 08:50:32 GMT (envelope-from bcr@freefall.freebsd.org) Received: (from bcr@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2O8oWBB070540; Mon, 24 Mar 2014 08:50:32 GMT (envelope-from bcr) Date: Mon, 24 Mar 2014 08:50:32 GMT Message-Id: <201403240850.s2O8oWBB070540@freefall.freebsd.org> To: bcr@FreeBSD.org, freebsd-doc@FreeBSD.org, bcr@FreeBSD.org From: bcr@FreeBSD.org Subject: Re: docs/187872: [patch] Add EuroBSDCon 2014 to the events list X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Mar 2014 08:50:33 -0000 Synopsis: [patch] Add EuroBSDCon 2014 to the events list Responsible-Changed-From-To: freebsd-doc->bcr Responsible-Changed-By: bcr Responsible-Changed-When: Mon Mar 24 08:49:47 UTC 2014 Responsible-Changed-Why: Take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=187872 From owner-freebsd-doc@FreeBSD.ORG Mon Mar 24 09:28:01 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC6676B8 for ; Mon, 24 Mar 2014 09:28:01 +0000 (UTC) Received: from mail-wi0-x22b.google.com (mail-wi0-x22b.google.com [IPv6:2a00:1450:400c:c05::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4BF668C6 for ; Mon, 24 Mar 2014 09:28:01 +0000 (UTC) Received: by mail-wi0-f171.google.com with SMTP id hr14so708477wib.4 for ; Mon, 24 Mar 2014 02:27:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=DjN2B1zsscFAgmp4a7imc20gLUc3f3BZmF+1Z/SUC+I=; b=q65EnTzowYpoJBG7wOQHpPVzcbLaibSetPIw3h+jotyAF2dl8Zc05b2m/qP8XtHsga 9rT95b/pyzlS7jh2ytdzXvkWQ0uYhO/uYatY8U6X6KK2jrbo6GGQhQKYdKE3pEmnCV5/ hd7ztLSUK31TAZlStROX9ZxFiq/IaFbIQU29BvVM8QDluZ4Vsv4wyrPhBuMvR6/vDY6h Ona6PwKqE0X82Mua5bE4TktMmbeOYpqRJ41gB49a3Oe4k37ec6pyia2E5+dQWYN57uLf qFVSNzxlqr1zC6HHG7j42YbXSQHI6Qbi+TAjKJvmTfyEokQ8x0kD0ABP2Kfsf5oinnSv t3pg== MIME-Version: 1.0 X-Received: by 10.180.103.134 with SMTP id fw6mr13326946wib.8.1395653279751; Mon, 24 Mar 2014 02:27:59 -0700 (PDT) Received: by 10.227.68.195 with HTTP; Mon, 24 Mar 2014 02:27:59 -0700 (PDT) Date: Mon, 24 Mar 2014 10:27:59 +0100 Message-ID: Subject: Please update handbook part 11.2.3 From: David Demelier To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Mar 2014 09:28:01 -0000 Hello there, Can you please update the 11.2.3 [1] chapter from the handbook ? It is specified that rpm2cpio is the command but actual installed command is rpm2cpio.pl. Also the -q option does not exist. In short, update to: rpm2cpio.pl < /path/to/linux.archive.rpm | cpio -id Thanks! [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/linuxemu-lbc-install.html -- Demelier David From owner-freebsd-doc@FreeBSD.ORG Mon Mar 24 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B820D5E for ; Mon, 24 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6C5E9DB for ; Mon, 24 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2OB64b8012973 for ; Mon, 24 Mar 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2OB64Ra012971 for freebsd-doc@FreeBSD.org; Mon, 24 Mar 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Mar 2014 11:06:04 GMT Message-Id: <201403241106.s2OB64Ra012971@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Mar 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/187854 doc options XENHVM requires options SMP o docs/187773 doc [handbook] callouts appear to be broken, failing to re o docs/187686 doc [patch] Update disks section of handbook for 9.x/10.x o docs/187683 doc [patch] Handbook section on bsdinstall is missing deta o docs/187644 doc ifconfig man page address_family paragraph needs clari o docs/187515 doc userinput inside screen elements is not rendered diffe o docs/187473 doc [porters-handbook]: update Qt and KDE sections o docs/187465 doc mention patchlevels in explaining security advisories o docs/187417 doc [patch] Handbook: Add some missing -tags o docs/187351 doc handbook section on ports does not mention pkg search o docs/187321 doc [handbook] [patch] Clarification needed on using geli o docs/187142 doc The Handbook (chapter 15.4) does not mention /etc/jail o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc Add an ipfilter rc.conf option in handbook for IPv6 o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178286 doc [PATCH] document the LOCAL_* vars in build(7) o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/178119 doc [ports] Porter's handbook lacks examples for using Opt o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168814 doc [patch] remove `d` negative pointer EINVAL requirement o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/78480 doc Networked printer setup unnecessarily complex in handb o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) s docs/20028 doc ASCII docs should reflect tags in the sourc 267 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Mar 24 11:30:27 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 097A0F0E; Mon, 24 Mar 2014 11:30:27 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D31DA6BD; Mon, 24 Mar 2014 11:30:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2OBUQaq023878; Mon, 24 Mar 2014 11:30:26 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2OBUQwm023877; Mon, 24 Mar 2014 11:30:26 GMT (envelope-from remko) Date: Mon, 24 Mar 2014 11:30:26 GMT Message-Id: <201403241130.s2OBUQwm023877@freefall.freebsd.org> To: brooks@one-eyed-alien.net, remko@FreeBSD.org, freebsd-doc@FreeBSD.org From: remko@FreeBSD.org Subject: Re: docs/20028: ASCII docs should reflect tags in the source X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Mar 2014 11:30:27 -0000 Synopsis: ASCII docs should reflect tags in the source State-Changed-From-To: suspended->closed State-Changed-By: remko State-Changed-When: Mon Mar 24 11:29:50 UTC 2014 State-Changed-Why: Bite the bullet, this had not been touched for almost 13 years. This will not likely be ever resolved, close the ticket. http://www.freebsd.org/cgi/query-pr.cgi?pr=20028 From owner-freebsd-doc@FreeBSD.ORG Tue Mar 25 07:06:06 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B02B808; Tue, 25 Mar 2014 07:06:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6DCC9152; Tue, 25 Mar 2014 07:06:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2P7666p005633; Tue, 25 Mar 2014 07:06:06 GMT (envelope-from gabor@freefall.freebsd.org) Received: (from gabor@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2P765x1005632; Tue, 25 Mar 2014 07:06:06 GMT (envelope-from gabor) Date: Tue, 25 Mar 2014 07:06:06 GMT Message-Id: <201403250706.s2P765x1005632@freefall.freebsd.org> To: freebsd@allanjude.com, gabor@FreeBSD.org, freebsd-doc@FreeBSD.org, gabor@FreeBSD.org From: gabor@FreeBSD.org Subject: Re: docs/187773: [handbook] callouts appear to be broken, failing to render X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Mar 2014 07:06:06 -0000 Synopsis: [handbook] callouts appear to be broken, failing to render State-Changed-From-To: open->closed State-Changed-By: gabor State-Changed-When: Tue Mar 25 07:05:19 UTC 2014 State-Changed-Why: I have reverted the changes that broke inline formatting in verbatim text. Thanks for your submission! Responsible-Changed-From-To: freebsd-doc->gabor Responsible-Changed-By: gabor Responsible-Changed-When: Tue Mar 25 07:05:19 UTC 2014 Responsible-Changed-Why: I have reverted the changes that broke inline formatting in verbatim text. Thanks for your submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=187773 From owner-freebsd-doc@FreeBSD.ORG Tue Mar 25 10:37:17 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3795F822 for ; Tue, 25 Mar 2014 10:37:17 +0000 (UTC) Received: from smtp001.eqx-ny1.vs3.com (smtp001.eqx-ny1.vs3.com [209.170.119.149]) by mx1.freebsd.org (Postfix) with ESMTP id C97448BE for ; Tue, 25 Mar 2014 10:37:15 +0000 (UTC) Received: from smtp001.eqx-ny1.vs3.com (smtp001.eqx-ny1.vs3.com [127.0.0.1]) by smtp001.eqx-ny1.vs3.com (Postfix) with ESMTP id 19DA1135807B for ; Tue, 25 Mar 2014 06:31:06 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=vs.com; h=to:from:reply-to :subject:date:mime-version:content-type :content-transfer-encoding:list-unsubscribe:message-id; s=mail; bh=6f/GE8A37jClwkAg2MB9h3tVPdA=; b=LB4JBadRRcad0ictE+OW5IZRSgkH ZsSZbRWLRHdk1uHSaFw+ldXHd8PDpf2m5FXdnVFx7Gus0QeS9Osq5HcloeTyQzmO xd44ia2yqQebTMbYQuU0IuIXzUvAe5TmwNXuOHw+q/yqsf9WiUj3eTGEd60GYAzC bjTwldmsfLpo8VQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=vs.com; h=to:from:reply-to :subject:date:mime-version:content-type :content-transfer-encoding:list-unsubscribe:message-id; q=dns; s=mail; b=AhSp99Gshf2goKsMCd8Z81O59sNGmzsyWjiBZIPm1549H4y0ilRMb 2m0M5NH07p5AJnPOEyE9d3hwfRg0EsTUTLPsOxIyV3AehHeHO/YcJZybNofbw0M+ UG+mZCut2vXzI3a563uvfKgV+uiRF68Pa7M3x6SBw1KSzAgK+gOUGg= Received: from localhost.localdomain (unknown [68.64.146.198]) by smtp001.eqx-ny1.vs3.com (Postfix) with SMTP id 9AA3B1358076 for ; Tue, 25 Mar 2014 06:31:05 -0400 (EDT) To: From: CamZhub Subject: Busty Babes Want To Play Date: Tue, 25 Mar 2014 06:31:05 -0400 X-LibVersion: 3.3.2 MIME-Version: 1.0 X-RISK-HEADER: engagement::top_boob_girls::2014-03-25 06:31:05::doc@freebsd.org::freebsd.org::IS_FL::smtp001.eqx-ny1.vs3.com::WL::Busty Babes Want To Play Message-ID: <20140325103105.11708.307459800.swift@cheetah012.vs3.com> X-VSENCRECIP: ZG9jQGZyZWVic2Qub3Jn Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: CamZhub List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Mar 2014 10:37:17 -0000 CamZhub - Tue., March 25, 2014 Free Big Boob Webcams Our girls cannot wait to show their big boobs on cam for you. If you like= boob chat, you are in the right place. See live web cam girls with every= thing from big natural tits to huge fake juggs. Watch them play with thei= r hard nipples and ask our big-breasted women to let you see them bouncin= g naked. Pick your busty babe and get ready for some nude action. Video c= hat or have a private cam show with your favorite girl, and watch a hot s= triptease. Don't forget to ask her to fondle her perfect tits for you. Be= autiful big tits of all shapes, ready to be licked, fucked and sucked. Ta= lk dirty live with our big-busted beauties free on our live adult webchat= . http://camzhub.com/click/live/girls/big boobs/ It is not our intention to send you email if you do not want it. If you h= ave never visited our=20 site, have not intentionally given us your email address, or believe you = are getting our messages=20 in error, please follow these steps to ensure removal from our database: http://camzhub.com/newsletters.php?a=3Dunsubscribe&type_id=3D103&email=3D= doc@freebsd.org to permanently remove your information. Follow these steps and you will be automatically removed from our databas= e. If you are=20 having trouble please contact our 24 hour support staff at 818-880-9021 o= r customerservice@vs.com,=20 or by mail at: VS Media Inc. ATTN: E-Mail Service Rep. 26500 W. Agoura Rd. Suite 102-734= Calabasas, CA 91302 USA Tel: +1-818-880-9021 From owner-freebsd-doc@FreeBSD.ORG Tue Mar 25 13:43:11 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B0F76AC for ; Tue, 25 Mar 2014 13:43:11 +0000 (UTC) Received: from xl28-a.jsmtp.net (xl28-a.jsmtp.net [173.244.184.201]) by mx1.freebsd.org (Postfix) with ESMTP id 03617CCC for ; Tue, 25 Mar 2014 13:43:10 +0000 (UTC) Message-ID: Subject: seeking permission to cite resources from your site From: "Michelle Peng" Date: Tue, 25 Mar 2014 13:27:32 +0000 To: Webmaster X-Priority: 3 MIME-Version: 1.0 X-Mailer: N/A X-UserID: 2004542.3825191481T851418 X-VConfig: T.3825191481 MsgID: LQA06932 LocalSender: gfcl@relay.jangosmtp.net Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Michelle Peng List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Mar 2014 13:43:11 -0000 Hello, I'm the resource curator for EducatorLabs. I=E2=80=99m building out= our resource section (http://educatorlabs.org/resources/), which will eventu= ally cover a wide range of educational topics. We hope to have a bountiful co= llection by mid-year (a daunting task, if you ask me!) :) I=E2=80=99m writ= ing to seek permission to copy out some of the citations you make on this pag= e: http://blin.net.ua//fr/gallery/npgallery.html. There are several there = that I think would make for nice additions! Also, I happened to notice a link= on that page that=E2=80=99s no longer working. It=E2=80=99s to an important = educational resource: http://www.uvsc.edu. I had the replacement on hand:= https://www.uvu.edu/, in case you=E2=80=99re still updating your site. Be= low is a short list of my favorite higher ed resources (so far!). When you ha= ve a chance, take a look and please feel free to include any on your site tha= t you feel would benefit your visitors: CollegeEd: College Planning Progra= m=09 https://bigfuture.collegeboard.org/get-started/educator-resource-center= /collegeed-college-planning-program 50 Free Educational Podcasts for Thrif= ty Learners=09 http://www.opencolleges.edu.au/informed/features/50-education= al-podcasts-you-should-check-out/ =09 College Navigator=09 http://nces.ed= .gov/collegenavigator/ Education Insights and Resources from the Experts = http://blog.zintro.com/education/ Prepare For College http://studentaid.= ed.gov/prepare-for-college US Department of Labor's Career Search Tool h= ttp://www.mynextmove.org/ The Guide to Getting a Masters in Education=09 = http://certificationmap.com/masters-in-education/ Thank you for your time= ! Kind regards, Michelle Michelle Peng m.peng@educatorlabs.org Edu= catorLabs.org :: Cultivating. Connecting. Curating. EducatorLabs | 2054 Kild= aire Farm Rd. #204 | Cary, NC | 27518 P.S. If you=E2=80=99d rather not= hear from me in the future, I do understand! Just send me an email response = with that information and I=E2=80=99ll make a note not to contact you in the = future. From owner-freebsd-doc@FreeBSD.ORG Tue Mar 25 16:50:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B971E64A for ; Tue, 25 Mar 2014 16:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8AA9A605 for ; Tue, 25 Mar 2014 16:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2PGo1tX096869 for ; Tue, 25 Mar 2014 16:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2PGo1UA096868; Tue, 25 Mar 2014 16:50:01 GMT (envelope-from gnats) Date: Tue, 25 Mar 2014 16:50:01 GMT Message-Id: <201403251650.s2PGo1UA096868@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Allan Jude Subject: Re: docs/187515: userinput inside screen elements is not rendered differently X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Allan Jude List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Mar 2014 16:50:01 -0000 The following reply was made to PR docs/187515; it has been noted by GNATS. From: Allan Jude To: bug-followup@FreeBSD.org, wblock@FreeBSD.org Cc: Subject: Re: docs/187515: userinput inside screen elements is not rendered differently Date: Tue, 25 Mar 2014 12:44:57 -0400 This was resolved when gabor@ reverted the line number patch in r44350 http://svnweb.freebsd.org/doc?view=revision&revision=44350 -- Allan Jude From owner-freebsd-doc@FreeBSD.ORG Tue Mar 25 17:42:29 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63C872B7; Tue, 25 Mar 2014 17:42:29 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 38150BA9; Tue, 25 Mar 2014 17:42:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2PHgTrZ015462; Tue, 25 Mar 2014 17:42:29 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2PHgTVd015461; Tue, 25 Mar 2014 17:42:29 GMT (envelope-from linimon) Date: Tue, 25 Mar 2014 17:42:29 GMT Message-Id: <201403251742.s2PHgTVd015461@freefall.freebsd.org> To: wblock@FreeBSD.org, linimon@FreeBSD.org, freebsd-doc@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: docs/187515: userinput inside screen elements is not rendered differently X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Mar 2014 17:42:29 -0000 Synopsis: userinput inside screen elements is not rendered differently State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Tue Mar 25 17:42:08 UTC 2014 State-Changed-Why: fix in 44350. http://www.freebsd.org/cgi/query-pr.cgi?pr=187515 From owner-freebsd-doc@FreeBSD.ORG Tue Mar 25 20:04:12 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D145E54; Tue, 25 Mar 2014 20:04:12 +0000 (UTC) Received: from mail-pd0-x241.google.com (mail-pd0-x241.google.com [IPv6:2607:f8b0:400e:c02::241]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4AE9EDAA; Tue, 25 Mar 2014 20:04:12 +0000 (UTC) Received: by mail-pd0-f193.google.com with SMTP id x10so329808pdj.8 for ; Tue, 25 Mar 2014 13:04:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=TxTT5w0P14ZKdi0NFQuaMggEzRQt7rCm9Cu50dx8wb4=; b=ZOo65r5DA3WydI0Hxklo0ube7S9DRbLu4vG/1SNaOByFnJm24kF6luHyuNSibb4B0E Ylimk5HY4lIi6N6j8W041RZp4sPXcmP95DclKjGCnL3XXrPq/WvCI4TMsgsVih2qGNf7 0Ibo9msSKDyfyqnGZ1lDXkG9qW5hVTZot4rTi0u/0tLcfmYIuo9XrkGBwMyJ4qIb/wZJ ZFJVYx+cpfxMvxKTABmb7DsCdmQVY9G4RHltD8FNYheI3NLbjGeEONnjbMBPTk9eS3Hk XpPh9DEER/0bOkJb7m+EUAsAwFBbxsyYAve5jwoD1mqu6QJyucZxfFGProVwqRLMM1bQ VBhg== MIME-Version: 1.0 X-Received: by 10.66.146.105 with SMTP id tb9mr5791879pab.157.1395771960518; Tue, 25 Mar 2014 11:26:00 -0700 (PDT) Received: by 10.68.27.106 with HTTP; Tue, 25 Mar 2014 11:26:00 -0700 (PDT) Date: Tue, 25 Mar 2014 23:56:00 +0530 Message-ID: Subject: Gain Organic Traffic: Freebsd.Org :PS From: Carl Shively To: board@FreeBSDFoundation.org, privacy@FreeBSD.org, freebsd-questions@FreeBSD.org, freebsd-doc@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Mar 2014 20:04:12 -0000 Dear Freebsd Team, I thought you might like to know some of the reasons why you are not getting enough Organic search engine and Social Media traffic for your website. 1. Your website is not ranking top in Google organic search for many competitive keywords. 2. Your website profile needs to have regular update in major Social Media sites. 3. Your site has less number of Google & Yahoo back links, this can be improved further. There are many additional improvements that could be made to your website, and if you would like to learn about them, and are curious to know what our working together would involve, then I would be glad to provide you with a detailed analysis in the form of a WEBSITE AUDIT REPORT for FREE. Our clients consistently tell us that their customers find them because they are at the top of the Google search rankings. Being at the top left of Google (#1- #3 organic positions) is the best thing you can do for your company's website traffic and online reputation. Our packages are designed for a complete advance SEO experience which includes SMO, Brand management, Reputation management, SEO etc. in order to beat your competitors. Sounds interesting? Feel free to email us or alternatively you can provide me with your phone number and the best time to call you. -------------------------------------------------- Best Regards, Smith William |SEO Consultant PH. No: (+1)818-963-9366 Skype: sam.webmarketing -------------------------------------------------- PS1: This is onetime email and you may ask us to "REMOVE" you from our mailing list. PS2: We operate 24 x7. I will be happy to send you links to price list, money back guarantee, client rankings, client testimonials, "How we are different from others?", and "Why should you choose us?" on receiving a response from you. From owner-freebsd-doc@FreeBSD.ORG Tue Mar 25 23:50:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96FBDD13 for ; Tue, 25 Mar 2014 23:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 59FF167F for ; Tue, 25 Mar 2014 23:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2PNo1QX027857 for ; Tue, 25 Mar 2014 23:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2PNo1iu027849; Tue, 25 Mar 2014 23:50:01 GMT (envelope-from gnats) Resent-Date: Tue, 25 Mar 2014 23:50:01 GMT Resent-Message-Id: <201403252350.s2PNo1iu027849@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ondra Knezour Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D410BF8 for ; Tue, 25 Mar 2014 23:40:14 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8988C3D8 for ; Tue, 25 Mar 2014 23:40:14 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s2PNeEXF021334 for ; Tue, 25 Mar 2014 23:40:14 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s2PNeEww021331; Tue, 25 Mar 2014 23:40:14 GMT (envelope-from nobody) Message-Id: <201403252340.s2PNeEww021331@cgiserv.freebsd.org> Date: Tue, 25 Mar 2014 23:40:14 GMT From: Ondra Knezour To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/187940: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Mar 2014 23:50:01 -0000 >Number: 187940 >Category: docs >Synopsis: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 25 23:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ondra Knezour >Release: 10.0-RELEASE >Organization: >Environment: FreeBSD almara.koukaam.se 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The devinfo(8) man page in the section SEE ALSO refers pnpinfo(8) manual page, which was probably removed. It is available on 9.2-RELEASE, but was probably removed? >How-To-Repeat: man 8 devinfo on 10.0-RELEASE, check SEE ALSO section, try man 8 pnpinfo. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 09:49:50 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35A846B2 for ; Wed, 26 Mar 2014 09:49:50 +0000 (UTC) Received: from smtp-newslist-209.md02.com (smtp-newslist-209.md02.com [209.172.40.209]) by mx1.freebsd.org (Postfix) with ESMTP id 053EDF50 for ; Wed, 26 Mar 2014 09:49:49 +0000 (UTC) Received: by smtp-newslist-209.md02.com id h6ahbs19sl8i for ; Wed, 26 Mar 2014 05:39:06 -0400 (envelope-from ) Subject: CCTV From: "Phil" To: doc@freebsd.org Tag-id: 208377.3279879.2136996.56.m.b7aff09e IP-Address: 209.172.40.209 Interface-id: 443 Parent-id: 93133 Client-id: 208377 MIME-Version: 1.0 Message-Id: <20140326093906.95CD18BE08@pmta4-1-08> Date: Wed, 26 Mar 2014 05:39:06 -0400 (EDT) Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 09:49:50 -0000 Hi, We can install a CCTV at your house or business for the following price. 1 Camera system =C2=A3399 2 Camera system =C2=A3599 3 Camera system =C2=A3699 4 Camera system =C2=A3899 Would you like me to arrange this for you? You get the following with all our systems. - See the cameras on your mobile. - High quality cameras with wide lens. - High capacity storage. - Infrared night vision. - Includes all parts and labour. - Includes cameras and recorder. - 1 years hardware warranty. We can beat any like for like price. Our engineers can install a system anywhere in the UK* Regards, CCTV Warrington Telephone: 01204 216810 Website: www.cctvwarrington.co.uk Address: 3 Churchbank, Bolton, BL1 1HX * Additional costs for any location which is more than 50 miles from our= offices. Unsubscribe from this mailing list: http://link.mailanimal01.com/u/443/0= e038a683332c8b28eeff1b9767edb349f0c9baed33abfd6 From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 09:49:54 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18B4077A for ; Wed, 26 Mar 2014 09:49:54 +0000 (UTC) Received: from smtp-newslist-206.md02.com (smtp-newslist-206.md02.com [209.172.40.206]) by mx1.freebsd.org (Postfix) with ESMTP id DD7D9F59 for ; Wed, 26 Mar 2014 09:49:52 +0000 (UTC) Received: by smtp-newslist-206.md02.com id h6ahc219sl8b for ; Wed, 26 Mar 2014 05:39:11 -0400 (envelope-from ) Subject: CCTV From: "Phil" To: freebsd-doc@freebsd.org Tag-id: 208377.3279879.2136996.64.m.1c5e6095 IP-Address: 209.172.40.206 Interface-id: 443 Parent-id: 93133 Client-id: 208377 MIME-Version: 1.0 Message-Id: <20140326093911.8D04D8BE0E@pmta4-1-08> Date: Wed, 26 Mar 2014 05:39:11 -0400 (EDT) Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 09:49:54 -0000 Hi, We can install a CCTV at your house or business for the following price. 1 Camera system =C2=A3399 2 Camera system =C2=A3599 3 Camera system =C2=A3699 4 Camera system =C2=A3899 Would you like me to arrange this for you? You get the following with all our systems. - See the cameras on your mobile. - High quality cameras with wide lens. - High capacity storage. - Infrared night vision. - Includes all parts and labour. - Includes cameras and recorder. - 1 years hardware warranty. We can beat any like for like price. Our engineers can install a system anywhere in the UK* Regards, CCTV Warrington Telephone: 01204 216810 Website: www.cctvwarrington.co.uk Address: 3 Churchbank, Bolton, BL1 1HX * Additional costs for any location which is more than 50 miles from our= offices. Unsubscribe from this mailing list: http://link.mailanimal01.com/u/443/0= e038a683332c8b25b44534781ea88862c10e71d98e9e653 From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 10:53:59 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 696953CD; Wed, 26 Mar 2014 10:53:59 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E8419850; Wed, 26 Mar 2014 10:53:58 +0000 (UTC) Received: from mercury.issp.ac.ru [77.236.34.155:33405] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id s2QArst6083352 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Wed, 26 Mar 2014 14:53:54 +0400 (MSK) From: Max Brazhnikov To: freebsd-doc@freebsd.org Subject: Re: docs/187473: [porters-handbook]: update Qt and KDE sections Date: Wed, 26 Mar 2014 10:53:55 +0000 Message-ID: <3934011.y8ShCAbfa6@mercury.ph.man.ac.uk> User-Agent: KMail/4.12.3 (FreeBSD/9.2-STABLE; KDE/4.12.3; amd64; ; ) In-Reply-To: <201403120841.s2C8fAiQ029781@cgiserv.freebsd.org> References: <201403120841.s2C8fAiQ029781@cgiserv.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: freebsd-gnats-submit@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 10:53:59 -0000 On Wed, 12 Mar 2014 08:41:10 +0000 Max Brazhnikov wrote: > > >Number: 187473 > >Category: docs > >Synopsis: [porters-handbook]: update Qt and KDE sections > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-doc > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: change-request > >Submitter-Id: current-users > >Arrival-Date: Wed Mar 12 08:50:00 UTC 2014 > >Closed-Date: > >Last-Modified: > >Originator: Max Brazhnikov > >Release: FreeBSD 9.2-STABLE amd64 > >Organization: > >Environment: > >Description: > http://people.freebsd.org/~makc/patches/ph-qt.diff > > Qt section: > - Rework due to recently added Qt 5 ports > KDE section: > - Remove stale staff, reflect current state > - Consistently use KDE 4 (instead of KDE 4.x) > - Update description for KDE components > >How-To-Repeat: > > >Fix: Could anybody look at this, Qt 5 is already in ports. Thanks, Max From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 11:00:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AFE9F531 for ; Wed, 26 Mar 2014 11:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9DA858A5 for ; Wed, 26 Mar 2014 11:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2QB01jd066075 for ; Wed, 26 Mar 2014 11:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2QB01tt066074; Wed, 26 Mar 2014 11:00:01 GMT (envelope-from gnats) Date: Wed, 26 Mar 2014 11:00:01 GMT Message-Id: <201403261100.s2QB01tt066074@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Max Brazhnikov Subject: Re: docs/187473: [porters-handbook]: update Qt and KDE sections X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Max Brazhnikov List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 11:00:01 -0000 The following reply was made to PR docs/187473; it has been noted by GNATS. From: Max Brazhnikov To: freebsd-doc@freebsd.org Cc: freebsd-gnats-submit@freebsd.org Subject: Re: docs/187473: [porters-handbook]: update Qt and KDE sections Date: Wed, 26 Mar 2014 10:53:55 +0000 On Wed, 12 Mar 2014 08:41:10 +0000 Max Brazhnikov wrote: > > >Number: 187473 > >Category: docs > >Synopsis: [porters-handbook]: update Qt and KDE sections > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-doc > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: change-request > >Submitter-Id: current-users > >Arrival-Date: Wed Mar 12 08:50:00 UTC 2014 > >Closed-Date: > >Last-Modified: > >Originator: Max Brazhnikov > >Release: FreeBSD 9.2-STABLE amd64 > >Organization: > >Environment: > >Description: > http://people.freebsd.org/~makc/patches/ph-qt.diff > > Qt section: > - Rework due to recently added Qt 5 ports > KDE section: > - Remove stale staff, reflect current state > - Consistently use KDE 4 (instead of KDE 4.x) > - Update description for KDE components > >How-To-Repeat: > > >Fix: Could anybody look at this, Qt 5 is already in ports. Thanks, Max From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 11:05:59 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15BB3634; Wed, 26 Mar 2014 11:05:59 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DC528946; Wed, 26 Mar 2014 11:05:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2QB5w5N069276; Wed, 26 Mar 2014 11:05:58 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2QB5wUm069275; Wed, 26 Mar 2014 11:05:58 GMT (envelope-from crees) Date: Wed, 26 Mar 2014 11:05:58 GMT Message-Id: <201403261105.s2QB5wUm069275@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-doc@FreeBSD.org, crees@FreeBSD.org From: crees@FreeBSD.org Subject: Re: docs/187686: [patch] Update disks section of handbook for 9.x/10.x X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 11:05:59 -0000 Synopsis: [patch] Update disks section of handbook for 9.x/10.x Responsible-Changed-From-To: freebsd-doc->crees Responsible-Changed-By: crees Responsible-Changed-When: Wed Mar 26 11:05:58 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=187686 From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 11:06:31 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C1C8678; Wed, 26 Mar 2014 11:06:31 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 60A07950; Wed, 26 Mar 2014 11:06:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2QB6VPc069375; Wed, 26 Mar 2014 11:06:31 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2QB6V40069374; Wed, 26 Mar 2014 11:06:31 GMT (envelope-from crees) Date: Wed, 26 Mar 2014 11:06:31 GMT Message-Id: <201403261106.s2QB6V40069374@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-doc@FreeBSD.org, crees@FreeBSD.org From: crees@FreeBSD.org Subject: Re: docs/187683: [patch] Handbook section on bsdinstall is missing details of ZFS feature added in 10.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 11:06:31 -0000 Synopsis: [patch] Handbook section on bsdinstall is missing details of ZFS feature added in 10.0 Responsible-Changed-From-To: freebsd-doc->crees Responsible-Changed-By: crees Responsible-Changed-When: Wed Mar 26 11:06:31 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=187683 From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 15:31:45 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3EFAD1CC; Wed, 26 Mar 2014 15:31:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 11B34CF6; Wed, 26 Mar 2014 15:31:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2QFVi0L053640; Wed, 26 Mar 2014 15:31:44 GMT (envelope-from jhb@freefall.freebsd.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2QFViww053639; Wed, 26 Mar 2014 15:31:44 GMT (envelope-from jhb) Date: Wed, 26 Mar 2014 15:31:44 GMT Message-Id: <201403261531.s2QFViww053639@freefall.freebsd.org> To: jhb@FreeBSD.org, freebsd-doc@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jhb@FreeBSD.org Subject: Re: kern/187854: options XENHVM requires options SMP X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 15:31:45 -0000 Synopsis: options XENHVM requires options SMP Responsible-Changed-From-To: freebsd-doc->freebsd-bugs Responsible-Changed-By: jhb Responsible-Changed-When: Wed Mar 26 15:30:56 UTC 2014 Responsible-Changed-Why: This should be fixed and isn't a doc bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=187854 From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 17:55:11 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5AEFD54; Wed, 26 Mar 2014 17:55:11 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9CCE9323; Wed, 26 Mar 2014 17:55:11 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 860DBB94C; Wed, 26 Mar 2014 13:55:10 -0400 (EDT) From: John Baldwin To: freebsd-doc@freebsd.org, webmaster@freebsd.org Subject: Re: docs/187940: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE Date: Wed, 26 Mar 2014 11:57:54 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.4-CBSD-20130906; KDE/4.5.5; amd64; ; ) References: <201403252340.s2PNeEww021331@cgiserv.freebsd.org> In-Reply-To: <201403252340.s2PNeEww021331@cgiserv.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201403261157.54624.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Wed, 26 Mar 2014 13:55:10 -0400 (EDT) Cc: freebsd-gnats-submit@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 17:55:11 -0000 On Tuesday, March 25, 2014 7:40:14 pm Ondra Knezour wrote: > > >Number: 187940 > >Category: docs > >Synopsis: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-doc > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: doc-bug > >Submitter-Id: current-users > >Arrival-Date: Tue Mar 25 23:50:00 UTC 2014 > >Closed-Date: > >Last-Modified: > >Originator: Ondra Knezour > >Release: 10.0-RELEASE > >Organization: > >Environment: > FreeBSD almara.koukaam.se 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 > > >Description: > The devinfo(8) man page in the section SEE ALSO refers pnpinfo(8) manual page, which was probably removed. It is available on 9.2-RELEASE, but was probably removed? > >How-To-Repeat: > man 8 devinfo on 10.0-RELEASE, check SEE ALSO section, try man 8 pnpinfo. > >Fix: pnpinfo is only built for i386, but it does exist. man.cgi appears to be broken for 9.1 release and later (9.0 finds pnpinfo.8 for i386, but 9.1 and later do not) man.cgi for i386 9.1 also doesn't find other i386-specific manpages like apmd(8) or wlconfig(8). Specifically, it seems like 9.1 and later are using amd64 manpages when i386 is selected. Looks like sparc64 is also busted (can't find ofwdump(8)), so it seems like man.cgi is just always doing amd64 for 9.1 and later. -- John Baldwin From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 17:59:43 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 351C3FF5; Wed, 26 Mar 2014 17:59:43 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 032D037D; Wed, 26 Mar 2014 17:59:42 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id AC1B92295; Wed, 26 Mar 2014 17:59:35 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us AC1B92295 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Wed, 26 Mar 2014 13:59:33 -0400 From: Glen Barber To: John Baldwin Subject: Re: docs/187940: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE Message-ID: <20140326175933.GL1718@glenbarber.us> References: <201403252340.s2PNeEww021331@cgiserv.freebsd.org> <201403261157.54624.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="kkRamCq5m5VQq0L6" Content-Disposition: inline In-Reply-To: <201403261157.54624.jhb@freebsd.org> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: webmaster@freebsd.org, freebsd-doc@freebsd.org, freebsd-gnats-submit@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 17:59:43 -0000 --kkRamCq5m5VQq0L6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 26, 2014 at 11:57:54AM -0400, John Baldwin wrote: > pnpinfo is only built for i386, but it does exist. man.cgi appears to be > broken for 9.1 release and later (9.0 finds pnpinfo.8 for i386, but 9.1 > and later do not) man.cgi for i386 9.1 also doesn't find other i386-spec= ific > manpages like apmd(8) or wlconfig(8). Specifically, it seems like 9.1 > and later are using amd64 manpages when i386 is selected. Looks like spa= rc64 > is also busted (can't find ofwdump(8)), so it seems like man.cgi is just > always doing amd64 for 9.1 and later. >=20 Hmm, I did not see any architecture-specific things when adding the manual pages for 9.2 and 10.0, but I can confirm that for these two releases at least, I did take the manuals from the amd64 base.txz. I'll poke around a bit on the pre-9.0 directories to see what is needed for i386 and !x86 architectures, but may need a day or so to sort things out. Glen --kkRamCq5m5VQq0L6 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTMxWFAAoJELls3eqvi17QvDUP/R3TFPpqETkab5yxsmrmOY2R kzEVtHyZSJrt9r1pdjVhTJjrjR3z78odFh6vFDiP8Dp/4ddLtVUbJjiBn3bEenES j2roZ6K9P1pK2e7rhw0b1+X7BY+YQiBgNBllUP7BsHDXdQmgDOKpfaD2IgikTqzI tRMvTl29cxAm9XjdF7OtLmR+wT07Lgw1+kwUka8wUcwnskYSJ+M12nXlSOFT8DME eR+vL2t3cxVUAz+afK5AP0B+uvMb9yYDJ7EPiyPSZsmlms5IlB7mLLCUal1b4Q/O WyF4NWxI8M9zCyJiJ3IANjpOB6XhbN+eSA1JbWYQVRFPhVRnCvl48EIlzBtYv3H7 2VqB/tqg/43EGvtxAifKfqiwuFeoM5VFxlG7znG4HEpxTKSwXN08JuxRE10Z7f3T S+wbJnSOMegQDSKQbSjPwWbjz20RLltjYYCLeX4fBoSRxH9A5VR8zvI1Fp3+GN2H fpSPxIw5pbe6JnZeaQuJm0ZFtjnKaHaakZrlJQU045ayw+Wk/xpvphqT+yRcZVzu vS07BHshsTVw2T5u+Y+RuYoyOHfLJtOozBgJ+5Ivy8b9No/BYLx39CSf8RMBXotw Fm4qzpw9Ngn0xziqpOjwiGKNwmFOm/oqU+jJh4BL4YiCjryIqv+dFvweHMMOYyed xv8XduhwChZL+3+jbn4K =AiOD -----END PGP SIGNATURE----- --kkRamCq5m5VQq0L6-- From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 18:00:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA9F1D0 for ; Wed, 26 Mar 2014 18:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 ADA9D387 for ; Wed, 26 Mar 2014 18:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2QI01sl097675 for ; Wed, 26 Mar 2014 18:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2QI01Qf097674; Wed, 26 Mar 2014 18:00:01 GMT (envelope-from gnats) Date: Wed, 26 Mar 2014 18:00:01 GMT Message-Id: <201403261800.s2QI01Qf097674@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Glen Barber Subject: Re: docs/187940: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Glen Barber List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 18:00:01 -0000 The following reply was made to PR docs/187940; it has been noted by GNATS. From: Glen Barber To: John Baldwin Cc: freebsd-doc@freebsd.org, webmaster@freebsd.org, Ondra Knezour , freebsd-gnats-submit@freebsd.org Subject: Re: docs/187940: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE Date: Wed, 26 Mar 2014 13:59:33 -0400 --kkRamCq5m5VQq0L6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 26, 2014 at 11:57:54AM -0400, John Baldwin wrote: > pnpinfo is only built for i386, but it does exist. man.cgi appears to be > broken for 9.1 release and later (9.0 finds pnpinfo.8 for i386, but 9.1 > and later do not) man.cgi for i386 9.1 also doesn't find other i386-spec= ific > manpages like apmd(8) or wlconfig(8). Specifically, it seems like 9.1 > and later are using amd64 manpages when i386 is selected. Looks like spa= rc64 > is also busted (can't find ofwdump(8)), so it seems like man.cgi is just > always doing amd64 for 9.1 and later. >=20 Hmm, I did not see any architecture-specific things when adding the manual pages for 9.2 and 10.0, but I can confirm that for these two releases at least, I did take the manuals from the amd64 base.txz. I'll poke around a bit on the pre-9.0 directories to see what is needed for i386 and !x86 architectures, but may need a day or so to sort things out. Glen --kkRamCq5m5VQq0L6 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTMxWFAAoJELls3eqvi17QvDUP/R3TFPpqETkab5yxsmrmOY2R kzEVtHyZSJrt9r1pdjVhTJjrjR3z78odFh6vFDiP8Dp/4ddLtVUbJjiBn3bEenES j2roZ6K9P1pK2e7rhw0b1+X7BY+YQiBgNBllUP7BsHDXdQmgDOKpfaD2IgikTqzI tRMvTl29cxAm9XjdF7OtLmR+wT07Lgw1+kwUka8wUcwnskYSJ+M12nXlSOFT8DME eR+vL2t3cxVUAz+afK5AP0B+uvMb9yYDJ7EPiyPSZsmlms5IlB7mLLCUal1b4Q/O WyF4NWxI8M9zCyJiJ3IANjpOB6XhbN+eSA1JbWYQVRFPhVRnCvl48EIlzBtYv3H7 2VqB/tqg/43EGvtxAifKfqiwuFeoM5VFxlG7znG4HEpxTKSwXN08JuxRE10Z7f3T S+wbJnSOMegQDSKQbSjPwWbjz20RLltjYYCLeX4fBoSRxH9A5VR8zvI1Fp3+GN2H fpSPxIw5pbe6JnZeaQuJm0ZFtjnKaHaakZrlJQU045ayw+Wk/xpvphqT+yRcZVzu vS07BHshsTVw2T5u+Y+RuYoyOHfLJtOozBgJ+5Ivy8b9No/BYLx39CSf8RMBXotw Fm4qzpw9Ngn0xziqpOjwiGKNwmFOm/oqU+jJh4BL4YiCjryIqv+dFvweHMMOYyed xv8XduhwChZL+3+jbn4K =AiOD -----END PGP SIGNATURE----- --kkRamCq5m5VQq0L6-- From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 18:00:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D503BD3 for ; Wed, 26 Mar 2014 18:00:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A8D8A38A for ; Wed, 26 Mar 2014 18:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2QI02BR097681 for ; Wed, 26 Mar 2014 18:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2QI02FF097680; Wed, 26 Mar 2014 18:00:02 GMT (envelope-from gnats) Date: Wed, 26 Mar 2014 18:00:02 GMT Message-Id: <201403261800.s2QI02FF097680@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: John Baldwin Subject: Re: docs/187940: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: John Baldwin List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 18:00:02 -0000 The following reply was made to PR docs/187940; it has been noted by GNATS. From: John Baldwin To: freebsd-doc@freebsd.org, webmaster@freebsd.org Cc: Ondra Knezour , freebsd-gnats-submit@freebsd.org Subject: Re: docs/187940: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE Date: Wed, 26 Mar 2014 11:57:54 -0400 On Tuesday, March 25, 2014 7:40:14 pm Ondra Knezour wrote: > > >Number: 187940 > >Category: docs > >Synopsis: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-doc > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: doc-bug > >Submitter-Id: current-users > >Arrival-Date: Tue Mar 25 23:50:00 UTC 2014 > >Closed-Date: > >Last-Modified: > >Originator: Ondra Knezour > >Release: 10.0-RELEASE > >Organization: > >Environment: > FreeBSD almara.koukaam.se 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 > > >Description: > The devinfo(8) man page in the section SEE ALSO refers pnpinfo(8) manual page, which was probably removed. It is available on 9.2-RELEASE, but was probably removed? > >How-To-Repeat: > man 8 devinfo on 10.0-RELEASE, check SEE ALSO section, try man 8 pnpinfo. > >Fix: pnpinfo is only built for i386, but it does exist. man.cgi appears to be broken for 9.1 release and later (9.0 finds pnpinfo.8 for i386, but 9.1 and later do not) man.cgi for i386 9.1 also doesn't find other i386-specific manpages like apmd(8) or wlconfig(8). Specifically, it seems like 9.1 and later are using amd64 manpages when i386 is selected. Looks like sparc64 is also busted (can't find ofwdump(8)), so it seems like man.cgi is just always doing amd64 for 9.1 and later. -- John Baldwin From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 20:11:32 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9CA7BC3 for ; Wed, 26 Mar 2014 20:11:32 +0000 (UTC) Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [IPv6:2a01:e0c:1:1599::10]) by mx1.freebsd.org (Postfix) with ESMTP id ACC29603 for ; Wed, 26 Mar 2014 20:11:31 +0000 (UTC) Received: from zimbra59-e10.priv.proxad.net (unknown [172.20.243.209]) by smtp1-g21.free.fr (Postfix) with ESMTP id 34A5D9400A0 for ; Wed, 26 Mar 2014 21:11:25 +0100 (CET) Date: Wed, 26 Mar 2014 21:11:24 +0100 (CET) From: geodni@free.fr To: freebsd-doc@FreeBSD.org Message-ID: <496508915.218059164.1395864684112.JavaMail.root@zimbra59-e10.priv.proxad.net> In-Reply-To: <455076663.218042394.1395864408127.JavaMail.root@zimbra59-e10.priv.proxad.net> Subject: bad or broken link about "Documentation"=> menu MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [78.226.157.75] X-Mailer: Zimbra 7.2.0-GA2598 (ZimbraWebClient - FF3.0 (Win)/7.2.0-GA2598) X-Authenticated-User: geodni@free.fr X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 20:11:32 -0000 Hi, I found a bad or broken link on the "Documentation" menu at www.freebsd.org site. It provides "All books and articles" with this link "http://www.freebsd.org/docs/books.html/" but it is redirected to a wonderful "page not found" with link "http://www.freebsd.org/4xx.html". Regards, Denis From owner-freebsd-doc@FreeBSD.ORG Wed Mar 26 20:13:32 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03405C2A for ; Wed, 26 Mar 2014 20:13:32 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id CF86269C for ; Wed, 26 Mar 2014 20:13:31 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allan.jude@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 0F77F636CB for ; Wed, 26 Mar 2014 20:13:30 +0000 (UTC) Message-ID: <533334E6.2080908@allanjude.com> Date: Wed, 26 Mar 2014 16:13:26 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: bad or broken link about "Documentation"=> menu References: <496508915.218059164.1395864684112.JavaMail.root@zimbra59-e10.priv.proxad.net> In-Reply-To: <496508915.218059164.1395864684112.JavaMail.root@zimbra59-e10.priv.proxad.net> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mikR95o3WD05OsiV1D58QHJloTlkBjk6B" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 20:13:32 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --mikR95o3WD05OsiV1D58QHJloTlkBjk6B Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-03-26 16:11, geodni@free.fr wrote: > Hi, > I found a bad or broken link on the "Documentation" menu at www.freebsd= =2Eorg site. > It provides "All books and articles" with this link "http://www.freebsd= =2Eorg/docs/books.html/" but it is redirected to a wonderful "page not fo= und" with link "http://www.freebsd.org/4xx.html". > Regards, > Denis > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" >=20 There should not be a trailing slash there The url should just be: http://www.freebsd.org/docs/books.html The link appears correctly on my system:
  • All Books and Articles
  • --=20 Allan Jude --mikR95o3WD05OsiV1D58QHJloTlkBjk6B Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTMzTpAAoJEJrBFpNRJZKfnW0P/0xjjIio4QP3seCjRZh8V4/f 6g+t7cOkf4D+/o5xkrPR+38AK3SJC0i3T6l1j4ZIyPEFVCgQ9vhJjoHWQ6EeeVYa MlrryEGMJQfgTh/CGV3raOlQ80LuE1ip9vrsrG9jsBRwt6czLmRVQrnzJ2GmaNPq kl0HcQQtFZxEhR9b3WtjbIik/1gwCG16mt750XtuikS7U7fFF467f1ILZMZM6pRC SL1zOKXL9NIDGld0uEGIUeD+k6yrw/yY8EkFaF5X6SXioDSYMyZ1hIjS4sPlymXN DVEq8sC5HfRwclbXbL1MDDqUYzWQF1rQi9pl5HmVaNsr00Ex/EmwWSRw1+fa8Rmf t66zMNrKEjUUUMBMHZNrQjp4wVqcCln4nEuYhGc5E7UhHkHSm3z/gph5QFlQgf6P UnFfitMbBteHv8EqfBh8yob0QV2XpJUlcwxahYLtcJ2cbsD1/VN+HAW3IrbaSZP8 LHiCGGZVJ0AXcz4rhm0maOogaSIbCjEqM+8Y5SmD8l9UKKpNhJn8SJbSPO1DogZG QGwkxX6jQ3aeqKRaL9zc9C2QPQpQXvMKqTtT6UmIGIwzUVlynF4BDq9Tz7mAhc2H fmyG1Rzfs33P7FeXXD+autNkqu717CUisou/urEPTghnAjO0omzjR4Vs8PabYkF2 WH4wKehSiBbuzXC9C7uQ =XYgW -----END PGP SIGNATURE----- --mikR95o3WD05OsiV1D58QHJloTlkBjk6B-- From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 03:08:08 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C29555C3; Thu, 27 Mar 2014 03:08:08 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 92F351D9; Thu, 27 Mar 2014 03:08:08 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id AE0105B20; Thu, 27 Mar 2014 03:08:06 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us AE0105B20 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Wed, 26 Mar 2014 23:08:04 -0400 From: Glen Barber To: geodni@free.fr Subject: Re: bad or broken link about "Documentation"=> menu Message-ID: <20140327030804.GE1970@glenbarber.us> References: <455076663.218042394.1395864408127.JavaMail.root@zimbra59-e10.priv.proxad.net> <496508915.218059164.1395864684112.JavaMail.root@zimbra59-e10.priv.proxad.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="7LkOrbQMr4cezO2T" Content-Disposition: inline In-Reply-To: <496508915.218059164.1395864684112.JavaMail.root@zimbra59-e10.priv.proxad.net> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 03:08:08 -0000 --7LkOrbQMr4cezO2T Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Mar 26, 2014 at 09:11:24PM +0100, geodni@free.fr wrote: > Hi, > I found a bad or broken link on the "Documentation" menu at > www.freebsd.org site. > It provides "All books and articles" with this link > "http://www.freebsd.org/docs/books.html/" but it is redirected to > a wonderful "page not found" with link "http://www.freebsd.org/4xx.html". What is the original link referencing the URL to books.html/ you pasted? The trailing slash ('/') is the problem, and omitting it from the URL gives the expected page. Glen --7LkOrbQMr4cezO2T Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTM5YUAAoJELls3eqvi17QeOwQAMa54b0xw5wS4egdAH9TYoCX mY/Toak7B7bJEH57gMqBSNpX3F2IAO3jEIjkGTWvUOgr9zlTeJFFguDOHZqWj21J GQfq9sWYibQvz/zq19Lkl/bABTAB9aD8FGspBCPd5Hg5+bmnKFeKI7lyK/4u6Y9D 4Q/TrkgTiscM7sXZnBFOdbxQ5RMI3lTCGBBV5mwAnxAr5uekqr7Byv3bi3paRBTe 0SFzxBCvt3/iOU8u4NPKhPhzUQ4LrN1aHJnHhMxLugdyQP205LB3irD5igycC150 pUYuMZpUgD9ZbKJUIq1EZX8tBgPfGlAGN+EWCRdoDfEf8jgIHpRzY2XTxPZmh4FQ uQYHaDqsZzLmVuikVOkbjpgRKh4xCHWLogMg0jtvFxKzY2qSEfV8ELm167T0fTvh GrTmjwBobugsLzAS/jBGl7axZF6snGI4QWg8hgl8uIh9wPsbtREyAA9dFMp/ndNm sTIEroCLNw973O1K6zv7zNWqg72c+DU+y04hIc1QIVSj+5+JDYIPHDP4juosexT1 DXqAzmKadAKELdg8y7TyO7QR9l8pOhf6uX+XtWtThbZkyVGIoPlsjNg1I2N3nX4y k4RdAijDUYdJ+zYRGVjr8nY9bNn1U/oSU8ecBm7hkgy8nKlg1xDdzm3cdaB+39tF fcshZs+ST/TSuVNKniQ+ =tV0f -----END PGP SIGNATURE----- --7LkOrbQMr4cezO2T-- From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 06:45:41 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83B71F71; Thu, 27 Mar 2014 06:45:41 +0000 (UTC) Received: from smtp5-g21.free.fr (smtp5-g21.free.fr [IPv6:2a01:e0c:1:1599::14]) by mx1.freebsd.org (Postfix) with ESMTP id 847B467D; Thu, 27 Mar 2014 06:45:38 +0000 (UTC) Received: from zimbra59-e10.priv.proxad.net (unknown [172.20.243.209]) by smtp5-g21.free.fr (Postfix) with ESMTP id A212ED48044; Thu, 27 Mar 2014 07:45:32 +0100 (CET) Date: Thu, 27 Mar 2014 07:45:31 +0100 (CET) From: geodni@free.fr To: Glen Barber Message-ID: <106267689.219229028.1395902731510.JavaMail.root@zimbra59-e10.priv.proxad.net> In-Reply-To: <20140327030804.GE1970@glenbarber.us> Subject: Re: bad or broken link about "Documentation"=> menu MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [78.226.157.75] X-Mailer: Zimbra 7.2.0-GA2598 (ZimbraWebClient - FF3.0 (Win)/7.2.0-GA2598) X-Authenticated-User: geodni@free.fr Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 06:45:41 -0000 Hi, http://www.freebsd.org/cgi/man.cgi?query=3Dpkg&apropos=3D0&sektion=3D0&manp= ath=3DFreeBSD+10.0-RELEASE&arch=3Ddefault&format=3Dhtml Denis ----- Mail original ----- De: "Glen Barber" =C3=80: geodni@free.fr Cc: freebsd-doc@FreeBSD.org Envoy=C3=A9: Jeudi 27 Mars 2014 04:08:04 Objet: Re: bad or broken link about "Documentation"=3D> menu On Wed, Mar 26, 2014 at 09:11:24PM +0100, geodni@free.fr wrote: > Hi, > I found a bad or broken link on the "Documentation" menu at > www.freebsd.org site. > It provides "All books and articles" with this link > "http://www.freebsd.org/docs/books.html/" but it is redirected to > a wonderful "page not found" with link "http://www.freebsd.org/4xx.html". What is the original link referencing the URL to books.html/ you pasted? The trailing slash ('/') is the problem, and omitting it from the URL gives the expected page. Glen From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 08:05:08 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5280E7F for ; Thu, 27 Mar 2014 08:05:08 +0000 (UTC) Received: from maile-ed.linkedin.com (maile-ed.linkedin.com [199.101.162.60]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.linkedin.com", Issuer "Thawte SGC CA - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C5F82D0E for ; Thu, 27 Mar 2014 08:05:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linkedin.com; s=proddkim1024; t=1395907495; bh=Aceg/y+4t60ev0RInxKyppUa+Q+TMXQ/oom1kbSfsCI=; h=Date:From:To:Subject:MIME-Version:Content-Type: X-LinkedIn-Template:X-LinkedIn-Class:X-LinkedIn-fbl; b=e3+M/R9Lw93+WehG/PzsdBulNbCsmVGmsj79rJJbO+i6xChK3trsbzTUMmF5T7RKo cHhguSBwcVy9D89YS3vNRhKCZr6kL5PMA0qeIBXr0jUemnhc8WHSfPrr9mMZczB7Ib 58IxajkpvwL2Xtlte1oaySbs1Lsr7M2VOzTRafmM= Date: Thu, 27 Mar 2014 08:04:55 +0000 (UTC) From: ben chen To: "doc@FreeBSD.org" Message-ID: <1961451696.1815489.1395907495484.JavaMail.app@ela4-app0063.prod> Subject: =?UTF-8?Q?=E9=A2=86=E8=8B=B1=E9=82=80=E8=AF=B7?= MIME-Version: 1.0 X-LinkedIn-Template: invite_guest_59 X-LinkedIn-Class: INVITE-GUEST X-LinkedIn-fbl: s-vxgZPo0ZVCqEqo-xv1RYl70a4tHnCwNwz4cGcd5Zm6H2tqQxQq0Bv4 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 08:05:09 -0000 =E9=A2=86=E8=8B=B1 ------------ =E6=88=91=E5=9C=A8 LinkedIn (=E9=A2=86=E8=8B=B1) =E6=8B=93=E5=B1=95=E8=81= =8C=E4=B8=9A=E4=BA=BA=E8=84=89=EF=BC=8C=E5=B8=8C=E6=9C=9B=E8=83=BD=E4=B8=8E= =E6=82=A8=E5=BB=BA=E7=AB=8B=E8=81=94=E7=B3=BB=E3=80=82 -ben ben chen XinLi industrial Co.,ltd - sales manager =E4=B8=AD=E5=9B=BD =E7=A1=AE=E8=AE=A4=E6=82=A8=E8=AE=A4=E8=AF=86ben chen:=20 https://www.linkedin.com/e/qvgh2t-ht9ra4vr-51/isd/5854860379380789248/H_1ar= 0XK/?hs=3Dfalse&tok=3D3dp0XLhx9A_S81 -- =E6=82=A8=E5=B7=B2=E8=AE=BE=E7=BD=AE=E6=8E=A5=E6=94=B6=E9=82=80=E8=AF=B7=E5= =BB=BA=E7=AB=8B=E8=81=94=E7=B3=BB=E7=9A=84=E9=82=AE=E4=BB=B6=E3=80=82=E7=82= =B9=E5=87=BB=E9=80=80=E8=AE=A2:=20 http://www.linkedin.com/e/qvgh2t-ht9ra4vr-51/uWXn9gq_8wC_Ydfw5PkL7_TPQE/goo= /doc%40FreeBSD%2Eorg/20061/I6771970309_1/?hs=3Dfalse&tok=3D2O4ovxDhlA_S81 (c) 2012 LinkedIn Corporation=E3=80=822029 Stierlin Ct, Mountain View, CA 9= 4043, USA. =20 From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 10:56:51 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 014C79A6; Thu, 27 Mar 2014 10:56:51 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 C7C86DC0; Thu, 27 Mar 2014 10:56:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2RAuo6M040089; Thu, 27 Mar 2014 10:56:50 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2RAuo66040088; Thu, 27 Mar 2014 05:56:50 -0500 (CDT) (envelope-from bdrewery) Date: Thu, 27 Mar 2014 05:56:50 -0500 (CDT) Message-Id: <201403271056.s2RAuo66040088@freefall.freebsd.org> To: yaneurabeya@gmail.com, bdrewery@FreeBSD.org, freebsd-doc@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: docs/168814: [patch] remove `d` negative pointer EINVAL requirement from read(2) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 10:56:51 -0000 Synopsis: [patch] remove `d` negative pointer EINVAL requirement from read(2) State-Changed-From-To: open->closed State-Changed-By: bdrewery State-Changed-When: Thu Mar 27 05:56:50 CDT 2014 State-Changed-Why: It looks like uiomove() will return EINVAL on negative offset, and I did find tmpfs_read returning EINVAL on negative offset as well. http://www.freebsd.org/cgi/query-pr.cgi?pr=168814 From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 11:09:23 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F4D4BA7; Thu, 27 Mar 2014 11:09:23 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 21B68EDB; Thu, 27 Mar 2014 11:09:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2RB9MNk043528; Thu, 27 Mar 2014 11:09:22 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2RB9Mmr043527; Thu, 27 Mar 2014 06:09:22 -0500 (CDT) (envelope-from bdrewery) Date: Thu, 27 Mar 2014 06:09:22 -0500 (CDT) Message-Id: <201403271109.s2RB9Mmr043527@freefall.freebsd.org> To: yaneurabeya@gmail.com, bdrewery@FreeBSD.org, freebsd-doc@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: docs/178119: [ports] Porter's handbook lacks examples for using OptionsNG from make.conf, etc X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 11:09:23 -0000 Synopsis: [ports] Porter's handbook lacks examples for using OptionsNG from make.conf, etc State-Changed-From-To: open->closed State-Changed-By: bdrewery State-Changed-When: Thu Mar 27 06:09:22 CDT 2014 State-Changed-Why: done http://www.freebsd.org/cgi/query-pr.cgi?pr=178119 From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 11:12:43 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6840F1C; Thu, 27 Mar 2014 11:12:43 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 BD3E4F93; Thu, 27 Mar 2014 11:12:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2RBCh2u046335; Thu, 27 Mar 2014 11:12:43 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2RBCheb046334; Thu, 27 Mar 2014 06:12:43 -0500 (CDT) (envelope-from bdrewery) Date: Thu, 27 Mar 2014 06:12:43 -0500 (CDT) Message-Id: <201403271112.s2RBCheb046334@freefall.freebsd.org> To: yaneurabeya@gmail.com, bdrewery@FreeBSD.org, freebsd-doc@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: docs/178286: [PATCH] document the LOCAL_* vars in build(7) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 11:12:44 -0000 Synopsis: [PATCH] document the LOCAL_* vars in build(7) State-Changed-From-To: open->closed State-Changed-By: bdrewery State-Changed-When: Thu Mar 27 06:12:43 CDT 2014 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=178286 From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 11:20:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A5B020F for ; Thu, 27 Mar 2014 11:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 5E56E95 for ; Thu, 27 Mar 2014 11:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2RBK1w2047528 for ; Thu, 27 Mar 2014 11:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2RBK1bN047527; Thu, 27 Mar 2014 11:20:01 GMT (envelope-from gnats) Date: Thu, 27 Mar 2014 11:20:01 GMT Message-Id: <201403271120.s2RBK1bN047527@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: docs/178286: commit references a PR X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 11:20:01 -0000 The following reply was made to PR docs/178286; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/178286: commit references a PR Date: Thu, 27 Mar 2014 11:12:39 +0000 (UTC) Author: bdrewery Date: Thu Mar 27 11:12:35 2014 New Revision: 263812 URL: http://svnweb.freebsd.org/changeset/base/263812 Log: Update build(7) with LOCAL_* vars PR: docs/178286 Submitted by: Garrett Cooper Sponsored by: EMC / Isilon Storage Division MFC after: 1 week Modified: head/share/man/man7/build.7 Modified: head/share/man/man7/build.7 ============================================================================== --- head/share/man/man7/build.7 Thu Mar 27 11:10:13 2014 (r263811) +++ head/share/man/man7/build.7 Thu Mar 27 11:12:35 2014 (r263812) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd October 10, 2012 +.Dd March 27, 2014 .Dt BUILD 7 .Os .Sh NAME @@ -411,8 +411,25 @@ then is set to the value of .Va KERNFAST . .It Va LOCAL_DIRS -If set, this variable supplies a list of additional directories to -build, relative to the root of the source tree. +If set, this variable supplies a list of additional directories relative to +the root of the source tree to build as part of the +.Cm everything +target. +.It Va LOCAL_LIB_DIRS +If set, this variable supplies a list of additional directories relative to +the root of the source tree to build as part of the +.Cm libraries +target. +.It Va LOCAL_MTREE +If set, this variable supplies a list of additional mtrees relative to the +root of the source tree to use as part of the +.Cm hierarchy +target. +.It Va LOCAL_TOOL_DIRS +If set, this variable supplies a list of additional directories relative to +the root of the source tree to build as part of the +.Cm build-tools +target. .It Va PORTS_MODULES A list of ports with kernel modules that should be built and installed as part of the _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 14:22:16 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9AF727C6 for ; Thu, 27 Mar 2014 14:22:16 +0000 (UTC) Received: from mail-pb0-x230.google.com (mail-pb0-x230.google.com [IPv6:2607:f8b0:400e:c01::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 73DFF81F for ; Thu, 27 Mar 2014 14:22:16 +0000 (UTC) Received: by mail-pb0-f48.google.com with SMTP id md12so3542141pbc.21 for ; Thu, 27 Mar 2014 07:22:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=gMGn8Yfz9GaGubQE2KqUT1bid9Zu2Qwr+biAuL0Ulkw=; b=s4XPMiXO5SqGyBWRf0JOka8FIjl8QWdoJn3CfJb9c+HHHZhPH7j45iTGlA8W/6cxvh OyRCZoISWwx196n5Z/MWt5vPUuZ2OPTpjrAw86O8bjonxV+aAupylAVnSJj5a9yFJRrs DFhCQkGzu2WS/P5rMSvRbgnoucOOLD24kOd9dVEPvd/jxLiVyPzUWi7UQNNrJOjU1hWl m8KhP1sP+E6MidbxF/wbbdgTdC7V63XS6kL0f4IM4lkfjzuUz/tzNlsdEJr7JSscTEoD 7JaRxePlrqxCzacUaMVF9VRFbmCfb2KU3LB+MOy9kaqSEKN32HJsM2YHctgW/ffZgiHN z7KQ== MIME-Version: 1.0 X-Received: by 10.66.25.7 with SMTP id y7mr2010196paf.151.1395930135669; Thu, 27 Mar 2014 07:22:15 -0700 (PDT) Sender: sjk4015@gmail.com Received: by 10.68.59.202 with HTTP; Thu, 27 Mar 2014 07:22:15 -0700 (PDT) In-Reply-To: References: Date: Thu, 27 Mar 2014 10:22:15 -0400 X-Google-Sender-Auth: Y2B1M-Q5q0vI9m6K4UxdiWpZ_V8 Message-ID: Subject: Re: Please update handbook part 11.2.3 From: Steven Kreuzer To: David Demelier Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 14:22:16 -0000 On Mon, Mar 24, 2014 at 5:27 AM, David Demelier wrote: > Hello there, > > Can you please update the 11.2.3 [1] chapter from the handbook ? It is > specified that rpm2cpio is the command but actual installed command is > rpm2cpio.pl. Also the -q option does not exist. > > In short, update to: > > rpm2cpio.pl < /path/to/linux.archive.rpm | cpio -id > > Thanks! > > [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/linuxemu-lbc-install.html Thanks for the heads up. I updated the file to reflect this and will get it committed shortly. Change can be viewed at: http://clamps.exit2shell.com/~skreuzer/handbook/linuxemu-lbc-install.html From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 15:07:23 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D009B6E2; Thu, 27 Mar 2014 15:07:23 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9D85CBF0; Thu, 27 Mar 2014 15:07:23 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id 009E9321E; Thu, 27 Mar 2014 15:07:21 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us 009E9321E Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 27 Mar 2014 11:07:20 -0400 From: Glen Barber To: John Baldwin Subject: Re: docs/187940: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE Message-ID: <20140327150720.GG1970@glenbarber.us> References: <201403252340.s2PNeEww021331@cgiserv.freebsd.org> <201403261157.54624.jhb@freebsd.org> <20140326175933.GL1718@glenbarber.us> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="+sHJum3is6Tsg7/J" Content-Disposition: inline In-Reply-To: <20140326175933.GL1718@glenbarber.us> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: webmaster@freebsd.org, freebsd-doc@freebsd.org, freebsd-gnats-submit@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 15:07:23 -0000 --+sHJum3is6Tsg7/J Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 26, 2014 at 01:59:33PM -0400, Glen Barber wrote: > On Wed, Mar 26, 2014 at 11:57:54AM -0400, John Baldwin wrote: > > pnpinfo is only built for i386, but it does exist. man.cgi appears to = be > > broken for 9.1 release and later (9.0 finds pnpinfo.8 for i386, but 9.1 > > and later do not) man.cgi for i386 9.1 also doesn't find other i386-sp= ecific > > manpages like apmd(8) or wlconfig(8). Specifically, it seems like 9.1 > > and later are using amd64 manpages when i386 is selected. Looks like s= parc64 > > is also busted (can't find ofwdump(8)), so it seems like man.cgi is just > > always doing amd64 for 9.1 and later. > >=20 >=20 > Hmm, I did not see any architecture-specific things when adding the > manual pages for 9.2 and 10.0, but I can confirm that for these two > releases at least, I did take the manuals from the amd64 base.txz. >=20 > I'll poke around a bit on the pre-9.0 directories to see what is needed > for i386 and !x86 architectures, but may need a day or so to sort things > out. >=20 I've just refreshed the 10.0-RELEASE manuals to include !x86 arch manuals, and am packaging the 9.2-RELEASE manuals now for update. The pnpinfo(8) manual is now available on the website. Thanks for the report. Glen --+sHJum3is6Tsg7/J Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTND6oAAoJELls3eqvi17Qf+0QALCrMGe63MDTL9iLaV4suk6M ohYVo+I3h5MlnHlDFnYrWLwAdCXbPknUwiXjMZ0XaQ1vnYZave2cwsqBvlnyEZMO J0vS+fYDvUss+xReU4wqbivXYsd9qGplR4EOp1O/uJQYn1gOnPmMVSkIt95Cdmei uf6fvovmTrw2zDpOJDew2TB5sT8VLvrkpzdp+aFN3vQZq/5KPTekbdUNww1Bhgck 8tMAnSGFHkA8LRQ0lBEUy4XrXyHazYbzLi2SniABxgCmtaFX147L4196hGbtHCNs BBcnKcPJjVF2yB17HQUx0N25dSezqSeOOHQ36RL9exmPYL6Dyo3nS/J4Uc/lDH2i sovaRPuw8NTJUkK0SIkn1wMMJVZ9SwmLd822dzczPqzJ9/lzhJfX0EN//s5FhOdv WXzoKaNRDp3pdkKmqd1EwHt2VZ5FzzA0EmR0dIcKTD+C8G3mfKoiwdEObNoC5vva 1g2bygrOxJAbsyPW2JONiVfgHZj0ER+owDjG279erJgIdMlGKKobyTmVRpOS9PjL jGonC07wRMZvnlQFsBQXoBmhW5J2pgh2Txd3sQwq+rHlsc4MjOd0oXogBVTC5/D0 Mbck5fSwQK5F0XDRuGwqQ9qtTYogGftb8cysB1TtAl6sDBIwipAvguUxixOMpwTt ioVDuksd/5HB3UeK19yB =r5i+ -----END PGP SIGNATURE----- --+sHJum3is6Tsg7/J-- From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 15:08:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBA0272F; Thu, 27 Mar 2014 15:08:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A0B19BF7; Thu, 27 Mar 2014 15:08:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2RF82QJ017728; Thu, 27 Mar 2014 15:08:02 GMT (envelope-from gjb@freefall.freebsd.org) Received: (from gjb@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2RF81Zd017727; Thu, 27 Mar 2014 15:08:01 GMT (envelope-from gjb) Date: Thu, 27 Mar 2014 15:08:01 GMT Message-Id: <201403271508.s2RF81Zd017727@freefall.freebsd.org> To: knezour@weboutsourcing.cz, gjb@FreeBSD.org, freebsd-doc@FreeBSD.org, webmaster@FreeBSD.org From: gjb@FreeBSD.org Subject: Re: docs/187940: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 15:08:02 -0000 Synopsis: devinfo(8) man page refers pnpinfo(8) which does not exists on FreeBSD 10-RELEASE State-Changed-From-To: open->closed State-Changed-By: gjb State-Changed-When: Thu Mar 27 15:07:32 UTC 2014 State-Changed-Why: Should be fixed now. Responsible-Changed-From-To: freebsd-doc->webmaster Responsible-Changed-By: gjb Responsible-Changed-When: Thu Mar 27 15:07:32 UTC 2014 Responsible-Changed-Why: Should be fixed now. http://www.freebsd.org/cgi/query-pr.cgi?pr=187940 From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 15:38:21 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82635468 for ; Thu, 27 Mar 2014 15:38:21 +0000 (UTC) Received: from mail3.mustanglist.com (mail3.mustanglist.com [50.16.231.103]) by mx1.freebsd.org (Postfix) with ESMTP id 5769BF0E for ; Thu, 27 Mar 2014 15:38:21 +0000 (UTC) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id C5D958145 for ; Thu, 27 Mar 2014 10:38:20 -0500 (CDT) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id BBD2E811A for ; Thu, 27 Mar 2014 10:38:20 -0500 (CDT) From: Gretchen Parker X-Mailer: MustangList [msg-1395934700.7622 en-mail3] X-RPTags: List Type Content X-MLlistcampaign: 575-110969 X-ML-Message-ID: <> X-ML-Message-Source: <> X-ML-Message-Trk: <> Subject: Unique, turn-key fundraising solutions for your organization To: doc@freebsd.org Message-Id: <20140327153820.BBD2E811A@mail3.mustanglist.com> Date: Thu, 27 Mar 2014 10:38:20 -0500 (CDT) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Gretchen Parker List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 15:38:21 -0000 [1]F2O Website [2]Funds2Orgs is a social enterprise that offers real, relevant, and engaging fundraising strategies to churches, nonprofits, schools, and civic groups. Through shoe drive fundraisers, your organization could exceed your 2014 fundraising goals! Engage your volunteers Collect Shoes Engage your volunteers and get started collecting gently worn, used shoes! Collect shoes! We provide the bags and rubber bands to get you started. We'll pick them up Get ready for your check Call us and we will arrange pick-up of the shoes - it's easy for you! Your check will help further promote the mission of your organization. F2O Website To stop receiving messages from the Sector Direct - Received & Opened, click [3]here. To pass a copy of this message on to a friend, click [4]here. This email was sent to you by: Funds2Orgs 520 N. Semoran Blvd., Suite 200 Orlando, FL 32807 [msg-1395934700.7622 en-mail3] References Visible links 1. http://r.mustanglist.com/redir.php/b/TTBMVDU3NS0xMTA5NjktMzE1MjIxMS0zNjUzOTcxMQ~~/ 2. http://r.mustanglist.com/redir.php/b/T1RFdzU3NS0xMTA5NjktMzE1MjIxMi0zNjUzOTcxMQ~~/ 3. http://www.mustanglist.com/us.php/msg/1395934700.7622/en/mail3 4. http://www.mustanglist.com/pio.php/msg/1395934700.7622/en/mail3 Hidden links: 5. http://www.mustanglist.com/ From owner-freebsd-doc@FreeBSD.ORG Thu Mar 27 16:01:32 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 10D6EFCA for ; Thu, 27 Mar 2014 16:01:32 +0000 (UTC) Received: from mail3.mustanglist.com (mail3.mustanglist.com [50.16.231.103]) by mx1.freebsd.org (Postfix) with ESMTP id D7BC1221 for ; Thu, 27 Mar 2014 16:01:31 +0000 (UTC) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 77DF88161 for ; Thu, 27 Mar 2014 11:01:31 -0500 (CDT) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 6D01B8160 for ; Thu, 27 Mar 2014 11:01:31 -0500 (CDT) From: Gretchen Parker X-Mailer: MustangList [msg-1395936091.4392 en-mail3] X-RPTags: List Type Content X-MLlistcampaign: 575-110969 X-ML-Message-ID: <> X-ML-Message-Source: <> X-ML-Message-Trk: <> Subject: Unique, turn-key fundraising solutions for your organization To: freebsd-doc@freebsd.org Message-Id: <20140327160131.6D01B8160@mail3.mustanglist.com> Date: Thu, 27 Mar 2014 11:01:31 -0500 (CDT) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Gretchen Parker List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2014 16:01:32 -0000 [1]F2O Website [2]Funds2Orgs is a social enterprise that offers real, relevant, and engaging fundraising strategies to churches, nonprofits, schools, and civic groups. Through shoe drive fundraisers, your organization could exceed your 2014 fundraising goals! Engage your volunteers Collect Shoes Engage your volunteers and get started collecting gently worn, used shoes! Collect shoes! We provide the bags and rubber bands to get you started. We'll pick them up Get ready for your check Call us and we will arrange pick-up of the shoes - it's easy for you! Your check will help further promote the mission of your organization. F2O Website To stop receiving messages from the Sector Direct - Received & Opened, click [3]here. To pass a copy of this message on to a friend, click [4]here. This email was sent to you by: Funds2Orgs 520 N. Semoran Blvd., Suite 200 Orlando, FL 32807 [msg-1395936091.4392 en-mail3] References Visible links 1. http://r.mustanglist.com/redir.php/b/emd0TzU3NS0xMTA5NjktMzE1MjIxMS0zNjU0ODYwMw~~/ 2. http://r.mustanglist.com/redir.php/b/aGJHVjU3NS0xMTA5NjktMzE1MjIxMi0zNjU0ODYwMw~~/ 3. http://www.mustanglist.com/us.php/msg/1395936091.4392/en/mail3 4. http://www.mustanglist.com/pio.php/msg/1395936091.4392/en/mail3 Hidden links: 5. http://www.mustanglist.com/ From owner-freebsd-doc@FreeBSD.ORG Fri Mar 28 02:47:12 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98C23971; Fri, 28 Mar 2014 02:47:12 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 69368B77; Fri, 28 Mar 2014 02:47:12 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id 5E7E055A2; Fri, 28 Mar 2014 02:47:10 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us 5E7E055A2 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 27 Mar 2014 22:47:08 -0400 From: Glen Barber To: geodni@free.fr Subject: Re: bad or broken link about "Documentation"=> menu Message-ID: <20140328024708.GG1672@glenbarber.us> References: <20140327030804.GE1970@glenbarber.us> <106267689.219229028.1395902731510.JavaMail.root@zimbra59-e10.priv.proxad.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="8jNwmpfkpox/fiJK" Content-Disposition: inline In-Reply-To: <106267689.219229028.1395902731510.JavaMail.root@zimbra59-e10.priv.proxad.net> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2014 02:47:12 -0000 --8jNwmpfkpox/fiJK Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable The fix is committed as r44365, and will be live in a few minutes. Thank you for the report. Glen On Thu, Mar 27, 2014 at 07:45:31AM +0100, geodni@free.fr wrote: > Hi, >=20 > http://www.freebsd.org/cgi/man.cgi?query=3Dpkg&apropos=3D0&sektion=3D0&ma= npath=3DFreeBSD+10.0-RELEASE&arch=3Ddefault&format=3Dhtml >=20 > Denis >=20 > ----- Mail original ----- > De: "Glen Barber" > =C0: geodni@free.fr > Cc: freebsd-doc@FreeBSD.org > Envoy=E9: Jeudi 27 Mars 2014 04:08:04 > Objet: Re: bad or broken link about "Documentation"=3D> menu >=20 > On Wed, Mar 26, 2014 at 09:11:24PM +0100, geodni@free.fr wrote: > > Hi, > > I found a bad or broken link on the "Documentation" menu at > > www.freebsd.org site. > > It provides "All books and articles" with this link > > "http://www.freebsd.org/docs/books.html/" but it is redirected to > > a wonderful "page not found" with link "http://www.freebsd.org/4xx.html= ". >=20 > What is the original link referencing the URL to books.html/ you pasted? >=20 > The trailing slash ('/') is the problem, and omitting it from the URL > gives the expected page. >=20 > Glen --8jNwmpfkpox/fiJK Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTNOKsAAoJELls3eqvi17QOnoQAKkpAY9t5pPW+J8ePgMS9oXt 7Tv87mXiwKRpa02k91N3lsK1ydKOb45wLUuUblmzJeUX6SfjEsN8+tLjyvEe4M/5 SOIAyBMF3OzPuvW1OZBz5ur3ujs7CIPOhgj7vYXX5+gcg55kqu0wLpoCJ4hPaTeD FlicSlMFbwW+P5d555znz53aZPYo/YxGwJK+ceGaBCLTtPprUv4HvI5Alef20F/i F0/BzN3N2EiDlhatfQTZsMnMeYgHvi4AiA1d/5OwzJYH3nvbf90miCgeiu2lr3Ew ZHNgngPv4mPxuILtBu3WS5Ot4qeyUWgIsvRDmKSGUFWHmfss/WOQax5MM9p1Gj8N RfugqujqNGab7Wf7jw5vo2xrulxoLE2GKF5ELa23AE33W3G8/vnb12GKR6zzFkLg evBNq6uOax3xxKXpOdTiR/uHTmlls/etzoQZgMgNbcQLhawKKfA18fhTljlbDj9X cVZAvHQ59rdcj8MRdUf0VmN3W3/G8Qc5n1zsko2EDrPxcpT9PCU8pPeGn5wvuJiB sOSobIUADmHSP4WcKbFYLYmsFYUXJ5IWvMxDBJ7tSb2naIoqNwc3NbeSGSw/upux JdH1adFJIpd9q9ieEc3RbcLXGcvoA/mXZ7XOwTsFH+ibrGfgfHQZU/flK9SvfA9X eGgxxVPWOlc3emhBUqRy =uNtt -----END PGP SIGNATURE----- --8jNwmpfkpox/fiJK-- From owner-freebsd-doc@FreeBSD.ORG Sat Mar 29 00:23:38 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B337336F for ; Sat, 29 Mar 2014 00:23:38 +0000 (UTC) Received: from mail-yk0-x22e.google.com (mail-yk0-x22e.google.com [IPv6:2607:f8b0:4002:c07::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 779C79D7 for ; Sat, 29 Mar 2014 00:23:38 +0000 (UTC) Received: by mail-yk0-f174.google.com with SMTP id 20so4310274yks.5 for ; Fri, 28 Mar 2014 17:23:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:from:date:message-id:subject:to:content-type; bh=AeTidsTzbX4KpV1hlAOiBXf1NAVJFamYTqu3d6g1vOw=; b=nzOjfk2Dy46rD+6SfkVNDO9Ey29NwYR1LKuPy9VroSLIgtlbQuxLreg9MqcZcVkleP 7VoiXzp+YM3auOnXCm1i8G5Qke21MZo48BXZ8me/flPEFlbXi6tumgvftLXnsJ1ZqsrE pD40Q2U8hJumVrF7kA6QDPjHlHI+480JWvnPlKGKrmYyhxqkVHzHQw//jqXWkDoGi9MS tCRyPhPNceiIGvIZ8pKnNU8lO/PEOiLFku4olktIP9QHrjrFFl5q2jkwppkwrJVvjYw3 wLUjhGbTi7xLbiR7eE2TOO04Skaek0QuPZj8uMorBoVl8Nc0403uSoTRJ92/Pu1g27BD 9aFw== X-Received: by 10.236.62.232 with SMTP id y68mr15740679yhc.12.1396052617642; Fri, 28 Mar 2014 17:23:37 -0700 (PDT) MIME-Version: 1.0 Sender: rafaelpossa@gmail.com Received: by 10.170.147.4 with HTTP; Fri, 28 Mar 2014 17:23:17 -0700 (PDT) From: Rafael Possamai Date: Fri, 28 Mar 2014 19:23:17 -0500 X-Google-Sender-Auth: mEGbiuNM_i824fY6GCd1QMfznuI Message-ID: Subject: Possible mistake on handbook - Section 30.7: Link Aggregation To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Mar 2014 00:23:38 -0000 Hello, I was reading the handbook and stumbled upon the following sentence: "Failover allows traffic to continue to flow even if an interface becomes available." In my understanding it should say unavailable, as if one of the links was no longer passing traffic, therefore the failover feature redirects traffic to the remaining interface that is active. The webpage is the following: http://www5.us.freebsd.org/doc/handbook/network-aggregation.html Thank you for all the hard work on FreeBSD. Cordially, Rafael From owner-freebsd-doc@FreeBSD.ORG Sat Mar 29 01:48:47 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45C38945 for ; Sat, 29 Mar 2014 01:48:47 +0000 (UTC) Received: from mail-qc0-x244.google.com (mail-qc0-x244.google.com [IPv6:2607:f8b0:400d:c01::244]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0995A143 for ; Sat, 29 Mar 2014 01:48:46 +0000 (UTC) Received: by mail-qc0-f196.google.com with SMTP id i17so1829143qcy.7 for ; Fri, 28 Mar 2014 18:48:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=HwWtd51Kv4zL6C7VmyZ5Z7zEGR6YdsvW5eRey3bKPqo=; b=BZwmRx4QYaSKSO6rTr/4pgBWZskZTNpEN+Q0fRAQGAQcv55r6RAStRuVTRbq9Tw9Xe HBJTEdnlsjuVuWcGVaGNAE64DeLtwF4S30SBARBetOc607p65HGJO8maUDutJeHoGw8T R8y42nPeaxayqs6FP4w7OUVEYMi7J9ber3zCX0+QurHLPjaFHeMQkb5Pr1E5Vd84/Ftl tF1NkXhEKLbWzr9mdS81bLPUe74nLQUvGjvIW7srrd1/EGOTja17X9TcOoSsoze8BxYG Rqrt/8jxF+fPtwZnuPeM5vOuIQvPWNvK/we0YjQ6ytzJk22IRRFe+H5PaA1dRsKXsYo8 pUHg== MIME-Version: 1.0 X-Received: by 10.140.107.10 with SMTP id g10mr12482922qgf.56.1396057726186; Fri, 28 Mar 2014 18:48:46 -0700 (PDT) Received: by 10.229.67.130 with HTTP; Fri, 28 Mar 2014 18:48:46 -0700 (PDT) Received: by 10.229.67.130 with HTTP; Fri, 28 Mar 2014 18:48:46 -0700 (PDT) Date: Fri, 28 Mar 2014 22:48:46 -0300 Message-ID: Subject: Galaxh y duos From: Jackson Pereira To: doc@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Mar 2014 01:48:47 -0000 Eu tenho um galaxy y duos e ele nao tem superusuario eu perciso muito de um superusuario mi juda cara porfavo From owner-freebsd-doc@FreeBSD.ORG Sat Mar 29 02:32:03 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93FE7171 for ; Sat, 29 Mar 2014 02:32:03 +0000 (UTC) Received: from mail-ve0-x230.google.com (mail-ve0-x230.google.com [IPv6:2607:f8b0:400c:c01::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5208B75D for ; Sat, 29 Mar 2014 02:32:03 +0000 (UTC) Received: by mail-ve0-f176.google.com with SMTP id db11so3349304veb.35 for ; Fri, 28 Mar 2014 19:32:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=K23lRDLMjBEyVPQ/J7c4qXpoidANUICtwFaj77XjOkk=; b=stiS/Zn6OtNaCAtfgHpJEZn6Bu1YnZ++/0wt6A8PGq9l6H2pLZOT/jtnRoCKHLr+yc qciJT8Bn9CE6xLwfrrolprcDkOtpHB55VWz6sYv4+tEsA2jngquL0+NRZh3EnCqw1ube 7h5msat5yFchNlwJb/0e7OW50muPrcwCpkkOkjW/kUXeEFohRJkELIrfY2ud+cR1CV7p QSFFzUDNO4T6YDIR5dn4S4PSyf/awvpjDJiUeNWx2nbrBZbF0djT87oFqiHZK9mWJOSF gKK9vYZV5EoJF3TjWpUQbqJH/TZljv8V01ypOM2RhJS54tP9VpWYBHkH0rsLTJGHu3/p L3kw== MIME-Version: 1.0 X-Received: by 10.58.238.35 with SMTP id vh3mr10133592vec.16.1396060321789; Fri, 28 Mar 2014 19:32:01 -0700 (PDT) Received: by 10.220.239.84 with HTTP; Fri, 28 Mar 2014 19:32:01 -0700 (PDT) In-Reply-To: References: Date: Fri, 28 Mar 2014 22:32:01 -0400 Message-ID: Subject: Re: Possible mistake on handbook - Section 30.7: Link Aggregation From: Thomas Hoffmann To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: Rafael Possamai X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Mar 2014 02:32:03 -0000 On Fri, Mar 28, 2014 at 8:23 PM, Rafael Possamai wrote: > Hello, > > I was reading the handbook and stumbled upon the following sentence: > > "Failover allows traffic to continue to flow even if an interface becomes > available." > > > In my understanding it should say unavailable, as if one of the links was > no longer passing traffic, therefore the failover feature redirects traffic > to the remaining interface that is active. > > The webpage is the following: > > http://www5.us.freebsd.org/doc/handbook/network-aggregation.html > > > Thank you for all the hard work on FreeBSD. > > > Cordially, > Rafael Also, does "an interface" convey what we need here? For any given N-way aggregation, can't we have N-1 (one or more, but not all) interfaces become unavailable and still have a working link? -Tom From owner-freebsd-doc@FreeBSD.ORG Sat Mar 29 02:58:47 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81D2E6B1 for ; Sat, 29 Mar 2014 02:58:47 +0000 (UTC) Received: from mail.koukaam.se (mail.koukaam.se [193.86.201.130]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.koukaam.se", Issuer "KOUKAAM Certificate Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 0A4F1901 for ; Sat, 29 Mar 2014 02:58:46 +0000 (UTC) Received: from [192.168.1.41] (unassigned-81-90-254-125.ujezd.net [81.90.254.125] (may be forged)) (authenticated bits=0) by mail.koukaam.se (8.14.5/8.14.5) with ESMTP id s2T2wW89019463 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sat, 29 Mar 2014 03:58:40 +0100 (CET) (envelope-from knezour@weboutsourcing.cz) Message-ID: <533636D4.4040404@weboutsourcing.cz> Date: Sat, 29 Mar 2014 03:58:28 +0100 From: Ondra Knezour User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: Thomas Hoffmann , freebsd-doc@freebsd.org Subject: Re: Possible mistake on handbook - Section 30.7: Link Aggregation References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Rafael Possamai X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Mar 2014 02:58:47 -0000 Dne 29.3.2014 3:32, Thomas Hoffmann napsal(a): >> I was reading the handbook and stumbled upon the following sentence: >> >> "Failover allows traffic to continue to flow even if an interface becomes >> available." > > Also, does "an interface" convey what we need here? For any given N-way > aggregation, can't we have N-1 (one or more, but not all) interfaces become > unavailable and still have a working link? And Cpt. Obvious may add an interface is not enough, you can have four interfaces aggregated in the bond, but there is still no flow without a link. To add even more chaos, both the physical and virtual interfaces are mentioned in the sentence preceding the one which Rafael mentions. That said, what about something like following? Failover allows traffic to continue to flow if at least one aggregated network interface has link established. -- Ondra Knezour From owner-freebsd-doc@FreeBSD.ORG Sat Mar 29 10:10:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC054ACA for ; Sat, 29 Mar 2014 10:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A7F3BE59 for ; Sat, 29 Mar 2014 10:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2TAA0nP089017 for ; Sat, 29 Mar 2014 10:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2TAA0B0089016; Sat, 29 Mar 2014 10:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 29 Mar 2014 10:10:00 GMT Resent-Message-Id: <201403291010.s2TAA0B0089016@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jamie Landeg-Jones Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 223F8ABC for ; Sat, 29 Mar 2014 10:08:28 +0000 (UTC) Received: from pacha.mail.dyslexicfish.net (space.mail.dyslexicfish.net [91.109.5.35]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B44CE50 for ; Sat, 29 Mar 2014 10:08:22 +0000 (UTC) Received: from catnip.dyslexicfish.net (space.mail.dyslexicfish.net [91.109.5.35]) by pacha.mail.dyslexicfish.net (8.14.5/8.14.5) with ESMTP id s2T9pSgg028623 for ; Sat, 29 Mar 2014 09:51:29 GMT (envelope-from jamie@catnip.dyslexicfish.net) Received: (from jamie@localhost) by catnip.dyslexicfish.net (8.14.5/8.14.5/Submit) id s2T9pS9u028622; Sat, 29 Mar 2014 09:51:28 GMT (envelope-from jamie) Message-Id: <201403290951.s2T9pS9u028622@catnip.dyslexicfish.net> Date: Sat, 29 Mar 2014 09:51:28 GMT From: Jamie Landeg-Jones To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/188043: man page for md5/sha1/sha256/sha412/rmd-160 cleanup X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Jamie Landeg-Jones List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Mar 2014 10:10:01 -0000 >Number: 188043 >Category: docs >Synopsis: man page for md5/sha1/sha256/sha412/rmd-160 cleanup >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 29 10:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jamie Landeg-Jones >Release: FreeBSD 10.0-STABLE amd64 >Organization: Dyslexic Fish >Environment: System: FreeBSD catnip.dyslexicfish.net 10.0-STABLE FreeBSD 10.0-STABLE #0: Wed Jan 22 09:10:20 GMT 2014 root@catflap.dyslexicfish.net:/usr/obj/usr/src/sys/CATFLAP amd64 >Description: man page shows for -c option: "Compare files to this md5 string." This is misleading - the string needs to be in the same format as the digest command being used. I suggest something like: "Compare the files message digest to this string." Also, suggest updating the date relating to known exploits. >How-To-Repeat: man sha1 man sha256 man sha512 man rmd-160 >Fix: Apply attached patch suggestion --- patch-md5.1 begins here --- --- md5.1.orig 2014-02-17 01:41:53.000000000 +0000 +++ md5.1 2014-03-29 09:35:16.000000000 +0000 @@ -63,12 +63,12 @@ This also means that .Tn MD5 should not be used as part of a cryptographic signature scheme. -At the current time (2009-01-06) there is no publicly known method to +At the current time (2014-03-28) there is no publicly known method to .Dq reverse MD5, i.e., to find an input given a hash value. .Pp .Tn SHA-1 -currently (2009-01-06) has no known collisions, but an attack has been +currently (2014-03-28) has no known collisions, but an attack has been found which is faster than a brute-force search, placing the security of .Tn SHA-1 in doubt. @@ -83,7 +83,7 @@ after the options are processed. .Bl -tag -width indent .It Fl c Ar string -Compare files to this md5 string. +Compare the files message digest to this string. (Note that this option is not yet useful if multiple files are specified.) .It Fl s Ar string Print a checksum of the given --- patch-md5.1 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sat Mar 29 16:27:02 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4950DB2 for ; Sat, 29 Mar 2014 16:27:02 +0000 (UTC) Received: from boomer.ukrhub.net (boomer.ukrhub.net [94.125.121.14]) by mx1.freebsd.org (Postfix) with ESMTP id 56DD01E6 for ; Sat, 29 Mar 2014 16:27:01 +0000 (UTC) Received: by boomer.ukrhub.net (Postfix, from userid 58) id E7B8424DC21; Sat, 29 Mar 2014 18:19:19 +0200 (EET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on boomer.ukrhub.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 Received: from gamma.ukrhub.net (unknown [10.100.1.91]) by boomer.ukrhub.net (Postfix) with ESMTP id 6CABC24DC1E for ; Sat, 29 Mar 2014 18:19:11 +0200 (EET) Received: from gamma.ukrhub.net (localhost [127.0.0.1]) by gamma.ukrhub.net (8.14.7/8.14.7) with ESMTP id s2TGJBRN095799 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sat, 29 Mar 2014 18:19:11 +0200 (EET) (envelope-from ds@ukrhub.net) Received: (from ds@localhost) by gamma.ukrhub.net (8.14.7/8.14.7/Submit) id s2TGJB8D095798 for freebsd-doc@freebsd.org; Sat, 29 Mar 2014 18:19:11 +0200 (EET) (envelope-from ds@ukrhub.net) Date: Sat, 29 Mar 2014 18:19:05 +0200 From: Taras Korenko To: freebsd-doc@freebsd.org Subject: en/handbook/audit: proposed corrections Message-ID: <20140329161905.GB92398@gamma.ukrhub.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="gKMricLos+KVdGMg" Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Taras Korenko List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Mar 2014 16:27:03 -0000 --gKMricLos+KVdGMg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Good day, doc@ folks. There're a few things that could be improved within audit chapter of our handbook. However, those are just notes, which might require more polishing or wordsmithing. So, can anyone review and/or comment the following *.diff? Thanks. -- WBR, Taras Korenko --gKMricLos+KVdGMg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="00.en.hb.audit.diff" Index: en_US.ISO8859-1/books/handbook/audit/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/audit/chapter.xml (revision 44380) +++ en_US.ISO8859-1/books/handbook/audit/chapter.xml (working copy) @@ -196,8 +196,10 @@ Audit Configuration User space support for event auditing is installed as part - of the base &os; operating system. Kernel support can be - enabled by adding the following line to + of the base &os; operating system. Kernel support is available + in GENERIC kernel by default, + an &man.auditd.8; can be enabled + by adding the following line to /etc/rc.conf: auditd_enable="YES" @@ -217,10 +219,7 @@ Selection expressions are used in a number of places in the audit configuration to determine which events should be audited. Expressions contain a list of event classes to - match, each with a prefix indicating whether matching records - should be accepted or ignored, and optionally to indicate if - the entry is intended to match successful or failed - operations. Selection expressions are evaluated from left to + match. Selection expressions are evaluated from left to right, and two expressions are combined by appending one onto the other. @@ -383,10 +382,9 @@ These audit event classes may be customized by modifying - the audit_class and audit_ - event configuration files. + the audit_class and audit_event configuration files. - Each audit event class is combined with a prefix + Each audit event class may be combined with a prefix indicating whether successful/failed operations are matched, and whether the entry is adding or removing matching for the class and type. summarizes @@ -650,8 +648,8 @@ Since audit logs may be very large, a subset of records can be selected using auditreduce. This example selects all audit records produced for the user - trhodes stored in - AUDITFILE: + trhodes stored in + AUDITFILE: &prompt.root; auditreduce -u trhodes /var/audit/AUDITFILE | praudit @@ -739,8 +737,8 @@ Automatic rotation of the audit trail file based on file size is possible using in - audit.control as described in . + audit_control as described in . As audit trail files can become very large, it is often desirable to compress or otherwise archive trails once they --gKMricLos+KVdGMg-- From owner-freebsd-doc@FreeBSD.ORG Sat Mar 29 17:35:51 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 97D9EEA9 for ; Sat, 29 Mar 2014 17:35:51 +0000 (UTC) Received: from mail-ve0-x234.google.com (mail-ve0-x234.google.com [IPv6:2607:f8b0:400c:c01::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 596429DA for ; Sat, 29 Mar 2014 17:35:51 +0000 (UTC) Received: by mail-ve0-f180.google.com with SMTP id jz11so6766040veb.39 for ; Sat, 29 Mar 2014 10:35:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=4212LLVSO5awKFqDuOj6ZJrubQIKqW0kEajmF7vACDk=; b=qBGclREaEYqQWvPsKUhYt1T75Dkv8GJAJKodApd0jAVvGce8Sl7FPP59clyZebF98d AKz/R8KbtGt+9CEWUZZmvSSMiTa1v+OWFRtehFlEQRU9mXfTVpGeC9DA++jUSppYliBs ZdlqtXCbM1LLFKynNHhQzB6vmdv4M4q+XYyw89Zj/IoVjNqSC039DL2cCwefR6Ot0xVe SJS3rihgiS+PXy0dm8cV1Is8NUNjjlfqPA4i6vGdaCX1syXJ7JR+5HXYONTDIojIxqOv M4mv/5tE5PE0aYVLaP1BPbw5X/d20FucjUnkjbKaBftlpGY1DTBnjNB4CyMLgviay7Cf w+4Q== MIME-Version: 1.0 X-Received: by 10.221.26.10 with SMTP id rk10mr13560671vcb.0.1396114549334; Sat, 29 Mar 2014 10:35:49 -0700 (PDT) Received: by 10.220.239.84 with HTTP; Sat, 29 Mar 2014 10:35:49 -0700 (PDT) Date: Sat, 29 Mar 2014 13:35:49 -0400 Message-ID: Subject: jail(8) - jail versus prison From: Thomas Hoffmann To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Mar 2014 17:35:51 -0000 I know very little about jails, which is why I am reading up on them. In reading jail(8), I suddenly came upon the term "prison". In fact the term "prison" is used 30 times in jail(8), while the term "jail" is used 228 times. Is this use of the term "prison" intentional? In reading jail(8) it is certainly not clear to me whether "prison" is being used as a synonym for "jail" or is in fact a separate concept within a jail that has not been previously defined. The Handbook section on jails makes no mention of the term "prison". Shouldn't jail(8) be consistent in its use of "jail" versus "prison" if in fact it has no special meaning? -Tom From owner-freebsd-doc@FreeBSD.ORG Sat Mar 29 17:41:10 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0237D1A7; Sat, 29 Mar 2014 17:41:10 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C80D5A7E; Sat, 29 Mar 2014 17:41:09 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id C3C881CB7; Sat, 29 Mar 2014 17:41:07 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us C3C881CB7 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Sat, 29 Mar 2014 13:41:06 -0400 From: Glen Barber To: Thomas Hoffmann Subject: Re: jail(8) - jail versus prison Message-ID: <20140329174106.GU1672@glenbarber.us> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="H7DA0n3a+SnB4bJ2" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Mar 2014 17:41:10 -0000 --H7DA0n3a+SnB4bJ2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 29, 2014 at 01:35:49PM -0400, Thomas Hoffmann wrote: > In reading jail(8), I suddenly came upon the term "prison". In fact the > term "prison" is used 30 times in jail(8), while the term "jail" is used > 228 times. Is this use of the term "prison" intentional? In reading jail(= 8) > it is certainly not clear to me whether "prison" is being used as a > synonym for "jail" or is in fact a separate concept within a jail that has > not been previously defined. >=20 > The Handbook section on jails makes no mention of the term "prison". >=20 > Shouldn't jail(8) be consistent in its use of "jail" versus "prison" if in > fact it has no special meaning? >=20 The usage of 'prison' in the jail(8) manual is synonymous with 'jail.' Glen --H7DA0n3a+SnB4bJ2 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTNwWyAAoJELls3eqvi17QGDwP/2zstzCQGn5hoVwVe7KTKLxp lTVTjzeRpjsOSSdYafaPUSOVda3CyigbqUhn0j41b7fRzHElDEhk4dLwU34y2h0/ 75C4gh+gfX9RJ+EJvVTcJ1MAb4+mnxKixGNDfbYSIFCTQj2glB4pAqbpHMh0od6O aPNyyA48rcfx0AXw/OH6Zo+vB3yjH7gyev642xgq2vdTHUJ0pYvME+MbdzFvFIcr ZMPjoEeirtU7fDHdLnGH2e//fnzzRYfJdIV6OHeNnw34pRR8y6QYhv5lMWuNQsM4 wWRAqbUBz9LfzE1s7poxQYBZTbqEXAkR/QOzFlSmhqMuIHuAPPxpW4QuNEQMXjtO S9BQKbGIim1bhVmMgmlOmOyFioBM0+lk4/23nPsjwvOtK1hv6J2vO6I0OoA9uu+R jKmueT15gXO0PUUCztqAO5xT2/PPrSqWxBU9eI0LYpBzmf/xxDRceeyzeIFwDawg OPkJ89BaRdi3u8wMHOxZpWa6yOVo2xVl4Oen9/7KMtwbRD29xX/rQsIQxXdg9HEt tAnqfq5xmDXQFwmd8uWX6ue6o84Ptm7GKdU4/2iKOf0GjW5TzWgIhjbzq70tdkai lVgjzhNVaCE4kRAlh4o8kWFApcSauCJmngkmBUvgrUHmi+XXXBv2zrikAKNOLlRp VBA+uzAtAdP/0ZEeF4ef =UjeO -----END PGP SIGNATURE----- --H7DA0n3a+SnB4bJ2-- From owner-freebsd-doc@FreeBSD.ORG Sun Mar 30 14:08:12 2014 Return-Path: Delivered-To: www@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A45F3B98 for ; Sun, 30 Mar 2014 14:08:12 +0000 (UTC) Received: from fallback3.mail.ru (fallback3.mail.ru [94.100.176.58]) by mx1.freebsd.org (Postfix) with ESMTP id 23303FC2 for ; Sun, 30 Mar 2014 14:08:11 +0000 (UTC) Received: from f171.i.mail.ru (f171.i.mail.ru [94.100.178.90]) by fallback3.mail.ru (mPOP.Fallback_MX) with ESMTP id E81AB1110C111 for ; Sun, 30 Mar 2014 18:07:21 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=list.ru; s=mail; h=Content-Type:Message-ID:Reply-To:Date:Mime-Version:Subject:To:From; bh=UOo6VRFgseDcko6Serg2aYe4qXGikalxUw5Q1/OKp5I=; b=MnSzQp3aZjug3r2cD9Hfpmy5u2lMb/jyF3DQwNnqqxm/lk0v9wqoywp3eTIYfcYUFldwdBYW5H2YqQKyqut9WCnl2jXrVY5NOlRnxZ3GNQkLhq9qXqo+A1gyiD9QNkXmb0e62WGiysHfYLrgmX6Y/BIwmfMNjVc5Kako5UsMykM=; Received: from mail by f171.i.mail.ru with local (envelope-from ) id 1WUGOG-0008Dv-Nl for www@FreeBSD.org; Sun, 30 Mar 2014 18:07:13 +0400 Received: from [46.61.16.207] by e.mail.ru with HTTP; Sun, 30 Mar 2014 18:07:12 +0400 From: =?UTF-8?B?TGV2b24gQW5nYWxhZHlhbg==?= To: www@FreeBSD.org Subject: =?UTF-8?B?ICBUaGUgbW9zdCBpbXBvcnRhbnQgdGhpbmcu?= Mime-Version: 1.0 X-Mailer: Mail.Ru Mailer 1.0 X-Originating-IP: [46.61.16.207] Date: Sun, 30 Mar 2014 18:07:12 +0400 X-Priority: 3 (Normal) Message-ID: <1396188432.692679518@f171.i.mail.ru> X-Mras: Ok X-Spam: undefined Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?UTF-8?B?TGV2b24gQW5nYWxhZHlhbg==?= List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2014 14:08:12 -0000 CgoiTm93IHRoaXMgaXMKZXRlcm5hbCBsaWZlOiB0aGF0IHRoZXkgbWF5IGtub3cgeW91LCB0aGUg b25seSB0cnVlIEdvZCwgYW5kIEplc3VzCkNocmlzdCwgd2hvbSB5b3UgaGF2ZSBzZW50IiAoSm9o biAxNzozKS7CoAoiRm9yIGl0IGlzIGJ5CmdyYWNlIHRoYXQgeW91IGhhdmUgYmVlbiBzYXZlZCwg dGhyb3VnaCBmYWl0aC4gVGhpcyBkb2VzIG5vdCBkZXBlbmQKb24gYW55dGhpbmcgeW91IGhhdmUg YWNoaWV2ZWQsIGl0IGlzIHRoZSBmcmVlIGdpZnQgb2YgR29kOyBhbmQKYmVjYXVzZSBpdCBpcyBu b3QgZWFybmVkIG5vIG9uZSBjYW4gYm9hc3QgYWJvdXQgaXQuIiAoRXBoZXNpYW5zCjI6OC05KS4K ClJlY2VpdmluZyBDaHJpc3QKaW52b2x2ZXMgdHVybmluZyB0byBHb2QgZnJvbSBzZWxmIChhIHNw aXJpdCBvZiByZXBlbnRhbmNlKSBhbmQKdHJ1c3RpbmcgQ2hyaXN0IHRvIGNvbWUgaW50byBvdXIg bGl2ZXMgdG8gZm9yZ2l2ZSB1cyBvZiBvdXIgc2lucyBhbmQKbWFrZSB1cyB3aGF0IGhlIHdhbnRz IHVzIHRvIGJlLiBKdXN0IHRvIGFncmVlIGludGVsbGVjdHVhbGx5IHRoYXQKSmVzdXMgQ2hyaXN0 IGlzIHRoZSBTb24gb2YgR29kIGFuZCB0aGF0IGhlIGRpZWQgb24gdGhlIGNyb3NzIGZvciBvdXIK c2lucyBpcyBub3QgZW5vdWdoLiBOb3IgaXMgaXQgZW5vdWdoIHRvIGhhdmUgYW4gZW1vdGlvbmFs IGV4cGVyaWVuY2UuCldlIHJlY2VpdmUgSmVzdXMgQ2hyaXN0IGJ5IGZhaXRoLCBhcyBhbiBhY3Qg b2Ygb3VyIHdpbGwuCgpodHRwOi8vd3d3LmJibnJhZGlvLm9yZwoKCgoKCgotLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t Cg== From owner-freebsd-doc@FreeBSD.ORG Sun Mar 30 14:10:56 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99204C9F for ; Sun, 30 Mar 2014 14:10:56 +0000 (UTC) Received: from fallback4.mail.ru (fallback4.mail.ru [94.100.176.42]) by mx1.freebsd.org (Postfix) with ESMTP id 184FDFE7 for ; Sun, 30 Mar 2014 14:10:55 +0000 (UTC) Received: from f168.i.mail.ru (f168.i.mail.ru [94.100.178.87]) by fallback4.mail.ru (mPOP.Fallback_MX) with ESMTP id 7BB4A90718B for ; Sun, 30 Mar 2014 18:10:13 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=list.ru; s=mail; h=Content-Type:Message-ID:Reply-To:Date:Mime-Version:Subject:To:From; bh=2Eoh2zAHBr5deVKiZ0Wsdiq1FlC+Q9J8J+PWqUyEKgU=; b=LKZClQHRv83P/CixDdESdAMPozzAyJXkLzEq2s1q7txb9tse3IXRT2rCkT5WkYqsZPcKLKmJqKfceKT10DSk4V5IoK9RVDAQYCGTzs8faoidSOyY6mw3ooitiWmxo7Z3lLP4mRlDSiO8j1nf/JfQ0F3dXUfUIbguHKEGPoLhcqU=; Received: from mail by f168.i.mail.ru with local (envelope-from ) id 1WUGR2-0004NU-M8 for doc@FreeBSD.org; Sun, 30 Mar 2014 18:10:04 +0400 Received: from [46.61.16.207] by e.mail.ru with HTTP; Sun, 30 Mar 2014 18:10:04 +0400 From: =?UTF-8?B?TGV2b24gQW5nYWxhZHlhbg==?= To: doc@FreeBSD.org Subject: =?UTF-8?B?IFRoZSBtb3N0IGltcG9ydGFudCB0aGluZy4=?= Mime-Version: 1.0 X-Mailer: Mail.Ru Mailer 1.0 X-Originating-IP: [46.61.16.207] Date: Sun, 30 Mar 2014 18:10:04 +0400 X-Priority: 3 (Normal) Message-ID: <1396188604.971485502@f168.i.mail.ru> X-Mras: Ok X-Spam: undefined Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?UTF-8?B?TGV2b24gQW5nYWxhZHlhbg==?= List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2014 14:10:56 -0000 CiJOb3cgdGhpcyBpcwpldGVybmFsIGxpZmU6IHRoYXQgdGhleSBtYXkga25vdyB5b3UsIHRoZSBv bmx5IHRydWUgR29kLCBhbmQgSmVzdXMKQ2hyaXN0LCB3aG9tIHlvdSBoYXZlIHNlbnQiIChKb2hu IDE3OjMpLsKgCiJGb3IgaXQgaXMgYnkKZ3JhY2UgdGhhdCB5b3UgaGF2ZSBiZWVuIHNhdmVkLCB0 aHJvdWdoIGZhaXRoLiBUaGlzIGRvZXMgbm90IGRlcGVuZApvbiBhbnl0aGluZyB5b3UgaGF2ZSBh Y2hpZXZlZCwgaXQgaXMgdGhlIGZyZWUgZ2lmdCBvZiBHb2Q7IGFuZApiZWNhdXNlIGl0IGlzIG5v dCBlYXJuZWQgbm8gb25lIGNhbiBib2FzdCBhYm91dCBpdC4iIChFcGhlc2lhbnMKMjo4LTkpLgoK UmVjZWl2aW5nIENocmlzdAppbnZvbHZlcyB0dXJuaW5nIHRvIEdvZCBmcm9tIHNlbGYgKGEgc3Bp cml0IG9mIHJlcGVudGFuY2UpIGFuZAp0cnVzdGluZyBDaHJpc3QgdG8gY29tZSBpbnRvIG91ciBs aXZlcyB0byBmb3JnaXZlIHVzIG9mIG91ciBzaW5zIGFuZAptYWtlIHVzIHdoYXQgaGUgd2FudHMg dXMgdG8gYmUuIEp1c3QgdG8gYWdyZWUgaW50ZWxsZWN0dWFsbHkgdGhhdApKZXN1cyBDaHJpc3Qg aXMgdGhlIFNvbiBvZiBHb2QgYW5kIHRoYXQgaGUgZGllZCBvbiB0aGUgY3Jvc3MgZm9yIG91cgpz aW5zIGlzIG5vdCBlbm91Z2guIE5vciBpcyBpdCBlbm91Z2ggdG8gaGF2ZSBhbiBlbW90aW9uYWwg ZXhwZXJpZW5jZS4KV2UgcmVjZWl2ZSBKZXN1cyBDaHJpc3QgYnkgZmFpdGgsIGFzIGFuIGFjdCBv ZiBvdXIgd2lsbC4KCmh0dHA6Ly93d3cuYmJucmFkaW8ub3JnCgoKCgoKCi0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0K From owner-freebsd-doc@FreeBSD.ORG Mon Mar 31 03:39:25 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1EFCB79 for ; Mon, 31 Mar 2014 03:39:25 +0000 (UTC) Received: from m12-16.163.com (m12-16.163.com [220.181.12.16]) by mx1.freebsd.org (Postfix) with ESMTP id 5F5D3F68 for ; Mon, 31 Mar 2014 03:39:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=126.com; s=s110527; h=Date:From:Subject:Message-ID:MIME-Version; bh=ecQ5K B9EuKSXyl4OXMMacAcRXpgBccd376wr0K7hkQo=; b=GBwdNl3wwwkyg9/P+J5TW AGwuYfEpVxVDBpBxbcKkM9lcZ6nXIrAYzDzRVZg23EBdEID90uZGckEg4S52uZa9 MqkG3rmuftFdchtdoApr7/3R/FkepbiqzFhjSad4p5LCUfdBDztftPAZeCv/lguu IAnHx1mQE76nysyD789Jbg= Received: from aceghjlmo (unknown [119.130.175.191]) by smtp7 (Coremail) with SMTP id DsmowEDpeEkp4zhT6iGxAw--.858S3; Mon, 31 Mar 2014 11:38:18 +0800 (CST) Date: Mon, 31 Mar 2014 11:38:16 +0800 From: "Lily" To: "freebsd-doc" Subject: Re:Riso Message-ID: <201403311138165515678@126.com> X-Mailer: Foxmail 6, 10, 201, 20 [cn] MIME-Version: 1.0 Content-Type: text/plain; charset="GB2312" Content-Transfer-Encoding: base64 X-CM-TRANSID: DsmowEDpeEkp4zhT6iGxAw--.858S3 X-Coremail-Antispam: 1Uf129KBjDUn29KB7ZKAUJUUUUU529EdanIXcx71UUUUU7v73 VFW2AGmfu7bjvjm3AaLaJ3UbIYCTnIWIevJa73UjIFyTuYvjxU2xpnUUUUU X-Originating-IP: [119.130.175.191] X-CM-SenderInfo: xqhz2xdvrtjqqrswhudrp/1tbi2gRfPEidlN8O6gAAsH X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: printhead@foxmail.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 03:39:25 -0000 RGVhciBwdXJjaGFzaW5nIG1hbmFnZXIsDQoNCg0KV2UgYXJlIGEgcHJvZmVzc2lvbmFsICBvZiBS aXNvL1JpY29oL0R1cGxvIG1hY2hpbmUgd2l0aCAxNSB5ZWFyc6GvIGV4cGVyaWVuY2UuIA0KDQpT byB3ZSB3YW50IHRvIGF2YWlsIG91cnNlbHZlcyBvZiBvcHBvcnR1bml0eSBlc3RhYmxpc2hpbmcg YnVzaW5lc3MgcmVsYXRpb24gd2l0aCB5b3UuDQoNCg0KQWxzbyBzdXBwbHkgdXNlZCBkdXBsaWNh dG9ycy9jb3BpZXJzLg0KDQogDQoNCg0KQmVzdCBSZWdhcmRzDQoNClVzZWQgY29waWVyJkRpZ2l0 YWwgZHVwbGljYXRvciwgU3BhcmUgcGFydHMmVG9uZXIgY2FydHJpZGdlLCBCYXJjb2RlIHByb2R1 Y3RzJk9mZmljZSBlcXVpcG1lbnQgc3VwcGxpZXMNCkd1YW5nemhvdSxDaGluYQ0KDQpTa3lwZTps dWNreWxpbHkyMTE= From owner-freebsd-doc@FreeBSD.ORG Mon Mar 31 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80AA7734 for ; Mon, 31 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 615DAB2B for ; Mon, 31 Mar 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2VB64Qg057837 for ; Mon, 31 Mar 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2VB642X057835 for freebsd-doc@FreeBSD.org; Mon, 31 Mar 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 31 Mar 2014 11:06:04 GMT Message-Id: <201403311106.s2VB642X057835@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/188043 doc [patch] man page for md5/sha1/sha256/sha412/rmd-160 cl o docs/187644 doc ifconfig man page address_family paragraph needs clari o docs/187473 doc [porters-handbook]: update Qt and KDE sections o docs/187465 doc mention patchlevels in explaining security advisories o docs/187417 doc [patch] Handbook: Add some missing -tags o docs/187351 doc handbook section on ports does not mention pkg search o docs/187321 doc [handbook] [patch] Clarification needed on using geli o docs/187142 doc The Handbook (chapter 15.4) does not mention /etc/jail o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc Add an ipfilter rc.conf option in handbook for IPv6 o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/78480 doc Networked printer setup unnecessarily complex in handb o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) 259 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Mar 31 13:28:48 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4DC931FC for ; Mon, 31 Mar 2014 13:28:48 +0000 (UTC) Received: from nm11-vm1.access.bullet.mail.gq1.yahoo.com (nm11-vm1.access.bullet.mail.gq1.yahoo.com [216.39.63.9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13071CF9 for ; Mon, 31 Mar 2014 13:28:47 +0000 (UTC) Received: from [216.39.60.176] by nm11.access.bullet.mail.gq1.yahoo.com with NNFMP; 31 Mar 2014 13:28:41 -0000 Received: from [216.39.60.233] by tm12.access.bullet.mail.gq1.yahoo.com with NNFMP; 31 Mar 2014 13:28:41 -0000 Received: from [127.0.0.1] by omp1004.access.mail.gq1.yahoo.com with NNFMP; 31 Mar 2014 13:28:41 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 365957.53810.bm@omp1004.access.mail.gq1.yahoo.com Received: (qmail 54686 invoked by uid 60001); 31 Mar 2014 13:28:41 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=att.net; s=s1024; t=1396272521; bh=aSsF8WtuRTGZzR9iOLrtypx8dUQ7HqdDDCwDxIuOsHQ=; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=2XdO629gsQgO/7As1xD/CIyyyroOQ4CfHnwJ4k0JG58SI+Wz3LIPLMAQ+Eyw2TQNrlswDfJM0AMN0p89pFf+cwinseJ6ZswtOEuLS7pwbcz92TJW+6Y50ML9H1a+w+tY2a5Oo1wwLG3NMf1RczJjAxQ4lujHqMh9eUVkhD3hO3s= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=att.net; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=M/BTt9ck079cs/51DabfNGlVsivOSeddkiWYiZjc7e3ru/GG5MaD13+cUh8+7ydVSnemM/Qfshimic4hFQNyuCLvRnKqOjqL4CIwKI5AyL7U/0UYyV6L1smVDF8sMtLrDdeUPoxrx7KZae5FH8DMddNVtVELnsJxDWqHYTqTIqM=; X-YMail-OSG: PZu5xiQVM1mKj7HqtDZNyXcqPmR1JgvO0oFChO4S.PTPGig JUK5h.mjAOit3frtO8ERiFzOvNEXCDeVKrusQpPPxGDxD87Dq7MVHo_N0XqL fezNeHtjyJsGQVC47T0xwlwKi5ZC5gvwg9hgG7xJhjgEu_BE25gC3vw_2yxr 2NNj3153tH30lpUv3A1j6pO6EkJ8s4lwKdxBO.Jqpcr26UWj2xV8tIz_dz7u 2ADmbUk2jcrbNWSm.kEpE4qgCr2J8ZjjXsAp6OpeNzFEwMQbhfwRpmongty_ RxPi1C2cfjz7o.THKxnvqyhUVHVjISpBJn.g7RgpaJd7Tzt5mv2kL.00Fnjh 36Qjy54gKaSMyBAMN7twfByV2GWLvF2ZU7Pqqa9dSgUevwXxsExA_FcMl_Mk T0VhO4SaLjTNKD7V7h_Ip0i2eVFH3wWSP63cEJCL5vtM1uiwWRkxaKHrGJVX nd9.cx1_WaL4jvt99uAfC05lF4AtsxagqVcN063XHEnO2jQTR7TToK8dfhAi PB63YAzqZJ0xUtq5gku1iJvUmF9PZKxVZ Received: from [99.98.83.69] by web184906.mail.gq1.yahoo.com via HTTP; Mon, 31 Mar 2014 06:28:41 PDT X-Rocket-MIMEInfo: 002.001, X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fXwoKPiBGcm9tOiBUYXJhcyBLb3JlbmtvIDxkc0B1a3JodWIubmV0Pgo.VG86IGZyZWVic2QtZG9jQGZyZWVic2Qub3JnIAo.U2VudDogU2F0dXJkYXksIE1hcmNoIDI5LCAyMDE0IDEyOjE5IFBNCj5TdWJqZWN0OiBlbi9oYW5kYm9vay9hdWRpdDogcHJvcG9zZWQgY29ycmVjdGlvbnMKPiAKPgo.wqAgR29vZCBkYXksIGRvY0AgZm9sa3MuCj4KPsKgIFRoZXJlJ3JlIGEgZmV3IHRoaW5ncyB0aGF0IGNvdWxkIGJlIGltcHJvdmVkIHdpdGhpbiBhdWRpdCBjaGEBMAEBAQE- X-Mailer: YahooMailWebService/0.8.181.645 References: <20140329161905.GB92398@gamma.ukrhub.net> Message-ID: <1396272521.45856.YahooMailNeo@web184906.mail.gq1.yahoo.com> Date: Mon, 31 Mar 2014 06:28:41 -0700 (PDT) From: Dru Lavigne Subject: Re: en/handbook/audit: proposed corrections To: Taras Korenko , "freebsd-doc@freebsd.org" In-Reply-To: <20140329161905.GB92398@gamma.ukrhub.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="2147000914-1361792676-1396272521=:45856" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Dru Lavigne List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 13:28:48 -0000 --2147000914-1361792676-1396272521=:45856 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable _______________________________=0A=0A> From: Taras Korenko = =0A>To: freebsd-doc@freebsd.org =0A>Sent: Saturday, March 29, 2014 12:19 PM= =0A>Subject: en/handbook/audit: proposed corrections=0A> =0A>=0A>=A0 Good d= ay, doc@ folks.=0A>=0A>=A0 There're a few things that could be improved wit= hin audit chapter of our=0A>handbook.=A0 However, those are just notes, whi= ch might require more polishing=0A>or wordsmithing.=A0 So, can anyone revie= w and/or comment the following *.diff?=0A=0A=0A=0AThanks, Taras.=0A=0AA sli= ghtly modified patch is attached. If it is acceptable to you, I can commit = it.=0A=0ACheers,=0A=0ADru --2147000914-1361792676-1396272521=:45856 Content-Type: text/x-patch; name="audit.diff" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="audit.diff" SW5kZXg6IGNoYXB0ZXIueG1sCj09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0t IGNoYXB0ZXIueG1sCShyZXZpc2lvbiA0NDM5MykKKysrIGNoYXB0ZXIueG1s CSh3b3JraW5nIGNvcHkpCkBAIC0xOTYsOCArMTk2LDEwIEBACiAgICAgPHRp dGxlPkF1ZGl0IENvbmZpZ3VyYXRpb248L3RpdGxlPgogCiAgICAgPHBhcmE+ VXNlciBzcGFjZSBzdXBwb3J0IGZvciBldmVudCBhdWRpdGluZyBpcyBpbnN0 YWxsZWQgYXMgcGFydAotICAgICAgb2YgdGhlIGJhc2UgJm9zOyBvcGVyYXRp bmcgc3lzdGVtLiAgS2VybmVsIHN1cHBvcnQgY2FuIGJlCi0gICAgICBlbmFi bGVkIGJ5IGFkZGluZyB0aGUgZm9sbG93aW5nIGxpbmUgdG8KKyAgICAgIG9m IHRoZSBiYXNlICZvczsgb3BlcmF0aW5nIHN5c3RlbS4gIEtlcm5lbCBzdXBw b3J0IGlzIGF2YWlsYWJsZQorICAgICAgaW4gdGhlIDxmaWxlbmFtZT5HRU5F UklDPC9maWxlbmFtZT4ga2VybmVsIGJ5IGRlZmF1bHQsCisgICAgICBhbmQg Jm1hbi5hdWRpdGQuODsgY2FuIGJlIGVuYWJsZWQKKyAgICAgIGJ5IGFkZGlu ZyB0aGUgZm9sbG93aW5nIGxpbmUgdG8KICAgICAgIDxmaWxlbmFtZT4vZXRj L3JjLmNvbmY8L2ZpbGVuYW1lPjo8L3BhcmE+CiAKICAgICA8cHJvZ3JhbWxp c3Rpbmc+YXVkaXRkX2VuYWJsZT0iWUVTIjwvcHJvZ3JhbWxpc3Rpbmc+CkBA IC0yMTcsMTAgKzIxOSw3IEBACiAgICAgICA8cGFyYT5TZWxlY3Rpb24gZXhw cmVzc2lvbnMgYXJlIHVzZWQgaW4gYSBudW1iZXIgb2YgcGxhY2VzIGluCiAJ dGhlIGF1ZGl0IGNvbmZpZ3VyYXRpb24gdG8gZGV0ZXJtaW5lIHdoaWNoIGV2 ZW50cyBzaG91bGQgYmUKIAlhdWRpdGVkLiAgRXhwcmVzc2lvbnMgY29udGFp biBhIGxpc3Qgb2YgZXZlbnQgY2xhc3NlcyB0bwotCW1hdGNoLCBlYWNoIHdp dGggYSBwcmVmaXggaW5kaWNhdGluZyB3aGV0aGVyIG1hdGNoaW5nIHJlY29y ZHMKLQlzaG91bGQgYmUgYWNjZXB0ZWQgb3IgaWdub3JlZCwgYW5kIG9wdGlv bmFsbHkgdG8gaW5kaWNhdGUgaWYKLQl0aGUgZW50cnkgaXMgaW50ZW5kZWQg dG8gbWF0Y2ggc3VjY2Vzc2Z1bCBvciBmYWlsZWQKLQlvcGVyYXRpb25zLiAg U2VsZWN0aW9uIGV4cHJlc3Npb25zIGFyZSBldmFsdWF0ZWQgZnJvbSBsZWZ0 IHRvCisJbWF0Y2guICBTZWxlY3Rpb24gZXhwcmVzc2lvbnMgYXJlIGV2YWx1 YXRlZCBmcm9tIGxlZnQgdG8KIAlyaWdodCwgYW5kIHR3byBleHByZXNzaW9u cyBhcmUgY29tYmluZWQgYnkgYXBwZW5kaW5nIG9uZSBvbnRvCiAJdGhlIG90 aGVyLjwvcGFyYT4KIApAQCAtMzgzLDEwICszODIsMTAgQEAKICAgICAgIDwv dGFibGU+CiAKICAgICAgIDxwYXJhPlRoZXNlIGF1ZGl0IGV2ZW50IGNsYXNz ZXMgbWF5IGJlIGN1c3RvbWl6ZWQgYnkgbW9kaWZ5aW5nCi0JdGhlIDxmaWxl bmFtZT5hdWRpdF9jbGFzczwvZmlsZW5hbWU+IGFuZCA8ZmlsZW5hbWU+YXVk aXRfCi0JICBldmVudDwvZmlsZW5hbWU+IGNvbmZpZ3VyYXRpb24gZmlsZXMu PC9wYXJhPgorCXRoZSA8ZmlsZW5hbWU+YXVkaXRfY2xhc3M8L2ZpbGVuYW1l PiBhbmQKKwk8ZmlsZW5hbWU+YXVkaXRfZXZlbnQ8L2ZpbGVuYW1lPiBjb25m aWd1cmF0aW9uIGZpbGVzLjwvcGFyYT4KIAotICAgICAgPHBhcmE+RWFjaCBh dWRpdCBldmVudCBjbGFzcyBpcyBjb21iaW5lZCB3aXRoIGEgcHJlZml4Cisg ICAgICA8cGFyYT5FYWNoIGF1ZGl0IGV2ZW50IGNsYXNzIG1heSBiZSBjb21i aW5lZCB3aXRoIGEgcHJlZml4CiAJaW5kaWNhdGluZyB3aGV0aGVyIHN1Y2Nl c3NmdWwvZmFpbGVkIG9wZXJhdGlvbnMgYXJlIG1hdGNoZWQsCiAJYW5kIHdo ZXRoZXIgdGhlIGVudHJ5IGlzIGFkZGluZyBvciByZW1vdmluZyBtYXRjaGlu ZyBmb3IgdGhlCiAJY2xhc3MgYW5kIHR5cGUuICA8eHJlZiBsaW5rZW5kPSJl dmVudC1wcmVmaXhlcyIvPiBzdW1tYXJpemVzCkBAIC02NTAsOCArNjQ5LDgg QEAKICAgICA8cGFyYT5TaW5jZSBhdWRpdCBsb2dzIG1heSBiZSB2ZXJ5IGxh cmdlLCBhIHN1YnNldCBvZiByZWNvcmRzIGNhbgogICAgICAgYmUgc2VsZWN0 ZWQgdXNpbmcgPGNvbW1hbmQ+YXVkaXRyZWR1Y2U8L2NvbW1hbmQ+LiAgVGhp cyBleGFtcGxlCiAgICAgICBzZWxlY3RzIGFsbCBhdWRpdCByZWNvcmRzIHBy b2R1Y2VkIGZvciB0aGUgdXNlcgotICAgICAgPHJlcGxhY2VhYmxlPnRyaG9k ZXM8L3JlcGxhY2VhYmxlPiBzdG9yZWQgaW4KLSAgICAgIDxyZXBsYWNlYWJs ZT5BVURJVEZJTEU8L3JlcGxhY2VhYmxlPjo8L3BhcmE+CisgICAgICA8c3lz dGVtaXRlbSBjbGFzcz0idXNlcm5hbWUiPnRyaG9kZXM8L3N5c3RlbWl0ZW0+ IHN0b3JlZCBpbgorICAgICAgPGZpbGVuYW1lPkFVRElURklMRTwvZmlsZW5h bWU+OjwvcGFyYT4KIAogICAgIDxzY3JlZW4+JnByb21wdC5yb290OyA8dXNl cmlucHV0PmF1ZGl0cmVkdWNlIC11IDxyZXBsYWNlYWJsZT50cmhvZGVzPC9y ZXBsYWNlYWJsZT4gL3Zhci9hdWRpdC88cmVwbGFjZWFibGU+QVVESVRGSUxF PC9yZXBsYWNlYWJsZT4gfCBwcmF1ZGl0PC91c2VyaW5wdXQ+PC9zY3JlZW4+ CiAKQEAgLTczOSw4ICs3MzgsOCBAQAogCiAgICAgICA8cGFyYT5BdXRvbWF0 aWMgcm90YXRpb24gb2YgdGhlIGF1ZGl0IHRyYWlsIGZpbGUgYmFzZWQgb24g ZmlsZQogCXNpemUgaXMgcG9zc2libGUgdXNpbmcgPG9wdGlvbj5maWxlc3o8 L29wdGlvbj4gaW4KLQk8ZmlsZW5hbWU+YXVkaXQuY29udHJvbDwvZmlsZW5h bWU+IGFzIGRlc2NyaWJlZCBpbiA8eHJlZgotCSAgbGlua2VuZD0iYXVkaXQt Y29uZmlnIi8+LjwvcGFyYT4KKwk8ZmlsZW5hbWU+YXVkaXRfY29udHJvbDwv ZmlsZW5hbWU+IGFzIGRlc2NyaWJlZCBpbiA8eHJlZgorCSAgbGlua2VuZD0i YXVkaXQtYXVkaXRjb250cm9sIi8+LjwvcGFyYT4KIAogICAgICAgPHBhcmE+ QXMgYXVkaXQgdHJhaWwgZmlsZXMgY2FuIGJlY29tZSB2ZXJ5IGxhcmdlLCBp dCBpcyBvZnRlbgogCWRlc2lyYWJsZSB0byBjb21wcmVzcyBvciBvdGhlcndp c2UgYXJjaGl2ZSB0cmFpbHMgb25jZSB0aGV5Cg== --2147000914-1361792676-1396272521=:45856-- From owner-freebsd-doc@FreeBSD.ORG Mon Mar 31 14:01:18 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 452A1AE5 for ; Mon, 31 Mar 2014 14:01:18 +0000 (UTC) Received: from nm27-vm2.access.bullet.mail.gq1.yahoo.com (nm27-vm2.access.bullet.mail.gq1.yahoo.com [216.39.63.55]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B07186 for ; Mon, 31 Mar 2014 14:01:17 +0000 (UTC) Received: from [216.39.60.168] by nm27.access.bullet.mail.gq1.yahoo.com with NNFMP; 31 Mar 2014 13:58:39 -0000 Received: from [216.39.60.251] by tm4.access.bullet.mail.gq1.yahoo.com with NNFMP; 31 Mar 2014 13:58:39 -0000 Received: from [127.0.0.1] by omp1022.access.mail.gq1.yahoo.com with NNFMP; 31 Mar 2014 13:58:39 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 278752.11123.bm@omp1022.access.mail.gq1.yahoo.com Received: (qmail 69256 invoked by uid 60001); 31 Mar 2014 13:58:39 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=att.net; s=s1024; t=1396274319; bh=YWfjY2Q4Ya1cBylbSKbClrPglqHiJZagwg3BYoRqpNc=; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=x5tmg8Y7GG3IQyB6A6kMOlldyMutBwAGdHq71FzXySH8y4soctDoEoIR0dyYmmNvpJscw1NIXSPsrJEMxo7atfaVG12nho7QzfTbl0KHmE0wV1A3Gu7O4WcGyielrEtcr/rQ/7eTBY8pOrjUaPkwqZZ840qt7vUh5PRhNudENNI= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=att.net; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=FK3DesETmQrBDVcvengru1EZuGaikh3UEtLdE6ErVMfyLOyFc8qLoEpbaN84pDLQksM1B6XmnFfm519DVicTrmHilKV0wFpHNOgB3r7BDTpUKrP7XyIPfV15Z//ji6qpx/lOaEFGh13KLgjojJvVMGcv4Ip+zylUj/v826XKhyI=; X-YMail-OSG: 91bxnIoVM1lItVeqol7zgDU5SRTOKvDNIExJKF7OmJEsLuX oJScqZXAQh50cOMqf.LO1ZLie2J9NQwDm_scBfYzYh2V3dxJPYI1Nslc5A9x F7hW7VNSscybrvUwxMQUG8dhtPyEM3yYNLwtm8e9nVj6j8eV8MmV48gL5lGw KJYvB5Fe513fEJXRvQ8Oy3lyDd9OfSNhIx3U9hVxF1N3a1k7RNFSpuJ.IZ1N 20.lmtnsYJSI8zyB07CKLEv0Eu1qw1wRtvxG_W4d.Nlnz_6K2xcPQgCLNyDf f2XhoE8NqC0F.IbNUK2z.Va9cq6EPVUIBQM.UHLZTWrOcca1112aW3jyzns5 gD2R_fvaGwSsytxZZu7nmtlmNduMquE0ga_eFTqCzOVVh5Acd5RnGqy6Fuj8 qwbXFA9ggCmuMmReymIvGn0GsAViM0Va7biCOoYxQ_5H5544gSdRBRi4gA24 _CCMVFxMpVCwyT8WgVydr22tyc4BqBAd2aF6a6O_5wLouuaODrrqHsklr Received: from [99.98.83.69] by web184905.mail.gq1.yahoo.com via HTTP; Mon, 31 Mar 2014 06:58:38 PDT X-Rocket-MIMEInfo: 002.001, CgoKCgo.RG5lIDI5LjMuMjAxNCAzOjMyLCBUaG9tYXMgSG9mZm1hbm4gbmFwc2FsKGEpOgo.Pj4gSSB3YXMgcmVhZGluZyB0aGUgaGFuZGJvb2sgYW5kIHN0dW1ibGVkIHVwb24gdGhlIGZvbGxvd2luZyBzZW50ZW5jZToKPj4.Cj4.PiAiRmFpbG92ZXIgYWxsb3dzIHRyYWZmaWMgdG8gY29udGludWUgdG8gZmxvdyBldmVuIGlmIGFuIGludGVyZmFjZSBiZWNvbWVzCj4.PiBhdmFpbGFibGUuIgo.Pgo.PiBBbHNvLCBkb2VzICJhbiBpbnRlcmZhY2UiIGNvbnZleSB3aGF0IHdlIG5lZWQgaGVyZT8gRm9yIGFueSABMAEBAQE- X-Mailer: YahooMailWebService/0.8.181.645 References: <533636D4.4040404@weboutsourcing.cz> Message-ID: <1396274318.36618.YahooMailNeo@web184905.mail.gq1.yahoo.com> Date: Mon, 31 Mar 2014 06:58:38 -0700 (PDT) From: Dru Lavigne Subject: Re: Possible mistake on handbook - Section 30.7: Link Aggregation To: Ondra Knezour , Thomas Hoffmann , "freebsd-doc@freebsd.org" , "feld@freebsd.org" In-Reply-To: <533636D4.4040404@weboutsourcing.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Rafael Possamai X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Dru Lavigne List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 14:01:18 -0000 >Dne 29.3.2014 3:32, Thomas Hoffmann napsal(a): >>> I was reading the handbook and stumbled upon the following sentence: >>> >>> "Failover allows traffic to continue to flow even if an interface becomes >>> available." >> >> Also, does "an interface" convey what we need here? For any given N-way >> aggregation, can't we have N-1 (one or more, but not all) interfaces become >> unavailable and still have a working link? > >And Cpt. Obvious may add an interface is not enough, you can have four >interfaces aggregated in the bond, but there is still no flow without a >link. To add even more chaos, both the physical and virtual interfaces >are mentioned in the sentence preceding the one which Rafael mentions. > >That said, what about something like following? > >Failover allows traffic to continue to flow if at least one aggregated >network interface has link established. I've commited an edit in r44394. Please let me know if further wordsmithing is needed to make it clearer. Thanks Rafael for pointing this out! Cheers, Dru From owner-freebsd-doc@FreeBSD.ORG Mon Mar 31 14:09:16 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC0D65D9; Mon, 31 Mar 2014 14:09:16 +0000 (UTC) Received: from mail-yh0-x233.google.com (mail-yh0-x233.google.com [IPv6:2607:f8b0:4002:c01::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5CAD21CA; Mon, 31 Mar 2014 14:09:16 +0000 (UTC) Received: by mail-yh0-f51.google.com with SMTP id f10so7610014yha.38 for ; Mon, 31 Mar 2014 07:09:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=+QQAs7gSRyJwlJFLjG60R6UVfVLQyvv1f/tosytth1s=; b=sfYBd+MeA1VRgNTfK6ZeMpbaGYMjvwhnzwc0zVrynpTXipsMAAofVKpaXnsu1yGYXH wLjV0dFdABTszmOXaSBXz+ioSvEW3xD725q/pNgzBARx6/tqX9cFC7AyypmvKiRsZ7Y+ K/L7tovYlAc0YzEMQX0BUMsNdj22jXtTRXjJ9OA/YB7uqUhKaSuMG1ugshVdoEDE523G 9pgmQrnJx80mdV3C54HssfZI317EbSqbFJ2o8L6i5VkcqPOH9sAihc2ZvWuw3korDQ95 SYeYH670vtG5qVRhEfeDou7RKf8xuzQd9vSQPu1duxDv1nZHBlc19qEqWYwJbL7nP/MW W4Rg== X-Received: by 10.236.138.73 with SMTP id z49mr1837008yhi.152.1396274955483; Mon, 31 Mar 2014 07:09:15 -0700 (PDT) MIME-Version: 1.0 Sender: rafaelpossa@gmail.com Received: by 10.170.147.4 with HTTP; Mon, 31 Mar 2014 07:08:54 -0700 (PDT) In-Reply-To: <1396274318.36618.YahooMailNeo@web184905.mail.gq1.yahoo.com> References: <533636D4.4040404@weboutsourcing.cz> <1396274318.36618.YahooMailNeo@web184905.mail.gq1.yahoo.com> From: Rafael Possamai Date: Mon, 31 Mar 2014 09:08:54 -0500 X-Google-Sender-Auth: 3clB3992SGiRQL1daNA_OJh2sqY Message-ID: Subject: Re: Possible mistake on handbook - Section 30.7: Link Aggregation To: Dru Lavigne Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: "freebsd-doc@freebsd.org" , "feld@freebsd.org" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 14:09:16 -0000 I am glad I could help. Thank you everyone who participated in this thread. Best, Rafael On Mon, Mar 31, 2014 at 8:58 AM, Dru Lavigne wrote: > > > > > > >Dne 29.3.2014 3:32, Thomas Hoffmann napsal(a): > >>> I was reading the handbook and stumbled upon the following sentence: > >>> > >>> "Failover allows traffic to continue to flow even if an interface > becomes > >>> available." > >> > >> Also, does "an interface" convey what we need here? For any given N-way > >> aggregation, can't we have N-1 (one or more, but not all) interfaces > become > >> unavailable and still have a working link? > > > >And Cpt. Obvious may add an interface is not enough, you can have four > >interfaces aggregated in the bond, but there is still no flow without a > >link. To add even more chaos, both the physical and virtual interfaces > >are mentioned in the sentence preceding the one which Rafael mentions. > > > >That said, what about something like following? > > > >Failover allows traffic to continue to flow if at least one aggregated > >network interface has link established. > > > > I've commited an edit in r44394. Please let me know if further > wordsmithing is needed to make it clearer. > > Thanks Rafael for pointing this out! > > Cheers, > > Dru > > From owner-freebsd-doc@FreeBSD.ORG Mon Mar 31 14:12:02 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CA41767; Mon, 31 Mar 2014 14:12:02 +0000 (UTC) Received: from gamma.ukrhub.net (gamma.ukrhub.net [94.125.120.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gamma.ukrhub.net", Issuer "gamma.ukrhub.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 1E60E267; Mon, 31 Mar 2014 14:12:01 +0000 (UTC) Received: from gamma.ukrhub.net (localhost [127.0.0.1]) by gamma.ukrhub.net (8.14.8/8.14.8) with ESMTP id s2VE0gdG003792 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 31 Mar 2014 17:00:42 +0300 (EEST) (envelope-from ds@ukrhub.net) Received: (from ds@localhost) by gamma.ukrhub.net (8.14.8/8.14.8/Submit) id s2VE0gpT003791; Mon, 31 Mar 2014 17:00:42 +0300 (EEST) (envelope-from ds@ukrhub.net) X-Authentication-Warning: gamma.ukrhub.net: ds set sender to ds@ukrhub.net using -f Date: Mon, 31 Mar 2014 17:00:42 +0300 From: Taras Korenko To: Dru Lavigne Subject: Re: en/handbook/audit: proposed corrections Message-ID: <20140331140042.GC2139@gamma.ukrhub.net> References: <20140329161905.GB92398@gamma.ukrhub.net> <1396272521.45856.YahooMailNeo@web184906.mail.gq1.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1396272521.45856.YahooMailNeo@web184906.mail.gq1.yahoo.com> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: "freebsd-doc@freebsd.org" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Taras Korenko List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 14:12:02 -0000 On Mon, Mar 31, 2014 at 06:28:41AM -0700, Dru Lavigne wrote: > _______________________________ > > > From: Taras Korenko > >To: freebsd-doc@freebsd.org > >Sent: Saturday, March 29, 2014 12:19 PM > >Subject: en/handbook/audit: proposed corrections > > > > ...   However, those are just notes, which might require more polishing > >or wordsmithing.  So, can anyone review and/or comment the following *.diff? > > ... > A slightly modified patch is attached. If it is acceptable to you, I can commit it. > ... No objections; please, commit it. > Cheers, > > Dru > Index: chapter.xml > =================================================================== > --- chapter.xml (revision 44393) > +++ chapter.xml (working copy) > @@ -196,8 +196,10 @@ > Audit Configuration > > User space support for event auditing is installed as part > - of the base &os; operating system. Kernel support can be > - enabled by adding the following line to > + of the base &os; operating system. Kernel support is available > + in the GENERIC kernel by default, > + and &man.auditd.8; can be enabled > + by adding the following line to > /etc/rc.conf: > > auditd_enable="YES" > @@ -217,10 +219,7 @@ > Selection expressions are used in a number of places in > the audit configuration to determine which events should be > audited. Expressions contain a list of event classes to > - match, each with a prefix indicating whether matching records > - should be accepted or ignored, and optionally to indicate if > - the entry is intended to match successful or failed > - operations. Selection expressions are evaluated from left to > + match. Selection expressions are evaluated from left to > right, and two expressions are combined by appending one onto > the other. > > @@ -383,10 +382,10 @@ > > > These audit event classes may be customized by modifying > - the audit_class and audit_ > - event configuration files. > + the audit_class and > + audit_event configuration files. > > - Each audit event class is combined with a prefix > + Each audit event class may be combined with a prefix > indicating whether successful/failed operations are matched, > and whether the entry is adding or removing matching for the > class and type. summarizes > @@ -650,8 +649,8 @@ > Since audit logs may be very large, a subset of records can > be selected using auditreduce. This example > selects all audit records produced for the user > - trhodes stored in > - AUDITFILE: > + trhodes stored in > + AUDITFILE: > > &prompt.root; auditreduce -u trhodes /var/audit/AUDITFILE | praudit > > @@ -739,8 +738,8 @@ > > Automatic rotation of the audit trail file based on file > size is possible using in > - audit.control as described in - linkend="audit-config"/>. > + audit_control as described in + linkend="audit-auditcontrol"/>. > > As audit trail files can become very large, it is often > desirable to compress or otherwise archive trails once they P.S.: thanks for your huge work on the Handbook. -- WBR, Taras Korenko From owner-freebsd-doc@FreeBSD.ORG Mon Mar 31 15:04:44 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C26623A0; Mon, 31 Mar 2014 15:04:44 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 954D9AB1; Mon, 31 Mar 2014 15:04:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2VF4ihO036080; Mon, 31 Mar 2014 15:04:44 GMT (envelope-from dru@freefall.freebsd.org) Received: (from dru@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2VF4iXC036079; Mon, 31 Mar 2014 15:04:44 GMT (envelope-from dru) Date: Mon, 31 Mar 2014 15:04:44 GMT Message-Id: <201403311504.s2VF4iXC036079@freefall.freebsd.org> To: dru@FreeBSD.org, freebsd-doc@FreeBSD.org, dri@FreeBSD.org From: dru@FreeBSD.org Subject: Re: docs/148984: [handbook] Mistake in section 16.15.4 of the handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 15:04:44 -0000 Synopsis: [handbook] Mistake in section 16.15.4 of the handbook Responsible-Changed-From-To: freebsd-doc->dri Responsible-Changed-By: dru Responsible-Changed-When: Mon Mar 31 15:04:22 UTC 2014 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=148984 From owner-freebsd-doc@FreeBSD.ORG Mon Mar 31 20:19:26 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6E57E1F; Mon, 31 Mar 2014 20:19:26 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 9B47BFDA; Mon, 31 Mar 2014 20:19:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2VKJQfJ037755; Mon, 31 Mar 2014 20:19:26 GMT (envelope-from wblock@freefall.freebsd.org) Received: (from wblock@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2VKJQjH037754; Mon, 31 Mar 2014 20:19:26 GMT (envelope-from wblock) Date: Mon, 31 Mar 2014 20:19:26 GMT Message-Id: <201403312019.s2VKJQjH037754@freefall.freebsd.org> To: b.heidotting@yahoo.com, wblock@FreeBSD.org, freebsd-doc@FreeBSD.org From: wblock@FreeBSD.org Subject: Re: docs/187417: [patch] Handbook: Add some missing -tags in advanced-networking section X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 20:19:26 -0000 Synopsis: [patch] Handbook: Add some missing -tags in advanced-networking section State-Changed-From-To: open->closed State-Changed-By: wblock State-Changed-When: Mon Mar 31 20:17:44 UTC 2014 State-Changed-Why: These and other missing tags have been restored. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=187417 From owner-freebsd-doc@FreeBSD.ORG Tue Apr 1 06:13:56 2014 Return-Path: Delivered-To: www@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4126C3D6 for ; Tue, 1 Apr 2014 06:13:56 +0000 (UTC) Received: from xmail2.wiley.com (xmail2.wiley.com [208.215.179.22]) by mx1.freebsd.org (Postfix) with ESMTP id 03F171EB for ; Tue, 1 Apr 2014 06:13:55 +0000 (UTC) Received: from wasint0709.wiley.com (wasint0709.wiley.com [208.215.179.99]) by xmail2.wiley.com (8.13.8/8.13.8) with ESMTP id s310eUPg008717 for ; Mon, 31 Mar 2014 20:40:30 -0400 Received: from wasint0709.wiley.com (wasint0709-loc [127.0.0.1]) by wasint0709.wiley.com (8.14.4/8.14.4) with ESMTP id s310eVHC029994 for ; Mon, 31 Mar 2014 20:40:31 -0400 Received: (from apache@localhost) by wasint0709.wiley.com (8.14.4/8.14.4/Submit) id s310eVPL029993; Mon, 31 Mar 2014 20:40:31 -0400 Date: Mon, 31 Mar 2014 20:40:31 -0400 Message-Id: <201404010040.s310eVPL029993@wasint0709.wiley.com> To: www@freebsd.org Subject: Ship Notification From: "Priority Mail" X-Mailer: IceWarpWebMail4.1.4 Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Priority Mail List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2014 06:13:56 -0000   USPS .COM           Notification Our courier couldnt make the delivery of parcel to you at 25th March. Print label and show it in the nearest post office.     Print a Shipping Label NOW   USPS | Copyright 2014 USPS. All Rights Reserved. From owner-freebsd-doc@FreeBSD.ORG Tue Apr 1 10:49:51 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 929D7EA4 for ; Tue, 1 Apr 2014 10:49:51 +0000 (UTC) Received: from smtp1.multiplay.co.uk (smtp1.multiplay.co.uk [85.236.96.35]) by mx1.freebsd.org (Postfix) with ESMTP id 5836A7B for ; Tue, 1 Apr 2014 10:49:51 +0000 (UTC) Received: by smtp1.multiplay.co.uk (Postfix, from userid 65534) id 1D15720E7088D; Tue, 1 Apr 2014 10:49:44 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.multiplay.co.uk X-Spam-Level: * X-Spam-Status: No, score=1.0 required=8.0 tests=AWL,BAYES_00,DOS_OE_TO_MX, FSL_HELO_NON_FQDN_1,HELO_NO_DOMAIN,RDNS_DYNAMIC,STOX_REPLY_TYPE, STOX_REPLY_TYPE_WITHOUT_QUOTES autolearn=no version=3.3.1 Received: from r2d2 (82-69-141-170.dsl.in-addr.zen.co.uk [82.69.141.170]) by smtp1.multiplay.co.uk (Postfix) with ESMTP id 8343B20E7088B for ; Tue, 1 Apr 2014 10:49:38 +0000 (UTC) Message-ID: From: "Steven Hartland" To: Subject: Adding a new entry to 10.0R errata Date: Tue, 1 Apr 2014 11:49:18 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2014 10:49:51 -0000 Hi guys I've just been tripped up by an issue with the 10-RELEASE which causes a panic and hang when patching LSI firmware on mps. This is already fixed in 10/stable by mav. Having spoken to him he agrees that its likely worth mentioning in the 10.0R errata. So the question is how do we go about doing that? For reference the following two revisions are required:- http://svnweb.freebsd.org/base?view=revision&revision=262553 http://svnweb.freebsd.org/base?view=revision&revision=262575 Regards Steve From owner-freebsd-doc@FreeBSD.ORG Tue Apr 1 11:56:10 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB1C5146; Tue, 1 Apr 2014 11:56:10 +0000 (UTC) Received: from smtp1.multiplay.co.uk (smtp1.multiplay.co.uk [85.236.96.35]) by mx1.freebsd.org (Postfix) with ESMTP id 9ED67885; Tue, 1 Apr 2014 11:56:10 +0000 (UTC) Received: by smtp1.multiplay.co.uk (Postfix, from userid 65534) id 1324A20E7088C; Tue, 1 Apr 2014 11:56:09 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.multiplay.co.uk X-Spam-Level: X-Spam-Status: No, score=-0.0 required=8.0 tests=AWL,BAYES_00,DOS_OE_TO_MX, FSL_HELO_NON_FQDN_1,HELO_NO_DOMAIN,RDNS_DYNAMIC autolearn=no version=3.3.1 Received: from r2d2 (82-69-141-170.dsl.in-addr.zen.co.uk [82.69.141.170]) by smtp1.multiplay.co.uk (Postfix) with ESMTP id B8A3620E7088B; Tue, 1 Apr 2014 11:56:03 +0000 (UTC) Message-ID: From: "Steven Hartland" To: , References: Subject: Re: Adding a new entry to 10.0R errata Date: Tue, 1 Apr 2014 12:56:00 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2014 11:56:10 -0000 Looping in re@ ----- Original Message ----- From: "Steven Hartland" > Hi guys I've just been tripped up by an issue with the 10-RELEASE > which causes a panic and hang when patching LSI firmware on mps. > > This is already fixed in 10/stable by mav. Having spoken to him > he agrees that its likely worth mentioning in the 10.0R errata. > > So the question is how do we go about doing that? > > For reference the following two revisions are required:- > http://svnweb.freebsd.org/base?view=revision&revision=262553 > http://svnweb.freebsd.org/base?view=revision&revision=262575 > > Regards > Steve > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" > From owner-freebsd-doc@FreeBSD.ORG Tue Apr 1 14:55:20 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 892C1714 for ; Tue, 1 Apr 2014 14:55:20 +0000 (UTC) Received: from smtp-newslist-213.md02.com (smtp-newslist-213.md02.com [209.172.40.213]) by mx1.freebsd.org (Postfix) with ESMTP id 60872E53 for ; Tue, 1 Apr 2014 14:55:20 +0000 (UTC) Received: by smtp-newslist-213.md02.com id h7b9lg19sl8o for ; Tue, 1 Apr 2014 10:55:14 -0400 (envelope-from ) Subject: CCTV From: "Phil Law" <3@boltoncctv.com> To: freebsd-doc@freebsd.org Tag-id: 209494.3306923.2147983.64.m.bc7e06b6 IP-Address: 209.172.40.213 Interface-id: 443 Parent-id: 93133 Client-id: 209494 MIME-Version: 1.0 Message-Id: <20140401145514.CF1878BE18@pmta4-1-06> Date: Tue, 1 Apr 2014 10:55:14 -0400 (EDT) Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2014 14:55:20 -0000 Hi, We can install a CCTV at your house or business for the following price. 1 Camera system =C2=A3370 2 Camera system =C2=A3420 3 Camera system =C2=A3595 4 Camera system =C2=A3645 Would you like me to arrange this for you? You get the following with all our systems. - See the cameras on your mobile. - High quality cameras with wide lens. - High capacity storage. - Infrared night vision. - Includes all parts and labour. - Includes cameras and recorder. - 1 years hardware warranty. We can beat any like for like price. Our engineers can install a system anywhere in the UK* Regards, Bolton CCTV Telephone: 01204 216810 Website: http://link.mailanimal01.com/c/443/0208232bdba84e2c6a0b6b620c4d= f166cf6aa3ba1230f4fe79d4a3b3d0148ef5 Address: 3 Churchbank, Bolton, BL1 1HX * Additional costs for any location which is more than 50 miles from our= offices. Unsubscribe from this mailing list: http://link.mailanimal01.com/u/443/0= 208232bdba84e2c6a0b6b620c4df1662c10e71d98e9e653 From owner-freebsd-doc@FreeBSD.ORG Tue Apr 1 15:05:19 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6C18BAE for ; Tue, 1 Apr 2014 15:05:19 +0000 (UTC) Received: from smtp-newslist-201.md02.com (smtp-newslist-201.md02.com [209.172.40.201]) by mx1.freebsd.org (Postfix) with ESMTP id AC228F67 for ; Tue, 1 Apr 2014 15:05:19 +0000 (UTC) Received: by smtp-newslist-201.md02.com id h7baqu19sl8q for ; Tue, 1 Apr 2014 10:55:13 -0400 (envelope-from ) Subject: CCTV From: "Phil Law" <3@boltoncctv.com> To: doc@freebsd.org Tag-id: 209494.3306923.2147983.56.m.178f96bd IP-Address: 209.172.40.201 Interface-id: 443 Parent-id: 93133 Client-id: 209494 MIME-Version: 1.0 Message-Id: <20140401145513.ABF2F8BDFB@pmta4-1-06> Date: Tue, 1 Apr 2014 10:55:13 -0400 (EDT) Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2014 15:05:19 -0000 Hi, We can install a CCTV at your house or business for the following price. 1 Camera system =C2=A3370 2 Camera system =C2=A3420 3 Camera system =C2=A3595 4 Camera system =C2=A3645 Would you like me to arrange this for you? You get the following with all our systems. - See the cameras on your mobile. - High quality cameras with wide lens. - High capacity storage. - Infrared night vision. - Includes all parts and labour. - Includes cameras and recorder. - 1 years hardware warranty. We can beat any like for like price. Our engineers can install a system anywhere in the UK* Regards, Bolton CCTV Telephone: 01204 216810 Website: http://link.mailanimal01.com/c/443/0208232bdba84e2c76c0a1d09ccf= 1643bcc67509f9fe3ea879d4a3b3d0148ef5 Address: 3 Churchbank, Bolton, BL1 1HX * Additional costs for any location which is more than 50 miles from our= offices. Unsubscribe from this mailing list: http://link.mailanimal01.com/u/443/0= 208232bdba84e2c76c0a1d09ccf16439f0c9baed33abfd6 From owner-freebsd-doc@FreeBSD.ORG Tue Apr 1 16:00:16 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0638779A for ; Tue, 1 Apr 2014 16:00:16 +0000 (UTC) Received: from bs1.fjl.org.uk (bs1.fjl.org.uk [84.45.41.196]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "bs1.fjl.org.uk", Issuer "bs1.fjl.org.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id AA0B88A6 for ; Tue, 1 Apr 2014 16:00:15 +0000 (UTC) Received: from [192.168.1.35] (host86-150-244-211.range86-150.btcentralplus.com [86.150.244.211]) (authenticated bits=0) by bs1.fjl.org.uk (8.14.4/8.14.4) with ESMTP id s31FUWD8041643 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES128-SHA bits=128 verify=NO) for ; Tue, 1 Apr 2014 16:30:33 +0100 (BST) (envelope-from freebsd-doc@fjl.co.uk) Message-ID: <533ADB9B.1080107@fjl.co.uk> Date: Tue, 01 Apr 2014 16:30:35 +0100 From: Frank Leonhardt User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: CCTV (off topic) References: <20140401145513.ABF2F8BDFB@pmta4-1-06> In-Reply-To: <20140401145513.ABF2F8BDFB@pmta4-1-06> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2014 16:00:16 -0000 In case anyone was wondering what kind of idiot would post this, I decided to give them a call. It probably was sent by on or behalf of a legitimate small company, albeit down-market at £50 per camera. They paid for a list that went to business in the north-west of England. The spam was sent out from Canada by an agent, probably to avoid legal problems, although there's no suggestion that their client was sensible to this. For what it's worth, they apologised and will be taking it up with the company they paid for the dud data. It's illegal to send out emails like this in Europe, unless it's a business you've opted to receive emails from. Feel free to berate them directly (Phil Law does exist) but I'm putting it down to naivety and allowing market forces to prevent it (they'll want to give their mailing list supplier a good kicking). On 01/04/2014 15:55, Phil Law wrote: > Hi, > > We can install a CCTV at your house or business for the following price. > > 1 Camera system £370 > > 2 Camera system £420 > > 3 Camera system £595 > > 4 Camera system £645 > > Would you like me to arrange this for you? > > > Our engineers can install a system anywhere in the UK* > > Regards, > > Bolton CCTV > > From owner-freebsd-doc@FreeBSD.ORG Tue Apr 1 21:18:53 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 950FFDAB; Tue, 1 Apr 2014 21:18:53 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 65273D0E; Tue, 1 Apr 2014 21:18:53 +0000 (UTC) Received: from glenbarber.us (70.15.88.86.res-cmts.sewb.ptd.net [70.15.88.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id B6FF47FDC; Tue, 1 Apr 2014 21:18:51 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us B6FF47FDC Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Tue, 1 Apr 2014 17:18:49 -0400 From: Glen Barber To: Steven Hartland Subject: Re: Adding a new entry to 10.0R errata Message-ID: <20140401211849.GC14379@glenbarber.us> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="0vzXIDBeUiKkjNJl" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: re@freebsd.org, doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2014 21:18:53 -0000 --0vzXIDBeUiKkjNJl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable ACK from re@, we'll take a look. Glen On Tue, Apr 01, 2014 at 12:56:00PM +0100, Steven Hartland wrote: > Looping in re@ >=20 > ----- Original Message ----- From: "Steven Hartland" >=20 >=20 > >Hi guys I've just been tripped up by an issue with the 10-RELEASE > >which causes a panic and hang when patching LSI firmware on mps. > > > >This is already fixed in 10/stable by mav. Having spoken to him > >he agrees that its likely worth mentioning in the 10.0R errata. > > > >So the question is how do we go about doing that? > > > >For reference the following two revisions are required:- > >http://svnweb.freebsd.org/base?view=3Drevision&revision=3D262553 > >http://svnweb.freebsd.org/base?view=3Drevision&revision=3D262575 > > > > Regards > > Steve --0vzXIDBeUiKkjNJl Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTOy05AAoJELls3eqvi17QDDcQAKf7mRpJwlDw5INyur+LTuH1 IfRJQIb7aOHMqrtaHB2Z8qtFRV5OXUA/0/sVTVrbCJD2+Wn+1jzmsS5wwQ9kD5kx xVPBWiQwGiXSSu0E/FtxyVuSS4vKTQTY75Dj80ZGfj7E2yH24tZpoEPf17MGBFO9 pwr70UfjRNEn9plgwD4Cxl3j/6j/L6dEv3OSvVjCVK8G3Zh5UMMwUPeA5mqX7QDn 3feTH7eLoaA/TjutsSKqy2YgTCLpIeaeilhxHvCDLEMNEinn76cQCQZjjJZwGXAx WY4XoOIfdt1HwlywDLtB8rBix6CEBDKQP09cCUidyIwqVTZ5jYOifjBlGej2vbHf YXCMtk72d8WaB88K3/GupX37NeBi4pkJGd2dM5FILMFCrpdmAbPgBHpxzC7/A/Dm W65Ck2jsXckVpTks6zwJDg8qUPsnbFRCdU4XQHkKGjQbFOzd9eIuVCYQs7PQIifD /w/0xGjOaQIjoSESUTHAXWaPvfc3ZahfI/+27xUhPWmoyoB+HmBsZUq0FB/Wh6IA tb8CkoxGiMurxpW2/jB4c3ZGEsgS0v3IPo/u/4YKY69pXipeO4AO6Ix7xqX4HK3a OYV5XXuSxgNSo8S3/tQzL0yVJD3B9txKfHiKDD1LTSgTRGpnsGTHx7U9R1NXYV8S 87qwXG0B0XjX5RxoUbHE =0VHg -----END PGP SIGNATURE----- --0vzXIDBeUiKkjNJl-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 2 15:33:02 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23A33F22 for ; Wed, 2 Apr 2014 15:33:02 +0000 (UTC) Received: from mail3.mustanglist.com (mail3.mustanglist.com [50.16.231.103]) by mx1.freebsd.org (Postfix) with ESMTP id D0F21F32 for ; Wed, 2 Apr 2014 15:33:01 +0000 (UTC) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 1846C812D for ; Wed, 2 Apr 2014 10:33:01 -0500 (CDT) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 076CF8166 for ; Wed, 2 Apr 2014 10:33:01 -0500 (CDT) From: Maria Ramirez X-Mailer: MustangList [msg-1396452781.0237 en-mail3] X-RPTags: List Type Content X-MLlistcampaign: 575-111572 X-ML-Message-ID: <> X-ML-Message-Source: <> X-ML-Message-Trk: <> Subject: Digital Downloads for Nonprofits, Schools, Ministries & Churches To: doc@freebsd.org Message-Id: <20140402153301.076CF8166@mail3.mustanglist.com> Date: Wed, 2 Apr 2014 10:33:01 -0500 (CDT) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Maria Ramirez List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2014 15:33:02 -0000 Dear Nonprofit Leader...National Development Institute would like to thank you for your years of service to the Nonprofit, Education, Ministry & Church Sectors! [1]Visit Here for Complimentary Access to NDI's Digital Download Library We believe that when your organization invests in civil society a child's health, a student's dream or a family's future is made secure. As a small token of our gratitude we're opening NDI's expanded Nonprofit Digital Download Library for your use for the next 24hrs. (We're pleased to announce for those executives who have used the library in the past that your online experience has been improved.) National Development Institute is a 501c3 nonprofit agency that nurtures and leverages philanthropy by supplying funders and organizations the capacity building research and education they require to advance their mission. Please feel free to call (800) 257-6670 to reach an NDI Team Member with any questions you may have. Thank you and have a great day. Maria Ramirez National Development Institute To stop receiving messages from the National Development Institute, click [2]here. To pass a copy of this message on to a friend, click [3]here. This email was sent to you by: National Development Institute 201 East Main Street Lexington SC 29072 [msg-1396452781.0237 en-mail3] References Visible links 1. http://r.mustanglist.com/redir.php/b/Z3RPVDU3NS0xMTE1NzItMzE3NTc0MC0zNjUzOTcxMQ~~/ 2. http://www.mustanglist.com/us.php/msg/1396452781.0237/en/mail3 3. http://www.mustanglist.com/pio.php/msg/1396452781.0237/en/mail3 Hidden links: 4. http://www.mustanglist.com/ From owner-freebsd-doc@FreeBSD.ORG Wed Apr 2 15:56:28 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32194C52 for ; Wed, 2 Apr 2014 15:56:28 +0000 (UTC) Received: from mail3.mustanglist.com (mail3.mustanglist.com [50.16.231.103]) by mx1.freebsd.org (Postfix) with ESMTP id E48E023D for ; Wed, 2 Apr 2014 15:56:27 +0000 (UTC) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 45CD08132 for ; Wed, 2 Apr 2014 10:56:27 -0500 (CDT) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 3B9518192 for ; Wed, 2 Apr 2014 10:56:27 -0500 (CDT) From: Maria Ramirez X-Mailer: MustangList [msg-1396454187.228 en-mail3] X-RPTags: List Type Content X-MLlistcampaign: 575-111572 X-ML-Message-ID: <> X-ML-Message-Source: <> X-ML-Message-Trk: <> Subject: Digital Downloads for Nonprofits, Schools, Ministries & Churches To: freebsd-doc@freebsd.org Message-Id: <20140402155627.3B9518192@mail3.mustanglist.com> Date: Wed, 2 Apr 2014 10:56:27 -0500 (CDT) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Maria Ramirez List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2014 15:56:28 -0000 Dear Nonprofit Leader...National Development Institute would like to thank you for your years of service to the Nonprofit, Education, Ministry & Church Sectors! [1]Visit Here for Complimentary Access to NDI's Digital Download Library We believe that when your organization invests in civil society a child's health, a student's dream or a family's future is made secure. As a small token of our gratitude we're opening NDI's expanded Nonprofit Digital Download Library for your use for the next 24hrs. (We're pleased to announce for those executives who have used the library in the past that your online experience has been improved.) National Development Institute is a 501c3 nonprofit agency that nurtures and leverages philanthropy by supplying funders and organizations the capacity building research and education they require to advance their mission. Please feel free to call (800) 257-6670 to reach an NDI Team Member with any questions you may have. Thank you and have a great day. Maria Ramirez National Development Institute To stop receiving messages from the National Development Institute, click [2]here. To pass a copy of this message on to a friend, click [3]here. This email was sent to you by: National Development Institute 201 East Main Street Lexington SC 29072 [msg-1396454187.228 en-mail3] References Visible links 1. http://r.mustanglist.com/redir.php/b/RXdMVzU3NS0xMTE1NzItMzE3NTc0MC0zNjU0ODYwMw~~/ 2. http://www.mustanglist.com/us.php/msg/1396454187.228/en/mail3 3. http://www.mustanglist.com/pio.php/msg/1396454187.228/en/mail3 Hidden links: 4. http://www.mustanglist.com/ From owner-freebsd-doc@FreeBSD.ORG Wed Apr 2 20:12:34 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57165A98 for ; Wed, 2 Apr 2014 20:12:34 +0000 (UTC) Received: from col0-omc1-s14.col0.hotmail.com (col0-omc1-s14.col0.hotmail.com [65.55.34.24]) by mx1.freebsd.org (Postfix) with ESMTP id 362E47B1 for ; Wed, 2 Apr 2014 20:12:33 +0000 (UTC) Received: from COL128-W8 ([65.55.34.8]) by col0-omc1-s14.col0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Wed, 2 Apr 2014 13:11:27 -0700 X-TMN: [aPsboWx4Fiv7j7L0SewsagZZzUM50hWK] X-Originating-Email: [assembler914@outlook.com] Message-ID: From: velocidade da luz To: "freebsd-doc@freebsd.org" Subject: Much publisher translates "the hard way" and produces "shit" of type firewall transform "Wall of Fire" shell transform "other thing " and such :) Date: Wed, 2 Apr 2014 23:11:27 +0300 Importance: Normal MIME-Version: 1.0 X-OriginalArrivalTime: 02 Apr 2014 20:11:27.0063 (UTC) FILETIME=[BA679E70:01CF4EAF] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2014 20:12:34 -0000 A moderator of the Brazilian group users FreeBSD (FUG-BR) told me via chat = list FUG-BR: Care to go see books in bookstores of Linux or BSD in Portugue= se . Much publisher translates "the hard way" and produces "shit" of type f= irewall transform "Wall of Fire" shell transform "other thing " and such :)= " The moderator wblock of FreeBSD Forums answered so: "With the print-on-demand industry=2C someone is probably willing to sell m= achine translations." What is its opinion about it? The thread has been deleted=2C because of this=2C not put the link. = = From owner-freebsd-doc@FreeBSD.ORG Wed Apr 2 20:42:50 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1DF1C4F9 for ; Wed, 2 Apr 2014 20:42:50 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id E9732A7E for ; Wed, 2 Apr 2014 20:42:49 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allan.jude@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id C10E1673AA for ; Wed, 2 Apr 2014 20:42:42 +0000 (UTC) Message-ID: <533C763E.4090401@allanjude.com> Date: Wed, 02 Apr 2014 16:42:38 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Much publisher translates "the hard way" and produces "shit" of type firewall transform "Wall of Fire" shell transform "other thing " and such :) References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5bofRm8bxt95j4VNjtkwnAGJINoGSJfWH" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2014 20:42:50 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --5bofRm8bxt95j4VNjtkwnAGJINoGSJfWH Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-04-02 16:11, velocidade da luz wrote: > A moderator of the Brazilian group users FreeBSD (FUG-BR) told me via c= hat list FUG-BR: Care to go see books in bookstores of Linux or BSD in Po= rtuguese . Much publisher translates "the hard way" and produces "shit" o= f type firewall transform "Wall of Fire" shell transform "other thing " a= nd such :) " > The moderator wblock of FreeBSD Forums answered so: > "With the print-on-demand industry, someone is probably willing to sell= machine translations." > What is its opinion about it? > The thread has been deleted, because of this, not put the link. = =20 > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" >=20 This is why the FreeBSD Documentation Project does not accept machine translations, and instead has hard working teams of people translating the documentation by hand. --=20 Allan Jude --5bofRm8bxt95j4VNjtkwnAGJINoGSJfWH Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTPHZBAAoJEJrBFpNRJZKf0HMQAK+3eUrtInNMm99IlUE6GEyF 17qexwQvZq6qLRV2PqjNghSkIIrI4+Z2zNF4AJzJbzYQh/YPuBhi7A4KZuiAc+tn QJAF9R7C6LikVUAq8DYM0J37lHoodqCdze56BzZucVBuw0qpCkh3f8imKdO1KaAc IeAS2qVjY2la8+OesVAg7hXSqS8UOA6C4NYFqjxmukT9MEH1qvx53RD65QKoMAV2 0DRnxpQJth0IYyiTq6+SM1a2St7jXxdmUUBIxJjkPTmwQv6jwEInsfxvlNMXb3Cn R5UwbiBvBUxXZRmT730ADBIK+DqE9/3xEeZJ/zR7FrGjUBx9XF82Opqae/2LkCGI kCh3lCB80CqfVyZTOoOBRm07xOFPkfFcoaX0hiRNGe9IjwwVQcBURY63wnIcooDC d6mlT2i9cGZKxvlLce6KQ5FIxoPlAFXd4QPYMIHz8YaWwcidEIr3alt8xxl9PEda 8zfDVtAEz1oJWXIikVaDJjWQYgGq3x49LMrxn2/a4Iktqxs3jC9O1IcdIdRCPkrr vn10vShBpdSyYNheuMhAxdC1+rOT1ork6hncsoUB6UjC992Ix2OtvoKzNoDEM/B1 bSzJkF+KNVdnEyc2ENFR46sDT3PzhgPSWN2LtgMUo5gj/jMnwEtc45mJRemYsczM h2BaSdV09uP9YSgXA+Ar =AUhg -----END PGP SIGNATURE----- --5bofRm8bxt95j4VNjtkwnAGJINoGSJfWH-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 01:15:30 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 25383EB9 for ; Thu, 3 Apr 2014 01:15:30 +0000 (UTC) Received: from shell.gmplib.org (gmplib-02.nada.kth.se [130.237.222.242]) by mx1.freebsd.org (Postfix) with ESMTP id E2D27293 for ; Thu, 3 Apr 2014 01:15:29 +0000 (UTC) Received: by shell.gmplib.org (Postfix, from userid 1001) id C054C2DF00; Thu, 3 Apr 2014 03:06:54 +0200 (CEST) To: doc@FreeBSD.org Subject: Downplaying a serious issue From: Torbjorn Granlund Sender: tg@gmplib.org Date: Thu, 03 Apr 2014 03:06:54 +0200 Message-ID: <861txffcgh.fsf@shell.gmplib.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 01:15:30 -0000 I notice that you seriously downplay the filesystem malfunctioning issue of FreeBSD/i386 10.0 (and its many betas). http://www.freebsd.org/releases/10.0R/errata.html This is not specific to some weird hardware. It is not specific to virtualbox. As I have reported (and been shouted down) it happens under KVM and Xen. It happens under Xen+Linux as well as Xen+NetBSD. FreeBSD is becoming strange. I've been using every release since 1.1, and have liked it. Now it is unstable, critical bug reports are ignored, serious problems are being downplayed, the compiler is terrible. Did Apple money corrupt a great project? Torbj=C3=B6rn Please encrypt, key id 0xC8601622 From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 01:19:58 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0EA5CCA for ; Thu, 3 Apr 2014 01:19:58 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id DCEAC2AD for ; Thu, 3 Apr 2014 01:19:57 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allan.jude@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 5023067B41 for ; Thu, 3 Apr 2014 01:19:56 +0000 (UTC) Message-ID: <533CB738.6070604@allanjude.com> Date: Wed, 02 Apr 2014 21:19:52 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Downplaying a serious issue References: <861txffcgh.fsf@shell.gmplib.org> In-Reply-To: <861txffcgh.fsf@shell.gmplib.org> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BfsEbPdJkX3pTNn0UGDFQ5Mbr9HBbFPuU" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 01:19:58 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --BfsEbPdJkX3pTNn0UGDFQ5Mbr9HBbFPuU Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 2014-04-02 21:06, Torbjorn Granlund wrote: > I notice that you seriously downplay the filesystem malfunctioning issu= e > of FreeBSD/i386 10.0 (and its many betas). >=20 > http://www.freebsd.org/releases/10.0R/errata.html >=20 > This is not specific to some weird hardware. It is not specific to > virtualbox. As I have reported (and been shouted down) it happens unde= r > KVM and Xen. It happens under Xen+Linux as well as Xen+NetBSD. >=20 > FreeBSD is becoming strange. I've been using every release since 1.1, > and have liked it. Now it is unstable, critical bug reports are > ignored, serious problems are being downplayed, the compiler is > terrible. Did Apple money corrupt a great project? >=20 >=20 > Torbj=C3=B6rn > Please encrypt, key id 0xC8601622 > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" >=20 Did you apply the workaround? add: vfs.unmapped_buf_allowed=3D0 to /boot/loader.conf ? Are you still having issues after that? --=20 Allan Jude --BfsEbPdJkX3pTNn0UGDFQ5Mbr9HBbFPuU Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTPLc7AAoJEJrBFpNRJZKfJ04P/0lorHIUCKXwXPUSxZGgpYsA yrHqSFWB8mW5oyd8K4D25mD78NK9DsUDrEfHsQBrnz4t1c40jz5HJlk1buMvAW0V YZ5QLmmvtd/d8teJa3SQYXak7NGZhdsGB9pcfw+a+MR2z0SBPUJJM8Zeo4dCUzkB KH7KRaRmOByKhyjxsxh4uOWW1hfd/dLtUy3BG/joefRdjhkwo6JflntGQWSf/xEH z7GE7/tnDJt11k9AW6JHxp1SWNjAkjz5GqOVtTlvkM8iY/A2QHSKLdBovjm5c8r8 SF95qv6fiFO/+ZSEhgyPNCea3DNg8lgCEsNCFcECx4yBpMbgL7eCmHhJg+yUWAgj x70msfNqUWIlJzBgVHzdU4rDiYMvssJmjZ6Y5UFfB0RGabPENddFfHsQFtmTSNvW wITX7AsHjCs2ipmYmupriJpff+Lxds462sW7h74D4ds88e0xVgc1nChqOU+uLF+0 Sc2EeFUGyS9ESr31GXTolbQpge4fGQ98YokW9XqSYTo1cCnPXbqWaw2nOBYCCkI4 EQIXvLETQOTQ2mfUF1NFb8nLosDW+DnQ3Kqmtx+TGGoAXhFlgRWVp2GHRTHDShJX uuPxe6mkeY9/RNFp4CuMhjGbRezYgLkk7nvhzGXxJygTik0eSLqOMKDCxBucpM// oHEKGS90ZfzHtv73xaIv =/7IE -----END PGP SIGNATURE----- --BfsEbPdJkX3pTNn0UGDFQ5Mbr9HBbFPuU-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 03:40:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0938B55 for ; Thu, 3 Apr 2014 03:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 970B4FA4 for ; Thu, 3 Apr 2014 03:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s333e0i5009784 for ; Thu, 3 Apr 2014 03:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s333e0Ko009783; Thu, 3 Apr 2014 03:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 3 Apr 2014 03:40:00 GMT Resent-Message-Id: <201404030340.s333e0Ko009783@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Ronald F.Guilmette" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 94A6CB39 for ; Thu, 3 Apr 2014 03:38:24 +0000 (UTC) Received: from outgoing.tristatelogic.com (segfault.tristatelogic.com [69.62.255.118]) by mx1.freebsd.org (Postfix) with ESMTP id 76399F93 for ; Thu, 3 Apr 2014 03:38:23 +0000 (UTC) Received: by segfault.tristatelogic.com (Postfix, from userid 1237) id BDBAC3AE0E; Wed, 2 Apr 2014 20:38:23 -0700 (PDT) Message-Id: <20140403033823.BDBAC3AE0E@segfault.tristatelogic.com> Date: Wed, 2 Apr 2014 20:38:23 -0700 (PDT) From: "Ronald F.Guilmette" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/188214: Manpage for fsck(8) doesn't say what happens when no -t or -T Cc: rfg@tristatelogic.com X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: "Ronald F.Guilmette" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 03:40:00 -0000 >Number: 188214 >Category: docs >Synopsis: Manpage for fsck(8) doesn't say what happens when no -t or -T >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 03 03:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ronald F. Guilmette >Release: FreeBSD 9.1-RELEASE amd64 >Organization: entr0py >Environment: 9.1-RELEASE amd64 >Description: It has been suggested to me that if and when fsck(8) is invoked _without_ any explicitly provided -t or -T options, fsck will, in such cases, attempt to intuit the type of the filesystem on its own, perhaps based upon information/clues gleened from the local /etc/fstab file and/or from some relevant BSD disk label. If true, then this behavior does not appear to be documented at all within the fsck(8) manpage. This is an important aspect of the behavior of fsck(8). If verified, then it should be documented in the manpage. >How-To-Repeat: man 8 fsck >Fix: Sorry, I do not have any suggested replacement text for the relevant manpage at this time. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 03:43:30 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B866CBC5 for ; Thu, 3 Apr 2014 03:43:30 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 6CACB7F for ; Thu, 3 Apr 2014 03:43:30 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s333hStl076723 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 2 Apr 2014 21:43:28 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s333hSul076720; Wed, 2 Apr 2014 21:43:28 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Wed, 2 Apr 2014 21:43:28 -0600 (MDT) From: Warren Block To: Torbjorn Granlund Subject: Re: Downplaying a serious issue In-Reply-To: <861txffcgh.fsf@shell.gmplib.org> Message-ID: References: <861txffcgh.fsf@shell.gmplib.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Wed, 02 Apr 2014 21:43:28 -0600 (MDT) Cc: doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 03:43:30 -0000 On Thu, 3 Apr 2014, Torbjorn Granlund wrote: > I notice that you seriously downplay the filesystem malfunctioning issue > of FreeBSD/i386 10.0 (and its many betas). Do we? What should it say? Please be specific, preferably in the form of a PR. Is this really a doc problem? > http://www.freebsd.org/releases/10.0R/errata.html > > This is not specific to some weird hardware. It is not specific to > virtualbox. As I have reported (and been shouted down) it happens under > KVM and Xen. It happens under Xen+Linux as well as Xen+NetBSD. Please post links to those reports. > FreeBSD is becoming strange. I've been using every release since 1.1, > and have liked it. Now it is unstable, critical bug reports are > ignored, serious problems are being downplayed, the compiler is > terrible. Did Apple money corrupt a great project? If you have had rude treatment from someone in the project, I apologize. Insulting and accusing the rest of us is not likely to produce good results. Most of us are volunteers, and hard enough to motivate even without resentment. From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 03:58:05 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF4D7F4A; Thu, 3 Apr 2014 03:58:05 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [IPv6:2607:fc50:1:2300:1001:1001:1001:face]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7FDBC166; Thu, 3 Apr 2014 03:58:05 +0000 (UTC) Received: from glenbarber.us (70.15.88.86.res-cmts.sewb.ptd.net [70.15.88.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id 76083B18C; Thu, 3 Apr 2014 03:58:02 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us 76083B18C Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Wed, 2 Apr 2014 23:58:00 -0400 From: Glen Barber To: Warren Block Subject: Re: Downplaying a serious issue Message-ID: <20140403035800.GR14379@glenbarber.us> References: <861txffcgh.fsf@shell.gmplib.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="wlFCko3yyTbBmKK8" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: doc@FreeBSD.org, Torbjorn Granlund X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 03:58:05 -0000 --wlFCko3yyTbBmKK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 02, 2014 at 09:43:28PM -0600, Warren Block wrote: > On Thu, 3 Apr 2014, Torbjorn Granlund wrote: >=20 > >I notice that you seriously downplay the filesystem malfunctioning issue > >of FreeBSD/i386 10.0 (and its many betas). >=20 > Do we? What should it say? Please be specific, preferably in the form o= f a > PR. Is this really a doc problem? >=20 It is not a doc problem. The issue is specific to certain hardware configurations, and unless anyone has made any breakthroughs that I am unaware of, the cause is still unknown. > >http://www.freebsd.org/releases/10.0R/errata.html > > > >This is not specific to some weird hardware. Not "weird", but it is specific to certain hardware configurations. > >It is not specific to virtualbox. This is the first I am hearing of this problem on non-VirtualBox hypervisors. Glen --wlFCko3yyTbBmKK8 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTPNxIAAoJELls3eqvi17QJ5oP/026wwmQWcR5pkMw1uIBsLO5 K2D64Xq5ZvRb77dBGIPzRedDwPKCmcUarVAhu+lP9IiZhKEtRkSJ8mWMlZzM08jB KY08vaZQTU7akN+CWOhb7DkaJZPZT8qqKhegk7K6JtgFA1dq42yfQakyCO/VJl1t +I5DmZal93BkRjorV3/kb0DcpdphrK3PMoUHRf85y0nDwiOx6PCcznWoSR9xX2i4 cFcovlMh6aiSFZYeZqRWSHEFKHj23uWgNWyf3CLQ/Ok7198x+QUK0fYvH3QO+VP+ U+we3xb6TxJBY+GLTSzhB7bBn+XUhgnIfC62zvI8w/sLNfxJ7Zoqvnls5PCRbG7d PcN4+DtszMU8Gh9gSTwPAmwQobA+yBum+UuxvJabQP/dCdsw/UvZDhjA4ijJTEGk xq6+1dh6keAmCx1XEk85ZG/CrL6QHU2Ee2i+XNa3ZcAkAX3Z24Gqenn/Tl66KHDh a4kiT7ZiwGm426GsFShJV7c7Dna1qyGPp+GZT6pDWJ2eQ33ES5/VSXDShpDhfqDh 8INg7ISPmV37w6nygVdArF3CapMlst9LaHSyGWQlgJdbKZjPeZmYnRlcMv3762dV aiaHbZ1dVXjr5DjFpUdaHWo7rPyH8y76Uz9AMlUPEyAuZ9r4G3yuR+8R4iiljke8 4QFGV9atOosK6B8hSpoZ =TidK -----END PGP SIGNATURE----- --wlFCko3yyTbBmKK8-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 07:16:11 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36C58366 for ; Thu, 3 Apr 2014 07:16:11 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [78.47.69.234]) by mx1.freebsd.org (Postfix) with ESMTP id B392E2AF for ; Thu, 3 Apr 2014 07:16:10 +0000 (UTC) Received: from [10.0.2.66] (a44084.upc-a.chello.nl [62.163.44.84]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client did not present a certificate) by mail.jr-hosting.nl (Postfix) with ESMTPSA id 3A66C3F467 for ; Thu, 3 Apr 2014 09:16:02 +0200 (CEST) From: Remko Lodder Content-Type: multipart/signed; boundary="Apple-Mail=_01F2F334-F7DA-4EF6-A961-CB198860B05E"; protocol="application/pgp-signature"; micalg=pgp-sha1 Message-Id: Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: Much publisher translates "the hard way" and produces "shit" of type firewall transform "Wall of Fire" shell transform "other thing " and such :) Date: Thu, 3 Apr 2014 09:16:00 +0200 References: <533C763E.4090401@allanjude.com> To: freebsd-doc@freebsd.org In-Reply-To: <533C763E.4090401@allanjude.com> X-Mailer: Apple Mail (2.1874) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 07:16:11 -0000 --Apple-Mail=_01F2F334-F7DA-4EF6-A961-CB198860B05E Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=iso-8859-1 On 02 Apr 2014, at 22:42, Allan Jude wrote: > On 2014-04-02 16:11, velocidade da luz wrote: >> A moderator of the Brazilian group users FreeBSD (FUG-BR) told me via = chat list FUG-BR: Care to go see books in bookstores of Linux or BSD in = Portuguese . Much publisher translates "the hard way" and produces = "shit" of type firewall transform "Wall of Fire" shell transform "other = thing " and such :) " >> The moderator wblock of FreeBSD Forums answered so: >> "With the print-on-demand industry, someone is probably willing to = sell machine translations." >> What is its opinion about it? >> The thread has been deleted, because of this, not put the link. = =20 >> _______________________________________________ >> freebsd-doc@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-doc >> To unsubscribe, send any mail to = "freebsd-doc-unsubscribe@freebsd.org" >>=20 >=20 > This is why the FreeBSD Documentation Project does not accept machine > translations, and instead has hard working teams of people translating > the documentation by hand. >=20 > --=20 > Allan Jude Dear velocidade da luz, You have to be kidding me, this thread was mainly deleted because you = quoted me on the forum without my consent. I told you many times in our private email discussions which you copied = on the forum, that we do not do these translations. We translate word for word, context for context, because for example = google translate makes a mess out of it. You are again asking the same question? What is it in my reply that = confuses you because it has to be something that I am not clearly explaining and I wish to assist and help you giving the = right context that also makes sense for you. Thank you, Remko >=20 --=20 /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_01F2F334-F7DA-4EF6-A961-CB198860B05E Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJTPQqwAAoJEKjD27JZ84ywGdEP/RTQ+9cpndFk9TWe1TiIlaoS qpI20zroz4gDS9MVvgdq4LUcMsYShOhiXfM8RKFWVjbbJoQtPT7yLQex+0ZpLPbK pjCR06vnRvrZ6dEMUowpCBtnnV6ArPuLy/YXHDtbNC/XSaF6DLhuvo5vZLXi0AD8 FiodvGhH71CGA5MtgJT/G4xJdnx6nWznJrZ3WwyTyxT8Phoppxm5MAF+eRhPTo4W nRPV3GIYQYLT6/cKmSdftTWryUNuR1oGYKJ0FAJsFbAu1edt6Clsy3vAetH2HFP3 TiMgiYlJaeWM6covMgCboZKUll/xHlhcpUMHfjB0SAw3RIQvrM9XWTb/nH5bGI8H xju59o8DU2R3hRGLHp6o/4wX8yZcBS1HPvDB/3RMRDT/UX+hcqXvXdGNlRsN6bqp ZhqleLZWXwdQKalGYHVpQkIw9km+qJIAk6kY0a1Dy6ZK7Tqe8Kk31WMyL1DUXE6F HxH3b30kNCIDItjbXosPI4xYU5wL27HeeqXnVJTODCUX9IgwDb9+40RAQOlkaYuf B7cAwURJPy63SDy2xFO13aJMITecQmMRcGyTjiH7Xe+EhtBYdshgABvdJvJ6tNMx amGhZmtA4jgIj5zAil85bGBQIynkqj4bq8VZ+39Nu7iyicrF8NoHb4Ymt3PkZd7m 5gC8D3gBzOeOhTlGC9KT =uV1e -----END PGP SIGNATURE----- --Apple-Mail=_01F2F334-F7DA-4EF6-A961-CB198860B05E-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 07:47:06 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 22EC99EF; Thu, 3 Apr 2014 07:47:06 +0000 (UTC) Received: from shell.gmplib.org (gmplib-02.nada.kth.se [130.237.222.242]) by mx1.freebsd.org (Postfix) with ESMTP id DB1F476E; Thu, 3 Apr 2014 07:47:05 +0000 (UTC) Received: by shell.gmplib.org (Postfix, from userid 1001) id D757018D7A; Thu, 3 Apr 2014 09:47:02 +0200 (CEST) To: Glen Barber Subject: Re: Downplaying a serious issue References: <861txffcgh.fsf@shell.gmplib.org> <20140403035800.GR14379@glenbarber.us> From: Torbjorn Granlund Sender: tg@gmplib.org Date: Thu, 03 Apr 2014 09:47:02 +0200 In-Reply-To: <20140403035800.GR14379@glenbarber.us> (Glen Barber's message of "Wed\, 2 Apr 2014 23\:58\:00 -0400") Message-ID: <86k3b697nt.fsf@shell.gmplib.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 07:47:06 -0000 Glen Barber writes: It is not a doc problem. =20=20 The issue is specific to certain hardware configurations, and unless anyone has made any breakthroughs that I am unaware of, the cause is still unknown. =20=20 It happens on: AMD piledriver running Linux+KVM AMD piledriver running Linux+Xen Intel Nehalem running NetBSD+Xen Intel Sandybridge running NetBSD+Xen Intel Haswell running NetBSD+Xen AMD K10 Barcelona running NetBSD+Xen AMD Bulldozer running NetBSD+Xen I've seen the laughable claim that this is a "bug in Virtualbox", and now the major downplay at http://www.freebsd.org/releases/10.0R/errata.html, where this is a minor hardware specific problem. I have not found one piece of PC hardware where it does not happen under virtualisation. Please let me know some configuration where FreeBSD/i386 works under a type 1 virtualiser? Perhaps Bhyve is FreeBSD-compatible? Not "weird", but it is specific to certain hardware configurations. =20=20 > >It is not specific to virtualbox. =20=20 This is the first I am hearing of this problem on non-VirtualBox hypervisors. =20=20 I've mentioned it on FreeBSD lists before. But after having lost many hours on reporting the ssh panic for FreeBSD/amd64 and FreeBSD/i386 (amd64/183397), I didn't file a PR for this, also after I saw this was known and downplayed by a FreeBSD dev. Torbj=C3=B6rn Please encrypt, key id 0xC8601622 From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 08:54:59 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4DCA8575 for ; Thu, 3 Apr 2014 08:54:59 +0000 (UTC) Received: from shell.gmplib.org (gmplib-02.nada.kth.se [130.237.222.242]) by mx1.freebsd.org (Postfix) with ESMTP id 12169D61 for ; Thu, 3 Apr 2014 08:54:58 +0000 (UTC) Received: by shell.gmplib.org (Postfix, from userid 1001) id B9D4618E15; Thu, 3 Apr 2014 10:54:56 +0200 (CEST) To: Warren Block Subject: Re: Downplaying a serious issue References: <861txffcgh.fsf@shell.gmplib.org> From: Torbjorn Granlund Sender: tg@gmplib.org Date: Thu, 03 Apr 2014 10:54:56 +0200 In-Reply-To: (Warren Block's message of "Wed\, 2 Apr 2014 21\:43\:28 -0600 \(MDT\)") Message-ID: <86sipu7py7.fsf@shell.gmplib.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 08:54:59 -0000 Warren Block writes: =20=20 Do we? What should it say? Please be specific, preferably in the form of a PR. Is this really a doc problem? =20=20 Full disclosure. Don't downplay. Both the scope and the gravity of the issue is grossly downplayed here The truth is that FreeBSD/i386 10 is completely unusable under all three major type 1 virtualisers. It should not be used, or one will cause data loss. It might be embarrasing to fess up about bugs, but downplaying serious issues make people lose confidence. Which is worst? Torbj=C3=B6rn Please encrypt, key id 0xC8601622 From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 11:36:08 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E35C1F47; Thu, 3 Apr 2014 11:36:08 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B4833B0; Thu, 3 Apr 2014 11:36:08 +0000 (UTC) Received: from glenbarber.us (70.15.88.86.res-cmts.sewb.ptd.net [70.15.88.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id 49CC8BD4C; Thu, 3 Apr 2014 11:36:07 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us 49CC8BD4C Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 3 Apr 2014 07:36:05 -0400 From: Glen Barber To: Torbjorn Granlund Subject: Re: Downplaying a serious issue Message-ID: <20140403113605.GZ14379@glenbarber.us> References: <861txffcgh.fsf@shell.gmplib.org> <20140403035800.GR14379@glenbarber.us> <86k3b697nt.fsf@shell.gmplib.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="lBP+FhBL9XXtPs84" Content-Disposition: inline In-Reply-To: <86k3b697nt.fsf@shell.gmplib.org> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 11:36:09 -0000 --lBP+FhBL9XXtPs84 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2014 at 09:47:02AM +0200, Torbjorn Granlund wrote: > Glen Barber writes: >=20 > It is not a doc problem. > =20 > The issue is specific to certain hardware configurations, and unless > anyone has made any breakthroughs that I am unaware of, the cause is > still unknown. > =20 > It happens on: >=20 > AMD piledriver running Linux+KVM > AMD piledriver running Linux+Xen > Intel Nehalem running NetBSD+Xen > Intel Sandybridge running NetBSD+Xen > Intel Haswell running NetBSD+Xen > AMD K10 Barcelona running NetBSD+Xen > AMD Bulldozer running NetBSD+Xen >=20 We need more specifics. > I've seen the laughable claim that this is a "bug in Virtualbox", and now > the major downplay at http://www.freebsd.org/releases/10.0R/errata.html, > where this is a minor hardware specific problem. >=20 > I have not found one piece of PC hardware where it does not happen under > virtualisation. Please let me know some configuration where FreeBSD/i386 > works under a type 1 virtualiser? Perhaps Bhyve is FreeBSD-compatible? >=20 Does not happen on my VirtualBox host. Glen --lBP+FhBL9XXtPs84 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTPUelAAoJELls3eqvi17QNdcP/iMxmJhfr1mKM7eU7sa3sLTe 1w4oXnmZSUwPbT9rzH13QnQyKhBVowlZ3DfrNslyB5sgyY+BqEkkL7VlooXauHj8 uQw6tjvSp814b6J1BWW3fdkNw6zTNMNQ2vnog/oDk3bAdh9oOoS41zQVLOdLcF2q OCRQ8Afxaadgyc+EZuH9mHahDn0RgN5sgMAFuN+gCGQBKcDepFMAW/JwEZGwVrnt HX5/GDpB0mGsXqOKS8fdaXnxSrl91BC4/oavmT3t09aAbAWyWMb7t8VHKpp1pi4x mHTWXbTrL1+vDU64I7NJz1SVU4Qbknp/4uGjd6HCEW5iM8fiUbyrTE3nu2WREFx2 8+q/w/LZgoZCmsKSP6pWwBl7F6VxMB0XPcKTZ+4qM0s///VJND8nsuXT4S2gPYpP MvD/lQDA2+CKhTR9EwZn1W+MRHL/duSvMzoqnwNUl/abqlXbTCsUGY+32v18Ad8Z SjQOh96DUDiBnaENLmi/G2iNUrEPi8L8Y/GAWnvOsEjYPWnt67NQ4PPIb9YYyn22 jX2/XTET3u2mB2Y/JifqWl2XYNTZlLn7QF2WPKzIt1JhGT59MTmSwJzlGscBUc4B MsWgpbT8oDEnccc5dL4OJH8JMy8aNhWO2RV6m3q4bHmNdthl80wP4iQCvi0Ml37D udLJoSigXfFlWzCQN0vR =MO8b -----END PGP SIGNATURE----- --lBP+FhBL9XXtPs84-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 13:08:22 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 25D46B14 for ; Thu, 3 Apr 2014 13:08:22 +0000 (UTC) Received: from bs1.fjl.org.uk (bs1.fjl.org.uk [84.45.41.196]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "bs1.fjl.org.uk", Issuer "bs1.fjl.org.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 9448FAA0 for ; Thu, 3 Apr 2014 13:08:21 +0000 (UTC) Received: from [192.168.1.35] (host86-150-244-211.range86-150.btcentralplus.com [86.150.244.211]) (authenticated bits=0) by bs1.fjl.org.uk (8.14.4/8.14.4) with ESMTP id s33D8DlC060839 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES128-SHA bits=128 verify=NO) for ; Thu, 3 Apr 2014 14:08:13 +0100 (BST) (envelope-from frank2@fjl.co.uk) Message-ID: <533D5D3F.5020409@fjl.co.uk> Date: Thu, 03 Apr 2014 14:08:15 +0100 From: Frank Leonhardt User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Downplaying a serious issue References: <861txffcgh.fsf@shell.gmplib.org> <20140403035800.GR14379@glenbarber.us> <86k3b697nt.fsf@shell.gmplib.org> <20140403113605.GZ14379@glenbarber.us> In-Reply-To: <20140403113605.GZ14379@glenbarber.us> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 13:08:22 -0000 On 03/04/2014 12:36, Glen Barber wrote: > On Thu, Apr 03, 2014 at 09:47:02AM +0200, Torbjorn Granlund wrote: >> Glen Barber writes: >> >> It is not a doc problem. >> >> The issue is specific to certain hardware configurations, and unless >> anyone has made any breakthroughs that I am unaware of, the cause is >> still unknown. >> >> It happens on: >> >> AMD piledriver running Linux+KVM >> AMD piledriver running Linux+Xen >> Intel Nehalem running NetBSD+Xen >> Intel Sandybridge running NetBSD+Xen >> Intel Haswell running NetBSD+Xen >> AMD K10 Barcelona running NetBSD+Xen >> AMD Bulldozer running NetBSD+Xen >> > We need more specifics. > >> I've seen the laughable claim that this is a "bug in Virtualbox", and now >> the major downplay at http://www.freebsd.org/releases/10.0R/errata.html, >> where this is a minor hardware specific problem. >> >> I have not found one piece of PC hardware where it does not happen under >> virtualisation. Please let me know some configuration where FreeBSD/i386 >> works under a type 1 virtualiser? Perhaps Bhyve is FreeBSD-compatible? >> > Does not happen on my VirtualBox host. > > Glen > I've been following this discussion with some alarm, but have now looked at the Errata: ------------------------------------------ "FreeBSD/i386 10.0-RELEASE running as a guest operating system onVirtualBoxcan have a problem with disk I/O access. It depends on some specific hardware configuration and does not depend on a specific version ofVirtualBoxor host operating system. It causes various errors and makes FreeBSD quite unstable. Although the cause is still unclear, disabling unmapped I/O works as a workaround." etcetera ------------------------------------- I don't read this as "down-playing" - it's up front about saying that there's a problem with every version of VirtualBox. It would, of course, be useful to add that it doesn't work with other named emulators too (for a virtual machine IS emulating the I/O hardware). My concern was that this bug may be present on the real hardware too. I suspect more people would be running an i386 version as a VM than on real metal these days. Does the problem exist on previous releases? It seems to me that, after research, the list of confirmed incompatible configurations need to be expanded, especially to encompass other known-to-fail emulations. A list of "confirmed" problem environments would make readers wary about untested emulators too. Incidentally, I don't see this as a bug in FreeBSD. A hypervisor is supposed to transparent to the OS, emulating the hardware that the OS thinks it has, to perfection. This is a broken VM, as clearly it's not behaving as the real hardware would. Or is it? Regards, Frank. From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 13:35:51 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E20EA68C; Thu, 3 Apr 2014 13:35:51 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [IPv6:2607:fc50:1:2300:1001:1001:1001:face]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B06A1D49; Thu, 3 Apr 2014 13:35:51 +0000 (UTC) Received: from glenbarber.us (70.15.88.86.res-cmts.sewb.ptd.net [70.15.88.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id A1003B889; Thu, 3 Apr 2014 13:35:48 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us A1003B889 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 3 Apr 2014 09:35:46 -0400 From: Glen Barber To: Frank Leonhardt Subject: Re: Downplaying a serious issue Message-ID: <20140403133546.GC14379@glenbarber.us> References: <861txffcgh.fsf@shell.gmplib.org> <20140403035800.GR14379@glenbarber.us> <86k3b697nt.fsf@shell.gmplib.org> <20140403113605.GZ14379@glenbarber.us> <533D5D3F.5020409@fjl.co.uk> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="6dGMKdYe2Ft9UtxE" Content-Disposition: inline In-Reply-To: <533D5D3F.5020409@fjl.co.uk> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 13:35:52 -0000 --6dGMKdYe2Ft9UtxE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2014 at 02:08:15PM +0100, Frank Leonhardt wrote: > On 03/04/2014 12:36, Glen Barber wrote: > >On Thu, Apr 03, 2014 at 09:47:02AM +0200, Torbjorn Granlund wrote: > >>Glen Barber writes: > >> > >> It is not a doc problem. > >> The issue is specific to certain hardware configurations, and unless > >> anyone has made any breakthroughs that I am unaware of, the cause is > >> still unknown. > >>It happens on: > >> > >>AMD piledriver running Linux+KVM > >>AMD piledriver running Linux+Xen > >>Intel Nehalem running NetBSD+Xen > >>Intel Sandybridge running NetBSD+Xen > >>Intel Haswell running NetBSD+Xen > >>AMD K10 Barcelona running NetBSD+Xen > >>AMD Bulldozer running NetBSD+Xen > >> > >We need more specifics. > > > >>I've seen the laughable claim that this is a "bug in Virtualbox", and n= ow > >>the major downplay at http://www.freebsd.org/releases/10.0R/errata.html, > >>where this is a minor hardware specific problem. > >> > >>I have not found one piece of PC hardware where it does not happen under > >>virtualisation. Please let me know some configuration where FreeBSD/i3= 86 > >>works under a type 1 virtualiser? Perhaps Bhyve is FreeBSD-compatible? > >> > >Does not happen on my VirtualBox host. > > > >Glen > > > I've been following this discussion with some alarm, but have now looked = at > the Errata: >=20 > ------------------------------------------ >=20 > "FreeBSD/i386 10.0-RELEASE running as a guest operating system > onVirtualBoxcan have a problem with disk I/O access. It depends on some > specific hardware configuration and does not depend on a specific version > ofVirtualBoxor host operating system. >=20 > It causes various errors and makes FreeBSD quite unstable. Although the > cause is still unclear, disabling unmapped I/O works as a workaround." > etcetera >=20 > ------------------------------------- >=20 > I don't read this as "down-playing" - it's up front about saying that > there's a problem with every version of VirtualBox. It would, of course, = be > useful to add that it doesn't work with other named emulators too (for a > virtual machine IS emulating the I/O hardware). >=20 > My concern was that this bug may be present on the real hardware too. I > suspect more people would be running an i386 version as a VM than on real > metal these days. >=20 > Does the problem exist on previous releases? >=20 No. > It seems to me that, after research, the list of confirmed incompatible > configurations need to be expanded, especially to encompass other > known-to-fail emulations. A list of "confirmed" problem environments would > make readers wary about untested emulators too. >=20 > Incidentally, I don't see this as a bug in FreeBSD. A hypervisor is suppo= sed > to transparent to the OS, emulating the hardware that the OS thinks it ha= s, > to perfection. This is a broken VM, as clearly it's not behaving as the r= eal > hardware would. Or is it? >=20 The cause is unclear. Glen --6dGMKdYe2Ft9UtxE Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTPWOyAAoJELls3eqvi17Q3lgP/RDgE3P8lQG/aVc9ClKoPodZ 1Rgyx0XRiTaU10uygMdQJJZlEAH6dIhGbdSTzpeICfSdLcYbfpwLmkvvFRjaXQhr Cqpj9EiZu4KEYznjgwXkW+jpjt5g6Iwe2XBO8cQ0vUVmgGux4lOnLmJ6lh//u904 6ZgWdUInWh689IAcPYon0lIA23+DvkqzG7+stKwRVdqwuiON58odVl5BMEgQw+H1 ZqTTmCM0v4wSI25UAPDisSPLN+v3IIpwEikvPetT9FpvsmdSgqIz5ACsduu++v+h HMFshrreRj+w8JV3I3bH4JyHqpP3Ln6eyjefqt6RSzftPx0KQ87wIJq86oeMQT7e TLtbBEqpCeL6cm8+G81qyAPtaDtii2NtFO4UQb/xF2c6io+lOMhdRexlgPRdVq1f R+TFx0KeV0c9UWxJGtQwr2owojLeHgpg45Cb7yjQMBoeuhiF4k+akha/II1ENe7N 28NnxOr3uiLCSImDEaPgnRp3UHHkU+Uokbte2vbgYLlcHEQRna8lDpZjA4cevR0p EPyoUDPNlrBo5omgY2mTfcK3uEDLoL0asnB5/Jxkf+QoQzC4wt9Yehm7EedivlgP fjUaU7mvM4dks3rWsCu/zSB16IACQ1LkaXTcKZpCIpmdK04fv6wdJ+iERZy8WxRE j2pLVidA6pD9pvdcsw9G =CTlo -----END PGP SIGNATURE----- --6dGMKdYe2Ft9UtxE-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 13:52:13 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF5F7DDB for ; Thu, 3 Apr 2014 13:52:13 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 7284EF13 for ; Thu, 3 Apr 2014 13:52:13 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s33DqBh2080752 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 3 Apr 2014 07:52:11 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s33DqBjq080749; Thu, 3 Apr 2014 07:52:11 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 3 Apr 2014 07:52:10 -0600 (MDT) From: Warren Block To: Torbjorn Granlund Subject: Re: Downplaying a serious issue In-Reply-To: <86sipu7py7.fsf@shell.gmplib.org> Message-ID: References: <861txffcgh.fsf@shell.gmplib.org> <86sipu7py7.fsf@shell.gmplib.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Thu, 03 Apr 2014 07:52:11 -0600 (MDT) Cc: doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 13:52:13 -0000 On Thu, 3 Apr 2014, Torbjorn Granlund wrote: > Warren Block writes: > > Do we? What should it say? Please be specific, preferably in the > form of a PR. Is this really a doc problem? > > Full disclosure. Don't downplay. Both the scope and the gravity of the > issue is grossly downplayed here I asked for specifics. "Grossly" is subjective. What information should be given? What specific configuration and situation fails, and in what way? > The truth is that FreeBSD/i386 10 is completely unusable under all three > major type 1 virtualisers. It should not be used, or one will cause > data loss. Please post evidence of that. > It might be embarrasing to fess up about bugs, but downplaying serious > issues make people lose confidence. Which is worst? I pointed out before that accusing us of things will not produce good results. If you want to discuss concerns politely, without assuming the worst of us, I'm interested in that. Otherwise, I'm going to use my time elsewhere. From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 14:03:06 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4DC8CC8; Thu, 3 Apr 2014 14:03:06 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 08B856D; Thu, 3 Apr 2014 14:03:05 +0000 (UTC) Received: from glenbarber.us (70.15.88.86.res-cmts.sewb.ptd.net [70.15.88.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id 29AEABB74; Thu, 3 Apr 2014 14:03:02 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us 29AEABB74 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 3 Apr 2014 10:03:01 -0400 From: Glen Barber To: Torbjorn Granlund Subject: Re: Downplaying a serious issue Message-ID: <20140403140301.GE14379@glenbarber.us> References: <861txffcgh.fsf@shell.gmplib.org> <20140403035800.GR14379@glenbarber.us> <86k3b697nt.fsf@shell.gmplib.org> <20140403113605.GZ14379@glenbarber.us> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="UOi+gfmBpEZPw9cU" Content-Disposition: inline In-Reply-To: <20140403113605.GZ14379@glenbarber.us> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 14:03:06 -0000 --UOi+gfmBpEZPw9cU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2014 at 07:36:05AM -0400, Glen Barber wrote: > On Thu, Apr 03, 2014 at 09:47:02AM +0200, Torbjorn Granlund wrote: > > Glen Barber writes: > > The issue is specific to certain hardware configurations, and unless > > anyone has made any breakthroughs that I am unaware of, the cause is > > still unknown. > > =20 > > It happens on: > >=20 > > AMD piledriver running Linux+KVM > > AMD piledriver running Linux+Xen > > Intel Nehalem running NetBSD+Xen > > Intel Sandybridge running NetBSD+Xen > > Intel Haswell running NetBSD+Xen > > AMD K10 Barcelona running NetBSD+Xen > > AMD Bulldozer running NetBSD+Xen > >=20 >=20 > We need more specifics. >=20 Here is the type of information we need: CPU information RAM ACPI information Drive controller information On this machine, I do *not* see any issue with FreeBSD 10.x VMs: CPU: Intel(R) Core(TM) i7-2700K CPU @ 3.50GHz (3605.73-MHz K8-class CPU) Origin =3D "GenuineIntel" Id =3D 0x206a7 Family =3D 0x6 Model =3D 0x2a Stepping =3D 7 Features=3D0xbfebfbff Features2=3D0x1f9ae3bf AMD Features=3D0x28100800 AMD Features2=3D0x1 TSC: P-state invariant, performance statistics real memory =3D 34359738368 (32768 MB) avail memory =3D 32940740608 (31414 MB) Event timer "LAPIC" quality 600 ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs FreeBSD/SMP: 1 package(s) x 4 core(s) x 2 SMT threads ioapic0 irqs 0-23 on motherboard random: initialized kbd1 at kbdmux0 aesni0: on motherboard cryptosoft0: on motherboard ahci0: port 0xf0b0-0xf0b7,0xf0a0-0xf0a3,0xf090-0xf097,0xf080-0xf083,0xf060-0xf07f mem 0xf7a16000-0xf7a167ff irq 19 at device 31.2 on pci0 Glen --UOi+gfmBpEZPw9cU Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTPWoVAAoJELls3eqvi17QRk8QAMELLdSm1hCHaQR7AzsPpz99 Itz0GpXpYUZuvau69W1afdX5si97B5yL3A+x6aeoQehJKVHESn/vkbqwNZBr1aI1 6CEhls1rpmFWswGRA8NlNcRNE2y2z5TQEJQ8Q6Z3B+GDbNmmxAUNw0nMP/THw2jA DionOnz+QpAmPN33u10M/ruJMeqHYqI8p6ahQYBk9KI2KZWkh1oWv2YN4TNH/pii ScG+9+/Y3nHGiefeHa65g3sJ28VMM8I8yL9si3hqTrYkcPkquc0UMNLBybKn5rQs g+ZeKvk33t1nnGJ6STuDbJVyBtNOlcSN/5WlkaHfs8arpcCB3gNw0Dhkv5oSFFyF zTqIMFwMfsuDaqWxs4VxJgp03wfqXYOGNRZIEA17kO382fUoVFcI4ErmVYG4Tydq 7/1gEibr7JRtctzSxfBOSFh23vfR4Gc5Q9iChLPOkOiLlv/5b2MuaCHy7JjdSHtG tFymCKjVWpA1azjkIucxc6pyAHKcEAWT2H9oU2hp90RUYIFQIIKPmoR9BbbKGemV EAebXZM4Cv1zxY1TjCOlIBiL1zYD7qXNvhv8CId75r/UqJr7+JdbSIOF8eaVbEWr vk3c0GDH9M5Z7jb9lAkCw+SjsTMrQC5KlKdPkGjO663Xh3bJUvGLGMcHAQLplJv9 nz4r0mjFCx4+i7XBa0Js =az8B -----END PGP SIGNATURE----- --UOi+gfmBpEZPw9cU-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 14:25:56 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 569116AC; Thu, 3 Apr 2014 14:25:56 +0000 (UTC) Received: from shell.gmplib.org (gmplib-02.nada.kth.se [130.237.222.242]) by mx1.freebsd.org (Postfix) with ESMTP id 1830027E; Thu, 3 Apr 2014 14:25:55 +0000 (UTC) Received: by shell.gmplib.org (Postfix, from userid 1001) id 54FCE29E0B; Thu, 3 Apr 2014 16:25:54 +0200 (CEST) To: Glen Barber Subject: Re: Downplaying a serious issue References: <861txffcgh.fsf@shell.gmplib.org> <20140403035800.GR14379@glenbarber.us> <86k3b697nt.fsf@shell.gmplib.org> <20140403113605.GZ14379@glenbarber.us> <20140403140301.GE14379@glenbarber.us> From: Torbjorn Granlund Sender: tg@gmplib.org Date: Thu, 03 Apr 2014 16:25:54 +0200 In-Reply-To: <20140403140301.GE14379@glenbarber.us> (Glen Barber's message of "Thu\, 3 Apr 2014 10\:03\:01 -0400") Message-ID: <86txaatrpp.fsf@shell.gmplib.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 14:25:56 -0000 Glen Barber writes: On Thu, Apr 03, 2014 at 07:36:05AM -0400, Glen Barber wrote: > On Thu, Apr 03, 2014 at 09:47:02AM +0200, Torbjorn Granlund wrote: > > Glen Barber writes: > > The issue is specific to certain hardware configurations, and unless > > anyone has made any breakthroughs that I am unaware of, the cause is > > still unknown. > >=20=20=20 > > It happens on: > >=20 > > AMD piledriver running Linux+KVM > > AMD piledriver running Linux+Xen > > Intel Nehalem running NetBSD+Xen > > Intel Sandybridge running NetBSD+Xen > > Intel Haswell running NetBSD+Xen > > AMD K10 Barcelona running NetBSD+Xen > > AMD Bulldozer running NetBSD+Xen > >=20 >=20 > We need more specifics. >=20 =20=20 Here is the type of information we need: CPU information RAM ACPI information Drive controller information =20=20 The CPU list is above. I have used RAM from 192 MiB to 512 MiB. Your machine where you have not observed problems clearly has an amount of memory in a quite different range. Perhaps this bug is related to the amount of RAM? For all Xen runs, I have had 'apic =3D 1' in the guest config files. I don't know about KVM, I used the default. (I cannot easily retest this, since the machine in question now runs Linux+Xen instead of Linux+KVM. I have no other KVM machine.) Not sure about emulated drive controller, and how to control that. I've used file:/xen/freebsd/32/v100/disk.img,hda,w' mostly, but also tried xvda instead of hda. I have been persistent, trying at least 30 installs of 10.0-foo for several values of foo (BETA, RC, RELEASE, STABLE) and on the various systems above. It seems quite likely that this is very easy to confirm, given that every one of my attempts has been a failure. Note that the actual installation procedure apparently works. After reboot some simple repeated filesystem command, say sha1 /bin/cat sha1 /bin/cat will almost certainly yield different results. I've tested vfs.unmapped_buf_allowed=3D0 only for one machine (since I saw that only recently) and it works in that case. It is the AMD piledriver running Linux+Xen, 512 MiB RAM. Torbj=C3=B6rn Please encrypt, key id 0xC8601622 From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 15:27:45 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AAE00255 for ; Thu, 3 Apr 2014 15:27:45 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id 82F78ADE for ; Thu, 3 Apr 2014 15:27:44 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allan.jude@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id B650E67B08 for ; Thu, 3 Apr 2014 15:27:43 +0000 (UTC) Message-ID: <533D7DEB.2010501@allanjude.com> Date: Thu, 03 Apr 2014 11:27:39 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Downplaying a serious issue References: <861txffcgh.fsf@shell.gmplib.org> <86sipu7py7.fsf@shell.gmplib.org> In-Reply-To: <86sipu7py7.fsf@shell.gmplib.org> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tXTanOwRbXcqgj93bwjoBtbiM66tbcLJM" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 15:27:45 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --tXTanOwRbXcqgj93bwjoBtbiM66tbcLJM Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 2014-04-03 04:54, Torbjorn Granlund wrote: > Warren Block writes: > =20 > Do we? What should it say? Please be specific, preferably in the > form of a PR. Is this really a doc problem? > =20 > Full disclosure. Don't downplay. Both the scope and the gravity of th= e > issue is grossly downplayed here >=20 You are assuming it is being downplayed. As Glen explained, the breadth of the issue was not known. Not that many people run i386 FreeBSD in a hypervisor. If people do not file PRs, then how is anyone supposed to know there is a problem? > The truth is that FreeBSD/i386 10 is completely unusable under all thre= e > major type 1 virtualisers. It should not be used, or one will cause > data loss. Did you try the fix that is stated in the errata? >=20 > It might be embarrasing to fess up about bugs, but downplaying serious > issues make people lose confidence. Which is worst? >=20 >=20 > Torbj=C3=B6rn > Please encrypt, key id 0xC8601622 > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" >=20 --=20 Allan Jude --tXTanOwRbXcqgj93bwjoBtbiM66tbcLJM Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTPX3uAAoJEJrBFpNRJZKfjXEP/0dXpNBI7d/rheONouqKvTSa Y8C/lDilWbmEgkVpTjkseLW1d5nzIwI8yShFYNoUNJFTuN+m7mnIq1I2aRCHy/hy DLY77gycax+EfHeygAaNomjRoM7GOYB4vGfAvtCNzWZd9ppxQyDBz7I0+wodHhRh BNFtnli6ZHS2T35r0vBFvWJwd6JAEhDnr5H8Tw+t5qQLRulVbd4+HB2PSQLlOHQM x5S0jWLijT1C5RmKo2DT8e06KVsXSbgXXKojj9XDiTFIBohu3M8syJ/pc2s4RYeL rsBqEVhHiM4xNVL27T6BrI6dXxXlz7GNV4GEkrxhb7PO68jTqcpGpBvVJrww8nu+ FtMoD6WaV63dKwsIuor60X2Q2jcotOxFotQmy2Y2SUKHi5La7k+xuAxUFp/ygpjP PTazZA5LjCZ4ocGzqaKfr1w5wy+sHjSuZ+cvCm9Q2gnbTVMU1BV2M6n+6y56x/mD cAiFkOnEGv6jUQzrh0P44jfIadZEGc4blaC+w7E8odE9QZKG9oJ6Zpx6GnlEn8Vd zDxtKIsmz8jjRBQ7diF3wTM69kPJJuuSx3SOpdu1pGIlNdJE5vU+sLp720iBioYd x80Q90BK7LntNi7FQcDpbMMrW+G3lCIpRtKPjrNmdC/dCW07S3zvOVXbLUw4jyF0 hK+3n7tLYH6TogTJMb+v =NoLb -----END PGP SIGNATURE----- --tXTanOwRbXcqgj93bwjoBtbiM66tbcLJM-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 15:31:59 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E42556D for ; Thu, 3 Apr 2014 15:31:59 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id 34FFAB80 for ; Thu, 3 Apr 2014 15:31:58 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allan.jude@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id BDC3467B18 for ; Thu, 3 Apr 2014 15:31:57 +0000 (UTC) Message-ID: <533D7EED.1030908@allanjude.com> Date: Thu, 03 Apr 2014 11:31:57 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Downplaying a serious issue References: <861txffcgh.fsf@shell.gmplib.org> <20140403035800.GR14379@glenbarber.us> <86k3b697nt.fsf@shell.gmplib.org> <20140403113605.GZ14379@glenbarber.us> <533D5D3F.5020409@fjl.co.uk> In-Reply-To: <533D5D3F.5020409@fjl.co.uk> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="l3FSjnMQSFo3RTSPucrtdBh8qk7XEtkRT" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 15:31:59 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --l3FSjnMQSFo3RTSPucrtdBh8qk7XEtkRT Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-04-03 09:08, Frank Leonhardt wrote: > On 03/04/2014 12:36, Glen Barber wrote: >> On Thu, Apr 03, 2014 at 09:47:02AM +0200, Torbjorn Granlund wrote: >>> Glen Barber writes: >>> >>> It is not a doc problem. >>> The issue is specific to certain hardware configurations, and >>> unless >>> anyone has made any breakthroughs that I am unaware of, the cause = is >>> still unknown. >>> It happens on: >>> >>> AMD piledriver running Linux+KVM >>> AMD piledriver running Linux+Xen >>> Intel Nehalem running NetBSD+Xen >>> Intel Sandybridge running NetBSD+Xen >>> Intel Haswell running NetBSD+Xen >>> AMD K10 Barcelona running NetBSD+Xen >>> AMD Bulldozer running NetBSD+Xen >>> >> We need more specifics. >> >>> I've seen the laughable claim that this is a "bug in Virtualbox", and= >>> now >>> the major downplay at http://www.freebsd.org/releases/10.0R/errata.ht= ml, >>> where this is a minor hardware specific problem. >>> >>> I have not found one piece of PC hardware where it does not happen un= der >>> virtualisation. Please let me know some configuration where >>> FreeBSD/i386 >>> works under a type 1 virtualiser? Perhaps Bhyve is FreeBSD-compatibl= e? >>> >> Does not happen on my VirtualBox host. >> >> Glen >> > I've been following this discussion with some alarm, but have now looke= d > at the Errata: >=20 > ------------------------------------------ >=20 > "FreeBSD/i386 10.0-RELEASE running as a guest operating system > onVirtualBoxcan have a problem with disk I/O access. It depends on some= > specific hardware configuration and does not depend on a specific > version ofVirtualBoxor host operating system. >=20 > It causes various errors and makes FreeBSD quite unstable. Although the= > cause is still unclear, disabling unmapped I/O works as a workaround." > etcetera >=20 > ------------------------------------- >=20 > I don't read this as "down-playing" - it's up front about saying that > there's a problem with every version of VirtualBox. It would, of course= , > be useful to add that it doesn't work with other named emulators too > (for a virtual machine IS emulating the I/O hardware). Not very much detail has been provided about what exactly 'is not working' in these other hypervisors. I would hesitate to write that FreeBSD 10 doesn't work in Xen from a single user report, when Colin Percival has FreeBSD 10 images for 32bit Amazon EC2 (Xen) that I've heard no reports of problems with http://www.daemonology.net/freebsd-on-ec2/ >=20 > My concern was that this bug may be present on the real hardware too. I= > suspect more people would be running an i386 version as a VM than on > real metal these days. >=20 > Does the problem exist on previous releases? The 'unmapped IO' feature was added in FreeBSD 10, so the feature that is related to (if not causing) the problem is new. >=20 > It seems to me that, after research, the list of confirmed incompatible= > configurations need to be expanded, especially to encompass other > known-to-fail emulations. A list of "confirmed" problem environments > would make readers wary about untested emulators too. >=20 > Incidentally, I don't see this as a bug in FreeBSD. A hypervisor is > supposed to transparent to the OS, emulating the hardware that the OS > thinks it has, to perfection. This is a broken VM, as clearly it's not > behaving as the real hardware would. Or is it? >=20 > Regards, Frank. >=20 > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" --=20 Allan Jude --l3FSjnMQSFo3RTSPucrtdBh8qk7XEtkRT Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTPX7tAAoJEJrBFpNRJZKfuZcQAJApRQsa0a+UezpKVbqTmv4V 6wTPKeHcYEPC2EmFLtglF/+Fd6xhV4m5h3EVjRPZ0OIzONQJqg02kq15CFzP2G00 iLMn0oJum7KgzWCu+sKMvuofqZCPG6zKRUPDLsF8WykAEazYPaiP/P+Pe43G59Af 0mD2hn0PaV1xUlA58++2QmbA2S3zCKQAzL05BVWnTkbJNwSXnrpEqFFF4hEHsbrB VjiUBRQrLCkBv/eSBqJqIf5Rrwr6iOjUddFh9uk6wdJD5DfoOXfsNvK9UdmZKTT9 vg1z+IkeLcpXqEol6ToObDX5Zb0Qh8wdkwVxjYw2hUFxWmx2E6hy8LNa3zfkzRIi la+z8VnL0bUOh2VZO+A8fU3KRNy8odP9Ac4Kq46Ne5WbTO4TmLcERLpdNVO02MIE F5bz3T7zMPdbKhnCW1+ErlpuwvwPLBfpZnuQaBh5iXnH0lndHBMnzp+gyjkKTZB1 lzCvMT51h9LK2rV5X9sIcBMuamF4cUnf3YbBIxC2N0Iv9W34J5Chxgk8u63MZPHk 3eVwV0B0rf8qbRUu5VRHULhgj9hJWg1FsIY4v7xXgh4oBuh7J3NzovxfEcskWoJq 7WTmj1r+e6CLeEeyxlj+ySoprLl2IXx05+g/L7aGW7AyeuNiM+/PWaLOLQjuLCYA 68k/eGzeKyUgnylA/j1E =aJRN -----END PGP SIGNATURE----- --l3FSjnMQSFo3RTSPucrtdBh8qk7XEtkRT-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 15:34:57 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD35E5EA for ; Thu, 3 Apr 2014 15:34:57 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id 7A940BA0 for ; Thu, 3 Apr 2014 15:34:57 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allan.jude@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 547A467B38 for ; Thu, 3 Apr 2014 15:34:56 +0000 (UTC) Message-ID: <533D7FA0.5050404@allanjude.com> Date: Thu, 03 Apr 2014 11:34:56 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Downplaying a serious issue References: <861txffcgh.fsf@shell.gmplib.org> <20140403035800.GR14379@glenbarber.us> <86k3b697nt.fsf@shell.gmplib.org> <20140403113605.GZ14379@glenbarber.us> <20140403140301.GE14379@glenbarber.us> <86txaatrpp.fsf@shell.gmplib.org> In-Reply-To: <86txaatrpp.fsf@shell.gmplib.org> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dHnbIDgmIdklPDxdgf9vqCmXKEOBxojnT" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 15:34:57 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --dHnbIDgmIdklPDxdgf9vqCmXKEOBxojnT Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 2014-04-03 10:25, Torbjorn Granlund wrote: > Glen Barber writes: >=20 > On Thu, Apr 03, 2014 at 07:36:05AM -0400, Glen Barber wrote: > > On Thu, Apr 03, 2014 at 09:47:02AM +0200, Torbjorn Granlund wrote: > > > Glen Barber writes: > > > The issue is specific to certain hardware configurations, and u= nless > > > anyone has made any breakthroughs that I am unaware of, the cau= se is > > > still unknown. > > > =20 > > > It happens on: > > >=20 > > > AMD piledriver running Linux+KVM > > > AMD piledriver running Linux+Xen > > > Intel Nehalem running NetBSD+Xen > > > Intel Sandybridge running NetBSD+Xen > > > Intel Haswell running NetBSD+Xen > > > AMD K10 Barcelona running NetBSD+Xen > > > AMD Bulldozer running NetBSD+Xen > > >=20 > >=20 > > We need more specifics. > >=20 > =20 > Here is the type of information we need: > CPU information > RAM > ACPI information > Drive controller information > =20 > The CPU list is above. >=20 > I have used RAM from 192 MiB to 512 MiB. Your machine where you have > not observed problems clearly has an amount of memory in a quite > different range. Perhaps this bug is related to the amount of RAM? >=20 > For all Xen runs, I have had 'apic =3D 1' in the guest config files. I= > don't know about KVM, I used the default. (I cannot easily retest this= , > since the machine in question now runs Linux+Xen instead of Linux+KVM. > I have no other KVM machine.) >=20 > Not sure about emulated drive controller, and how to control that. I'v= e > used file:/xen/freebsd/32/v100/disk.img,hda,w' mostly, but also tried > xvda instead of hda. >=20 > I have been persistent, trying at least 30 installs of 10.0-foo for > several values of foo (BETA, RC, RELEASE, STABLE) and on the various > systems above. >=20 > It seems quite likely that this is very easy to confirm, given that > every one of my attempts has been a failure. >=20 > Note that the actual installation procedure apparently works. After > reboot some simple repeated filesystem command, say >=20 > sha1 /bin/cat > sha1 /bin/cat >=20 > will almost certainly yield different results. >=20 > I've tested vfs.unmapped_buf_allowed=3D0 only for one machine (since I = saw > that only recently) and it works in that case. It is the AMD piledrive= r > running Linux+Xen, 512 MiB RAM. >=20 >=20 > Torbj=C3=B6rn > Please encrypt, key id 0xC8601622 > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" >=20 Glen is looking for very specific details about the CPU, RAM and disk controller of the host, not the VM --=20 Allan Jude --dHnbIDgmIdklPDxdgf9vqCmXKEOBxojnT Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTPX+gAAoJEJrBFpNRJZKfZYMP/2aazufP4G30d51OtiIVUFCH zMe9XKqaC7Lo4RXdfWzbphKJNzP60MbPIRhDuxstMADuZiHFh4ACEWbZWHT2O+aL +LzwR7H7uTbkm3etFP66uFLkLRmseWHo/4G39EOU2c8gGQ0gvhuk+iWjCfxp68b0 MiV24v/ZYYbaIpZ+5tnzgATBcLX4kKpuH3e8owiwaT048n4vgGnmFXwulykpooka FqiUl/jJiEX4nVwccVLPY1p5C0J2Cq+56y2URhkTgWVIMynGa4nyTKFgEZvfybZM izyJYdJLpvGh+BgbdYDRb46lXHumDCU4atK1Ql2Bs5YIF8cMEWPlHYNAMIeE5Pxh 4JkJgepGux7jmWBcvUIiI2xQzOslgofHxlbcGvs1Z5aM2HEnb44Im1mQcGEkVX2O mp66s+jRLa8zOt4p3tM/wBVesuJ65pjjuGgOOWGDOZEMNvlfDY/0770IWAkD2Bbw uGmzveJSRtKXBh/Y5M7+Q0eLRA/2fBHPpp1omoRWoTEoLiQVKPWyRGwAb7aWLvIA LSX3ghx6HJE3l6MaPRU+pKMnHkucpeFrQc/wa99m5afqHNzEMf8hbToDliQifQgm 0uNR5G0qEdqh/ua1x4m1bVn7b52wPjflyVtaZk7gjqHgyEuAUQ7WM2wM3Davm3lE ahNneDfxDvLTWPrgl0Dp =172s -----END PGP SIGNATURE----- --dHnbIDgmIdklPDxdgf9vqCmXKEOBxojnT-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 17:18:19 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 716BCCE6 for ; Thu, 3 Apr 2014 17:18:19 +0000 (UTC) Received: from col0-omc1-s10.col0.hotmail.com (col0-omc1-s10.col0.hotmail.com [65.55.34.20]) by mx1.freebsd.org (Postfix) with ESMTP id 4FEA982E for ; Thu, 3 Apr 2014 17:18:18 +0000 (UTC) Received: from COL128-W80 ([65.55.34.9]) by col0-omc1-s10.col0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Thu, 3 Apr 2014 10:17:13 -0700 X-TMN: [LrYvfJ8nO8J/MKdrUpTRAfs/XH2h/MML] X-Originating-Email: [assembler914@outlook.com] Message-ID: From: velocidade da luz To: "freebsd-doc@freebsd.org" Subject: Explanation for mailing list freebsd.doc Date: Thu, 3 Apr 2014 20:17:13 +0300 Importance: Normal MIME-Version: 1.0 X-OriginalArrivalTime: 03 Apr 2014 17:17:13.0401 (UTC) FILETIME=[8DF32290:01CF4F60] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 17:18:19 -0000 Oh=2C Remko.=20 I posting this on the list to see other people express their opinions and = that's fine.=20 Proof of this is that there was a great change in topic that WBLOCK posted = in FreeBSD Forums when I copied your response sent to me via private email.= reference:http://forums.freebsd.org/viewtopic.php?f=3D3&t=3D44595 But I not will more copying reply private without permission of the aut= hor of the response. = From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 19:06:10 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9691ADD2; Thu, 3 Apr 2014 19:06:10 +0000 (UTC) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7837E1E5; Thu, 3 Apr 2014 19:06:10 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id B9E2256167; Thu, 3 Apr 2014 14:06:09 -0500 (CDT) Date: Thu, 3 Apr 2014 14:06:09 -0500 From: Mark Linimon To: Torbjorn Granlund Subject: Re: Downplaying a serious issue Message-ID: <20140403190609.GC26447@lonesome.com> References: <861txffcgh.fsf@shell.gmplib.org> <20140403035800.GR14379@glenbarber.us> <86k3b697nt.fsf@shell.gmplib.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86k3b697nt.fsf@shell.gmplib.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Glen Barber , doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 19:06:10 -0000 On Thu, Apr 03, 2014 at 09:47:02AM +0200, Torbjorn Granlund wrote: > I've mentioned it on FreeBSD lists before. But after having lost many > hours on reporting the ssh panic for FreeBSD/amd64 and FreeBSD/i386 > (amd64/183397), I didn't file a PR for this I understand your frustration, but when people report issues and don't file PRs, it is somewhat self-defeating. mcl From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 20:17:18 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1EA9D4EB for ; Thu, 3 Apr 2014 20:17:18 +0000 (UTC) Received: from refuge.colorado.edu (refuge.colorado.edu [128.138.128.167]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D53C0A47 for ; Thu, 3 Apr 2014 20:17:17 +0000 (UTC) Received: from refuge.colorado.edu (localhost [127.0.0.1]) by refuge.colorado.edu (8.14.6/8.14.1/ITS-7.0/ldap2+tls+throttle+unixops) with ESMTP id s33KHETe010918 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 3 Apr 2014 14:17:16 -0600 Received: (from rosemane@localhost) by refuge.colorado.edu (8.14.6/8.14.1/ITS-7.0/submit) id s33KHEUC010917 for freebsd-doc@freebsd.org; Thu, 3 Apr 2014 14:17:14 -0600 Message-Id: <201404032017.s33KHEUC010917@refuge.colorado.edu> To: freebsd-doc@freebsd.org Subject: newcons wiki page From: Eric Roseman Date: Thu, 03 Apr 2014 20:17:14 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 20:17:18 -0000 The newcons wiki page (https://wiki.freebsd.org/Newcons) Testing section says: To enable Newcons on i386 or amd64, remove the vga and sc drivers, and add vt and vt_vga. #device vga # VGA video card driver #device sc device vt device vt_vga This does not explain which file to edit. I'm guessing this is a well known or common file, but I'm not sure where these modifications should be made. Thanks, Eric From owner-freebsd-doc@FreeBSD.ORG Thu Apr 3 20:26:08 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA66587F; Thu, 3 Apr 2014 20:26:08 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [IPv6:2607:fc50:1:2300:1001:1001:1001:face]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BBC4FB2F; Thu, 3 Apr 2014 20:26:08 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id 5B02EB164; Thu, 3 Apr 2014 20:26:07 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us 5B02EB164 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 3 Apr 2014 16:26:05 -0400 From: Glen Barber To: Eric Roseman Subject: Re: newcons wiki page Message-ID: <20140403202605.GI14379@glenbarber.us> References: <201404032017.s33KHEUC010917@refuge.colorado.edu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="GFRhMCFsFD5VPY3r" Content-Disposition: inline In-Reply-To: <201404032017.s33KHEUC010917@refuge.colorado.edu> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 20:26:09 -0000 --GFRhMCFsFD5VPY3r Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2014 at 08:17:14PM +0000, Eric Roseman wrote: > The newcons wiki page (https://wiki.freebsd.org/Newcons) Testing > section says: >=20 > To enable Newcons on i386 or amd64, remove the vga and sc drivers, and ad= d vt and vt_vga. > #device vga # VGA video card driver =20 > #device sc =20 > device vt = =20 > device vt_vga >=20 > This does not explain which file to edit. I'm guessing this is a well > known or common file, but I'm not sure where these modifications should > be made. >=20 Thanks, I'll update it. It is the GENERIC configuration file. But, if you don't want to edit that file, you can specify KERNCONF=3DVT on head/ or the stable/ branches (not the releng/ branches) - it has all the bits for the vt driver. Glen --GFRhMCFsFD5VPY3r Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTPcPdAAoJELls3eqvi17QIEcQANHrQGZOAaXgWXXRSWLnqFBt oBmh/yqzCbnCdUhkzvvyGm/cjC6u3UwMvUCy0efyUeMwnP/gjgdZTpLWB3rMe+7J EzIOGUGiHTOJmn2YTr0h5JnVCCIZVPlv47ebKNfXY9TxACN+e5bIPZWBZblNUP0j tm5UJLhVElJe5evqpY619e9Be+HxitiBVAbEkS5yr/mMHx/NwbwpN5Jrq8JLnGxo 43diQoBjB2AdGFFdw4H/JB8GryF5OZrzjbf/K5lUjm0+HdmDvRkSthL2YmRgfNws VHKqNnCNsa1VEToPJLh7CoobRRy6FQ11SCA2b77BZr53/1mAcZBtDe5pCcnWwFNz u6+zObxpP4foq371sz5XdeM/RizmQ6P22YD4oSpVeoGYE9mVCPSvTM0IM2FxuWF5 JUpD51Psn59cVTGTxWuc4NCK7UbGIRJ51VDvOETFg2yKvt0c+J70uqhxApLZE5+d Q7wZi/T5pmC/Y7odXzr5b1J6KLRL/0pzo1tcU09tS6qfDF+vZ+B92LlN/BU1g9si CCzQUPay1vAxTHKP3spwjOPzpCL0iwiOWT5j9RBM3lOjgT0FaKQi6jqixTKcz1TB 6rqDvvSOV6Z9E3MpEDVDzNRM2zYfVcQemL58wm66BQGypcuI+PWBi57iaxHPbq58 vzB+tNZr6/xrQwznEP2j =uxTu -----END PGP SIGNATURE----- --GFRhMCFsFD5VPY3r-- From owner-freebsd-doc@FreeBSD.ORG Fri Apr 4 00:19:28 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EEB53D4B; Fri, 4 Apr 2014 00:19:28 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 C1896FB5; Fri, 4 Apr 2014 00:19:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s340JSe1035658; Fri, 4 Apr 2014 00:19:28 GMT (envelope-from wblock@freefall.freebsd.org) Received: (from wblock@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s340JSVI035657; Fri, 4 Apr 2014 00:19:28 GMT (envelope-from wblock) Date: Fri, 4 Apr 2014 00:19:28 GMT Message-Id: <201404040019.s340JSVI035657@freefall.freebsd.org> To: wblock@FreeBSD.org, freebsd-doc@FreeBSD.org, wblock@FreeBSD.org From: wblock@FreeBSD.org Subject: Re: docs/187473: [porters-handbook]: update Qt and KDE sections X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2014 00:19:29 -0000 Synopsis: [porters-handbook]: update Qt and KDE sections Responsible-Changed-From-To: freebsd-doc->wblock Responsible-Changed-By: wblock Responsible-Changed-When: Fri Apr 4 00:19:11 UTC 2014 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=187473 From owner-freebsd-doc@FreeBSD.ORG Fri Apr 4 21:38:29 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21C6AFDF; Fri, 4 Apr 2014 21:38:29 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.glenbarber.us", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E5FD8615; Fri, 4 Apr 2014 21:38:28 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id BB391CBFB; Fri, 4 Apr 2014 21:38:20 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us BB391CBFB Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Fri, 4 Apr 2014 17:38:19 -0400 From: Glen Barber To: Steven Hartland Subject: Re: Adding a new entry to 10.0R errata Message-ID: <20140404213819.GA87708@glenbarber.us> References: <20140401211849.GC14379@glenbarber.us> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline In-Reply-To: <20140401211849.GC14379@glenbarber.us> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: re@freebsd.org, doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2014 21:38:29 -0000 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Apr 01, 2014 at 05:18:49PM -0400, Glen Barber wrote: > > >Hi guys I've just been tripped up by an issue with the 10-RELEASE > > >which causes a panic and hang when patching LSI firmware on mps. > > > > > >This is already fixed in 10/stable by mav. Having spoken to him > > >he agrees that its likely worth mentioning in the 10.0R errata. > > > > > >So the question is how do we go about doing that? > > > > > >For reference the following two revisions are required:- > > >http://svnweb.freebsd.org/base?view=revision&revision=262553 > > >http://svnweb.freebsd.org/base?view=revision&revision=262575 > > > Sorry for the delay. It is documented in stable/10 as of r264140, and updated for the website as of r44447, which will be live shortly. Glen --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTPyZLAAoJELls3eqvi17QU4YP/Roq6JapBT7uSlxddr8CFI1/ yMyK42AbIlbN1RgBqpkAp9sF86UuQQKLVuGLbrnXarHCDvL14+d7Z/f+Sg9CBPmC i6qN9ZF8ftw1hpK0K0wNrMcyyLv8/etyIu5yOiKxsZyZqxZfhB+aLJ48rPxSBFaH 3BDAY7jZfWHtoaEEseeYAt6M0ZBFMmpI0UuAYhkq8htlF1t0YIQ49pJZXeeL5DDk yR6sM96HFJFn/rn8PpUSrbxoYKI92JbqhjUdAvvvWWxk+0fk5uL3/ukeR2RsJ2GC pYoS2HUNMd8xK+jAjJl+WdNgh5cVTb1nc5atu0ja4Q4WuIxC2rATJq7+xEpO+UAJ p2eEBalOLzYj5XvcbI30r+k8qbFP6cl6IFboHUlo+vUUpJolo5IT1JQ97sJZgoHr j1C7YFSiK6D97i7hDbMpTTxVhggeUJOcAoRX26orQGPg7Dpay6kLmHc/52CGGih2 Btcc4J/y/xHQ5/zl76Xu+CsUPl1KIyTPMPjSG9oYLHLl7JHp+aBWbsJfdKdEdguu VeZH8dabj0OeMrCv/8N2ytSNxVJ0K/Im7vjTIxS5j/tBdX96Ia1fc/6XWC7h76oz yDZ60a4NSI+VtVcKFVNXjO6ont41baUstqcX2bwc9KQwJFIb7+ktsHWqnucSJT2/ nGauxgwQxgK/PoGFrAw/ =CAZ4 -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- From owner-freebsd-doc@FreeBSD.ORG Fri Apr 4 22:16:51 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 436A9CD8; Fri, 4 Apr 2014 22:16:51 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id EBFC59CA; Fri, 4 Apr 2014 22:16:50 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s34MGm2A040774 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 4 Apr 2014 16:16:49 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s34MGm6W040771; Fri, 4 Apr 2014 16:16:48 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Fri, 4 Apr 2014 16:16:48 -0600 (MDT) From: Warren Block To: freebsd-doc@FreeBSD.org Subject: Rewrite of the Handbook Printing chapter Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Fri, 04 Apr 2014 16:16:49 -0600 (MDT) Cc: wblock@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2014 22:16:51 -0000 The existing Handbook printing chapter has many weaknesses: It does not cover simple setup well. It does not cover current devices well. It uses some confusing terminology and shows examples for uncommon situations. I've complained about these problems before, but a few months ago, Dru asked me to do something about it. This is a from-scratch rewrite, attempting to address the major problems of the old version. http://www.wonkity.com/~wblock/printing/printing.html http://www.wonkity.com/~wblock/printing/printing-connections.html http://www.wonkity.com/~wblock/printing/printing-pdls.html http://www.wonkity.com/~wblock/printing/printing-direct.html http://www.wonkity.com/~wblock/printing/printing-lpd.html http://www.wonkity.com/~wblock/printing/printing-other.html It adds a quick-start section, simplifies setup, vastly reduces the section on shared printers in schools and businesses, and provides a framework that allows the addition of other printing systems. The first candidate for that would be CUPS. Initial responses have been good. If there are no showstopper complaints, I plan to commit this in the next week. Feedback and testing welcome. Thanks! From owner-freebsd-doc@FreeBSD.ORG Sat Apr 5 07:08:17 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E3D3D37 for ; Sat, 5 Apr 2014 07:08:17 +0000 (UTC) Received: from mxf3.bahnhof.se (mxf3.bahnhof.se [213.80.101.27]) by mx1.freebsd.org (Postfix) with ESMTP id 5708D925 for ; Sat, 5 Apr 2014 07:08:16 +0000 (UTC) Received: from localhost (mxf3.local [127.0.0.1]) by mxf3-reinject (Postfix) with ESMTP id 074EC528D8C for ; Sat, 5 Apr 2014 08:47:01 +0200 (CEST) X-Virus-Scanned: by amavisd-new using ClamAV at bahnhof.se (MXF1) X-Spam-Score: -0.001 X-Spam-Level: X-Spam-Status: No, score=-0.001 tagged_above=-99 required=5 tests=[SPF_PASS=-0.001] Received: from mxf3.bahnhof.se ([127.0.0.1]) by localhost (mxf3.bahnhof.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Vl7Tzm5a8L-p for ; Sat, 5 Apr 2014 08:46:53 +0200 (CEST) Received: from mail.bjuv.org (h-84-63.a175.priv.bahnhof.se [79.136.84.63]) by mxf3.bahnhof.se (Postfix) with ESMTP id C9BCB528D8D for ; Sat, 5 Apr 2014 08:46:53 +0200 (CEST) Received: from [192.168.0.2] (elektra.nixnet.jke [192.168.0.2]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bjuv.org (Postfix) with ESMTPSA id 4B71220156 for ; Sat, 5 Apr 2014 08:46:53 +0200 (CEST) Message-ID: <533FA6DC.2040703@cyberinfo.se> Date: Sat, 05 Apr 2014 08:46:52 +0200 From: Jack-Benny Persson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Rewrite of the Handbook Printing chapter References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2014 07:08:17 -0000 I think it looks great! My first thought was that it might be a bit thin on CUPS, since CUPS (I think) is the most popular way of printing. But on the other hand, since you've linked to the CUPS article I guess that's alright. And you've already added a section that allows more additions to CUPS (and other printing systems as well). So yes, I think it looks great and can't find any reasons not to commit it. Best regards, Jack-Benny On 2014-04-05 00:16, Warren Block wrote: > The existing Handbook printing chapter has many weaknesses: > It does not cover simple setup well. > It does not cover current devices well. > It uses some confusing terminology and shows examples for uncommon > situations. > > I've complained about these problems before, but a few months ago, Dru > asked me to do something about it. > > This is a from-scratch rewrite, attempting to address the major problems > of the old version. > > http://www.wonkity.com/~wblock/printing/printing.html > http://www.wonkity.com/~wblock/printing/printing-connections.html > http://www.wonkity.com/~wblock/printing/printing-pdls.html > http://www.wonkity.com/~wblock/printing/printing-direct.html > http://www.wonkity.com/~wblock/printing/printing-lpd.html > http://www.wonkity.com/~wblock/printing/printing-other.html > > It adds a quick-start section, simplifies setup, vastly reduces the > section on shared printers in schools and businesses, and provides a > framework that allows the addition of other printing systems. The first > candidate for that would be CUPS. > > Initial responses have been good. If there are no showstopper > complaints, I plan to commit this in the next week. > > Feedback and testing welcome. Thanks! > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Sat Apr 5 22:21:53 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 563BE2A4 for ; Sat, 5 Apr 2014 22:21:53 +0000 (UTC) Received: from mailhost.cotse.com (mail.cotse.net [66.203.85.58]) (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 192AC391 for ; Sat, 5 Apr 2014 22:21:52 +0000 (UTC) Received: from out.packetderm.com (out.packetderm.com [66.203.85.62]) by mailhost.cotse.com (8.14.5/8.14.5) with ESMTP id s35M2rEv066675 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sat, 5 Apr 2014 18:02:53 -0400 (EDT) (envelope-from un@vonunov.nu) Received: from localhost (localhost[127.0.0.1]) (authenticated bits=0) by smtp (5.7.4/5.7.4) with ESMTP id s35M2qR0058506 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Sat, 5 Apr 2014 18:02:53 -0400 (EDT) (envelope-from un@vonunov.nu) Date: Sat, 5 Apr 2014 16:13:44 -0500 From: To: freebsd-doc@FreeBSD.org Subject: A suggestion Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2014 22:21:53 -0000 Hello, If I can make a suggestion, I would recommend to include instructions for setting "linux_enable" and running "kldload linux" in 7.2 about Browsers, where you talk about setting up Flash. The 'nspluginwrapper -v -a -i' will return errors like so: http://bpaste.net/show/198105/ The user will not encounter the instructions about the Linux binaries until several chapters later, and it is likely that they will look through the handbook for some particular task rather than reading it all at once, so maybe this merits a line in the Browsers area. From owner-freebsd-doc@FreeBSD.ORG Sun Apr 6 06:10:06 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD06A3C7 for ; Sun, 6 Apr 2014 06:10:06 +0000 (UTC) Received: from mtaout-248-pao.email7.skillpagesmail.com (mtaout-248-pao.email7.skillpagesmail.com [216.146.32.248]) by mx1.freebsd.org (Postfix) with ESMTP id 9BBCCB44 for ; Sun, 6 Apr 2014 06:10:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=mta; d=skillpagesmail.com; h=Content-Type:MIME-Version:From:To:Sender:Reply-To:Date:List-Unsubscribe:Subject:Message-Id; i=no-reply@skillpagesmail.com; bh=vi8FTznORg2iHC8XMsdeF4nSjkI=; b=jy4mgsCnbux3/I7BdApgQdugCOYnYP36G+HRMleUhBD2280jnz9ICP8HTyIiu3sjfPogI2GN45h7 YWKV16p1uXChM0GZiGYpqCtJR0G/WGFWEgoBQrvMsPMOu7ZIWw377VOjWmguSMSCBQ+4CPH+Bva+ j3ZI4ZKkYqDMGaFLrbQ= DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=mta; d=skillpagesmail.com; b=f3A3Rpw+0yOXFDeHhi847ql+05VdoklBHPx/aMGmgtyv8+dbvmBj1JQ+GA3B3YOQcZocNMeQ2ITe QkA96tWeUJ6T2zt932IkwAeLeE6SSzkxADCU5jhgCaQ8y/vIA1cJUIXxUqkLMhD92pBofrF1br3G g3L1eWJpxDInOJ1CWWY=; From: Sylvester Peter via SkillPages Team To: doc@freebsd.org Sender: Sylvester Peter via SkillPages Team Date: Sun, 06 Apr 2014 05:59:58 X-Mailer: www.skillpages.com_PY X-EmailType: InviteSecondReminder X-EmailId: ncZ4MfLWT4CZSfwuHCKnCw== Subject: Last chance... Your invitation from Sylvester Peter is about to expire X-DynectEmail-Msg-Key: 20140406055959.F1C90C8B0020@mail6-01-pao Message-Id: <20140406055959.868FA20062@mail6-01-pao.dyndns.com> X-DynectEmail-Msg-Hash: fRSspyRTfXPA1bNH7n3imfNhY+FqBjEBBZ91nXKh2tzLd54Y340/AITRhGVf5FDObpiYQDxCQpIlm79ffrKrgMoZDw5WrmGF X-DynectEmail-X-Headers: MHwzMDk1Nzc6SW52aXRlU2Vjb25kUmVtaW5kZXI7 X-Feedback-ID: U2tpbGx5ZXdWTVRBcw==:20310:28657:dyn06 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Sylvester Peter via SkillPages Team List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2014 06:10:06 -0000 [1]SkillPages Hi, Sylvester Peter is still waiting to connect with you. [2][photo.jpg?sz=50] [3]Sylvester Peter Invite sent: March 23, 2014 [4]Continue This email was sent to doc@freebsd.org. Please add 'no-reply@skillpagesmail.com' to your contacts or safe senders list to ensure you keep receiving notifications in the future. If you do not want to receive these emails, you can [5]unsubscribe here. © 2014 SkillPages, Blackrock Business Park, Dublin, Ireland and 228 Hamilton Avenue, 3rd Floor, Palo Alto, CA 94301. [open-rate-v1.gif?emailMessageId=9dc67831-f2d6-4f80-9949-fc2e1c22a70b&e mailType=InviteSecondReminder&sdate=201404060559&utm_source=EmailInvite SecondReminder&utm_medium=Email&sendercc=NG] References 1. http://www.skillpages.com/i/landing/emailinvitelanding?signedParameters=_IvXRcnpFHteApR29riUUz9l-_CTEKMZdyMENqJkYAI.eyJmcm9tIjogImUxNmExMjk5LWFlYjItZTMxMS1hMzI5LWM5MjcxYjUxZTJkYiIsICJwIjogMywgInRvIjogImIzNWUyMDY0LTE1MjMtNTUzZC04MjBkLWNjYWYzZGVmMTgyNyIsICJpc3N1ZWRfYXQiOiAxMzk2NzYzOTk4LCAidmVyIjogIjEiLCAiZW1haWwiOiAiZG9jQGZyZWVic2Qub3JnIn0&emailMessageId=9dc67831-f2d6-4f80-9949-fc2e1c22a70b&emailType=InviteSecondReminder&sdate=201404060559&utm_source=EmailInviteSecondReminder&utm_medium=Email&sendercc=NG&emailLinkType=Logo 2. http://www.skillpages.com/i/landing/emailinvitelanding?signedParameters=_IvXRcnpFHteApR29riUUz9l-_CTEKMZdyMENqJkYAI.eyJmcm9tIjogImUxNmExMjk5LWFlYjItZTMxMS1hMzI5LWM5MjcxYjUxZTJkYiIsICJwIjogMywgInRvIjogImIzNWUyMDY0LTE1MjMtNTUzZC04MjBkLWNjYWYzZGVmMTgyNyIsICJpc3N1ZWRfYXQiOiAxMzk2NzYzOTk4LCAidmVyIjogIjEiLCAiZW1haWwiOiAiZG9jQGZyZWVic2Qub3JnIn0&emailMessageId=9dc67831-f2d6-4f80-9949-fc2e1c22a70b&emailType=InviteSecondReminder&sdate=201404060559&utm_source=EmailInviteSecondReminder&utm_medium=Email&sendercc=NG&emailLinkType=ProfileThumb 3. http://www.skillpages.com/i/landing/emailinvitelanding?signedParameters=_IvXRcnpFHteApR29riUUz9l-_CTEKMZdyMENqJkYAI.eyJmcm9tIjogImUxNmExMjk5LWFlYjItZTMxMS1hMzI5LWM5MjcxYjUxZTJkYiIsICJwIjogMywgInRvIjogImIzNWUyMDY0LTE1MjMtNTUzZC04MjBkLWNjYWYzZGVmMTgyNyIsICJpc3N1ZWRfYXQiOiAxMzk2NzYzOTk4LCAidmVyIjogIjEiLCAiZW1haWwiOiAiZG9jQGZyZWVic2Qub3JnIn0&emailMessageId=9dc67831-f2d6-4f80-9949-fc2e1c22a70b&emailType=InviteSecondReminder&sdate=201404060559&utm_source=EmailInviteSecondReminder&utm_medium=Email&sendercc=NG&emailLinkType=ProfileName 4. http://www.skillpages.com/i/landing/emailinvitelanding?signedParameters=_IvXRcnpFHteApR29riUUz9l-_CTEKMZdyMENqJkYAI.eyJmcm9tIjogImUxNmExMjk5LWFlYjItZTMxMS1hMzI5LWM5MjcxYjUxZTJkYiIsICJwIjogMywgInRvIjogImIzNWUyMDY0LTE1MjMtNTUzZC04MjBkLWNjYWYzZGVmMTgyNyIsICJpc3N1ZWRfYXQiOiAxMzk2NzYzOTk4LCAidmVyIjogIjEiLCAiZW1haWwiOiAiZG9jQGZyZWVic2Qub3JnIn0&emailMessageId=9dc67831-f2d6-4f80-9949-fc2e1c22a70b&emailType=InviteSecondReminder&sdate=201404060559&utm_source=EmailInviteSecondReminder&utm_medium=Email&sendercc=NG&emailLinkType=MainCallToAction 5. http://www.skillpages.com/i/account/unsubscribe?signedParameters=WVjwXkrUMLLHKCdXrcCRfZHS4ABkG6G8NQWAcWnf2Lc.eyJpc3N1ZWRfYXQiOiAxMzk2NzYzOTk4LCAicCI6IDAsICJ2ZXIiOiAiMSIsICJlbWFpbCI6ICJkb2NAZnJlZWJzZC5vcmcifQ&emailMessageId=9dc67831-f2d6-4f80-9949-fc2e1c22a70b&emailType=InviteSecondReminder&sdate=201404060559&utm_source=EmailInviteSecondReminder&utm_medium=Email&sendercc=NG&emailLinkType=Unsubscribe From owner-freebsd-doc@FreeBSD.ORG Sun Apr 6 18:58:42 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 95DAE767 for ; Sun, 6 Apr 2014 18:58:42 +0000 (UTC) Received: from mail-qc0-x244.google.com (mail-qc0-x244.google.com [IPv6:2607:f8b0:400d:c01::244]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5ABE1F2B for ; Sun, 6 Apr 2014 18:58:42 +0000 (UTC) Received: by mail-qc0-f196.google.com with SMTP id i17so1778539qcy.7 for ; Sun, 06 Apr 2014 11:58:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=uvL5pr9eZNDq6aIXpHyxi9ZZerKWYTQRE5zRvnlSGdY=; b=zg7Wuj+DjL2xe6y93dRfVODSgBu2pdpqfmRzl0qXCcTarRpDPkzBie9orGAx3s/o4s VixO78l7ZwhPrmZ1wYVLl1c6+PaHpi9tXHEqnG1oLDEwI/kXQY0Uu+s1TJdhvVPOaJ3B 6nHn+pMVGHf4MTwNeDCNOXHavj6EqbI4KtFHjhSa6qX0wDG850PR+anFnvGwRZNFyeR0 RtpaGdAXtHwZc+y0n3XRvgayfRB0C5U/wAZrsEY2v+IitHrgACAZwznY9aD4qBBPvCc6 Zcxxvu2loBj9B/LD3SwNJ+CsVw79/Oz8faJ7fgdT3prmxcm9SZ7Yr3Rq3d8Myai8n8WO Csvw== MIME-Version: 1.0 X-Received: by 10.140.109.100 with SMTP id k91mr27158459qgf.12.1396810721198; Sun, 06 Apr 2014 11:58:41 -0700 (PDT) Received: by 10.96.206.8 with HTTP; Sun, 6 Apr 2014 11:58:41 -0700 (PDT) Date: Mon, 7 Apr 2014 00:28:41 +0530 Message-ID: Subject: From: Doraisamy Arumugam To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2014 18:58:42 -0000 Visit this web page From owner-freebsd-doc@FreeBSD.ORG Mon Apr 7 10:32:11 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18D911E6 for ; Mon, 7 Apr 2014 10:32:11 +0000 (UTC) Received: from eu1sys200aog120.obsmtp.com (eu1sys200aog120.obsmtp.com [207.126.144.149]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D94B935 for ; Mon, 7 Apr 2014 10:32:10 +0000 (UTC) Received: from mail-wg0-f50.google.com ([74.125.82.50]) (using TLSv1) by eu1sys200aob120.postini.com ([207.126.147.11]) with SMTP ID DSNKU0J+lOpbYKqRw9A0x8eAUIwWWPtUvRXv@postini.com; Mon, 07 Apr 2014 10:32:10 UTC Received: by mail-wg0-f50.google.com with SMTP id x13so6520312wgg.21 for ; Mon, 07 Apr 2014 03:31:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:message-id:to:subject:reply-to; bh=8S5zOBrlrzEFBTwOM8O44qxVPhOiqMn2SC4V74QF2tw=; b=THdgscRnUIX+ANvBsP8PIc6yQ3zFGYWzxJ0QzNGcwWIJxD/viYWFTBZ+pmmeV5uWZS rbKv0/g1ELOFCtrOINslryotnIGGuFJWd1OZPNVUgJwvnDWFcDk4eVhjyFfkIxqX3zvx EcM9TXAHRDEh6uME70ygfFfoWbL3J1uT/13jNFEzx1zjcvCphKCaVfvlIVQYp0He/N4s W1XI9zD0Mhr4NJJXR4LQ8WzU9o0DGAYeKd4o39/OufcOGqJy1nkUgN8jZTCoHzHERzLL gl2UUVOW2h5KboeozamD2KIpXoERbvBJnkisDFBt2iwu1+Ow4D6ggm4Vp5mCqG0/Y2tX hvkw== X-Received: by 10.180.91.164 with SMTP id cf4mr23974235wib.37.1396856178147; Mon, 07 Apr 2014 00:36:18 -0700 (PDT) X-Gm-Message-State: ALoCoQkzWPnV0dE35TTqBZ8BqjsKphwkaTlzvhgkwoLxsGS0tqFs8Zk5HZ/lKGQ2IbDVQZ4s4ViWR08GNDYXj2tqFoO7eecA/lK+mZNF+YBMYTf21eis3BgwL051vmeq7JdDrgi91b99 X-Received: by 10.180.91.164 with SMTP id cf4mr23974229wib.37.1396856178075; Mon, 07 Apr 2014 00:36:18 -0700 (PDT) Received: from mech-cluster241.men.bris.ac.uk (mech-cluster241.men.bris.ac.uk. [137.222.187.241]) by mx.google.com with ESMTPSA id gr2sm25182703wjc.12.2014.04.07.00.36.15 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 07 Apr 2014 00:36:15 -0700 (PDT) Sender: Anton Shterenlikht Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.8/8.14.6) with ESMTP id s377aEEW021947 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 7 Apr 2014 08:36:14 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.8/8.14.6/Submit) id s377aEJ1021946 for freebsd-doc@freebsd.org; Mon, 7 Apr 2014 08:36:14 +0100 (BST) (envelope-from mexas) Date: Mon, 7 Apr 2014 08:36:14 +0100 (BST) From: Anton Shterenlikht Message-Id: <201404070736.s377aEJ1021946@mech-cluster241.men.bris.ac.uk> To: freebsd-doc@freebsd.org Subject: RE: Rewrite of the Handbook Printing chapter X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: mexas@bris.ac.uk List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Apr 2014 10:32:11 -0000 > Warren Block wblock at wonkity.com > Fri Apr 4 22:16:51 UTC 2014 > > http://www.wonkity.com/~wblock/printing/printing-direct.html nc(1) is a great utility. I wish I knew about it sooner - would've saved me many hours over printing via a browser. Many thanks for your work Anton From owner-freebsd-doc@FreeBSD.ORG Mon Apr 7 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E89380B for ; Mon, 7 Apr 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 7F371B85 for ; Mon, 7 Apr 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s37B64EC070188 for ; Mon, 7 Apr 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s37B642o070186 for freebsd-doc@FreeBSD.org; Mon, 7 Apr 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 7 Apr 2014 11:06:04 GMT Message-Id: <201404071106.s37B642o070186@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Apr 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/188214 doc Manpage for fsck(8) doesn't say what happens when no - o docs/188043 doc [patch] man page for md5/sha1/sha256/sha412/rmd-160 cl o docs/187644 doc ifconfig man page address_family paragraph needs clari o docs/187465 doc mention patchlevels in explaining security advisories o docs/187351 doc handbook section on ports does not mention pkg search o docs/187321 doc [handbook] [patch] Clarification needed on using geli o docs/187142 doc The Handbook (chapter 15.4) does not mention /etc/jail o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc Add an ipfilter rc.conf option in handbook for IPv6 o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/78480 doc Networked printer setup unnecessarily complex in handb o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) 257 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Apr 7 16:10:34 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 912A91DF for ; Mon, 7 Apr 2014 16:10:34 +0000 (UTC) Received: from valentine.liquidneon.com (cl-1479.chi-02.us.sixxs.net [IPv6:2001:4978:f:5c6::2]) by mx1.freebsd.org (Postfix) with ESMTP id 6D62C1CD for ; Mon, 7 Apr 2014 16:10:34 +0000 (UTC) Received: by valentine.liquidneon.com (Postfix, from userid 1018) id A75658FF6D; Mon, 7 Apr 2014 10:10:32 -0600 (MDT) Date: Mon, 7 Apr 2014 10:10:32 -0600 From: Brad Davis To: freebsd-doc@FreeBSD.org Subject: HandBook DNS Chapter Message-ID: <20140407161032.GC27199@valentine.liquidneon.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Apr 2014 16:10:34 -0000 Hi Everyone, I am slowly working on moderinzing the DNS chapter. One of the first things I need to fix is to put all the BIND content into its own sub section. If I do that, the indentation of almost the entire chapter will need to shift in one level. So I am seeking your advice for how to do this best. Ideally something like tidy(1) would be able to fix the indentation for me. What do you think is the best way to solve this problem? Regards, Brad Davis From owner-freebsd-doc@FreeBSD.ORG Mon Apr 7 16:23:35 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EA487C6; Mon, 7 Apr 2014 16:23:35 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 2DF7435D; Mon, 7 Apr 2014 16:23:34 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s37GNX2V037656 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 7 Apr 2014 10:23:33 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s37GNXtx037653; Mon, 7 Apr 2014 10:23:33 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Mon, 7 Apr 2014 10:23:33 -0600 (MDT) From: Warren Block To: Brad Davis Subject: Re: HandBook DNS Chapter In-Reply-To: <20140407161032.GC27199@valentine.liquidneon.com> Message-ID: References: <20140407161032.GC27199@valentine.liquidneon.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Mon, 07 Apr 2014 10:23:33 -0600 (MDT) Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Apr 2014 16:23:35 -0000 On Mon, 7 Apr 2014, Brad Davis wrote: > Hi Everyone, > > I am slowly working on moderinzing the DNS chapter. One of the first > things I need to fix is to put all the BIND content into its own sub > section. If I do that, the indentation of almost the entire chapter will > need to shift in one level. So I am seeking your advice for how to do > this best. Ideally something like tidy(1) would be able to fix the > indentation for me. What do you think is the best way to solve this > problem? At present, I'm not aware of an automatic way to do that. We definitely have a need for a program that will take arbitrary DocBook XML files, parse them, and reformat them with our indentation rules. For manual changes, editors/geany will indent or unindent sections while keeping track of tabs and spaces. If configured that way, anyway, and I'm not sure of all the settings (but it works here). Start highlighting and stop when you get to the first line of a or element. Change indent level (ctrl-i, ctrl-u), then skip over the or and repeat. Of course, this should be done as part of a whitespace-only cleanup. When the indent changes, lines often need to be rewrapped. textproc/igor can help locate problems. From owner-freebsd-doc@FreeBSD.ORG Tue Apr 8 15:36:37 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A28D705; Tue, 8 Apr 2014 15:36:37 +0000 (UTC) Received: from smtp6-g21.free.fr (smtp6-g21.free.fr [IPv6:2a01:e0c:1:1599::15]) by mx1.freebsd.org (Postfix) with ESMTP id DEA101FCA; Tue, 8 Apr 2014 15:36:34 +0000 (UTC) Received: from emphyrio.blackend.org (unknown [88.179.1.53]) by smtp6-g21.free.fr (Postfix) with ESMTP id 1BB848227F; Tue, 8 Apr 2014 17:36:26 +0200 (CEST) Received: from emphyrio.blackend.org (localhost [127.0.0.1]) by emphyrio.blackend.org (8.14.7/8.14.7) with ESMTP id s38FaOPt001365; Tue, 8 Apr 2014 17:36:24 +0200 (CEST) (envelope-from marc@emphyrio.blackend.org) Received: (from marc@localhost) by emphyrio.blackend.org (8.14.7/8.14.7/Submit) id s38FaOub001364; Tue, 8 Apr 2014 17:36:24 +0200 (CEST) (envelope-from marc) Date: Tue, 8 Apr 2014 17:36:24 +0200 From: Marc Fonvieille To: freebsd-doc@FreeBSD.org Subject: HEADS UP: doc/ slush for 9.3R begins on 13 June, 2014 Message-ID: <20140408153624.GA1335@emphyrio.blackend.org> Mail-Followup-To: freebsd-doc@FreeBSD.org, doceng@FreeBSD.org, re@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HlL+5n6rz5pIUxbD" Content-Disposition: inline X-Useless-Header: blackend.org X-Operating-System: FreeBSD 9.2-RELEASE-p3 User-Agent: Mutt/1.5.22 (2013-10-16) Cc: doceng@FreeBSD.org, re@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Apr 2014 15:36:37 -0000 --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi all, The doc slush will begin on 13 June, 2014 The purpose of the doc slush is to slow down the rate of changes in that tree in order to allow the translation teams time to finalize their work and to avoid last-minute breakage for the 9.3-RELEASE. Please note that the slush will not apply to /htdocs documents. As usual, this is not a real freeze and requires no formal commit approval procedure for your commit, but you are kindly requested not to commit large, structural changes during that period. Tagging of the doc tree is scheduled to take place on 23 June, 2014. Thank you for your cooperation and keep up the good work! --=20 Marc on behalf of doceng@ --HlL+5n6rz5pIUxbD Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iD8DBQFTRBd3zQ9RwE+OdOgRAnpRAKDnEpKkXf/lg83oF/kin+TCfA7+/wCfWiS2 CzEDJVsM87G4C3rBIexiPAU= =3Nfi -----END PGP SIGNATURE----- --HlL+5n6rz5pIUxbD-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 9 08:20:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDAA7111 for ; Wed, 9 Apr 2014 08:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A29D914AC for ; Wed, 9 Apr 2014 08:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s398K112003796 for ; Wed, 9 Apr 2014 08:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s398K188003795; Wed, 9 Apr 2014 08:20:01 GMT (envelope-from gnats) Resent-Date: Wed, 9 Apr 2014 08:20:01 GMT Resent-Message-Id: <201404090820.s398K188003795@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ondra Knezour Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D0ADC1 for ; Wed, 9 Apr 2014 08:19:35 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 74E911360 for ; Wed, 9 Apr 2014 08:10:30 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s398ATBI012352 for ; Wed, 9 Apr 2014 08:10:29 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s398ATrK012343; Wed, 9 Apr 2014 08:10:29 GMT (envelope-from nobody) Message-Id: <201404090810.s398ATrK012343@cgiserv.freebsd.org> Date: Wed, 9 Apr 2014 08:10:29 GMT From: Ondra Knezour To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/188392: The releng article contains wrong link to the releng-packages article X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 08:20:01 -0000 >Number: 188392 >Category: docs >Synopsis: The releng article contains wrong link to the releng-packages article >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 09 08:20:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ondra Knezour >Release: >Organization: >Environment: >Description: In both single/split versions of the Release Engeneering article on the FreeBSD site is wrong URL in the section 3.2 Contributed Software (“ports”), which should link to the The Release Engineering of Third Party Packages article. >How-To-Repeat: Visit http://www.freebsd.org/doc/en/articles/releng/release-build.html. Scroll down to the 3.2 section and click on the "The Release Engineering of Third Party Packages" link. You should end on the linked article, but you will get error page, because of wrong URL, which reads http://www.freebsd.org/doc/en/articles/releng/%7B%7B%7Burl.articles.releng-packages%7D%7D%7D/article.html. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Apr 9 12:37:58 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D99D1744; Wed, 9 Apr 2014 12:37:58 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 61EC311CB; Wed, 9 Apr 2014 12:37:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s39CbvQX082796; Wed, 9 Apr 2014 12:37:57 GMT (envelope-from wblock@freefall.freebsd.org) Received: (from wblock@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s39Cbv1T082795; Wed, 9 Apr 2014 12:37:57 GMT (envelope-from wblock) Date: Wed, 9 Apr 2014 12:37:57 GMT Message-Id: <201404091237.s39Cbv1T082795@freefall.freebsd.org> To: wblock@FreeBSD.org, freebsd-doc@FreeBSD.org, wblock@FreeBSD.org From: wblock@FreeBSD.org Subject: Re: docs/188392: The releng article contains wrong link to the releng-packages article X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 12:37:58 -0000 Synopsis: The releng article contains wrong link to the releng-packages article Responsible-Changed-From-To: freebsd-doc->wblock Responsible-Changed-By: wblock Responsible-Changed-When: Wed Apr 9 12:37:38 UTC 2014 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=188392 From owner-freebsd-doc@FreeBSD.ORG Wed Apr 9 13:06:49 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6F62195 for ; Wed, 9 Apr 2014 13:06:49 +0000 (UTC) Received: from mail.csh.rit.edu (news.csh.rit.edu [129.21.49.147]) by mx1.freebsd.org (Postfix) with ESMTP id A893D1576 for ; Wed, 9 Apr 2014 13:06:49 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.csh.rit.edu (Postfix) with ESMTP id ED58F23DE09 for ; Wed, 9 Apr 2014 09:06:42 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=csh.rit.edu; h= user-agent:message-id:subject:subject:from:from:date:date :content-transfer-encoding:content-type:content-type :mime-version:received:received; s=mail; t=1397048795; bh=yjchas L1NAFqna3EpR8nRDrnrW+tf5o20uE7aQWBo1A=; b=KoEjzXgQY3DusJirOKv8ui 40rJh3UBipsS05C3+LthF6FOrJpS7mXjDgZfI6tfKryLJr/WYBghuPJ6Ut1ipU6v z28W6JhfJ18vjBE+773UQRBf/a4S4n4TV7jrl/lvc1AiAr7GHdsDuwiqCTnyO87a GbpRbkFnHj9tHoPiHRlXcoeSDDAMSCH/ercwGrMl/dLDOeLs3p14bK/EkABw0eJP JcoVRfyCg2/bolU6CEnPX3NJOf1Uo4HGGcBotkwKTrz7JqK44B6PuxX4Uwmr8PUu qqmzDI7VnFj9SHR32EtWL142R4oqugMA3ExEMbJmeue+ItE2cMC5lh39L11GS8YA == X-Virus-Scanned: Debian amavisd-new at csh.rit.edu Received: from mail.csh.rit.edu ([127.0.0.1]) by localhost (brownstoat.csh.rit.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QlDbT+t8xeye for ; Wed, 9 Apr 2014 09:06:35 -0400 (EDT) Received: from angst.csh.rit.edu (angst.csh.rit.edu [129.21.49.41]) by mail.csh.rit.edu (Postfix) with ESMTPA id AAF9023FE45 for ; Wed, 9 Apr 2014 09:06:35 -0400 (EDT) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 09 Apr 2014 09:06:35 -0400 From: Kevin Thompson To: freebsd-doc@FreeBSD.org Subject: Mistake in handbook 23.6 Rebuilding world Message-ID: X-Sender: antiduh@csh.rit.edu User-Agent: Roundcube Webmail/0.9.2 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 13:06:49 -0000 Howdy folks, I think there is a mistake in this document: http://www5.us.freebsd.org/doc/handbook/makeworld.html In: - Section 23.6.1 "Overview of Process" - Procedure 23.2 "Overview of Build World Process" - Step 9 "Update any remaining configuration files." the command line given for mergemaster is 'mergemaster -p' - this looks like copy-pasta from step 7, that command line option isn't appropriate for /finishing/ the config merge. Shouldn't the command be something like 'mergemaster -iF'? --Kevin From owner-freebsd-doc@FreeBSD.ORG Wed Apr 9 13:50:59 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC8DC28F for ; Wed, 9 Apr 2014 13:50:59 +0000 (UTC) Received: from gamma.ukrhub.net (gamma.ukrhub.net [94.125.120.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gamma.ukrhub.net", Issuer "gamma.ukrhub.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3FA221A25 for ; Wed, 9 Apr 2014 13:50:58 +0000 (UTC) Received: from gamma.ukrhub.net (localhost [127.0.0.1]) by gamma.ukrhub.net (8.14.8/8.14.8) with ESMTP id s39DSJXQ002032 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 9 Apr 2014 16:28:19 +0300 (EEST) (envelope-from ds@ukrhub.net) Received: (from ds@localhost) by gamma.ukrhub.net (8.14.8/8.14.8/Submit) id s39DSJON002031; Wed, 9 Apr 2014 16:28:19 +0300 (EEST) (envelope-from ds@ukrhub.net) X-Authentication-Warning: gamma.ukrhub.net: ds set sender to ds@ukrhub.net using -f Date: Wed, 9 Apr 2014 16:28:19 +0300 From: Taras Korenko To: Kevin Thompson Subject: Re: Mistake in handbook 23.6 Rebuilding world Message-ID: <20140409132818.GA1734@gamma.ukrhub.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Taras Korenko List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 13:50:59 -0000 On Wed, Apr 09, 2014 at 09:06:35AM -0400, Kevin Thompson wrote: > Howdy folks, > > I think there is a mistake in this document: > http://www5.us.freebsd.org/doc/handbook/makeworld.html > > In: > - Section 23.6.1 "Overview of Process" > - Procedure 23.2 "Overview of Build World Process" > - Step 9 "Update any remaining configuration files." > > the command line given for mergemaster is 'mergemaster -p' - this looks > like copy-pasta from step 7, that command line option isn't appropriate > for /finishing/ the config merge. Please check the main web site, it is refreshed more often: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html > ... -- WBR, Taras Korenko From owner-freebsd-doc@FreeBSD.ORG Wed Apr 9 13:51:59 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7FAC42DB for ; Wed, 9 Apr 2014 13:51:59 +0000 (UTC) Received: from mail1.canodus2.canodus.be (mail1.canodus2.canodus.be [83.149.89.9]) by mx1.freebsd.org (Postfix) with ESMTP id 4485D1A33 for ; Wed, 9 Apr 2014 13:51:59 +0000 (UTC) Received: by mail1.canodus2.canodus.be (Postfix, from userid 65534) id 78E4632ACCD; Wed, 9 Apr 2014 15:42:45 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mail1.canodus2.canodus.be X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from [192.168.1.7] (d51532D1F.access.telenet.be [81.83.45.31]) by mail1.canodus2.canodus.be (Postfix) with ESMTPSA id 495AC32AC50; Wed, 9 Apr 2014 15:42:45 +0200 (CEST) Message-ID: <1397050965.5416.26.camel@debian.wout-t440s> Subject: Re: Mistake in handbook 23.6 Rebuilding world From: Wout =?ISO-8859-1?Q?Decr=E9?= To: Kevin Thompson Date: Wed, 09 Apr 2014 15:42:45 +0200 In-Reply-To: References: Organization: Canodus Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.8.5-2+b3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 13:51:59 -0000 On Wed, 2014-04-09 at 09:06 -0400, Kevin Thompson wrote: > Howdy folks, > > I think there is a mistake in this document: > http://www5.us.freebsd.org/doc/handbook/makeworld.html > > In: > - Section 23.6.1 "Overview of Process" > - Procedure 23.2 "Overview of Build World Process" > - Step 9 "Update any remaining configuration files." > > the command line given for mergemaster is 'mergemaster -p' - this looks > like copy-pasta from step 7, that command line option isn't appropriate > for /finishing/ the config merge. > > Shouldn't the command be something like 'mergemaster -iF'? I reported this some time ago, and it was fixed (r44183), seems like the mirror of the Handbook you use is not yet updated. Having the -i and -F options is something I would like to see too, or at least offered in a . Cheers > > --Kevin > > > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Wed Apr 9 14:04:44 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 378D0CC3 for ; Wed, 9 Apr 2014 14:04:44 +0000 (UTC) Received: from nm40.bullet.mail.ne1.yahoo.com (nm40.bullet.mail.ne1.yahoo.com [98.138.229.33]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C89FC1BA2 for ; Wed, 9 Apr 2014 14:04:43 +0000 (UTC) Received: from [127.0.0.1] by nm40.bullet.mail.ne1.yahoo.com with NNFMP; 09 Apr 2014 14:04:40 -0000 Received: from [98.138.101.129] by nm40.bullet.mail.ne1.yahoo.com with NNFMP; 09 Apr 2014 14:01:39 -0000 Received: from [216.39.60.169] by tm17.bullet.mail.ne1.yahoo.com with NNFMP; 09 Apr 2014 14:01:39 -0000 Received: from [216.39.60.245] by tm5.access.bullet.mail.gq1.yahoo.com with NNFMP; 09 Apr 2014 14:01:39 -0000 Received: from [127.0.0.1] by omp1016.access.mail.gq1.yahoo.com with NNFMP; 09 Apr 2014 14:01:39 -0000 X-Yahoo-Newman-Property: ymail-4 X-Yahoo-Newman-Id: 549646.86073.bm@omp1016.access.mail.gq1.yahoo.com Received: (qmail 39918 invoked by uid 60001); 9 Apr 2014 13:54:58 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=att.net; s=s1024; t=1397051698; bh=7Ho8GPG0GH3HjSFiUaCQryiZMpBtqgGkvyflsn+81qQ=; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=oeje5VIwWznECLk85aXOp1j43oe6LgETtIJiJZoFg6oavQg39cCguRK2tLsxdZFA0iI3kULD6KUoFEBKK1b8IseXD9i++UXYE9Ra/cnE2mtY/OAvA6/lRa2Vn7G7jscKHK2sCy01qbizczt840eJeIUpI7M+qNT5JkNQsfxQy1c= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=att.net; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=fcvUDv7IqTuYiiJtenIyz6qvCGuIkp4lX4pd++dRSshgk9/PI/0A0+N25hmwil+JJKDLYJbcJbvhuGmPF15Sf6ir9lXttnz8DdfopitLWAwgdphOXeO1u5r8x9kZAB4v4e+TMC4u9Qxbfa2/z0uSx301kfwWB2b2uCUBAdkWfyY=; X-YMail-OSG: 0klMCZcVM1mLQrTAqcWRcfuRayPeEOvzgowoYNkYfJ7xNVB Jo4dRSEK6rcRFRhU9oSAD75zh19.x8ownmg1m8dJdwnGZZKdA0zivytyJnwM sGd9XAiNLeXZtEJTss7j3kG28s2M6YlLcHyCXdvIhKVaxPeXtGgDLwk8_er9 AFiroSmo.1wOzboG5bmTrtybGW4iSOELZ4UoGVd4mv1RSiY2XInbE8Av5_4w VoPxGN7RttIlP40UPZUJNqOWC0GC32lHuSNFtcxoDk2CszzmoM27GzGlSic. zXBjMtUYxJPPsAFfnGOY9SgwhAanRjf8YbWpytcn_T3s4NJZbkdN6jeEffif 8un1bDFw.ENk_CfVtkIuwf1ytoSRr_kYZcRF64B0w6xTuyghJ8xvsRS6_PXv POCGxHYcPxqZ_us761idHFfHAnIXJfqP.iYD1_1y8zYV.3ZIaJTiJfrDbIQx 0tblmf27BMiIgHKjJ_M.ohmjety8N_uaYt1DaZLQLedzK548rBcKO8tfUv7r DkDZe Received: from [99.98.83.69] by web184901.mail.gq1.yahoo.com via HTTP; Wed, 09 Apr 2014 06:54:58 PDT X-Rocket-MIMEInfo: 002.001, Cgo.SGF2aW5nIHRoZSAtaSBhbmQgLUYgb3B0aW9ucyBpcyBzb21ldGhpbmcgSSB3b3VsZCBsaWtlIHRvIHNlZSB0b28sIG9yIGF0Cj5sZWFzdCBvZmZlcmVkIGluIGEgPHRpcD4uCgoKCkRvZXMgY2hhbmdpbmcgdGhhdCBsaW5lIHRvIHRoZSBmb2xsb3dpbmcgbWFrZSBzZW5zZT8gSWYgc28sIEknbGwgY29tbWl0IGl0LgoKIyBtZXJnZW1hc3RlciAtcGlGCgpDaGVlcnMsCgpEcnUKATABAQEB X-Mailer: YahooMailWebService/0.8.182.648 References: <1397050965.5416.26.camel@debian.wout-t440s> Message-ID: <1397051698.88840.YahooMailNeo@web184901.mail.gq1.yahoo.com> Date: Wed, 9 Apr 2014 06:54:58 -0700 (PDT) From: Dru Lavigne Subject: Re: Mistake in handbook 23.6 Rebuilding world To: =?iso-8859-1?Q?Wout_Decr=E9?= , Kevin Thompson In-Reply-To: <1397050965.5416.26.camel@debian.wout-t440s> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: "freebsd-doc@FreeBSD.org" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Dru Lavigne List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 14:04:44 -0000 =0A=0A>Having the -i and -F options is something I would like to see too, o= r at=0A>least offered in a .=0A=0A=0A=0ADoes changing that line to the= following make sense? If so, I'll commit it.=0A=0A# mergemaster -piF=0A=0A= Cheers,=0A=0ADru=0A From owner-freebsd-doc@FreeBSD.ORG Wed Apr 9 14:08:20 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98F29DC2 for ; Wed, 9 Apr 2014 14:08:20 +0000 (UTC) Received: from mail1.canodus2.canodus.be (mail1.canodus2.canodus.be [83.149.89.9]) by mx1.freebsd.org (Postfix) with ESMTP id 5B1021BD1 for ; Wed, 9 Apr 2014 14:08:20 +0000 (UTC) Received: by mail1.canodus2.canodus.be (Postfix, from userid 65534) id C35C432AD54; Wed, 9 Apr 2014 16:08:18 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mail1.canodus2.canodus.be X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from [192.168.1.7] (d51532D1F.access.telenet.be [81.83.45.31]) by mail1.canodus2.canodus.be (Postfix) with ESMTPSA id D1FA032ACA2; Wed, 9 Apr 2014 16:08:17 +0200 (CEST) Message-ID: <1397052497.5416.30.camel@debian.wout-t440s> Subject: Re: Mistake in handbook 23.6 Rebuilding world From: Wout =?ISO-8859-1?Q?Decr=E9?= To: Dru Lavigne Date: Wed, 09 Apr 2014 16:08:17 +0200 In-Reply-To: <1397051698.88840.YahooMailNeo@web184901.mail.gq1.yahoo.com> References: <1397050965.5416.26.camel@debian.wout-t440s> <1397051698.88840.YahooMailNeo@web184901.mail.gq1.yahoo.com> Organization: Canodus Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.8.5-2+b3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Cc: "freebsd-doc@FreeBSD.org" , Kevin Thompson X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 14:08:20 -0000 On Wed, 2014-04-09 at 06:54 -0700, Dru Lavigne wrote: > > >Having the -i and -F options is something I would like to see too, or at > >least offered in a . > > > > Does changing that line to the following make sense? If so, I'll commit it. > > # mergemaster -piF No, the second mergemaster command should not include the -p option. # mergemaster -p (make installworld) # mergemaster -iF > > Cheers, > > Dru > From owner-freebsd-doc@FreeBSD.ORG Wed Apr 9 14:20:30 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7BDBA68E for ; Wed, 9 Apr 2014 14:20:30 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id 531F01D63 for ; Wed, 9 Apr 2014 14:20:29 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allan.jude@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id C24A76AC91 for ; Wed, 9 Apr 2014 14:20:22 +0000 (UTC) Message-ID: <5345572A.9040504@allanjude.com> Date: Wed, 09 Apr 2014 10:20:26 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Mistake in handbook 23.6 Rebuilding world References: <1397050965.5416.26.camel@debian.wout-t440s> <1397051698.88840.YahooMailNeo@web184901.mail.gq1.yahoo.com> In-Reply-To: <1397051698.88840.YahooMailNeo@web184901.mail.gq1.yahoo.com> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nopSBftQNVanbTUDo4fKIdGjijq0o6jti" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 14:20:30 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --nopSBftQNVanbTUDo4fKIdGjijq0o6jti Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-04-09 09:54, Dru Lavigne wrote: >=20 >=20 >> Having the -i and -F options is something I would like to see too, or = at >> least offered in a . >=20 >=20 >=20 > Does changing that line to the following make sense? If so, I'll commit= it. >=20 > # mergemaster -piF >=20 > Cheers, >=20 > Dru >=20 > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" >=20 The -p is for 'pre-installworld', it does only the things to make the installworld not fail (like adding the users that some files might be owned by, for example when the _audit user was introduced) --=20 Allan Jude --nopSBftQNVanbTUDo4fKIdGjijq0o6jti Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTRVctAAoJEJrBFpNRJZKf2JcQALi43gkuNlIICHJPCJ8yODwh rA9a03ys79yBc0xnoqMpH+PjfyLRf7cpGHotiprhSKIKFeKr2nEzL/ixJMgz5aKt ikDfXBC0PlV48j/zCsbeePcFCT+Ip1xqztzXR5305g7HOCM3+XJRO/sym4GKeTeH xCFmLcFjO5K2pruTkNxZme/L5Vt0HfCqiXjpA4aLd7tfyBk9KSmreKtp+Ei77nn5 r4CisLhUovDlqL7SRO1D7giVM4g1FgwYRVK0lHc9rPOQ3I1rKWCmAA2QZhIjBnxJ F8GzZyHskuQuJZtCzEt0MOwZaHLmjOn17mNblSVuUfh1wxuMjK+g5FhxnwYEKrwM xxoEoe811oROUXjNTx7TYfGNIMZSTWGq9suUFAzGF0fynweJTK0nyXtl4eUcD38Z IrCgfgAYowY0p2zbiGyTv9hnJywGjZGHRCtDItxPjH4mpBZQU/xF7gP/WcJRyqsS bP9mpufMNcSCqTr3tIglS1uGieElj4YnjrI9jPy64WRaV2tNuxmdsaxSCJFVyPBn q0yDr/rNW8NOjUtThAzrlrOcNstpaHY9OimDkbJ+B96OlJVEzsP/3v+yRHcxvyXr sw3oeL/FMbI9oIPZkb0gjXdI9MmtD4bwF1sHaJCs4hFoBzVnMUctx8N+66Xf3b5P jCbrnRO44drCXd9qf+8B =8K+C -----END PGP SIGNATURE----- --nopSBftQNVanbTUDo4fKIdGjijq0o6jti-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 9 14:35:54 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 74CCEBD4 for ; Wed, 9 Apr 2014 14:35:54 +0000 (UTC) Received: from nm35.bullet.mail.ne1.yahoo.com (nm35.bullet.mail.ne1.yahoo.com [98.138.229.28]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8D2A1FE6 for ; Wed, 9 Apr 2014 14:35:53 +0000 (UTC) Received: from [127.0.0.1] by nm35.bullet.mail.ne1.yahoo.com with NNFMP; 09 Apr 2014 14:35:47 -0000 Received: from [98.138.100.102] by nm35.bullet.mail.ne1.yahoo.com with NNFMP; 09 Apr 2014 14:32:53 -0000 Received: from [216.39.60.167] by tm101.bullet.mail.ne1.yahoo.com with NNFMP; 09 Apr 2014 14:32:53 -0000 Received: from [216.39.60.248] by tm3.access.bullet.mail.gq1.yahoo.com with NNFMP; 09 Apr 2014 14:32:53 -0000 Received: from [127.0.0.1] by omp1019.access.mail.gq1.yahoo.com with NNFMP; 09 Apr 2014 14:32:53 -0000 X-Yahoo-Newman-Property: ymail-4 X-Yahoo-Newman-Id: 64168.5782.bm@omp1019.access.mail.gq1.yahoo.com Received: (qmail 40721 invoked by uid 60001); 9 Apr 2014 14:32:53 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=att.net; s=s1024; t=1397053972; bh=z4g2k22y1/9wEPVSZVQBH8hYZqWxLKzDNquzMdvAbmQ=; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=TwsNuveQPINJS9QKX4TSMHKPbK9Q8vpwdXf9PL3vgQz2mVmgep/LLGdqp/YdbJtg+3XNCxy9JXRE8n6kbgOE08zZDjJXhEHCn2oTkXhb9Jp9r+gSr/w0iBCN0WNInk5klJZs/zc/bcD02dw6BKjayXUfvWOU9uAIkxjGCsfBKwk= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=att.net; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=YuKJCrWf2SIH7qhNyhI0OsnUfZLIL7Jwz6IgzTCizHWlSrNbRtML92G2osN8a2PC2nz8KLny4+0SbozLqYPy7U8Ng9rzn9359NrIj80cgYTC/esODeH2Xw6zR5YRBTtdkr1BuCX46JWANrZvvc3rNZromm00tAnK+XT2JlW85NY=; X-YMail-OSG: .JyxHX0VM1lP9K7i1Dha3lkDU0EIn10g9.mMKJ.Qd57vdzh Wz629Rm9yYrJSrQurIXJobrO6zS7q4jTEwJ8GX_PB_RgivCBNPQgptWhvF.h cYLWDDJMZLQc4uvsEqKXyaQSO0RcYnQD.nGXYTHBh.FaBunkSuc7xpp7IKNh Q3_htRIVurjiKJPZkcWa98DxuFzl54aQeEPdCVXgjOsV1pSOCy94lZxkGTtI TR9ReeNE5zotj8ktgErdyJP0LHr_ILUAAkmmZrTp4nSWTP1y7IgUpmKtnYQU _4Tuw7Tnq0AjO7GeCvTvNannhcoMxTEJu8vhiM_drzPB1aeaRuaZBNmrWP7M UBy9pL90.KidhCWcwwTusL7yTGzj0GfS4UyD5ICy7gDtAJvtXrasrbD3gK2n RZG8eUCt8afYbXvsUrwkSEEk..vepxFA0F0Kioka4wpQHFwHBNbZPeFKRva9 l9I4J4IdSOj3j3MwlAqlm3SxBPiK9x9aVnN9XOw3k6URSmRKABG61vCpptVR tUlEb3Zha.NG4Qc6v7UkRtPdlf9oznNrwrp8wu7.E_Q-- Received: from [99.98.83.69] by web184905.mail.gq1.yahoo.com via HTTP; Wed, 09 Apr 2014 07:32:52 PDT X-Rocket-MIMEInfo: 002.001, Cgo.PiA.SGF2aW5nIHRoZSAtaSBhbmQgLUYgb3B0aW9ucyBpcyBzb21ldGhpbmcgSSB3b3VsZCBsaWtlIHRvIHNlZSB0b28sIG9yIGF0Cj4.ID5sZWFzdCBvZmZlcmVkIGluIGEgPHRpcD4uCj4.IAo.PiAKPj4gCj4.IERvZXMgY2hhbmdpbmcgdGhhdCBsaW5lIHRvIHRoZSBmb2xsb3dpbmcgbWFrZSBzZW5zZT8gSWYgc28sIEknbGwgY29tbWl0IGl0Lgo.PiAKPj4gIyBtZXJnZW1hc3RlciAtcGlGCj4KPk5vLCB0aGUgc2Vjb25kIG1lcmdlbWFzdGVyIGNvbW1hbmQgc2hvdWxkIG5vdCBpbmNsdWRlIHRoZSAtcCABMAEBAQE- X-Mailer: YahooMailWebService/0.8.182.648 References: <1397050965.5416.26.camel@debian.wout-t440s> <1397051698.88840.YahooMailNeo@web184901.mail.gq1.yahoo.com> <1397052497.5416.30.camel@debian.wout-t440s> Message-ID: <1397053972.13846.YahooMailNeo@web184905.mail.gq1.yahoo.com> Date: Wed, 9 Apr 2014 07:32:52 -0700 (PDT) From: Dru Lavigne Subject: Re: Mistake in handbook 23.6 Rebuilding world To: =?iso-8859-1?Q?Wout_Decr=E9?= In-Reply-To: <1397052497.5416.30.camel@debian.wout-t440s> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: "freebsd-doc@FreeBSD.org" , Kevin Thompson X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Dru Lavigne List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 14:35:54 -0000 =0A=0A>> >Having the -i and -F options is something I would like to see too= , or at=0A>> >least offered in a .=0A>> =0A>> =0A>> =0A>> Does changin= g that line to the following make sense? If so, I'll commit it.=0A>> =0A>> = # mergemaster -piF=0A>=0A>No, the second mergemaster command should not inc= lude the -p option.=0A>=0A># mergemaster -p=0A>=0A>(make installworld)=0A>= =0A># mergemaster -iF=0A=0A=0A=0AAdded in r44504. Thanks for the suggestion= !=0A=0ACheers,=0A=0ADru=0A From owner-freebsd-doc@FreeBSD.ORG Thu Apr 10 08:33:07 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 19599F1D for ; Thu, 10 Apr 2014 08:33:07 +0000 (UTC) Received: from eu1sys200aog102.obsmtp.com (eu1sys200aog102.obsmtp.com [207.126.144.113]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FB521431 for ; Thu, 10 Apr 2014 08:33:04 +0000 (UTC) Received: from mail-wi0-f172.google.com ([209.85.212.172]) (using TLSv1) by eu1sys200aob102.postini.com ([207.126.147.11]) with SMTP ID DSNKU0ZXFtuRe0e2qBeuleB+3+ZhuUDcX8G0@postini.com; Thu, 10 Apr 2014 08:33:05 UTC Received: by mail-wi0-f172.google.com with SMTP id hi2so10243311wib.11 for ; Thu, 10 Apr 2014 01:32:13 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:message-id:to:subject:reply-to; bh=6bWSYHg0aacehwA1BJb5gTtWIoZpF3jHdtb/5m8TPuk=; b=ETyOgMgiSVoURPycN5DzVPTdWaZHwLdSktb2div2BKILBtn9XNEI6aSgKGW92555V6 SOhh/b/mo47sCPPFmNIwwrwT7KvnXv4QNtwNJ5DWsPnBIzXWJB1hiRlDcM5nUJ6FQ3Qh 6+W1wwNoPKaHlGBa6g0MlLTFV60jWn0dzXsJ4BYStfwWVWfopNrbARvP6ligT+xN9cGg LZzf6W4MHLG32GhiaeEhiAEIoQnluclDVOb2CjYP6uy+L1WQJ6+5UngH6h6KEoLgl3Ou CUxU0kor/cYl5r9/A/YIUTqzgg9D3rav8HqJRQ2Rz57Q+nisP2Nxmg6D+TjZO3HA8Ufm KVkQ== X-Gm-Message-State: ALoCoQmt/yTS12O992aFd4d67tC4GQ+R6+WLLqUkNO/mTZvsTLkv5BYcTPlRxCWnGX7p/T3JIcXVn0QutPf5GVv4zBQcP6E2RcAcHpiTCM5tqqLEl0JqpbKLNevEd60o0cOVIislFKMV X-Received: by 10.194.24.74 with SMTP id s10mr13747485wjf.43.1397118733138; Thu, 10 Apr 2014 01:32:13 -0700 (PDT) X-Received: by 10.194.24.74 with SMTP id s10mr13747478wjf.43.1397118733052; Thu, 10 Apr 2014 01:32:13 -0700 (PDT) Received: from mech-cluster241.men.bris.ac.uk (mech-cluster241.men.bris.ac.uk. [137.222.187.241]) by mx.google.com with ESMTPSA id gz1sm9548683wib.14.2014.04.10.01.32.12 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 10 Apr 2014 01:32:12 -0700 (PDT) Sender: Anton Shterenlikht Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.8/8.14.6) with ESMTP id s3A8WBJA067371 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Thu, 10 Apr 2014 09:32:11 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.8/8.14.6/Submit) id s3A8WAsv067370 for freebsd-doc@freebsd.org; Thu, 10 Apr 2014 09:32:10 +0100 (BST) (envelope-from mexas) Date: Thu, 10 Apr 2014 09:32:10 +0100 (BST) From: Anton Shterenlikht Message-Id: <201404100832.s3A8WAsv067370@mech-cluster241.men.bris.ac.uk> To: freebsd-doc@freebsd.org Subject: authenticated sendmail, sec. 27.9, mention mail/sendmail-sasl alternative? X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: mexas@bris.ac.uk List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Apr 2014 08:33:07 -0000 I've been using the recipe mentioned in http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/SMTP-Auth.html for a number of years. Just recently, following the openssl bug, I've heard that the alternative to the handbook route is port mail/sendmail-sasl. I haven't tried that port, but it seems the differences are potentially only due to the different versions of sendmail and openssl in base and in ports. I wonder if mail/sendmail-sasl should be mentioned in the same section as an alternative? Or perhaps there is a reason why mail/sendmail-sasl is not recommended in the handbook? Anton From owner-freebsd-doc@FreeBSD.ORG Thu Apr 10 19:05:38 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED5BDD93 for ; Thu, 10 Apr 2014 19:05:38 +0000 (UTC) Received: from mail-pd0-x22a.google.com (mail-pd0-x22a.google.com [IPv6:2607:f8b0:400e:c02::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C6BD217C9 for ; Thu, 10 Apr 2014 19:05:38 +0000 (UTC) Received: by mail-pd0-f170.google.com with SMTP id v10so4266485pde.29 for ; Thu, 10 Apr 2014 12:05:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:from:to:reply-to:content-type :content-transfer-encoding:subject:message-id; bh=ASxSXcQB8lcq+qQRdN3SdwQUGBL7pjtyY6UffCdrCgY=; b=Jt6wZsTWIUS4g0qWNGsxgxC9ZkKffhfw0YsMUHJelphLi30EC0hWl9tpcrfYR38x4z 0hReeQuw8N88sQ0xopS+QuwGtxEukCRBO+COWAYFkGEQf2MoKhKA+1eQbTaL9wJVVivT e5LzEHoZCY0rLbUcSqwBEJljGwHoIoD0g2lATXe7qD0LnXr1yHEFyb8xY1vBk1cI8otO nWrXcnE1TEdy1cbLXd+RH9F58CQGEDhPQP5gWDZ+unCtpYVskB9SNoo95zyoEE3vo4VH pWCNOKcd7P+p2vjdOMUyObqhBTVFrPZHjm8eXji2e+iJW4PFFSFvszSod/hxVeMNAMWN zvnA== X-Received: by 10.68.237.99 with SMTP id vb3mr21752563pbc.76.1397156738408; Thu, 10 Apr 2014 12:05:38 -0700 (PDT) Received: from towersql64.GCS.int ([64.60.242.75]) by mx.google.com with ESMTPSA id f5sm24406925pat.11.2014.04.10.12.05.34 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 10 Apr 2014 12:05:35 -0700 (PDT) MIME-Version: 1.0 Date: Thu, 10 Apr 2014 12:05:34 -0700 X-Priority: 3 (Normal) From: marydch@gmail.com To: freebsd-doc@freebsd.org Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Subject: Car Auto Wrap Message-ID: X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Irwinfng@gmail.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Apr 2014 19:05:39 -0000 Hello, We are currently seeking to employ individual=E2=80=99s world wide. How = would you like to make money by simply driving your car,lorry, or a truck =0D advertising for Diet Dr Pepper. How it works? Here=E2=80=99s the basic premise of the "paid to drive" concept: Diet Dr= Pepper =0D seeks people -- regular citizens,professional drivers to go about their = =0D normal routine as they usually do, only with a big advert for "Diet Dr =0D Pepper Drink" plastered on your car, Trucks or lorry.The ads are typical= ly =0D vinyl decals, also known as "Auto Wraps,"that almost seem to be painted = on =0D the vehicle, and which will cover any portion of your car's exterior =0D surface. What does the company get out of this type of ad strategy? Lots of expos= ure =0D and awareness. The auto wraps tend to be colorful,eye-catching and attra= ct =0D lots of attention. Plus, it's a form of advertising with a captive =0D audience,meaning people who are stuck in traffic can't avoid seeing the = =0D wrapped car alongside them.This program will last for 3 months and the =0D minimum you can participate is 1 month. You will be compensated with $400 per week which is essentially a "Renta= l" =0D payment for letting our company use the space no fee is required from yo= u, =0D Diet Dr Pepper shall provide experts that would handle the advert placin= g =0D on your car. You will receive an up front payment of $400 inform of chec= k =0D via courier service for accepting to carry this advert on your car lorry= or =0D Truck. It is very easy and simple , no application fees required contact email = =0D along with the following if you are interested in these offer. Full Name: Physical Address: City: State: Zip code: Age: Make of car/ year: Exterior Color of Car: Telephone numbers: Email Address: Do you have a driver's license? YES/NO? We will contact you immediately we receive this information. Kind Regards! =C2=AEDiet Dr Pepper Advertisement. All rights reserved=E2=84=A2. DietDrPepper@usa.com From owner-freebsd-doc@FreeBSD.ORG Fri Apr 11 16:10:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A80A87DD for ; Fri, 11 Apr 2014 16:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 79CDD1C92 for ; Fri, 11 Apr 2014 16:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3BGA1uq024060 for ; Fri, 11 Apr 2014 16:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3BGA1JJ024059; Fri, 11 Apr 2014 16:10:01 GMT (envelope-from gnats) Date: Fri, 11 Apr 2014 16:10:01 GMT Message-Id: <201404111610.s3BGA1JJ024059@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: docs/187321: commit references a PR X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Apr 2014 16:10:01 -0000 The following reply was made to PR docs/187321; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/187321: commit references a PR Date: Fri, 11 Apr 2014 16:07:37 +0000 (UTC) Author: wblock Date: Fri Apr 11 16:07:32 2014 New Revision: 44533 URL: http://svnweb.freebsd.org/changeset/doc/44533 Log: Clarify usage of GELI rc.d script. PR: docs/187321 Reviewed by: Allan Jude and mat@ on IRC Modified: head/en_US.ISO8859-1/books/handbook/disks/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/disks/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/disks/chapter.xml Fri Apr 11 15:50:19 2014 (r44532) +++ head/en_US.ISO8859-1/books/handbook/disks/chapter.xml Fri Apr 11 16:07:32 2014 (r44533) @@ -3126,8 +3126,8 @@ Filesystem Size Used Avail Capaci geli_da2_flags="-p -k /root/da2.key" This configures /dev/da2 as a - geli provider of which the master key - file is located in /root/da2.key. + geli provider with a master key + file of /root/da2.key. geli will not use a passphrase when attaching to the provider if was given during the @@ -3135,6 +3135,26 @@ geli_da2_flags="-p -k /root/da2.key"geli provider from the kernel before the system shuts down. + + During the startup process, scripts prompt for the + passphrase before attaching the GELI + provider. Other kernel messages might be shown before and + after the password prompt. If the boot process seems to + stall, look carefully for the password prompt among the + other messages. + + When the correct password is given, the provider is + attached. A consumer, like a file system, is then mounted + on the provider, typically by an entry in + /etc/fstab (see + &man.fstab.5;). + + Later in the startup process, &os; configures + GELI providers to automatically detach. + GELI providers without any consumers + will detach at that time. + + More information about configuring rc.d is provided in the rc.d section of the _______________________________________________ svn-doc-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-doc-all To unsubscribe, send any mail to "svn-doc-all-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Fri Apr 11 16:11:56 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08DA9866; Fri, 11 Apr 2014 16:11:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 D1AF11D23; Fri, 11 Apr 2014 16:11:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3BGBtuV026698; Fri, 11 Apr 2014 16:11:55 GMT (envelope-from wblock@freefall.freebsd.org) Received: (from wblock@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3BGBsXx026697; Fri, 11 Apr 2014 16:11:54 GMT (envelope-from wblock) Date: Fri, 11 Apr 2014 16:11:54 GMT Message-Id: <201404111611.s3BGBsXx026697@freefall.freebsd.org> To: jack-benny@cyberinfo.se, wblock@FreeBSD.org, freebsd-doc@FreeBSD.org, wblock@FreeBSD.org From: wblock@FreeBSD.org Subject: Re: docs/187321: [handbook] [patch] Clarification needed on using geli rc.d script X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Apr 2014 16:11:56 -0000 Synopsis: [handbook] [patch] Clarification needed on using geli rc.d script State-Changed-From-To: open->closed State-Changed-By: wblock State-Changed-When: Fri Apr 11 16:11:12 UTC 2014 State-Changed-Why: Take. Responsible-Changed-From-To: freebsd-doc->wblock Responsible-Changed-By: wblock Responsible-Changed-When: Fri Apr 11 16:11:12 UTC 2014 Responsible-Changed-Why: Reorganized version of patch committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=187321 From owner-freebsd-doc@FreeBSD.ORG Fri Apr 11 16:42:22 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3BD7C8CD; Fri, 11 Apr 2014 16:42:22 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 11300121E; Fri, 11 Apr 2014 16:42:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3BGgLio037067; Fri, 11 Apr 2014 16:42:21 GMT (envelope-from wblock@freefall.freebsd.org) Received: (from wblock@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3BGgLBr037066; Fri, 11 Apr 2014 16:42:21 GMT (envelope-from wblock) Date: Fri, 11 Apr 2014 16:42:21 GMT Message-Id: <201404111642.s3BGgLBr037066@freefall.freebsd.org> To: mbsd@pacbell.net, wblock@FreeBSD.org, freebsd-doc@FreeBSD.org From: wblock@FreeBSD.org Subject: Re: docs/78480: Networked printer setup unnecessarily complex in handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Apr 2014 16:42:22 -0000 Synopsis: Networked printer setup unnecessarily complex in handbook State-Changed-From-To: open->closed State-Changed-By: wblock State-Changed-When: Fri Apr 11 16:40:16 UTC 2014 State-Changed-Why: The new (2014-04-11) Handbook chapter on printing shows port 9100 printing. http://www.freebsd.org/cgi/query-pr.cgi?pr=78480 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 12 15:40:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A088B99 for ; Sat, 12 Apr 2014 15:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 3700812F7 for ; Sat, 12 Apr 2014 15:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3CFe2xP002983 for ; Sat, 12 Apr 2014 15:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3CFe1nB002982; Sat, 12 Apr 2014 15:40:01 GMT (envelope-from gnats) Resent-Date: Sat, 12 Apr 2014 15:40:01 GMT Resent-Message-Id: <201404121540.s3CFe1nB002982@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Idwer Vollering Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 04602A43 for ; Sat, 12 Apr 2014 15:34:09 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CAEF012CE for ; Sat, 12 Apr 2014 15:34:08 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3CFY8NS033276 for ; Sat, 12 Apr 2014 15:34:08 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3CFY8f5033267; Sat, 12 Apr 2014 15:34:08 GMT (envelope-from nobody) Message-Id: <201404121534.s3CFY8f5033267@cgiserv.freebsd.org> Date: Sat, 12 Apr 2014 15:34:08 GMT From: Idwer Vollering To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/188519: xdev is not listed as a 'user-driven target' X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Apr 2014 15:40:02 -0000 >Number: 188519 >Category: docs >Synopsis: xdev is not listed as a 'user-driven target' >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 12 15:40:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Idwer Vollering >Release: 10.0-RELEASE-p1 #0 >Organization: >Environment: >Description: xdev is not listed as a 'user-driven target' in /usr/src/Makefile >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Mon Apr 14 02:10:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7692E4CA for ; Mon, 14 Apr 2014 02:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 3947F1069 for ; Mon, 14 Apr 2014 02:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3E2A1Nv024311 for ; Mon, 14 Apr 2014 02:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3E2A1Yl024310; Mon, 14 Apr 2014 02:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 14 Apr 2014 02:10:01 GMT Resent-Message-Id: <201404140210.s3E2A1Yl024310@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Hall Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C9A24AA for ; Mon, 14 Apr 2014 02:06:38 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0897F105B for ; Mon, 14 Apr 2014 02:06:38 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3E26bGe036978 for ; Mon, 14 Apr 2014 02:06:37 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3E26boL036977; Mon, 14 Apr 2014 02:06:37 GMT (envelope-from nobody) Message-Id: <201404140206.s3E26boL036977@cgiserv.freebsd.org> Date: Mon, 14 Apr 2014 02:06:37 GMT From: Michael Hall To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/188582: fstab man page has incorrect option "keylength" listed for .eli devices X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Apr 2014 02:10:01 -0000 >Number: 188582 >Category: docs >Synopsis: fstab man page has incorrect option "keylength" listed for .eli devices >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 14 02:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Michael Hall >Release: 10.0 >Organization: >Environment: FreeBSD Test 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When configuring an encrypted swap partition, I found an error in the fstab man page documentation. Search for "eli" in the man page. It will go to the section where "fs_type" is being described. In the middle of that paragraph, it says: "Swap entries on .eli devices will cause automatic creation of encrypted devices. The ``ealgo'', ``aalgo'', ``keylength'', and ``sectorsize'' options may be passed to control those geli(8) parameters." The ``keylength'' paramater is an invalid option which did work when I used it in the fstab file. I found the SVN commit (r252310) where the key length parameter was documented. It should be ``keylen''. Using this spelling of the parameter, I was able to successfully set the key length for the encrypted swap partition. >How-To-Repeat: >Fix: Update the documentation to spell the key length option as "keylen". >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Mon Apr 14 07:00:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4DFBFF90 for ; Mon, 14 Apr 2014 07:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 3B58C197C for ; Mon, 14 Apr 2014 07:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3E701xF017251 for ; Mon, 14 Apr 2014 07:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3E701Ua017250; Mon, 14 Apr 2014 07:00:01 GMT (envelope-from gnats) Date: Mon, 14 Apr 2014 07:00:01 GMT Message-Id: <201404140700.s3E701Ua017250@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: docs/188582: commit references a PR X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Apr 2014 07:00:01 -0000 The following reply was made to PR docs/188582; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/188582: commit references a PR Date: Mon, 14 Apr 2014 06:59:53 +0000 (UTC) Author: brueffer Date: Mon Apr 14 06:59:49 2014 New Revision: 264453 URL: http://svnweb.freebsd.org/changeset/base/264453 Log: Correct geli parameter. PR: 188582 Submitted by: Michael Hall MFC after: 3 days Modified: head/share/man/man5/fstab.5 Modified: head/share/man/man5/fstab.5 ============================================================================== --- head/share/man/man5/fstab.5 Mon Apr 14 06:34:08 2014 (r264452) +++ head/share/man/man5/fstab.5 Mon Apr 14 06:59:49 2014 (r264453) @@ -28,7 +28,7 @@ .\" @(#)fstab.5 8.1 (Berkeley) 6/5/93 .\" $FreeBSD$ .\" -.Dd September 10, 2013 +.Dd April 14, 2014 .Dt FSTAB 5 .Os .Sh NAME @@ -241,7 +241,7 @@ devices will cause automatic creation of The .Dq ealgo , .Dq aalgo , -.Dq keylength , +.Dq keylen , and .Dq sectorsize options may be passed to control those _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Mon Apr 14 07:00:45 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08AFDFDB; Mon, 14 Apr 2014 07:00:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 D2F8219FC; Mon, 14 Apr 2014 07:00:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3E70i06019851; Mon, 14 Apr 2014 07:00:44 GMT (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3E70isv019850; Mon, 14 Apr 2014 09:00:44 +0200 (CEST) (envelope-from brueffer) Date: Mon, 14 Apr 2014 09:00:44 +0200 (CEST) Message-Id: <201404140700.s3E70isv019850@freefall.freebsd.org> To: mhallpub@mailc.net, brueffer@FreeBSD.org, freebsd-doc@FreeBSD.org, brueffer@FreeBSD.org From: brueffer@FreeBSD.org Subject: Re: docs/188582: fstab man page has incorrect option "keylength" listed for .eli devices X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Apr 2014 07:00:45 -0000 Synopsis: fstab man page has incorrect option "keylength" listed for .eli devices State-Changed-From-To: open->patched State-Changed-By: brueffer State-Changed-When: Mon Apr 14 09:00:03 CEST 2014 State-Changed-Why: Fixed in HEAD, thanks! Responsible-Changed-From-To: freebsd-doc->brueffer Responsible-Changed-By: brueffer Responsible-Changed-When: Mon Apr 14 09:00:03 CEST 2014 Responsible-Changed-Why: Merge reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=188582 From owner-freebsd-doc@FreeBSD.ORG Mon Apr 14 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37B5CCA4 for ; Mon, 14 Apr 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 245FC15E1 for ; Mon, 14 Apr 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3EB64Lr024972 for ; Mon, 14 Apr 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3EB63SB024970 for freebsd-doc@FreeBSD.org; Mon, 14 Apr 2014 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 14 Apr 2014 11:06:03 GMT Message-Id: <201404141106.s3EB63SB024970@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Apr 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/188519 doc xdev is not listed as a 'user-driven target' o docs/188214 doc Manpage for fsck(8) doesn't say what happens when no - o docs/188043 doc [patch] man page for md5/sha1/sha256/sha412/rmd-160 cl o docs/187644 doc ifconfig man page address_family paragraph needs clari o docs/187465 doc mention patchlevels in explaining security advisories o docs/187351 doc handbook section on ports does not mention pkg search o docs/187142 doc [handbook] [patch] The Handbook (chapter 15.4) does no o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc Add an ipfilter rc.conf option in handbook for IPv6 o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) 256 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Apr 14 16:16:52 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E56E282A; Mon, 14 Apr 2014 16:16:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 B9EBF1A68; Mon, 14 Apr 2014 16:16:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3EGGqrY032826; Mon, 14 Apr 2014 16:16:52 GMT (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3EGGq3B032824; Mon, 14 Apr 2014 18:16:52 +0200 (CEST) (envelope-from brueffer) Date: Mon, 14 Apr 2014 18:16:52 +0200 (CEST) Message-Id: <201404141616.s3EGGq3B032824@freefall.freebsd.org> To: vidwer@gmail.com, brueffer@FreeBSD.org, freebsd-doc@FreeBSD.org, brueffer@FreeBSD.org From: brueffer@FreeBSD.org Subject: Re: docs/188519: xdev is not listed as a 'user-driven target' X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Apr 2014 16:16:53 -0000 Synopsis: xdev is not listed as a 'user-driven target' State-Changed-From-To: open->patched State-Changed-By: brueffer State-Changed-When: Mon Apr 14 18:15:35 CEST 2014 State-Changed-Why: Fixed in HEAD with r264460, I'll merge this to the stable branches in a few days. Thanks! Responsible-Changed-From-To: freebsd-doc->brueffer Responsible-Changed-By: brueffer Responsible-Changed-When: Mon Apr 14 18:15:35 CEST 2014 Responsible-Changed-Why: Merge reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=188519 From owner-freebsd-doc@FreeBSD.ORG Tue Apr 15 09:58:41 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51557AFF for ; Tue, 15 Apr 2014 09:58:41 +0000 (UTC) Received: from walkerdesigns.hosting24.com.au (walkerdesigns.hosting24.com.au [111.67.12.204]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA9FD1503 for ; Tue, 15 Apr 2014 09:58:40 +0000 (UTC) Received: from themewsm by walkerdesigns.hosting24.com.au with local (Exim 4.82) (envelope-from ) id 1Wa08S-0001X9-JB for doc@freebsd.org; Tue, 15 Apr 2014 19:58:36 +1000 Date: Tue, 15 Apr 2014 19:58:36 +1000 To: doc@freebsd.org From: =?UTF-8?Q?Google_Apps?= Subject: =?UTF-8?Q?New_Document?= Message-ID: X-Priority: 1 X-Mailer: PHPMailer (phpmailer.sourceforge.net) [version ] X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - walkerdesigns.hosting24.com.au X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [596 593] / [47 12] X-AntiAbuse: Sender Address Domain - walkerdesigns.hosting24.com.au X-Get-Message-Sender-Via: walkerdesigns.hosting24.com.au: authenticated_id: themewsm/only user confirmed/virtual account not confirmed MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 09:58:41 -0000 Citi Hello ! Introducing the new GOOGLE DRIVE APP !! This is the Latest version of google driver to help you create, manage, keep and share your documents. Please click on the link below to download the latest google driver [1]http://google.com/downloadnewdriver/new-client Note: Please note that this driver helps you manage/merge all your contacts as well as emails in one place. And you may be required to enter your username and password to help ensure your google driver is being downloaded by you and not someone else. Please be informed, that this service is NOT limited to google subscribers only, it's for all email users. On event that this email hits your junk folder, please. move it to your inbox by clicking the ''not spam'' button in your junk folder, as this will enable you click the link included in this email. Alternatively, you may include apps@google.com in your email contacts to ensure you get all future communications from google in your inbox folder Thank you for your time. Sincerely: Google email services [2][small?v=mpbl-1&px=-1] To see all of the services available to you, such as: google translate, e-books, google wallet, shopping, google blogger, google finance and many more, please visit [3]https://http://www.google.com/intl/en/about/products/. To reply to this Alert, please send us a secure message from [4]www.gmail.com. References Visible links 1. http://drycleanusafl.com/LL/index.htm 2. https://gmail.com/ 3. https://http://www.google.com/intl/en/about/products/ 4. https://www.gmail.com/ob?gsessionid=DEoeJd8Pi4W6p8KgibDAwQ Hidden links: 5. http://google.com/downloadnewdriver/new-client From owner-freebsd-doc@FreeBSD.ORG Tue Apr 15 10:23:12 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 229E7FA9 for ; Tue, 15 Apr 2014 10:23:12 +0000 (UTC) Received: from walkerdesigns.hosting24.com.au (walkerdesigns.hosting24.com.au [111.67.12.204]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 981CE176E for ; Tue, 15 Apr 2014 10:23:11 +0000 (UTC) Received: from themewsm by walkerdesigns.hosting24.com.au with local (Exim 4.82) (envelope-from ) id 1Wa0WD-0008Hj-0b for doc@freebsd.org; Tue, 15 Apr 2014 20:23:09 +1000 Date: Tue, 15 Apr 2014 20:23:09 +1000 To: doc@freebsd.org From: =?UTF-8?Q?Google_Apps?= Subject: =?UTF-8?Q?New_Document?= Message-ID: X-Priority: 1 X-Mailer: PHPMailer (phpmailer.sourceforge.net) [version ] X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - walkerdesigns.hosting24.com.au X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [596 593] / [47 12] X-AntiAbuse: Sender Address Domain - walkerdesigns.hosting24.com.au X-Get-Message-Sender-Via: walkerdesigns.hosting24.com.au: authenticated_id: themewsm/only user confirmed/virtual account not confirmed MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 10:23:12 -0000 Citi Hello ! Introducing the new GOOGLE DRIVE APP !! This is the Latest version of google driver to help you create, manage, keep and share your documents. Please click on the link below to download the latest google driver [1]http://google.com/downloadnewdriver/new-client Note: Please note that this driver helps you manage/merge all your contacts as well as emails in one place. And you may be required to enter your username and password to help ensure your google driver is being downloaded by you and not someone else. Please be informed, that this service is NOT limited to google subscribers only, it's for all email users. On event that this email hits your junk folder, please. move it to your inbox by clicking the ''not spam'' button in your junk folder, as this will enable you click the link included in this email. Alternatively, you may include apps@google.com in your email contacts to ensure you get all future communications from google in your inbox folder Thank you for your time. Sincerely: Google email services [2][small?v=mpbl-1&px=-1] To see all of the services available to you, such as: google translate, e-books, google wallet, shopping, google blogger, google finance and many more, please visit [3]https://http://www.google.com/intl/en/about/products/. To reply to this Alert, please send us a secure message from [4]www.gmail.com. References Visible links 1. http://drycleanusafl.com/Ma/index.htm 2. https://gmail.com/ 3. https://http://www.google.com/intl/en/about/products/ 4. https://www.gmail.com/ob?gsessionid=DEoeJd8Pi4W6p8KgibDAwQ Hidden links: 5. http://google.com/downloadnewdriver/new-client From owner-freebsd-doc@FreeBSD.ORG Tue Apr 15 14:20:52 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45410460 for ; Tue, 15 Apr 2014 14:20:52 +0000 (UTC) Received: from mail3.mustanglist.com (mail3.mustanglist.com [50.16.231.103]) by mx1.freebsd.org (Postfix) with ESMTP id 0F93411C4 for ; Tue, 15 Apr 2014 14:20:51 +0000 (UTC) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 5E8B68150 for ; Tue, 15 Apr 2014 09:20:51 -0500 (CDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=ndiconferences.org; h=from :reply-to:list-unsubscribe:mime-version:content-type :content-transfer-encoding:subject:to:message-id:date; s=ml2; bh=oC0+LdRTYHQ52lxtqocLVg+63dI=; b=F7MgnBrLwS3bgPCRKEZmcULiwqSd u+5Iw5llJKw6fvLocOObOJkEBbMeOMkBUfizLr0l73FLS97v1qOcSqQlyI8nI+RT nSvdnhvmVQabTm05NZAwlj42X2MV8MwGgN+WeKCMEReTCGkPgGZVDhKNW2awWCVI uCvaOpAT9pyQjEE= Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 53CC28124 for ; Tue, 15 Apr 2014 09:20:51 -0500 (CDT) From: Kristi LaRose X-Mailer: MustangList [msg-1397571651.3199 en-mail3] X-RPTags: List Type Content X-MLlistcampaign: 583-113005 X-ML-Message-ID: <> X-ML-Message-Source: <> X-ML-Message-Trk: <> Subject: GuideStar Issues Gold to Nonprofit That Supports Nonprofits To: freebsd-doc@freebsd.org Message-Id: <20140415142051.53CC28124@mail3.mustanglist.com> Date: Tue, 15 Apr 2014 09:20:51 -0500 (CDT) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Kristi LaRose List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 14:20:52 -0000 [1]NDI Celebrates GuideStar Award Gifting Digital Resources to Nonprofits - Visit HERE to Download In Celebration, the founders of National Development Institute have opened NDI's Digital Download Library for 24hrs making available a myriad of resources to nonprofit executives. Please visit above to download your complimentary gifts. FOR IMMEDIATE RELEASE (April 15, 2014) 36 months ago, GuideStar USA issued their Exchange Seal of Transparency in Nonprofit Management to National Development Institute (NDI). Today, after three years of successful participation in this program, GuideStar awarded NDI its Gold Level Participant's Seal of Excellence, a leading symbol of transparency and GuideStar's highest decoration(of the 37,863 charitable agencies who participate in GuideStar's Transparency Exchange Program only 2,992 nonprofits including National Development Institute have achieved Gold Status.) Jimmy LaRose, NDI's founder was quoted, "We want to thank NDI's donors, corporations and foundations for their financial investment in the many programs our faculty, staff & administration oversee. Their gifts made possible our service to over 3,450 organizations these past three years. GuideStar's confidence in National Development Institute further inspires our team to do our work in the bright light of openness and accountability. Our many thanks to GuideStar for truly contributing to the advancement of civil society." Charles Anderson, NDI's CEO shared, "We're grateful that GuideStar provides organizations like National Development Institute the opportunity to showcase excellence in nonprofit management. Today's issuance of Gold Level Status places NDI in the top ten percent of charities who participate in the GuideStar program demonstrating to our supporters that NDI is a good steward of their gifts." About GuideStar Exchange The GuideStar Exchange Program has been designed to connect financial supporters with charitable agencies whose programs ensure donors accomplish their philanthropic goals. Millions of leaders rely on GuideStar's research to accurately understand the impact an individual nonprofit has when it realizes its mission. GuideStar USA highlights the different dimensions of management and impact administered by a charity providing donors a wealth of information they can rely on when inspired to share a financial gift. To stop receiving messages from the NDI Master Broadcast Files, click [2]here. To pass a copy of this message on to a friend, click [3]here. This email was sent to you by: National Development Institute 201 East Main Street Lexington SC 29072 [msg-1397571651.3199 en-mail3] References Visible links 1. http://r.mustanglist.com/redir.php/b/TWpNMDU4My0xMTMwMDUtMzIyNTg2NC0zODI1MTE0MA~~/ 2. http://www.mustanglist.com/us.php/msg/1397571651.3199/en/mail3 3. http://www.mustanglist.com/pio.php/msg/1397571651.3199/en/mail3 Hidden links: 4. http://www.mustanglist.com/ From owner-freebsd-doc@FreeBSD.ORG Tue Apr 15 14:58:05 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0743C2E3 for ; Tue, 15 Apr 2014 14:58:05 +0000 (UTC) Received: from mail3.mustanglist.com (mail3.mustanglist.com [50.16.231.103]) by mx1.freebsd.org (Postfix) with ESMTP id CCFED1597 for ; Tue, 15 Apr 2014 14:58:04 +0000 (UTC) Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 6D529812D for ; Tue, 15 Apr 2014 09:58:04 -0500 (CDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=ndiconferences.org; h=from :reply-to:list-unsubscribe:mime-version:content-type :content-transfer-encoding:subject:to:message-id:date; s=ml2; bh=mxphHzfL/lTiNCkiB3avdE4rHQk=; b=hie3sXQoAa5p3uXFWzA+8XZe/pH4 GDIgabG7HKdEpe29Wgl4Pj/FfV6DaGjGBsGRcvtvsRpPzO2h9Z1oBF1EXT/dxBFS FxKYgTrTcQgms1Jdyg8SAORVI/eKLgpwWSN4n4b2z6sNanXHP2Okq55Hfof5pfSn owS+kJ8rjlLwEbA= Received: from mail3.mustanglist.com (localhost [127.0.0.1]) by mail3.mustanglist.com (Postfix) with ESMTP id 618ED812C for ; Tue, 15 Apr 2014 09:58:04 -0500 (CDT) From: Kristi LaRose X-Mailer: MustangList [msg-1397573884.3869 en-mail3] X-RPTags: List Type Content X-MLlistcampaign: 583-113005 X-ML-Message-ID: <> X-ML-Message-Source: <> X-ML-Message-Trk: <> Subject: GuideStar Issues Gold to Nonprofit That Supports Nonprofits To: doc@freebsd.org Message-Id: <20140415145804.618ED812C@mail3.mustanglist.com> Date: Tue, 15 Apr 2014 09:58:04 -0500 (CDT) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Kristi LaRose List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 14:58:05 -0000 [1]NDI Celebrates GuideStar Award Gifting Digital Resources to Nonprofits - Visit HERE to Download In Celebration, the founders of National Development Institute have opened NDI's Digital Download Library for 24hrs making available a myriad of resources to nonprofit executives. Please visit above to download your complimentary gifts. FOR IMMEDIATE RELEASE (April 15, 2014) 36 months ago, GuideStar USA issued their Exchange Seal of Transparency in Nonprofit Management to National Development Institute (NDI). Today, after three years of successful participation in this program, GuideStar awarded NDI its Gold Level Participant's Seal of Excellence, a leading symbol of transparency and GuideStar's highest decoration(of the 37,863 charitable agencies who participate in GuideStar's Transparency Exchange Program only 2,992 nonprofits including National Development Institute have achieved Gold Status.) Jimmy LaRose, NDI's founder was quoted, "We want to thank NDI's donors, corporations and foundations for their financial investment in the many programs our faculty, staff & administration oversee. Their gifts made possible our service to over 3,450 organizations these past three years. GuideStar's confidence in National Development Institute further inspires our team to do our work in the bright light of openness and accountability. Our many thanks to GuideStar for truly contributing to the advancement of civil society." Charles Anderson, NDI's CEO shared, "We're grateful that GuideStar provides organizations like National Development Institute the opportunity to showcase excellence in nonprofit management. Today's issuance of Gold Level Status places NDI in the top ten percent of charities who participate in the GuideStar program demonstrating to our supporters that NDI is a good steward of their gifts." About GuideStar Exchange The GuideStar Exchange Program has been designed to connect financial supporters with charitable agencies whose programs ensure donors accomplish their philanthropic goals. Millions of leaders rely on GuideStar's research to accurately understand the impact an individual nonprofit has when it realizes its mission. GuideStar USA highlights the different dimensions of management and impact administered by a charity providing donors a wealth of information they can rely on when inspired to share a financial gift. To stop receiving messages from the NDI Master Broadcast Files, click [2]here. To pass a copy of this message on to a friend, click [3]here. This email was sent to you by: National Development Institute 201 East Main Street Lexington SC 29072 [msg-1397573884.3869 en-mail3] References Visible links 1. http://r.mustanglist.com/redir.php/b/V0l4TTU4My0xMTMwMDUtMzIyNTg2NC0zODI2ODg3MQ~~/ 2. http://www.mustanglist.com/us.php/msg/1397573884.3869/en/mail3 3. http://www.mustanglist.com/pio.php/msg/1397573884.3869/en/mail3 Hidden links: 4. http://www.mustanglist.com/ From owner-freebsd-doc@FreeBSD.ORG Tue Apr 15 19:42:42 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 817A9B8A for ; Tue, 15 Apr 2014 19:42:42 +0000 (UTC) Received: from mail-vc0-x229.google.com (mail-vc0-x229.google.com [IPv6:2607:f8b0:400c:c03::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 45AAD150C for ; Tue, 15 Apr 2014 19:42:42 +0000 (UTC) Received: by mail-vc0-f169.google.com with SMTP id ik5so10095048vcb.28 for ; Tue, 15 Apr 2014 12:42:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=DunHtWvK2plkj8kC6oQdZ9xguNsEuaMJq8gow/BlEH0=; b=O+d0IsUcOdQ9L8/4/7CRGK0phqVCJZB8ULOknBb8MU8q12Pqpb5M6VdgRnUWuN9+IH EqPw4HqqqfnvRweEoiGxD7Mal1BjSt9X4c4lbFJd887QR7yWOdWOD0yTZ6zJ/WSK+/W4 q/JtP3K68YMqSUHwmK7G3yHvnVeB1+X4IHAxTVqkfKFr8v052wkMvtN4zTLliZhERgWn Nz29JSZd34q1kdJJ1lJBHrxsE5GkkXIwcgjKcMbZpO8ebI8Z9skDxCCNsnZ3COcAjUAN nhHcB8xOMgk8j0cg8htqMaqu4ijDuYtvogNtK0I3KBSLDN/lptBqVj9ESk2jIIv/SUQy VFuw== MIME-Version: 1.0 X-Received: by 10.58.171.229 with SMTP id ax5mr2814805vec.24.1397590961379; Tue, 15 Apr 2014 12:42:41 -0700 (PDT) Received: by 10.58.121.169 with HTTP; Tue, 15 Apr 2014 12:42:41 -0700 (PDT) Date: Tue, 15 Apr 2014 15:12:41 -0430 Message-ID: Subject: Taking FDP look & feel From: Alberto Mijares To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 19:42:42 -0000 Hi, As I've stated before, I'm a non-advanced docbook user. I just write documentation for my small projects. Some time ago I used DB 4.5 (sgml) + Normal Walsh stylesheets and db2pdf to generate formatted output. Now I'm using DB 5.0 (xml) without DTD's + fop for PDF output. Is there an easy way I can take the stylesheets from FDP and give a try with fop, so I can have the FreeBSD Documentation look and feel in my documents? Thank you in advance Best regards, Alberto Mijares From owner-freebsd-doc@FreeBSD.ORG Tue Apr 15 23:36:26 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B957C2C6; Tue, 15 Apr 2014 23:36:26 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 8BECB1AFE; Tue, 15 Apr 2014 23:36:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3FNaQQ4063097; Tue, 15 Apr 2014 23:36:26 GMT (envelope-from dru@freefall.freebsd.org) Received: (from dru@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3FNaQ7A063096; Tue, 15 Apr 2014 23:36:26 GMT (envelope-from dru) Date: Tue, 15 Apr 2014 23:36:26 GMT Message-Id: <201404152336.s3FNaQ7A063096@freefall.freebsd.org> To: dru@FreeBSD.org, freebsd-doc@FreeBSD.org, dru@FreeBSD.org From: dru@FreeBSD.org Subject: Re: docs/150255: dtrace description should mention makeoptions DEBUG=-g X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 23:36:26 -0000 Synopsis: dtrace description should mention makeoptions DEBUG=-g Responsible-Changed-From-To: freebsd-doc->dru Responsible-Changed-By: dru Responsible-Changed-When: Tue Apr 15 23:36:05 UTC 2014 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=150255 From owner-freebsd-doc@FreeBSD.ORG Wed Apr 16 09:17:44 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 12C51D89 for ; Wed, 16 Apr 2014 09:17:44 +0000 (UTC) Received: from Mta27.sjc.wufoo.com (mta27.sjc.wufoo.com [75.98.93.177]) by mx1.freebsd.org (Postfix) with ESMTP id ED76212B3 for ; Wed, 16 Apr 2014 09:17:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; d=wufoo.com; s=s1024; c=simple/simple; q=dns/txt; i=@wufoo.com; t=1397638604; h=From:Subject:Date:To:MIME-Version:Content-Type; bh=lA9pYZYv4wARWBubGtvR8qjihmI=; b=cQX8s94hkV18eLCz6L8HBeuC2a8DIIXz89gbontujJ4K0kxuNJBlhjrsum1npKAr eUb3cgofuuEJm6tbxXwf/KYvrKy/zUOkpTZVsHNbkjLmakagT5D3pUh6LsDXDu8W Uu8vk/T8Ykc/UQC0wKR8x6tMDY6NWmDx5mLY0CZM1p4=; X-MSFBL: ZG9jQGZyZWVic2Qub3JnQCNtbW92ZUBkZWZhdWx0QA== Received: from [10.10.23.26] ([10.10.23.26:53836] helo=sjc-wfweb03.endor.lan) by sjc-mta-02 (envelope-from ) (ecelerity 3.5.2.36399 r(ssh://hg@repos.int.messagesystems.com/MessageSystems/Platform:3.5.2.0)) with ESMTP id 75/6E-01808-CC54E435; Wed, 16 Apr 2014 01:56:44 -0700 Received: by sjc-wfweb03.endor.lan (Postfix, from userid 48) id E91583C0615; Wed, 16 Apr 2014 01:57:36 -0700 (PDT) To: doc@FreeBSD.org Subject: =?UTF-8?B?dGFuc2xlci5jb20gcHJvcGVydHkgbGlzdGluZyBmb3IgSmFtZXMgUGllcmNl?= From: "=?UTF-8?B?dGFuc2xlci5jb20=?=" Message-Id: <20140416085736.E91583C0615@sjc-wfweb03.endor.lan> Date: Wed, 16 Apr 2014 01:57:36 -0700 (PDT) MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: troy@tansler.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Apr 2014 09:17:44 -0000 Hi, This message is to confirm that you have requested to be contacted by a tansler.com representative for the special tansler.com property listing special where we pay you $3 per property to list!!! We will be contacting you soon. troy@tansler.com tansler.com property listing for James Pierce Address (Optional) Rambler Email * [1]doc@FreeBSD.org Please let us know any comments or questions that you might have. [2]http://www.freebsd.org/doc/en/articles/laptop/article.html References 1. mailto:doc@FreeBSD.org 2. http://www.freebsd.org/doc/en/articles/laptop/article.html From owner-freebsd-doc@FreeBSD.ORG Wed Apr 16 09:37:46 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 54ACB2B3 for ; Wed, 16 Apr 2014 09:37:46 +0000 (UTC) Received: from mail-ee0-x235.google.com (mail-ee0-x235.google.com [IPv6:2a00:1450:4013:c00::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D451F14A6 for ; Wed, 16 Apr 2014 09:37:45 +0000 (UTC) Received: by mail-ee0-f53.google.com with SMTP id b57so8500233eek.26 for ; Wed, 16 Apr 2014 02:37:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=reply-to:message-id:from:to:subject:date:mime-version:content-type; bh=rzVjz1Fg5RHCA0jAQWU9yS8lS0iGEtGMckjYnDQeXuE=; b=RnsKtGhAiXKQsMWJa/u7BbomQm8keaawLHmK+HFrPUEW/cqsOvj5f47+9IL7y5nN7o fSWxyG9jBm+9OOpvmEi5vsTV6F9oSQX2FY7YkmC10qhf4yADzpp44Ut1GjypojRD2E1k lly6ZX/5bPlMpHSBvaFMu+4jYX8gCbUnTLQOHomfeS13r0pLGfHqQlufm2oyzYF6ByRo tsUHW5quzkdkAUFyhnyzfusiuE/dd4nq0E6I/kTOUG0rhcRpyNedYTValD+FA9yX23NT QBZTQcdMro+1LPLm7tNjHQequ0fW5FDqTcM26+uvWZMdHI6cM898Czlrh+FmGX1+uhgG R53A== X-Received: by 10.14.94.5 with SMTP id m5mr3766579eef.23.1397641064082; Wed, 16 Apr 2014 02:37:44 -0700 (PDT) Received: from asya.local ([95.14.98.43]) by mx.google.com with ESMTPSA id o7sm56370244eew.25.2014.04.16.02.37.39 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 16 Apr 2014 02:37:40 -0700 (PDT) Message-ID: <1734c549769d6172a08d35941037a7db@gmail.com> From: "=?iso-8859-9?B?x0VW3VLdIN7dUktFVN0=?=" To: Subject: =?iso-8859-9?B?VGVyY/xtZSBIaXptZXRsZXJpIEhrLg==?= Date: Wed, 16 Apr 2014 12:37:43 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-9" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: asyatercume2003@gmail.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Apr 2014 09:37:46 -0000 =20 Merhaba =20 =C7eviri =DEirketi olarak alan=FDnda profesyonel terc=FCman kadrosu ve = edit=F6rlerimizle birlikte yaz=FDl=FD, sim=FCltane (ekipman dahil) ve = ard=FDl =E7eviri hizmeti sunmaktay=FDz=2E =20 Bu y=F6nde taraf=FDn=FDza 2014 y=FDl=FD s=FCresince uygulayabilece=F0imiz = birim fiyat listelerimizi sunabiliriz=2E Her t=FCrl=FC sorunuz veya teklif talebiniz i=E7in a=FEa=F0=FDdaki = bilgilerimizi kullanabilirsiniz.=20 www.cevirisirketi.com info@cevirisirketi.com=20 Birlikte =E7al=FD=FEabilmek dile=F0iyle, =20 =DDyi =E7al=FD=FEmalar ve seneler dilerim < T=DCM YAZILI, S=D6ZL=DC VE S=DDMULTANE TERC=DCME =DDHT=DDYA=C7LARINIZ = =DD=C7=DDN B=DDZDEN TEKL=DDF TALEP EDEB=DDL=DDRS=DDN=DDZ> =20 Zafer TORUN Corporate Affairs =20 =20 =20 =C7EV=DDR=DD =DE=DDRKET=DD=20 TRANSLATION & INTERPRETATION SERVICES Web : http://www.asyaceviri.com / www.asyatercume.com =20 Mail : info@asyaceviri.com / info@asyatercume.com Phone : + 90 216 414 99 11 =20 Fax : + 90 216 347 12 99 Address : Rasimpa=FEa Mah Halita=F0a Cad No:34/5 Kad=FDk=F6y / Istanbul = - TURKEY The information in this e-mail and its attachments (if any) is = confidential and may contain legally privileged information. If you are = not the intended recipient please notify the sender immediately and do not = disclose the contents to any third party. Any opinions expressed in the = above e-mail are those of the author personally, and not necessarily those = of ASYA Translation & Interpretation Services. Although ASYA believes = this e-mail and any attachments are free of any virus or other malware = which may affect a computer, it is the responsibility of the recipient to = ensure that it is virus free, and ASYA does not accept any responsibility = for any loss or damage arising in any way from From owner-freebsd-doc@FreeBSD.ORG Wed Apr 16 09:48:31 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2449757F for ; Wed, 16 Apr 2014 09:48:31 +0000 (UTC) Received: from Mta22.sjc.wufoo.com (mta22.sjc.wufoo.com [75.98.93.172]) by mx1.freebsd.org (Postfix) with ESMTP id 0B9FB15A9 for ; Wed, 16 Apr 2014 09:48:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; d=wufoo.com; s=s1024; c=simple/simple; q=dns/txt; i=@wufoo.com; t=1397640446; h=From:Subject:Date:To:MIME-Version:Content-Type; bh=lA9pYZYv4wARWBubGtvR8qjihmI=; b=oSFujasiYUCIn5XAVIuq7bd3fmqDWDIIsdisdJW7fVxmLHlQK8qGR0srp0kWtZ4C FbeieArvdFCUAHnUGgijDsaBMttrZ8QWVQEza6RZHyRVXr02Wp7Sa/DemgZL56Tv QRwQ6sXo5SutlcWAt/X24zAQWBkqry39OpRMyl+fnG8=; X-MSFBL: ZG9jQGZyZWVic2Qub3JnQCNtbW92ZUBkZWZhdWx0QA== Received: from [10.10.23.26] ([10.10.23.26:53940] helo=sjc-wfweb03.endor.lan) by sjc-mta-02 (envelope-from ) (ecelerity 3.5.2.36399 r(ssh://hg@repos.int.messagesystems.com/MessageSystems/Platform:3.5.2.0)) with ESMTP id BA/D8-01808-EFC4E435; Wed, 16 Apr 2014 02:27:26 -0700 Received: by sjc-wfweb03.endor.lan (Postfix, from userid 48) id 068A03C061C; Wed, 16 Apr 2014 02:28:19 -0700 (PDT) To: doc@FreeBSD.org Subject: =?UTF-8?B?dGFuc2xlci5jb20gcHJvcGVydHkgbGlzdGluZyBmb3IgSmFtZXMgUGllcmNl?= From: "=?UTF-8?B?dGFuc2xlci5jb20=?=" Message-Id: <20140416092819.068A03C061C@sjc-wfweb03.endor.lan> Date: Wed, 16 Apr 2014 02:28:19 -0700 (PDT) MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: troy@tansler.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Apr 2014 09:48:31 -0000 Hi, This message is to confirm that you have requested to be contacted by a tansler.com representative for the special tansler.com property listing special where we pay you $3 per property to list!!! We will be contacting you soon. troy@tansler.com tansler.com property listing for James Pierce Address (Optional) Rambler Email * [1]doc@FreeBSD.org Please let us know any comments or questions that you might have. [2]http://www.freebsd.org/doc/en/articles/laptop/article.html References 1. mailto:doc@FreeBSD.org 2. http://www.freebsd.org/doc/en/articles/laptop/article.html From owner-freebsd-doc@FreeBSD.ORG Thu Apr 17 07:31:39 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3858A9A8 for ; Thu, 17 Apr 2014 07:31:39 +0000 (UTC) Received: from anubis.delphij.net (anubis.delphij.net [64.62.153.212]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anubis.delphij.net", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 15E5F13CA for ; Thu, 17 Apr 2014 07:31:38 +0000 (UTC) Received: from delphij-macbook.local (c-24-5-244-32.hsd1.ca.comcast.net [24.5.244.32]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by anubis.delphij.net (Postfix) with ESMTPSA id EB7B120EA0; Thu, 17 Apr 2014 00:31:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=delphij.net; s=anubis; t=1397719898; bh=kEAUOHMdMW1MeyzAgsW5/EvL4Pa0XIwCQu2lyHguhVU=; h=Date:From:Reply-To:To:Subject; b=SGG/VhFqbtk+Y/iluJ8AUGkpYhmfu2htcAwoaJTo2pQV4IIXVckNi8DoCC/jS7rfo dX1apz/qGEVfKMhCC9ECWA5yTjYAU3/F5ITKpX0pZV4ZG79EeguEQbIGCwBDaMSDEr SrQslL5rMhqDSNKHzO2AfqUFlZS0zFgYXqFN3fy0= Message-ID: <534F8358.5080900@delphij.net> Date: Thu, 17 Apr 2014 00:31:36 -0700 From: Xin Li Organization: The FreeBSD Project MIME-Version: 1.0 To: "freebsd-doc@freebsd.org" Subject: [PATCH] Add CSS for printer for website Content-Type: multipart/mixed; boundary="------------010107030605090101060109" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: d@delphij.net List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Apr 2014 07:31:39 -0000 This is a multi-part message in MIME format. --------------010107030605090101060109 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Hi, I noticed that our website is pretty ugly when being printed. Attached is a simple patch that basically hides various unwanted elements when media is print. Comments? (No re-indent is done to make it easier to review). -----BEGIN PGP SIGNATURE----- iQIcBAEBCgAGBQJTT4NYAAoJEJW2GBstM+nsJe8P/0IStoHHutpZaHOjOhtkHiBV pkR5llJ5R5Czqh+SOxTnSRQQKvRqG/MkaIxevcGh5tLrgk/sBcVFliItLFG1xEy+ klomsxkP3fdaHagaWIpJN2z+Wd1doxBIb1nY/834DtnlK2HBV6CzT8WMtURuue1d f3W1Ix2bGMnCAvGxUARnQJdY1aRIyV0RUy8V/ZnUD9I03Q2BmJ1gGGFh1x3DT2jC Tn3b6qgmf/w9dAQvQdq1jySVAygXYRKIVsGjMXQmSq9bKXGZgaFUBsbdVmx6ghG9 UOu+5dp6hO2gjZfhIZ3kX9gee8POO9xHl/LaT6FT5hBUkpYg7ghm5XeZ+tcA4H6n kviv2dOnkbrwJrmUnRyZUqnt3mBCP2yoUBTOpkjv/tmyA41k39d/dQ2LMFvh0tMO lsk8KZlPPOoSNz5EoBCOp1zv/7HPydYh5xDYp1RuxGc/i5Z2b4700O6iUdhG9IQ2 yBCD4SheDTGxD8rs2yNZMiZCDU1q5DCuaAyBwwIrbKRrVuKvMCV3AypXMStGRznS /qZ0KMk/3kLhyUyrzH+IBgvJSmJdtRD7JIjKUayI3n/1oQYMeh2kASNy4IwU2XWz IHKd8FsYj70YBCQjUWf8Kay/SImdkiRGlAtPqneqMHq+02QJ5GDhOonWapvCogqe dkK1K/sirPEFL4mAUqKx =xUTI -----END PGP SIGNATURE----- --------------010107030605090101060109 Content-Type: text/plain; charset=UTF-8; x-mac-type="0"; x-mac-creator="0"; name="print.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="print.diff" Index: en_US.ISO8859-1/htdocs/layout/css/layout.css =================================================================== --- en_US.ISO8859-1/htdocs/layout/css/layout.css (revision 44592) +++ en_US.ISO8859-1/htdocs/layout/css/layout.css (working copy) @@ -62,6 +62,7 @@ /* Search */ +@media screen { #search { position: relative; text-align: right; @@ -108,7 +109,12 @@ color: #666; padding: 2px 2px 2px 5px; } +} +@media print { +#search { display: none; } +} + /* Mirror Select */ #mirror { @@ -471,6 +477,7 @@ /* Secondary Pages */ +@media screen { #sidewrap { float: left; width: 166px; @@ -488,7 +495,13 @@ margin-left: 170px; padding-top: 15px; } +} +@media print { +#sidewrap, #rightwrap { display: none; } +#contentwrap { margin-left: 16px; padding-top: 15px; } +} + /* Footer */ #footer { Index: en_US.ISO8859-1/htdocs/layout/css/navigation.css =================================================================== --- en_US.ISO8859-1/htdocs/layout/css/navigation.css (revision 44592) +++ en_US.ISO8859-1/htdocs/layout/css/navigation.css (working copy) @@ -6,6 +6,7 @@ /* Site Navigation */ +@media screen { #topnav { text-align: left; color: #666; @@ -378,3 +379,14 @@ div#menu ul ul ul li:hover ul { padding-left: 10px; padding-right: 10px; } +} + +@media print { +#topnav, #topnavleft, #topnavright, #topnavlist { display: none; } +#menu { display: none; } +#languagenav, #languagenavlist { display: none; } +#searchnav, #searchnavlist { display: none; } +#sidenav { display: none; } +#feedlinks { display: none; } +.rightnav { display: none; } +} Index: share/xml/xhtml.xsl =================================================================== --- share/xml/xhtml.xsl (revision 44592) +++ share/xml/xhtml.xsl (working copy) @@ -42,7 +42,7 @@ - + &header1.googlejs; --------------010107030605090101060109-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 17 18:26:40 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9232E60 for ; Thu, 17 Apr 2014 18:26:40 +0000 (UTC) Received: from unusquinquequinque.theta.eccluster.com (unusquinquequinque.theta.eccluster.com [91.192.41.155]) by mx1.freebsd.org (Postfix) with ESMTP id 509CA1223 for ; Thu, 17 Apr 2014 18:26:40 +0000 (UTC) Received: from app80.muc.ec-messenger.com (app80.muc.domeus.com [172.16.9.60]) by mta31.muc.domeus.com (READY) with ESMTP id 2DD1C10008947 for ; Thu, 17 Apr 2014 20:06:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=newsletter.soswitch.com; s=ecm1; t=1397758000; bh=+YVHZv6mNNT7FBNoNOrmXHTJsKEhkWQpCqPsnvorl2Y=; h=Date:From:Reply-To:To:Subject:List-Id; b=UIQeAdpdpviyzUo6vvLQYv44h3gXjBGdMpwbcuxQm9jD9x8ORdgybYoC2YwHgHz4Y 3DXDIsdGDCVgPAAD3HDb5OGNkEV2MEugjZ9DKgO6A5bJCGwmZCgYvZ+1b4HP263loY gZBggpe4ppO4MT67I8OhDDyrdvrERvmDuScOhiAM= Date: Thu, 17 Apr 2014 20:06:40 +0200 (CEST) From: "soswitch.com" To: freebsd-doc@freebsd.org Message-ID: Subject: Welcome Back to So Switch | Start Saving Today MIME-Version: 1.0 X-eC-messenger-mid: 1300618786 X-eC-messenger-cid: 2730 X-eC-messenger-token: licrvmI5zj1ram X-eC-messenger-sender-domain: bounce.newsletter.soswitch.com X-eCircle-Complaints: complaint@intl.teradatadmc.com X-CSA-Complaints: whitelist-complaints@eco.de X-Mailer: eC-Messenger Build 6.90.365 X-eC-messenger-email: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: "news@soswitch.com" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Apr 2014 18:26:40 -0000 Soswitch.com Home http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1ramI0 Mortgages: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1ramI1 Money: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1ramI2 Insurance: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1ramI3 Broadband: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1ramI4 ------------------------------------------------------- Welcome Back to SO Switch Welcome to the NEW So Switch Newsletter So Switch is a completely independent comparison service. We strive to find= the best deals so you can keep your pockets lined. If you want to save, we= are the service that can help you We offer a number of services to help keep living costs down, allowing you = to spend your money on things that really matter to you. We bring you more than just quotes - We are a service that keeps you inform= ed and passes the savings on to you.=20 Mortgages: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1ramI5 Life Insurance: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1ramI6 Credit cards: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1ramI7 ------------------------------------------------------ Read, Compare and Make an Informed Decision =20 Each week we publish articles with up to date information to keep you in th= e know and along with our guides you can make the right choices for your fi= nances. Our articles will look at the market and compare the deals out there and ex= plain if they really are as good as they seem. Repossessed Properties: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj= 1ramI8 Life Insurance Guide: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1r= amI9 Top Cashback Credit card: http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5= zj1ramIa ------------------------------------------------------ If you want to continue receiving our 'up to date' information on the lates= t goings on, make sure to add us to your safe senders list. ------------------------------------------------------ =20 This email is sent to you by soswitch.com. If you have any questions with r= egards to how your data was obtained and how it is processed please contact= soswitch.com by clicking here. http://newsletter.soswitch.com/re?l=3DD0IlicrvmI5zj1ramIb While we take every care to ensure the information provided is correct and = up to date, please always check with the providers before committing yourse= lves. This email or articles featured here provide links to third party websites.= Please note soswitch.com take no responsibility for the content of these t= hird party websites. This information is for the use by UK individuals only= and is the responsibility of individuals to confirm the product is suitabl= e for your requirements. *Quotezone (a trading style of Seopa Ltd) reviewed 61,855 quote requests on= Quotezone's home insurance comparison service between July and September 2= 012. They took the cheapest from the median (half way point) quote returned= to each customer to produce a "representative" saving. 50%+ achieved a rep= resentative saving of =A368.62 or more. The savings you could achieve are d= ependent on your individual circumstances and how you selected your current= insurance supplier. THINK CAREFULLY BEFORE SECURING OTHER DEBTS AGAINST YOUR HOME. YOUR HOME MA= Y BE REPOSSESSED IF YOU DO NOT KEEP UP REPAYMENTS ON YOUR MORTGAGE Soswitch is a trading styles of Simply Online Media Limited whose registere= d office address is Resolution House, 1C Riparian Way, Crossings Business P= ark, Keighley, BD20 7BW. Email: info@soswitch.com. Registered in England an= d Wales, Company No. 07849157 Consumer Credit License No. 0649995 Please click here if you do not want to receive any further messages: Unsub= scribe =20 http://newsletter.soswitch.com/public/unsubscribe.jsp?gid=3D1300105313&uid= =3D13032222574&mid=3D1300618786&sig=3DMBOHJBAKADILBJND&l=3DD0IlicrvmI5zj1ra= mI&slt=3D4 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 19 07:10:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C67441DF for ; Sat, 19 Apr 2014 07:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A340E159B for ; Sat, 19 Apr 2014 07:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3J7A0Pe093140 for ; Sat, 19 Apr 2014 07:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3J7A02t093139; Sat, 19 Apr 2014 07:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 19 Apr 2014 07:10:00 GMT Resent-Message-Id: <201404190710.s3J7A02t093139@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Kerrisk Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F33BE1AD for ; Sat, 19 Apr 2014 07:06:48 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C66561580 for ; Sat, 19 Apr 2014 07:06:48 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3J76mXE099180 for ; Sat, 19 Apr 2014 07:06:48 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3J76mLO099179; Sat, 19 Apr 2014 07:06:48 GMT (envelope-from nobody) Message-Id: <201404190706.s3J76mLO099179@cgiserv.freebsd.org> Date: Sat, 19 Apr 2014 07:06:48 GMT From: Michael Kerrisk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/188786: Bug in inet3) man page (inet_aton()) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Apr 2014 07:10:00 -0000 >Number: 188786 >Category: docs >Synopsis: Bug in inet3) man page (inet_aton()) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 19 07:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Michael Kerrisk >Release: 10.0 >Organization: Linux man-pages maintainer >Environment: n/a >Description: As http://www.freebsd.org/cgi/man.cgi?query=inet_aton&apropos=0&sektion=0&manpath=FreeBSD+10.0-RELEASE&arch=default&format=html, on sees the text: When a two part address is supplied, the last part is interpreted as a 24-bit quantity and placed in the right most three bytes of the network address. This makes the two part address format convenient for specify- ing Class A network addresses as ``net.host''. In the second line, there should I believe be the substitution: s/network$/host$/. I have no FreeBSD system to test, but have tested on OpenBSD and Linux. Furthermore, the change makes sense when one reads the surrounding text. I see the same text in the OpenBSD page, and also the NetBSD page. How does this work -- should I submit bugs for each of those systems, or do communicate such problems to one another? Thanks, Michael Kerrisk (maintainer, Linux man-pages project) Test code: #define _BSD_SOURCE #include #include #include static void printBytes(in_addr_t a) { printf("%d", (a >> 24) & 0xff); printf("."); printf("%d", (a >> 16) & 0xff); printf("."); printf("%d", (a >> 8) & 0xff); printf("."); printf("%d", (a & 0xff)); } /* printBytes */ int main(int argc, char *argv[]) { struct in_addr addr; if (argc != 2) { fprintf(stderr, "%s \n", argv[0]); exit(EXIT_FAILURE); } if (inet_aton(argv[1], &addr) == 0) { fprintf(stderr, "inet_aton() failed\n"); exit(EXIT_FAILURE); } printf("%s\n", inet_ntoa(addr)); struct in_addr n, h; n.s_addr = inet_netof(addr); printf("Network number : "); printBytes(n.s_addr); printf("\n"); h.s_addr = inet_lnaof(addr); printf("Local network address: "); printBytes(h.s_addr); printf("\n"); addr = inet_makeaddr(n.s_addr, h.s_addr); printf("Made address: %s\n", inet_ntoa(addr)); exit(EXIT_SUCCESS); } >How-To-Repeat: >Fix: As above >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sat Apr 19 10:41:33 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C5518B4 for ; Sat, 19 Apr 2014 10:41:33 +0000 (UTC) Received: from mail-pa0-x244.google.com (mail-pa0-x244.google.com [IPv6:2607:f8b0:400e:c03::244]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 20E5F15A1 for ; Sat, 19 Apr 2014 10:41:33 +0000 (UTC) Received: by mail-pa0-f68.google.com with SMTP id kq14so1478990pab.11 for ; Sat, 19 Apr 2014 03:41:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:mime-version:content-type :thread-index:content-language; bh=ks/1EuqzVdH8jiCQTsB5BNYz7hSIOROr4wVYXhQ6vVM=; b=HoIH0Veicu0yTtYXpvrGioMmg4M/DdInUPVATCiqBgp8rV35+OmokPqhNnV54xOwM7 S+ucwi5FHkFU8SwdDgTm3oZHl2H/ZFCl7WhvanwYZ/U+5p9vcgJKj06wIwxwHdR/E8sX AztzGk1jaGhWHlzbHZZYyX3biN9MLBuDdpcp3fy+XFOUQZc71CKj0BZstDqf0SC9adlz fYlFBIcQIrERgpT45Bi/sS5BO3HAf4KKfdg9jR5pMJQHLpxGnS7QpCgEside4jUp8y6t I9jwXiQH8mW7j8rb9d2esf+SRn9vJyUIAit5NJYpyMvJ/91Wy8e1ojT7Q2zCmsATXayb Vtpg== X-Received: by 10.67.1.202 with SMTP id bi10mr26765091pad.68.1397904092723; Sat, 19 Apr 2014 03:41:32 -0700 (PDT) Received: from SuperuserPC ([182.71.216.102]) by mx.google.com with ESMTPSA id g6sm154931060pat.2.2014.04.19.03.41.30 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 19 Apr 2014 03:41:32 -0700 (PDT) From: "John Piterson" To: Subject: Get Good Traffic with Higher Sales Date: Sat, 19 Apr 2014 16:11:06 +0530 Message-ID: <25ff01cf5bbb$f3d18400$db748c00$@gmail.com> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 14.0 Thread-Index: Ac9busMahLeO5tQwT9O97m6bjoXjyg== Content-Language: en-us Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Apr 2014 10:41:33 -0000 Hello, Greetings!! My name is John Piterson and I'm an experienced SEO freelancer serving online marketing industry. I think you are an active online entrepreneur and curious to know every day how Google turns to provide first page rankings. You might wonder about knowing the major elements required in gaining better internet traffic & online sales through organic SEO. I trust you understand the basic know-how of search engine optimization very well and already receive so much of business proposals each day. So what's difference here in this email? I have been working in this industry since last 11 years as Freelancer SEO Expert and experienced personally a lot of case studies of my good clients after each Google update. After testing a bunch of organic methods of link building, now the time has come to work for RELATIONSHIP BUILDING of your business website. So getting hold of this objective in my process, I would propose to carry out following new strategies for online advertising of my client business- 1. Create Online Buzz about your merchandise /service 2. Social-Media Submissions 3. Public Relations Activity 4. Video Optimization & Marketing 5. Social Channels Optimization including FB, Twitter, Pinterest etc 6. Content Distribution & Marketing 7. Web 2.0 Creations 8. Presentations/Document Sharing Worldwide 9. Content Syndication & RSS Submissions 10. Marking Up content, XML and Micro-Data Formats Implementations I assure, above 10 activities will boost up your online presence and business sales to give good ROI from your advertising expenditure. Why need to pay thousands of dollars per month to so called big internet marketing companies, if you are not certain about the promises. Let's go with a small budget investment with my SEO proposal. If you are reading it until now then this is something extraordinary and truly can get drastic alterations in your business without making false huge promises. I personally do B2B SEO, ghost internet marketing for my clients. I have majority of my clienteles from SMEs itself and I share them a sound knowledge of marketing and educate more about latest search algorithm updates coming from search giant Google. If anything above comes of your involvement, please do write me back with the URL of your website. I would love to set up a FREE website analysis, search engine report along with my detailed SEO plan of activity. Thank You Kind Regards John Piterson, SEO Consultant DISCLAIMER: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM act of 2003 and Bill C-28. We have clearly noted the source mail-id of this mail, also clearly mentioned the open lines and they are in no way misleading in any course. We have found your mail address through our own efforts on the web search and not through any illegal means. If you get this mail unsolicited, please reply with "Remove" in the subject line and we will take care that you do not get any further promotional mail. From owner-freebsd-doc@FreeBSD.ORG Sat Apr 19 13:00:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C6BCBBD for ; Sat, 19 Apr 2014 13:00:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 8A9371143 for ; Sat, 19 Apr 2014 13:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3JD02eS027220 for ; Sat, 19 Apr 2014 13:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3JD02Ca027219; Sat, 19 Apr 2014 13:00:02 GMT (envelope-from gnats) Date: Sat, 19 Apr 2014 13:00:02 GMT Message-Id: <201404191300.s3JD02Ca027219@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Mark Linimon Subject: Re: docs/188786: Bug in inet(3) man page (inet_aton()) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Mark Linimon List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Apr 2014 13:00:02 -0000 The following reply was made to PR docs/188786; it has been noted by GNATS. From: Mark Linimon To: Michael Kerrisk Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: docs/188786: Bug in inet(3) man page (inet_aton()) Date: Sat, 19 Apr 2014 07:54:48 -0500 On Sat, Apr 19, 2014 at 07:06:48AM +0000, Michael Kerrisk wrote: > I see the same text in the OpenBSD page, and also the NetBSD page. > How does this work -- should I submit bugs for each of those systems, > or do communicate such problems to one another? Short answer: we do't automatically sync with one another. Longer answer: it would take some investigation to find out if one or the other of the 3 has a "canonical" set of manpages that the others have copied. So, the best way is to open a PR for each. Thanks. mcl From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 05:40:03 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B5246F5; Mon, 21 Apr 2014 05:40:03 +0000 (UTC) Received: from mail-oa0-x232.google.com (mail-oa0-x232.google.com [IPv6:2607:f8b0:4003:c02::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3C2331D5F; Mon, 21 Apr 2014 05:40:03 +0000 (UTC) Received: by mail-oa0-f50.google.com with SMTP id i11so1934422oag.9 for ; Sun, 20 Apr 2014 22:40:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=TLx9hLJBJyNsm+Y7/i06zdOFQ3rqr361Ojb4Nu9gizQ=; b=wQ+5gl+BXbacRYFu4EUqmGrlbU3+vmaymqg5BZ34LAWzexz7MpnwXYDTzM1XoaWZv4 +3exAJ8lJBnVWpoD88HVW2ffXfAObhVSREzMk3KEnrLyy4UufJ0eJmoCgZ3H9pRJjfR4 3U2j19VyP1yOpQEc3C6cfTAgPjczmo3mIgYclDVPDEQEfK/xZ5D27lETEzGatFTo2UcF A+xxeUWVveQ5DVJINE42DWs4iaXO0LzQ2pOJmSj02VK8XnVaqkjtTMsJzjnrCoM/rDxb 69iF/vAVGs5XQoQegD4urm9z70L45rkAQV6iyVAIQeVf64V5lrPiczd/VCSzWUYzKRKV ZTyw== MIME-Version: 1.0 X-Received: by 10.60.51.69 with SMTP id i5mr29941369oeo.17.1398058802265; Sun, 20 Apr 2014 22:40:02 -0700 (PDT) Received: by 10.76.35.230 with HTTP; Sun, 20 Apr 2014 22:40:02 -0700 (PDT) Date: Mon, 21 Apr 2014 13:40:02 +0800 Message-ID: Subject: is there a complete "FreeBSD 9.X/10.X installation guide" download? From: wipedrivepro wipedrivepro To: freebsd-questions@FreeBSD.org, freebsd-doc@FreeBSD.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2014 05:40:03 -0000 eg in .doc or .pdf format of https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/bsdinstall.html#bsdinstall-synopsis it's hard to download it one by one tnx... From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 06:07:53 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE93CB60; Mon, 21 Apr 2014 06:07:53 +0000 (UTC) Received: from zoom.lafn.org (zoom.lafn.org [108.92.93.123]) by mx1.freebsd.org (Postfix) with ESMTP id B434810D5; Mon, 21 Apr 2014 06:07:53 +0000 (UTC) Received: from [10.0.1.3] (static-71-177-216-148.lsanca.fios.verizon.net [71.177.216.148]) (authenticated bits=0) by zoom.lafn.org (8.14.7/8.14.7) with ESMTP id s3L5wRTk076888 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Sun, 20 Apr 2014 22:58:28 -0700 (PDT) (envelope-from bc979@lafn.org) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 6.6 \(1510\)) Subject: Re: is there a complete "FreeBSD 9.X/10.X installation guide" download? From: Doug Hardie In-Reply-To: Date: Sun, 20 Apr 2014 22:58:26 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <34492FAB-798F-41B2-B0AB-B2C4E8003636@lafn.org> References: To: wipedrivepro wipedrivepro X-Mailer: Apple Mail (2.1510) X-Virus-Scanned: clamav-milter 0.98 at zoom.lafn.org X-Virus-Status: Clean Cc: freebsd-doc@FreeBSD.org, freebsd-questions@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2014 06:07:53 -0000 On 20 April 2014, at 22:40, wipedrivepro wipedrivepro = wrote: > eg in .doc or .pdf format of > = https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/bsdinstall.html= #bsdinstall-synopsis >=20 > it's hard to download it one by one >=20 > tnx=85 in html format: On the handbook page, there is a link right above the Table of Contents: = Click on Single HTML. It gives you the entire manual as one web page. = Save in whatever format you find convenient. From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 06:16:36 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCA24DF7; Mon, 21 Apr 2014 06:16:36 +0000 (UTC) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D03C117F; Mon, 21 Apr 2014 06:16:36 +0000 (UTC) Received: from r56.edvax.de (port-92-195-108-40.dynamic.qsc.de [92.195.108.40]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx02.qsc.de (Postfix) with ESMTPS id 8AC8D27678; Mon, 21 Apr 2014 08:16:31 +0200 (CEST) Received: from r56.edvax.de (localhost [127.0.0.1]) by r56.edvax.de (8.14.5/8.14.5) with SMTP id s3L6FNbu003614; Mon, 21 Apr 2014 08:15:23 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Mon, 21 Apr 2014 08:15:23 +0200 From: Polytropon To: wipedrivepro wipedrivepro Subject: Re: is there a complete "FreeBSD 9.X/10.X installation guide" download? Message-Id: <20140421081523.208129bd.freebsd@edvax.de> In-Reply-To: References: Organization: EDVAX X-Mailer: Sylpheed 3.1.1 (GTK+ 2.24.5; i386-portbld-freebsd8.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-doc@FreeBSD.org, freebsd-questions@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Polytropon List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2014 06:16:36 -0000 On Mon, 21 Apr 2014 13:40:02 +0800, wipedrivepro wipedrivepro wrote: > eg in .doc or .pdf format of > https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/bsdinstall.html#bsdinstall-synopsis > > it's hard to download it one by one You can download the full HTML version (in opposite to the split HTML version you've refered to) from this source: https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/book.html This will contain the full handbook. Additional idea: Open this page in your web browser and press ^P. Redirect the output to a file (usually a .ps file). Then use ps2pdf to make a PDF file from it, and then use pdftk to extract the chapters you want to have (use a PDF viewer such as xpdf or gv to find the page numbers representing that range). Probably you can also use the misc/freebsd-doc port to generate the PS or PDF output you want. If you already have it installed, you'll find The FreeBSD Handbook here: /usr/local/share/doc/freebsd/en_US.ISO8859-1/books/handbook The files book.html and book.txt can be found in this directory. Note that FreeBSD does not publish free and open documentation in proprietary formats such as "DOC" because using such a format would be a bad idea as it limits usability and portability of information. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C879D60 for ; Mon, 21 Apr 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 4881518E2 for ; Mon, 21 Apr 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3LB64tU084793 for ; Mon, 21 Apr 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3LB63sO084791 for freebsd-doc@FreeBSD.org; Mon, 21 Apr 2014 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 21 Apr 2014 11:06:03 GMT Message-Id: <201404211106.s3LB63sO084791@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/188786 doc Bug in inet(3) man page (inet_aton()) o docs/188214 doc Manpage for fsck(8) doesn't say what happens when no - o docs/188043 doc [patch] man page for md5/sha1/sha256/sha412/rmd-160 cl o docs/187644 doc [patch] ifconfig.8 man page address_family paragraph n o docs/187465 doc [handbook] [patch] mention patchlevels in explaining s o docs/187351 doc handbook section on ports does not mention pkg search o docs/187142 doc [handbook] [patch] The Handbook (chapter 15.4) does no o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc [handbook] Add an ipfilter rc.conf option in handbook o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) 255 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 12:10:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C4487BE for ; Mon, 21 Apr 2014 12:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 3F6C41116 for ; Mon, 21 Apr 2014 12:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3LCA1pI008009 for ; Mon, 21 Apr 2014 12:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3LCA1b2008008; Mon, 21 Apr 2014 12:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 21 Apr 2014 12:10:01 GMT Resent-Message-Id: <201404211210.s3LCA1b2008008@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ondra Knezour Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8380675C for ; Mon, 21 Apr 2014 12:03:49 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FC6A10E1 for ; Mon, 21 Apr 2014 12:03:49 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3LC3m4S006186 for ; Mon, 21 Apr 2014 12:03:48 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3LC3mGi006177; Mon, 21 Apr 2014 12:03:48 GMT (envelope-from nobody) Message-Id: <201404211203.s3LC3mGi006177@cgiserv.freebsd.org> Date: Mon, 21 Apr 2014 12:03:48 GMT From: Ondra Knezour To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/188845: Wrong SMTP port number in the LDAP Authentication article X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2014 12:10:01 -0000 >Number: 188845 >Category: docs >Synopsis: Wrong SMTP port number in the LDAP Authentication article >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 21 12:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ondra Knezour >Release: >Organization: >Environment: >Description: In the example how TLS services differs from their non-encrypted counterparts the article wrongly states, that SMTP is using port number 45, but it is usually 25. >How-To-Repeat: Open https://www.freebsd.org/doc/en/articles/ldap-auth/article.html, seek to 2.1.2. Configuring OpenLDAP section, look for the fourth paragraph. Sentence begining with the "Thus SMTPS listens on port 465 (not 45)," should have number 25 in parenthesis, not 45. >Fix: Do s/(not 45)/(not 25)/ with some docbook-fu and get it committed, both beyond my capabilities. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 14:22:45 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1DBC523 for ; Mon, 21 Apr 2014 14:22:45 +0000 (UTC) Received: from mail60.atl31.mcdlv.net (mail60.atl31.mcdlv.net [205.201.134.60]) by mx1.freebsd.org (Postfix) with ESMTP id 774E91BEA for ; Mon, 21 Apr 2014 14:22:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=k1; d=mail60.atl31.mcdlv.net; h=Subject:From:Reply-To:To:Date:Message-ID:List-Unsubscribe:Sender:Content-Type:MIME-Version; i=patricia=3Dndipromoevent41.org@mail60.atl31.mcdlv.net; bh=1CVZVCXC04ubHH4iPkTQkEl0Kkw=; b=Nnx6By3gWKj43kchB2PHmIQYNH0F2lOMl71p7nKlccGzxLWv5iM1qoYdAvzlT6fTAKTrex9hq2Pb UfDwbDyz1zZA84ueMEokDhsS87TvzBbpPcUKGSQwrqrsSsSoaJrOkJsogpKvSVct4zzQY/5/qRpb R7Gu1J77Zs5IEZO+gfs= DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=k1; d=mail60.atl31.mcdlv.net; b=vLiRrjmJlOxCCxUcyqIfUzOpnkZeWumIlJoqz3Q+dkMkcqYdW47Lt3ioLPUDx0uVna5DaVz0Yy+Y C5GED40djrG2thigDumtc7tOA/EMz1aEv8uVN3RHoTkLK9MkC9Zn9nn8afZ+pnsg5vi8NB/nMm+X t1mLgIFljvqB8dS1OUQ=; Received: from (127.0.0.1) by mail60.atl31.mcdlv.net id hakkra1mqro4 for ; Mon, 21 Apr 2014 14:06:41 +0000 (envelope-from ) Subject: =?utf-8?Q?Your=20Upcoming=20Conference=20Event?= From: =?utf-8?Q?Patricia=20Faye?= To: Date: Mon, 21 Apr 2014 14:06:41 +0000 Message-ID: <76d287a7f54ead87b63d86aa6d681ac9c63.20140421140630@mail60.atl31.mcdlv.net> X-Mailer: MailChimp Mailer - **CID630f820ff4d681ac9c63** X-Campaign: mailchimp76d287a7f54ead87b63d86aa6.630f820ff4 X-campaignid: mailchimp76d287a7f54ead87b63d86aa6.630f820ff4 X-Report-Abuse: Please report abuse for this campaign here: http://www.mailchimp.com/abuse/abuse.phtml?u=76d287a7f54ead87b63d86aa6&id=630f820ff4&e=d681ac9c63 X-MC-User: 76d287a7f54ead87b63d86aa6 X-Feedback-ID: 28680695:28680695.406117:us8:mc X-Accounttype: pd Sender: "Patricia Faye" x-mcda: FALSE MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8"; format="fixed" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?utf-8?Q?Patricia=20Faye?= List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2014 14:22:45 -0000 Major Gifts Conference & Faith & Fundraising Summit View this email in your browser (http://us8.campaign-archive2.com/?u=3D76d= 287a7f54ead87b63d86aa6&id=3D630f820ff4&e=3Dd681ac9c63) Please Visit Here For Major Gifts Conference (http://nonprofitconferences.= us8.list-manage.com/track/click?u=3D76d287a7f54ead87b63d86aa6&id=3Ddf064b4= bc3&e=3Dd681ac9c63) Please Visit Here For Faith & Fundraising Summit (http://nonprofitconferen= ces.us8.list-manage2.com/track/click?u=3D76d287a7f54ead87b63d86aa6&id=3D18= 44a53afa&e=3Dd681ac9c63) =2E..or call 800-257-6670 to Speak to an NDI Representative Dear Nonprofit & Ministry Executives=2C Join over 9000 of your fellow executives=2C volunteers & donors who=E2=80= =99ve already attended a Major Gifts Ramp-Up Event. Here=E2=80=99s just a few... Prison Fellowship - World Vision International - Boy Scouts of America Campus Crusade - Ducks Unlimited - Make-A-Wish Foundation United Way - Clemson University - Ronald McDonald House Salvation Army - Campus Crusade - Girl Scouts of America Habitat for Humanity -Teen Challenge - Junior Achievement ___________________________________________________________________ Who should attend a Major Gifts Ramp-Up Conference Event? Executives Directors=2C Board Members=2C Development Officers=2C Pastors= =2C Trustees=2C Volunteers=2C Special Event Coordinators=2C Marketing Dire= ctors and PR Staff who want to increase their skills in the areas of major= gifts fundraising. ___________________________________________________________________ Nova Southeastern University=2C University of Central Florida & Community= Christian Schools are pleased to announce that National Development Insti= tute's "Major Gifts Ramp-Up Conference" is coming to Ft. Lauderdale=2C Orl= ando & Tallahassee to ensure you secure the funding you need. I highly rec= ommend that you and your team register today for one of the fifteen upcomi= ng conference events. Your nonprofit serves in a region with a high potential for charitable giv= ing. In fact=2C according to DonorScope=2C there are over 50=2C000 househo= lds in your city with a net worth in excess of one million dollars.We know= you're working to diversify your revenue sources. In support of these eff= orts we're hosting this two-day session to provide you the foundation you= require to launch your own Major Gifts Fundraising Program. These event will provide you a model that ensures you reach donors who alr= eady believe in your misson and in turn will increase your financial capac= ity. (Please note that due to space limitations=2C this event will be limited t= o the first 100 nonprofits=2C ministries or churches to register. Please m= ake your reservations today!) I look forward to hearing from you over the next few days. Until then I re= main=2C Sincerely Yours=2C Patricia Faye National Development Institute =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Copyright =C2=A9 2014 National Development Institute=2C All rights reserve= d. Great to see you again...thanks for downloading NDI Resources & joining u= s at NDI Conference Events Our mailing address is: National Development Institute 201 E. Main Street Lexington=2C SC 29072 USA ** unsubscribe from this list (http://nonprofitconferences.us8.list-manage= =2Ecom/unsubscribe?u=3D76d287a7f54ead87b63d86aa6&id=3D448270c9a4&e=3D= d681ac9c63&c=3D630f820ff4) ** update subscription preferences (http://nonprofitconferences.us8.list-m= anage1.com/profile?u=3D76d287a7f54ead87b63d86aa6&id=3D448270c9a4&e=3D= d681ac9c63) Email Marketing Powered by MailChimp http://www.mailchimp.com/monkey-rewards/?utm_source=3Dfreemium_newsletter&= utm_medium=3Demail&utm_campaign=3Dmonkey_rewards&aid=3D76d287a7f54ead87b63= d86aa6&afl=3D1 From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 15:30:39 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 821C727E; Mon, 21 Apr 2014 15:30:39 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 2D386134E; Mon, 21 Apr 2014 15:30:38 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s3LFUXNK010113 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 21 Apr 2014 09:30:33 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s3LFUXPa010110; Mon, 21 Apr 2014 09:30:33 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Mon, 21 Apr 2014 09:30:33 -0600 (MDT) From: Warren Block To: Polytropon Subject: Re: is there a complete "FreeBSD 9.X/10.X installation guide" download? In-Reply-To: <20140421081523.208129bd.freebsd@edvax.de> Message-ID: References: <20140421081523.208129bd.freebsd@edvax.de> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Mon, 21 Apr 2014 09:30:33 -0600 (MDT) Cc: freebsd-doc@FreeBSD.org, wipedrivepro wipedrivepro , freebsd-questions@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2014 15:30:39 -0000 On Mon, 21 Apr 2014, Polytropon wrote: > On Mon, 21 Apr 2014 13:40:02 +0800, wipedrivepro wipedrivepro wrote: >> eg in .doc or .pdf format of >> https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/bsdinstall.html#bsdinstall-synopsis >> >> it's hard to download it one by one > > You can download the full HTML version (in opposite to the > split HTML version you've refered to) from this source: > > https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/book.html > > This will contain the full handbook. > > Additional idea: > > Open this page in your web browser and press ^P. Redirect the > output to a file (usually a .ps file). Then use ps2pdf to make > a PDF file from it, and then use pdftk to extract the chapters > you want to have (use a PDF viewer such as xpdf or gv to find > the page numbers representing that range). The HTML and PDF forms are downloadable directly: ftp://ftp.freebsd.org/pub/FreeBSD/doc/en_US.ISO8859-1/books/handbook/ From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 16:22:17 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3938628E; Mon, 21 Apr 2014 16:22:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 0DB4618FA; Mon, 21 Apr 2014 16:22:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3LGMGoV090519; Mon, 21 Apr 2014 16:22:16 GMT (envelope-from wblock@freefall.freebsd.org) Received: (from wblock@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3LGMGZU090518; Mon, 21 Apr 2014 16:22:16 GMT (envelope-from wblock) Date: Mon, 21 Apr 2014 16:22:16 GMT Message-Id: <201404211622.s3LGMGZU090518@freefall.freebsd.org> To: wblock@FreeBSD.org, freebsd-doc@FreeBSD.org, wblock@FreeBSD.org From: wblock@FreeBSD.org Subject: Re: docs/188845: Wrong SMTP port number in the LDAP Authentication article X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2014 16:22:17 -0000 Synopsis: Wrong SMTP port number in the LDAP Authentication article Responsible-Changed-From-To: freebsd-doc->wblock Responsible-Changed-By: wblock Responsible-Changed-When: Mon Apr 21 16:22:03 UTC 2014 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=188845 From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 13:56:28 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 12A9DF5F; Wed, 23 Apr 2014 13:56:28 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 DA76C195F; Wed, 23 Apr 2014 13:56:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3NDuRLG013433; Wed, 23 Apr 2014 13:56:27 GMT (envelope-from dru@freefall.freebsd.org) Received: (from dru@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3NDuR48013432; Wed, 23 Apr 2014 13:56:27 GMT (envelope-from dru) Date: Wed, 23 Apr 2014 13:56:27 GMT Message-Id: <201404231356.s3NDuR48013432@freefall.freebsd.org> To: dru@FreeBSD.org, freebsd-doc@FreeBSD.org, dru@FreeBSD.org From: dru@FreeBSD.org Subject: Re: docs/119545: books/arch-handbook/usb/chapter.sgml formatting X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2014 13:56:28 -0000 Synopsis: books/arch-handbook/usb/chapter.sgml formatting Responsible-Changed-From-To: freebsd-doc->dru Responsible-Changed-By: dru Responsible-Changed-When: Wed Apr 23 13:56:06 UTC 2014 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=119545 From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 04:33:13 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F328210 for ; Thu, 24 Apr 2014 04:33:13 +0000 (UTC) Received: from smtp6e7.consultorpc.com (smtp6e7.consultorpc.com [93.159.212.67]) by mx1.freebsd.org (Postfix) with ESMTP id 11EB712C2 for ; Thu, 24 Apr 2014 04:33:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=dkim; d=bleachbright-news.com; h=To:From:Reply-To:Date:Message-ID:List-Unsubscribe:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding; i=mail@bleachbright-news.com; bh=kxSEaLbJNn9BpdMZ+iYQobpJ+m4=; b=uDfRW89acxBdTn7yg1IWWyNiQeHGkC+BmGnTAa6rseT+Ty8d7qXQeoJxjonIaFHSUOlunQB/wQEa qBKG7Rb3DlrTW6bXO/Z2+39fiMo9Xt6aNpFUz/STmfwmQTb563viimED5jag3ApiH1aoaY4oZ9S6 9P25NgdQz4iHZuV5XE4= DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=dkim; d=bleachbright-news.com; b=Ke9eaNEFdPkJOJ/iweKlxWu7XuIn5Y7z+tjS42NE72EvMPYwEqePk+vscgzI29H7K1FNDTwzyzzU BWUPAXK1rQcICbOPGfxixxeMBruHlDSoRnoS7DiuOjIGtGq4M1knKe2hQ+rCfkU+nKX0zafHjVEN JlE7Vt5wuS75PD9l1Dg=; Received: by smtp6e7.consultorpc.com id hb2a0g16r3gd for ; Thu, 24 Apr 2014 06:28:02 +0200 (envelope-from ) To: From: "Daniela BleachBright" Date: Thu, 24 Apr 2014 06:26:46 +0200 Message-ID: <53589286d57fd@bleachbright-news_ip-zone_com-6> X-CcmId: 070d505650515241590109461b5c041211395c111f4b590f566c5a5e5b0d52525251040f0302010b01 X-Report-Abuse: Please report abuse for this campaign here http://bleachbright-news.ip-zone.com/ccm/abuse?a=19872&m=181&s=200008 X-OriginalSender: mail@bleachbright-news.com Subject: Cooperation-Teeth Whitenin non peroxide MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Daniela BleachBright List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2014 04:33:13 -0000 =0ACooperation-Teeth Whitenin non peroxide =09=09 =09=09=09Espa=C3=B1ol=C2=A0| English =09=09 =09=09=09=0AHello, =09=09 =09=09=09My name is Daniela and i am the European business developer of a t= eeth whitening company call "BleachBright". =09=09 =09=09=09Currently we are looking for an official representative in your co= untry. =09=09 =09=09=09BleachBright is a factory, brand leader and pioneer of more than 9= years in the field of cosmetic dentistry and cosmetic tooth whitening, pro= fessional and at home in the international market, especially in United Sta= tes and Europe. =09=09 =09=09=09BleachBright offer very good conditions and support for new repres= entatives. =09=09 =09=09=09For more information, Please contact me. =09=09 =09=09=09=C2=A0 =09=09 =09=09=09Daniela Ramos =09=09 =09=09=09European business developer =09=09 =09=09=09BleachBright Europe=0A =09=09=09+357 95123379=0Ainfo@bleachbright.eu (info@bleachbright.eu) =0Awww= .bleachbright.eu =09=0A From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 05:32:13 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C57CB20 for ; Thu, 24 Apr 2014 05:32:13 +0000 (UTC) Received: from mail-pb0-x243.google.com (mail-pb0-x243.google.com [IPv6:2607:f8b0:400e:c01::243]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 30ED917AD for ; Thu, 24 Apr 2014 05:32:13 +0000 (UTC) Received: by mail-pb0-f67.google.com with SMTP id up15so868845pbc.10 for ; Wed, 23 Apr 2014 22:32:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:reply-to:from:to:subject:date:mime-version:content-type :thread-index; bh=DAMiXQNkC5vKu4t/smq1upHMtokvvEQzOK1hoPqtmZE=; b=BpmoHB43+H3c2PcYGhmFqHJF9u6E3boUBXOXj7WIJADVvpEsmZQILGo2jQAgJNrfNu eXWx+cGgvvfvBqXig+5vFOhYAp5T1GiLXaQlYhNhZ8Fo2uBvia+fXvCsPwLxgtmJ3EkD 9+7TQH0KWnAjsVOwY8qoMDG/76brzGfIiHW4q7tEmrXK2bfV/EANcO6RbX+UzvHfFaKH IrNL3L8O037c2kUaIvFUQkKfXqC3IrN9C1fw6KjMw+y2g1aEhPNNL/G7ECFU+7j2toxa vvdB3iPbCkMVamITPEXKrLxQeJDdCzc38DWP3ur8KdUg7+KpHvhbXzjk7V0cYLEeoKXo QHlA== X-Received: by 10.68.89.225 with SMTP id br1mr32198395pbb.114.1398317532786; Wed, 23 Apr 2014 22:32:12 -0700 (PDT) Received: from rwtPC ([122.177.151.202]) by mx.google.com with ESMTPSA id lr3sm14958487pab.4.2014.04.23.22.32.10 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 23 Apr 2014 22:32:12 -0700 (PDT) Message-ID: <5358a1dc.637a420a.36bd.fffffec6@mx.google.com> From: "priya" To: Subject: Website Content Writing Services !! Date: Thu, 24 Apr 2014 11:00:17 +0530 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: Ac9ffkMp/N3zJCyWSnaTL3P0sagxEQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.1.7601.17609 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: webbizzpriya@gmail.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2014 05:32:13 -0000 Hi, Hope you are well. I am Deepak kumar Business Development Manager. We are an Online Marketing firm with over 5 years experience in the domain. Content in any Online Marketing Campaign is one of the most crucial factors to make the campaign a success. However, in most cases the content is not good either in terms of user perspective or in terms of search engines. Allow me to offer you our Web Copywriting Services. We work hard to deliver a hassle free and time bound copywriting service to our clients so that they don't have to wait forever for a content piece. Do let me know if your views are in line with mine and you are facing such a situation with your current service provider. I look forward to your response.... Kind Regards, Deepak Kumar From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 16:10:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7DD075B for ; Thu, 24 Apr 2014 16:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 8AB421CE8 for ; Thu, 24 Apr 2014 16:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3OGA0Xu036592 for ; Thu, 24 Apr 2014 16:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3OGA0Y7036590; Thu, 24 Apr 2014 16:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 24 Apr 2014 16:10:00 GMT Resent-Message-Id: <201404241610.s3OGA0Y7036590@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tom Hoffmann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F9526DF for ; Thu, 24 Apr 2014 16:08:03 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CA341CCE for ; Thu, 24 Apr 2014 16:08:03 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3OG82Ix084336 for ; Thu, 24 Apr 2014 16:08:02 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3OG82Jc084322; Thu, 24 Apr 2014 16:08:02 GMT (envelope-from nobody) Message-Id: <201404241608.s3OG82Jc084322@cgiserv.freebsd.org> Date: Thu, 24 Apr 2014 16:08:02 GMT From: Tom Hoffmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/188968: Handbook, Error in 11.2 Linux Compatability X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2014 16:10:00 -0000 >Number: 188968 >Category: docs >Synopsis: Handbook, Error in 11.2 Linux Compatability >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 24 16:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Tom Hoffmann >Release: 11.0-CURRENT r264862 >Organization: N/A >Environment: FreeBSD tortoise 11.0-CURRENT FreeBSD 11.0-CURRENT #37 r264862: Wed Apr 23 22:44:37 EDT 2014 root@tortoise:/usr/obj/usr/src/sys/NEWCONS amd64 >Description: Section 11.2 of the Handbook shows emulators/linux_base-f10 being installed before loading the linux kernel module. However, if emulators/linux_base-f10 is installed before the linux kernel is loaded it fails with a "linux_base-f10 linuxulator is not (kld)loaded" error. >How-To-Repeat: Open Handbook to Section 11.2. >Fix: Reverse the steps in the documentation. Show the linux kernel module being loaded first followed by the installation of emulators/linux_base-f10. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 08:22:09 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 04A75531 for ; Fri, 25 Apr 2014 08:22:09 +0000 (UTC) Received: from mail-ee0-x241.google.com (mail-ee0-x241.google.com [IPv6:2a00:1450:4013:c00::241]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6533E10BB for ; Fri, 25 Apr 2014 08:22:08 +0000 (UTC) Received: by mail-ee0-f65.google.com with SMTP id d49so1846085eek.4 for ; Fri, 25 Apr 2014 01:22:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:content-transfer-encoding:from:mime-version:date :subject:message-id:to; bh=0fmLokxelxfPYAAmgpEidRLjp/gn8iDZvG5BNr8XeZc=; b=Qcn38zDb9/0C4VmO4oEbG8EdeLLsD4H+XOYrcyNgk+/Ny+MNdxBizS2/wqZHlwB+dQ OjHBRp1RXZzy8lnihGXKReLSbZDnsmG+8O4C76rhj2lQj5HDI5A4SpKvUHBs20TfzMpj epdyBrYBzT7OC7mSQ9jouDpbaXKrTu1951Q0IN/6U2Li8Z8XE7yUH1f+aOQcGvAugTvI 9L6jctnpaSjz1+NjEW/g9JuJi8ZF29QjLtwWLi6CtJ/WGmfr+SINxU/dDZv2tdDbEqeu i2+OsVpe11xvJgYQK0OXdR+9V1IsSeKqW/0IuXyP/cj7ctw3H565LJmKROTi+2Wr30GX JUPw== X-Received: by 10.15.27.195 with SMTP id p43mr9095371eeu.2.1398414126638; Fri, 25 Apr 2014 01:22:06 -0700 (PDT) Received: from [192.168.1.102] ([95.159.68.130]) by mx.google.com with ESMTPSA id u1sm22870702eex.31.2014.04.25.01.22.04 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 25 Apr 2014 01:22:05 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: Milano Mhamad Mime-Version: 1.0 (1.0) Subject: Re: Email-Exclusive Surprise Briefcase Message-Id: <5EAA5E30-27B8-4206-B759-DF5084006042@gmail.com> To: "freebsd-doc@freebsd.org" X-Mailer: iPad Mail (11D201) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Fri, 25 Apr 2014 08:22:09 -0000 X-Original-Date: Wed, 14 May 2014 11:15:52 +0300 X-List-Received-Date: Fri, 25 Apr 2014 08:22:09 -0000 3000000000 Sent from my iPad From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 10:10:05 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F8B6230 for ; Fri, 25 Apr 2014 10:10:05 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C8421C44 for ; Fri, 25 Apr 2014 10:10:05 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s3PAA5Am099143 for ; Fri, 25 Apr 2014 10:10:05 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s3PAA5Ov099138 for freebsd-doc@FreeBSD.org; Fri, 25 Apr 2014 10:10:05 GMT (envelope-from www-data) Date: Fri, 25 Apr 2014 10:10:05 GMT From: User Www-data Message-Id: <201404251010.s3PAA5Ov099138@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2014 10:10:05 -0000 Apr 25 10:00:41 build-web newsyslog[66850]: logfile turned over due to -F request Build started Fri Apr 25 10:10:00 UTC 2014 Updating 'head': U head/en_US.ISO8859-1/htdocs/donations/donors.xml Updated to revision 44656. Updating 'relnotes/doc': At revision 264914. Updating 'relnotes/man4': At revision 264914. Updating 'ports': At revision 352102. Updating 'relnotes10/doc': At revision 264914. Updating 'relnotes10/man4': At revision 264914. Updating 'relnotes9/doc': At revision 264914. Updating 'relnotes9/man4': At revision 264914. Updating 'relnotes8/doc': At revision 264914. Updating 'relnotes8/man4': At revision 264914. ===> advocacy ===> commercial ===> community ===> copyright ===> developers ===> docproj ===> docs ===> donations env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/donations/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --xinclude --valid --noout --nonet donors.xml donors.xml:2984: parser error : xmlParseEntityRef: no name 2x IBM Power PC, POWER4 CHRP Model 7028-6C4; Serial #108D21C & 108D1E ^ *** [donors.html] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/donations. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 0.34 real 0.18 user 0.15 sys From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 10:20:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C1223D3 for ; Fri, 25 Apr 2014 10:20:04 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3966C1D17 for ; Fri, 25 Apr 2014 10:20:04 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s3PAK44q012950 for ; Fri, 25 Apr 2014 10:20:04 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s3PAK4Oq012948 for freebsd-doc@FreeBSD.org; Fri, 25 Apr 2014 10:20:04 GMT (envelope-from www-data) Date: Fri, 25 Apr 2014 10:20:04 GMT From: User Www-data Message-Id: <201404251020.s3PAK4Oq012948@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2014 10:20:04 -0000 Apr 25 10:10:05 build-web newsyslog[98621]: logfile turned over due to -F request Build started Fri Apr 25 10:20:00 UTC 2014 Updating 'head': At revision 44656. Updating 'relnotes/doc': At revision 264914. Updating 'relnotes/man4': At revision 264914. Updating 'ports': At revision 352102. Updating 'relnotes10/doc': At revision 264914. Updating 'relnotes10/man4': At revision 264914. Updating 'relnotes9/doc': At revision 264914. Updating 'relnotes9/man4': At revision 264914. Updating 'relnotes8/doc': At revision 264914. Updating 'relnotes8/man4': At revision 264914. ===> advocacy ===> commercial ===> community ===> copyright ===> developers ===> docproj ===> docs ===> donations env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/donations/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --xinclude --valid --noout --nonet donors.xml donors.xml:2984: parser error : xmlParseEntityRef: no name 2x IBM Power PC, POWER4 CHRP Model 7028-6C4; Serial #108D21C & 108D1E ^ *** [donors.html] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/donations. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 0.30 real 0.16 user 0.15 sys From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 10:30:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BEE7078C for ; Fri, 25 Apr 2014 10:30:04 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AC0991E5E for ; Fri, 25 Apr 2014 10:30:04 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s3PAU4hS026677 for ; Fri, 25 Apr 2014 10:30:04 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s3PAU4Ke026675 for freebsd-doc@FreeBSD.org; Fri, 25 Apr 2014 10:30:04 GMT (envelope-from www-data) Date: Fri, 25 Apr 2014 10:30:04 GMT From: User Www-data Message-Id: <201404251030.s3PAU4Ke026675@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2014 10:30:04 -0000 Apr 25 10:20:04 build-web newsyslog[12410]: logfile turned over due to -F request Build started Fri Apr 25 10:30:00 UTC 2014 Updating 'head': At revision 44656. Updating 'relnotes/doc': At revision 264914. Updating 'relnotes/man4': At revision 264914. Updating 'ports': At revision 352103. Updating 'relnotes10/doc': At revision 264914. Updating 'relnotes10/man4': At revision 264914. Updating 'relnotes9/doc': At revision 264914. Updating 'relnotes9/man4': At revision 264914. Updating 'relnotes8/doc': At revision 264914. Updating 'relnotes8/man4': At revision 264914. ===> advocacy ===> commercial ===> community ===> copyright ===> developers ===> docproj ===> docs ===> donations env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/donations/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --xinclude --valid --noout --nonet donors.xml donors.xml:2984: parser error : xmlParseEntityRef: no name 2x IBM Power PC, POWER4 CHRP Model 7028-6C4; Serial #108D21C & 108D1E ^ *** [donors.html] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/donations. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 0.32 real 0.17 user 0.16 sys From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 10:40:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4FE77A27 for ; Fri, 25 Apr 2014 10:40:04 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3CF221080 for ; Fri, 25 Apr 2014 10:40:04 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s3PAe4jo040471 for ; Fri, 25 Apr 2014 10:40:04 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s3PAe4KL040469 for freebsd-doc@FreeBSD.org; Fri, 25 Apr 2014 10:40:04 GMT (envelope-from www-data) Date: Fri, 25 Apr 2014 10:40:04 GMT From: User Www-data Message-Id: <201404251040.s3PAe4KL040469@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2014 10:40:04 -0000 Apr 25 10:30:04 build-web newsyslog[26379]: logfile turned over due to -F request Build started Fri Apr 25 10:40:00 UTC 2014 Updating 'head': At revision 44656. Updating 'relnotes/doc': At revision 264914. Updating 'relnotes/man4': At revision 264914. Updating 'ports': At revision 352103. Updating 'relnotes10/doc': At revision 264914. Updating 'relnotes10/man4': At revision 264914. Updating 'relnotes9/doc': At revision 264914. Updating 'relnotes9/man4': At revision 264914. Updating 'relnotes8/doc': At revision 264914. Updating 'relnotes8/man4': At revision 264914. ===> advocacy ===> commercial ===> community ===> copyright ===> developers ===> docproj ===> docs ===> donations env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/donations/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --xinclude --valid --noout --nonet donors.xml donors.xml:2984: parser error : xmlParseEntityRef: no name 2x IBM Power PC, POWER4 CHRP Model 7028-6C4; Serial #108D21C & 108D1E ^ *** [donors.html] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/donations. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 0.31 real 0.11 user 0.20 sys From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 10:50:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C40CBE76 for ; Fri, 25 Apr 2014 10:50:04 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B195C118D for ; Fri, 25 Apr 2014 10:50:04 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s3PAo4JJ054264 for ; Fri, 25 Apr 2014 10:50:04 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s3PAo4FW054262 for freebsd-doc@FreeBSD.org; Fri, 25 Apr 2014 10:50:04 GMT (envelope-from www-data) Date: Fri, 25 Apr 2014 10:50:04 GMT From: User Www-data Message-Id: <201404251050.s3PAo4FW054262@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2014 10:50:04 -0000 Apr 25 10:40:04 build-web newsyslog[40029]: logfile turned over due to -F request Build started Fri Apr 25 10:50:00 UTC 2014 Updating 'head': At revision 44656. Updating 'relnotes/doc': At revision 264914. Updating 'relnotes/man4': At revision 264914. Updating 'ports': At revision 352105. Updating 'relnotes10/doc': At revision 264914. Updating 'relnotes10/man4': At revision 264914. Updating 'relnotes9/doc': At revision 264914. Updating 'relnotes9/man4': At revision 264914. Updating 'relnotes8/doc': At revision 264914. Updating 'relnotes8/man4': At revision 264914. ===> advocacy ===> commercial ===> community ===> copyright ===> developers ===> docproj ===> docs ===> donations env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/donations/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --xinclude --valid --noout --nonet donors.xml donors.xml:2984: parser error : xmlParseEntityRef: no name 2x IBM Power PC, POWER4 CHRP Model 7028-6C4; Serial #108D21C & 108D1E ^ *** [donors.html] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/donations. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 0.31 real 0.19 user 0.12 sys From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 11:00:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76C2116A for ; Fri, 25 Apr 2014 11:00:04 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6468D129F for ; Fri, 25 Apr 2014 11:00:04 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s3PB04vG069632 for ; Fri, 25 Apr 2014 11:00:04 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s3PB04E8069627 for freebsd-doc@FreeBSD.org; Fri, 25 Apr 2014 11:00:04 GMT (envelope-from www-data) Date: Fri, 25 Apr 2014 11:00:04 GMT From: User Www-data Message-Id: <201404251100.s3PB04E8069627@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2014 11:00:04 -0000 Apr 25 10:50:04 build-web newsyslog[53977]: logfile turned over due to -F request Build started Fri Apr 25 11:00:00 UTC 2014 Updating 'head': At revision 44656. Updating 'relnotes/doc': At revision 264914. Updating 'relnotes/man4': At revision 264914. Updating 'ports': At revision 352106. Updating 'relnotes10/doc': At revision 264914. Updating 'relnotes10/man4': At revision 264914. Updating 'relnotes9/doc': At revision 264914. Updating 'relnotes9/man4': At revision 264914. Updating 'relnotes8/doc': At revision 264914. Updating 'relnotes8/man4': At revision 264914. ===> advocacy ===> commercial ===> community ===> copyright ===> developers ===> docproj ===> docs ===> donations env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/donations/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --xinclude --valid --noout --nonet donors.xml donors.xml:2984: parser error : xmlParseEntityRef: no name 2x IBM Power PC, POWER4 CHRP Model 7028-6C4; Serial #108D21C & 108D1E ^ *** [donors.html] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/donations. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 0.28 real 0.13 user 0.15 sys From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 14:00:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5AE3EFF0 for ; Fri, 25 Apr 2014 14:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 477BC173A for ; Fri, 25 Apr 2014 14:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3PE01pA026799 for ; Fri, 25 Apr 2014 14:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3PE01fH026798; Fri, 25 Apr 2014 14:00:01 GMT (envelope-from gnats) Date: Fri, 25 Apr 2014 14:00:01 GMT Message-Id: <201404251400.s3PE01fH026798@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: "Michael Kerrisk (man-pages)" Subject: Re: docs/188786: Bug in inet(3) man page (inet_aton()) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: "Michael Kerrisk \(man-pages\)" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2014 14:00:01 -0000 The following reply was made to PR docs/188786; it has been noted by GNATS. From: "Michael Kerrisk (man-pages)" To: Mark Linimon Cc: freebsd-gnats-submit@freebsd.org Subject: Re: docs/188786: Bug in inet(3) man page (inet_aton()) Date: Fri, 25 Apr 2014 15:52:46 +0200 Thanks for the info, Mark. On Sat, Apr 19, 2014 at 2:54 PM, Mark Linimon wrote: > On Sat, Apr 19, 2014 at 07:06:48AM +0000, Michael Kerrisk wrote: >> I see the same text in the OpenBSD page, and also the NetBSD page. >> How does this work -- should I submit bugs for each of those systems, >> or do communicate such problems to one another? > > Short answer: we do't automatically sync with one another. > > Longer answer: it would take some investigation to find out if one or > the other of the 3 has a "canonical" set of manpages that the others > have copied. So, the best way is to open a PR for each. > > Thanks. > > mcl -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/ From owner-freebsd-doc@FreeBSD.ORG Mon Apr 28 09:40:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EAEA245 for ; Mon, 28 Apr 2014 09:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 41172124F for ; Mon, 28 Apr 2014 09:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3S9e1mk053284 for ; Mon, 28 Apr 2014 09:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3S9e1iH053283; Mon, 28 Apr 2014 09:40:01 GMT (envelope-from gnats) Resent-Date: Mon, 28 Apr 2014 09:40:01 GMT Resent-Message-Id: <201404280940.s3S9e1iH053283@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Benjamin Washington-Yule Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85D80D1 for ; Mon, 28 Apr 2014 09:32:48 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 72FE211F0 for ; Mon, 28 Apr 2014 09:32:48 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3S9Wl35040124 for ; Mon, 28 Apr 2014 09:32:47 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3S9WleG040112; Mon, 28 Apr 2014 09:32:47 GMT (envelope-from nobody) Message-Id: <201404280932.s3S9WleG040112@cgiserv.freebsd.org> Date: Mon, 28 Apr 2014 09:32:47 GMT From: Benjamin Washington-Yule To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/189065: Handbook example command does not work X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Apr 2014 09:40:01 -0000 >Number: 189065 >Category: docs >Synopsis: Handbook example command does not work >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 28 09:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Benjamin Washington-Yule >Release: 9.2-STABLE >Organization: >Environment: FreeBSD blackbox.hansons 9.2-STABLE FreeBSD 9.2-STABLE #0 r258084: Wed Feb 26 18:08:32 NZDT 2014 root@blackbox.hansons:/usr/obj/usr/src/sys/GENERIC i386 >Description: Handbook section on installing KDE https://www.freebsd.org/doc/handbook/x11-wm.html States: To install the KDE4 package, type: # pkg install kde4 But this will not work with the new package system as there is now no new meta-package. >How-To-Repeat: As above >Fix: Remove desktop environment section of handbook, if FreeBSD is not intended for desktops. It is misleading by its presence. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Mon Apr 28 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98491181 for ; Mon, 28 Apr 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 83C811A25 for ; Mon, 28 Apr 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3SB64uB085181 for ; Mon, 28 Apr 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3SB64s9085179 for freebsd-doc@FreeBSD.org; Mon, 28 Apr 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 28 Apr 2014 11:06:04 GMT Message-Id: <201404281106.s3SB64s9085179@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Apr 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/189065 doc Handbook example command does not work o docs/188968 doc [handbook] Error in 11.2 Linux Compatability o docs/188786 doc Bug in inet(3) man page (inet_aton()) o docs/188214 doc Manpage for fsck(8) doesn't say what happens when no - o docs/188043 doc [patch] man page for md5/sha1/sha256/sha412/rmd-160 cl o docs/187644 doc [patch] ifconfig.8 man page address_family paragraph n o docs/187465 doc [handbook] [patch] mention patchlevels in explaining s o docs/187351 doc handbook section on ports does not mention pkg search o docs/187142 doc [handbook] [patch] The Handbook (chapter 15.4) does no o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook o docs/186608 doc typo in 'ctime(3) man page p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185353 docs nc(1) does not exit after transfer (should be document o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc [handbook] Add an ipfilter rc.conf option in handbook o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175560 doc ugen(4) man page contains incorrect device node path o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/173013 doc FreeBSD Boot Menu documentation lacks detail o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169544 doc serial port console documentation changes s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160460 doc [handbook] Network setup guide suggestion o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139336 doc [request] ZFS documentation suggestion o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129464 doc using packages system o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/101271 doc serial console documentation implies kernel rebuild re p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) 256 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Apr 28 13:20:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ADEB3BCC for ; Mon, 28 Apr 2014 13:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 6E9311B2A for ; Mon, 28 Apr 2014 13:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3SDK05r036449 for ; Mon, 28 Apr 2014 13:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3SDK0i9036448; Mon, 28 Apr 2014 13:20:00 GMT (envelope-from gnats) Resent-Date: Mon, 28 Apr 2014 13:20:00 GMT Resent-Message-Id: <201404281320.s3SDK0i9036448@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "xmj@freebsd.org" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B658995E for ; Mon, 28 Apr 2014 13:16:09 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3CFF1AF0 for ; Mon, 28 Apr 2014 13:16:09 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3SDG9It076256 for ; Mon, 28 Apr 2014 13:16:09 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3SDG9BI076251; Mon, 28 Apr 2014 13:16:09 GMT (envelope-from nobody) Message-Id: <201404281316.s3SDG9BI076251@cgiserv.freebsd.org> Date: Mon, 28 Apr 2014 13:16:09 GMT From: "xmj@freebsd.org" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/189072: FAQ Outdated: Missing ZFS TRIM in -STABLE X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Apr 2014 13:20:00 -0000 >Number: 189072 >Category: docs >Synopsis: FAQ Outdated: Missing ZFS TRIM in -STABLE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 28 13:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: xmj@freebsd.org >Release: 11.0-CURRENT >Organization: Goldener Grund OÜ >Environment: >Description: http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#all-about-zfs currently states "ZFS TRIM support was added to FreeBSD 10-CURRENT with revision r240868. ZFS TRIM support is not yet available on the -STABLE branches." However, https://www.freebsd.org/news/status/report-2013-04-2013-06.html#ZFS-TRIM-and-Enhanced-BIO_DELETE-Support writes that as of June, ZFS TRIM support exists in all STABLE branches. Revisions of MFC: 252162 - 8-STABLE 251419 - 9-STABLE >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Apr 29 03:10:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D523F7F9 for ; Tue, 29 Apr 2014 03:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 98E656A7 for ; Tue, 29 Apr 2014 03:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3T3A0sl029525 for ; Tue, 29 Apr 2014 03:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3T3A0dl029524; Tue, 29 Apr 2014 03:10:00 GMT (envelope-from gnats) Resent-Date: Tue, 29 Apr 2014 03:10:00 GMT Resent-Message-Id: <201404290310.s3T3A0dl029524@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Brennan Vincent Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 205AC6E1 for ; Tue, 29 Apr 2014 03:06:05 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0DDA167C for ; Tue, 29 Apr 2014 03:06:05 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3T364nj081691 for ; Tue, 29 Apr 2014 03:06:04 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3T3642Q081688; Tue, 29 Apr 2014 03:06:04 GMT (envelope-from nobody) Message-Id: <201404290306.s3T3642Q081688@cgiserv.freebsd.org> Date: Tue, 29 Apr 2014 03:06:04 GMT From: Brennan Vincent To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/189095: big5 manual page is inaccurate. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Apr 2014 03:10:00 -0000 >Number: 189095 >Category: docs >Synopsis: big5 manual page is inaccurate. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 29 03:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Brennan Vincent >Release: 10 >Organization: >Environment: >Description: The manual page states that "``Big Five'' is the de facto standard for encoding Traditional Chinese text." However, nowadays Unicode encodings like UTF-8 are often used, so it is incorrect to state that Big5 is the de-facto standard. The first Taiwanese website I chose at random is encoded in UTF-8: www.ltn.com.tw >How-To-Repeat: man 5 big5 >Fix: Change the text "the de facto standard for encoding" to "a standard for encoding". >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Apr 29 06:10:02 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48550FC2 for ; Tue, 29 Apr 2014 06:10:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 3645D162F for ; Tue, 29 Apr 2014 06:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3T6A1Vl088553 for ; Tue, 29 Apr 2014 06:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3T6A1eF088552; Tue, 29 Apr 2014 06:10:01 GMT (envelope-from gnats) Date: Tue, 29 Apr 2014 06:10:01 GMT Message-Id: <201404290610.s3T6A1eF088552@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: docs/18792: commit references a PR X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Apr 2014 06:10:02 -0000 The following reply was made to PR docs/18792; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/18792: commit references a PR Date: Tue, 29 Apr 2014 06:00:09 +0000 (UTC) Author: miwi Date: Tue Apr 29 06:00:06 2014 New Revision: 352577 URL: http://svnweb.freebsd.org/changeset/ports/352577 QAT: https://qat.redports.org/buildarchive/r352577/ Log: - Force commit to fix prev entry - Update to version 2.2.3 PR: 18792 Submitted by: ports fury Modified: head/irc/scrollz/Makefile Modified: head/irc/scrollz/Makefile ============================================================================== --- head/irc/scrollz/Makefile Tue Apr 29 05:57:28 2014 (r352576) +++ head/irc/scrollz/Makefile Tue Apr 29 06:00:06 2014 (r352577) @@ -1,6 +1,6 @@ # Created by: Will Andrews # $FreeBSD$ - + PORTNAME= scrollz PORTVERSION= 2.2.3 CATEGORIES= irc ipv6 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Tue Apr 29 19:20:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E19DF84 for ; Tue, 29 Apr 2014 19:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 7A067FD1 for ; Tue, 29 Apr 2014 19:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3TJK0nn086933 for ; Tue, 29 Apr 2014 19:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3TJK0fl086932; Tue, 29 Apr 2014 19:20:00 GMT (envelope-from gnats) Date: Tue, 29 Apr 2014 19:20:00 GMT Message-Id: <201404291920.s3TJK0fl086932@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: The BSD Dreamer Subject: Re: docs/178818: gmirror(8) says to use rc.early which is no longer available X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: The BSD Dreamer List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Apr 2014 19:20:01 -0000 The following reply was made to PR docs/178818; it has been noted by GNATS. From: The BSD Dreamer To: bug-followup@freebsd.org Cc: Subject: Re: docs/178818: gmirror(8) says to use rc.early which is no longer available Date: Tue, 29 Apr 2014 14:18:52 -0500 On 2013-11-06 07:56, The BSD Dreamer wrote: > Sorry for not replying sooner, but it didn't quite work for me and > forgot to come back later to see why, since what I hacked seemed to be > working...until recently. > > So, I revisited this problem. > > One change to your diff... http://lkc.me/5D System: FreeBSD zen.lhaven.homeip.net 9.2-RELEASE-p4 FreeBSD 9.2-RELEASE-p4 #0: Tue Apr 8 18:08:22 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 So, recently, I had the system panic twice, where it did dumps but they couldn't be found by /etc/rc.d/savecore. Leads me to suspect that this rc script needs a similar tweak. http://lkc.me/5I From owner-freebsd-doc@FreeBSD.ORG Tue Apr 29 19:37:36 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6CDC822C; Tue, 29 Apr 2014 19:37:36 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 3D38C1194; Tue, 29 Apr 2014 19:37:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3TJbaU0093119; Tue, 29 Apr 2014 19:37:36 GMT (envelope-from dru@freefall.freebsd.org) Received: (from dru@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3TJba44093118; Tue, 29 Apr 2014 19:37:36 GMT (envelope-from dru) Date: Tue, 29 Apr 2014 19:37:36 GMT Message-Id: <201404291937.s3TJba44093118@freefall.freebsd.org> To: dru@FreeBSD.org, freebsd-doc@FreeBSD.org, dru@FreeBSD.org From: dru@FreeBSD.org Subject: Re: docs/189065: [handbook] Handbook example command does not work X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Apr 2014 19:37:36 -0000 Synopsis: [handbook] Handbook example command does not work Responsible-Changed-From-To: freebsd-doc->dru Responsible-Changed-By: dru Responsible-Changed-When: Tue Apr 29 19:37:13 UTC 2014 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=189065 From owner-freebsd-doc@FreeBSD.ORG Tue Apr 29 19:50:21 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 965F9523; Tue, 29 Apr 2014 19:50:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 6BD7C128A; Tue, 29 Apr 2014 19:50:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3TJoLpP096613; Tue, 29 Apr 2014 19:50:21 GMT (envelope-from dru@freefall.freebsd.org) Received: (from dru@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3TJoLEj096612; Tue, 29 Apr 2014 19:50:21 GMT (envelope-from dru) Date: Tue, 29 Apr 2014 19:50:21 GMT Message-Id: <201404291950.s3TJoLEj096612@freefall.freebsd.org> To: dru@FreeBSD.org, freebsd-doc@FreeBSD.org, dru@FreeBSD.org From: dru@FreeBSD.org Subject: Re: docs/160460: [handbook] Network setup guide suggestion X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Apr 2014 19:50:21 -0000 Synopsis: [handbook] Network setup guide suggestion Responsible-Changed-From-To: freebsd-doc->dru Responsible-Changed-By: dru Responsible-Changed-When: Tue Apr 29 19:49:55 UTC 2014 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=160460 From owner-freebsd-doc@FreeBSD.ORG Wed Apr 30 03:11:06 2014 Return-Path: Delivered-To: www@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCDB4F6D for ; Wed, 30 Apr 2014 03:11:06 +0000 (UTC) Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [119.145.14.66]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "myname.my.domain", Issuer "www.mirapoint.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 8455C1C3B for ; Wed, 30 Apr 2014 03:11:05 +0000 (UTC) Received: from 172.24.2.119 (EHLO szxeml207-edg.china.huawei.com) ([172.24.2.119]) by szxrg03-dlp.huawei.com (MOS 4.4.3-GA FastPath queued) with ESMTP id AOB81549; Wed, 30 Apr 2014 11:04:33 +0800 (CST) Received: from SZXEML413-HUB.china.huawei.com (10.82.67.152) by szxeml207-edg.china.huawei.com (172.24.2.56) with Microsoft SMTP Server (TLS) id 14.3.158.1; Wed, 30 Apr 2014 11:02:55 +0800 Received: from SZXEMA401-HUB.china.huawei.com (10.82.72.33) by szxeml413-hub.china.huawei.com (10.82.67.152) with Microsoft SMTP Server (TLS) id 14.3.158.1; Wed, 30 Apr 2014 11:02:55 +0800 Received: from SZXEMA504-MBS.china.huawei.com ([169.254.8.15]) by SZXEMA401-HUB.china.huawei.com ([10.82.72.33]) with mapi id 14.03.0158.001; Wed, 30 Apr 2014 11:02:49 +0800 From: "Chenke (kee, CT&Storage)" To: "www@FreeBSD.org" Subject: Dear Mr./Ms, Huawei Ready is authorized for you to use: Thread-Topic: Dear Mr./Ms, Huawei Ready is authorized for you to use: Thread-Index: Ac9kIKoDSCxE3rOCRiCpc1N8EozlmA== Date: Wed, 30 Apr 2014 03:02:48 +0000 Message-ID: <76BF774946A3384997410C60CCF7C7D634054678@SZXEMA504-MBS.china.huawei.com> Accept-Language: zh-CN, en-US Content-Language: zh-CN X-MS-Has-Attach: yes X-MS-TNEF-Correlator: x-originating-ip: [10.169.62.255] MIME-Version: 1.0 X-CFilter-Loop: Reflected Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: Gaoqing , Zhexuan Song , "Wangdi \(David\)" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Apr 2014 03:11:06 -0000 RGVhciBNci4vTXMsDQoNCkl0IGlzIG15IHBsZWFzdXJlIHRvIHdyaXRlIGhlcmUgZm9yIHlvdS4N Cg0KICAgICAgICAgTXkgbmFtZSBpcyBLZWUsIHRoZSBjZXJ0aWZpY2F0aW9uIG1hbmFnZXIgb2Yg SHVhd2VpLg0KDQpIdWF3ZWkgaXMgYSBsZWFkaW5nIGdsb2JhbCBJQ1Qgc29sdXRpb25zIHByb3Zp ZGVyLiBUaHJvdWdoIG91ciBkZWRpY2F0aW9uIHRvIGN1c3RvbWVyLWNlbnRyaWMgaW5ub3ZhdGlv biBhbmQgc3Ryb25nIHBhcnRuZXJzaGlwcywgd2UgaGF2ZSBlc3RhYmxpc2hlZCBlbmQtdG8tZW5k IGNhcGFiaWxpdGllcyBhbmQgc3RyZW5ndGhzIGFjcm9zcyB0aGUgY2FycmllciBuZXR3b3Jrcywg ZW50ZXJwcmlzZSwgY29uc3VtZXIsIGFuZCBjbG91ZCBjb21wdXRpbmcgZmllbGRzLg0KDQooSHVh d2VpIGdsb2JhbCB3ZWJzaXRlOiBodHRwOi8vd3d3Lmh1YXdlaS5jb20vZW4vKQ0KDQpOb3cgd2Xi gJlyZSBsYXVuY2hpbmcgYSB0ZWNobmljYWwgcGFydG5lciBwcm9ncmFtIGNhbGxlZCBIdWF3ZWkg UmVhZHkgUHJvZ3JhbSB3aGljaCBvcGVucyB0byBhbGwgdGhlIElUIHBsYXllcnMuIFRoaXMgcHJv Z3JhbSBmb2N1c2VzIG9uIGNvbXBhdGliaWxpdHkgYmV0d2VlbiBwYXJ0bmVyIHByb2R1Y3RzIGFu ZCBIdWF3ZWkgSVQgcHJvZHVjdHMuIFZlbmRvcnMgY2FuIGVuaGFuY2UgaW5mbHVlbmNlIG9mIHRo ZWlyIGJyYW5kIGFuZCBwcm9kdWN0IHRocm91Z2ggdGhpcyBwcm9ncmFtIGFuZCBwcm92aWRlIGJl dHRlciBzZXJ2aWNlIGZvciB0aGVpciBjdXN0b21lcnMuDQoNClZlbmRvciBMT0dPIGNhbiBiZSBw dXQgb24gSHVhd2VpIFJlYWR5IFdlYnNpdGUgb25jZSBiZWNvbWUgSHVhd2VpIFJlYWR5IFBhcnRu ZXIuIFBhcnRuZXLigJlzIHByb2R1Y3RzIHdpbGwgYmUgbWFya2VkIGFzIOKAnENlcnRpZmllZOKA nSBhZnRlciB2YWxpZGF0aW9uLiBDZXJ0aWZpY2F0ZXMsIEh1YXdlaSBSZWFkeSBMT0dPLCB0ZWNo bmljYWwgc3VwcG9ydCB3aWxsIGJlIGF1dGhvcml6ZWQgdG8gdXNlIHdoZW4gcHJvZHVjdHMgZ2V0 IGNlcnRpZmllZC4NCg0KSGVyZSBJ4oCZZCBsaWtlIHRvIHRlbGwgeW91IHRvIHlvdXIgcHJvZHVj dCBoYXZlIHBhc3NlZCBvdXIgY29tcGF0aWJpbGl0eSB0ZXN0LCBhbmQgd2XigJlkIGxpa2UgdG8g aGVscCB5b3UgdG8gcHVibGlzaCB5b3VyIExPR08gYW5kIHByb2R1Y3Rz4oCZIGluZm9ybWF0aW9u IG9udG8gb3VyIEh1YXdlaSBSZWFkeSBXZWJzaXRlLiBXZSBleHBlY3QgeW91ciBwYXJ0aWNpcGF0 aW9uIGluIEh1YXdlaSBSZWFkeSBQcm9ncmFtOyBwbGVhc2UgY29udGFjdCBtZSB0byBnZXQgZGV0 YWlsZWQgaW5mb3JtYXRpb24gaWYgeW914oCZcmUgaW50ZXJlc3RlZCBpbiB0aGlzIHByb2dyYW0u DQoNClNpbmNlcmVseSwNCg0KS2VlLg0KDQoNCg0K5Y2O5Li65LyB5Lia5Lia5YqhIElU5byA5pS+ 5a6e6aqM5a6kDQoNCklUIE9wZW4gTGFiLCBIdWF3ZWkgRW50ZXJwcmlzZSBCdXNpbmVzcyBHcm91 cA0KDQpNb2JpbGU6IDE4NjE1NzAzMjgxICAgVGVsOiAwMjgtNjUyODE3OTkgIEZheDogKzg2IDI4 LTYyOTA1NzY2DQoNCkUtbWFpbDoga2VlLmNoZW5AaHVhd2VpLmNvbTxtYWlsdG86ZW50ZXJwcmlz ZUBodWF3ZWkuY29tPg0KDQrmiJDpg73luILpq5jmlrDopb/ljLropb/mupDlpKfpgZMxODk55Y+3 IOWNjuS4uuaIkOmDveWfuuWcsA0KDQpIdWF3ZWkgQ2hlbmdkdSBCYXNlLCBOby4xODk5IFhpeXVh biBBdmVudWUsIEhpLXRlY2ggV2VzdGVybiBEaXN0cmljdCwgQ2hlbmdkdSwgNjExNzMxIFAuUi4g Q2hpbmENCg0KZW50ZXJwcmlzZS5odWF3ZWkuY29tPGh0dHA6Ly9lbnRlcnByaXNlLmh1YXdlaS5j b20vPg0KDQpjaWQ6aW1hZ2UwMDEuanBnQDAxQ0U5OTE4Ljg0QzE3OUEwDQoNCiAgX19fX18NCg0K 5pys6YKu5Lu25Y+K5YW26ZmE5Lu25ZCr5pyJ5Y2O5Li65YWs5Y+455qE5L+d5a+G5L+h5oGv77yM 5LuF6ZmQ5LqO5Y+R6YCB57uZ5LiK6Z2i5Zyw5Z2A5Lit5YiX5Ye655qE5Liq5Lq65oiW576k57uE 44CC56aB5q2i5Lu75L2V5YW25LuW5Lq65LulDQoNCuS7u+S9leW9ouW8j+S9v+eUqO+8iOWMheaL rOS9huS4jemZkOS6juWFqOmDqOaIlumDqOWIhuWcsOazhOmcsuOAgeWkjeWItuOAgeaIluaVo+WP ke+8ieacrOmCruS7tuS4reeahOS/oeaBr+OAguWmguaenOaCqOmUmeaUtuS6huacrOmCruS7tu+8 jA0KDQror7fmgqjnq4vljbPnlLXor53miJbpgq7ku7bpgJrnn6Xlj5Hku7bkurrlubbliKDpmaTm nKzpgq7ku7bvvIENClRoaXMgZS1tYWlsIGFuZCBpdHMgYXR0YWNobWVudHMgY29udGFpbiBjb25m aWRlbnRpYWwgaW5mb3JtYXRpb24gZnJvbSBIVUFXRUksIHdoaWNoIGlzIGludGVuZGVkIG9ubHkg Zm9yDQoNCnRoZSBwZXJzb24gb3IgZW50aXR5IHdob3NlIGFkZHJlc3MgaXMgbGlzdGVkIGFib3Zl LiBBbnkgdXNlIG9mIHRoZSBpbmZvcm1hdGlvbiBjb250YWluZWQgaGVyZWluIGluIGFueSB3YXkN Cg0KKGluY2x1ZGluZywgYnV0IG5vdCBsaW1pdGVkIHRvLCB0b3RhbCBvciBwYXJ0aWFsIGRpc2Ns b3N1cmUsIHJlcHJvZHVjdGlvbiwgb3IgZGlzc2VtaW5hdGlvbikgYnkgcGVyc29ucyBvdGhlcg0K DQp0aGFuIHRoZSBpbnRlbmRlZCByZWNpcGllbnQocykgaXMgcHJvaGliaXRlZC4gSWYgeW91IHJl Y2VpdmUgdGhpcyBlLW1haWwgaW4gZXJyb3IsIHBsZWFzZSBub3RpZnkgdGhlIHNlbmRlciBieQ0K DQpwaG9uZSBvciBlbWFpbCBpbW1lZGlhdGVseSBhbmQgZGVsZXRlIGl0IQ0KDQoNCg0KDQoNCumZ iOePgiBrZWUNCg0KDQoNCuWNjuS4uuS8geS4muS4muWKoSBJVOW8gOaUvuWunumqjOWupA0KDQpJ VCBPcGVuIExhYiwgSHVhd2VpIEVudGVycHJpc2UgQnVzaW5lc3MgR3JvdXANCg0KTW9iaWxlOiAx ODYxNTcwMzI4MSAgIFRlbDogMDI4LTY1MjgxNzk5ICBGYXg6ICs4NiAyOC02MjkwNTc2Ng0KDQpF LW1haWw6IGtlZS5jaGVuQGh1YXdlaS5jb208bWFpbHRvOmVudGVycHJpc2VAaHVhd2VpLmNvbT4N Cg0K5oiQ6YO95biC6auY5paw6KW/5Yy66KW/5rqQ5aSn6YGTMTg5OeWPtyDljY7kuLrmiJDpg73l n7rlnLANCg0KSHVhd2VpIENoZW5nZHUgQmFzZSwgTm8uMTg5OSBYaXl1YW4gQXZlbnVlLCBIaS10 ZWNoIFdlc3Rlcm4gRGlzdHJpY3QsIENoZW5nZHUsIDYxMTczMSBQLlIuIENoaW5hDQoNCmVudGVy cHJpc2UuaHVhd2VpLmNvbTxodHRwOi8vZW50ZXJwcmlzZS5odWF3ZWkuY29tLz4NCg0KY2lkOmlt YWdlMDAxLmpwZ0AwMUNFOTkxOC44NEMxNzlBMA0KDQoNCg0KwrIgIFN0b3JhZ2UgSW50ZXJvcGVy YWJpbGl0eSBNYXRyaXgg5a2Y5YKo5YW85a655oCn5YiX6KGoDQoNCmh0dHA6Ly8zbXMuaHVhd2Vp LmNvbS9tbS9kb2NOYXYvbW1OYXZpZ2F0ZS5kbz9tZXRob2Q9c2hvd01NTGlzdCZub2RlX2lkPTEt Mi0zNTYyMS0zOTIyNi0zOTI0NC0zOTI1Ng0KDQrCsiAgU3RvcmFnZSBDZXJ0aWZpY2F0aW9uIFF1 aWNrIEZpbmRlciDlrZjlgqjorqTor4HpgJ/mn6Xlt6Xlhbc8aHR0cDovLzNtcy5odWF3ZWkuY29t L21tL2RvY05hdi9tbU5hdmlnYXRlLmRvP21ldGhvZD1zaG93TU1MaXN0JnRyZWVfaWQ9MS0yLTM1 NjIxJm5vZGVfaWQ9MS0yLTM1NjIxLTM5MjI2LTM5MjQ0LTM5MjU2Pg0KDQpodHRwOi8vM21zLmh1 YXdlaS5jb20vbW0vZG9jTWFpbnRhaW4vbW1NYWludGFpbi5kbz9tZXRob2Q9c2hvd01NRGV0YWls JmZfaWQ9U1RSMTMwNzMwMjQ1OTAxNDANCg0KwrIgIFN0b3JhZ2UgSW50ZXJvcGVyYWJpbGl0eSBN YXRlcmlhbCBMaXN0IOWtmOWCqOWFvOWuueaAp+i1hOaWmeWkp+WFqDxodHRwOi8vM21zLmh1YXdl aS5jb20vbW0vZG9jTWFpbnRhaW4vbW1NYWludGFpbi5kbz9tZXRob2Q9c2hvd01NRGV0YWlsJmZf aWQ9U1RSMTIwODEwMTczNzAxMjE+DQoNCmh0dHA6Ly9zdXBwb3J0Lmh1YXdlaS5jb20vZWNvbW11 bml0eS9iYnMvMTAxNjMxMjEuaHRtbA0KDQogIF9fX19fDQoNCuacrOmCruS7tuWPiuWFtumZhOS7 tuWQq+acieWNjuS4uuWFrOWPuOeahOS/neWvhuS/oeaBr++8jOS7hemZkOS6juWPkemAgee7meS4 iumdouWcsOWdgOS4reWIl+WHuueahOS4quS6uuaIlue+pOe7hOOAguemgeatouS7u+S9leWFtuS7 luS6uuS7pQ0KDQrku7vkvZXlvaLlvI/kvb/nlKjvvIjljIXmi6zkvYbkuI3pmZDkuo7lhajpg6jm iJbpg6jliIblnLDms4TpnLLjgIHlpI3liLbjgIHmiJbmlaPlj5HvvInmnKzpgq7ku7bkuK3nmoTk v6Hmga/jgILlpoLmnpzmgqjplJnmlLbkuobmnKzpgq7ku7bvvIwNCg0K6K+35oKo56uL5Y2z55S1 6K+d5oiW6YKu5Lu26YCa55+l5Y+R5Lu25Lq65bm25Yig6Zmk5pys6YKu5Lu277yBDQpUaGlzIGUt bWFpbCBhbmQgaXRzIGF0dGFjaG1lbnRzIGNvbnRhaW4gY29uZmlkZW50aWFsIGluZm9ybWF0aW9u IGZyb20gSFVBV0VJLCB3aGljaCBpcyBpbnRlbmRlZCBvbmx5IGZvcg0KDQp0aGUgcGVyc29uIG9y IGVudGl0eSB3aG9zZSBhZGRyZXNzIGlzIGxpc3RlZCBhYm92ZS4gQW55IHVzZSBvZiB0aGUgaW5m b3JtYXRpb24gY29udGFpbmVkIGhlcmVpbiBpbiBhbnkgd2F5DQoNCihpbmNsdWRpbmcsIGJ1dCBu b3QgbGltaXRlZCB0bywgdG90YWwgb3IgcGFydGlhbCBkaXNjbG9zdXJlLCByZXByb2R1Y3Rpb24s IG9yIGRpc3NlbWluYXRpb24pIGJ5IHBlcnNvbnMgb3RoZXINCg0KdGhhbiB0aGUgaW50ZW5kZWQg cmVjaXBpZW50KHMpIGlzIHByb2hpYml0ZWQuIElmIHlvdSByZWNlaXZlIHRoaXMgZS1tYWlsIGlu IGVycm9yLCBwbGVhc2Ugbm90aWZ5IHRoZSBzZW5kZXIgYnkNCg0KcGhvbmUgb3IgZW1haWwgaW1t ZWRpYXRlbHkgYW5kIGRlbGV0ZSBpdCENCg0KDQoNCg== From owner-freebsd-doc@FreeBSD.ORG Wed Apr 30 04:20:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9BE8D2E2 for ; Wed, 30 Apr 2014 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 6D9E612C5 for ; Wed, 30 Apr 2014 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3U4K0YC087580 for ; Wed, 30 Apr 2014 04:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3U4K0FW087578; Wed, 30 Apr 2014 04:20:00 GMT (envelope-from gnats) Date: Wed, 30 Apr 2014 04:20:00 GMT Message-Id: <201404300420.s3U4K0FW087578@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Brennan Vincent Subject: Re: docs/189095: big5 manual page is inaccurate. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Brennan Vincent List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Apr 2014 04:20:01 -0000 The following reply was made to PR docs/189095; it has been noted by GNATS. From: Brennan Vincent To: bug-followup@FreeBSD.org, brennan@umanwizard.com Cc: Subject: Re: docs/189095: big5 manual page is inaccurate. Date: Tue, 29 Apr 2014 21:04:44 -0700 I=92m not sure how authoritative this site is, but it seems to back up = my claim that UTF-8 is commonly used: http://w3techs.com/technologies/segmentation/cl-zh-/character_encoding= From owner-freebsd-doc@FreeBSD.ORG Thu May 1 14:40:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AB6FA0C for ; Thu, 1 May 2014 14:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 D191C12D6 for ; Thu, 1 May 2014 14:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s41Ee0jF079760 for ; Thu, 1 May 2014 14:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s41Ee0bQ079759; Thu, 1 May 2014 14:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 1 May 2014 14:40:00 GMT Resent-Message-Id: <201405011440.s41Ee0bQ079759@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Paul Hoffman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E406E9F5 for ; Thu, 1 May 2014 14:39:01 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D167E12C4 for ; Thu, 1 May 2014 14:39:01 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s41Ed1jL040815 for ; Thu, 1 May 2014 14:39:01 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s41Ed1wL040808; Thu, 1 May 2014 14:39:01 GMT (envelope-from nobody) Message-Id: <201405011439.s41Ed1wL040808@cgiserv.freebsd.org> Date: Thu, 1 May 2014 14:39:01 GMT From: Paul Hoffman To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/189199: make.conf should mention WITH_OPENSSL_PORT X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 May 2014 14:40:01 -0000 >Number: 189199 >Category: docs >Synopsis: make.conf should mention WITH_OPENSSL_PORT >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu May 01 14:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Paul Hoffman >Release: 9.2 >Organization: >Environment: FreeBSD labbackup.proper.com 9.2-RELEASE-p5 FreeBSD 9.2-RELEASE-p5 #0: Tue Apr 29 18:53:19 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: In a recent thread on freebsd-security and freebsd-ports, it turns out that there is a very useful feature of make.conf called WITH_OPENSSL_PORT. This should be documented in the make.conf man page. >How-To-Repeat: >Fix: Proposed wording (but this needs to be checked the ports people): WITH_OPENSSL_PORT (bool) Causes port building to use the OpenSSL from the ports (if available) instead of the OpenSSL from base. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri May 2 00:10:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2713D1A for ; Fri, 2 May 2014 00:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 999B51C94 for ; Fri, 2 May 2014 00:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s420A0CJ000481 for ; Fri, 2 May 2014 00:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s420A0IM000480; Fri, 2 May 2014 00:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 2 May 2014 00:10:00 GMT Resent-Message-Id: <201405020010.s420A0IM000480@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Lawrence "The Dreamer" Chen Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7BBFDCB7 for ; Fri, 2 May 2014 00:02:01 +0000 (UTC) Received: from mho-02-ewr.mailhop.org (mho-02-ewr.mailhop.org [204.13.248.72]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BE131C5C for ; Fri, 2 May 2014 00:02:00 +0000 (UTC) Received: from ip70-179-144-228.fv.ks.cox.net ([70.179.144.228] helo=zen.lhaven.homeip.net) by mho-02-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1Wg0vQ-000PaJ-3x for FreeBSD-gnats-submit@freebsd.org; Fri, 02 May 2014 00:02:00 +0000 Received: from zen.lhaven.homeip.net (localhost [127.0.0.1]) by zen.lhaven.homeip.net (8.14.8/8.14.7) with ESMTP id s4200hfh081257; Thu, 1 May 2014 19:00:53 -0500 (CDT) (envelope-from lchen@zen.lhaven.homeip.net) Received: (from lchen@localhost) by zen.lhaven.homeip.net (8.14.8/8.14.7/Submit) id s4200NU6081077; Thu, 1 May 2014 19:00:23 -0500 (CDT) (envelope-from lchen) Message-Id: <201405020000.s4200NU6081077@zen.lhaven.homeip.net> Date: Thu, 1 May 2014 19:00:23 -0500 (CDT) From: Lawrence "The Dreamer" Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: docs/189214: mlock(2) allocation limit description inaccurate X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Lawrence The Dreamer Chen List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 May 2014 00:10:00 -0000 >Number: 189214 >Category: docs >Synopsis: mlock(2) allocation limit description inaccurate >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri May 02 00:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Lawrence "The Dreamer" Chen >Release: FreeBSD 9.2-RELEASE-p5 amd64 >Organization: >Environment: System: FreeBSD zen.lhaven.homeip.net 9.2-RELEASE-p5 FreeBSD 9.2-RELEASE-p5 #0: Tue Apr 29 19:09:13 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: In mlock(2), it says: Since physical memory is a potentially scarce resource, processes are limited in how much they can lock down. A single process can mlock() the minimum of a system-wide ``wired pages'' limit vm.max_wired and the per-process RLIMIT_MEMLOCK resource limit. >How-To-Repeat: >Fix: The more correct answer is like its the minimum of the per-process RLIMIT_MEMLOCK resource limt, and the difference of the system-wide ''wired pages'' limit vm.max_wired and the total count of wired pages on the system vm.stat.vm.v_wire_count. Been trying to figure out why gnome-keyring-daemon can't lock any memory even though I have set "security.bsd.unprivileged_mlock=1" and RLIMIT_MEMLOCK default to 64 (kilobytes.) vm.max_wired on my system defaults to 1323555 (pages - pagesize is 4k.) Well, turns out vm.stat.vm.v_wire_count was 2020311.... >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri May 2 01:30:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB36F28D for ; Fri, 2 May 2014 01:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A436C15CC for ; Fri, 2 May 2014 01:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s421U0jM031056 for ; Fri, 2 May 2014 01:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s421U0sP031044; Fri, 2 May 2014 01:30:00 GMT (envelope-from gnats) Resent-Date: Fri, 2 May 2014 01:30:00 GMT Resent-Message-Id: <201405020130.s421U0sP031044@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Allan Jude Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4C8B108 for ; Fri, 2 May 2014 01:27:46 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A007C15C0 for ; Fri, 2 May 2014 01:27:46 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s421RkTH039408 for ; Fri, 2 May 2014 01:27:46 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s421Rk5L039399; Fri, 2 May 2014 01:27:46 GMT (envelope-from nobody) Message-Id: <201405020127.s421Rk5L039399@cgiserv.freebsd.org> Date: Fri, 2 May 2014 01:27:46 GMT From: Allan Jude To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/189216: [patch] add a handbook section on hosting VMs with bhyve X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 May 2014 01:30:00 -0000 >Number: 189216 >Category: docs >Synopsis: [patch] add a handbook section on hosting VMs with bhyve >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 02 01:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Allan Jude >Release: 10.0-STABLE >Organization: ScaleEngine Inc. >Environment: FreeBSD Trooper.HML3.ScaleEngine.net 10.0-STABLE FreeBSD 10.0-STABLE #0 Sat Mar 22 13:15:35 EDT 2014 root@Trooper.HML3.ScaleEngine.net:/usr/obj/media/10stable/sys/GENERIC amd64 >Description: This patch adds a bhyve section to the virtualization chapter, and separates the virtualbox chapter. Sponsored by: ScaleEngine Inc. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: handbook/virtualization/chapter.xml =================================================================== --- handbook/virtualization/chapter.xml (revision 44736) +++ handbook/virtualization/chapter.xml (working copy) @@ -20,6 +20,16 @@ Contributed by + + + + + Allan + Jude + + bhyve section by + + @@ -1110,8 +1120,8 @@ - - &os; as a Host + + &os; as a Host with <application>VirtualBox</application> &virtualbox; is an actively developed, complete virtualization package, that is available @@ -1273,7 +1283,310 @@ &prompt.root; service devfs restart + + + &os; as a Host with + <application>bhyve</application> + + Starting with &os; 10.0-RELEASE the BSD licensed hypervisor + bhyve is part of the base system. + bhyve supports a number of guests + including &os;, OpenBSD, and many flavors of &linux;. + bhyve currently only supports a + serial console and does not emulate a graphical console. + bhyve is a legacy-free hypervisor, + meaning that instead of translating instructions, and manually + managing memory mappings, it relies on the virtualization + offload features of newer CPUs. + bhyve also avoids emulating + compatible hardware for the guest, and instead relies on the + paravirtualization drivers, called + VirtIO. + + Due to the design of bhyve, it is + only possible to use bhyve on + computers with newer processors that support &intel; + EPT (Extended Page Tables) or &amd; + RVI (Rapid Virtualization Indexing, also know + as NPT or Nested Page Tables). Most newer + processors, specifically the &intel; &core; i3/i5/i7 and + &intel; &xeon; E3/E5/E7 support this feature, for a + complete list of &intel; processors that support + EPT see the &intel; + ARK. RVI is found on the 3rd + generation and later of the &amd.opteron; (Barcelona) + processors. The easiest way to check for support of + EPT or RVI on a system is + to look for the POPCNT processor feature flag + on the Features2 line in + dmesg or + /var/run/dmesg.boot. + + + Preparing the Host + + The first step to creating a virtual machine in + bhyve is configuring the host + system. Load the bhyve kernel + module called vmm. Create a tap + interface for the network device in the virtual machine to + attach to. Optionally create a bridge interface and add the + tap interface as well as the physical + interface as members to allow the virtual machine to have + access to the network. + + &prompt.root; kldload vmm +&prompt.root; kldload nmdm +&prompt.root; ifconfig tap0 create +&prompt.root; sysctl net.link.tap.up_on_open=1 +net.link.tap.up_on_open: 0 -> 1 +&prompt.root; ifconfig bridge0 create +&prompt.root; ifconfig bridge0 addm igb0 addm tap0 +&prompt.root; ifconfig bridge0 up + + + + + Creating a FreeBSD Guest + + Create a file to use as the virtual disk for the guest + machine. + + &prompt.root; truncate -s 16G guest.img + + Download an installation image of &os; to install: + + &prompt.root; fetch ftp://ftp.freebsd.org/pub/FreeBSD/ISO-IMAGES-amd64/10.0/FreeBSD-10.0-RELEASE-amd64-bootonly.iso +FreeBSD-10.0-RELEASE-amd64-bootonly.iso 100% of 209 MB 570 kBps 06m17s + + &os; comes with an example script for running a virtual + machine in bhyve. The script will + start the virtual machine and run it in a loop, so it will + automatically restart if it crashes. The script takes a + number of options to control the configuration of the machine. + controls the number of virtual CPUs. + limits the amount of memory available to + the guest. defines which + tap device to use. + indicates which disk image to use. tells + bhyve to boot from the CD image + instead of the disk, and defines which CD + image to use. Finally the last parameter is the name of the + virtual machine, used to track the running machines. Start + 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 + + The system will boot and start the installer. After + installing a system in the virtual machine, when the system + asks about dropping in to a shell at the end of the + installation, choose Yes. A small + change needs to be made to make the system start with a serial + console. Edit /etc/ttys and replace the + existing console line with: + + console "/usr/libexec/getty std.9600" xterm on secure + + Reboot the virtual machine. Rebooting the virtual machine + causes bhyve to exit. However the + vmrun.sh script runs + bhyve in a loop and will automatically + restart it. When this happens, choose the reboot option from + the boot loader menu, and this will escape the loop. Now the + guest can be started from the virtual disk: + + &prompt.root; sh /usr/share/examples/bhyve/vmrun.sh -c 4 -m 1024M -t tap0 -d guest.img guestname + + + + Creating a &linux; Guest + + bhyve requires + sysutils/grub2-bhyve in order to boot + operating systems other than &os;. + + Create a file to use as the virtual disk for the guest + machine. + + &prompt.root; truncate -s 16G linux.img + + Starting a virtual machine with + bhyve is a two step process. First + a kernel must be loaded, then the guest can be started. + sysutils/grub2-bhyve is used to load the + &linux; kernel. Create a device.map that + grub will use to map the virtual + devices to the files on the host system: + + (hd0) ./linux.img +(cd0) ./somelinux.iso + + Use sysutils/grub2-bhyve to load the + &linux; kernel from the ISO image: + + &prompt.root; grub-bhyve -m device.map -r cd0 -M 1024M linuxguest + + This will start grub. If the installation CD contains a + grub.cfg then a menu will be displayed. + If not, the vmlinuz and + initrd files must be located and loaded + manually: + + grub> ls +(hd0) (cd0) (cd0,msdos1) (host) +grub> ls (cd0)/isolinux +boot.cat boot.msg grub.conf initrd.img isolinux.bin isolinux.cfg memtest +splash.jpg TRANS.TBL vesamenu.c32 vmlinuz +grub> linux (cd0)/isolinux/vmlinuz +grub> initrd (cd0)/isolinux/initrd.img +grub> boot + + Now that the &linux; kernel is loaded, the guest can be + started: + + &prompt.root; bhyve -AI -H -P \ +-s 0:0,hostbridge \ +-s 1:0,lpc \ +-s 2:0,virtio-net,tap1 \ +-s 3:0,virtio-blk,./linux.img \ +-s 4:0,ahci-cd,./somelinux.iso \ +-l com1,stdio \ +-c 4 -m 1024M linuxguest + + The system will boot and start the installer. After + installing a system in the virtual machine, reboot the virtual + machine. This will cause bhyve to + exit. The instance of the virtual machine needs to be + destroyed before it can be started again: + + &prompt.root; bhyvectl --destroy --vm=linuxguest + + Now the guest can be started directly from the virtual + disk. Load the kernel: + + &prompt.root; grub-bhyve -m device.map -r hd0,msdos1 -M 1024M linuxguest +grub> ls +(hd0) (hd0,msdos2) (hd0,msdos1) (cd0) (cd0,msdos1) (host) +(lvm/VolGroup-lv_swap) (lvm/VolGroup-lv_root) +grub> ls (hd0,msdos1)/ +lost+found/ grub/ efi/ System.map-2.6.32-431.el6.x86_64 config-2.6.32-431.el6.x +86_64 symvers-2.6.32-431.el6.x86_64.gz vmlinuz-2.6.32-431.el6.x86_64 +initramfs-2.6.32-431.el6.x86_64.img +grub> linux (hd0,msdos1)/vmlinuz-2.6.32-431.el6.x86_64 root=/dev/mapper/VolGroup-lv_root +grub> initrd (hd0,msdos1)/initramfs-2.6.32-431.el6.x86_64.img +grub> boot + + Boot the virtual machine: + + &prompt.root; bhyve -AI -H -P \ +-s 0:0,hostbridge \ +-s 1:0,lpc \ +-s 2:0,virtio-net,tap1 \ +-s 3:0,virtio-blk,./linux.img \ +-l com1,stdio \ +-c 4 -m 1024M linuxguest + + &linux; will now boot in the virtual machine and + eventually present you with the login prompt. Login and use + the virtual machine. When you are finished, reboot the + virtual machine to exit bhyve. + Destroy the virtual machine instance: + + &prompt.root; bhyvectl --destroy --vm=linuxguest + + + + Virtual Machines Consoles + + It is advantageous to wrap the + bhyve console in a session + management tool such as sysutils/tmux or + sysutils/screen in order to detach and + reattach to the console. It is also possible to have the + console of bhyve be a null modem + device that can be accessed with cu. Load + the nmdm kernel module, and replace + with + . The + /dev/nmdm devices are created + automatically as needed, each is a pair, + /dev/nmdm1A and + /dev/nmdm1B corresponding to the two ends + of the null modem cable. See &man.nmdm.4; for more + information. + + &prompt.root; bhyve -AI -H -P \ +-s 0:0,hostbridge \ +-s 1:0,lpc \ +-s 2:0,virtio-net,tap1 \ +-s 3:0,virtio-blk,./linux.img \ +-l com1,/dev/nmdm0A \ +-c 4 -m 1024M linuxguest +&prompt.root; cu -l /dev/nmdm0B -s 9600 +Connected + +Ubuntu 13.10 handbook ttyS0 + +handbook login: + + + + + Managing Virtual Machines + + A device node is created in /dev/vmm for each virtual + machine. This allows the administrator to easily see a list + of the running virtual machines: + + &prompt.root; ls -al /dev/vmm +total 1 +dr-xr-xr-x 2 root wheel 512 Mar 17 12:19 ./ +dr-xr-xr-x 14 root wheel 512 Mar 17 06:38 ../ +crw------- 1 root wheel 0x1a2 Mar 17 12:20 guestname +crw------- 1 root wheel 0x19f Mar 17 12:19 linuxguest +crw------- 1 root wheel 0x1a1 Mar 17 12:19 otherguest + + Virtual machines can be destroyed using + bhyvectl: + + &prompt.root; bhyvectl --destroy --vm=guestname + + + + Persistent Configuration + + In order to make the system able to start + bhyve guests at boot time, the + following configurations must be made in the specified + files: + + + + <filename>/etc/sysctl.conf</filename> + + net.link.tap.up_on_open=1 + + + + <filename>/boot/loader.conf</filename> + + vmm_load="YES" +nmdm_load="YES" +if_bridge_load="YES" +if_tap_load="YES" + + + + <filename>/etc/rc.conf</filename> + + cloned_interfaces="bridge0 tap0" +ifconfig_bridge0="addm igb0 addm tap0" + + + - By default, PF reads its - configuration rules from /etc/pf.conf and - modifies, drops, or passes packets according to the rules or - definitions specified in this file. The &os; installation - includes several sample files located in - /usr/share/examples/pf/. Refer to the - PF - FAQ for complete coverage - of PF rulesets. +By default, PF reads its + configuration rules from /etc/pf.conf and + modifies, drops, or passes packets according to the rules or + definitions specified in this file. The &os; installation includes + several sample files located in + /usr/share/examples/pf/. Refer to the PF FAQ for + complete coverage of PF rulesets. - To control PF, use - pfctl. summarizes +To control PF, use + pfctl. summarizes some useful options to this command. Refer to &man.pfctl.8; for a description of all available options: @@ -1702,8 +1701,9 @@ firewall rules. - filename: full path of the file - containing the firewall ruleset. + filename: + full path of the file containing the firewall + ruleset. @@ -2312,7 +2312,7 @@ On the inbound side, the ruleset has to deny bad packets and allow only authorized services. A packet which matches an inbound rule is posted to the dynamic state table and the - packet is released to the LAN. The packet + packet is released to the LAN. The packet generated as a response is recognized by the check-state rule as belonging to an existing session. It is then sent to rule @@ -2614,12 +2614,192 @@ &prompt.root; ipfw -q add 00611 allow udp from any to 192.0.2.11 53 out via tun0 keep-state - - - IPFILTER (IPF) + + Using Dummynet - + &man.dummynet.4; is a traffic shaper, bandwidth manager + and delay emulator which may be used to simulate different + types of physical links. It can also be "misused" + as a traffic shaper. + + &man.dummynet.4; offers two objects. Pipes are an + abstraction of a given link, having a certain bandwidth, delay + and loss. Queues are an abstraction used to implement + weighted fair queuing. In practice, pipes can be used to set + hard limits to the bandwidth that a flow can use, wheres + queues can be used to determine how different flows share that + bandwidth. + + To ensure that &man.dummynet.4; is loaded at boot time add + the following line to + /boot/loader.conf: + + dummynet_load="YES" + + Please note that in order for &man.dummynet.4; to work + correctly, it is highly recommended to increase the system + clock tick rate. This can be accomplished by adding the + following option to kernel configuration files. + + options HZ=1000 + + Use the following command to configure a pipe which has + 4Kbps and a 100ms delay: + + &prompt.root; ipfw pipe 10 config bw 4Kbit/s delay 100 + + To use this pipe, i.e have some traffic go through it, + use the following command: + + &prompt.root; ipfw -q add pipe 10 all from 10.0.0.0/24 to any + + Please note that to properly limit users, one should + create separate pipes for upload and download. + + Using the above pipe configuration, all LAN users compete + for the same bandwidth. If you would like to assign each of + them 4Kbps upload and download, you may create dynamic pipes + based on the source IP (for uplink) or destination IP (for + downlink): + + &prompt.root; ipfw pipe 10 config bw 4Kbit/s src-ip 0xffffffff +&prompt.root; ipfw pipe 11 config bw 4Kbit/s dst-ip 0xffffffff +&prompt.root; ipfw -q add pipe 10 all from any to any recv $if_lan +&prompt.root; ipfw -q add pipe 11 all from any to any xmit $if_lan + + + + Using Tables + + Tables are a way of referring to multiple IP addresses + using a single identifier. They are useful in the following + situations: + + + + you must apply the same rule to a lot of IP + addresses (table lookups are fast) + + + you must apply a lot of rules to some IP addresses + (use tables to add / remove IP addresses from a single + location in the ruleset) + + + + IP addresses stored in a table may also have an optional + 32-bit unsigned value assigned to them. A rule may be written + in such a way that it will only match if the IP found in + a table has been assigned a specific value. + + These are the commands used to manipulate tables from the + shell: + + Clear all IP addresses from a table: + + &prompt.root; ipfw table 10 flush + + Add a single IP address to a table: + + &prompt.root; ipfw table 10 add 172.27.0.1 + + Add a CIDR network to a table: + + &prompt.root; ipfw table 10 add 192.168.0.0/24 + + Add a CIDR network to a table and also assign a value to + it: + + &prompt.root; ipfw table 10 add 192.168.0.0/24 100 + + List the contents of a table: + + &prompt.root; ipfw table 10 list + + To use the table in a firewall rule: + + &prompt.root; ipfw -q add allow tcp from "table(10)" to any + + Or, to use the table and the value in a firewall + rule: + + &prompt.root; ipfw -q add allow tcp from "table(10,100)" to any + + The following listing is an example of how one could use + tables in a ruleset: + + #!/bin/sh +# Flush out the list before we begin. +ipfw -q -f flush + +# Set rules command prefix +cmd="ipfw -q add" +table="ipfw -q table" + +# Create a table with all IPs allowed to connect to SSH +$table 1 flush # required +$table 1 add 172.27.0.1 # single IP address +$table 1 add 192.168.0.0/24 # CIDR network + +# Actual rule which allows SSH +$cmd allow from "table(1)" to me 22 keep-state + +# Deny everything else +$cmd deny from any to any + + Here is another example, in which tables and values are + used to group clients into multiple bandwidth limitations + depending on their subscription: + + #!/bin/sh +# Flush out the list before we begin. +ipfw -q -f flush + +# Set rules command prefix +cmd="ipfw -q add" +table="ipfw -q table" +pipe="ipfw -q pipe" +if_net="em0" + +# +# Pipes +# + +# Please note that dynamic pipes will be created for each client. +# In other words, clients DO NOT compete for the bandwidth. + +# First subscription rate. +$pipe 10 config queue 10 bw 512Kbit/s mask src-ip 0xffffffff # uplink +$pipe 11 config queue 10 bw 512Kbit/s mask dst-ip 0xffffffff # downlink + +# Second subscription rate. +$pipe 20 config queue 10 bw 768Kbit/s mask src-ip 0xffffffff # uplink +$pipe 21 config queue 10 bw 768Kbit/s mask dst-ip 0xffffffff # downlink + +# Create a table with all IPs allowed to have Internet connection. +# Note that although it is not required, values are the same +# as the bandwidth which will be given to the client. +$table 1 flush # required +$table 1 add 172.27.0.2 512 # 512Kbps client +$table 1 add 172.27.0.3 768 # 768Kbps client +$table 1 add 172.27.0.4 512 # 512Kbps client + +# Actual rules which classify the traffic +$cmd pipe 10 all from "table(1,512)" to any xmit $if_net +$cmd pipe 11 all from any to "table(1,512)" recv $if_net +$cmd pipe 20 all from "table(1,768)" to any xmit $if_net +$cmd pipe 21 all from any to "table(1,768)" recv $if_net + +# Deny everything else +$cmd deny all from any to any + + + + + IPFILTER (IPF) + + firewall IPFILTER --------------080201090104010609090803-- From owner-freebsd-doc@FreeBSD.ORG Mon May 26 06:20:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 270222B2 for ; Mon, 26 May 2014 06:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 12E482B67 for ; Mon, 26 May 2014 06:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4Q6K0Zx097694 for ; Mon, 26 May 2014 06:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4Q6K031097693; Mon, 26 May 2014 06:20:00 GMT (envelope-from gnats) Date: Mon, 26 May 2014 06:20:00 GMT Message-Id: <201405260620.s4Q6K031097693@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: venture37 Subject: Re: docs/47594: [patch] passwd(5) incorrectly states allowed username and group syntax Reply-To: venture37 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 06:20:01 -0000 The following reply was made to PR docs/47594; it has been noted by GNATS. From: venture37 To: bug-followup@FreeBSD.org, fernando@mecon.gov.ar Cc: Subject: Re: docs/47594: [patch] passwd(5) incorrectly states allowed username and group syntax Date: Mon, 26 May 2014 07:19:31 +0100 This is a multi-part message in MIME format. --------------070708080302060506070403 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Attached is a diff which applies to -HEAD (r266021) Checked contents of badchars in pw_checkname(), usr.sbin/pw/pw_user.c to see if the list is still correct. --------------070708080302060506070403 Content-Type: text/plain; charset=UTF-8; name="passwd.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="passwd.txt" Index: share/man/man5/passwd.5 =================================================================== --- share/man/man5/passwd.5 (revision 266021) +++ share/man/man5/passwd.5 (working copy) @@ -126,8 +126,21 @@ entries, and that one by random selection. .Pp The login name must never begin with a hyphen -.Pq Ql - ; -also, it is strongly +.Pq Ql \&- +and should not contain 8-bit characters, neither tab nor spaces, colons +.Pq Ql \&: , +quotes +.Pq Ql \&" , +mathematical and comparison operators +.Pq Ql \&+*-%^<>=# , +parenthesis +.Pq Ql \&() , +and various punctuation and other symbols +.Pq Ql \&,&$!@~?|\[rs]/ . +As a special case to help Samba users, the dollar symbol +.Pq Ql \&$ +is allowed as the last character. +Also, it is strongly suggested that neither upper-case characters or dots .Pq Ql \&. be part --------------070708080302060506070403-- From owner-freebsd-doc@FreeBSD.ORG Mon May 26 08:59:38 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90774D5D for ; Mon, 26 May 2014 08:59:38 +0000 (UTC) Received: from mx-out-manc2.simplymailsolutions.com (mx-out-manc2.simplymailsolutions.com [88.151.129.22]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2456C28FE for ; Mon, 26 May 2014 08:59:36 +0000 (UTC) Received: from [10.1.40.31] (helo=SHA-EXSP2-HUB01.exsp2.ifeltd.com) by mx-out-manc2.simplymailsolutions.com with esmtps (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1Woqkn-000207-S1 for doc@freebsd.org; Mon, 26 May 2014 09:59:33 +0100 Received: from simonsamsung (78.146.56.105) by SHA-EXSP2-HUB01.exsp2.ifeltd.com (10.1.40.31) with Microsoft SMTP Server id 14.3.123.3; Mon, 26 May 2014 09:58:37 +0100 Organization: Health-Connected Ltd Reply-To: Message-ID: From: Simon Hooper To: Subject: Health-Connected - June Newsletter Date: Mon, 26 May 2014 08:58:59 +0100 MIME-Version: 1.0 X-Originating-IP: [78.146.56.105] Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 08:59:38 -0000 =A0 =20 Hi Sir/, =A0 We finally had our much awaited meeting at the House of Commons on = Wednesday.=20 Whilst a lower turnout than expected (62 people registered, half made it, = with=20 apologies being provided by most), however the room was nearly full. From = our=20 side of the table, it could have gone better =96 they laid the room out = not as=20 requested, we were told it was freezing, Vince Cable arrived early and = completely=20 threw me off script, and they forgot to provide the water and orange = juice=20 that we paid for!=A0=20 =A0 But having said that, the Jubilee room reeked of history and those = present=20 were serious,=A0predominantly industry based investors, including two = domiciliary=20 care group owners, a Medtech fund owner, experts in dementia care, the = CEO=20 of a social enterprise think tank, carers, GP=92s, etc. Just what we = wanted.=20 And most importantly, we have many follow ups booked already.=20 =A0 Unfortunately, apologies are due for we had wanted to speak to many that = we=20 had only briefly spoken to before, but we just did not make it around the = room.=20 We now know that we should have organised the meeting a = bit=A0differently.=A0Its=20 always difficult at such meetings to adequately circulate, but we would = welcome=20 the opportunity to answer any remaining questions you may have, whether = over=20 the phone or in a meeting. For of course I do hope that we nudged you = forward=20 adequately to becoming an investor yourself in our project =96 whether = you're=20 motivated by the SEIS qualification, the highly scalable upside of the = business=20 or principally by the social impact nature of Re-MindMe. Since our = investors=20 to date range from =A310 to =A320,000, we believe that there is a means = for everyone=20 to offer support=2E =A0 For those of you that were not able to make the meeting, and indeed in = general,=20 we will shortly be posting an abbreviated video of the event and we look = forward=20 to hearing from you so as=A0further discussions.=20 =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=20 Best wishes, Simon =2E Key Links Click here to view video of the=A0House of Commons event. =20 =20 Thanks for your support=2E =A0=A0=A0http://lnk.ie/Q4CT/e=3Ddoc@freebsd.org/http://www.health-connected= =2Ecom=A0=A0=A0|=A0=A0=A0simon@health-connected.com=A0=A0=A0|=A0=A0=A0P: = 07805982299=A0 Legal Statement: This email has reached you since you have opted in with = Health-Connected=20 Ltd in relation to its current crowed funding campaign=A0or are connected = through=20 a network such as Linked In. If you wish to unsubscribe please Click Here = =A0 From owner-freebsd-doc@FreeBSD.ORG Mon May 26 09:02:30 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2B57ECE for ; Mon, 26 May 2014 09:02:30 +0000 (UTC) Received: from mail-qg0-x235.google.com (mail-qg0-x235.google.com [IPv6:2607:f8b0:400d:c04::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 724C42996 for ; Mon, 26 May 2014 09:02:30 +0000 (UTC) Received: by mail-qg0-f53.google.com with SMTP id f51so11618377qge.12 for ; Mon, 26 May 2014 02:02:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=GG8yqUuhpggvqYas/wJjkL3GaVtfW+euICo6WJNKjPA=; b=iMM8cEA2NlEQbMP13Z+PnvnU7ouGEvUcxo10r61YC1NBwMfPueSvLFeN0TteNVDZ6m uIKe0Xe+i9GtTTOwdyyccu7hjsiImUViHKVLLs9KZjfZLNj47u1Hkklzq7vYDnmYSgXs 1XpoCGJiisb4IGbmCMWuB69TfkeL5B9lMMxMqT1mjJ4HIQwC7skbdXhNJ+XAyjZXKPzx tTxschhW9YUAhW2kIhTDm7EOiyin8/2epGYCXVmDZcreinR/ap1qkm/S+6xuJIEH1dcv YmdSXNn+Ng8TmsCcd+LsqQwv1jzSg7ucNz6cW/EgVsGRX6BZjM9PL09b+h6cXsag2zCu 1cqw== MIME-Version: 1.0 X-Received: by 10.140.80.67 with SMTP id b61mr28469260qgd.98.1401094949617; Mon, 26 May 2014 02:02:29 -0700 (PDT) Received: by 10.140.91.113 with HTTP; Mon, 26 May 2014 02:02:29 -0700 (PDT) Date: Mon, 26 May 2014 17:02:29 +0800 Message-ID: Subject: I want to contribute the translation of the FreeBSD Handbook to Traditional Chinese From: RayCherng Yu To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 09:02:30 -0000 Hi All I am the FreeBSD newbie.I never used FreeBSD before. I just install the FreeBSD 10.0. The FreeBSD Handbook is really helpful to the installation and setup the system. But the Traditional Chinese translation is outdated. So all my information is from the FreeBSD Handbook English version. I think I could translate the new version of Handbook to Traditional Chinese. An uptodate information will help people willing to install and use FreeBSD. But I found some problems when I search the way to contribute: First, I cannot contact the Traditional Chinese translation project leader via Email(chinsan@FreeBSD.org) or Website( https://opensvn.csie.org/traccgi/freebsddoc/,it is dead). It seems no one maintains this project.How can I do? Second, I use the UTF-8 as the encoding of my system.I found there is no zh_TW.UTF-8 in Handbook directory.Can I start a new encoding of translation project? (Like zh_CN, there are three directory of zh_CN, including zh_CN.UTF-8). Maybe last time someone modify the zh_TW document is long long time ago. The UTF-8 is not so popular. Third, the document structure(table of contents) of the current Traditional Chinese translation edition is not the same as the current uptodate English edition.How to update /modify this structure? If I have more time to contribute, I will be very glad to translate the FreeBSD website(http://www.freebsd.org/) to traditional Chinese to promote FreeBSD to people in Taiwan or HongKong. How could I do to ? Thanks and Best Regards RayCherng --=20 "Life is like a snowball. The important thing is finding wet snow and a really long hill." "Price is what you pay. Value is what you get." "The first rule of Investing is don't lose money; the second rule is don't forget rule #1..." "Wall Street is the only place that people ride to work in a Rolls-Royce to get advice from those who take the subway..." =E2=80=94 Warren Buffett. From owner-freebsd-doc@FreeBSD.ORG Mon May 26 11:06:04 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41A19BB5 for ; Mon, 26 May 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 2D82D246D for ; Mon, 26 May 2014 11:06:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4QB64iH031062 for ; Mon, 26 May 2014 11:06:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4QB63HL031060 for freebsd-doc@FreeBSD.org; Mon, 26 May 2014 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 May 2014 11:06:03 GMT Message-Id: <201405261106.s4QB63HL031060@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 11:06:04 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=doc .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/189388 doc [handbook] Release (releng) documention uses deprecate o docs/189268 doc 3 getaddrinfo(3) - hostanme="localhost", but it return o docs/189095 doc big5 manual page is inaccurate. o docs/188214 doc Manpage for fsck(8) doesn't say what happens when no - o docs/187644 doc [patch] ifconfig.8 man page address_family paragraph n o docs/187142 doc [handbook] [patch] The Handbook (chapter 15.4) does no o docs/186905 doc [PATCH] porters-handbook/makefiles/chapter.xml Strippi o docs/186663 doc [handbook] mention old xorg in handbook p docs/186191 doc Typo in bhyveload.8 o docs/185764 doc mention of libiconv in FreeBSD 10.0 release note o docs/185531 doc etherswitchcfg(8) refers to etherswitch(4) which does o docs/185481 doc sh/bash Parameter Expansion +/- syntax not documented o docs/185422 doc [handbook] brazilian portuguese translation to "Append o docs/185421 doc [handbook] brazilian portuguese translation to "Append o docs/185392 doc [handbook] brazilian portuguese translation to "The Fr o docs/185391 doc [handbook] brazilian portuguese translation to "GEOM: o docs/185281 doc [handbook] brazilian portuguese translation to "Jails" o docs/185280 doc [handbook] brazilian portuguese translation to "Introd o docs/184758 doc error in rtadvd.conf example o docs/184755 doc The vmstat(8) manualpage synopsis doesn't show all opt o docs/184459 doc Documentation Bug in the man Page for the who Command o docs/184110 doc blackhole(4) manpage doesn`t describe net.inet.sctp.b o docs/184051 doc Update configuration example for staging o docs/184048 doc developers handbook, 10.7 Debugging Deadlocks - must i o docs/184046 doc bhyve(4) manpage references non-existant manpages bhyv o docs/183927 doc missing info about kernel toolchain in kernel building o docs/183653 doc [patch] Add some more *BSD releases to the groff_mdoc o docs/183427 doc Online man pages don't include latest release + ports o docs/183333 doc Misnamed constant in bpf(4) o docs/183246 doc FreeBSD 8.4-RELEASE Installation Instructions don't pr o docs/183024 doc textdump(4) mentions call doadump, should be textdump o docs/183002 doc Fix instructions in "6.5.3. Anti-Aliased Fonts" regard o docs/182876 doc CURRENT release notes webpage out of date and inconsis o docs/182218 doc [handbook] Add an ipfilter rc.conf option in handbook o docs/181845 doc Virtualbox Host Setup needs acd0 in /etc/devfs.conf, a o docs/181844 doc FreeBSD Handbook Virtualbox Host Section missing confi o docs/181808 doc Chapter 15.15 (Resource Limits) misses important infor o docs/181785 doc [patch] Man page for tmpfile() is inconsistent o docs/181576 doc make.1: make is bmake but man make documents pmake o docs/181390 doc seq(1) first appeared in 8th UNIX o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o docs/181280 doc suggestion: split zfs man page in a zfs- way o docs/181134 doc Fix example for boot0cfg utility o docs/180970 doc [request] No manpage for ps_strings o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o docs/180493 doc [handbook] Single-user mode console confusion o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o docs/180027 doc Missing man page entries for callout_reset_sbt in time o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox p docs/179914 doc remove inactive user dougb from mergemaster maintainer o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o docs/179497 doc [patch] service.8 add csh completion example o docs/179246 doc [patch] gnome porting updates o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o docs/178730 doc move roff papers out of src into doc o docs/178221 doc Addition to handbook jails chapter: warning about make o www/178190 doc myths web page should be updated o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176806 doc recv(2) man page grammatical fixes o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o docs/176355 doc Attribution and correction of quote in fortune o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o docs/175712 doc Update 'disk naming' handbook page o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 doc HTTPS does not follow visitor among FreeBSD.org sub-do o docs/175239 doc sem_wait can be interrupted o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o docs/174868 doc mount(2) doesn't do a good job at describing all possi o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o docs/173710 doc Added section "MTP storage" to handbook o docs/173321 doc ports(7) man page -- no info on building with debuggin o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o docs/172626 doc [PATCH] modify the community/* pages to look more plea o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems o docs/172137 doc deprecated information for adduser(8) man pages o docs/171199 doc the GDB man page is outdated o docs/170691 doc Difference between zfs manpages and reality o docs/170119 doc at behaviour and man at inconsistency o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section s docs/169401 doc passify dead links in release links, move www to lists o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o docs/169158 doc [patch] iasl(8) man page is out of date f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o docs/168823 doc 404s in fr_FR French web pages o docs/168803 doc Remove outdated smp info o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o docs/166553 doc find(1): find -delete documentation is misleading o docs/166358 doc No networking in Jail build via: handbook/jail-tuning o conf/166330 doc [rc] [patch] Thin server configuration revision reques o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o docs/165249 doc Multibyte characters in manpages still not displaying o docs/164803 doc Unclear manual page for mount_unionfs(8) o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o docs/164034 doc acl(9) documentation lacking o docs/163879 doc [handbook] handbook does not say about how to force to o docs/163830 doc device smbios: missing documentation, no manpage o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o docs/162765 doc [patch] lseek(2) may return successful although no see o docs/162587 doc unclear/incomplete description of per-interface statis o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o docs/160399 doc Man page for re(4) missing jumbo frames info o docs/159307 doc [patch] lpd smm chapter unconditionally installed o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/157908 doc [handbook] Description of post-install should include o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o docs/157316 doc [patch] update devstat(9) man page o docs/156920 doc isspecial(3) is not helpful o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o docs/156689 doc stf(4) output-only documentation gives bad configurati f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o docs/154838 doc update cvs-tags information on releng_* to reflect sup o docs/153958 doc ksu man-page documented, but not installed a docs/153012 doc [patch] iostat(8) requires an argument to -c option o docs/151752 doc pw.conf(5) doesn't define format for file clearly o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o docs/149574 doc [patch] update mi_switch(9) man page o docs/148987 doc [patch] {MD[245]|SHA_|SHA1_|SHA256_}{End|File|FileChun o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o docs/148071 doc Failover mode between wired and wireless interfaces o docs/147995 doc elf.5 man page has has missing reference o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145699 doc hexdump(1) mutes all format qualifier output following o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145066 doc Update for new uart dev names for serial port. s docs/144818 doc all mailinglist archives dated 19970101 contain traili o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se s docs/140847 doc [request] add documentation on ECMP and new route args o docs/140444 doc [patch] New Traditional Chinese translation of custom- o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/139165 doc gssapi.3 man page out of sync with between crypto and o docs/139018 doc translation of submitting.sgml from docproj/submitting o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/136035 doc ftpchroot(5) omits an important option o docs/132839 doc [patch] Fix example script in ldap-auth article o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o docs/129095 doc ipfw(8): Can not check that packet originating/destine o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/126484 doc libc function res-zonscut2 is not documented f docs/122052 doc minor update on handbook section 20.7.1 o docs/121952 doc Handbook chapter on Network Address Translation wrong s docs/121541 doc [request] no man pages for wlan_scan_ap o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o docs/118214 doc close(2) error returns incomplete o docs/116588 doc No IPFW tables or dummynet in Handbook o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o docs/111425 doc Missing chunks of text in historical manpages o docs/111265 doc [request] Clarify how to set common shell variables o docs/110999 doc carp(4) should document unsupported interface types o docs/110692 doc wi(4) man page doesn't say WPA is not supported o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd a docs/108980 doc list of missing man pages o docs/105608 doc fdc(4) debugging description staled o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos p docs/100196 doc man login.conf does explain not "unlimited" o docs/98974 doc Missing tunables in loader(8) manpage o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/95408 doc install over serial console does not work as documente o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/87857 doc ifconfig(8) wireless options order matters o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84271 doc [patch] compress(1) doesn't warn about nasty link hand o docs/83820 doc getino(3) manpage not installed o docs/81611 doc [patch] natd runs with -same_ports by default o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/57298 doc [patch] add using compact flash cards info to handbook s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o docs/53271 doc bus_dma(9) fails to document alignment restrictions o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o docs/48101 doc [patch] Add documentation on the fixit disk o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o docs/43823 doc [patch] update to environ(7) manpage o docs/41089 doc [patch] pax(1) -B option does not mention interaction o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o docs/26286 doc *printf(3) etc should gain format string warnings o docs/24786 doc missing FILES descriptions in sa(4) 243 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon May 26 13:24:24 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B45F59D; Mon, 26 May 2014 13:24:23 +0000 (UTC) Received: from mail-ve0-x243.google.com (mail-ve0-x243.google.com [IPv6:2607:f8b0:400c:c01::243]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 28C1122D2; Mon, 26 May 2014 13:24:23 +0000 (UTC) Received: by mail-ve0-f195.google.com with SMTP id pa12so2532460veb.6 for ; Mon, 26 May 2014 06:24:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=XWY228TQspNOMXBXLT5gQYxj3DFur1cI7uyDGhJ5AEo=; b=uhSetjyT6Q2r1HUtBAK8tR16gqYDAUcWJilWMedFBfuwRWulYB2eRZY7H9mYSSt4V9 5/ECtCrKTz9tnY1/eA8FuTjTlMUr2Pu171xaxAdefCtrl7duKuNa8CgtfOr3rs8Lae6B QUTebfaRjzFddHgl1nrBPQX3Ose1JYoISEdwEczOKoxR9+oi+qe1ZXx1TMWB5O+DmYwj O7KojVxjhVikNUnUS+ShRo16Zs9GOgERMboQI2sFS+kY4uU0q3w+h2oMzPFG2NsRfmCQ gFRytFHBuee1MnkoHBGzozi1HS5M0MYElTF44nEnIuSZ1xBhpNV0aX06QsFmteeVv6Pj MRiQ== MIME-Version: 1.0 X-Received: by 10.52.97.202 with SMTP id ec10mr5657124vdb.55.1401110662306; Mon, 26 May 2014 06:24:22 -0700 (PDT) Received: by 10.220.168.139 with HTTP; Mon, 26 May 2014 06:24:22 -0700 (PDT) Date: Mon, 26 May 2014 18:54:22 +0530 Message-ID: Subject: Immediate attention required for Freebsd.Org From: Sabrina Hill To: freebsd-questions@FreeBSD.org, freebsd-doc@FreeBSD.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 13:24:24 -0000 Hi Team, Hope you are doing well. Are you still worried about your online business? As you might be aware, organizations and corporate entities in the recent times are emphasize on business conversion from website. It=E2=80=99s a practice for every individ= ual now to look out anything in Google first; before making a purchase decision. In this competitive world, digital medium has become a necessity in promoting brand visibility among the potential customers. With core strength of experienced and young technology experts, we have been successful in providing complete web assistance that precedes our reputation. We offer a range of services to develop and manage your website. Some of them include: =C2=B7 Maintaining your brand equity high on our priority. We offer customized brand management services to increase your traffic flow. =C2=B7 Informative and positive reviews for promotion of your brand= . This is done through our well researched keyword and content submission in our articles and blogs. =C2=B7 We are responsible in boosting up your website in the search engine results. =C2=B7 Manual submission of quality and theme based links to drive = in quality traffic. =C2=B7 Making your website error free for effective functioning of = your website and making it search engine friendly. =C2=B7 Using Social Media as the most effective tool to promote you= r website. =C2=B7 Working on various strategies to create a niche for your web= site. =C2=B7 Making your website=E2=80=99s look and feel the major unique= selling proposition. In reference to our authenticity and client testimonies, we pledge to deliver efficiently in sync to client=E2=80=99s expectations. This e-mail p= rovides you with a glimpse of some of the services which we offered from our company. Please revert back to know more about our services. Even though we do not support sending emails from a Gmail account, nevertheless, once you revert, the marketing officials will get in touch via company profile. Seems interesting, get in touch with us on the mentioned email address or contact coordinates. -------------------------------------------------- Best Regards, Sabrina|Digital Marketing Consultant Skype: web.business3 -------------------------------------------------- PS1: This is onetime email and you may ask us to =E2=80=9CREMOVE=E2=80=9D y= ou from our mailing list. PS2: We operate 24 x7. I will be happy to provide you links to price list, client rankings, =E2=80=9CHow we are different from others?=E2=80=9D, and = =E2=80=9CWhy should you hire us?=E2=80=9D on receiving a response from you. From owner-freebsd-doc@FreeBSD.ORG Mon May 26 16:02:25 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85DA5871; Mon, 26 May 2014 16:02:25 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 5B79722EA; Mon, 26 May 2014 16:02:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4QG2Phw072669; Mon, 26 May 2014 16:02:25 GMT (envelope-from wblock@freefall.freebsd.org) Received: (from wblock@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4QG2PfG072668; Mon, 26 May 2014 16:02:25 GMT (envelope-from wblock) Date: Mon, 26 May 2014 16:02:25 GMT Message-Id: <201405261602.s4QG2PfG072668@freefall.freebsd.org> To: wblock@FreeBSD.org, freebsd-doc@FreeBSD.org, wblock@FreeBSD.org From: wblock@FreeBSD.org Subject: Re: docs/47594: [patch] passwd(5) incorrectly states allowed username and group syntax X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 16:02:25 -0000 Synopsis: [patch] passwd(5) incorrectly states allowed username and group syntax Responsible-Changed-From-To: freebsd-doc->wblock Responsible-Changed-By: wblock Responsible-Changed-When: Mon May 26 16:02:00 UTC 2014 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=47594 From owner-freebsd-doc@FreeBSD.ORG Mon May 26 17:40:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B411C946 for ; Mon, 26 May 2014 17:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 76FDB2A7F for ; Mon, 26 May 2014 17:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4QHe0tK015391 for ; Mon, 26 May 2014 17:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4QHe0eX015390; Mon, 26 May 2014 17:40:00 GMT (envelope-from gnats) Resent-Date: Mon, 26 May 2014 17:40:00 GMT Resent-Message-Id: <201405261740.s4QHe0eX015390@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ryusuke Yanagisawa Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79F07621 for ; Mon, 26 May 2014 17:31:12 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 678172A14 for ; Mon, 26 May 2014 17:31:12 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s4QHVCST012311 for ; Mon, 26 May 2014 17:31:12 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s4QHVCbh012306; Mon, 26 May 2014 17:31:12 GMT (envelope-from nobody) Message-Id: <201405261731.s4QHVCbh012306@cgiserv.freebsd.org> Date: Mon, 26 May 2014 17:31:12 GMT From: Ryusuke Yanagisawa To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/190275: Typo in rc.conf for Linux Binary Compatibility in Japanese Handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 17:40:00 -0000 >Number: 190275 >Category: docs >Synopsis: Typo in rc.conf for Linux Binary Compatibility in Japanese Handbook >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon May 26 17:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ryusuke Yanagisawa >Release: >Organization: >Environment: >Description: There is a typo on rc.conf configuring for Linux® Binary Compatibility in Japanese Handbook at http://www.freebsd.org/doc/ja/books/handbook/linuxemu-lbc-install.html . In the following line from the above handbook page: linux_enable=¡ÖYES¡× These corner brackets (U+300C, U+300D) are NOT accepted by the rc.conf syntax. >How-To-Repeat: Visit http://www.freebsd.org/doc/ja/books/handbook/linuxemu-lbc-install.html >Fix: It seems that the typo was caused by DocBook's l10n.([1]) So, one of fixes is to add the Lang attribute to the Quote tag simply, I think. [1] http://docbook.org/tdg/en/html/quote.html#d0e151810 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue May 27 02:01:41 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E0CABDB for ; Tue, 27 May 2014 02:01:41 +0000 (UTC) Received: from mail-oa0-x22a.google.com (mail-oa0-x22a.google.com [IPv6:2607:f8b0:4003:c02::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D1B7208F for ; Tue, 27 May 2014 02:01:41 +0000 (UTC) Received: by mail-oa0-f42.google.com with SMTP id j17so9011844oag.1 for ; Mon, 26 May 2014 19:01:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=1fsrwULHY7uTZkvTtbWp5Bi+Eez5HN2pGPT7wno/uLY=; b=OyFTjsqQb6KZ2gVjvwLLU8Rgj5y2c9zfCYXWwdSFKQ96x3E9M1bEWX4ScATGaly/1r cIbqalgj6Z7GCo4/8dCHARGHg0ffSECU5nErEXgcxk1zChVyfWCDfwoKii/BnjFnv5ZF XhftnPjLagJ117ismtBwu9EH8r4G10qM59exfVIbn180O5b0VdiSCimxVGbJ52rKAfMu NdpxIYy4TvR3HVCrNVdkjZ9urU1dnWpj61xX3l2tyaYxlCneq/hFh3v5kQHmJlQDozw2 chdRIP5OT1ln3WCaLWtmk/Sl9I44LW/+eZzDPplyWKQEGpe6YQECz1+8PMDfVDfxXg0p BdAA== MIME-Version: 1.0 X-Received: by 10.60.62.235 with SMTP id b11mr13786419oes.57.1401156100381; Mon, 26 May 2014 19:01:40 -0700 (PDT) Received: by 10.76.23.130 with HTTP; Mon, 26 May 2014 19:01:40 -0700 (PDT) Date: Mon, 26 May 2014 22:01:40 -0400 Message-ID: Subject: SR-IOV Patch Series 3/7: manual pages From: Ryan Stone To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 02:01:41 -0000 These patches either update existing manual pages or introduce new ones to document the new PCI SR-IOV infrastructure. Any review of this would be greatly appreciated, as I've never written manual pages before so no doubt I've made silly mistakes. Thanks to anybody who can find the time to review. http://people.freebsd.org/~rstone/patches/iov/0005-Document-pci_iov_attach-detach-in-pci.9.patch [PATCH 05/21] Document pci_iov_attach/detach in pci.9 --- share/man/man9/Makefile | 2 ++ share/man/man9/pci.9 | 70 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) http://people.freebsd.org/~rstone/patches/iov/0006-Add-manpages-for-SR-IOV-enable-disable-driver-interf.patch [PATCH 06/21] Add manpages for SR-IOV enable/disable driver interface --- share/man/man9/Makefile | 3 ++ share/man/man9/PCI_ADD_VF.9 | 114 ++++++++++++++++++++++++++++++++++++++++ share/man/man9/PCI_INIT_IOV.9 | 85 ++++++++++++++++++++++++++++++ share/man/man9/PCI_UNINIT_IOV.9 | 64 ++++++++++++++++++++++ 4 files changed, 266 insertions(+) http://people.freebsd.org/~rstone/patches/iov/0014-Add-a-manpage-for-iovctl-8.patch [PATCH 14/21] Add a manpage for iovctl(8) --- usr.sbin/iovctl/iovctl.8 | 120 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) http://people.freebsd.org/~rstone/patches/iov/0015-Add-manpage-documenting-iovctl-config-file-format.patch [PATCH 15/21] Add manpage documenting iovctl config file format. --- usr.sbin/iovctl/iovctl.conf.5 | 170 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 170 insertions(+) http://people.freebsd.org/~rstone/patches/iov/0020-Document-the-interface-for-defining-a-configuration-.patch [PATCH 20/21] Document the interface for defining a configuration schema --- share/man/man9/Makefile | 9 ++ share/man/man9/pci_iov_schema.9 | 241 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 250 insertions(+) From owner-freebsd-doc@FreeBSD.ORG Tue May 27 02:27:53 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72F5BEA for ; Tue, 27 May 2014 02:27:53 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 1F7A02223 for ; Tue, 27 May 2014 02:27:52 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s4R2RjTS088693 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 26 May 2014 20:27:45 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s4R2RjIN088690; Mon, 26 May 2014 20:27:45 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Mon, 26 May 2014 20:27:45 -0600 (MDT) From: Warren Block To: Ryan Stone Subject: Re: SR-IOV Patch Series 3/7: manual pages In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Mon, 26 May 2014 20:27:45 -0600 (MDT) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 02:27:53 -0000 On Mon, 26 May 2014, Ryan Stone wrote: > These patches either update existing manual pages or introduce new > ones to document the new PCI SR-IOV infrastructure. Any review of > this would be greatly appreciated, as I've never written manual pages > before so no doubt I've made silly mistakes. Thanks to anybody who > can find the time to review. Have you tried phabricator.freebsd.org? It makes review of this type of thing somewhat easier. (And I say that despite fighting with the user interface today.) As an example, here is a man page revision I put up: https://phabric.freebsd.org/D62 From owner-freebsd-doc@FreeBSD.ORG Tue May 27 02:35:33 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACB0D1B1 for ; Tue, 27 May 2014 02:35:33 +0000 (UTC) Received: from mail-oa0-x232.google.com (mail-oa0-x232.google.com [IPv6:2607:f8b0:4003:c02::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 78AB622D1 for ; Tue, 27 May 2014 02:35:33 +0000 (UTC) Received: by mail-oa0-f50.google.com with SMTP id i7so8902543oag.37 for ; Mon, 26 May 2014 19:35:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=xzj+25Qs72LBII8vCd1l2wATJg5VK9LoInyDhfxvnfk=; b=i9jHsdPHCdTHiDMrbJfx3QNs1WI+6pHbLLv2rESkejW8keMm+lxdlJ1e2UvA5YQNex veN4sUi1N92pW/uBXlVF5babzrk+CCLji5Wsg9527eLbQ0OvSNlgh+8eVE7Rm2arEkIE S3xpGZLXWF2I3/XP6XKS8oKE81G+jLRn4711JoduQlE0xzQoXu6lzVUCx8+njb6ofps0 1bf9ggQMAvr+PJn5sCOinb7ylbWut1LvyafA9exKdouB9n+p5lyAY71I6KySnoCfyFVj +/Viy9r24UW6tHlKtz7IXhTmvFgl8HtDSLrocd9traj6B7FwuWDGfYhJJqAwttVzWdVC X5Pg== MIME-Version: 1.0 X-Received: by 10.182.24.230 with SMTP id x6mr7485917obf.75.1401158132845; Mon, 26 May 2014 19:35:32 -0700 (PDT) Received: by 10.76.23.130 with HTTP; Mon, 26 May 2014 19:35:32 -0700 (PDT) In-Reply-To: References: Date: Mon, 26 May 2014 22:35:32 -0400 Message-ID: Subject: Re: SR-IOV Patch Series 3/7: manual pages From: Ryan Stone To: Warren Block Content-Type: text/plain; charset=UTF-8 Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 02:35:33 -0000 On Mon, May 26, 2014 at 10:27 PM, Warren Block wrote: > Have you tried phabricator.freebsd.org? It makes review of this type of > thing somewhat easier. (And I say that despite fighting with the user > interface today.) > > As an example, here is a man page revision I put up: > https://phabric.freebsd.org/D62 I tried playing with it a week or so ago. It seemed to want to combine all of my patches into a single review and mangle my commit messages. Also, I couldn't find a reasonable way to script it, which is kind of a must when uploading 21 patches for review. I'm aware of the arc command-line tool but it seems to require user input for some parts. I'll try fighting with it again and see if I can get it to do something reasonable. From owner-freebsd-doc@FreeBSD.ORG Tue May 27 02:37:10 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45A7E1F5 for ; Tue, 27 May 2014 02:37:10 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id 1D6E522DC for ; Tue, 27 May 2014 02:37:09 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allanjude.freebsd@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id AE2F9312AB for ; Tue, 27 May 2014 02:37:08 +0000 (UTC) Message-ID: <5383FA53.3090408@freebsd.org> Date: Mon, 26 May 2014 22:37:07 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: SR-IOV Patch Series 3/7: manual pages References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="i9qGHEPiKBJLeR53ovWpPEcfx0H2VLlEq" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 02:37:10 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --i9qGHEPiKBJLeR53ovWpPEcfx0H2VLlEq Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-05-26 22:35, Ryan Stone wrote: > On Mon, May 26, 2014 at 10:27 PM, Warren Block wro= te: >> Have you tried phabricator.freebsd.org? It makes review of this type = of >> thing somewhat easier. (And I say that despite fighting with the user= >> interface today.) >> >> As an example, here is a man page revision I put up: >> https://phabric.freebsd.org/D62 >=20 > I tried playing with it a week or so ago. It seemed to want to > combine all of my patches into a single review and mangle my commit > messages. Also, I couldn't find a reasonable way to script it, which > is kind of a must when uploading 21 patches for review. I'm aware of > the arc command-line tool but it seems to require user input for some > parts. >=20 > I'll try fighting with it again and see if I can get it to do > something reasonable. > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" >=20 arc diff --create and you'd want to do a separate one for each 'patch' and yes, it has some extra fields after the commit message to fill out --=20 Allan Jude --i9qGHEPiKBJLeR53ovWpPEcfx0H2VLlEq Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTg/pVAAoJEJrBFpNRJZKfFKYP/RUsolO1BLPCFvpyoF+yzClG EOIx78WNejSzkkWBkqTtrFPMoAeY2lVM+CgFKSBunxP8tJf5y1JV/M0F3P85/XwP Hs3YZ7dPU18M22roS/3pApVZgzEuzbi4Qu2MFWzrs1ChwnmhHvi8elzeHf+LdLrh dRM2PNclBJ47BwtZT2PB4NcqOuGcgtvgc4R6bqe0nmBup7V7gii1D+gzgXUQkEOw MCOiYUO8RXy7O3BBkdnRIjC6ffyxS3bhgjEcP64y4WO1c6FWaiw8HB7r8ChNlK/7 qDy0sEuTW0WdnSv4vhVub6A15keiSZFNH4ghvrqCRIS/919DhiJ2VHLRY41pKtBg SlXEu/By5iXk/O+8shjXKYcw+dRfxweUMOxJfYal4JXP3S+D+b2Hn0QKxrnLb7pB Sy4hTfWEob/wNEyhwh61zr0qhfpPPm2AOjJnhQJJ5RjX18YKz0lEbTtnol1gQ+0N gG5uFh32g7RsQVMo3uU8ay+fmTzL/oAlCEie2rNgKaCalmes9v/4ZIq0litzM8md ZCng2nWuqrw1BWnOgnFDeIF4L0mZiq2qy+z5CsNMkUHekM4Q+x//BjZFsVtmy7Bf TWhlyw/2CabWgKfYOivdBlDq4hWBEpfnWhmLumau5R9Lkt+XxyBq0Rv+1pRreZbG CRsAUhcgqYkGmtKOBMz1 =Shh7 -----END PGP SIGNATURE----- --i9qGHEPiKBJLeR53ovWpPEcfx0H2VLlEq-- From owner-freebsd-doc@FreeBSD.ORG Tue May 27 02:52:22 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B151472 for ; Tue, 27 May 2014 02:52:22 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 075232439 for ; Tue, 27 May 2014 02:52:21 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s4R2qKUp088954 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 26 May 2014 20:52:20 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s4R2qKFc088951; Mon, 26 May 2014 20:52:20 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Mon, 26 May 2014 20:52:20 -0600 (MDT) From: Warren Block To: Ryan Stone Subject: Re: SR-IOV Patch Series 3/7: manual pages In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Mon, 26 May 2014 20:52:20 -0600 (MDT) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 02:52:22 -0000 On Mon, 26 May 2014, Ryan Stone wrote: > On Mon, May 26, 2014 at 10:27 PM, Warren Block wrote: >> Have you tried phabricator.freebsd.org? It makes review of this type of >> thing somewhat easier. (And I say that despite fighting with the user >> interface today.) >> >> As an example, here is a man page revision I put up: >> https://phabric.freebsd.org/D62 > > I tried playing with it a week or so ago. It seemed to want to > combine all of my patches into a single review and mangle my commit > messages. Also, I couldn't find a reasonable way to script it, which > is kind of a must when uploading 21 patches for review. I'm aware of > the arc command-line tool but it seems to require user input for some > parts. > > I'll try fighting with it again and see if I can get it to do > something reasonable. I find the web user interface exceedingly annoying, and have not tried arc because of its unfortunate dependence on PHP. But once a "Differential" is created, it does make review easier. From owner-freebsd-doc@FreeBSD.ORG Tue May 27 03:55:24 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B014ED1F for ; Tue, 27 May 2014 03:55:24 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 5C1902919 for ; Tue, 27 May 2014 03:55:24 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s4R3tMZK089404 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 26 May 2014 21:55:22 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s4R3tMB5089401; Mon, 26 May 2014 21:55:22 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Mon, 26 May 2014 21:55:22 -0600 (MDT) From: Warren Block To: Ryan Stone Subject: Re: SR-IOV Patch Series 3/7: manual pages In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Mon, 26 May 2014 21:55:23 -0600 (MDT) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 03:55:24 -0000 For iovctl.8, I see is the use of "your". We try to avoid using "you" and "your", which is an informal style: http://www.freebsd.org/doc/en_US.ISO8859-1/books/fdp-primer/book.html#writing-style-tips See the manual page for your PF driver for documentation of configuration parameters that are specific to your hardware. "Documentation of" is redundant, too, so: See the PF driver manual page for configuration parameters specific to particular hardware. (I have not really looked at the markup. The cross reference (.Xr) to iovctl.conf seems correct but rendered as plain text here. Maybe a local thing.) From owner-freebsd-doc@FreeBSD.ORG Tue May 27 09:41:15 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A6E857FB; Tue, 27 May 2014 09:41:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 7AE4E2465; Tue, 27 May 2014 09:41:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4R9fFEd084822; Tue, 27 May 2014 09:41:15 GMT (envelope-from ryusuke@freefall.freebsd.org) Received: (from ryusuke@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4R9fFhG084821; Tue, 27 May 2014 09:41:15 GMT (envelope-from ryusuke) Date: Tue, 27 May 2014 09:41:15 GMT Message-Id: <201405270941.s4R9fFhG084821@freefall.freebsd.org> To: ryusuke@FreeBSD.org, freebsd-doc@FreeBSD.org, ryusuke@FreeBSD.org From: ryusuke@FreeBSD.org Subject: Re: docs/190275: Typo in rc.conf for Linux Binary Compatibility in Japanese Handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 09:41:15 -0000 Synopsis: Typo in rc.conf for Linux Binary Compatibility in Japanese Handbook Responsible-Changed-From-To: freebsd-doc->ryusuke Responsible-Changed-By: ryusuke Responsible-Changed-When: Tue May 27 09:40:15 UTC 2014 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=190275 From owner-freebsd-doc@FreeBSD.ORG Tue May 27 14:52:22 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 058FFB90 for ; Tue, 27 May 2014 14:52:22 +0000 (UTC) Received: from mail-ob0-x231.google.com (mail-ob0-x231.google.com [IPv6:2607:f8b0:4003:c01::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C67A1225C for ; Tue, 27 May 2014 14:52:21 +0000 (UTC) Received: by mail-ob0-f177.google.com with SMTP id wp4so9142984obc.36 for ; Tue, 27 May 2014 07:52:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=GLiwYbm+2GXYdnzXz2wMsR3KHyIYSa4IhfDBG9uEibs=; b=OcuNPCeLGSUttgkd0Gg3Im2qcVp/SAlVKnvkafsS8E0SxC2jYzfQG5Sc5Jz9wQ6qh8 TWOQbXkspERz+kx1YjtINKxJmMSdBLCcWGXYRB6PmIXgy49jWi8DtqAYF/Z3ZylotDHe YS2wytVPC7yCiWQoIGIVZf1livW6RnI76NbW+D0mEgpR8S11ZaotgBaKNjcdymt8PN5L K5rVNFageB9DwFvS4PQcjYPpfOTxtsHjuLi0b7c9MkuyaayfCjbak5eMPPU4S7wswTDl YOd0LHS4Rm2DATTtJSPnAUnWnFVej5MBd3LOnHAgDoqdaKRScV597nicXMbZkS/oVShX MlQg== MIME-Version: 1.0 X-Received: by 10.182.87.98 with SMTP id w2mr33444841obz.25.1401202341088; Tue, 27 May 2014 07:52:21 -0700 (PDT) Received: by 10.76.23.130 with HTTP; Tue, 27 May 2014 07:52:21 -0700 (PDT) In-Reply-To: References: Date: Tue, 27 May 2014 10:52:21 -0400 Message-ID: Subject: Re: SR-IOV Patch Series 3/7: manual pages From: Ryan Stone To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 14:52:22 -0000 Here are the Phabricator reviews, as requested. A few people have made comments already. I'll try to address them tonight. On Mon, May 26, 2014 at 10:01 PM, Ryan Stone wrote: > http://people.freebsd.org/~rstone/patches/iov/0005-Document-pci_iov_attach-detach-in-pci.9.patch https://phabric.freebsd.org/D74 > http://people.freebsd.org/~rstone/patches/iov/0006-Add-manpages-for-SR-IOV-enable-disable-driver-interf.patch https://phabric.freebsd.org/D75 > http://people.freebsd.org/~rstone/patches/iov/0014-Add-a-manpage-for-iovctl-8.patch https://phabric.freebsd.org/D83 > http://people.freebsd.org/~rstone/patches/iov/0015-Add-manpage-documenting-iovctl-config-file-format.patch https://phabric.freebsd.org/D84 > http://people.freebsd.org/~rstone/patches/iov/0020-Document-the-interface-for-defining-a-configuration-.patch https://phabric.freebsd.org/D89 From owner-freebsd-doc@FreeBSD.ORG Tue May 27 20:50:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A55BDB7 for ; Tue, 27 May 2014 20:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 26587241B for ; Tue, 27 May 2014 20:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4RKo1hF021061 for ; Tue, 27 May 2014 20:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4RKo0mg021048; Tue, 27 May 2014 20:50:00 GMT (envelope-from gnats) Date: Tue, 27 May 2014 20:50:00 GMT Message-Id: <201405272050.s4RKo0mg021048@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: docs/187644: commit references a PR Reply-To: dfilter@FreeBSD.ORG (dfilter service) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 20:50:01 -0000 The following reply was made to PR docs/187644; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/187644: commit references a PR Date: Tue, 27 May 2014 20:45:20 +0000 (UTC) Author: allanjude (doc committer) Date: Tue May 27 20:45:15 2014 New Revision: 266774 URL: http://svnweb.freebsd.org/changeset/base/266774 Log: improve ifconfig(8) man page by describing special behaviour of -l ether PR: docs/187644 Submitted by: Andrew Merenbach (original patch) Approved by: bcr (mentor) Modified: head/sbin/ifconfig/ifconfig.8 Modified: head/sbin/ifconfig/ifconfig.8 ============================================================================== --- head/sbin/ifconfig/ifconfig.8 Tue May 27 20:22:36 2014 (r266773) +++ head/sbin/ifconfig/ifconfig.8 Tue May 27 20:45:15 2014 (r266774) @@ -169,6 +169,18 @@ and .Dq lladdr are synonyms for .Dq link . +When using the +.Fl l +flag, the +.Dq ether +address family has special meaning and is no longer synonymous with +.Dq link +or +.Dq lladdr . +Specifying +.Fl l Dq ether +will list only ethernet interfaces, excluding all other interface types, +including the loopback interface. .It Ar dest_address Specify the address of the correspondent on the other end of a point to point link. @@ -2554,6 +2566,11 @@ The .Fl l flag may be used to list all available interfaces on the system, with no other additional information. +If an +.Ar address_family +is specified, only interfaces of that type will be listed. +.Fl l Dq ether +will list only ethernet adapters, excluding the loopback interface. Use of this flag is mutually exclusive with all other flags and commands, except for .Fl d _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Tue May 27 21:47:37 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A96A51AB; Tue, 27 May 2014 21:47:37 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 7F1D72994; Tue, 27 May 2014 21:47:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4RLlbN1042613; Tue, 27 May 2014 21:47:37 GMT (envelope-from allanjude@freefall.freebsd.org) Received: (from allanjude@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4RLlbDR042611; Tue, 27 May 2014 21:47:37 GMT (envelope-from allanjude) Date: Tue, 27 May 2014 21:47:37 GMT Message-Id: <201405272147.s4RLlbDR042611@freefall.freebsd.org> To: andrew@merenbach.com, allanjude@FreeBSD.org, freebsd-doc@FreeBSD.org From: allanjude@FreeBSD.org Subject: Re: docs/187644: [patch] ifconfig.8 man page address_family paragraph needs clarification X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 21:47:37 -0000 Synopsis: [patch] ifconfig.8 man page address_family paragraph needs clarification State-Changed-From-To: open->closed State-Changed-By: allanjude State-Changed-When: Tue May 27 21:47:16 UTC 2014 State-Changed-Why: fix committed r266774 http://www.freebsd.org/cgi/query-pr.cgi?pr=187644 From owner-freebsd-doc@FreeBSD.ORG Wed May 28 14:40:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93718B5A for ; Wed, 28 May 2014 14:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 707AD2DC3 for ; Wed, 28 May 2014 14:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4SEe0vT047501 for ; Wed, 28 May 2014 14:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4SEe05L047500; Wed, 28 May 2014 14:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 28 May 2014 14:40:00 GMT Resent-Message-Id: <201405281440.s4SEe05L047500@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Laurent FRIGAULT Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18EA28FC for ; Wed, 28 May 2014 14:32:44 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 05F1B2D4D for ; Wed, 28 May 2014 14:32:44 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s4SEWhuZ082385 for ; Wed, 28 May 2014 14:32:43 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s4SEWhP5082380; Wed, 28 May 2014 14:32:43 GMT (envelope-from nobody) Message-Id: <201405281432.s4SEWhP5082380@cgiserv.freebsd.org> Date: Wed, 28 May 2014 14:32:43 GMT From: Laurent FRIGAULT To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: docs/190346: Handbook modification to reduce dependencies X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2014 14:40:00 -0000 >Number: 190346 >Category: docs >Synopsis: Handbook modification to reduce dependencies >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed May 28 14:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Laurent FRIGAULT >Release: 10.0 >Organization: >Environment: FreeBSD obelix.bergerie.agneau.org 10.0-RELEASE-p3 FreeBSD 10.0-RELEASE-p3 #1 r266005: Wed May 14 11:44:58 CEST 2014 lolo@obelix.bergerie.agneau.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The handbook advice to install devel/subversion in order to upgrade system/doc/port source : http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/svn.html Unfortunately subversion has many dependencies: Port: subversion-1.8.8_2 Path: /usr/ports/devel/subversion Info: Version control system Maint: lev@FreeBSD.org B-deps: apr-1.5.1.1.5.3 db48-4.8.30.0 expat-2.1.0 gdbm-1.11 gettext-0.18.3.1 libiconv-1.14_3 libtool-2.4.2_2 pkgconf-0.9.5 serf-1.3.5 sqlite3-3.8.4.2 R-deps: apr-1.5.1.1.5.3 db48-4.8.30.0 expat-2.1.0 gdbm-1.11 gettext-0.18.3.1 libiconv-1.14_3 serf-1.3.5 sqlite3-3.8.4.2 WWW: http://subversion.apache.org/ under 10.0, the base system has svnlite which can be use for this task. Before 10, the port/package net/svnup can be used. Port: svnup-1.05 Path: /usr/ports/net/svnup Info: Lightweight program to pull source from an Apache Subversion server Maint: jcm@visi.com B-deps: R-deps: WWW: http://jcm.dsl.visi.com/freebsd/svnup/ svnup (and probably svnlite) was created to remove the need to install subversion and all its dependencies. The handbook should be modified to teach users to use them instead of subversion. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed May 28 14:55:11 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4E0EA3 for ; Wed, 28 May 2014 14:55:11 +0000 (UTC) Received: from mail-pa0-x229.google.com (mail-pa0-x229.google.com [IPv6:2607:f8b0:400e:c03::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8C7732F98 for ; Wed, 28 May 2014 14:55:11 +0000 (UTC) Received: by mail-pa0-f41.google.com with SMTP id kx10so1295899pab.28 for ; Wed, 28 May 2014 07:55:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=mgIrvjRtzsAp9oTzU77Ywo+gsq45VUOQHT9GcDQuZac=; b=WBD48AxPnbbZftEk6MoiNDDfvMLJ10cC6frXfvDeJvrRaomfbqIag+NNtUnFObljZI WHjJVPzaGHwDkR83gZiNnDvi20+XpDIA2ycIFLZ6/fmefut/Y3mn3fbo0eu4kOKns01g XaG7+ev+PUSJ0Jqy+xuA0gSJgmOprSbIx2gM67TW/x9Ac1C2moqkFh9qNEk48RJmMIUz 22tSdlGIo47M46fRCrfnE8vKj6tPf4KvaucqhvkmvVqDd9NdpS3SY55AKH2zmBoqoFC7 VFH2g50T78tdUUbQOK4K56Qqt3EMw43X6/lpWXU2CADznAQ3aFvJEiAceaY8m104VsOg 12Ig== MIME-Version: 1.0 X-Received: by 10.69.20.65 with SMTP id ha1mr46094324pbd.75.1401288911031; Wed, 28 May 2014 07:55:11 -0700 (PDT) Sender: lwhsu.freebsd@gmail.com Received: by 10.70.65.71 with HTTP; Wed, 28 May 2014 07:55:10 -0700 (PDT) In-Reply-To: References: Date: Wed, 28 May 2014 22:55:10 +0800 X-Google-Sender-Auth: u-u2chJHRmEsUfssGcovwsT2oHo Message-ID: Subject: Re: I want to contribute the translation of the FreeBSD Handbook to Traditional Chinese From: Li-Wen Hsu To: RayCherng Yu Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD doc list X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2014 14:55:11 -0000 Hi, Thanks for contacting about this. I also want to revive the Traditional Chinese translation project recently. On Mon, May 26, 2014 at 5:02 PM, RayCherng Yu wrote: > Hi All > > I am the FreeBSD newbie.I never used FreeBSD before. I just install the > FreeBSD 10.0. The FreeBSD Handbook is really helpful to the installation > and setup the system. But the Traditional Chinese translation is outdated. > So all my information is from the FreeBSD Handbook English version. I think > I could translate the new version of Handbook to Traditional Chinese. An > uptodate information will help people willing to install and use FreeBSD. Although I am not a doc committer and did not work on documents. I think they must be happy to know the handbook is helpful and they will want to hear more about suggestions from you. > But I found some problems when I search the way to contribute: > > First, I cannot contact the Traditional Chinese translation project leader > via Email(chinsan@FreeBSD.org) or Website( > https://opensvn.csie.org/traccgi/freebsddoc/,it is dead). It seems no one > maintains this project.How can I do? Posting a mail on this list is the best way to start. :) chinsan is busy for a while, and I started a new (well, it's also terribly out of dated) project on github: https://github.com/lwhsu/freebsddoc/wiki It had not been published, since it's still in alpha stage, and things went worse when I started my new job. Two year passed by, and many things have changed. The biggest two are the repository has been migrated to SVN and format has been changed to DocBook 5.0 . There are not much can be taken from my project, maybe some translated but not yet been committed documents are still useful. I think we can start from merging these documents to zh_TW subdir and start to figure out a process to identify what need to be translated, translate and merge back to the main doc repository. Perhaps we can start a new group on github and fork https://github.com/freebsd/freebsd-doc , then put the new work that. I'll try to grab doc people to review and make them be committed. > Second, I use the UTF-8 as the encoding of my system.I found there is no > zh_TW.UTF-8 in Handbook directory.Can I start a new encoding of translation > project? (Like zh_CN, there are three directory of zh_CN, including > zh_CN.UTF-8). Maybe last time someone modify the zh_TW document is long > long time ago. The UTF-8 is not so popular. chinsan also wanted to do that many years ago, and he thought it might be better when more documents are translated. However I think we can convert what we already have NOW because it's 21 century and nobody should use Big5 anymore. > Third, the document structure(table of contents) of the current Traditional > Chinese translation edition is not the same as the current uptodate English > edition.How to update /modify this structure? Update chapters.ent ? > If I have more time to contribute, I will be very glad to translate the > FreeBSD website(http://www.freebsd.org/) to traditional Chinese to promote > FreeBSD to people in Taiwan or HongKong. How could I do to ? Just start to translate documents under https://svnweb.freebsd.org/doc/head/en_US.ISO8859-1/htdocs/ and put to zh_TW.UTF-8 . We can see what still need to be done afterward. Thanks, Li-Wen -- Li-Wen Hsu http://lwhsu.org From owner-freebsd-doc@FreeBSD.ORG Thu May 29 09:57:01 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0EEBAA1B for ; Thu, 29 May 2014 09:57:01 +0000 (UTC) Received: from mail-ie0-x24f.google.com (mail-ie0-x24f.google.com [IPv6:2607:f8b0:4001:c03::24f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D645B259A for ; Thu, 29 May 2014 09:57:00 +0000 (UTC) Received: by mail-ie0-f207.google.com with SMTP id rl12so2409iec.10 for ; Thu, 29 May 2014 02:57:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:message-id:date:subject:from:to:content-type; bh=nLUBdkqG7E0H2xhtEtdSELu/SoY3PvnzV1WwVHkavPc=; b=EQ0wF9EdxvRRlZCwYEbXeqMS5ItOE8ZpnWyVGfRYWOLK4DPTQsJM5Xw195ITNIhe1w FKwepoKldU0rcro+IOzsRw9PkBEyY+hQpXf1UVJuiq41f+zVrflG6cs4Y3zK7xPYx9aI Cm7KdW+JQhGJUCSixr0IARvzJS/YOZ8LUVDVdbLSz0Bdpy/yqhWPX62qey4pfA0wr86Z 0pJvqeEye5iCis18cAH5cS021DZxABS/xc/KmqNh4PHpGIzC4KigiVESg0hvaC/VwSZC s3IL+oKGFEntqj69M1pnmWooYQwjaGBwVG/2XFWYQTSOkjguE6r1zTsX1QpEIbksss6q 172w== MIME-Version: 1.0 X-Received: by 10.182.252.166 with SMTP id zt6mr2599844obc.17.1401357420360; Thu, 29 May 2014 02:57:00 -0700 (PDT) Message-ID: <001a1134b29a3e7bdd04fa86f3cd@google.com> Date: Thu, 29 May 2014 09:57:00 +0000 Subject: freebsd-doc@freebsd.org From: Rosie To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2014 09:57:01 -0000 Hi, If you want your website to work harder, WE can help you measure your performances, identify areas of weakness, and clear a path to better conversion rates. There's no single reason why visitors to your website fail to become customers. The need is to attract visitor's attention that helps in better interaction. Optimisation does not mean changing the existing layout of your website but these are tools for better visitor engagements. Every non-converting visitor costs you in wasted market-ing efforts and missed sale. Would you be interested in receiving further information & a quote for optimising your website with no-strings-attached? Best regards, Rosie Conversion Optimisation Specialist *D*OMOTICS Western Australia, Northern Territory, South Australia, Queensland, New South Wales, Victoria, Australian Capital Territory, Tasmania Disclaimer: We respect your privacy and want to make sure you are aware of a few things. By replying to this email, you authorise our affiliates that can help with your project to contact you at the number you provided, and you understand that they may use automated technology to reach you. At no time are you required to make a purchase. From owner-freebsd-doc@FreeBSD.ORG Thu May 29 12:52:20 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28817981 for ; Thu, 29 May 2014 12:52:20 +0000 (UTC) Received: from mail-pa0-x229.google.com (mail-pa0-x229.google.com [IPv6:2607:f8b0:400e:c03::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EF8B92695 for ; Thu, 29 May 2014 12:52:19 +0000 (UTC) Received: by mail-pa0-f41.google.com with SMTP id kx10so321393pab.28 for ; Thu, 29 May 2014 05:52:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=1oexHu+r0FNJPYlXMj2M/VlLxL+3Fe0s2NtjPWQMx50=; b=gx6shVkKVBjx3eiZ1SoF2g9LvfAC22GD/aMVNSR81K73FP6N3DfvrShpte+X+ZyoW+ QYQhH7Vpp38Inl5WhRpHteiFkW7BwgcEX39QfgFDX1Y4TdPobCE+lbIppmpXFsFSYBcL gr1RS4v24yYN5om+dKh8BrkQ9OB0xEG8ZnZDiSAbszmTC4PhKuMAw3oRxbRHEFSJHb0P mnDhkBa2zufH4hkmVF4u9lYtHMHeEmlWgnj45p8RwcJ05C4ewdB02H6SNGD9W7ldIXH9 15owYsyn159eAgOmmEfBfV5mlAXTrWRi3RYy5Gpr3RYJVQX41Ub8rZVx8CKpoVV2nD3R i0rQ== MIME-Version: 1.0 X-Received: by 10.66.246.229 with SMTP id xz5mr8392315pac.119.1401367939511; Thu, 29 May 2014 05:52:19 -0700 (PDT) Sender: lwhsu.freebsd@gmail.com Received: by 10.70.65.71 with HTTP; Thu, 29 May 2014 05:52:19 -0700 (PDT) In-Reply-To: References: Date: Thu, 29 May 2014 20:52:19 +0800 X-Google-Sender-Auth: sFX1N_jGGzRQDSwpPPon8CnwAZU Message-ID: Subject: Re: I want to contribute the translation of the FreeBSD Handbook to Traditional Chinese From: Li-Wen Hsu To: RayCherng Yu Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2014 12:52:20 -0000 I have prepared a patch for converting current zh_TW.Big5 to zh_TW.UTF-8 : http://people.freebsd.org/~lwhsu/doc/zh_TW.UTF-8.diff Hope it can be committed soon. On Thursday, May 29, 2014, RayCherng Yu wrote: > Thank you for quik reply.I'll contact you soon. > > I found there is no zh_TW.UTF-8 directory. How to make a new zh_TW.UTF-8 > directory? > > I am reading FreeBSD Documentation Project Primer for New Contributors no= w > to understand the tools I need. > > > Thanks > > RayCherng > > > 2014-05-28 22:55 GMT+08:00 Li-Wen Hsu >: > >> Hi, >> >> Thanks for contacting about this. I also want to revive the >> Traditional Chinese translation project recently. >> >> On Mon, May 26, 2014 at 5:02 PM, RayCherng Yu > > wrote: >> > Hi All >> > >> > I am the FreeBSD newbie.I never used FreeBSD before. I just install th= e >> > FreeBSD 10.0. The FreeBSD Handbook is really helpful to the installati= on >> > and setup the system. But the Traditional Chinese translation is >> outdated. >> > So all my information is from the FreeBSD Handbook English version. I >> think >> > I could translate the new version of Handbook to Traditional Chinese. = An >> > uptodate information will help people willing to install and use >> FreeBSD. >> >> Although I am not a doc committer and did not work on documents. I >> think they must be happy to know the handbook is helpful and they will >> want to hear more about suggestions from you. >> >> > But I found some problems when I search the way to contribute: >> > >> > First, I cannot contact the Traditional Chinese translation project >> leader >> > via Email(chinsan@FreeBSD.org) or Website( >> > https://opensvn.csie.org/traccgi/freebsddoc/,it is dead). It seems no >> one >> > maintains this project.How can I do? >> >> Posting a mail on this list is the best way to start. :) >> >> chinsan is busy for a while, and I started a new (well, it's also >> terribly out of dated) project on github: >> >> https://github.com/lwhsu/freebsddoc/wiki >> >> It had not been published, since it's still in alpha stage, and things >> went worse when I started my new job. Two year passed by, and many >> things have changed. The biggest two are the repository has been >> migrated to SVN and format has been changed to DocBook 5.0 . There >> are not much can be taken from my project, maybe some translated but >> not yet been committed documents are still useful. I think we can >> start from merging these documents to zh_TW subdir and start to figure >> out a process to identify what need to be translated, translate and >> merge back to the main doc repository. Perhaps we can start a new >> group on github and fork https://github.com/freebsd/freebsd-doc , then >> put the new work that. I'll try to grab doc people to review and make >> them be committed. >> >> > Second, I use the UTF-8 as the encoding of my system.I found there is = no >> > zh_TW.UTF-8 in Handbook directory.Can I start a new encoding of >> translation >> > project? (Like zh_CN, there are three directory of zh_CN, including >> > zh_CN.UTF-8). Maybe last time someone modify the zh_TW document is lon= g >> > long time ago. The UTF-8 is not so popular. >> >> chinsan also wanted to do that many years ago, and he thought it might >> be better when more documents are translated. However I think we can >> convert what we already have NOW because it's 21 century and nobody >> should use Big5 anymore. >> >> > Third, the document structure(table of contents) of the current >> Traditional >> > Chinese translation edition is not the same as the current uptodate >> English >> > edition.How to update /modify this structure? >> >> Update chapters.ent ? >> >> > If I have more time to contribute, I will be very glad to translate th= e >> > FreeBSD website(http://www.freebsd.org/) to traditional Chinese to >> promote >> > FreeBSD to people in Taiwan or HongKong. How could I do to ? >> >> Just start to translate documents under >> https://svnweb.freebsd.org/doc/head/en_US.ISO8859-1/htdocs/ and put to >> zh_TW.UTF-8 . We can see what still need to be done afterward. >> >> Thanks, >> Li-Wen >> >> -- >> Li-Wen Hsu >> http://lwhsu.org >> > > > > -- > "Life is like a snowball. The important thing is finding wet snow and a > really long hill." > > "Price is what you pay. Value is what you get." > > "The first rule of Investing is don't lose money; the second rule is > don't forget rule #1..." > > "Wall Street is the only place that people ride to work in a Rolls-Royce > to get advice from those who take the subway..." > > > =E2=80=94 Warren Buffett. > --=20 Li-Wen Hsu http://lwhsu.org From owner-freebsd-doc@FreeBSD.ORG Thu May 29 17:02:38 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90174939 for ; Thu, 29 May 2014 17:02:38 +0000 (UTC) Received: from mail-pa0-x22c.google.com (mail-pa0-x22c.google.com [IPv6:2607:f8b0:400e:c03::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 65E592F3D for ; Thu, 29 May 2014 17:02:38 +0000 (UTC) Received: by mail-pa0-f44.google.com with SMTP id lj1so667996pab.17 for ; Thu, 29 May 2014 10:02:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=kbUJlcAvUE4gEvHPkpGuiMnMqQQ8f/4QyExlstQMrB8=; b=KpCbqWFa8WWdhERc35iR6A1UAgWAdXhHIBZnjGxvpk5qA5TbTKytBT5XteQuMBTo2q jjNIHN9pTDUxZ/VfWi+KdmPVNwtISj9ZXbEx3WWR0LyNsKMp7Kh+9bYlAHWm69epvUFH kbOV91SZQJsJy/Z52bz/mCDqYSqMT45svlMCiy/95U+V/dmdab9nWAJDNtyW6tj9Uq8d CUdTz5ZemV6TDvNh24gglRxoVAjtgvGw9nv2+OK9/sgj8p7I/Y9nUk06/x/zAQnJf6u9 DXaEt/Y7WcyPjJLskQZ+H4Ra40RltXTzs3qhlaIxfCg3XF32irup1igoDRfPkAOkcSWe B4Dg== MIME-Version: 1.0 X-Received: by 10.68.189.137 with SMTP id gi9mr10509620pbc.79.1401382957927; Thu, 29 May 2014 10:02:37 -0700 (PDT) Sender: lwhsu.freebsd@gmail.com Received: by 10.70.65.71 with HTTP; Thu, 29 May 2014 10:02:37 -0700 (PDT) In-Reply-To: References: Date: Fri, 30 May 2014 01:02:37 +0800 X-Google-Sender-Auth: avzSpn1aDMH97FiKKw5MZH1kMH8 Message-ID: Subject: Re: I want to contribute the translation of the FreeBSD Handbook to Traditional Chinese From: Li-Wen Hsu To: RayCherng Yu Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD doc list X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2014 17:02:38 -0000 On Thu, May 29, 2014 at 8:52 PM, Li-Wen Hsu wrote: > I have prepared a patch for converting current zh_TW.Big5 to zh_TW.UTF-8 : > > http://people.freebsd.org/~lwhsu/doc/zh_TW.UTF-8.diff > > Hope it can be committed soon. Just got that committed, hope everything is fine. Now you have zh_TW.UTF-8 :-) I guess the next step might try to merge what we already have in: https://github.com/lwhsu/freebsd-doc/tree/master/zh_TW.Big5 Li-Wen -- Li-Wen Hsu http://lwhsu.org From owner-freebsd-doc@FreeBSD.ORG Fri May 30 18:00:00 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9508A9C1 for ; Fri, 30 May 2014 18:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 6CFE9203F for ; Fri, 30 May 2014 18:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4UI00kh054383 for ; Fri, 30 May 2014 18:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4UI00uA054382; Fri, 30 May 2014 18:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 30 May 2014 18:00:00 GMT Resent-Message-Id: <201405301800.s4UI00uA054382@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Evgeny Roubinchtein Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7FDA7686 for ; Fri, 30 May 2014 17:53:01 +0000 (UTC) Received: from mail-pd0-x22e.google.com (mail-pd0-x22e.google.com [IPv6:2607:f8b0:400e:c02::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 564622FDC for ; Fri, 30 May 2014 17:53:01 +0000 (UTC) Received: by mail-pd0-f174.google.com with SMTP id r10so1184935pdi.5 for ; Fri, 30 May 2014 10:53:01 -0700 (PDT) Received: from opal.telus (d154-5-175-186.bchsia.telus.net. [154.5.175.186]) by mx.google.com with ESMTPSA id eh4sm7404780pbc.79.2014.05.30.10.52.59 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 30 May 2014 10:53:00 -0700 (PDT) Received: from zhenya by opal.telus with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WqQzD-0000bL-7D for FreeBSD-gnats-submit@freebsd.org; Fri, 30 May 2014 10:52:59 -0700 Message-Id: Date: Fri, 30 May 2014 10:52:59 -0700 From: Evgeny Roubinchtein Reply-To: Evgeny Roubinchtein To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: docs/190429: Typo in English Handbook, section 12.7.2: s/syslogd/newsyslog/ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2014 18:00:00 -0000 >Number: 190429 >Category: docs >Synopsis: Typo in English Handbook, section 12.7.2: s/syslogd/newsyslog/ >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri May 30 18:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Evgeny Roubinchtein >Release: FreeBSD 10.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD opal 10.0-RELEASE-p3 FreeBSD 10.0-RELEASE-p3 #0: Sun May 25 23:39:30 PDT 2014 root@opal:/usr/obj/usr/src/sys/GENERIC amd64 >Description: In section 12.7.2(Log Management and Rotation) of the English Handbook, "While syslodg is normally run from cron(8)..." should be "While newsyslog is normally run from cron(8)..." >How-To-Repeat: Read the first paragraph of section 12.7.2(Log Management and Rotation). Currently, it includes a rather puzzling sentence that reads, "While syslogd is normally run from cron(8), it is not a system daemon." That statement is puzzling on two counts: one, syslogd clearly _is_ "a system daemon" by any reasonable definition: two syslogd is _not_ "run from cron(8)" in the configurations I am aware of. The fix is to substitute "newsyslog" for "syslogd" in that sentence. I am attaching a patch against a "fairly recent" checkout of docs HEAD from SVN. >Fix: --- fix begins here --- Index: en_US.ISO8859-1/books/handbook/config/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/config/chapter.xml (revision 44944) +++ en_US.ISO8859-1/books/handbook/config/chapter.xml (working copy) @@ -1408,7 +1408,7 @@ and signals programs when log files are moved. The log files may be generated by syslogd or by any other program which generates log files. While - syslogd is normally run from + newsyslog is normally run from &man.cron.8;, it is not a system daemon. In the default configuration, it runs every hour. --- fix ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri May 30 19:00:01 2014 Return-Path: Delivered-To: freebsd-doc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67FEE51F for ; Fri, 30 May 2014 19:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 55DBE25A0 for ; Fri, 30 May 2014 19:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4UJ01Ea076610 for ; Fri, 30 May 2014 19:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4UJ01Td076609; Fri, 30 May 2014 19:00:01 GMT (envelope-from gnats) Date: Fri, 30 May 2014 19:00:01 GMT Message-Id: <201405301900.s4UJ01Td076609@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Sevan Janiyan Subject: Re: docs/183024: textdump(4) mentions call doadump, should be textdump dump Reply-To: Sevan Janiyan X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2014 19:00:01 -0000 The following reply was made to PR docs/183024; it has been noted by GNATS. From: Sevan Janiyan To: bug-followup@FreeBSD.org, mexas@bris.ac.uk Cc: Subject: Re: docs/183024: textdump(4) mentions call doadump, should be textdump dump Date: Fri, 30 May 2014 19:56:47 +0100 Hi, the configuration section states: "By default, kernel dumps generated on panic or via explicit requests for a dump will be regular memory dumps; how-ever, by using the textdump set command in ddb(4), or by setting the debug.ddb.textdump.pending sysctl to 1 using sysctl(8), it is possible to request that the next dump be a textdump." when you call doadump, the textdump is created, it's not possible to set the type after requesting a dump because the dump happens there & then on call. On 10.0-RELEASE TEXTDUMP_PREFERRED is honored. Entering the debugger & running call doadump outputs textdump: creating 'ddb.txt'. textdump: creating 'config.txt'. textdump: creating 'msgbuf.txt'. textdump: creating 'msgbuf.txt'. textdump: creating 'version.txt'. Textdump complete. = 0 From owner-freebsd-doc@FreeBSD.ORG Sun Jun 1 03:42:45 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0CB23B50 for ; Sun, 1 Jun 2014 03:42:45 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 969D129A4 for ; Sun, 1 Jun 2014 03:42:44 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.8/8.14.8) with ESMTP id s513gZ51020721 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sat, 31 May 2014 21:42:36 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.8/8.14.8/Submit) with ESMTP id s513gZuL020718 for ; Sat, 31 May 2014 21:42:35 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sat, 31 May 2014 21:42:35 -0600 (MDT) From: Warren Block To: freebsd-doc@FreeBSD.org Subject: Clarifying the steps for new committers Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sat, 31 May 2014 21:42:36 -0600 (MDT) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2014 03:42:45 -0000 The Committer's Guide has a confusing and difficult to follow set of steps for new committers: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/conventions.html I propose this set of changes: https://phabric.freebsd.org/D129 Rendered version: http://www.wonkity.com/~wblock/committers/conventions.html Feedback welcome! From owner-freebsd-doc@FreeBSD.ORG Mon Jun 2 06:22:30 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5AEC54AA for ; Mon, 2 Jun 2014 06:22:30 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 421C12E25 for ; Mon, 2 Jun 2014 06:22:30 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s526MUJn066397 for ; Mon, 2 Jun 2014 07:22:30 +0100 (BST) (envelope-from no-reply-bugzilla-daemon@freebsd.org) From: no-reply-bugzilla-daemon@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 190429] Typo in English Handbook, section 12.7.2: s/syslogd/newsyslog/ Date: Mon, 02 Jun 2014 05:22:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pluknet@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jun 2014 06:22:30 -0000 http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190429 Sergey Kandaurov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved CC| |pluknet@FreeBSD.org Resolution|--- |As Intended -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 2 14:08:52 2014 Return-Path: Delivered-To: www@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F0A3384 for ; Mon, 2 Jun 2014 14:08:52 +0000 (UTC) Received: from smtp004-ams.servers.ubivox.com (smtp004-ams.servers.ubivox.com [198.20.114.74]) by mx1.freebsd.org (Postfix) with ESMTP id D68AC29DC for ; Mon, 2 Jun 2014 14:08:51 +0000 (UTC) Received: from app002-ams.servers.ubivox.com (app002-ams.servers.ubivox.com [198.20.114.152]) by smtp004-ams.servers.ubivox.com (Postfix) with ESMTP id 1FFE5401A344 for ; Mon, 2 Jun 2014 16:01:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ubivox.com; i=customers@ubivox.com; q=dns/txt; s=ux201402; t=1401717701; h=Content-Type : Date : Feedback-ID : From : List-Archive : List-Id : List-Post : List-Unsubscribe : Message-Id : Mime-Version : Subject : To : X-Mailer : X-Postmaster-Information; bh=+GarcoaOkWJfExJ48t1QmWL/ajzIdxM3JsZdCDXc15Y=; b=xvP3d0WPSmrykPipQIYar7qiTRUNDuxxYYzsJi5PS/pUli1Y0KNUzbrIAAVAjqGrdnMmwV WsarRbOCQ+ouEUpXqv+YoyrvdSt262L6D9Cw3ZuiLl/LiSj6J+srMOirC1DMfBTw8KZO0TTW 3TXpPWfCrlKbqpSdDuug0iU5XIQ8U= From: Efichip Subject: Tomahawk Diagnostic Technologies Date: Mon, 02 Jun 2014 14:01:40 -0000 To: www@FreeBSD.org Message-Id: <1401717700979473.278808.73701035.5011.201.d21e45d4a8864b68258651a9b2dd5b9d2af3d862@deliveries.ubivox.com> X-Mailer: Ubivox Mailengine 2.13.7 X-Postmaster-Information: Feedback-ID: 278808:23217:5011:ubivox Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jun 2014 14:08:52 -0000 This text is a preheader which elaborates on the content in the newsletter View the newsletter online https://tomdiag.clients.ubivox.com/newsletter/278808/73701035/13422471/ ________________________________________________________________ Dear Customer EFICHIP - Professional Manufacture of Automotive Diagnostic Equipment. EFICHIP is a range of automotive diagnostic, scanning and code reading equipment under the EFICHIP product umbrella. EFICHIP designs, manufactures and delivers innovative products to meet the highest of the demands of today's automotive DIY'ers as well as the professional technicians.EFICHIP headquarters are located in Vilnius, Lithuania. The facilities include: executive administration offices, R&D (Research & Development) and manufacturing operations. This guarantees that all our products are designed, developed and produced in one place using the most advanced manufacturing process. EFICHIP has a long-standing commitment to create unique equipment for both beginners and experts. [1]www.efichip.com - fast, quality and easy web store. [1] http://efichip.com/EN/ /static/EFICHIP_logo2.gif http://www.efichip.com/EN/ __________________________________________________________________ Efichip provide to you!!! 1. We offer to you 1 years warranty; 2. Technical support; 3. Quality support; 4. Best price! ; 5. Fast delivery time(1-2 days past payment); 6. Opportunity to distribute goods; 7. Competent staff ; 8. Reliable customer services; 9. Various payments; 10. Discounts; /static/images (1).jpg __________________________________________________________________ Contact our sales representative to get your special discounts!!! __________________________________________________________________ NEC Programmer We can do all Mercedes cars from MY2006 to MY2011/2012 are using this chromium-plated key - v.57 without touching EIS. We can upgrade our devices. 3000 EUR upgrade for old customers. NEC v.57 solution and we could read EIS password from Keys with that SW version - 57. Also with IR Service Key is possible to read hashes from EIS. Key calculation for NEC-based EIS (MY2006 - MY2011) could start. http://www.efichip.com/EN/catalog/6/181/ BUY IT NOW!!! AdBlue V3 + NOX Emulator Adblue V3 + NOX Emulator allows you to override Adblue SCR system and NOX sensor on your truck. It can emulate working Adblue system and NOX sensor even on trucks with damaged Adblue SCR system. Adblue NOX emulator support list: - Volvo trucks; - Renault trucks; - DAF trucks; - MAN trucks; - Iveco trucks; - Scania trucks ; - Mercedes-Benz trucks. http://www.efichip.com/EN/catalog/4/176/ Only =E2=82=AC399 Eltrac Kit Iveco Eltrac Bluetooth Module enables wireless communication between vehicles and diagnostic computers and simplifies and accelerates repair operations in workshops. Only today is 2000eur!!! http://efichip.com/EN/catalog/4/39/ Price =E2=82=AC2000 __________________________________________________________________ VCI-560 MUX The VCI-560 is a powerful fault diagnosis device that has been developed using the latest advanced technology. Used in combination with a PC, it provides a tool for quick and efficient analysis of vehicle faults. The VCI-560 switches the input channel automatically to the required data line (K-line, L-line) or CAN-bus of the truckside "Diagnostic Connector". http://efichip.com/EN/catalog/4/35/ Whit this newlatter only 2000eur!!! SCANIA VCI2 Scania VCI2 is a tool that is used together with Scania Diagnos & Programmer 3 (SDP3) software to diagnose and troubleshoot Scania vehicles. __________________________________________________________________ For any kind of information please contact our sales office: Domas, Sales Representative +37066003497 +442070971475 Skype: sr6_rl Email: [1]sr6@tomdiag.com [2]www.EFICHIP.com [1] mailto:sr6@tomdiag.com [2] http://www.efichip.com/EN/ Click here to unsubscribe from the newsletter ________________________________________________________________ From owner-freebsd-doc@FreeBSD.ORG Mon Jun 2 15:08:41 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 680A0DC7 for ; Mon, 2 Jun 2014 15:08:41 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4FF1520A7 for ; Mon, 2 Jun 2014 15:08:41 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s52F8f5D046370 for ; Mon, 2 Jun 2014 16:08:41 +0100 (BST) (envelope-from no-reply-bugzilla-daemon@freebsd.org) From: no-reply-bugzilla-daemon@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 190429] Typo in English Handbook, section 12.7.2: s/syslogd/newsyslog/ Date: Mon, 02 Jun 2014 15:08:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jgh@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: jgh@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jun 2014 15:08:41 -0000 http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190429 jgh@FreeBSD.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jgh@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |jgh@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 2 22:43:26 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 396AA326 for ; Mon, 2 Jun 2014 22:43:26 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2014B2D02 for ; Mon, 2 Jun 2014 22:43:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s52MhPfn074385 for ; Mon, 2 Jun 2014 23:43:26 +0100 (BST) (envelope-from no-reply-bugzilla-daemon@freebsd.org) From: no-reply-bugzilla-daemon@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 183024] textdump(4) mentions call doadump, should be textdump dump Date: Mon, 02 Jun 2014 22:43:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: allanjude@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: allanjude@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jun 2014 22:43:26 -0000 http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=183024 Allan Jude changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |allanjude@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |allanjude@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jun 3 00:41:29 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42D5B482 for ; Tue, 3 Jun 2014 00:41:29 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A648263D for ; Tue, 3 Jun 2014 00:41:29 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s530fTEd086948 for ; Tue, 3 Jun 2014 01:41:29 +0100 (BST) (envelope-from no-reply-bugzilla-daemon@freebsd.org) From: no-reply-bugzilla-daemon@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 84317] fdp-primer doesn't show class=USERNAME distinctively Date: Tue, 03 Jun 2014 00:41:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: wblock@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jun 2014 00:41:29 -0000 http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=84317 Warren Block changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved CC| |wblock@FreeBSD.org Resolution|--- |FIXED --- Comment #5 from Warren Block --- Browsers have changed greatly in the last nine years, and the documentation toolchain has changed twice as well. Cursory tests show the root user name appears in a monospaced font as intended. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jun 4 13:29:27 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E29F1242 for ; Wed, 4 Jun 2014 13:29:27 +0000 (UTC) Received: from atl4mhfb03.myregisteredsite.com (atl4mhfb03.myregisteredsite.com [209.17.115.61]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 949D122B8 for ; Wed, 4 Jun 2014 13:29:27 +0000 (UTC) Received: from atl4mhho01.myregisteredsite.com (atl4mhho01.myregisteredsite.com [209.17.115.106]) by atl4mhfb03.myregisteredsite.com (8.14.4/8.14.4) with ESMTP id s54DSv8A006985 for ; Wed, 4 Jun 2014 09:29:01 -0400 Received: from innuitymail.com (hqsuse10icpmail02.innuitymail.myregisteredsite.com [64.69.212.239]) by atl4mhho01.myregisteredsite.com (8.14.4/8.14.4) with ESMTP id s54DSnov031740 for ; Wed, 4 Jun 2014 09:28:49 -0400 Received: (qmail 23685 invoked from network); 4 Jun 2014 13:28:48 -0000 Received: from unknown (HELO avawrites.com) (info@faithfest.com@64.69.212.9) by innuitymail.com with SMTP; 4 Jun 2014 13:28:48 -0000 From: Fyll inn informasjon To: doc@freebsd.org Subject: Danske Online - 958593 Date: 04 Jun 2014 16:28:48 +0300 Message-ID: <20140604162848.48CE9A27A80879FD@avawrites.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 13:29:28 -0000 http://lesseratplesser.com/Private-old/www.danskebank.norway/Pages/no/i ndex.html From owner-freebsd-doc@FreeBSD.ORG Thu Jun 5 01:35:08 2014 Return-Path: Delivered-To: www@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A20C3E2 for ; Thu, 5 Jun 2014 01:35:08 +0000 (UTC) Received: from p3nlsmtp17.shr.prod.phx3.secureserver.net (p3nlsmtp17.shr.prod.phx3.secureserver.net [72.167.234.242]) by mx1.freebsd.org (Postfix) with ESMTP id 378982B9F for ; Thu, 5 Jun 2014 01:35:07 +0000 (UTC) Received: from p3nlhg590.shr.prod.phx3.secureserver.net ([184.168.152.161]) by p3nlsmtp17.shr.prod.phx3.secureserver.net with id ARZp1o01T3VBZTL01RZpy2; Wed, 04 Jun 2014 18:33:49 -0700 Received: from p3nlhg590.shr.prod.phx3.secureserver.net (localhost [127.0.0.1]) by p3nlhg590.shr.prod.phx3.secureserver.net (8.14.4/8.12.11) with ESMTP id s551Z82e029142 for ; Wed, 4 Jun 2014 18:35:08 -0700 Received: (from mypa0915@localhost) by p3nlhg590.shr.prod.phx3.secureserver.net (8.14.4/8.14.4/Submit) id s551Z8Ka029139; Wed, 4 Jun 2014 18:35:08 -0700 Date: Wed, 4 Jun 2014 18:35:08 -0700 Message-Id: <201406050135.s551Z8Ka029139@p3nlhg590.shr.prod.phx3.secureserver.net> To: www@FreeBSD.org Subject: Found your site From: judyhomini@mypatentlawyers.com Reply-To: judyhomini@mypatentlawyers.com X-Mailer: PHP/5.2.17 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2014 01:35:08 -0000 Hey! hows it going? ltns Have you seen this? http://digitalproinc.net/digg.php Catch ya later, John From owner-freebsd-doc@FreeBSD.ORG Thu Jun 5 05:55:34 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B87E3C1; Thu, 5 Jun 2014 05:55:34 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id 6745520EC; Thu, 5 Jun 2014 05:55:31 +0000 (UTC) Received: from [10.1.1.1] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allanjude.freebsd@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 8BE0F7D32C; Thu, 5 Jun 2014 05:55:29 +0000 (UTC) Message-ID: <53900653.8060506@freebsd.org> Date: Thu, 05 Jun 2014 01:55:31 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: webstats@FreeBSD.org Subject: Requesting Google Analytics report X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GeFjFB1QQCvPBoSEvWaPg2KcECi0TECDj" Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2014 05:55:34 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --GeFjFB1QQCvPBoSEvWaPg2KcECi0TECDj Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable What is the procedure for requesting requesting a report from our Google Analytics? Specifically, I would like to know something like the top 25 more viewed man pages in /cgi/man.cgi After my rampage rewrite of the netstat man page, I think it would be a good idea to look at what the most commonly looked at man pages are, and ensure they are the best that they can be, so users get the information they are looking for. --=20 Allan Jude --GeFjFB1QQCvPBoSEvWaPg2KcECi0TECDj Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTkAZWAAoJEJrBFpNRJZKf390QAMNgaG7DlzIG9c/NxZgzCL/H hSgQrNDOsCj3Wya8DuGP7oYK7lheDH0KNZcv5Zo+kZ0qzGeez/0ceNZ94jJUOYiN yC78tcUymdhrZlkaVVMpS1qRonp9ldote6RTpgtzusyGjS6DBex9zuEkzY7Trr9T ipApB8sK8BrjW06EnTyKVGxDJM4SQePkKcqlBQF6wJbfRNpcl2/TBX0xz6oU9feX v8CoPc3TSvqmHfx6IUymswaPYrpwesBLkLMcRVd4pzvBrOCoFEIR+EKfbOjqUhWq AgyM8Z6oWuHiooG3pm/n039MkQYYBtvKljp/IePuEaG2B6cMHMcsjsRFlJG/bn2x Pajusx1DbE16aYlBeVPesPErpClspYIKp6JisNRL7XFAdrynie79CqUDSHCxWu7V 6xE3uJiCM7Nka9D7v+NECToWiCLREUCG8lz5DqrlWxLz+O9P9U8mu+y7bFWFVztI AQkU8gcdeSZq3Y3DcGeYDjaJbEKvAHI5e/C4bToaG0dYablRW4MJHEeI8srPEQ17 24K1glMCgbfLaO0DZCx2DrqZ88yDE1c4+LS8YBnhIqyXdeySZSCjl0H6RKjD5azp YyhIdLow3bVuKyzsoXed+t7xKwD4Sk02prLTpACjgjMaAU/eYNy1+0uBJuAC7s2p 6G6YxcQvl2G55/adNsM/ =NEce -----END PGP SIGNATURE----- --GeFjFB1QQCvPBoSEvWaPg2KcECi0TECDj-- From owner-freebsd-doc@FreeBSD.ORG Thu Jun 5 23:31:08 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 049B17C8 for ; Thu, 5 Jun 2014 23:31:08 +0000 (UTC) Received: from consorzio2.9netweb.it (consorzio2.9netweb.it [66.71.182.16]) (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 91C7327D1 for ; Thu, 5 Jun 2014 23:31:07 +0000 (UTC) X-No-Relay: not in my network Received: from [192.168.0.104] (rom80-74-138-241.ch-meta.net [80.74.138.241]) by consorzio2.9netweb.it (Postfix) with ESMTPA id 4EDD8102A14A for ; Fri, 6 Jun 2014 00:45:06 +0200 (CEST) Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Description: Mail message body Subject: Administrative Notice To: doc@freebsd.org From: "Help Desk" Date: Fri, 06 Jun 2014 06:45:00 +0800 Reply-To: help.desk014@tech-center.com X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2014 23:31:08 -0000 Help Desk Attention Account User, Scheduled Maintenance & Upgrade Your account is in the process of being upgraded to a newest = Windows-based servers and an enhanced online email interface inline with in= ternet infrastructure Maintenance. The new servers will provide better anti= -spam and anti-virus functions, along with IMAP Support for mobile devices = to enhance your usage. To ensure that your account is not disrupted but active during and after th= is upgrade, you are required to kindly confirm your account by stating the = details below: * Domain\user name: = * Password: = This will prompt the upgrade of your account. Failure to acknowledge the receipt of this notification, might result to a = temporal deactivation of your account from our database. Your account shall= remain active upon your confirmation of your login details. We do apologize for any inconvenience caused. Sincerely, Your Customer Care Team (c) Copyright 2014, All Rights Reserved. From owner-freebsd-doc@FreeBSD.ORG Fri Jun 6 01:33:47 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB468EF6 for ; Fri, 6 Jun 2014 01:33:47 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D291021CA for ; Fri, 6 Jun 2014 01:33:47 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s561XlUg002341 for ; Fri, 6 Jun 2014 02:33:47 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 188214] Manpage for fsck(8) doesn't say what happens when no -t or -T Date: Fri, 06 Jun 2014 01:33:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: allanjude@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2014 01:33:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=188214 Allan Jude changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |allanjude@FreeBSD.org --- Comment #6 from Allan Jude --- Tom: Is this resolved now? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Fri Jun 6 02:10:48 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA1AE247 for ; Fri, 6 Jun 2014 02:10:48 +0000 (UTC) Received: from mail-s89.mailgun.info (mail-s89.mailgun.info [184.173.153.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B63F24A5 for ; Fri, 6 Jun 2014 02:10:48 +0000 (UTC) DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=installmonetizer.us; q=dns/txt; s=mx; t=1402020647; h=Mime-Version: Content-Type: Subject: From: To: Message-Id: Content-Transfer-Encoding: Date: Sender; bh=HrMfdby+4T+1lzs7E2ionSBsJavWy/oattuXoONFq9U=; b=MaWRP3nmX6JFoRQ3oa1DZfUkAKUWqFsZ3G4UR0SGlH/5J4lhha+KDTf1tj51xreVJJkP9zy2 YhlhTw/SwCTUlDbpM3v7Qu2hXGE7O7uROuiq1SaQsqZPGUyOs8YuHE7oZVwjzh3MnOeDs9jS ZimEj2NnktgXsQ5EDCGYSIBPOyQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=installmonetizer.us; s=mx; q=dns; h=Mime-Version: Content-Type: Subject: From: To: Message-Id: Content-Transfer-Encoding: Date: Sender; b=VE09m759aQiyZxx8ZGPuARiGTPx1Ec4VG2usvwqN3CGt2RCR8I6SP5nu3dlXjlJ3a/ZgQt d8bUMTvdchNCxlJqbgZ1USG7QYQkr8cmpUYJmNG4o+yP4Finr+F8zti5aNVZvqNAJMv9pUM1 BzfkB2QlTOjrUhzRXWvjm6Va6bdXM= Received: by luna.mailgun.net with HTTP; Fri, 06 Jun 2014 01:56:55 +0000 Subject: Tips to Increase Your Traffic From: news@installmonetizerteam.com To: freebsd-doc@freebsd.org Message-Id: <20140606015655.14755.67241@installmonetizer.us> X-Mailgun-Sid: WyJkM2FhNiIsICJmcmVlYnNkLWRvY0BmcmVlYnNkLm9yZyIsICJmOGY3ZCJd Date: Fri, 06 Jun 2014 02:10:47 +0000 Sender: news=installmonetizerteam.com@installmonetizer.us MIME-Version: 1.0 Content-Type: text/plain; charset="ascii" X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2014 02:10:48 -0000 Software Marketing News & Tips Software Marketing News & Tips: [1] [logo.jpg] [2][chrome-firefox-internet-explorer.png] [3]BROWSER WARS For as far as I can remember, Internet Explorer was the king of browsers. Sure, there was Firefox (Mozilla, but IE was king. Boy have the tides changed. Check out the below report from w3schools.com . They track global movement of browser usage. You'll be surprised to see the results. [4]Read More [5] [tips.jpg] [6]TIPS TO INCREASE YOUR TRAFFIC Every software developer looks for ways to increase their download volume and earn more revenue. However, most coders are experienced developers and have little experience in marketing. So we wrote a basic marketing guide any one can do to gain more software installs. [7]Read More [8] [expo-300x180.jpg] [9]INDUSTRY CONFERENCES PUBLISHERS SHOULD ATTEND If you're thinking about going to a multi-day performance marketing event, there are a few that are worth your time and money. [10]Read More InstallMonetizer 5655 Silver Creek Vly Rd #615 San Jose, CA, 95138, United States This newsletter keeps you up to date on change related to the software distribution and marketing world. If you wish to no longer receive these please [11]unsubscribe CAPTION: References 1. http://www.installmonetizer.com/ 2. http://blog.installmonetizer.com/?p=16 3. http://blog.installmonetizer.com/?p=16 4. http://blog.installmonetizer.com/?p=16 5. http://blog.installmonetizer.com/?p=7 6. http://blog.installmonetizer.com/?p=7 7. http://blog.installmonetizer.com/?p=7 8. http://blog.installmonetizer.com/?p=10 9. http://blog.installmonetizer.com/?p=10 10. http://blog.installmonetizer.com/?p=10 11. http://installmonetizer.us/cron/unsub_v1.php?userid=ZnJlZWJzZC1kb2NAZnJlZWJzZC5vcmc=&service=Mg== From owner-freebsd-doc@FreeBSD.ORG Fri Jun 6 03:20:12 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7ED62774 for ; Fri, 6 Jun 2014 03:20:12 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 523EE2B34 for ; Fri, 6 Jun 2014 03:20:12 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s563KC0v087784 for ; Fri, 6 Jun 2014 03:20:12 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s563KC5W087782 for freebsd-doc@FreeBSD.org; Fri, 6 Jun 2014 03:20:12 GMT (envelope-from www-data) Date: Fri, 6 Jun 2014 03:20:12 GMT From: User Www-data Message-Id: <201406060320.s563KC5W087782@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2014 03:20:12 -0000 ===> doc/articles/problem-reports (all) ===> doc/articles/rc-scripting (all) ===> doc/articles/relaydelay (all) ===> doc/articles/releng (all) ===> doc/articles/releng-packages (all) ===> doc/articles/remote-install (all) ===> doc/articles/serial-uart (all) ===> doc/articles/solid-state (all) ===> doc/articles/vm-design (all) ===> doc/articles/wp-toolbox (all) ===> doc/books (all) ===> doc/books/arch-handbook (all) ===> doc/books/design-44bsd (all) ===> doc/books/dev-model (all) ===> doc/books/developers-handbook (all) ===> doc/books/faq (all) ===> doc/books/fdp-primer (all) ===> doc/books/handbook (all) env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude /home/www/build/head/en_US.ISO8859-1/books/handbook/book.xml > book.parsed.xml.tmp /home/www/build/head/en_US.ISO8859-1/books/handbook/eresources/chapter.xml:324: parser error : Entity 'a.git.name' not defined &a.git.name; ^ /home/www/build/head/en_US.ISO8859-1/books/handbook/eresources/chapter.xml:1371: parser error : Entity 'a.git.name' not defined &a.git.name; ^ /home/www/build/head/en_US.ISO8859-1/books/handbook/eresources/chapter.xml:2388: parser error : chunk is not well balanced ^ /home/www/build/head/en_US.ISO8859-1/books/handbook/book.xml:303: parser error : Failure to process entity chap.eresources &chap.eresources; ^ /home/www/build/head/en_US.ISO8859-1/books/handbook/book.xml:303: parser error : Entity 'chap.eresources' not defined &chap.eresources; ^ *** [book.parsed.xml] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/books/handbook. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/books. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1. *** [all-all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/doc. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 8.28 real 4.18 user 4.00 sys From owner-freebsd-doc@FreeBSD.ORG Fri Jun 6 03:39:26 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BBA59E42; Fri, 6 Jun 2014 03:39:26 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id AAF712CFA; Fri, 6 Jun 2014 03:39:26 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 51A9EF17; Fri, 6 Jun 2014 03:39:23 +0000 (UTC) Date: Fri, 6 Jun 2014 03:39:15 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@freebsd.org, freebsd-doc@freebsd.org, allanjude@FreeBSD.org Message-ID: <1948426113.570.1402025960380.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_DOC #399 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Jenkins-Job: FreeBSD_DOC X-Jenkins-Result: FAILURE X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2014 03:39:26 -0000 See Changes: [allanjude] Add missing freebsd-git mailing list to the handbook PR: 190628 Submitted by: david@catwhisker.org (original patch) Approved by: eadler (mentor) [allanjude] Wrong date listed for errata notice EN-14:06.exec on the website. The date on the actual notice is correct (2014-06-03) but the date in doc/head/share/xml/notices.xml wass incorrectly entered as 2014-05-03 in rD45000 PR: 190628 Approved by: wblock (mentor) ------------------------------------------ Started by an SCM change Building on master in workspace Updating svn://svn.freebsd.org/doc/head at revision '2014-06-06T03:24:18.952 +0000' U en_US.ISO8859-1/books/handbook/eresources/chapter.xml U share/xml/notices.xml At revision 45018 [FreeBSD_DOC] $ /bin/sh -xe /tmp/hudson1441014399952986787.sh + make all ===> en_US.ISO8859-1 (all) ===> en_US.ISO8859-1/articles (all) ===> en_US.ISO8859-1/articles/bsdl-gpl (all) ===> en_US.ISO8859-1/articles/building-products (all) ===> en_US.ISO8859-1/articles/casestudy-argentina.com (all) ===> en_US.ISO8859-1/articles/committers-guide (all) ===> en_US.ISO8859-1/articles/compiz-fusion (all) ===> en_US.ISO8859-1/articles/console-server (all) ===> en_US.ISO8859-1/articles/contributing (all) ===> en_US.ISO8859-1/articles/contributing-ports (all) ===> en_US.ISO8859-1/articles/contributors (all) ===> en_US.ISO8859-1/articles/cups (all) ===> en_US.ISO8859-1/articles/custom-gcc (all) ===> en_US.ISO8859-1/articles/explaining-bsd (all) ===> en_US.ISO8859-1/articles/fbsd-from-scratch (all) ===> en_US.ISO8859-1/articles/filtering-bridges (all) ===> en_US.ISO8859-1/articles/fonts (all) ===> en_US.ISO8859-1/articles/freebsd-questions (all) ===> en_US.ISO8859-1/articles/freebsd-update-server (all) ===> en_US.ISO8859-1/articles/geom-class (all) ===> en_US.ISO8859-1/articles/gjournal-desktop (all) ===> en_US.ISO8859-1/articles/hubs (all) ===> en_US.ISO8859-1/articles/ipsec-must (all) ===> en_US.ISO8859-1/articles/laptop (all) ===> en_US.ISO8859-1/articles/ldap-auth (all) ===> en_US.ISO8859-1/articles/linux-comparison (all) ===> en_US.ISO8859-1/articles/linux-emulation (all) ===> en_US.ISO8859-1/articles/linux-users (all) ===> en_US.ISO8859-1/articles/mailing-list-faq (all) ===> en_US.ISO8859-1/articles/mh (all) ===> en_US.ISO8859-1/articles/nanobsd (all) ===> en_US.ISO8859-1/articles/new-users (all) ===> en_US.ISO8859-1/articles/p4-primer (all) ===> en_US.ISO8859-1/articles/pam (all) ===> en_US.ISO8859-1/articles/pgpkeys (all) ===> en_US.ISO8859-1/articles/port-mentor-guidelines (all) ===> en_US.ISO8859-1/articles/portbuild (all) ===> en_US.ISO8859-1/articles/pr-guidelines (all) ===> en_US.ISO8859-1/articles/problem-reports (all) ===> en_US.ISO8859-1/articles/rc-scripting (all) ===> en_US.ISO8859-1/articles/relaydelay (all) ===> en_US.ISO8859-1/articles/releng (all) ===> en_US.ISO8859-1/articles/releng-packages (all) ===> en_US.ISO8859-1/articles/remote-install (all) ===> en_US.ISO8859-1/articles/serial-uart (all) ===> en_US.ISO8859-1/articles/solid-state (all) ===> en_US.ISO8859-1/articles/vm-design (all) ===> en_US.ISO8859-1/articles/wp-toolbox (all) ===> en_US.ISO8859-1/books (all) ===> en_US.ISO8859-1/books/arch-handbook (all) ===> en_US.ISO8859-1/books/design-44bsd (all) ===> en_US.ISO8859-1/books/dev-model (all) ===> en_US.ISO8859-1/books/developers-handbook (all) ===> en_US.ISO8859-1/books/faq (all) ===> en_US.ISO8859-1/books/fdp-primer (all) ===> en_US.ISO8859-1/books/handbook (all) env XML_CATALOG_FILES="file:// file:// file:// file:// file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude > book.parsed.xml.tmp :324: parser error : Entity 'a.git.name' not defined &a.git.name; ^ :1371: parser error : Entity 'a.git.name' not defined &a.git.name; ^ :2388: parser error : chunk is not well balanced ^ :303: parser error : Failure to process entity chap.eresources &chap.eresources; ^ :303: parser error : Entity 'chap.eresources' not defined &chap.eresources; ^ *** [book.parsed.xml] Error code 1 Stop in *** [all] Error code 1 Stop in *** [all] Error code 1 Stop in *** [all] Error code 1 Stop in Build step 'Execute shell' marked build as failure From owner-freebsd-doc@FreeBSD.ORG Fri Jun 6 06:29:17 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7529DD; Fri, 6 Jun 2014 06:29:17 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id D69DC2A10; Fri, 6 Jun 2014 06:29:17 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id C67F3F78; Fri, 6 Jun 2014 06:29:16 +0000 (UTC) Date: Fri, 6 Jun 2014 06:29:15 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@freebsd.org, freebsd-doc@freebsd.org, allanjude@FreeBSD.org Message-ID: <973819715.571.1402036155515.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1948426113.570.1402025960380.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1948426113.570.1402025960380.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Jenkins build is back to normal : FreeBSD_DOC #400 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Jenkins-Job: FreeBSD_DOC X-Jenkins-Result: SUCCESS X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2014 06:29:18 -0000 See From owner-freebsd-doc@FreeBSD.ORG Fri Jun 6 21:05:54 2014 Return-Path: Delivered-To: www@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB25A13C for ; Fri, 6 Jun 2014 21:05:54 +0000 (UTC) Received: from stcceg-momta02-sms.mycingular.net (stcceg-momta02-sms.mycingular.net [209.183.32.141]) by mx1.freebsd.org (Postfix) with ESMTP id ADCDA2ED4 for ; Fri, 6 Jun 2014 21:05:54 +0000 (UTC) Received: from [209.183.32.23] ([209.183.32.23:6507] helo=stcceg-mtmta03) by stcceg-momta02 (envelope-from <7133064614@txt.att.net>) (ecelerity 3.0.23.37692 r(37717)) with ESMTP id 3E/D6-16700-B7822935; Fri, 06 Jun 2014 15:45:47 -0500 Date: Fri, 06 Jun 2014 15:45:47 -0500 Received: from txt.att.net ([172.16.176.41]) by stcceg-mtmta03 with bizsmtp id B8lc1o0EB0txz10018lcvX; Fri, 06 Jun 2014 15:45:47 -0500 Message-ID: <3E.D6.16700.B7822935@stcceg-momta02> Content-Type: text/plain; charset="us-ascii" X-Cloudmark-Analysis: v=2.1 cv=WaeCaiRX c=1 sm=1 tr=0 a=62XjlP8EM9Sc9Gw++oU2xg==:117 a=HZJGGiqLAAAA:8 a=h-jBwSTiDKYA:10 a=kgigA1grwQXqrZMq7TkA:9 From: 7133064614@txt.att.net To: www@FreeBSD.org Subject: X-OPWV-Extra-Message-Type: MO X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2014 21:05:54 -0000 Howdy ================================================================== This mobile text message is brought to you by AT&T From owner-freebsd-doc@FreeBSD.ORG Sun Jun 8 01:14:29 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3FC5F535 for ; Sun, 8 Jun 2014 01:14:29 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2796C2404 for ; Sun, 8 Jun 2014 01:14:29 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s581ETmF032555 for ; Sun, 8 Jun 2014 02:14:29 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 185481] sh/bash Parameter Expansion +/- syntax not documented Date: Sun, 08 Jun 2014 01:14:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bjk@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: bjk@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 01:14:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=185481 Benjamin Kaduk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bjk@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |bjk@FreeBSD.org --- Comment #2 from Benjamin Kaduk --- As noted in comment 1, these expansion syntaxes are documented, albeit not in a very obvious fashion. bash is not part of the FreeBSD base system; the manual page for bash is installed as part of the bash package,so issues with the bash manual page should be reported to the bash upstream. I will think about whether there are ways to reword the sh manual page to make these syntaxes more clear. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Sun Jun 8 02:23:32 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 202F3E9E for ; Sun, 8 Jun 2014 02:23:32 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07FA9287B for ; Sun, 8 Jun 2014 02:23:32 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s582NVDZ028673 for ; Sun, 8 Jun 2014 03:23:31 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 184459] Documentation Bug in the man Page for the who Command Date: Sun, 08 Jun 2014 02:23:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bjk@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: bjk@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 02:23:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184459 Benjamin Kaduk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bjk@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |bjk@FreeBSD.org --- Comment #1 from Benjamin Kaduk --- The V1 UNIX man page for who(1) appears to be available at http://minnie.tuhs.org/cgi-bin/utree.pl?file=V1/man/man1/who.1 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Sun Jun 8 19:15:49 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 413FA884 for ; Sun, 8 Jun 2014 19:15:49 +0000 (UTC) Received: from mail-oa0-x22c.google.com (mail-oa0-x22c.google.com [IPv6:2607:f8b0:4003:c02::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F7062077 for ; Sun, 8 Jun 2014 19:15:49 +0000 (UTC) Received: by mail-oa0-f44.google.com with SMTP id i7so245394oag.31 for ; Sun, 08 Jun 2014 12:15:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=cK2u1i3c7ulzLuoMdgzyHAPV1xvvjsH5zwMULiCYI2w=; b=MiecLuVxwGiYje5QhgV/XWLvYUxui/uA+f1VGwVbyBkBaA3zViaXMxfwY1BZQkzeqz DiEL+sHMvsTTwQ0uXPZTO1U7aXs7JuMk8r2T1FyhLW1a9YXqT8WsaqQ3Dqa5lhlgzgZ1 jzlvxDFFN8E+Za6V94QDP3hpB5UBKGHndfA+ZxRfBgl0I+f6pDvHHw8iEi5Pl779yp9e 4EF2kUa3VY1MFi6SjG5+0G+uX7h3SqcTqnPV0AjnflnplyqftkjXFENrnewnpvfuTsUb g/RW2fXOySc+1INMXwY/RIFJbtjOoWKPP+6oTsek1dupoNoGFidJ8vUg0xqU9SCZN8Ip mgag== MIME-Version: 1.0 X-Received: by 10.60.124.108 with SMTP id mh12mr22165354oeb.35.1402254948406; Sun, 08 Jun 2014 12:15:48 -0700 (PDT) Received: by 10.76.18.114 with HTTP; Sun, 8 Jun 2014 12:15:48 -0700 (PDT) Date: Sun, 8 Jun 2014 20:15:48 +0100 Message-ID: Subject: Changes to Wiki articles From: "Sevan / Venture37" To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 19:15:49 -0000 Hi, What's the procedure for changing existing articles on the wiki. It doesn't seem possible to create a new account? Sevan / Venture37 From owner-freebsd-doc@FreeBSD.ORG Sun Jun 8 19:55:58 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A22A2254 for ; Sun, 8 Jun 2014 19:55:58 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 897BD23B1 for ; Sun, 8 Jun 2014 19:55:58 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s58JtwhL088962 for ; Sun, 8 Jun 2014 20:55:58 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 184051] Update configuration example for staging Date: Sun, 08 Jun 2014 19:55:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: staging X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: eadler@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 19:55:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184051 Eitan Adler changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |staging -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Sun Jun 8 22:20:07 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE365C45 for ; Sun, 8 Jun 2014 22:20:07 +0000 (UTC) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 90ABD2E40 for ; Sun, 8 Jun 2014 22:20:06 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id BEC075607F; Sun, 8 Jun 2014 17:20:05 -0500 (CDT) Date: Sun, 8 Jun 2014 17:20:05 -0500 From: Mark Linimon To: Sevan / Venture37 Subject: Re: Changes to Wiki articles Message-ID: <20140608222005.GA22472@lonesome.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 22:20:07 -0000 On Sun, Jun 08, 2014 at 08:15:48PM +0100, Sevan / Venture37 wrote: > What's the procedure for changing existing articles on the wiki. It > doesn't seem possible to create a new account? See "New Accounts" under https://wiki.freebsd.org/AboutWiki . That should help. mcl From owner-freebsd-doc@FreeBSD.ORG Sun Jun 8 23:29:50 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 843217B3 for ; Sun, 8 Jun 2014 23:29:50 +0000 (UTC) Received: from mail-wi0-x230.google.com (mail-wi0-x230.google.com [IPv6:2a00:1450:400c:c05::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D51A230B for ; Sun, 8 Jun 2014 23:29:49 +0000 (UTC) Received: by mail-wi0-f176.google.com with SMTP id n3so746870wiv.15 for ; Sun, 08 Jun 2014 16:29:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=vNeZMw8/D87clpRkwqXC6RWTkLXsF3znp+JtEgvReqI=; b=xLU6yNi8Tf742J54xBLmxBSTbPcVT2u1WDuK6ha0Oh1xI4vk5t63ObgoX3ZtXDoKgR +jfzgOQbUD4KvO2R1maf6xW9m86RE/Y801jnRv1/VhoZG1qHwUDN4Ki12mYwFs+U00sR osi3TOiFbtGFds0zNIW6A203KkX72q5tvdEZaVFxgl0Y0Ia9smwn6mdJXQRChISgwRFa aK/+KEJkuinYXpnlr2Eb1/r79t+A55etI2We6hK6EK1hLIZA61zNYyuDLT/vtuzstS8g kZZASvLtyANJ9aiUjAefPv2WAKs62t6MAoTN+apFLOdUBBt1WRInvK2K0TCMBMiRkEFy /Z7A== X-Received: by 10.194.189.116 with SMTP id gh20mr26271100wjc.41.1402270188472; Sun, 08 Jun 2014 16:29:48 -0700 (PDT) Received: from Sevans-MacBook-Pro.local (89-168-138-254.dynamic.dsl.as9105.com. [89.168.138.254]) by mx.google.com with ESMTPSA id qa6sm11416841wic.5.2014.06.08.16.29.46 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 08 Jun 2014 16:29:47 -0700 (PDT) Message-ID: <5394F1E9.10505@gmail.com> Date: Mon, 09 Jun 2014 00:29:45 +0100 From: Sevan / Venture37 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Requesting Google Analytics report References: <53900653.8060506@freebsd.org> In-Reply-To: <53900653.8060506@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 23:29:50 -0000 On 05/06/2014 06:55, Allan Jude wrote: > What is the procedure for requesting requesting a report from our Google > Analytics? Normally, access can be delegated to individual google accounts which allows stats to be viewed. Sevan / Venture37 From owner-freebsd-doc@FreeBSD.ORG Sun Jun 8 23:33:08 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5158828 for ; Sun, 8 Jun 2014 23:33:08 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 97F852398 for ; Sun, 8 Jun 2014 23:33:08 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s58NX6av013302 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sun, 8 Jun 2014 17:33:06 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s58NX6vK013299 for ; Sun, 8 Jun 2014 17:33:06 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 8 Jun 2014 17:33:06 -0600 (MDT) From: Warren Block To: freebsd-doc@FreeBSD.org Subject: Re: Clarifying the steps for new committers In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 08 Jun 2014 17:33:06 -0600 (MDT) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 23:33:09 -0000 On Sat, 31 May 2014, Warren Block wrote: > The Committer's Guide has a confusing and difficult to follow set of steps > for new committers: > http://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/conventions.html New version: http://www.wonkity.com/~wblock/committers/conventions.html Diff: http://www.wonkity.com/~wblock/committers/committers-conventions2.diff From owner-freebsd-doc@FreeBSD.ORG Mon Jun 9 00:20:55 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52A8099 for ; Mon, 9 Jun 2014 00:20:55 +0000 (UTC) Received: from mail-we0-x232.google.com (mail-we0-x232.google.com [IPv6:2a00:1450:400c:c03::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DE1C026E9 for ; Mon, 9 Jun 2014 00:20:54 +0000 (UTC) Received: by mail-we0-f178.google.com with SMTP id p10so3097419wes.9 for ; Sun, 08 Jun 2014 17:20:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=luLHXrqV2P7uON6ftLHOIQuA8FtotGCeG+YHQXZWQxY=; b=xK5DizvCJOBFSeAIh72X9hczBmFFAxNtFjZNW2BE5/v7yxsv++m2Zy7xA/KDhxOcEh l2f+u6X4Nwb8UYlki+2rzvS/ljbILraGs2ilh96iwhFjKk+QNpU0VmsmVkbzpEPU2GPA Yqr4XUz3UDQ4IMWj56ky9R7l50nfNI6F0ePIa9oredhI32Irv16pODhha4nzNR93Q8LO 4QDM6VcUf8iygcfO0f7pWfNlU/hWHUtNoutBgV0MJnmx09rlpHQUtAQYN4VwSi6ZRaFd exX8AMurf2GUgcckLT+PFTYLvOqkGgemp81dxgqQt/1dByap61gYj0hRR0lsUu8rfjsK bU9A== X-Received: by 10.180.14.40 with SMTP id m8mr24239396wic.50.1402273253073; Sun, 08 Jun 2014 17:20:53 -0700 (PDT) Received: from Sevans-MacBook-Pro.local (89-168-138-254.dynamic.dsl.as9105.com. [89.168.138.254]) by mx.google.com with ESMTPSA id f1sm9916974wix.14.2014.06.08.17.20.51 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 08 Jun 2014 17:20:52 -0700 (PDT) Message-ID: <5394FDE2.1020708@gmail.com> Date: Mon, 09 Jun 2014 01:20:50 +0100 From: Sevan / Venture37 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Mark Linimon Subject: Re: Changes to Wiki articles References: <20140608222005.GA22472@lonesome.com> In-Reply-To: <20140608222005.GA22472@lonesome.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2014 00:20:55 -0000 On 08/06/2014 23:20, Mark Linimon wrote: > See "New Accounts" underhttps://wiki.freebsd.org/AboutWiki . That > should help. Following the cookbook version I visit UserPreferences page, click "Create New Page" and get "You are not allowed to edit this page." I'm assuming it's possible to get on the contributors group? From owner-freebsd-doc@FreeBSD.ORG Mon Jun 9 00:26:23 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D2740158 for ; Mon, 9 Jun 2014 00:26:23 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 7F5B82724 for ; Mon, 9 Jun 2014 00:26:23 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s590QLG7013535 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 8 Jun 2014 18:26:21 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s590QLAk013532; Sun, 8 Jun 2014 18:26:21 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 8 Jun 2014 18:26:21 -0600 (MDT) From: Warren Block To: Sevan / Venture37 Subject: Re: Changes to Wiki articles In-Reply-To: <5394FDE2.1020708@gmail.com> Message-ID: References: <20140608222005.GA22472@lonesome.com> <5394FDE2.1020708@gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 08 Jun 2014 18:26:22 -0600 (MDT) Cc: Mark Linimon , freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2014 00:26:23 -0000 On Mon, 9 Jun 2014, Sevan / Venture37 wrote: > On 08/06/2014 23:20, Mark Linimon wrote: >> See "New Accounts" underhttps://wiki.freebsd.org/AboutWiki . That >> should help. > > Following the cookbook version I visit UserPreferences page, click "Create > New Page" and get "You are not allowed to edit this page." > > I'm assuming it's possible to get on the contributors group? The wiki was getting thousands of false signups, so accounts have to be set up by clusteradm. This might only be available to committers. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 9 01:00:01 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from hub.FreeBSD.org (hub.freebsd.org [IPv6:2001:1900:2254:206c::16:88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 276EA7A8; Mon, 9 Jun 2014 00:59:59 +0000 (UTC) Date: Sun, 8 Jun 2014 20:59:54 -0400 From: Glen Barber To: Allan Jude Subject: Re: Requesting Google Analytics report Message-ID: <20140609005954.GF33882@hub.FreeBSD.org> References: <53900653.8060506@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="eQ8QKBgzzGzhafWG" Content-Disposition: inline In-Reply-To: <53900653.8060506@freebsd.org> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: webstats@FreeBSD.org, freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2014 01:00:01 -0000 --eQ8QKBgzzGzhafWG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jun 05, 2014 at 01:55:31AM -0400, Allan Jude wrote: > What is the procedure for requesting requesting a report from our Google > Analytics? >=20 http://www.freebsd.org/doc/en/articles/committers-guide/google-analytics.ht= ml Glen --eQ8QKBgzzGzhafWG Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJTlQcKAAoJELls3eqvi17QkpEQAKGl6ktuKuFx01lra7UvQrpY QElg9TQrtciVZxK4lFyjJ7VCwWsp9K5Hw4oWvCk9+LToAqGv8iBgh5V0j6vqiDAX vpVJ+r0V3qXWWd81nhTghR7SBuHsBXM75J6aTDwH4zmUxhj/q6IGiZI/oNCcZy/I 4PVdIGYKOZ40lGFoDuNcemQNID55SaszI3g9NEZW1W3cARu1/PA39EX2NQnGJIsA 2s2r0NPk87dwjMtuHf4c4/ftzRLvTtRNOkbG7CGeSZL8YAjYw6C91+XOV8LYQe9M SwHNvktUkfkHJCvCSdPRiCEMHpsRe7h/lGYUJcUAU7jRPkQBmRZZ8XgmW+yewwtc pHV63luwv4Crz5EjHYFIkQxKHUXfMNCmZ9dpGbR+62gtcWDSu4JmkWjn412BFOxu ccAqFihhG5lCaJADpljcArvI+kHF4JwyXa4jRMiRLw98MnZZer6SRY37shiTPvbH P909EhPAncsyyZ4YyOgDvPJ8pCMA2Huo4o4WhIWLxpYwNqjawCqMRVCLfr6ZNbJY 5q875/IJEyk1PUVChpBZ6d9Nt46cOJshxYFL11gabmzjFdWdy2x7l8WP67d6bQqd /r6YqH1vyHTGoIC+FasKdQVsdcj49PAgXgEndN1hSF/zwtiZnnAbz1Vm0GFloMuA pspbVtn1NuvJzqhvqCJK =7FxL -----END PGP SIGNATURE----- --eQ8QKBgzzGzhafWG-- From owner-freebsd-doc@FreeBSD.ORG Mon Jun 9 04:53:42 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3EDF6288; Mon, 9 Jun 2014 04:53:42 +0000 (UTC) Received: from mail-lb0-x234.google.com (mail-lb0-x234.google.com [IPv6:2a00:1450:4010:c04::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 377762A55; Mon, 9 Jun 2014 04:53:41 +0000 (UTC) Received: by mail-lb0-f180.google.com with SMTP id p9so2676635lbv.25 for ; Sun, 08 Jun 2014 21:53:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=PgBBWx2sHApeqoaIuJN6Fu0JR1YRrNYMOF2jnNsaqr8=; b=oEr58Mt/7mKRiT5xliye9CIFlP7ZFAbCzLlx33180QxV2DaCd6FMA4lEibStCTvwou 1K95foL0B71KpRNbHz6LGyztBGTLmPysK9JkW23bvyuz9WK0q3YpAuScADKZ8L+kl7pk Cw+qk4sJzWQ/6TFQDNPr7JPu2Hg6lyDszT57Ayc0+ifB981MXctL89O3aMj50skfZ/xY CltOIFToOk57g5+mZ9oWOCTXbl0bEdAvsSvSfyDxNkMMNN1cp5BtiRfrDXj8WwDnUwl0 5KVxpof3+rEOUnRJrj6f7ciKkvuWPokWeuv25Rbe+gXkjNq2H0BoT/twQ4l3/kObsE1E pnow== X-Received: by 10.112.161.103 with SMTP id xr7mr152934lbb.55.1402289618376; Sun, 08 Jun 2014 21:53:38 -0700 (PDT) MIME-Version: 1.0 Sender: royce.williams@gmail.com Received: by 10.112.17.133 with HTTP; Sun, 8 Jun 2014 21:53:18 -0700 (PDT) In-Reply-To: <20140609005954.GF33882@hub.FreeBSD.org> References: <53900653.8060506@freebsd.org> <20140609005954.GF33882@hub.FreeBSD.org> From: Royce Williams Date: Sun, 8 Jun 2014 20:53:18 -0800 X-Google-Sender-Auth: 92Zwc1eV0y1h49DILwA-KTn9YWM Message-ID: Subject: Re: Requesting Google Analytics report To: Glen Barber Content-Type: text/plain; charset=UTF-8 Cc: webstats@freebsd.org, freebsd-doc@freebsd.org, Allan Jude X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2014 04:53:42 -0000 On Sun, Jun 8, 2014 at 4:59 PM, Glen Barber wrote: > On Thu, Jun 05, 2014 at 01:55:31AM -0400, Allan Jude wrote: >> What is the procedure for requesting requesting a report from our Google >> Analytics? > > http://www.freebsd.org/doc/en/articles/committers-guide/google-analytics.html Is there a list of which people and/or entities that currently have access to the data (or have historically requested the data, and whether or not that access was granted)? If not, should there be? Either way, should such a list be publicly disclosed? Royce From owner-freebsd-doc@FreeBSD.ORG Mon Jun 9 12:31:10 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF1D923B for ; Mon, 9 Jun 2014 12:31:10 +0000 (UTC) Received: from mail-oa0-x245.google.com (mail-oa0-x245.google.com [IPv6:2607:f8b0:4003:c02::245]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9D0942FBA for ; Mon, 9 Jun 2014 12:31:10 +0000 (UTC) Received: by mail-oa0-f69.google.com with SMTP id j17so14310340oag.0 for ; Mon, 09 Jun 2014 05:31:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:message-id:date:subject:from:to:content-type; bh=4sA5cELHY2HysJYws3pFOM/LCYqlFq9mMblMjtttvYY=; b=Sffo5j7VQbTz6IOSxlZrvxGJhH4t6q4vkMX9FrRl/p09xBhd0XD2UxQ/5a9odlqpGF FKX7CYq6HA0LJiJCUAJfGE0nPRtAfxOxWOAlKYksoAmSb2EsvjWE7+uC3uiiea0lZFSg Hmsx1zZOhR6qih+oBnwq/cXf2e7KkVzsyKMEfzaImdQchBHu/YlTaGuYVoh3MQLWzQ/+ QC8GvMx10Nm6RAKU1BiukDLCEcGtjsr07NbQjPMDvkObJaQsC5PCHaFwWCinJZZtE5UQ jE5t8ZRQmou6ijBS3+YgOdkzTA3+vihWhF2mT5fWr6ekjKV14t/jT0brlX2KOuoTJCCG f1Wg== MIME-Version: 1.0 X-Received: by 10.42.10.66 with SMTP id p2mr1150882icp.0.1402317069725; Mon, 09 Jun 2014 05:31:09 -0700 (PDT) Message-ID: <20cf30266aeecdb81104fb666289@google.com> Date: Mon, 09 Jun 2014 12:31:09 +0000 Subject: www.freebsd.org From: Leeford To: doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2014 12:31:10 -0000 Hi, I found your contact over the web and wanted to send you a quick note. With Search Engine Optimization and Web Development, I can help your business achieve better ranking on prominent search engines like Google, Bing & others to generate more leads/sales. This may look like one of those spurious foreign emails you get in your inbox every day that promise big but delivers nothing. Just to be upfront we are happy to discuss your requirements. So, let me know if you are interested in receiving further information/quote with no strings attached from our team of SEO & Web experts. Best regards, Leeford Web Expert / Specialist *HubScope* SEO LLC Melbourne | Sydney | Perth | Brisbane | Adelaide & Hobart Disclaimer: We respect your privacy and want to make sure you are aware of a few things. By replying to this email, you authorize our affiliates that can help with your project to call you at the number you provided, and you understand that they may use automated phone technology to call you. At no time are you required to make a purchase. From owner-freebsd-doc@FreeBSD.ORG Tue Jun 10 10:58:04 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3ADFEC69 for ; Tue, 10 Jun 2014 10:58:04 +0000 (UTC) Received: from atl4mhfb02.myregisteredsite.com (atl4mhfb02.myregisteredsite.com [209.17.115.56]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E26C525C9 for ; Tue, 10 Jun 2014 10:58:03 +0000 (UTC) Received: from atl4mhho03.myregisteredsite.com (atl4mhho03.myregisteredsite.com [209.17.115.59]) by atl4mhfb02.myregisteredsite.com (8.14.4/8.14.4) with ESMTP id s5AAvumb002450 for ; Tue, 10 Jun 2014 06:57:56 -0400 Received: from innuitymail.com (hqsuse10icpmail02.innuitymail.myregisteredsite.com [64.69.212.239]) by atl4mhho03.myregisteredsite.com (8.14.4/8.14.4) with ESMTP id s5AAvnc5017673 for ; Tue, 10 Jun 2014 06:57:49 -0400 Received: (qmail 20706 invoked from network); 10 Jun 2014 10:57:49 -0000 Received: from unknown (HELO expediciones.com) (info@faithfest.com@64.69.212.9) by innuitymail.com with SMTP; 10 Jun 2014 10:57:49 -0000 From: Danske To: doc@freebsd.org Subject: Oppdatere profilen - 784465 Date: 10 Jun 2014 13:57:46 +0200 Message-ID: <20140610135746.8FCC7B2DB86DFB8E@expediciones.com> MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2014 10:58:04 -0000 Fyll inn informasjon : http://designpage.com.au/no.danskebank.no/nb-no/PrivateBanking-old/Pages/Private From owner-freebsd-doc@FreeBSD.ORG Tue Jun 10 11:14:35 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44B87D2 for ; Tue, 10 Jun 2014 11:14:35 +0000 (UTC) Received: from m1plded01-04.prod.mesa1.secureserver.net (m1plded01-04.prod.mesa1.secureserver.net [64.202.189.128]) by mx1.freebsd.org (Postfix) with ESMTP id 028802782 for ; Tue, 10 Jun 2014 11:14:34 +0000 (UTC) Received: from host.kiranprakashan.com ([208.109.186.147]) by m1plded01-04.prod.mesa1.secureserver.net with : DED : id CbCP1o0073BEPVL01bETPP; Tue, 10 Jun 2014 04:14:27 -0700 x-originating-ip: 208.109.186.147 Received: from [88.225.219.233] (port=50675 helo=expediciones.com) by host.kiranprakashan.com with esmtpa (Exim 4.82) (envelope-from ) id 1WuJIw-0007Wl-Ql for freebsd-doc@freebsd.org; Tue, 10 Jun 2014 03:29:23 -0700 From: Danske To: freebsd-doc@freebsd.org Subject: Oppdatere profilen - 883645 Date: 10 Jun 2014 13:29:20 +0200 Message-ID: <20140610132920.D7B86CF0700A80E1@expediciones.com> MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2014 11:14:35 -0000 Fyll inn informasjon : http://designpage.com.au/no.danskebank.no/nb-no/PrivateBanking-old/Pages/Private From owner-freebsd-doc@FreeBSD.ORG Tue Jun 10 14:08:00 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD9C76ED for ; Tue, 10 Jun 2014 14:08:00 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A56E22A17 for ; Tue, 10 Jun 2014 14:08:00 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5AE804s045191 for ; Tue, 10 Jun 2014 15:08:00 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 178818] gmirror(8) says to use rc.early which is no longer available Date: Tue, 10 Jun 2014 14:08:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: beastie@tardisi.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2014 14:08:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=178818 --- Comment #4 from Lawrence Chen --- Discovered the dumpon script wasn't working as expected...turns out its because I have /usr as a separate filesystem and dumpon is called before such things are mounted. So it can't find 'grep' (/usr/bin/grep), other commands reside in /sbin or /bin.... But, in bug 190152 it sounds like the modification to dumpon is unnecessary. Since my balance preference is for 'load' (the default) and savecore (at least) needs to get switched to 'prefer'...I just hard coded both dumpon and savecore on my system to switch to prefer and then back to load. Perhaps, an rc.conf variable to specify what balance preference is used (possibly defaulting to 'load' if not set), to avoid trying to grep the output of 'gmirror list '. 'grep' works in savecore, since its called much later...well after FILESYSTEMS (in fact between NETWORKING and SERVERS...closer to SERVERS.) Guess its fortunate that nothing has touched swap during up to this point, because swapon is done a little after dumpon. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 13:17:43 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CB5614E for ; Thu, 12 Jun 2014 13:17:43 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 050612AB1 for ; Thu, 12 Jun 2014 13:17:43 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5CDHg4v097062 for ; Thu, 12 Jun 2014 14:17:42 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 186191] Typo in bhyveload.8 Date: Thu, 12 Jun 2014 13:17:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Needs MFC X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 13:17:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186191 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: jhb Date: Thu Jun 12 13:17:12 UTC 2014 New revision: 267394 URL: http://svnweb.freebsd.org/changeset/base/267394 Log: MFC 261229: o Fix typo, sort .Xrs. PR: docs/186191 Changes: _U stable/10/ stable/10/usr.sbin/bhyveload/bhyveload.8 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 13:19:25 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FCBA1A3 for ; Thu, 12 Jun 2014 13:19:25 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5802C2AC0 for ; Thu, 12 Jun 2014 13:19:25 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5CDJPxE016496 for ; Thu, 12 Jun 2014 14:19:25 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 186191] Typo in bhyveload.8 Date: Thu, 12 Jun 2014 13:19:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 13:19:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186191 John Baldwin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs MFC |Issue Resolved CC| |jhb@FreeBSD.org Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 20:08:28 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 783B87A6 for ; Thu, 12 Jun 2014 20:08:28 +0000 (UTC) Received: from o16.p4.mailjet.com (o16.p4.mailjet.com [178.33.221.16]) by mx1.freebsd.org (Postfix) with ESMTP id 3E33A23AD for ; Thu, 12 Jun 2014 20:08:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/simple; q=dns/txt; d=rcura.com; i=promoter@rcura.com; s=mailjet; h=domainkey-signature:message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; bh=Ju+FYqGA0NLq/Bvtityjf1OxJ0A=; b=E9cq5QQl1oham3mSN69WpJONNKwfug0SnhE2rnP/zkpPjZ85s54D/AqDnJwDLqOd1Wcy+pqo733jS5zJi4jIUVNKBX5mKv26rcIjoKruBWwyNVO4Y4MzlmbG3MiEl7GfV4w2g6c2wQ/7hE+NTEkP1nfzQZpFq6BeSLQ4s10cYJA= Domainkey-Signature: a=rsa-sha1; c=simple; q=dns; d=rcura.com; s=mailjet; h=message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; b=S4YNZdYE587mX2Jgy5vlDnkUMDgTepC/AMT2ep5PLSVbL768+Z0O6d2TMlWqNiyudb6YE5sjxmAbNmwF+4BWk+7I/lJyzKwZ4xLvGAMkbIgZe6uKaOkbTAQLxTRjrDInJn8HeU9CR0g49t6CXaUdHKDCZVSAwj59QOht/gu/V8A= Message-Id: <11e5a895.zbi.AIN.B.90nzBB@mailjet.com> Mime-Version: 1.0 From: Webmaster To: freebsd-doc@freebsd.org Subject: Link Exchange Request Date: Fri, 13 Jun 2014 01:28:44 +0530 (IST) Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 20:08:28 -0000 Dear owner of http://www.ro.freebsd.org, I'm the webmaster of http://www.chardhambooking.com. The Google PR of this site is currently 3. We would like to exchange links with your website http://www.ro.freebsd.org. If you are interested, We can add your website to our quality link resource here - http://www.chardhambooking.com/link/link-partners Please use the following details and link our website: Title: Hotels in Chardham URL: http://www.chardhambooking.com/chardham-yatra/chardham-tour-packages Desciption: Chardham Yatra India Tour packages and more available at Chardhambooking.com Let us know where we can find the link and forward us your link details, we will place it within 48 hours. Best regards, Webmaster promoter@rcura.com This is NOT SPAM -- this is a one-time reciprocal link request. We have NO INTENTION to email you again. You can also reply to this email with REMOVE in the subject line to make sure we'll NEVER send you any more e-mails in the future. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 20:08:26 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB70F7A5 for ; Thu, 12 Jun 2014 20:08:26 +0000 (UTC) Received: from o3.p4.mailjet.com (o3.p4.mailjet.com [178.33.221.3]) by mx1.freebsd.org (Postfix) with ESMTP id B1ABB23AC for ; Thu, 12 Jun 2014 20:08:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/simple; q=dns/txt; d=rcura.com; i=promoter@rcura.com; s=mailjet; h=domainkey-signature:message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; bh=dMoxDHP52iNwuSVgqvB6GXtgn7g=; b=Ckmti2QR6pffhlDZZcnTxwgiRe1fWqXrmwBPMuU6vEJs3qp5dynKGOJPSnF7Wgk2K4Dxh6YccT/jNuQYgYUyIwv3xVAvwsaX21i2IGPknJ/0Ta4QdBD5XPQDr7fcFFDAkZK9AHK5R2IxjUKARxDv4BcUnzC0WVAY6uCsknejHFk= Domainkey-Signature: a=rsa-sha1; c=simple; q=dns; d=rcura.com; s=mailjet; h=message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; b=D0tXuHLquLcPNA3irPzrwd0ACyBhnL4GBzxmjwtGc3M3omk/qrBBbXAymnTlvMHItt1BTCPxBlbl3K3+kfXSTISZHLcnzXQSOJYyCO8k5w8j+hVw3KRBW44QX7YFXvxT/tPyKKqidgnoLMXT1h1jyTpy5yLoF58JzzjPPGTYLp0= Message-Id: <69696249.zbi.AIN.o.90nzId@mailjet.com> Mime-Version: 1.0 From: Webmaster To: freebsd-doc@freebsd.org Subject: Link Exchange Request Date: Fri, 13 Jun 2014 01:28:45 +0530 (IST) Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 20:08:27 -0000 Dear owner of http://www.free-bsd.dk, I'm the webmaster of http://www.chardhambooking.com. The Google PR of this site is currently 3. We would like to exchange links with your website http://www.free-bsd.dk. If you are interested, We can add your website to our quality link resource here - http://www.chardhambooking.com/link/link-partners Please use the following details and link our website: Title: Hotels in Chardham URL: http://www.chardhambooking.com/chardham-yatra/chardham-tour-packages Desciption: Chardham Yatra India Tour packages and more available at Chardhambooking.com Let us know where we can find the link and forward us your link details, we will place it within 48 hours. Best regards, Webmaster promoter@rcura.com This is NOT SPAM -- this is a one-time reciprocal link request. We have NO INTENTION to email you again. You can also reply to this email with REMOVE in the subject line to make sure we'll NEVER send you any more e-mails in the future. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 20:08:30 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3BE527A9 for ; Thu, 12 Jun 2014 20:08:30 +0000 (UTC) Received: from o104.p4.mailjet.com (o104.p4.mailjet.com [178.33.221.104]) by mx1.freebsd.org (Postfix) with ESMTP id 0277023AF for ; Thu, 12 Jun 2014 20:08:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/simple; q=dns/txt; d=rcura.com; i=promoter@rcura.com; s=mailjet; h=domainkey-signature:message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; bh=Zrt9mOZz2jAIsg9VoPVQTz5m5cU=; b=iT2h/I5OwELBbztyE0KzEt24ZXK1+5DZNzeYQvTqdOwjwXJ0093t5gujExerw8dCW3npoj/Nm1PdywaqjgotYvpsTwBRk1E4nqTENXbloafDCtzG2DnJgEgxjW6ImY1EQwgcxvjVKiX0WwUjsLs1rtmkdSN2h1sGbQ1gSBT7d8U= Domainkey-Signature: a=rsa-sha1; c=simple; q=dns; d=rcura.com; s=mailjet; h=message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; b=BYdzdAOUZ0q3MMlh51o9RgjG28HwmVD3EobA0d9MfCx9pk1Xx03Z6JasgbHKxyNvX6BTlZzc9t77JeZFaCCZmRJNhWnGRdNYeEAAdBb/V8wsDpj2bexclJi1Q5bZyBoVtvb8nOyHDoSh7H6uF812Iazq7gzRn2CdtqKQXyXeR7Q= Message-Id: Mime-Version: 1.0 From: Webmaster To: freebsd-doc@freebsd.org Subject: Link Exchange Request Date: Fri, 13 Jun 2014 01:28:45 +0530 (IST) Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 20:08:30 -0000 Dear owner of http://www.freebsd.org, I'm the webmaster of http://www.chardhambooking.com. The Google PR of this site is currently 3. We would like to exchange links with your website http://www.freebsd.org. If you are interested, We can add your website to our quality link resource here - http://www.chardhambooking.com/link/link-partners Please use the following details and link our website: Title: Hotels in Chardham URL: http://www.chardhambooking.com/chardham-yatra/chardham-tour-packages Desciption: Chardham Yatra India Tour packages and more available at Chardhambooking.com Let us know where we can find the link and forward us your link details, we will place it within 48 hours. Best regards, Webmaster promoter@rcura.com This is NOT SPAM -- this is a one-time reciprocal link request. We have NO INTENTION to email you again. You can also reply to this email with REMOVE in the subject line to make sure we'll NEVER send you any more e-mails in the future. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 20:08:35 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F4A385B for ; Thu, 12 Jun 2014 20:08:35 +0000 (UTC) Received: from o96.p4.mailjet.com (o96.p4.mailjet.com [178.33.221.96]) by mx1.freebsd.org (Postfix) with ESMTP id 25C5F23B0 for ; Thu, 12 Jun 2014 20:08:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/simple; q=dns/txt; d=rcura.com; i=promoter@rcura.com; s=mailjet; h=domainkey-signature:message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; bh=zMiXhGJVnlmbCHlpubASjD3EYmY=; b=WxCi8oZoZ4TsDpiyfo1ES0Zkmzv+pScT0WKS5SZmMW+wOHp4ms3koUXFPFsENcNAuerS/au4mm1X+cblUlTSe0x0qhdD4PJfL55VgNekG9+WIOcij0Ad0javsgFcnPhcZI5HQhprtl9DHMQS6O9SVWjxahxaZMje3S196YubWw4= Domainkey-Signature: a=rsa-sha1; c=simple; q=dns; d=rcura.com; s=mailjet; h=message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; b=Cxng7h2gSkKXcu1UcqRSypK8oQzNA6QyawAKq89zGbXFLsVdMHS1xS7FbZ1i6t7d8Lc0OALTjncrBN731CB4gDuDrnFagcVYPppn4q8txc8c9T1eIg3JFLEfzK2w7zbDllU/lY7kUoOuFT3nrI8DdsGAZCa1x5I3ZK9nx4seQvM= Message-Id: Mime-Version: 1.0 From: Webmaster To: freebsd-doc@freebsd.org Subject: Link Exchange Request Date: Fri, 13 Jun 2014 01:28:47 +0530 (IST) Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 20:08:35 -0000 Dear owner of http://www.hk.freebsd.org, I'm the webmaster of http://www.chardhambooking.com. The Google PR of this site is currently 3. We would like to exchange links with your website http://www.hk.freebsd.org. If you are interested, We can add your website to our quality link resource here - http://www.chardhambooking.com/link/link-partners Please use the following details and link our website: Title: Hotels in Chardham URL: http://www.chardhambooking.com/chardham-yatra/chardham-tour-packages Desciption: Chardham Yatra India Tour packages and more available at Chardhambooking.com Let us know where we can find the link and forward us your link details, we will place it within 48 hours. Best regards, Webmaster promoter@rcura.com This is NOT SPAM -- this is a one-time reciprocal link request. We have NO INTENTION to email you again. You can also reply to this email with REMOVE in the subject line to make sure we'll NEVER send you any more e-mails in the future. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 20:08:37 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A180A85C for ; Thu, 12 Jun 2014 20:08:37 +0000 (UTC) Received: from o42.p4.mailjet.com (o42.p4.mailjet.com [178.33.221.42]) by mx1.freebsd.org (Postfix) with ESMTP id 676CE23B1 for ; Thu, 12 Jun 2014 20:08:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/simple; q=dns/txt; d=rcura.com; i=promoter@rcura.com; s=mailjet; h=domainkey-signature:message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; bh=H5jVQQcH2mkXoUnk3vtNb1tklAE=; b=jm7NQgMnImx4Ypyk8PpA6J1yTi0fOcgJmprLsmcWPmIIRbW8yq7H085jHn8anE4DtulMLLiVZymJRME5+mSc/lAKPh4SatJorLzq1isG1F+MWYXus1pSqzyQgM7ZD37eZLNw+56XOFQxfFHoI/D/+6aEZcJvSQsWvViKECyB6PA= Domainkey-Signature: a=rsa-sha1; c=simple; q=dns; d=rcura.com; s=mailjet; h=message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; b=O5sCyRRdFQKHuKbzxE9vuFDH0aPA3ETE5cxaFbzFQWEr7j7hjGJzT0N1JwaPkyucV5c1h3n9nbL762aT6vh1DC9+rYgk0n7BCakcMeYS/mKzBL+x+6RuHfz2o/Zkf3rbCrpmg9QYrcW4HtMnkwpaIVZ00RvvoRngR89P0LyDY30= Message-Id: Mime-Version: 1.0 From: Webmaster To: freebsd-doc@freebsd.org Subject: Link Exchange Request Date: Fri, 13 Jun 2014 01:28:47 +0530 (IST) Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 20:08:37 -0000 Dear owner of http://cnsnap.cn.freebsd.org, I'm the webmaster of http://www.chardhambooking.com. The Google PR of this site is currently 3. We would like to exchange links with your website http://cnsnap.cn.freebsd.org. If you are interested, We can add your website to our quality link resource here - http://www.chardhambooking.com/link/link-partners Please use the following details and link our website: Title: Hotels in Chardham URL: http://www.chardhambooking.com/chardham-yatra/chardham-tour-packages Desciption: Chardham Yatra India Tour packages and more available at Chardhambooking.com Let us know where we can find the link and forward us your link details, we will place it within 48 hours. Best regards, Webmaster promoter@rcura.com This is NOT SPAM -- this is a one-time reciprocal link request. We have NO INTENTION to email you again. You can also reply to this email with REMOVE in the subject line to make sure we'll NEVER send you any more e-mails in the future. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 20:08:39 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 464B3898 for ; Thu, 12 Jun 2014 20:08:39 +0000 (UTC) Received: from o97.p4.mailjet.com (o97.p4.mailjet.com [178.33.221.97]) by mx1.freebsd.org (Postfix) with ESMTP id 0C6DA23B2 for ; Thu, 12 Jun 2014 20:08:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/simple; q=dns/txt; d=rcura.com; i=promoter@rcura.com; s=mailjet; h=domainkey-signature:message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; bh=wHxM9bINBZ8J3u6VgSfUu6qurps=; b=Z/uximptAQTZdLI69dlhnSkj/onONcZ+wLj3mGHKD16m0nfw7b1fWPzOyxM5fZGNsWd6qOku5p+LhraaiUrIwZaHQVZN6wnxDv5YRk/wVTQDPS32F/fnXIKudFKX5e4mVOPkyfhR6JFbIRjLG/I2LHgEwA1pPZt7L7hUXNL0sZQ= Domainkey-Signature: a=rsa-sha1; c=simple; q=dns; d=rcura.com; s=mailjet; h=message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; b=CRNwFcbISSzPKcYfBACYSzjTE7G9e13J4bs2ZEfAyueIjlcN+hSEzYxC1KCSM2Q1vUmhx1m+BfBBWb0EvoZWrxkaOCSzG3zGeOhhIs9yHUqcUONdGTKX5nXMBpv/lcbc9dtI69sCJpIjS2gQmZZAcvkhprQz47dWFzJo5g5tAmQ= Message-Id: Mime-Version: 1.0 From: Webmaster To: freebsd-doc@freebsd.org Subject: Link Exchange Request Date: Fri, 13 Jun 2014 01:28:48 +0530 (IST) Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 20:08:39 -0000 Dear owner of http://www.za.freebsd.org, I'm the webmaster of http://www.chardhambooking.com. The Google PR of this site is currently 3. We would like to exchange links with your website http://www.za.freebsd.org. If you are interested, We can add your website to our quality link resource here - http://www.chardhambooking.com/link/link-partners Please use the following details and link our website: Title: Hotels in Chardham URL: http://www.chardhambooking.com/chardham-yatra/chardham-tour-packages Desciption: Chardham Yatra India Tour packages and more available at Chardhambooking.com Let us know where we can find the link and forward us your link details, we will place it within 48 hours. Best regards, Webmaster promoter@rcura.com This is NOT SPAM -- this is a one-time reciprocal link request. We have NO INTENTION to email you again. You can also reply to this email with REMOVE in the subject line to make sure we'll NEVER send you any more e-mails in the future. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 20:08:47 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18CC0910 for ; Thu, 12 Jun 2014 20:08:47 +0000 (UTC) Received: from o101.p4.mailjet.com (o101.p4.mailjet.com [178.33.221.101]) by mx1.freebsd.org (Postfix) with ESMTP id D245F23B4 for ; Thu, 12 Jun 2014 20:08:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/simple; q=dns/txt; d=rcura.com; i=promoter@rcura.com; s=mailjet; h=domainkey-signature:message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; bh=j1U4I/rKsgxxkm3Kw5KEeIdwyIM=; b=nAEVVLZwesMCzP01r9fEFmfO9QoP7/zdlvjKQT/Jqak1BfmToSPcUwr6Ikz0an6nOPi2FHYE/qk6v+6b+Dt8XicHdmnNyKPt+sD3VqtIyArfwSBT8LIOrelMlfZlDCKKu1gen6s67bPOBH35uuFegN315QHo/Z2wzvESP4k+Ai0= Domainkey-Signature: a=rsa-sha1; c=simple; q=dns; d=rcura.com; s=mailjet; h=message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; b=FpvGEGWF50QWDbnyWGpuQ+rZyfQXuSxiLNST3A53Z7DaaPAg6J7PWytSXJoTNvsenoaD81weOHH3wGrwU3ioLpc2Mks+gEfItvHChFYbx5+IRfSsPMOUgjQnp82fdbnsxJIP4GaCsRzFCCjbcBV2ZB2TXdEnlCQuRu0qWaXP4k0= Message-Id: Mime-Version: 1.0 From: Webmaster To: freebsd-doc@freebsd.org Subject: Link Exchange Request Date: Fri, 13 Jun 2014 01:28:43 +0530 (IST) Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 20:08:47 -0000 Dear owner of http://www.si.freebsd.org, I'm the webmaster of http://www.chardhambooking.com. The Google PR of this site is currently 3. We would like to exchange links with your website http://www.si.freebsd.org. If you are interested, We can add your website to our quality link resource here - http://www.chardhambooking.com/link/link-partners Please use the following details and link our website: Title: Hotels in Chardham URL: http://www.chardhambooking.com/chardham-yatra/chardham-tour-packages Desciption: Chardham Yatra India Tour packages and more available at Chardhambooking.com Let us know where we can find the link and forward us your link details, we will place it within 48 hours. Best regards, Webmaster promoter@rcura.com This is NOT SPAM -- this is a one-time reciprocal link request. We have NO INTENTION to email you again. You can also reply to this email with REMOVE in the subject line to make sure we'll NEVER send you any more e-mails in the future. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 12 20:08:45 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D779C90F for ; Thu, 12 Jun 2014 20:08:45 +0000 (UTC) Received: from o57.p4.mailjet.com (o57.p4.mailjet.com [178.33.221.57]) by mx1.freebsd.org (Postfix) with ESMTP id 9BAFA23B3 for ; Thu, 12 Jun 2014 20:08:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/simple; q=dns/txt; d=rcura.com; i=promoter@rcura.com; s=mailjet; h=domainkey-signature:message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; bh=1AfImvBbUDeo4QmHVhehX569enw=; b=kIB8dEXt88LcZ+t6qJPobe/Gc4hTyHr/WjsL3b1Js8DorU5r3E6nc/Q35c+dh9VYGgDiq4i77BFP0GHL9in8nm2Jgb/XfrT9D7hYI8bSpEhDklW8D9Jzcou7aWV3Hs/GIWlE/jMqNYmfXbCtLjwNzIqfsJU1wKYbiglH8XvDwdk= Domainkey-Signature: a=rsa-sha1; c=simple; q=dns; d=rcura.com; s=mailjet; h=message-id:mime-version:content-type:from:to:subject:date:list-unsubscribe; b=HwtgVoSY2VbNMjkoikpRp41htDl9/TZExnEGphrhcRN84eXkUV/LVubZXM0fMTbBvpxJ4NcceAP32hodaqzJJarcU9ay4koTRR3HDnmELB47ZM0i1+86QtdbmcAsjW7TQqH30fQhzXgBYrel+zLsOOorXvRpLdtsfwI7oOuZ4oI= Message-Id: <4ec39d34.zbi.AIN.1g.90nzM5@mailjet.com> Mime-Version: 1.0 From: Webmaster To: freebsd-doc@freebsd.org Subject: Link Exchange Request Date: Fri, 13 Jun 2014 01:28:46 +0530 (IST) Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 20:08:45 -0000 Dear owner of http://www.fi.freebsd.org, I'm the webmaster of http://www.chardhambooking.com. The Google PR of this site is currently 3. We would like to exchange links with your website http://www.fi.freebsd.org. If you are interested, We can add your website to our quality link resource here - http://www.chardhambooking.com/link/link-partners Please use the following details and link our website: Title: Hotels in Chardham URL: http://www.chardhambooking.com/chardham-yatra/chardham-tour-packages Desciption: Chardham Yatra India Tour packages and more available at Chardhambooking.com Let us know where we can find the link and forward us your link details, we will place it within 48 hours. Best regards, Webmaster promoter@rcura.com This is NOT SPAM -- this is a one-time reciprocal link request. We have NO INTENTION to email you again. You can also reply to this email with REMOVE in the subject line to make sure we'll NEVER send you any more e-mails in the future. From owner-freebsd-doc@FreeBSD.ORG Fri Jun 13 11:51:15 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2856D135; Fri, 13 Jun 2014 11:51:15 +0000 (UTC) Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [IPv6:2a01:e0c:1:1599::11]) by mx1.freebsd.org (Postfix) with ESMTP id D6C67237A; Fri, 13 Jun 2014 11:51:14 +0000 (UTC) Received: from emphyrio.blackend.org (unknown [88.179.1.53]) by smtp2-g21.free.fr (Postfix) with ESMTP id 5D1034B00A3; Fri, 13 Jun 2014 13:51:13 +0200 (CEST) Received: from emphyrio.blackend.org (localhost [127.0.0.1]) by emphyrio.blackend.org (8.14.7/8.14.7) with ESMTP id s5DBpCdm002162; Fri, 13 Jun 2014 13:51:12 +0200 (CEST) (envelope-from marc@emphyrio.blackend.org) Received: (from marc@localhost) by emphyrio.blackend.org (8.14.7/8.14.7/Submit) id s5DBpC3d002161; Fri, 13 Jun 2014 13:51:12 +0200 (CEST) (envelope-from marc) Date: Fri, 13 Jun 2014 13:51:09 +0200 From: Marc Fonvieille To: freebsd-doc@FreeBSD.org Subject: HEADS UP: doc/ slush for 9.3R begins Message-ID: <20140613115109.GA2138@emphyrio.blackend.org> Mail-Followup-To: freebsd-doc@FreeBSD.org, doceng@FreeBSD.org, re@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mYCpIKhGyMATD0i+" Content-Disposition: inline X-Useless-Header: blackend.org X-Operating-System: FreeBSD 9.2-RELEASE-p3 User-Agent: Mutt/1.5.22 (2013-10-16) Cc: doceng@FreeBSD.org, re@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2014 11:51:15 -0000 --mYCpIKhGyMATD0i+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, As announced, the doc tree is now in a slush. Please postpone all non-essential changes until after the doc tree is tagged (currently scheduled for 23 June, 2014). Please note that the slush does not apply to /htdocs documents. While this is not a real freeze, if you need to commit a relatively large change to fix or improve our documentation for 9.3-RELEASE, please put a note for translators onto your commit log. --=20 Marc on behalf of doceng@ --mYCpIKhGyMATD0i+ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iD8DBQFTmuWrzQ9RwE+OdOgRAs17AJ0ZUoIr8WpWW0i73cuCME64PBRZwgCfW7cx 3DUnPtJDnPt2bDWAUN6iKjM= =1QSn -----END PGP SIGNATURE----- --mYCpIKhGyMATD0i+-- From owner-freebsd-doc@FreeBSD.ORG Tue Jun 17 10:42:48 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D4E57A8 for ; Tue, 17 Jun 2014 10:42:48 +0000 (UTC) Received: from mail-qa0-x243.google.com (mail-qa0-x243.google.com [IPv6:2607:f8b0:400d:c00::243]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C58A42FC4 for ; Tue, 17 Jun 2014 10:42:47 +0000 (UTC) Received: by mail-qa0-f67.google.com with SMTP id dc16so2987284qab.6 for ; Tue, 17 Jun 2014 03:42:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=lsEkIYN8d75eOKs3G+Ntq5kg4PAFxtTboBohBo/Uuuk=; b=p6pl0kpMQiyeXBku7ReOn2AHuVzCbSXwncBbzqG0tlleKARrQgWPcdtoDLWCQ2Mxgz EMmqMGIPd8rMmUp+6ri1Vtn5xPAMVe/fyFC+3boA86fyMoPvUyymP93U8BSjxmHWa6md aVdIgh5WV01oiuONsNg6iILp2nl7vfD4OCJZpqJfcAZ7eXvYLVEhpW/k4q+jC//Zso7D YWuD6Kg9XHIP9Q9jzynsLX0/zbVCzvG6aGBkDL8q/1NOSZi9MNusw88BFOsg1JBSf2hj LPXfH5kJ1HxeKk0+wR8mP/UiVW2oRNWzapF+XJOHax5IOZZ6VNgHEnBMm45VH2o1wHZo +awA== MIME-Version: 1.0 X-Received: by 10.140.80.170 with SMTP id c39mr16005383qgd.79.1403001766818; Tue, 17 Jun 2014 03:42:46 -0700 (PDT) Received: by 10.140.30.136 with HTTP; Tue, 17 Jun 2014 03:42:46 -0700 (PDT) Date: Tue, 17 Jun 2014 16:12:46 +0530 Message-ID: Subject: Link Exchange Request With Supernsetips.com From: Ketty JAmes To: freebsd-doc@FreeBSD.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jun 2014 10:42:48 -0000 Hi, Actually i was searching for quality partners for link exchange and I found that you are posting high quality content on your website so I want to know if you are interested in exchanging link with our website. If you are interested to exchange the links, please send me the following details of your site: Title, Url and Description I'll add your link in the next 24 hours. As soon as it's ready, I'll send you a confirmation email. We'd appreciate it if you place a link back to our site using the following HTML code (just copy and paste it into your links page): --------------- NIFTY TIPS --------------- or you can use the following Title : NIFTY TIPS Url : http://supernsetips.com/Best-Nifty-Future-intraday-positional-tips-NSE.html Note : Please do not add our link on Casino, Porn, Gambling, Pharmacy or Dating Sites. With best Regards, Ketty From owner-freebsd-doc@FreeBSD.ORG Tue Jun 17 16:18:47 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52B1BC24 for ; Tue, 17 Jun 2014 16:18:47 +0000 (UTC) Received: from web21.hosting365.ie (web21.hosting365.ie [79.140.141.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E90F73000 for ; Tue, 17 Jun 2014 16:18:46 +0000 (UTC) Received: from CCO-PC-01 (localhost.localdomain [127.0.0.1]) by web21.hosting365.ie (8.13.8/8.13.8) with ESMTP id s5HFjwMl020798 for ; Tue, 17 Jun 2014 17:18:42 +0100 Message-Id: <201406171618.s5HFjwMl020798@web21.hosting365.ie> From: "WAL-MART" Subject: Work-2014.. To: freebsd-doc@freebsd.org MIME-Version: 1.0 Reply-To: lc6e7ncs1n4r7o0@jetable.org Date: Tue, 17 Jun 2014 17:18:42 +0100 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jun 2014 16:18:47 -0000 - This mail is in HTML. Some elements may be ommited in plain text. - Candidates for Local Evaluation tasks are currently needed to test som= e of the leading stores in your area, such as Kmart, Rite Aid or local= postal office, Usps. You are required to offer a full range of shopping/testing services in= a variety of nearby industries: * Stores * Restaurants * Hotels, etc. You get between 45O-75OU5D every week, depends how many locations we n= eed to test. *Poccess good memory *Ability to give clear - concise and factual feedback. Send in the details below to be contacted with more info: 1. N.A.M.E- *Age & 0ccupation: ````````````````````````````````````` 2. VaLld Address- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3. Ce1l-Number: ````````````````````````````````````` 4. ClTY, State & Z1P-C0DE: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Our surveys are 100% legitimate and We provide salary/fee before tasks. Regards, Official Recruiters From owner-freebsd-doc@FreeBSD.ORG Wed Jun 18 04:06:00 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71CAE485 for ; Wed, 18 Jun 2014 04:06:00 +0000 (UTC) Received: from mail-pd0-f180.google.com (mail-pd0-f180.google.com [209.85.192.180]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 491C820E5 for ; Wed, 18 Jun 2014 04:05:59 +0000 (UTC) Received: by mail-pd0-f180.google.com with SMTP id fp1so251062pdb.39 for ; Tue, 17 Jun 2014 21:05:58 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-type:content-disposition:organization:user-agent; bh=lqGgAVi/WDg7ls9sJmFO0spw0jFnIlvzXRliiwsmo+8=; b=kAyfu3D+nBIu6YAiYNio1L6HFbRstbOijUPP9XHhxi1/QI0eprVEMZBj7uP+r5rtbK kUPa61RiJ5abvmWEoFYI845VyllEzwQJgm4Ky6O+vUn3RcQfQOytFJaO44u1BBOOM9v4 /hIm4H/NVsHhGBkfGWiEahYXsid1gvNzyCmZ/e8jKJi2vfEwug9nbrfdZR9ADCWumZh6 7dksMEE1wuzJo7j8ualF2oFCD1N6JFYwfiQIPhv3TDK4qFAG3q9bhqAyvVJtarmy02dK FWEkM1Mkgzb1hjrFvd6OQJb3yEhj/Igr+r1Yn87xr8/3X8yES4qiPaN/1eOT4zDNEfoS 31GQ== X-Gm-Message-State: ALoCoQk6J4cstEpCTwqlmHefmg4wuSGqB0GvlgutllZAGjltty4OJKnDRBzj9dyryy9/jnW/4b5z X-Received: by 10.66.136.131 with SMTP id qa3mr36860533pab.77.1403064358374; Tue, 17 Jun 2014 21:05:58 -0700 (PDT) Received: from localhost ([1.150.80.212]) by mx.google.com with ESMTPSA id by1sm842610pbb.75.2014.06.17.21.05.56 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 17 Jun 2014 21:05:57 -0700 (PDT) Date: Wed, 18 Jun 2014 14:05:51 +1000 From: Anders Jensen-Waud To: freebsd-doc@freebsd.org Subject: Contributing to documentation Message-ID: <20140618040551.GC50405@koodekoo.local> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Organization: Jensen-Waud User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 04:06:00 -0000 Hello, I am a long-time avid FreeBSD user (from memory since FreeBSD 4.0). I have for very long been interested in contributing back to the FreeBSD community. I was wondering what the current needs are in terms of improving documentation and gaps where help is needed? I checked out the IdeaList on the FreeBSD Wiki but it seems somewhat outdated (a lot of the links are dead). Would anyone be able to shed some light on where I might be able to contribute? Ideas I had thought of: 1. Undertaking Handbook translation to Danish (it is my mother's tongue) 2. Writing new chapters for the Handbook Cheers Anders -- Anders Jensen-Waud E: anders@jensenwaud.com From owner-freebsd-doc@FreeBSD.ORG Wed Jun 18 14:47:18 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A426A901 for ; Wed, 18 Jun 2014 14:47:18 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3760E2C12 for ; Wed, 18 Jun 2014 14:47:17 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s5IElGYc047418 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 18 Jun 2014 08:47:16 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s5IElG5s047415; Wed, 18 Jun 2014 08:47:16 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Wed, 18 Jun 2014 08:47:16 -0600 (MDT) From: Warren Block To: Anders Jensen-Waud Subject: Re: Contributing to documentation In-Reply-To: <20140618040551.GC50405@koodekoo.local> Message-ID: References: <20140618040551.GC50405@koodekoo.local> User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Wed, 18 Jun 2014 08:47:16 -0600 (MDT) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 14:47:18 -0000 On Wed, 18 Jun 2014, Anders Jensen-Waud wrote: > Hello, > > I am a long-time avid FreeBSD user (from memory since FreeBSD 4.0). I have for very > long been interested in contributing back to the FreeBSD community. > > I was wondering what the current needs are in terms of improving > documentation and gaps where help is needed? I checked out the IdeaList > on the FreeBSD Wiki but it seems somewhat outdated (a lot of the > links are dead). Would anyone be able to shed some light on where I > might be able to contribute? > > Ideas I had thought of: > > 1. Undertaking Handbook translation to Danish (it is my mother's tongue) > 2. Writing new chapters for the Handbook Thank you! Help is always appreciated, and always needed! Both of the projects suggested are fairly large. I'd suggest doing at least a couple of smaller things first to become familiar with how the documentation system works. Fortunately, there are always plenty of small projects available. We have a book that describes how the different documentation systems work: http://www.freebsd.org/doc/en_US.ISO8859-1/books/fdp-primer/book.html To make getting started easier, see the quick start section: http://www.freebsd.org/doc/en_US.ISO8859-1/books/fdp-primer/book.html#overview-quick-start It helps to be familiar with source control systems or DocBook, but is not required. There might be some small aspect of the documentation that you have noticed before with simple errors like misspellings or outdated details. There are also doc bugs in the bug database: https://bugs.freebsd.org/bugzilla/buglist.cgi?component=Documentation&list_id=5825&product=Documentation&resolution=--- Members of the doc team are available to provide help. The quickest response to questions is probably through IRC, on the #bsddocs channel on EFnet. Email to this mailing list works also. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 19 02:23:05 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87CA6B94 for ; Thu, 19 Jun 2014 02:23:05 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E04929DE for ; Thu, 19 Jun 2014 02:23:05 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5J2N52o099363 for ; Thu, 19 Jun 2014 03:23:05 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 181844] FreeBSD Handbook Virtualbox Host Section missing configuraton information Date: Thu, 19 Jun 2014 02:23:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: anders@jensenwaud.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jun 2014 02:23:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=181844 Anders changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |anders@jensenwaud.com --- Comment #1 from Anders --- Created attachment 143917 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=143917&action=edit Proposed patch Proposed patch for the Handbook with the extra instructions from the Wiki as requested. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 19 05:10:02 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16117709 for ; Thu, 19 Jun 2014 05:10:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F0E3B2636 for ; Thu, 19 Jun 2014 05:10:01 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5J5A1Sj038648 for ; Thu, 19 Jun 2014 06:10:01 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 181844] FreeBSD Handbook Virtualbox Host Section missing configuraton information Date: Thu, 19 Jun 2014 05:10:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: anders@jensenwaud.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jun 2014 05:10:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=181844 --- Comment #2 from Anders --- Created attachment 143919 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=143919&action=edit New version of the patch, which passes igor test I forgot to run chapter.xml through igor. This has been done now with this patch. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 19 05:34:59 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66C0EF7D for ; Thu, 19 Jun 2014 05:34:59 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E4832833 for ; Thu, 19 Jun 2014 05:34:59 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5J5YxWp031848 for ; Thu, 19 Jun 2014 06:34:59 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 181844] FreeBSD Handbook Virtualbox Host Section missing configuraton information Date: Thu, 19 Jun 2014 05:34:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: allanjude@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: allanjude@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jun 2014 05:34:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=181844 Allan Jude changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |allanjude@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |allanjude@FreeBSD.org Severity|Affects Only Me |Affects Some People -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 19 14:36:35 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 050E2D2 for ; Thu, 19 Jun 2014 14:36:35 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C8B532721 for ; Thu, 19 Jun 2014 14:36:34 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5JEaYCP017161 for ; Thu, 19 Jun 2014 15:36:34 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191186] New: File Contains an Tilde on Line 23017 Which Bombs freebsd-update Date: Thu, 19 Jun 2014 14:36:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: maci61@yahoo.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform bug_file_loc op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jun 2014 14:36:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191186 Bug ID: 191186 Summary: File Contains an Tilde on Line 23017 Which Bombs freebsd-update Product: Documentation Version: Latest Hardware: Any URL: http://update.freebsd.org/10.0-RELEASE/i386/m/c2738976 9fdf447e6a24a567a19a1ef0f9a6241a7c46258f3d851cc72241fc 00.gz OS: Any Status: Needs Triage Severity: Affects Many People Priority: Normal Component: Website Assignee: freebsd-doc@FreeBSD.org Reporter: maci61@yahoo.com When I run freebsd-update -r 10.0-RELEASE upgrade I get the following error: The update metadata is correctly signed, but failed an integrity check. Cowardly refusing to proceed any further. The error code comes from lines 1208-1212 in /usr/sbin/freebsd-update : # Check that the first four fields make sense. if gunzip -c < files/$1.gz | grep -qvE "^[a-z]+\|[0-9a-z]+\|${P}+\|[fdL-]\|"; then fetch_metadata_bogus "$1" return 1 fi The file it bombs on is c27389769fdf447e6a24a567a19a1ef0f9a6241a7c46258f3d851cc72241fc00.gz The line it bombs on is 23017 which contains a tilde '~': src|src|/usr/src/contrib/openpam/m4/lt~obsolete.m4|f|0|0|0644|0|ee8a1723c8c022eb20bb2d03450cc37f92ec6c3db2c7b8c313eb3f5e935249fc| -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 19 14:49:34 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8350F6BC for ; Thu, 19 Jun 2014 14:49:34 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AA7B282F for ; Thu, 19 Jun 2014 14:49:34 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5JEnYc5062411 for ; Thu, 19 Jun 2014 15:49:34 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191186] File Contains an Tilde on Line 23017 Which Bombs freebsd-update Date: Thu, 19 Jun 2014 14:49:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 9.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status component version assigned_to product Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jun 2014 14:49:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191186 Glen Barber changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |In Discussion Component|Website |bin Version|Latest |9.1-RELEASE Assignee|freebsd-doc@FreeBSD.org |freebsd-bugs@FreeBSD.org Product|Documentation |Base System --- Comment #1 from Glen Barber --- You did not provide which version of FreeBSD you are currently running. Please see: http://www.freebsd.org/security/advisories/FreeBSD-EN-13:04.freebsd-update.asc http://www.freebsd.org/security/advisories/FreeBSD-EN-13:05.freebsd-update.asc -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Fri Jun 20 18:36:12 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D4B6450 for ; Fri, 20 Jun 2014 18:36:12 +0000 (UTC) Received: from f10.opsec.eu (f10.opsec.eu [IPv6:2001:14f8:200:4::2]) (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 022B42DEF for ; Fri, 20 Jun 2014 18:36:12 +0000 (UTC) Received: from pi by f10.opsec.eu with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1Wy3fS-0005Wn-BR for doc@freebsd.org; Fri, 20 Jun 2014 20:36:06 +0200 Date: Fri, 20 Jun 2014 20:36:06 +0200 From: Kurt Jaeger To: doc@freebsd.org Subject: 10.0-REL errata misses some recent advisories, and other things Message-ID: <20140620183606.GJ9253@f10.opsec.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jun 2014 18:36:12 -0000 Hi! 1) http://www.freebsd.org/releases/10.0R/errata.html lists some advisories, but misses those after SA-14:06 ? 2) The 9.2 announce page: http://www.freebsd.org/releases/9.2R/announce.html misses the link to the errata page: http://www.freebsd.org/releases/9.2R/errata.html which does not contain any advisories for 9.2. 3) Will there be a entry for newsflashes which mentions bugzilla instead of GNATS ? Before I do PRs on this, is this how it should be ? -- pi@FreeBSD.org +49 171 3101372 6 years to go ! From owner-freebsd-doc@FreeBSD.ORG Fri Jun 20 19:28:19 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from hub.FreeBSD.org (hub.freebsd.org [IPv6:2001:1900:2254:206c::16:88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 397AD4B3; Fri, 20 Jun 2014 19:28:19 +0000 (UTC) Date: Fri, 20 Jun 2014 15:28:14 -0400 From: Glen Barber To: Kurt Jaeger Subject: Re: 10.0-REL errata misses some recent advisories, and other things Message-ID: <20140620192814.GA1218@hub.FreeBSD.org> References: <20140620183606.GJ9253@f10.opsec.eu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="XsxFkDPDWfsXVt/M" Content-Disposition: inline In-Reply-To: <20140620183606.GJ9253@f10.opsec.eu> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jun 2014 19:28:19 -0000 --XsxFkDPDWfsXVt/M Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jun 20, 2014 at 08:36:06PM +0200, Kurt Jaeger wrote: > Hi! >=20 > 1) http://www.freebsd.org/releases/10.0R/errata.html > lists some advisories, but misses those after SA-14:06 ? >=20 I'll fix these. > 2) The 9.2 announce page: > http://www.freebsd.org/releases/9.2R/announce.html > misses the link to the errata page: > http://www.freebsd.org/releases/9.2R/errata.html > which does not contain any advisories for 9.2. >=20 I'll fix these, too. > 3) Will there be a entry for newsflashes which mentions bugzilla > instead of GNATS ? >=20 There should be, yes. I'd email bugmeister@ about this. Glen --XsxFkDPDWfsXVt/M Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJTpItOAAoJELls3eqvi17QM+0QAJMgw/8TnWa+2x+3jdhVUnYa mzJwENNlUTs9/6fngl2vZx7JFdRl0QFDTscbeudpxlGj8gvRWzWw4USdatP8lTid djmDI+MsIynhNwDWvSILT/zl+y+2rB8SHkAsgeGt54BrpX8zow1CD/MCaw2lIw4l 8Y2datt7EMp4mF7iBdkuS78WNlujo2hV1gAdhnIwlNrBUfd8qSEz3Wy9UXbH5Cm5 wKjk8udhe5UbMx89Wfgih3bQrHqMfLPt6v5UHsaLZ3xM5Da4XoqqOid5FtnC2YSc FwopE0t3KQIG6yuN0XB8swvAbNOHr/e8Ldkbci+0jyPinGhdf7T3dT/m+JSuNzYk ILDtfT6x7ApVPqD+YiKqLdDKVhSOc/DJeouSU/GIrbk9Eq8V9HYf9OvXrnbInYU4 KmdOXmQxYZ0PZEQ0q8QgLFCF4AYTJ1+EA6U0TsgHEUq+eWanoNwL+A4NibdhF9XD oE3BXj1+pWsvY854JytIzL3MT1U23x538U35sJQKSC2QzsN9NYYnjL1T7k86+2mp p4Lf0LENv05Mm4fIAHVBPi+usb3CjLtpYyqlF7MwHwpoaPqO50ae/DqcIOW5hWl6 kOwCc6wmef+vJ6eDbxd+4fM0zq0afLRAUyhhWIk41XhgfJ9iZsV+ZcnfVbAJCs8t 8FZ/wAvhtsEwlFM1WuLu =aOEx -----END PGP SIGNATURE----- --XsxFkDPDWfsXVt/M-- From owner-freebsd-doc@FreeBSD.ORG Fri Jun 20 23:41:02 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1084634B for ; Fri, 20 Jun 2014 23:41:02 +0000 (UTC) Received: from mail-we0-x22e.google.com (mail-we0-x22e.google.com [IPv6:2a00:1450:400c:c03::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A0A6B2747 for ; Fri, 20 Jun 2014 23:41:01 +0000 (UTC) Received: by mail-we0-f174.google.com with SMTP id u57so4449308wes.19 for ; Fri, 20 Jun 2014 16:40:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=kcf3pxjpvi8TJma05qGnRU6Cd3k42GeW5IriVG2U8v4=; b=gdpjxsto4j3jBYGgdlcWp4jAhv92NLKbWTW2clSNphvtA1BNAAldKBbpFkKGtSHjr/ 6BSr9NnLVliVpGci/XT0jfvQgfd7qx97R8DGVG87YXFjJzWUELmC6W2E/yvvWMimjj7G WRKzEn7joJvmBY6s7huT/blU3GbWsvKRsJl4tiuNzJZJsExO4rf1eFEdICM6U3DOSMQC QEdzw15rMSgPHYA8iG/Ka96NGcvFtRdrgpF5/3RBgyWGhysyTX4lItevWubsVAQdPhGC 7/4jqdzPSrXm+46xSqXzdO0fOTopuRgDea0t1VwtQv/soRQymUD6Tto5tcVy1leZBSe6 Nk7Q== MIME-Version: 1.0 X-Received: by 10.194.179.170 with SMTP id dh10mr8136360wjc.7.1403307658830; Fri, 20 Jun 2014 16:40:58 -0700 (PDT) Sender: lucasreddinger@gmail.com Received: by 10.194.100.69 with HTTP; Fri, 20 Jun 2014 16:40:58 -0700 (PDT) Date: Fri, 20 Jun 2014 16:40:58 -0700 X-Google-Sender-Auth: fwlGGng0pp7fM5GQRCKYmj7Mr7A Message-ID: Subject: Handbook 6.7 Desktop Environments From: Lucas Reddinger To: freebsd-doc@FreeBSD.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jun 2014 23:41:02 -0000 Re: https://www.freebsd.org/doc/handbook/x11-wm.html The command `pkg install xfce` doesn't work on FreeBSD 10, does it? I had to use `pkg install xfce-wm-4.10` instead. Maybe a correction is necessary? Best, Lucas -- Lucas Reddinger Ph.D. Student Department of Economics University of California, Santa Barbara From owner-freebsd-doc@FreeBSD.ORG Sat Jun 21 00:09:18 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E3BA878E for ; Sat, 21 Jun 2014 00:09:18 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id BC94C296C for ; Sat, 21 Jun 2014 00:09:18 +0000 (UTC) Received: from [10.1.1.2] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allanjude.freebsd@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 0449F1504F for ; Sat, 21 Jun 2014 00:09:10 +0000 (UTC) Message-ID: <53A4CD40.7040404@freebsd.org> Date: Fri, 20 Jun 2014 20:09:36 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Handbook 6.7 Desktop Environments References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HJEwBgBeX8LLMAHRFKUxkdCdI6xFm6ALf" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 00:09:19 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --HJEwBgBeX8LLMAHRFKUxkdCdI6xFm6ALf Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-06-20 19:40, Lucas Reddinger wrote: > Re: https://www.freebsd.org/doc/handbook/x11-wm.html >=20 > The command `pkg install xfce` doesn't work on FreeBSD 10, does it? I h= ad > to use `pkg install xfce-wm-4.10` instead. >=20 > Maybe a correction is necessary? >=20 > Best, > Lucas >=20 >=20 > -- > Lucas Reddinger > Ph.D. Student > Department of Economics > University of California, Santa Barbara > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" >=20 See http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-finding-a= pplications.html But the install command should be xfce4-wm thanks for the heads up, I'll write a patch --=20 Allan Jude --HJEwBgBeX8LLMAHRFKUxkdCdI6xFm6ALf Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTpM1DAAoJEJrBFpNRJZKflLIP/3AjBdlephuRAAmNv4YxfyjR BIIys1qZ65pxrKFQCyn992VAEX8zad8/3G6ZT/3MvknVm4gMkG6kGiT/k7ouvPN9 mgTYKnhOkbUEIEKzJCv/BfxlG7Hp7LyfzA+tvxk1s+UN+hR3D2O6ymyziOJY3Bj/ DcN0Wlo+zc5ivKH/G9M1fLaLP4Shmv3VfoMAA/JWaEZFflxaVrxB/FXwpMPIQfAj k1L5WUDG8SqvIm2DSq/q+YhB+Ey3u7e8SotXQFmjimDBZmasZAkVsNtuFPYWCmZN iV628VgMuf/bIalIgt+sF7azbdm1iY55g6wUvGLikJFAhz+04T5GURzdlLSsW/94 VSlkw/XxpJ5Ui1zJx38EI2HUgf7T7opluzNKttj82EQkACfluSGUowB1ZlQCBvmZ LgXTyR1JzDzLf43/FSjc0fyd0NwolEF4KauFByLS2u2BYgh6gJgEDBI7ySTmRGqM /VxtCA1hhaueFERma5gyzyc76sZDQu62Z2a08ShAF8HsIbLIsewdnZ6MTnOf8Yb4 KeDqwAVvILLY7dIbSoYrmOn1fxeX/dwVywnngJrMBGKkR2zvUtodGim7jdZIZui2 kD6iY2IruVhmn3+sxjFJWz484f5ipfGJb1xwdcZ1wlvEnP3xwQB0siV7ztzvqZPM vK5GBoMc1pcQKaPPpLqL =MDLO -----END PGP SIGNATURE----- --HJEwBgBeX8LLMAHRFKUxkdCdI6xFm6ALf-- From owner-freebsd-doc@FreeBSD.ORG Sat Jun 21 00:59:16 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from hub.FreeBSD.org (hub.freebsd.org [IPv6:2001:1900:2254:206c::16:88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3AD72E7; Sat, 21 Jun 2014 00:59:15 +0000 (UTC) Date: Fri, 20 Jun 2014 20:59:12 -0400 From: Glen Barber To: freebsd-doc@FreeBSD.org Subject: Request for review: 9.3-RELEASE release notes Message-ID: <20140621005912.GK1218@hub.FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="YRGgq4HRInt36X2w" Content-Disposition: inline X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: FreeBSD Release Engineering Team X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 00:59:16 -0000 --YRGgq4HRInt36X2w Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, Earlier today, I connected the 9.3-RELEASE release notes to the build. The document is available at: http://www.freebsd.org/releases/9.3R/relnotes.html Reviews on the document would be greatly appreciated, patches for incorrect information even more. Thank you in advance. Glen On behalf of: re@ --YRGgq4HRInt36X2w Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJTpNjgAAoJELls3eqvi17QCYIQAM/2/Fszm7Bs6rBVkm5fEKWq Y4G9kLLSe2fOnnRLi6xkp4h65b+D47W38YAPhEQjnfUEQMaEL9D2y5C1faqH5dWR 1Vy2r6tk3RoGZudvZJdDeZgXGFZFqr4m2+q2xrWXiSAPrhagTEvIkaj40xB21gVT PWY9HV8tzC0zUhW6uGtLorZJpAlZoguK26KRXI1RlIBQVWfghp/1y2ZLY/D4sIHo ixISEfy7AYGfMM7P0TN4NEp/FJ343BhEgRRflUYJLgpDcZuLiFJHVXou25ZhJRL+ IGqhDQOdZEg1XbJV1ww/mINIe879BzlpaO9H8aa3u1Z9kvK9eXoOnTtOQk4a1ES/ QKm//7BEed5LokEmr0yoe2O0mx7ILzKI244pH7KgNFwTJ81ZETkUVUuZgfTC/Qgg cIEN+AQy86btrnanLVoMiIMk3HzfxkEw0a7lEjSxbVq859hWQTZGX8JrPjH71lJy ztTDm9SCYzXwgqmMuqR7IunhcIADZH2irvA0j46/+fo248grTRxzpM/oDZoPnqtB mXNjXu78/1Rc59BuW7LYrBEgG32CT+kVE5zGvxdJeTLq2mvfeUcCrcEKnLPB+IpQ p5n2qEMABk+mcJA2vxUbNhl6b+RrxbFrwe2oUrXjUFSX2jN6OUy+RufoxxfDhXzq +WDFYyDkZEjFNpXSkzBm =q4bz -----END PGP SIGNATURE----- --YRGgq4HRInt36X2w-- From owner-freebsd-doc@FreeBSD.ORG Sat Jun 21 01:27:01 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2B17ED4; Sat, 21 Jun 2014 01:27:01 +0000 (UTC) Received: from mail-lb0-x232.google.com (mail-lb0-x232.google.com [IPv6:2a00:1450:4010:c04::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 15AEB2F27; Sat, 21 Jun 2014 01:27:00 +0000 (UTC) Received: by mail-lb0-f178.google.com with SMTP id 10so2772400lbg.23 for ; Fri, 20 Jun 2014 18:26:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=1TV4c9jHlNf8g6UurfplUX1G3pQN2pnXlT1P4dT+Jww=; b=hPRnDN/8kNhiXONJGspv8HOHrWj/0Msytzcphl9fLE4HMq3swCAWJOYNGkncS1LRpy aVpK9rIqGXIHPmvUTB8exPzASHMpS9EPPraiZ5JU0jP/kPoMWDgaSfaVWRHhUGcymtRj 7w52i6v+w7PIgzCO1g5vHLzkzPruO8VJFeRDnrdRg6Hl8dWzJs1rBzvBEGjSGIsTxnt5 z6ZsougjFfEk8ue/wsHT/1rhJJQHot07c/MbsahVFbSSnt+3EDG2pdYsu6nT639ETCR0 HLi2a60Fbz6lTa803Qw0RFUNuMuEaUSIQOGUUfRv96zxG82P8PwPnsW0GC8X2+30B7U6 zxeg== MIME-Version: 1.0 X-Received: by 10.112.162.70 with SMTP id xy6mr4824515lbb.40.1403314018128; Fri, 20 Jun 2014 18:26:58 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.67.73 with HTTP; Fri, 20 Jun 2014 18:26:58 -0700 (PDT) In-Reply-To: <20140621005912.GK1218@hub.FreeBSD.org> References: <20140621005912.GK1218@hub.FreeBSD.org> Date: Fri, 20 Jun 2014 18:26:58 -0700 X-Google-Sender-Auth: or4QIezMohjEAY2lvA25IEcckhM Message-ID: Subject: Re: Request for review: 9.3-RELEASE release notes From: Craig Rodrigues To: Glen Barber Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-doc@freebsd.org, FreeBSD Release Engineering Team X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 01:27:02 -0000 Hi, Can we remove references to AIX, OS/2, and S/390 from the release notes, or do we still need them in there for some reason? -- Craig On Fri, Jun 20, 2014 at 5:59 PM, Glen Barber wrote: > Hi, > > Earlier today, I connected the 9.3-RELEASE release notes to the build. > The document is available at: > > http://www.freebsd.org/releases/9.3R/relnotes.html > > Reviews on the document would be greatly appreciated, patches for > incorrect information even more. > > Thank you in advance. > > Glen > On behalf of: re@ > -- Craig Rodrigues rodrigc@crodrigues.org From owner-freebsd-doc@FreeBSD.ORG Sat Jun 21 01:32:29 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from hub.FreeBSD.org (hub.freebsd.org [IPv6:2001:1900:2254:206c::16:88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 11F38F3B; Sat, 21 Jun 2014 01:32:28 +0000 (UTC) Date: Fri, 20 Jun 2014 21:32:25 -0400 From: Glen Barber To: Craig Rodrigues Subject: Re: Request for review: 9.3-RELEASE release notes Message-ID: <20140621013225.GP1218@hub.FreeBSD.org> References: <20140621005912.GK1218@hub.FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="53AZ357FMu84hmXL" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-doc@freebsd.org, FreeBSD Release Engineering Team X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 01:32:29 -0000 --53AZ357FMu84hmXL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jun 20, 2014 at 06:26:58PM -0700, Craig Rodrigues wrote: > Hi, >=20 > Can we remove references to AIX, OS/2, and S/390 from the release notes, > or do we still need them in there for some reason? >=20 We need them there for trademark reasons, in case they are referenced in other places in the documentation (i.e., in the hardware notes, etc.). Glen --53AZ357FMu84hmXL Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJTpOCpAAoJELls3eqvi17QOAwQALT4X8bb/8OhtiBx2te90QGo EIP6fwaTqD0JTuRiAMlUx4sgAe45x/ZP8e1Ih+95cfPqW/PC0+YiNbDz8Ivy6p+D 8Q9b1rvx1By0wn2ZpHmrzh2/dNWs6tPsi6FPbgGLWK+MGkkEub1atwshfUqL6+Hl NjrxMB96cI9e0hWYYirf6xGuIVH3fdMsNq4GU2F2y/WQaIdj/9GfxDQCUc5HCANF 7DCDBAqeIH+tO3rVRf9mnApWnMRLxi5zMXupF9AeY0htUoWMlgBZWWzm1ZYHtqbW dpiI1KY5dVx0LnFQBN59yUOs3Kw41IuHhoTPrN+J3GLUwJD0G7niWb2L9W8/K31Z bj/YDnDCV/aeLyZK6qoumNMNVADYOyNnPnJOlckLjzane8vrub3SZzCNDIYt5kNK QmgvrnORqXbml8JhL+wm9OpOMJDTFUrF1by/mHuH970rylV+/sIfZmJ4cdsfl5GW hedgdZKb/fNMhXnraOkPUC9q00bp5xAJ5aV704OUwE3c4Ol57vPS8kDGp/xfakHY 8yVobvwzTiMS5RDr18MD2hncX2bnHNlJJHH8TrZ4duJ5pblUOP4w9Kgj1W5RCY9o sEUVz2V6Zf6/2UxXCLbp9BlrOTrYcqJuwbRMn89GMLvr6/Ni8hCe13vzTy3zvjrS IlN16vkpEkpgcBBiPtbI =kSAo -----END PGP SIGNATURE----- --53AZ357FMu84hmXL-- From owner-freebsd-doc@FreeBSD.ORG Sat Jun 21 01:51:13 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 595895DF for ; Sat, 21 Jun 2014 01:51:13 +0000 (UTC) Received: from mx1.scaleengine.net (beauharnois2.bhs1.scaleengine.net [142.4.218.15]) by mx1.freebsd.org (Postfix) with ESMTP id 31FBB20B8 for ; Sat, 21 Jun 2014 01:51:12 +0000 (UTC) Received: from [10.1.1.2] (S01060001abad1dea.hm.shawcable.net [50.70.146.73]) (Authenticated sender: allanjude.freebsd@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 9C139150E0 for ; Sat, 21 Jun 2014 01:51:11 +0000 (UTC) Message-ID: <53A4E529.6080008@freebsd.org> Date: Fri, 20 Jun 2014 21:51:37 -0400 From: Allan Jude User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: Handbook 6.7 Desktop Environments References: <53A4CD40.7040404@freebsd.org> In-Reply-To: <53A4CD40.7040404@freebsd.org> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MnxpbxH1lQjTKBwVTTF6LpIBFaJCrewSX" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 01:51:13 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --MnxpbxH1lQjTKBwVTTF6LpIBFaJCrewSX Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2014-06-20 20:09, Allan Jude wrote: > On 2014-06-20 19:40, Lucas Reddinger wrote: >> Re: https://www.freebsd.org/doc/handbook/x11-wm.html >> >> The command `pkg install xfce` doesn't work on FreeBSD 10, does it? I = had >> to use `pkg install xfce-wm-4.10` instead. >> >> Maybe a correction is necessary? >> >> Best, >> Lucas >> >> >> -- >> Lucas Reddinger >> Ph.D. Student >> Department of Economics >> University of California, Santa Barbara >> _______________________________________________ >> freebsd-doc@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-doc >> To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org"= >> >=20 > See > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-finding= -applications.html >=20 > But the install command should be xfce4-wm >=20 > thanks for the heads up, I'll write a patch >=20 >=20 >=20 Turns out the documentation is actually correct. The issue is that 9.2 and 10.0 do not support NEW_XORG yet, and so the package fails to build. xfce-wm is only 'part' of the xfce package, not the entire thing. Not sure how big of a deal it is, but it is a known issue, same reason why you can't install KDE. --=20 Allan Jude --MnxpbxH1lQjTKBwVTTF6LpIBFaJCrewSX Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTpOUsAAoJEJrBFpNRJZKfcMkP/3+e05JMQudDc5YHeJHpvm2E Y3JStjL5qQo2dKjXHB+JTcAwhNtht+d51SdPO2pRZGQ+aB3m3exN53XEne7S1xi3 hZ+B7OgnJ5mv8a5i9qjbKinIkXCOBsm3ytwWiV3kul7dRwQJJEZOpXugkIANt0sh eU3PAWWhwgzud3jD8Nsks6eCcJPkOro6yz9oIoTX2MfmsN17LvGpEq2a02ctTVD6 JaxHoC9juYh+cSAMSP3jLxUk+6wekztGI+dKOBx105qlvcGETWbyYxC1Re4YFMD7 FgTef9pcNrEg5vkwV2xirHnh3dANSwfiFbFGnLcMVVG2sGyIjL05aJY2i+FnlHQQ rS5giLBcgX0QfNdf23f2QMYcKI5n0PM8GZMWc35bIAcW+PCYapOKl+V3R/yqcowL Q3lUDl+WR6hrVqfgXdaozyepiYKnyPLuO6aNZT582vKvL22NJWpbXciC/6o0WACC mvp+zGt3T0lSbXWwN8WckjcQX/v5VA1ntBOrJDbS9bWGcMIYg4cwDmSSLYl3jHBc 5jAsvySnXX8uL9sUwMUdexX7QFKUxzETUmIRIUVmDjViV4dypr+3lpE9nJW8GziJ 5kndPpctbtKBe1F99PkQbXRkFNbNWMomKxNZ8L6jkQ1XMSqJaHLP3kIpDivdB7ut LsnGpbKqaAc0jzmzkkCP =ZQE8 -----END PGP SIGNATURE----- --MnxpbxH1lQjTKBwVTTF6LpIBFaJCrewSX-- From owner-freebsd-doc@FreeBSD.ORG Sat Jun 21 08:03:32 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 31E0ADFE for ; Sat, 21 Jun 2014 08:03:32 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A0392B33 for ; Sat, 21 Jun 2014 08:03:32 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5L83V9d061910 for ; Sat, 21 Jun 2014 09:03:31 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191234] New: Express your best love and respect to your mummy with flowers Date: Sat, 21 Jun 2014 08:03:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: thapasangeeta97@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 08:03:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191234 Bug ID: 191234 Summary: Express your best love and respect to your mummy with flowers Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Website Assignee: freebsd-doc@FreeBSD.org Reporter: thapasangeeta97@gmail.com Created attachment 143985 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D143985&action= =3Dedit Send Mother's Day Flowers to Indonesia Mother=E2=80=99s Day is the day that is specially celebrated to pay the hon= or of motherhood. It is celebrated all over the world with great joy and happines= s. People from the world do something unique and creative to make their mother feel very special and loving. Make this special day happy and warm by shari= ng some moments with the beautiful fragrance of Flowers. Send Mother=E2=80=99s= Day Gifts to Indonesia through online shopping portals at affordable price and be the part of this happy celebration. This is the time to make your mother know t= hat she is the best loving mother in the world. Deliver various kinds of attrac= tive presents to your mummy and bring smile to her face. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@FreeBSD.ORG Sat Jun 21 14:04:00 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75DBCEF4 for ; Sat, 21 Jun 2014 14:04:00 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C8E22568 for ; Sat, 21 Jun 2014 14:04:00 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5LE40hi026354 for ; Sat, 21 Jun 2014 15:04:00 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191243] New: [patch] [porters handbook] reflect ports ${opt}_WITH change (svn ports commit r358699) Date: Sat, 21 Jun 2014 14:04:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ohauer@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform bug_file_loc op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 14:04:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191243 Bug ID: 191243 Summary: [patch] [porters handbook] reflect ports ${opt}_WITH change (svn ports commit r358699) Product: Documentation Version: Latest Hardware: Any URL: http://svnweb.freebsd.org/ports?view=revision&revision =358699 OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: ohauer@FreeBSD.org Created attachment 143995 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=143995&action=edit ${opt}_with handbook fix Reflect ${OPT}_WITH change from ports svn r358699 (Mk/bsd.options.mk) For reference see PR 191085 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Sat Jun 21 15:41:11 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 003FD839 for ; Sat, 21 Jun 2014 15:41:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBCDE2C42 for ; Sat, 21 Jun 2014 15:41:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5LFfArq043713 for ; Sat, 21 Jun 2014 16:41:10 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191234] Express your best love and respect to your mummy with flowers Date: Sat, 21 Jun 2014 15:41:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Administrative Concerns X-Bugzilla-Component: Junk X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: eadler@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: nobody@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component version assigned_to product Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 15:41:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191234 Eitan Adler changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Website |Junk Version|Latest |unspecified Assignee|freebsd-doc@FreeBSD.org |nobody@FreeBSD.org Product|Documentation |Administrative Concerns -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Sat Jun 21 19:44:33 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B46097FE for ; Sat, 21 Jun 2014 19:44:33 +0000 (UTC) Received: from ups.com (tessa6.ups.com [153.2.234.139]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "tessa6.ups.com", Issuer "COMODO High-Assurance Secure Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 303E82DB9 for ; Sat, 21 Jun 2014 19:44:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ups.com; s=selector_ups; t=1403378957; x=1709913508; q=dns/txt; h=From: Subject:Content-Type:Date:Message-ID; bh=4FowMjcaI0jNBoV98/UBaxp b30ULLYommCDMQOTWc2I=; b=JCZRtXhlJqeKLk9oCrJcmf/0X7+Qxl9ub4hmkiL H6/FT6rkMCEMzXTZFytL4QexvSZuYpnTYC1dQg5EsKGYWvlf+HJTEv1kaHxcZE1u h7GT0ivheMKO1f6eGDRkkwF7wYwh8Wno+nIIcTj7XSrSxf+hTlBwKcPtBqPnvVRX Yq/M= Received: from ([153.2.242.84]) by tessa6.ups.com with ESMTP id 3FV19K1.186470064; Sat, 21 Jun 2014 15:29:16 -0400 From: zhufurao@ups.com To: doc@freebsd.org Subject: Thought you might be interested in this from UPS MIME-Version: 1.0 Date: Sat, 21 Jun 2014 15:29:16 -0400 (EDT) Message-ID: <391507005.4844203.1403378956313.JavaMail.beawl@drevil-vip.ups.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 19:44:33 -0000 Your colleague, 您好!本公司优&#x= 60e0;开各种{票};普*= 89e;,服务业,建筑业,= ;广告业,运输业,机&#= x68b0;*设备,工程费,装= ;饰费,房地产,建材&#= xff0c;租赁费,会议费,T= a8;询费,设计费等)优= 惠代-开;验-后付-款,= 需要请13530969936蒋生联系!= 【咨询电话】QQ:1411459116, has s= ent the following message: zairuancheng Here's a link to the page 您好!本公司&= #x4f18;惠开各种{票};普= *增,服务业,建筑N= 1a;,广告业,运输业,= 机械*设备,工程费ÿ= 0c;装饰费,房地产,建= 材,租赁费,会议费&#x= ff0c;咨询费,设计费等࿰= 9;优惠代-开;验-后付-ڳ= e;,需要请13530969936蒋生联ߏ= b;!【咨询电话】QQ:1411459= 116 wanted you to see: Getting Started http://www.ups.com =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =EF=BF=BD 2011 United Parcel Service of America, Inc. UPS, the UPS brandmar= k, and the color brown are trademarks of United Parcel Service of America, = Inc. All rights reserved. For more information on UPS's privacy practices, refer to the UPS Privacy P= olicy. Please do not reply directly to this e-mail. UPS will not receive any reply= message. For questions or comments, Contact UPS. This communication contains proprietary information and may be confidential= . If you are not the intended recipient, the reading, copying, disclosure o= r other use of the contents of this e-mail is strictly prohibited and you a= re instructed to please delete this e-mail immediately. Privacy Policy: http://www.ups.com/content/us/en/resources/ship/terms/priva= cy.html Contact UPS: http://www.ups.com/content/us/en/contact/index.html UPS may remove any message or decline to transmit any email in its sole dis= cretion. . Copyright (c) 2014 United Parcel Service of America, Inc. UPS, the UPS bran= dmark, and the color brown are trademarks of United Parcel Service of Ameri= ca, Inc. All rights reserved.=20 For more information on UPS's privacy practices, refer to the UPS Privacy P= olicy. Please do not reply directly to this e-mail. UPS will not receive any reply= message.=20 For questions or comments, visit Contact UPS. This communication contains proprietary information and may be confidential= . If you are not the intended recipient, the reading, copying, disclosure = or other use of the contents of this e-mail is strictly prohibited and you = are instructed to please delete this e-mail immediately. =20 Privacy Notice http://www.ups.com/content/us/en/resources/ship/terms/privacy.html =20 Contact UPS http://www.ups.com/content/us/en/contact/index.html From owner-freebsd-doc@FreeBSD.ORG Sun Jun 22 03:34:06 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5FE20891; Sun, 22 Jun 2014 03:34:06 +0000 (UTC) Received: from mail-ve0-x230.google.com (mail-ve0-x230.google.com [IPv6:2607:f8b0:400c:c01::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EC0C52F04; Sun, 22 Jun 2014 03:34:05 +0000 (UTC) Received: by mail-ve0-f176.google.com with SMTP id db12so4849184veb.21 for ; Sat, 21 Jun 2014 20:34:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=EPzbaFk8mVdMPqb3qM2BNkXh66Pfv77TmwkCU9E+nNo=; b=qxcVJPN7aZBsCrRIUSNeCv94HZeGfMiS0NYPjtNJoPQWyWia44KKbmavePtGLA6u+9 H1dp2r6JuaFzXoB26yAQyztF111BRQe+2BIgyLgWCQ1ttZyZRzm5UAfIrZkiNS9SzV0X tF/X0X8/bFuGaQ//FdJ8MZLx7kaati7J9w5xlbkgpUn4pyqlYfq6yEcXNd9vr2q9KNTs 105pWnHeSKIqTCe66jp4Rdb7L4Bt6ccqFwoo/Wz+n3O3RpQwS4MFxXblPhhwOHE7Nn0U SrvXY38p8XA2D7Zftlhdqj2C71d+l03EvqmfOE37x1a5R3kJA4X1/MInhVwlGXYBQN8Q cw+A== MIME-Version: 1.0 X-Received: by 10.58.150.100 with SMTP id uh4mr4879685veb.30.1403408044672; Sat, 21 Jun 2014 20:34:04 -0700 (PDT) Received: by 10.58.2.130 with HTTP; Sat, 21 Jun 2014 20:34:04 -0700 (PDT) In-Reply-To: <20140621005912.GK1218@hub.FreeBSD.org> References: <20140621005912.GK1218@hub.FreeBSD.org> Date: Sat, 21 Jun 2014 23:34:04 -0400 Message-ID: Subject: Re: Request for review: 9.3-RELEASE release notes From: Mehmet Erol Sanliturk To: Glen Barber Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: "freebsd-doc@freebsd.org" , FreeBSD Release Engineering Team X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Jun 2014 03:34:06 -0000 On Fri, Jun 20, 2014 at 8:59 PM, Glen Barber wrote: > Hi, > > Earlier today, I connected the 9.3-RELEASE release notes to the build. > The document is available at: > > http://www.freebsd.org/releases/9.3R/relnotes.html > > Reviews on the document would be greatly appreciated, patches for > incorrect information even more. > > Thank you in advance. > > Glen > On behalf of: re@ > Is there a possibility to add the following paragraph from http://lists.freebsd.org/pipermail/freebsd-stable/2014-June/079024.html if it is not supported in release ISO : " Note to consumers of the dvd1.iso image: The version of bsdconfig(8) in the releng/9.3 branch does not yet support pkg(7)-format packages. This is planned to be fixed in -RC2. While there are packages available on the dvd1.iso image, they cannot yet be installed with bsdconfig(8). They can be installed manually, however. To install packages from the dvd1.iso installer, create and mount the /dist directory: # mkdir -p /dist # mount -t cd9660 /dev/cd0 /dist Next, install pkg(8) from the DVD: # env REPOS_DIR=/dist/packages/repos \ pkg add /dist/packages/freebsd:9:*:*/All/pkg-*.txz At this point, pkg-install(8) can be used to install additional packages from the DVD. Please note, the REPOS_DIR environment variable should be used each time using the DVD as the package repository, otherwise conflicts with packages from the upstream mirrors may occur when they are fetched. For example, to install the Subversion, Gnome, and Xorg, run: # env REPOS_DIR=/dist/packages/repos \ pkg install subversion gnome2 xorg " Thank you very much . Mehmet Erol Sanliturk From owner-freebsd-doc@FreeBSD.ORG Sun Jun 22 06:46:45 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from hub.FreeBSD.org (hub.freebsd.org [IPv6:2001:1900:2254:206c::16:88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E74B0673; Sun, 22 Jun 2014 06:46:44 +0000 (UTC) Date: Sun, 22 Jun 2014 02:46:41 -0400 From: Glen Barber To: Mehmet Erol Sanliturk Subject: Re: Request for review: 9.3-RELEASE release notes Message-ID: <20140622064641.GA1218@hub.FreeBSD.org> References: <20140621005912.GK1218@hub.FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="qfY6YPPgxDuMl8bl" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: "freebsd-doc@freebsd.org" , FreeBSD Release Engineering Team X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Jun 2014 06:46:45 -0000 --qfY6YPPgxDuMl8bl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jun 21, 2014 at 11:34:04PM -0400, Mehmet Erol Sanliturk wrote: > On Fri, Jun 20, 2014 at 8:59 PM, Glen Barber wrote: > Is there a possibility to add the following paragraph from >=20 > http://lists.freebsd.org/pipermail/freebsd-stable/2014-June/079024.html >=20 > if it is not supported in release ISO : >=20 >=20 > " > Note to consumers of the dvd1.iso image: The version of bsdconfig(8) in > the releng/9.3 branch does not yet support pkg(7)-format packages. This > is planned to be fixed in -RC2. >=20 Sure. If it is not fixed. Glen --qfY6YPPgxDuMl8bl Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJTpnvRAAoJELls3eqvi17QAeQP/jPXH1YKgVXlQkNM06D1MeHo jN+Eq3EJanBolJEUx6IfOyqg3kWb5P08/0RUIpDRkN6uEHYWvPcJ5i1u6BKW4gFE /q8aEQJB8zPXVnQCSEfpijSzk2VxhfFVNSip7icQostWZltlLAkpu9NwjukwNb8Z BUHDom4N1OTg4YT5dBGge4D/2cKEV+kvx82YLL9K8NrAeU+5n3eendqaD4FB8dX/ ounQx5UMeaNxsf5vqY37W9GKoLmTW1VLImhpS54BU5mYpwdtbh5ayw1S8IroZJWK RMFeZRyNndq7EmqvgfoBECw4uOa4KXEVcMKkR0uwV0dI5urCoQaqr/RUzkUHEfDW 6/UCbjfPU1fBsPIQUM0GfZTawNOSfqR2E2Hr2FdTYh3R7OLZjPaM1fCIa/3V02+y HO3fsBrwn1Xih+BfZv7eaqhEnt3OU9e50ZjNRhr5qtbSJ4+1bdJ3+Zyh07JazINU REojlygV5OfVdkEhs03uwZI7xmZh9mhC5PT50mSv5fP129Qfn3AifrahsYaLGQ2F ufeNt0VpbJ7z5Zcs51sqw4/ph2dOF9CSHynZXGH6isOJ9V90L+ybxm7BX+d1aouq vm3a/9+HTTmZ78MXUXmAvl+INLvGUNUwD75Zp9XWnKh81ceXKOu8bWJYArvx5BiU EtI8oYacSGDTrNY3ebqk =ydUt -----END PGP SIGNATURE----- --qfY6YPPgxDuMl8bl-- From owner-freebsd-doc@FreeBSD.ORG Sun Jun 22 08:00:02 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2229CC35 for ; Sun, 22 Jun 2014 08:00:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0917F2EA4 for ; Sun, 22 Jun 2014 08:00:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5M801mY005872 for ; Sun, 22 Jun 2014 09:00:01 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191262] New:=?UTF-8?Q?=20Add=20note=20to=207=2E2=2E1=2E2=2E=20Firefox=20and=20Adobe=C2=AE=20Flash=C2=AE=20Plugin=20documentation?= Date: Sun, 22 Jun 2014 08:00:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ikkyisaacs@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Jun 2014 08:00:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191262 Bug ID: 191262 Summary: Add note to 7.2.1.2. Firefox and Adobe=C2=AE Flash=C2= =AE Plugin documentation Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: ikkyisaacs@gmail.com Add note to 7.2.1.2. Firefox and Adobe=C2=AE Flash=C2=AE Plugin documentati= on. Under step 1 'Install the www/nspluginwrapper' add a note referring to the= =20 emulators/linux_base-f10 port dependency on the linux kernel module. eg=20 This port requires emulators/linux_base-f10 which is a large port depending= on the linux kernel module and linux emulation services. Automate the loading of the linux module in /boot/loader.conf with=20 linux_load=3D"YES" and the linux services in /etc/rc.conf with linux_enable=3D"YES" --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@FreeBSD.ORG Sun Jun 22 08:01:02 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D4ADD1E for ; Sun, 22 Jun 2014 08:01:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 03AF32F1F for ; Sun, 22 Jun 2014 08:01:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5M811Xu016352 for ; Sun, 22 Jun 2014 09:01:01 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191262]=?UTF-8?Q?=20Add=20note=20to=207=2E2=2E1=2E2=2E=20Firefox=20and=20Adobe=C2=AE=20Flash=C2=AE=20Plugin=20documentation?= Date: Sun, 22 Jun 2014 08:01:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ikkyisaacs@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Jun 2014 08:01:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191262 --- Comment #1 from ikkyisaacs@gmail.com --- This is for the handbook. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Sun Jun 22 16:15:55 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBAC87F5 for ; Sun, 22 Jun 2014 16:15:55 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C37372195 for ; Sun, 22 Jun 2014 16:15:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5MGFtw1055540 for ; Sun, 22 Jun 2014 17:15:55 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Sun, 22 Jun 2014 16:15:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dreamcat4@gmail.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Jun 2014 16:15:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189268 --- Comment #6 from dreamcat4@gmail.com --- (In reply to Allan Jude from comment #5) > So do you still think there is an issue here? or can I close this PR? > Allan Jude Yeah I believe this one should stay open because it was discovered as a bug when such a query was being executed by a real piece of software (virtualbox). Rationale: The virtualbox source code running this query was multi platform. If their developers can only test their work on one platform (for example linux), and result the other platform works correctly... they kindda need to be able to assume it work's gonna the same way on FreeBSD too. Problem Recap. In short. The problem is that: running a "localhost" DNS query should never be returning "0.0.0.0" anywhere in it's results list. As "0.0.0.0" != "localhost". This bug occurs if the protocol family being requested is set to "PF_UNSPEC" (unspecified). OR "PF_INET6". With the default "/etc/hosts" file (with a line that says "::1 localhost"). The bug is more likely to occur on new "IPV4+IPV6" code. The bug may not be evident on older IP4-only code, if the DNS query's "protocol family" struct field was set to "PF_INET4". -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 23 03:18:51 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5923CA70 for ; Mon, 23 Jun 2014 03:18:51 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 401022502 for ; Mon, 23 Jun 2014 03:18:51 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5N3Ipo5015181 for ; Mon, 23 Jun 2014 04:18:51 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191295] New: [PATCH] Add my consultancy to the website Date: Mon, 23 Jun 2014 03:18:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: xmj@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 03:18:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191295 Bug ID: 191295 Summary: [PATCH] Add my consultancy to the website Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Website Assignee: freebsd-doc@FreeBSD.org Reporter: xmj@FreeBSD.org Created attachment 144051 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D144051&action= =3Dedit svn diff to doc/share/xml/commercial.consult.xml adding Perceivon O=C3=9C Hi there, diff attached adds my consultancy Perceivon O=C3=9C to the Commercial Vendo= rs -> Consulting page. Best Johannes --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@FreeBSD.ORG Mon Jun 23 03:51:44 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D09F319D for ; Mon, 23 Jun 2014 03:51:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B79C927A3 for ; Mon, 23 Jun 2014 03:51:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5N3piXX055026 for ; Mon, 23 Jun 2014 04:51:44 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191295] [PATCH] Add my consultancy to the website Date: Mon, 23 Jun 2014 03:51:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: allanjude@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: allanjude@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 03:51:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191295 Allan Jude changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |allanjude@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |allanjude@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 23 05:13:33 2014 Return-Path: Delivered-To: doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6B2FDD3 for ; Mon, 23 Jun 2014 05:13:33 +0000 (UTC) Received: from mail-211-244.rm0001.net (mail-211-244.rm0001.net [64.4.211.244]) by mx1.freebsd.org (Postfix) with ESMTP id 9CCFE2D27 for ; Mon, 23 Jun 2014 05:13:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=k1; d=auth5.rm0001.net; h=From:To:Reply-To:Subject:Date:Message-ID:List-Unsubscribe:MIME-Version:Content-Type; bh=7UMbI6rlviQmpCj/PlY+ez0hLpU=; b=Ki2qNcHMmrhNcfTMxzH8sJcckEZwtwk+VXUKf/OdXWKcyqVQXhPGHEtmYDyl9d7fSVIGtr0AWvzh SAhY8HDQOiO5icUuPuilsPlN2UgFDlU0DcOIXaZQM49W3qRkHM1ABPFB1JQ47zLtbw78CbljbsvI UJuyrStCtD3AZuSzuVk= From: "Value Price Rentals" To: "doc@FreeBSD.org" Reply-To: Subject: Value Price Rentals Date: Mon, 23 Jun 2014 01:12:41 -0400 X-BPS1: 2923368 X-Feedback-ID: 2923368:1172801:RM X-BPS2: 3451 Message-ID: <1558b7f4-024a-40e1-aabd-03cc8dd4de55@auth5.rm0001.net> X-Mailer: RM Mailer (v5.4.288.0) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 05:13:34 -0000 Having trouble viewing this mail? Click here to view it in your browser. http://link.rm0002.net/v/d9RsdKiyqwA_G1euHrFqgg2 Make sure that you always get our messages: Add info@valuepricerentals.com to your contacts. Click here to unsubscribe or update your email address. http://link.rm0002.net/r.asp?l=439692&ee=3451;doc%40&s=2923368 This email is being sent to doc@FreeBSD.org. Use this link to be deleted or to update your email address http://link.rm0002.net/r.asp?l=439692&ee=3451;doc%40&s=2923368 Trouble with this link? Simply forward this message to rem@link.rm0002.net or call 773-470-0350 This message was sent by Value Price Rentals | 25, Agiou Kendea street | Paphos, Paphos 8046 From owner-freebsd-doc@FreeBSD.ORG Mon Jun 23 18:09:56 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C3BF679D for ; Mon, 23 Jun 2014 18:09:56 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AAFE023AA for ; Mon, 23 Jun 2014 18:09:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5NI9u8s006133 for ; Mon, 23 Jun 2014 19:09:56 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191320] New: [patch] adapt manuals for recent netmap(4) changes Date: Mon, 23 Jun 2014 18:09:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: franco@lastsummer.de X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 18:09:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191320 Bug ID: 191320 Summary: [patch] adapt manuals for recent netmap(4) changes Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: franco@lastsummer.de Created attachment 144075 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144075&action=edit remove the old vale.4 page This goes back to a discussion with Luigi back in January. The vale.4 page was too thin so documentation of vale(4) moved into netmap.4 instead. Also mention the recent cxgbe(4) addition to the native netmap device family. As always, clean up and prettify a couple of related lines. Feedback welcome. Maybe more of the vale.4 content needs to migrated to netmap.4? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 23 18:11:41 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0D6981E for ; Mon, 23 Jun 2014 18:11:41 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A888823D3 for ; Mon, 23 Jun 2014 18:11:41 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5NIBf8O039958 for ; Mon, 23 Jun 2014 19:11:41 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191320] [patch] adapt manuals for recent netmap(4) changes Date: Mon, 23 Jun 2014 18:11:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: franco@lastsummer.de X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 18:11:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191320 Franco Fichtner changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #144075|0 |1 is obsolete| | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 23 18:12:21 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8131E866 for ; Mon, 23 Jun 2014 18:12:21 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6914A2445 for ; Mon, 23 Jun 2014 18:12:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5NICLBO056234 for ; Mon, 23 Jun 2014 19:12:21 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191320] [patch] adapt manuals for recent netmap(4) changes Date: Mon, 23 Jun 2014 18:12:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: franco@lastsummer.de X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 18:12:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191320 --- Comment #1 from Franco Fichtner --- Created attachment 144076 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144076&action=edit remove the old vale.4 page -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 23 18:13:03 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABFC88AD for ; Mon, 23 Jun 2014 18:13:03 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 93BCB244D for ; Mon, 23 Jun 2014 18:13:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5NID3VH071182 for ; Mon, 23 Jun 2014 19:13:03 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191320] [patch] adapt manuals for recent netmap(4) changes Date: Mon, 23 Jun 2014 18:13:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: franco@lastsummer.de X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 18:13:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191320 --- Comment #2 from Franco Fichtner --- Created attachment 144077 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144077&action=edit mention cxgbe(4) and tidy up the section -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 23 19:31:19 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B565A632 for ; Mon, 23 Jun 2014 19:31:19 +0000 (UTC) Received: from S15.mmteamservers.net (S15.mmteamservers.net [149.62.169.11]) by mx1.freebsd.org (Postfix) with ESMTP id 247DD2B2D for ; Mon, 23 Jun 2014 19:31:18 +0000 (UTC) Received: from CT301 ([127.0.0.1]) by S15.mmteamservers.net with MailEnable ESMTP; Mon, 23 Jun 2014 21:20:53 +0200 Date: Mon, 23 Jun 2014 19:20:53 +0000 Subject: Delivery Notification To: freebsd-doc@freebsd.org From: "Priority Mail" X-Mailer: WelcomeMail Reply-To: "Priority Mail" Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 19:31:19 -0000 USPS.COM Notification Your parcel has arrived at June 20, 2014. Courier service could not make the delivery of your parcel. You should print the label and show it in the nearest post office to get a parcel. Print Shipping Receipt Copyright 2014 All Rights Reserved. Word Latest News: FDA rejects call to ban BPA from food packagingThe FDA has rejected a petition from environmentalists that would have banned BPA from all food and drink packaging. What a shot! 48 sports photos From owner-freebsd-doc@FreeBSD.ORG Mon Jun 23 21:56:21 2014 Return-Path: Delivered-To: www@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6B41A15 for ; Mon, 23 Jun 2014 21:56:21 +0000 (UTC) Received: from mail-we0-x22c.google.com (mail-we0-x22c.google.com [IPv6:2a00:1450:400c:c03::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 531B5290E for ; Mon, 23 Jun 2014 21:56:21 +0000 (UTC) Received: by mail-we0-f172.google.com with SMTP id u57so7762989wes.31 for ; Mon, 23 Jun 2014 14:56:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=yUMaJ5nybwim8OwE8IlWVWmBO8tWrs6YLRLbY+EkUnU=; b=yT31K3Wj9bjit9MRVxsfh20T9JkY6gpUexwB5db/9wNhMrTgdCUekKNxuoZIjsdEwq KjMNYJTcmyUCfdORGbs1Q36dznkJxgAxKjBSXE8MhKVN+udpJWO8fiKjy0sllN/pBWkS fHzm5l2JmTXcU+v0FSyUqaxmu/Ekq6eX3Ucnkyq20OO5VTBvtr1RctWCACIMYZ0lvk7V 7GL3hSR4lnaAmCoJPooaaKxP3nHwjAb+vN0uh04ox5VKdDabNfLKPUyZKI6rOc5z9MYP U2xI9LA2viEN8RjzOsOjoA4uB5ZqN1GKpJdeTZq2H3qTyni+XEaukqPE86pKY/CKxX0b Id9g== MIME-Version: 1.0 X-Received: by 10.180.9.71 with SMTP id x7mr29092357wia.61.1403560579617; Mon, 23 Jun 2014 14:56:19 -0700 (PDT) Received: by 10.194.157.34 with HTTP; Mon, 23 Jun 2014 14:56:19 -0700 (PDT) Received: by 10.194.157.34 with HTTP; Mon, 23 Jun 2014 14:56:19 -0700 (PDT) Date: Mon, 23 Jun 2014 14:56:19 -0700 Message-ID: Subject: Document not found - http://docs.freebsd.org/mail/archive/aic7xxx.html From: JohnRose134 Roses To: www@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 21:56:21 -0000 http://d ocs.fre ebsd.org/mail/ JRose From owner-freebsd-doc@FreeBSD.ORG Tue Jun 24 05:51:35 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 851313D2 for ; Tue, 24 Jun 2014 05:51:35 +0000 (UTC) Received: from omr-m09.mx.aol.com (omr-m09.mx.aol.com [64.12.143.82]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4548120CF for ; Tue, 24 Jun 2014 05:51:34 +0000 (UTC) Received: from mtaout-aah01.mx.aol.com (mtaout-aah01.mx.aol.com [172.27.1.141]) by omr-m09.mx.aol.com (Outbound Mail Relay) with ESMTP id 9216270000090 for ; Tue, 24 Jun 2014 01:45:55 -0400 (EDT) Received: from [192.168.2.3] (c-67-183-176-98.hsd1.wa.comcast.net [67.183.176.98]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mtaout-aah01.mx.aol.com (MUA/Third Party Client Interface) with ESMTPSA id 0ED2C38000089 for ; Tue, 24 Jun 2014 01:45:54 -0400 (EDT) Message-ID: <53A9108F.5050406@aim.com> Date: Mon, 23 Jun 2014 22:45:51 -0700 From: Lampros Chaidas User-Agent: Mozilla/5.0 (Windows NT 6.0; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-doc@FreeBSD.org Subject: can't find any reference to 'env ASSUME_ALWAYS_YES=YES' for pkg x-aol-global-disposition: G DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.com; s=20121107; t=1403588755; bh=S4hVACixzpqc3G7p+tl1nDn8JeRq8K2iK0heLnxwlb8=; h=From:To:Subject:Message-ID:Date:MIME-Version:Content-Type; b=W7GfkBTmqwCX975DwIMty/et101dVcGQF1tf0UCJZ5fxKCUp1MgvtEGm5H0hbiJJ9 7cPG7VWS6zW4rukuweQ3gLS57rPzBXIUAaQ2LAAwNBTC2kOwQih5kaywHx8zzajTwx 9Bn3A+Ce8w1djjUHc6ydP+lBFTfihz2sUL6EK/Ns= x-aol-sid: 3039ac1b018d53a910925815 X-AOL-IP: 67.183.176.98 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 05:51:35 -0000 Hi there, I was looking for a way to bootstrap pkg automatically for use with Ansible but things like this would fail: ansible all -m raw -a 'yes | pkg info' 192.168.2.16 | FAILED | rc=1 >> The package management tool is not yet installed on your system. Do you want to fetch and install it now? [y/N]: The problem wasn't Ansible though as I tried the command 'yes | pkg info' locally and it still wouldn't work. After lots of Googling I found this: https://dan.langille.org/2013/12/06/bootstrapping-installing-pkg-on-freebsd-unattended-and-without-answering-yes I tried the following: ansible all -m raw -a 'env ASSUME_ALWAYS_YES=YES pkg bootstrap' which worked flawlessly. Now the issue I have is that I could not find a reference to 'env ASSUME_ALWAYS_YES' in either the handbook (http://www.freebsd.org/doc/handbook/pkgng-intro.html) or in the man pages: http://www.freebsd.org/cgi/man.cgi?query=pkg&sektion=7 My questions are: 1. Is there another way of doing this? 2. If not, can a reference/note be added in one of the above mentioned pages ? I think this is a pretty important piece of information to be left out. Many thanks, - Lampros From owner-freebsd-doc@FreeBSD.ORG Tue Jun 24 06:05:03 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B56155CE for ; Tue, 24 Jun 2014 06:05:03 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 5FA1521B6 for ; Tue, 24 Jun 2014 06:05:03 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.9/8.14.9) with ESMTP id s5O64vtD025152 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Tue, 24 Jun 2014 07:04:57 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=infracaninophile.co.uk DKIM-Filter: OpenDKIM Filter v2.9.2 smtp.infracaninophile.co.uk s5O64vtD025152 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1403589897; bh=bMLbqNPqASKaNaMtwqSssIhnkgQ6YxljsVTE+5TaTgM=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Tue,=2024=20Jun=202014=2007:04:49=20+0100|From:=20Matthew =20Seaman=20|To:=20freebsd-doc@fr eebsd.org|Subject:=20Re:=20can't=20find=20any=20reference=20to=20' env=20ASSUME_ALWAYS_YES=3DYES'=20for=20pkg|References:=20<53A9108F .5050406@aim.com>|In-Reply-To:=20<53A9108F.5050406@aim.com>; b=etdiQXlOjyR+uKQRMRUzo8WX1+z+3I1i65GRY/r6WJotesdC8WHULSMxNFXmJhAda djlJ7bT6OYWh32FLTchoIRrtLYxtT8Gdx0leml9BqHHyBuN8Wz3fEu01oV+PPZ5EQV Rgu+6oHXOQEXqQLr5mgVOqb1QBbU3hFQJrSVTAHA= Message-ID: <53A91501.3040204@infracaninophile.co.uk> Date: Tue, 24 Jun 2014 07:04:49 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: can't find any reference to 'env ASSUME_ALWAYS_YES=YES' for pkg References: <53A9108F.5050406@aim.com> In-Reply-To: <53A9108F.5050406@aim.com> X-Enigmail-Version: 1.6 OpenPGP: id=E7F39EBF Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="rkoreJIC6Tlg5jPgnvXhNoS4QoDRxPWgo" X-Virus-Scanned: clamav-milter 0.98.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 06:05:03 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --rkoreJIC6Tlg5jPgnvXhNoS4QoDRxPWgo Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 24/06/2014 06:45, Lampros Chaidas via freebsd-doc wrote: > Now the issue I have is that I could not find a reference to 'env > ASSUME_ALWAYS_YES' in either the handbook > (http://www.freebsd.org/doc/handbook/pkgng-intro.html) or in the man pa= ges: > http://www.freebsd.org/cgi/man.cgi?query=3Dpkg&sektion=3D7 >=20 > My questions are: > 1. Is there another way of doing this? > 2. If not, can a reference/note be added in one of the above mentioned > pages ? I think this is a pretty important piece of information to be > left out. This is covered in the pkg.conf(5) man page. Any setting you might use in /usr/local/etc/pkg.conf can instead be made by setting the equivalent environment variable. However, we could do with adding some examples around automating 'pkg bootstrap' Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey JID: matthew@infracaninophile.co.uk --rkoreJIC6Tlg5jPgnvXhNoS4QoDRxPWgo Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTqRUIXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATwBYQAKIEGbsZHTiu7w8id1Rd5RLa dzYM4XWcLfpDHwirW+3ksSuoC2r4mDYTdXYo0DwZwu/VqmPLdBVW3UCciIwuBpNN 46LvlbyQfqQpM9rJxOFKK8m2OFsDuyhAWFoTteOoyM4lfi+I8fP+2TcUfUGxuu5u 5I0a296ZQP9EgDPhlJjJL7pWNfJ8UvNIxb3wztSlWqYfATqcYwJFRPoKfUEZ4QIs PO4f4lVXNBOUTKwk+ISrOcJYZs/4wUcBss4/dqrXrT0XRabtN6qFr5DMLVFP5NFZ Ak7Oq2NjnrPsUd+iY2sr6ONRqfOIQ3AArLhwJB6zPHwrvCRpQKWSAur0AjHctTwI OYtmG9twI2VtJuOaPtQ+JNuzYLPUqnGIO7lcMz2k7w+zqhyO5aw5QqeqW6EgkfgI mjdTXVFo+VZuXNA4rCHws7omO4c4yZo+ABHaYyxSAsQwPSXvKGQ/Trbc2TNhGO/y Mpjw0WIGIQEb4HlIGP5uucVFq/WSp7NpURmkhj1AnCUFQfh/L2t8V1KAfF8ys1vX FVQBMw80v1xaeiDlsp/J6z4vAHjwrlNGh6ZDLq/a7rTovs0KL5LCFlL0CoOZJMsR 9iDE3q6RJrN7cf0PJ47iIvGacmq+C1krahuFKeXFWVuDjEJVV4c++DIM9x8bT1r0 3x4ikyRVWXrjpQixZfFD =4Fj8 -----END PGP SIGNATURE----- --rkoreJIC6Tlg5jPgnvXhNoS4QoDRxPWgo-- From owner-freebsd-doc@FreeBSD.ORG Tue Jun 24 07:02:49 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F6D148C; Tue, 24 Jun 2014 07:02:49 +0000 (UTC) Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [IPv6:2a01:e0c:1:1599::11]) (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 4F49B2613; Tue, 24 Jun 2014 07:02:49 +0000 (UTC) Received: from emphyrio.blackend.org (unknown [88.179.1.53]) by smtp2-g21.free.fr (Postfix) with ESMTP id 31AB64B0002; Tue, 24 Jun 2014 09:02:38 +0200 (CEST) Received: from emphyrio.blackend.org (localhost [127.0.0.1]) by emphyrio.blackend.org (8.14.7/8.14.7) with ESMTP id s5O72bru001831; Tue, 24 Jun 2014 09:02:37 +0200 (CEST) (envelope-from marc@emphyrio.blackend.org) Received: (from marc@localhost) by emphyrio.blackend.org (8.14.7/8.14.7/Submit) id s5O72YcD001830; Tue, 24 Jun 2014 09:02:34 +0200 (CEST) (envelope-from marc) Date: Tue, 24 Jun 2014 09:02:33 +0200 From: Marc Fonvieille To: freebsd-doc@FreeBSD.org, doceng@FreeBSD.org, re@FreeBSD.org Subject: Re: HEADS UP: doc/ slush for 9.3R begins Message-ID: <20140624070233.GA1796@emphyrio.blackend.org> Mail-Followup-To: freebsd-doc@FreeBSD.org, doceng@FreeBSD.org, re@FreeBSD.org References: <20140613115109.GA2138@emphyrio.blackend.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qMm9M+Fa2AknHoGS" Content-Disposition: inline In-Reply-To: <20140613115109.GA2138@emphyrio.blackend.org> X-Useless-Header: blackend.org X-Operating-System: FreeBSD 9.2-RELEASE-p3 User-Agent: Mutt/1.5.22 (2013-10-16) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 07:02:49 -0000 --qMm9M+Fa2AknHoGS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jun 13, 2014 at 01:51:09PM +0200, Marc Fonvieille wrote: > Hello, >=20 > As announced, the doc tree is now in a slush. Please postpone all > non-essential changes until after the doc tree is tagged (currently > scheduled for 23 June, 2014). >=20 > Please note that the slush does not apply to /htdocs documents. >=20 > While this is not a real freeze, if you need to commit a relatively > large change to fix or improve our documentation for 9.3-RELEASE, > please put a note for translators onto your commit log. > The doc tree has been tagged for 9.3-RELEASE. If you noticed a problem or have a change which must be included in the release, please let me know. You can consider the doc tree is open for commits now, but any sweeping changes should be postponed until after the release day. Thank you for your cooperation and keep up the good work! --=20 Marc --qMm9M+Fa2AknHoGS Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iD8DBQFTqSKIzQ9RwE+OdOgRArZrAKCW0w0xpPH02ia9xzFZXeVouZkzaQCeLgCv +Ul6fSOKfpVd3zpWJaUQKK4= =R0GM -----END PGP SIGNATURE----- --qMm9M+Fa2AknHoGS-- From owner-freebsd-doc@FreeBSD.ORG Tue Jun 24 11:20:46 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF088A23 for ; Tue, 24 Jun 2014 11:20:45 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB2D52D99 for ; Tue, 24 Jun 2014 11:20:45 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s5OBKjHE031322 for ; Tue, 24 Jun 2014 11:20:45 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s5OBKjjx031320 for freebsd-doc@FreeBSD.org; Tue, 24 Jun 2014 11:20:45 GMT (envelope-from www-data) Date: Tue, 24 Jun 2014 11:20:45 GMT From: User Www-data Message-Id: <201406241120.s5OBKjjx031320@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 11:20:46 -0000 env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/articles/pam/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" http://www.FreeBSD.org/XML/share/xml/freebsd-xhtml-chunk.xsl article.parsed.xml Writing pam-legalnotice.html for legalnotice(pam-legalnotice) Writing trademarks.html for legalnotice(trademarks) Writing pam-terms.html for section(pam-terms) Writing pam-essentials.html for section(pam-essentials) Writing pam-config.html for section(pam-config) Writing pam-freebsd-modules.html for section(pam-freebsd-modules) Writing pam-appl-prog.html for section(pam-appl-prog) Writing pam-module-prog.html for section(pam-module-prog) Writing pam-sample-appl.html for appendix(pam-sample-appl) Writing pam-sample-module.html for appendix(pam-sample-module) Writing pam-sample-conv.html for appendix(pam-sample-conv) Writing pam-further.html for bibliography(pam-further) Writing index.html for article Writing HTML.manifest env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/articles/pam/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" http://www.FreeBSD.org/XML/share/xml/freebsd-xhtml.xsl article.parsed.xml > article.html ===> doc/articles/pgpkeys (all) env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/articles/pgpkeys/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude /home/www/build/head/en_US.ISO8859-1/articles/pgpkeys/article.xml > article.parsed.xml.tmp warning: failed to load external entity "/home/www/build/head/share/pgpkeys/kadesai.key" /home/www/build/head/share/pgpkeys/pgpkeys-developers.xml:1301: parser error : Failure to process entity pgpkey.kadesai &pgpkey.kadesai; ^ /home/www/build/head/share/pgpkeys/pgpkeys-developers.xml:1301: parser error : Entity 'pgpkey.kadesai' not defined &pgpkey.kadesai; ^ /home/www/build/head/share/pgpkeys/pgpkeys-developers.xml:2148: parser error : chunk is not well balanced ^ /home/www/build/head/en_US.ISO8859-1/articles/pgpkeys/article.xml:53: parser error : Failure to process entity section.pgpkeys-developers §ion.pgpkeys-developers; ^ /home/www/build/head/en_US.ISO8859-1/articles/pgpkeys/article.xml:53: parser error : Entity 'section.pgpkeys-developers' not defined §ion.pgpkeys-developers; ^ *** [article.parsed.xml] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/articles/pgpkeys. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/articles. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1. *** [all-all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/doc. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 41.52 real 33.32 user 8.05 sys From owner-freebsd-doc@FreeBSD.ORG Tue Jun 24 16:38:10 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E6B2C00 for ; Tue, 24 Jun 2014 16:38:10 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id E1EEE2EBA for ; Tue, 24 Jun 2014 16:38:09 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s5OGc8q7086229 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Tue, 24 Jun 2014 10:38:08 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s5OGc84P086226 for ; Tue, 24 Jun 2014 10:38:08 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Tue, 24 Jun 2014 10:38:08 -0600 (MDT) From: Warren Block To: freebsd-doc@FreeBSD.org Subject: appearance in HTML Message-ID: User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Tue, 24 Jun 2014 10:38:08 -0600 (MDT) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 16:38:10 -0000 The current CSS makes elements appear in bold text in XHTML. For example: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/desktop-browsers.html This repeated use of bold makes for uncomfortable and fatiguing reading. Allan and I have searched for less severe forms of highlighting. Without resorting to color, there are not many options. The best I've seen so far is font-variant: small-caps;, but that is quickly annoying also. My suggestion at this point is to just remove the CSS entry for applications. The application names are names, and recognizably distinct from other words on their own. Unless there are complaints, I will plan to remove the .application entry from docbook.css before the end of this week. From owner-freebsd-doc@FreeBSD.ORG Tue Jun 24 19:02:06 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85CD14CB for ; Tue, 24 Jun 2014 19:02:06 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6DF602D34 for ; Tue, 24 Jun 2014 19:02:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5OJ26jf041222 for ; Tue, 24 Jun 2014 20:02:06 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191346] New: strftime manpage error Date: Tue, 24 Jun 2014 19:02:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 19:02:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191346 Bug ID: 191346 Summary: strftime manpage error Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: yaneurabeya@gmail.com # uname -a FreeBSD freebsd-10-x64.localdomain 10.0-STABLE FreeBSD 10.0-STABLE #0 7905925(stable/10): Wed Jun 11 14:10:17 PDT 2014 root@freebsd-x86.localdomain:/usr/obj/usr/src/sys/GENERIC-WITHOUT-WITNESS amd64 # man strftime >/dev/null Usage: .%C city_name ... (#251) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jun 24 19:13:25 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6D30623D for ; Tue, 24 Jun 2014 19:13:25 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 547192E4F for ; Tue, 24 Jun 2014 19:13:25 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5OJDP8Z090090 for ; Tue, 24 Jun 2014 20:13:25 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191346] strftime manpage error Date: Tue, 24 Jun 2014 19:13:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 19:13:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191346 Glen Barber changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Issue Resolved CC| |gjb@FreeBSD.org Resolution|--- |DUPLICATE --- Comment #1 from Glen Barber --- *** This bug has been marked as a duplicate of bug 191131 *** -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jun 24 20:27:53 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 837C9448 for ; Tue, 24 Jun 2014 20:27:53 +0000 (UTC) Received: from server.mypc.hu (server.mypc.hu [87.229.73.95]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "mail.t-hosting.hu", Issuer "mail.t-hosting.hu" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3A21B29D4 for ; Tue, 24 Jun 2014 20:27:53 +0000 (UTC) Received: from server.mypc.hu (localhost [127.0.0.1]) by server.mypc.hu (Postfix) with ESMTP id 4043014D2560 for ; Tue, 24 Jun 2014 22:18:09 +0200 (CEST) X-Virus-Scanned: amavisd-new at !change-mydomain-variable!.example.com Received: from server.mypc.hu ([127.0.0.1]) by server.mypc.hu (server.mypc.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id QZqqzpRqlLU8 for ; Tue, 24 Jun 2014 22:18:08 +0200 (CEST) Received: from [62.87.42.170] (62-87-42-170.red-acceso.airtel.net [62.87.42.170]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by server.mypc.hu (Postfix) with ESMTPSA id 4EE2614D2543 for ; Tue, 24 Jun 2014 22:18:08 +0200 (CEST) Message-ID: <53A9DCF7.8040103@kovesdan.org> Date: Tue, 24 Jun 2014 22:17:59 +0200 From: =?ISO-8859-1?Q?G=E1bor_K=F6vesd=E1n?= User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: appearance in HTML References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 20:27:53 -0000 On 2014.06.24. 18:38, Warren Block wrote: > The current CSS makes elements appear in bold text in > XHTML. For example: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/desktop-browsers.html > > > This repeated use of bold makes for uncomfortable and fatiguing reading. > > Allan and I have searched for less severe forms of highlighting. > Without resorting to color, there are not many options. The best I've > seen so far is font-variant: small-caps;, but that is quickly annoying > also. > > My suggestion at this point is to just remove the CSS entry for > applications. The application names are names, and recognizably > distinct from other words on their own. > > Unless there are complaints, I will plan to remove the .application > entry from docbook.css before the end of this week. I'd try italic or just remove formatting as you suggested. Italic is good for emphasis, it is not that disturbing as bold. I'd avoid small caps because such a use is quite uncommon. Gabor From owner-freebsd-doc@FreeBSD.ORG Tue Jun 24 23:39:42 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1347A8F6 for ; Tue, 24 Jun 2014 23:39:42 +0000 (UTC) Received: from mail-qc0-x22b.google.com (mail-qc0-x22b.google.com [IPv6:2607:f8b0:400d:c01::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C30BA2C96 for ; Tue, 24 Jun 2014 23:39:41 +0000 (UTC) Received: by mail-qc0-f171.google.com with SMTP id w7so1014942qcr.2 for ; Tue, 24 Jun 2014 16:39:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=j63giNdn2wg36W9lCEJ1r92zxNY9HUOm0MKnh/CNvwk=; b=XSDrsR1Pv2BveGU7pLKXDElBk8WVw4ZTQHQXkfm0wy2fXmZHmjGHfD0Fx8XFiVETlB TdVYhzhDXykZMnyZYgRwBcgbE48/oYT/Xr4fHL8C5cg8yp+BGoXA7Po6AgnkIpK490Wm T0x6D70rU59dNIaegeEl70UO3YYq38W01Taag= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type:content-transfer-encoding; bh=j63giNdn2wg36W9lCEJ1r92zxNY9HUOm0MKnh/CNvwk=; b=YI+ViJ8EBGYmpQrOQnidMCGairPLDkeQZutU35FuCKhMYjdQwVo5Kz52KVo1R7GEHn G0M5XdqKlp0D6AzTZ7W65ecez2uXYFp0o6dQvVYuy3BDmSsISdmP34Ep96qZ4vc9e76T nQj6xP8rGrgzkcrzT49wVXWgdShANkRhVrpVkILArnhHAvZzvpwdrvxfTRkZj7XPVIRd tU5ZdTkXFk1J10NO7qzPaqX1tXaFYn3m8VOcUIeB40tQp+xjJr7hAF3HLhzDbOnAGYBC fN/K0fnyROIpVxKMqFlQX/tgoXUjPhqogGjMMzGwBNtw3PE2ILxdH081ZcyQPKEt50k0 Xtbw== X-Gm-Message-State: ALoCoQnklQqCY77dZn9lDded6vogLM0zFahFmHLJ8Ftc93guo0UBDE+yBSa9fb1Wguu/+FSc3S77 X-Received: by 10.140.104.225 with SMTP id a88mr6044976qgf.91.1403653180826; Tue, 24 Jun 2014 16:39:40 -0700 (PDT) MIME-Version: 1.0 Received: by 10.96.222.131 with HTTP; Tue, 24 Jun 2014 16:39:10 -0700 (PDT) In-Reply-To: <53A9DCF7.8040103@kovesdan.org> References: <53A9DCF7.8040103@kovesdan.org> From: Eitan Adler Date: Tue, 24 Jun 2014 16:39:10 -0700 Message-ID: Subject: Re: appearance in HTML To: =?UTF-8?B?R8OhYm9yIEvDtnZlc2TDoW4=?= Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 23:39:42 -0000 On 24 June 2014 13:17, G=C3=A1bor K=C3=B6vesd=C3=A1n w= rote: > On 2014.06.24. 18:38, Warren Block wrote: >> >> The current CSS makes elements appear in bold text in XHTM= L. >> For example: >> >> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/desktop-browse= rs.html >> >> This repeated use of bold makes for uncomfortable and fatiguing reading. >> >> Allan and I have searched for less severe forms of highlighting. Without >> resorting to color, there are not many options. The best I've seen so f= ar >> is font-variant: small-caps;, but that is quickly annoying also. >> >> My suggestion at this point is to just remove the CSS entry for >> applications. The application names are names, and recognizably distinc= t >> from other words on their own. >> >> Unless there are complaints, I will plan to remove the .application entr= y >> from docbook.css before the end of this week. > > I'd try italic or just remove formatting as you suggested. Italic is good > for emphasis, it is not that disturbing as bold. I'd avoid small caps > because such a use is quite uncommon. I'd eliminate the formatting. There is not much value gained by calling out the name of the application repeatedly. --=20 Eitan Adler From owner-freebsd-doc@FreeBSD.ORG Wed Jun 25 00:44:47 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3769181C for ; Wed, 25 Jun 2014 00:44:47 +0000 (UTC) Received: from alogt.com (alogt.com [69.36.191.58]) (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 0F4CF21FC for ; Wed, 25 Jun 2014 00:44:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=alogt.com; s=default; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=nSiKTTT4wqYohmiocjWQaK6IVeNFMxdqoNpiWjEzwl4=; b=IMY6sy7SqvuHBx/YCQbOdgtVEKLuh6mF3PVfk/ubzF3rYjXg0AJ1A1gHajzjuvrVuGr4NqnLqszm313AdejbSLqMeh5h7Ix3mgOaprODIyymg8rgrWEavGvE69trEvWtBc1+AiyT6BEe/fcnzYtXLDev8Yv6Z5nNmtxVGeV+QS8=; Received: from [182.9.167.108] (port=44161 helo=X220.alogt.com) by sl-508-2.slc.westdc.net with esmtpsa (SSLv3:DHE-RSA-AES128-SHA:128) (Exim 4.82) (envelope-from ) id 1WzbKI-0005cZ-5r; Tue, 24 Jun 2014 18:44:38 -0600 Date: Wed, 25 Jun 2014 08:44:33 +0800 From: Erich Dollansky To: Warren Block Subject: Re: appearance in HTML Message-ID: <20140625084433.4fa7e1bb@X220.alogt.com> In-Reply-To: References: X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.22; amd64-portbld-freebsd10.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sl-508-2.slc.westdc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - alogt.com X-Get-Message-Sender-Via: sl-508-2.slc.westdc.net: authenticated_id: erichsfreebsdlist@alogt.com X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 00:44:47 -0000 Hi, On Tue, 24 Jun 2014 10:38:08 -0600 (MDT) Warren Block wrote: > The current CSS makes elements appear in bold text in > XHTML. For example: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/desktop-browsers.html > > This repeated use of bold makes for uncomfortable and fatiguing > reading. > > Allan and I have searched for less severe forms of highlighting. > Without resorting to color, there are not many options. The best > I've seen so far is font-variant: small-caps;, but that is quickly > annoying also. > > My suggestion at this point is to just remove the CSS entry for > applications. The application names are names, and recognizably > distinct from other words on their own. > > Unless there are complaints, I will plan to remove the .application > entry from docbook.css before the end of this week. I would keep it and I would keep it as bold. I would only recommend a consequent use of it. Using bold helps to find important locations a bit faster without reading the whole sentence. The example is a bit confusing as the highlighting is randomly used for trademarks like Java and Adobe. While Flash is the application, Adobe is the manufacturer's trademark. The moment the highlighting will only be used for the application and not for the manufacturer, it will be very helpful for the reader. Erich From owner-freebsd-doc@FreeBSD.ORG Wed Jun 25 02:38:08 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6FE3F80 for ; Wed, 25 Jun 2014 02:38:08 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9D1EB2BDB for ; Wed, 25 Jun 2014 02:38:08 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5P2c8QD094877 for ; Wed, 25 Jun 2014 03:38:08 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191262] [handbook]=?UTF-8?Q?=20Add=20note=20to=207=2E2=2E1=2E2=2E=20Firefox=20and=20Adobe=C2=AE=20Flash=C2=AE=20Plugin=20documentation?= Date: Wed, 25 Jun 2014 02:38:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 02:38:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191262 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add note to 7.2.1.2. |[handbook] Add note to |Firefox and Adobe=C2=AE Flash=C2=AE |7.2.1.2. Firefox= and Adobe=C2=AE |Plugin documentation |Flash=C2=AE Plugin documen= tation --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@FreeBSD.ORG Wed Jun 25 21:25:56 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8125D132 for ; Wed, 25 Jun 2014 21:25:56 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 697FA2740 for ; Wed, 25 Jun 2014 21:25:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5PLPuMY066057 for ; Wed, 25 Jun 2014 22:25:56 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191382] New: EINVAL not documented in connect(2) Date: Wed, 25 Jun 2014 21:25:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 21:25:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191382 Bug ID: 191382 Summary: EINVAL not documented in connect(2) Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: yaneurabeya@gmail.com OpenGroup mentions EINVAL in connect(2) and FreeBSD appears to enforce this requirement, but it's not mentioned in the manpage. From the OpenGroup website: [EINVAL] The address_len argument is not a valid length for the address family; or invalid address family in the sockaddr structure. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 26 08:24:05 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84B50BE9 for ; Thu, 26 Jun 2014 08:24:05 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6CE312CB6 for ; Thu, 26 Jun 2014 08:24:05 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5Q8O5Be029311 for ; Thu, 26 Jun 2014 09:24:05 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191382] EINVAL not documented in connect(2) Date: Thu, 26 Jun 2014 08:24:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pluknet@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pluknet@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2014 08:24:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191382 Sergey Kandaurov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pluknet@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |pluknet@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 26 13:14:50 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A791AD22 for ; Thu, 26 Jun 2014 13:14:50 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9094127C9 for ; Thu, 26 Jun 2014 13:14:50 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5QDEow3094675 for ; Thu, 26 Jun 2014 14:14:50 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191407] New: Update listing on consult.html Date: Thu, 26 Jun 2014 13:14:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: info@venture37.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2014 13:14:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191407 Bug ID: 191407 Summary: Update listing on consult.html Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Website Assignee: freebsd-doc@FreeBSD.org Reporter: info@venture37.com -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 26 13:15:28 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00399DA1 for ; Thu, 26 Jun 2014 13:15:27 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DD35C27DA for ; Thu, 26 Jun 2014 13:15:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5QDFRjc000191 for ; Thu, 26 Jun 2014 14:15:27 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191407] Update listing on consult.html Date: Thu, 26 Jun 2014 13:15:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: info@venture37.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2014 13:15:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191407 --- Comment #1 from info@venture37.com --- Created attachment 144159 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144159&action=edit consult.html diff -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jun 26 14:47:10 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9060EFAD for ; Thu, 26 Jun 2014 14:47:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78AE32182 for ; Thu, 26 Jun 2014 14:47:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5QElAOa039653 for ; Thu, 26 Jun 2014 15:47:10 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191407] Update listing on consult.html Date: Thu, 26 Jun 2014 14:47:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: allanjude@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: allanjude@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2014 14:47:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191407 Allan Jude changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Open CC| |allanjude@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |allanjude@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 30 03:39:58 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DED4ADCB for ; Mon, 30 Jun 2014 03:39:58 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 8A5142520 for ; Mon, 30 Jun 2014 03:39:58 +0000 (UTC) Received: from lightning.wonkity.com (lightning.wonkity.com [10.0.0.8]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s5U3dmFS063245 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Sun, 29 Jun 2014 21:39:48 -0600 (MDT) (envelope-from wblock@lightning.wonkity.com) Received: from lightning.wonkity.com (localhost [127.0.0.1]) by lightning.wonkity.com (8.14.9/8.14.9) with ESMTP id s5U3dmXq020673 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 29 Jun 2014 21:39:48 -0600 (MDT) (envelope-from wblock@lightning.wonkity.com) Received: from localhost (wblock@localhost) by lightning.wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s5U3dlxQ020666; Sun, 29 Jun 2014 21:39:47 -0600 (MDT) (envelope-from wblock@lightning.wonkity.com) Date: Sun, 29 Jun 2014 21:39:47 -0600 (MDT) From: Warren Block To: freebsd-doc@freebsd.org Subject: Re: appearance in HTML Message-ID: User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [10.0.0.1]); Sun, 29 Jun 2014 21:39:48 -0600 (MDT) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2014 03:39:58 -0000 Erich Dollansky wrote: > I would keep it and I would keep it as bold. I would only recommend a > consequent use of it. Using bold helps to find important locations a > bit faster without reading the whole sentence. ... > The moment the highlighting will only be used for the application and > not for the manufacturer, it will be very helpful for the reader. Sorry, I missed this message until posting the link to the thread in the commit message. A problem with highlighting in general is that too much of it hides detail. Some sections of our documents look like "poison pen" letters due to all the highlighting. For now, let's try letting application names just be pointed out by capital letters. If that does not work, we can try something else. From owner-freebsd-doc@FreeBSD.ORG Mon Jun 30 04:46:20 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E9D6D7 for ; Mon, 30 Jun 2014 04:46:20 +0000 (UTC) Received: from alogt.com (alogt.com [69.36.191.58]) (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 D44902A46 for ; Mon, 30 Jun 2014 04:46:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=alogt.com; s=default; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=SdyBkpn2TuKdGPtZDS538ABEEMNttROF2knGAcP/0Yg=; b=mgAW2e91wHxjdeB7noFuiix+1FhU/a2kn4LWvM9G2RHYRyB5mC/GJo++J6Tz3yU94/kID8dPlVYk6wj1KCgMSLyMuOzMLI6rQUJ+qoKhSjyFtm9mwOuH/vIhnX83cb8OtfSuZlb2PT8tFlY/tY1g/DyfmoDM23/ZkfMChsAs5lk=; Received: from [182.0.3.227] (port=65130 helo=X220.alogt.com) by sl-508-2.slc.westdc.net with esmtpsa (SSLv3:DHE-RSA-AES128-SHA:128) (Exim 4.82) (envelope-from ) id 1X1TTo-000YC0-Jh; Sun, 29 Jun 2014 22:46:13 -0600 Date: Mon, 30 Jun 2014 12:46:05 +0800 From: Erich Dollansky To: Warren Block Subject: Re: appearance in HTML Message-ID: <20140630124605.7e08b705@X220.alogt.com> In-Reply-To: References: X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.22; amd64-portbld-freebsd10.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sl-508-2.slc.westdc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - alogt.com X-Get-Message-Sender-Via: sl-508-2.slc.westdc.net: authenticated_id: erichsfreebsdlist@alogt.com X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2014 04:46:20 -0000 Hi Warren, On Sun, 29 Jun 2014 21:39:47 -0600 (MDT) Warren Block wrote: > Erich Dollansky wrote: > > > I would keep it and I would keep it as bold. I would only recommend > > a consequent use of it. Using bold helps to find important > > locations a bit faster without reading the whole sentence. > ... > > The moment the highlighting will only be used for the application > > and not for the manufacturer, it will be very helpful for the > > reader. > > Sorry, I missed this message until posting the link to the thread in > the commit message. > do not worry about this. > A problem with highlighting in general is that too much of it hides > detail. Some sections of our documents look like "poison pen" > letters due to all the highlighting. This is the negative side effect. > > For now, let's try letting application names just be pointed out by > capital letters. If that does not work, we can try something else. We will see the result and the comments soon. Erich From owner-freebsd-doc@FreeBSD.ORG Mon Jun 30 05:20:12 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 500FB6B1 for ; Mon, 30 Jun 2014 05:20:12 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24DC62CB1 for ; Mon, 30 Jun 2014 05:20:12 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s5U5KBQg027450 for ; Mon, 30 Jun 2014 05:20:11 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s5U5KBXD027446 for freebsd-doc@FreeBSD.org; Mon, 30 Jun 2014 05:20:11 GMT (envelope-from www-data) Date: Mon, 30 Jun 2014 05:20:11 GMT From: User Www-data Message-Id: <201406300520.s5U5KBXD027446@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2014 05:20:12 -0000 ===> doc/articles/wp-toolbox (all) ===> doc/books (all) ===> doc/books/arch-handbook (all) ===> doc/books/design-44bsd (all) ===> doc/books/dev-model (all) ===> doc/books/developers-handbook (all) env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/books/developers-handbook/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/book.xml > book.parsed.xml.tmp /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml:632: parser error : Opening and ending tag mismatch: para line 629 and listitem ^ /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml:633: parser error : Opening and ending tag mismatch: listitem line 593 and varlistentry ^ /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml:634: parser error : Opening and ending tag mismatch: varlistentry line 590 and variablelist ^ /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml:1007: parser error : Opening and ending tag mismatch: variablelist line 589 and sect1 ^ /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml:2281: parser error : Opening and ending tag mismatch: sect1 line 328 and chapter ^ /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml:2282: parser error : Premature end of data in tag chapter line 7 ^ /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml:2282: parser error : chunk is not well balanced ^ /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/book.xml:75: parser error : Failure to process entity chap.tools &chap.tools; ^ /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/book.xml:75: parser error : Entity 'chap.tools' not defined &chap.tools; ^ *** [book.parsed.xml] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/books/developers-handbook. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/books. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1. *** [all-all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs/doc. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 7.22 real 3.63 user 3.90 sys From owner-freebsd-doc@FreeBSD.ORG Mon Jun 30 05:47:11 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0949F51B for ; Mon, 30 Jun 2014 05:47:11 +0000 (UTC) Received: from mail-qa0-x235.google.com (mail-qa0-x235.google.com [IPv6:2607:f8b0:400d:c00::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B60CF2EDC for ; Mon, 30 Jun 2014 05:47:10 +0000 (UTC) Received: by mail-qa0-f53.google.com with SMTP id j15so6116059qaq.12 for ; Sun, 29 Jun 2014 22:47:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=saN6rTBLVl3GFftkGNOIbKUxa1Pf1Y0OW8LdKaz+FFE=; b=pBJEwUHAOZBGu+wTuJtSTskVNn3lwqyJXLyCQkB/WcanLV8duL+F83GBoQidtaHKKr geA8An1MdVrs5fBSXAfJqDVDTIw64Qfi62wd5CGQ7nH9hcdmBmGcl76YPWuo4KOBqKGO EtCo56OVnP4ESKY/1lGXWZGxf03lAiBGGRXNQ= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type:content-transfer-encoding; bh=saN6rTBLVl3GFftkGNOIbKUxa1Pf1Y0OW8LdKaz+FFE=; b=I69bhzn+y28r1oZKqFyiqMfV3ICs2LP20IvLe6hU5mDAPyBSBi56zXxl/85S/O+3r7 3WQZpLqXabUDzQ3uaNWTDItpIpAeA2585f5lrQodkBzAZ/0BrpUiV4HT1yopAD74Gkky I35IIFaKtrO0jpBGHSXKngIpE0Lf5ZdTLmTJ1yADTp+F9q6R/ZtnFW0tlk0cay5EJmVy 7FV6cj8962nQZOaOThzVbbuWgcm77aXoyWRApWoTDRG4SNXanT7DBM/J/j+9sYdQoE4n 9Btj9r4ec/0TURPOvsXoEV/tM2WfQZhNRKxUZBiaN9k50BvU7tdRc9x6ZAiDst9TEYiU Sxzg== X-Gm-Message-State: ALoCoQmLr76oO7d0R+QgR3T2f0H0vYy6f16ysz7hpx11kJJ3dPNDPU/hpH9u8GoXc2fKvcrVp4uo X-Received: by 10.140.47.173 with SMTP id m42mr30365357qga.9.1404107229887; Sun, 29 Jun 2014 22:47:09 -0700 (PDT) MIME-Version: 1.0 Received: by 10.96.88.132 with HTTP; Sun, 29 Jun 2014 22:46:39 -0700 (PDT) In-Reply-To: <201406300520.s5U5KBXD027446@build-web.stream.freebsd.org> References: <201406300520.s5U5KBXD027446@build-web.stream.freebsd.org> From: Eitan Adler Date: Sun, 29 Jun 2014 22:46:39 -0700 Message-ID: Subject: Re: FreeBSD web build failed on build-web.stream.freebsd.org To: User Www-data Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2014 05:47:11 -0000 On 29 June 2014 22:20, User Www-data wrote: > =3D=3D=3D> doc/articles/wp-toolbox (all) > =3D=3D=3D> doc/books (all) > =3D=3D=3D> doc/books/arch-handbook (all) > =3D=3D=3D> doc/books/design-44bsd (all) > =3D=3D=3D> doc/books/dev-model (all) > =3D=3D=3D> doc/books/developers-handbook (all) > env XML_CATALOG_FILES=3D"file:///home/www/build/head/en_US.ISO8859-1/book= s/developers-handbook/catalog-cwd.xml file:///home/www/build/head/en_US.IS= O8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalo= g.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///us= r/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid -= -dropdtd --xinclude /home/www/build/head/en_US.ISO8859-1/books/developers-h= andbook/book.xml > book.parsed.xml.tmp > /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/tools/chap= ter.xml:632: parser error : Opening and ending tag mismatch: para line 629 = and listitem > > ^ This is likely my fault, I'll look into it. --=20 Eitan Adler From owner-freebsd-doc@FreeBSD.ORG Mon Jun 30 05:49:25 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A621FF7 for ; Mon, 30 Jun 2014 05:49:25 +0000 (UTC) Received: from mail-qg0-x22b.google.com (mail-qg0-x22b.google.com [IPv6:2607:f8b0:400d:c04::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 062172EFA for ; Mon, 30 Jun 2014 05:49:24 +0000 (UTC) Received: by mail-qg0-f43.google.com with SMTP id z60so1561049qgd.2 for ; Sun, 29 Jun 2014 22:49:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:cc :content-type:content-transfer-encoding; bh=XJauAZjg/a+i11fM2K+F0vwH0DoPLciMPQ97nIDhf8M=; b=ccNSngB8O+SWG9bAtj4BCE4u+9vd39D1JGPHpdaj6SJuUy+JCpZFojibIFdu3kFyXR VYYmz9h6IsN7+gBLnldfxF3IQEEvgww99sf1UiiLRjO25ckPK06PzScfI7cf5DyLyCpE /jtwHPOmRi+uByn0HxHcMpvHmRXL5dMbyNLuc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:cc:content-type:content-transfer-encoding; bh=XJauAZjg/a+i11fM2K+F0vwH0DoPLciMPQ97nIDhf8M=; b=FvQYyti6JZTwnjtk6aRz+TQ2E3U/NFPJSKRI0YnenfMyiRrldgJ1k9Er0DvodGUD6A /3B+eeRiXEj6QsMUDYrKGTInStPvsxsRtV5SWm/aFBtcm1kgC5K/SXw133TBC0yaLJef t5yhbUn776UF3QBxees1yKQxWPi+WvAGaoIgd6AQS6rIqFhsnZukxR1ayrW8e9jH+IBk KWyvntTVzdAL7A72JBUB04+Yv/6iv7kXc6G2Q16hGTU8TG7BH2W0hlgRexj/+VfYeh/z 8SO66QHenhZPzHLgdJRphYzCqDxccLk1K2LoXPNneAm2pDgBbbMJCx+0amLxsyzjWyuz GZag== X-Gm-Message-State: ALoCoQmcX4aJCtKun6XGIToJmxeX72dAGffJVWiuGOdSivjVmCiWCXqVITaj0osHfCz+dZeH2OMc X-Received: by 10.140.87.99 with SMTP id q90mr12369734qgd.43.1404107364168; Sun, 29 Jun 2014 22:49:24 -0700 (PDT) MIME-Version: 1.0 Received: by 10.96.88.132 with HTTP; Sun, 29 Jun 2014 22:48:54 -0700 (PDT) In-Reply-To: References: <201406300520.s5U5KBXD027446@build-web.stream.freebsd.org> From: Eitan Adler Date: Sun, 29 Jun 2014 22:48:54 -0700 Message-ID: Subject: Re: FreeBSD web build failed on build-web.stream.freebsd.org Cc: freebsd-doc@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2014 05:49:25 -0000 On 29 June 2014 22:46, Eitan Adler wrote: > On 29 June 2014 22:20, User Www-data wrote: >> =3D=3D=3D> doc/articles/wp-toolbox (all) >> =3D=3D=3D> doc/books (all) >> =3D=3D=3D> doc/books/arch-handbook (all) >> =3D=3D=3D> doc/books/design-44bsd (all) >> =3D=3D=3D> doc/books/dev-model (all) >> =3D=3D=3D> doc/books/developers-handbook (all) >> env XML_CATALOG_FILES=3D"file:///home/www/build/head/en_US.ISO8859-1/boo= ks/developers-handbook/catalog-cwd.xml file:///home/www/build/head/en_US.I= SO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catal= og.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///u= sr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid = --dropdtd --xinclude /home/www/build/head/en_US.ISO8859-1/books/developers-= handbook/book.xml > book.parsed.xml.tmp >> /home/www/build/head/en_US.ISO8859-1/books/developers-handbook/tools/cha= pter.xml:632: parser error : Opening and ending tag mismatch: para line 629= and listitem >> >> ^ > > This is likely my fault, I'll look into it. Fixed! --=20 Eitan Adler From owner-freebsd-doc@FreeBSD.ORG Tue Jul 1 07:56:38 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F6A9F76 for ; Tue, 1 Jul 2014 07:56:38 +0000 (UTC) Received: from mail-qc0-x235.google.com (mail-qc0-x235.google.com [IPv6:2607:f8b0:400d:c01::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F3F962119 for ; Tue, 1 Jul 2014 07:56:37 +0000 (UTC) Received: by mail-qc0-f181.google.com with SMTP id x13so7975847qcv.40 for ; Tue, 01 Jul 2014 00:56:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:from:date:message-id:subject:to:content-type; bh=mSdSNHpQMKHzWd9UTlvy2bi/TtimZSa8q4La2QgUtlo=; b=TznAdVLyYNX6DnWoLfBdNAqXuz9O6LO17BWGYN12qaCFJfIgrl8PC7DsaOOUHGXJHr GHWIq7eQtxBXkWk9TuknAQUdbbQk7TDHgwsdaJ7uSQE2lDQjDAH5ZNZ2TJQbCtwUgyhp Ki4SA+Si8F4012ey6+ynXELRkIIl2FEtw1eCc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-type; bh=mSdSNHpQMKHzWd9UTlvy2bi/TtimZSa8q4La2QgUtlo=; b=TWWdnTWhiLBjVfjTk5sUEuxVPPHJZyBbkUgKKk/QalRr7Epywi6wOePebZoBFA+Vj8 59cv/5xysMvkj3cP1Qm+Xbmb35OFfIN08VMwTOku3ytYDsRYSphI7p3DOPTZJMT04EeX kejBu8K56FuTMqnPDkfLysTX97SJdAZhNitKZ0MDhG63ZcZe9zekBn9obbVTcmlXxSFu Hr06kumpers/vRoKqDWBey3Lh1HWout7lz33J7K/yYzxPNX639XDxONvX+PRHXP7DK6u BWtiRtQwV+YnDdnLw6A9Vy1oBVUDvDrjjkEEBn9oe597S0+SEy4TrlGY4Y+R0NF5GUFs gjNA== X-Gm-Message-State: ALoCoQlOfYuPzlANLd/wxmnsPGzbFGZkKc3lpe5h+fHsHW29eEuORjNtCpAJuFtJNUm/WBNM88xi X-Received: by 10.140.101.115 with SMTP id t106mr12333696qge.91.1404201396929; Tue, 01 Jul 2014 00:56:36 -0700 (PDT) MIME-Version: 1.0 Received: by 10.96.88.132 with HTTP; Tue, 1 Jul 2014 00:56:06 -0700 (PDT) From: Eitan Adler Date: Tue, 1 Jul 2014 00:56:06 -0700 Message-ID: Subject: Bad Example Formatting? To: doc@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jul 2014 07:56:38 -0000 Is there a way to signify good example code and bad example code? For example the latter has a light red background, and clearly says "don't do this" while the former has a light green background with a big checkmark? -- Eitan Adler From owner-freebsd-doc@FreeBSD.ORG Tue Jul 1 13:13:18 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16F5FD5E for ; Tue, 1 Jul 2014 13:13:18 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id BA4372FC7 for ; Tue, 1 Jul 2014 13:13:17 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s61DD8HZ077046 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 1 Jul 2014 07:13:08 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s61DD8EO077041; Tue, 1 Jul 2014 07:13:08 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Tue, 1 Jul 2014 07:13:08 -0600 (MDT) From: Warren Block To: Eitan Adler Subject: Re: Bad Example Formatting? In-Reply-To: Message-ID: References: User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Tue, 01 Jul 2014 07:13:08 -0600 (MDT) Cc: doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jul 2014 13:13:18 -0000 On Tue, 1 Jul 2014, Eitan Adler wrote: > Is there a way to signify good example code and bad example code? > > For example the latter has a light red background, and clearly says > "don't do this" while the former has a light green background with a > big checkmark? I don't know if we have a way to do that short of putting it in a or , but I have learned that it's a mistake to show bad examples at all. Way too many people only look at the examples and do not read the explanatory text. Seemingly all of them. Given that, my preference would be to have the text explain what to avoid (and why), the right way to do it, and then show the right way: Do not set permissions to 777! Use only the minimum value necessary. Only the read and execute permissions for the file owner are needed here: &prompt.root; chmod 600 example.sh If an example of the wrong way is shown, explaining why it is wrong is usually needed. But the explanation can make it even more of a distraction. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 1 17:26:37 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBE1B267 for ; Tue, 1 Jul 2014 17:26:37 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B3DFD29AF for ; Tue, 1 Jul 2014 17:26:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s61HQb6p030016 for ; Tue, 1 Jul 2014 18:26:37 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191534] New: gpart(8) Synopsis does not show 'list' command Date: Tue, 01 Jul 2014 17:26:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: mikej@mikej.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jul 2014 17:26:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191534 Bug ID: 191534 Summary: gpart(8) Synopsis does not show 'list' command Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: mikej@mikej.com As of r266587M, gpart(8) does not show the 'list' command in the synopsis although it is documented under description "show". I suggest it being added to the synopsis for clarity. Regards, -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 1 18:52:48 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F39FA2D3 for ; Tue, 1 Jul 2014 18:52:47 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBD26225E for ; Tue, 1 Jul 2014 18:52:47 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s61IqlLQ021335 for ; Tue, 1 Jul 2014 19:52:47 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191534] gpart(8) Synopsis does not show 'list' command Date: Tue, 01 Jul 2014 18:52:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: wblock@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: wblock@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jul 2014 18:52:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191534 Warren Block changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wblock@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |wblock@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 1 22:29:43 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FE3624B for ; Tue, 1 Jul 2014 22:29:43 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 781FB2608 for ; Tue, 1 Jul 2014 22:29:43 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s61MTh3G069041 for ; Tue, 1 Jul 2014 23:29:43 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191541] New: Typo in Handbook 4.2 Date: Tue, 01 Jul 2014 22:29:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: cs@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jul 2014 22:29:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191541 Bug ID: 191541 Summary: Typo in Handbook 4.2 Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: cs@FreeBSD.org One paragraph in 4.2 of the Handbook says: When switching from one console to the next, FreeBSD takes manages the screen output. The result is an illusion of having multiple virtual screens and keyboards that can be used to type commands for FreeBSD to run. The programs that are launched in one virtual console do not stop running when the user switches to a different virtual console. "FreeBSD takes manages" is wrong. Please remove "takes" -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 00:22:28 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A81ADB2 for ; Wed, 2 Jul 2014 00:22:28 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF5852084 for ; Wed, 2 Jul 2014 00:22:27 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s620MREO077724 for ; Wed, 2 Jul 2014 00:22:27 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s620MRBQ077722 for freebsd-doc@FreeBSD.org; Wed, 2 Jul 2014 00:22:27 GMT (envelope-from www-data) Date: Wed, 2 Jul 2014 00:22:27 GMT From: User Www-data Message-Id: <201407020022.s620MRBQ077722@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 00:22:28 -0000 cd /home/www/build/head/de_DE.ISO8859-1/htdocs/ports; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ -f /home/www/build/head/de_DE.ISO8859-1/htdocs/ports/Makefile.inc0 all cd growth; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ all cd /home/www/build/head/de_DE.ISO8859-1/htdocs/ports/growth/../../../../share/tools/portsgrowth; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ DIRPRFX=../../de_DE.ISO8859-1/htdocs/ports/ all ===> ../../de_DE.ISO8859-1/htdocs/doc ===> ../../de_DE.ISO8859-1/htdocs/doc/articles (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/contributing (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/contributing-ports (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/explaining-bsd (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/freebsd-update-server (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/laptop (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/linux-comparison (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/nanobsd (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/new-users (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/port-mentor-guidelines (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/solid-state (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/developers-handbook (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/faq (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/fdp-primer (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/handbook (all) env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.lastmod.inc --param 'target' "'lastmod'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.xml.ftp.inc --param 'type' "'ftp'" --param 'proto' "'ftp'" --param 'target' "'handbook/mirrors/chapter.xml'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.xml.ftp.index.inc --param 'type' "'ftp'" --param 'proto' "'ftp'" --param 'target' "'index'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.xml.cvsup.inc --param 'type' "'cvsup'" --param 'proto' "'cvsup'" --param 'target' "'handbook/mirrors/chapter.xml'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.xml.cvsup.index.inc --param 'type' "'cvsup'" --param 'proto' "'cvsup'" --param 'target' "'index'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o eresources.xml.www.inc --param 'type' "'www'" --param 'proto' "'http'" --param 'target' "'handbook/eresources/chapter.xml'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o eresources.xml.www.index.inc --param 'type' "'www'" --param 'proto' "'http'" --param 'target' "'index'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude /home/www/build/head/de_DE.ISO8859-1/books/handbook/book.xml > book.parsed.xml.tmp /home/www/build/head/de_DE.ISO8859-1/books/handbook/mirrors.xml.cvsup.inc:2: element variablelist: validity error : Element variablelist content does not follow the DTD, expecting (((title | titleabbrev)* , info?) , (itemizedlist | orderedlist | procedure | simplelist | variablelist | segmentedlist | glosslist | bibliolist | calloutlist | qandaset | example | figure | table | equation | informalexample | informalfigure | informaltable | informalequation | sidebar | blockquote | address | epigraph | mediaobject | screenshot | task | productionset | constraintdef | msgset | screen | literallayout | programlistingco | screenco | programlisting | synopsis | bridgehead | remark | revhistory | indexterm | funcsynopsis | classsynopsis | methodsynopsis | constructorsynopsis | destructorsynopsis | fieldsynopsis | cmdsynopsis | caution | important | note | tip | warning | anchor | para | formalpara | simpara | annotation)* , varlistentry+), got ^ *** [book.parsed.xml] Error code 4 Stop in /home/www/build/head/de_DE.ISO8859-1/books/handbook. *** [all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1/books. *** [all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1. *** [all-all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1/htdocs/doc. *** [all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1/htdocs. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 142.60 real 129.76 user 13.43 sys From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 00:26:54 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E070E46; Wed, 2 Jul 2014 00:26:54 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 2EE7520AC; Wed, 2 Jul 2014 00:26:54 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 55F53196; Wed, 2 Jul 2014 00:26:54 +0000 (UTC) Date: Wed, 2 Jul 2014 00:26:54 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@freebsd.org, freebsd-doc@freebsd.org, gavin@FreeBSD.org Message-ID: <1888536697.11.1404260814322.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_DOC #481 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Jenkins-Job: FreeBSD_DOC X-Jenkins-Result: FAILURE X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 00:26:54 -0000 See Changes: [gavin] Since r44073, we no longer publish CVSup mirrors on the web site. = Remove them from the mirror list source. Many thanks to all of the people who have have maintained these systems over the years (sometimes more than 10!). You have helped FreeBSD grow to what it is today, and your contribution is very much appreciated. ------------------------------------------ [...truncated 144 lines...] Writing sound-mp3.html for sect1(sound-mp3) Writing video-playback.html for sect1(video-playback) Writing tvcard.html for sect1(tvcard) Writing mythtv.html for sect1(mythtv) Writing scanners.html for sect1(scanners) Writing multimedia.html for chapter(multimedia) Writing kernelconfig-custom-kernel.html for sect1(kernelconfig-custom-kerne= l) Writing kernelconfig-devices.html for sect1(kernelconfig-devices) Writing kernelconfig-config.html for sect1(kernelconfig-config) Writing kernelconfig-building.html for sect1(kernelconfig-building) Writing kernelconfig-trouble.html for sect1(kernelconfig-trouble) Writing kernelconfig.html for chapter(kernelconfig) Writing printing-connections.html for sect1(printing-connections) Writing printing-pdls.html for sect1(printing-pdls) Writing printing-direct.html for sect1(printing-direct) Writing printing-lpd.html for sect1(printing-lpd) Writing printing-other.html for sect1(printing-other) Writing printing.html for chapter(printing) Writing linuxemu-lbc-install.html for sect1(linuxemu-lbc-install) Writing linuxemu-advanced.html for sect1(linuxemu-advanced) Writing linuxemu.html for chapter(linuxemu) Writing common-tasks.html for part(common-tasks) Writing configtuning-starting-services.html for sect1(configtuning-starting= -services) Writing configtuning-cron.html for sect1(configtuning-cron) Writing configtuning-rcd.html for sect1(configtuning-rcd) Writing config-network-setup.html for sect1(config-network-setup) Writing configtuning-virtual-hosts.html for sect1(configtuning-virtual-host= s) Writing configtuning-syslog.html for sect1(configtuning-syslog) Writing configtuning-configfiles.html for sect1(configtuning-configfiles) Writing configtuning-sysctl.html for sect1(configtuning-sysctl) Writing configtuning-disk.html for sect1(configtuning-disk) Writing configtuning-kernel-limits.html for sect1(configtuning-kernel-limit= s) Writing adding-swap-space.html for sect1(adding-swap-space) Writing acpi-overview.html for sect1(acpi-overview) Writing config-tuning.html for chapter(config-tuning) Writing boot-introduction.html for sect1(boot-introduction) Writing boot-splash.html for sect1(boot-splash) Writing device-hints.html for sect1(device-hints) Writing boot-shutdown.html for sect1(boot-shutdown) Writing boot.html for chapter(boot) Writing security-intro.html for sect1(security-intro) Writing one-time-passwords.html for sect1(one-time-passwords) Writing tcpwrappers.html for sect1(tcpwrappers) Writing kerberos5.html for sect1(kerberos5) Writing openssl.html for sect1(openssl) Writing ipsec.html for sect1(ipsec) Writing openssh.html for sect1(openssh) Writing fs-acl.html for sect1(fs-acl) Writing security-portaudit.html for sect1(security-portaudit) Writing security-advisories.html for sect1(security-advisories) Writing security-accounting.html for sect1(security-accounting) Writing security-resourcelimits.html for sect1(security-resourcelimits) Writing security.html for chapter(security) Writing jails-terms.html for sect1(jails-terms) Writing jails-build.html for sect1(jails-build) Writing jails-tuning.html for sect1(jails-tuning) Writing jails-application.html for sect1(jails-application) Writing jails.html for chapter(jails) Writing mac-inline-glossary.html for sect1(mac-inline-glossary) Writing mac-understandlabel.html for sect1(mac-understandlabel) Writing mac-planning.html for sect1(mac-planning) Writing mac-policies.html for sect1(mac-policies) Writing mac-userlocked.html for sect1(mac-userlocked) Writing mac-implementing.html for sect1(mac-implementing) Writing mac-troubleshoot.html for sect1(mac-troubleshoot) Writing mac.html for chapter(mac) Writing audit-inline-glossary.html for sect1(audit-inline-glossary) Writing audit-config.html for sect1(audit-config) Writing audit-administration.html for sect1(audit-administration) Writing audit.html for chapter(audit) Writing disks-adding.html for sect1(disks-adding) Writing disks-growing.html for sect1(disks-growing) Writing usb-disks.html for sect1(usb-disks) Writing creating-cds.html for sect1(creating-cds) Writing creating-dvds.html for sect1(creating-dvds) Writing floppies.html for sect1(floppies) Writing backup-basics.html for sect1(backup-basics) Writing disks-virtual.html for sect1(disks-virtual) Writing snapshots.html for sect1(snapshots) Writing quotas.html for sect1(quotas) Writing disks-encrypting.html for sect1(disks-encrypting) Writing swap-encrypting.html for sect1(swap-encrypting) Writing disks-hast.html for sect1(disks-hast) Writing disks.html for chapter(disks) Writing geom-striping.html for sect1(geom-striping) Writing geom-mirror.html for sect1(geom-mirror) Writing geom-raid3.html for sect1(geom-raid3) Writing geom-graid.html for sect1(geom-graid) Writing geom-ggate.html for sect1(geom-ggate) Writing geom-glabel.html for sect1(geom-glabel) Writing geom-gjournal.html for sect1(geom-gjournal) Writing geom.html for chapter(geom) Writing filesystems-zfs.html for sect1(filesystems-zfs) Writing filesystems-linux.html for sect1(filesystems-linux) Writing filesystems.html for chapter(filesystems) Writing virtualization-guest.html for sect1(virtualization-guest) Writing virtualization-host-virtualbox.html for sect1(virtualization-host-v= irtualbox) Writing virtualization-host-bhyve.html for sect1(virtualization-host-bhyve) Writing virtualization.html for chapter(virtualization) Writing using-localization.html for sect1(using-localization) Writing l10n-compiling.html for sect1(l10n-compiling) Writing lang-setup.html for sect1(lang-setup) Writing l10n.html for chapter(l10n) Writing updating-upgrading-freebsdupdate.html for sect1(updating-upgrading-= freebsdupdate) Writing updating-upgrading-documentation.html for sect1(updating-upgrading-= documentation) Writing current-stable.html for sect1(current-stable) Writing synching.html for sect1(synching) Writing makeworld.html for sect1(makeworld) Writing small-lan.html for sect1(small-lan) Writing updating-upgrading.html for chapter(updating-upgrading) Writing dtrace-implementation.html for sect1(dtrace-implementation) Writing dtrace-enable.html for sect1(dtrace-enable) Writing dtrace-using.html for sect1(dtrace-using) Writing dtrace.html for chapter(dtrace) Writing system-administration.html for part(system-administration) Writing serial.html for sect1(serial) Writing term.html for sect1(term) Writing dialup.html for sect1(dialup) Writing dialout.html for sect1(dialout) Writing serialconsole-setup.html for sect1(serialconsole-setup) Writing serialcomms.html for chapter(serialcomms) Writing userppp.html for sect1(userppp) Writing ppp-troubleshoot.html for sect1(ppp-troubleshoot) Writing pppoe.html for sect1(pppoe) Writing pppoa.html for sect1(pppoa) Writing ppp-and-slip.html for chapter(ppp-and-slip) Writing mail-using.html for sect1(mail-using) Writing sendmail.html for sect1(sendmail) Writing mail-changingmta.html for sect1(mail-changingmta) Writing mail-trouble.html for sect1(mail-trouble) Writing mail-advanced.html for sect1(mail-advanced) Writing outgoing-only.html for sect1(outgoing-only) Writing SMTP-dialup.html for sect1(SMTP-dialup) Writing SMTP-Auth.html for sect1(SMTP-Auth) Writing mail-agents.html for sect1(mail-agents) Writing mail-fetchmail.html for sect1(mail-fetchmail) Writing mail-procmail.html for sect1(mail-procmail) Writing mail.html for chapter(mail) Writing network-inetd.html for sect1(network-inetd) Writing network-nfs.html for sect1(network-nfs) Writing network-nis.html for sect1(network-nis) Writing network-ldap.html for sect1(network-ldap) Writing network-dhcp.html for sect1(network-dhcp) Writing network-dns.html for sect1(network-dns) Writing network-apache.html for sect1(network-apache) Writing network-ftp.html for sect1(network-ftp) Writing network-samba.html for sect1(network-samba) Writing network-ntp.html for sect1(network-ntp) Writing network-iscsi.html for sect1(network-iscsi) Writing network-servers.html for chapter(network-servers) Writing firewalls-concepts.html for sect1(firewalls-concepts) Writing firewalls-pf.html for sect1(firewalls-pf) Writing firewalls-ipfw.html for sect1(firewalls-ipfw) Writing firewalls-ipf.html for sect1(firewalls-ipf) Writing firewalls.html for chapter(firewalls) Writing network-routing.html for sect1(network-routing) Writing network-wireless.html for sect1(network-wireless) Writing network-usb-tethering.html for sect1(network-usb-tethering) Writing network-bluetooth.html for sect1(network-bluetooth) Writing network-bridging.html for sect1(network-bridging) Writing network-aggregation.html for sect1(network-aggregation) Writing network-diskless.html for sect1(network-diskless) Writing network-ipv6.html for sect1(network-ipv6) Writing carp.html for sect1(carp) Writing advanced-networking.html for chapter(advanced-networking) Writing network-communication.html for part(network-communication) Writing mirrors-ftp.html for sect1(mirrors-ftp) Writing ctm.html for sect1(ctm) Writing svn.html for sect1(svn) Writing mirrors-rsync.html for sect1(mirrors-rsync) Writing mirrors.html for appendix(mirrors) Writing bibliography-userguides.html for sect1(bibliography-userguides) Writing bibliography-adminguides.html for sect1(bibliography-adminguides) Writing bibliography-programmers.html for sect1(bibliography-programmers) Writing bibliography-osinternals.html for sect1(bibliography-osinternals) Writing bibliography-security.html for sect1(bibliography-security) Writing bibliography-hardware.html for sect1(bibliography-hardware) Writing bibliography-history.html for sect1(bibliography-history) Writing bibliography-journals.html for sect1(bibliography-journals) Writing bibliography.html for appendix(bibliography) Writing eresources-news.html for sect1(eresources-news) Writing eresources-web.html for sect1(eresources-web) Writing eresources.html for appendix(eresources) Writing pgpkeys.html for appendix(pgpkeys) Writing appendices.html for part(appendices) Writing freebsd-glossary.html for glossary(freebsd-glossary) Writing ix01.html for index Writing colophon.html for colophon(colophon) Writing index.html for book Writing HTML.manifest =3D=3D=3D> en_US.ISO8859-1/books/pmake (all) =3D=3D=3D> en_US.ISO8859-1/books/porters-handbook (all) =3D=3D=3D> bn_BD.UTF-8 (all) =3D=3D=3D> bn_BD.UTF-8/articles (all) =3D=3D=3D> bn_BD.UTF-8/articles/explaining-bsd (all) =3D=3D=3D> bn_BD.UTF-8/articles/new-users (all) =3D=3D=3D> da_DK.ISO8859-1 (all) =3D=3D=3D> da_DK.ISO8859-1/articles (all) =3D=3D=3D> da_DK.ISO8859-1/articles/ipsec-must (all) =3D=3D=3D> da_DK.ISO8859-1/articles/pxe (all) =3D=3D=3D> de_DE.ISO8859-1 (all) =3D=3D=3D> de_DE.ISO8859-1/articles (all) =3D=3D=3D> de_DE.ISO8859-1/articles/contributing (all) =3D=3D=3D> de_DE.ISO8859-1/articles/contributing-ports (all) =3D=3D=3D> de_DE.ISO8859-1/articles/explaining-bsd (all) =3D=3D=3D> de_DE.ISO8859-1/articles/freebsd-update-server (all) =3D=3D=3D> de_DE.ISO8859-1/articles/laptop (all) =3D=3D=3D> de_DE.ISO8859-1/articles/linux-comparison (all) =3D=3D=3D> de_DE.ISO8859-1/articles/nanobsd (all) =3D=3D=3D> de_DE.ISO8859-1/articles/new-users (all) =3D=3D=3D> de_DE.ISO8859-1/articles/port-mentor-guidelines (all) =3D=3D=3D> de_DE.ISO8859-1/articles/solid-state (all) =3D=3D=3D> de_DE.ISO8859-1/books (all) =3D=3D=3D> de_DE.ISO8859-1/books/developers-handbook (all) =3D=3D=3D> de_DE.ISO8859-1/books/faq (all) =3D=3D=3D> de_DE.ISO8859-1/books/fdp-primer (all) =3D=3D=3D> de_DE.ISO8859-1/books/handbook (all) /bin/mkdir -p env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xsltproc --xinclude --nonet --param 'transtable.xm= l' "' --param 'transtable-target-element' "'countr= y'" --param 'transtable-word-group' "'country'" --param 'transtable-mode'= "'sortkey'" | env -i LANG=3D"de_DE.ISO8= 859-1" /usr/bin/sort -f > env -i /usr/bin/grep "^ > echo "" >> env -i /usr/bin/awk '/@sortkey@/ {sub(/@sortkey@/, ++line); print;}' < >> echo '' >> env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xsltproc --xinclude --nonet -o = --param 'transtable.xml' "' --param 'transtable-t= arget-element' "'country'" --param 'transtable-word-group' "'country'" --= param 'transtable-sortkey.xml' "' /bin/rm -f env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xsltproc --xinclude --nonet -o mirrors.lastmod.inc= --param 'target' "'lastmod'" --param transtable.xml "' env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xsltproc --xinclude --nonet -o mirrors.xml.ftp.inc= --param 'type' "'ftp'" --param 'proto' "'ftp'" --param 'target' "'handbo= ok/mirrors/chapter.xml'" --param transtable.xml "'= env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xsltproc --xinclude --nonet -o mirrors.xml.ftp.ind= ex.inc --param 'type' "'ftp'" --param 'proto' "'ftp'" --param 'target' "'= index'" --param transtable.xml "' env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xsltproc --xinclude --nonet -o mirrors.xml.cvsup.i= nc --param 'type' "'cvsup'" --param 'proto' "'cvsup'" --param 'target' "'= handbook/mirrors/chapter.xml'" --param transtable.xml "' env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xsltproc --xinclude --nonet -o mirrors.xml.cvsup.i= ndex.inc --param 'type' "'cvsup'" --param 'proto' "'cvsup'" --param 'targ= et' "'index'" --param transtable.xml "' env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xsltproc --xinclude --nonet -o eresources.xml.www.= inc --param 'type' "'www'" --param 'proto' "'http'" --param 'target' "'ha= ndbook/eresources/chapter.xml'" --param transtable.xml "' env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xsltproc --xinclude --nonet -o eresources.xml.www.= index.inc --param 'type' "'www'" --param 'proto' "'http'" --param 'target= ' "'index'" --param transtable.xml "' env XML_CATALOG_FILES=3D"file:// file:// file:// file:// file:///usr/local/share/xml/c= atalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude= > book.parsed.xml.tmp :2: element variablelist: validity error = : Element variablelist content does not follow the DTD, expecting (((title = | titleabbrev)* , info?) , (itemizedlist | orderedlist | procedure | simple= list | variablelist | segmentedlist | glosslist | bibliolist | calloutlist = | qandaset | example | figure | table | equation | informalexample | inform= alfigure | informaltable | informalequation | sidebar | blockquote | addres= s | epigraph | mediaobject | screenshot | task | productionset | constraint= def | msgset | screen | literallayout | programlistingco | screenco | progr= amlisting | synopsis | bridgehead | remark | revhistory | indexterm | funcs= ynopsis | classsynopsis | methodsynopsis | constructorsynopsis | destructor= synopsis | fieldsynopsis | cmdsynopsis | caution | important | note | tip |= warning | anchor | para | formalpara | simpara | annotation)* , varlistent= ry+), got=20 ^ *** [book.parsed.xml] Error code 4 Stop in *** [all] Error code 1 Stop in *** [all] Error code 1 Stop in *** [all] Error code 1 Stop in Build step 'Execute shell' marked build as failure From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 01:06:24 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65D1A234 for ; Wed, 2 Jul 2014 01:06:24 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E4D623B1 for ; Wed, 2 Jul 2014 01:06:24 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6216Oeh008013 for ; Wed, 2 Jul 2014 02:06:24 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191541] Typo in Handbook 4.2 Date: Wed, 02 Jul 2014 01:06:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: wblock@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: wblock@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 01:06:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191541 Warren Block changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wblock@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |wblock@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 01:14:25 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67C4E355 for ; Wed, 2 Jul 2014 01:14:25 +0000 (UTC) Received: from mail-pa0-f47.google.com (mail-pa0-f47.google.com [209.85.220.47]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3A90D2458 for ; Wed, 2 Jul 2014 01:14:24 +0000 (UTC) Received: by mail-pa0-f47.google.com with SMTP id kq14so11508180pab.20 for ; Tue, 01 Jul 2014 18:14:18 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:disposition-notification-to :mime-version:message-id:content-type; bh=Mf94NowfJFj+5Brv5zkcX+CBagkYBeqsVv2boXmRdHA=; b=lLdi/E8uld84IWQetJohK/aNUEKlbO+fm4GYz0G/KK9WbeUOIhMpWoPLyyTVMFcRmP xBxcMVEJd5fXaCF5Rss9DL9QRt+Y0y1doG2SiHKPxd0WYy6PKA3llTUwdT3eiHcFYphQ ShD0ql7F+zk9OPCadQ8klnYrFGywrkbg8YjLVXv0LKpqdIuK2jlvGoai+AqaJCBLknr/ LzamXNLcS8/mNhXGOT4hZM804c8vh3hM3CMIMyDUxwfjQbhhwJHpHbcX2mPBfhs3aER9 4Ffj7awB5VIgRVVbNYQjraMmNRGLuA7/Y+Jec0zVRkpGdY+d8zIZMxLJdqhW9R6TMMoc QsyQ== X-Gm-Message-State: ALoCoQl4jDjHwrcBpJnC1PEx6BNUqdpAonfLfxiP74nEVjI3j0djXMvcv3y0i+BE8tCWbOw18iJT X-Received: by 10.66.65.169 with SMTP id y9mr112473pas.145.1404262007957; Tue, 01 Jul 2014 17:46:47 -0700 (PDT) Received: from 8D4AL1YSZZVJ2D3 ([218.18.24.228]) by mx.google.com with ESMTPSA id xz7sm122629404pac.3.2014.07.01.17.46.45 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 01 Jul 2014 17:46:47 -0700 (PDT) Date: Wed, 2 Jul 2014 08:45:58 +0800 From: "amy@gezhiphotonics.com" To: "" Subject: RE: SFP, Media Converter /July 1, 2014 X-Priority: 3 X-GUID: B71D1986-ACA4-4334-864A-100F647762B7 X-Has-Attach: no X-Mailer: Foxmail 7, 2, 5, 140[cn] Mime-Version: 1.0 Message-ID: <2014070116300361783666@gezhiphotonics.com> Content-Type: text/plain; charset="GB2312" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 01:14:25 -0000 RGVhciBNYW5hZ2VyOg0KDQpIb3cgYXJlIHlvdSByZWNlbnRseT8gDQoNCk5vIG5ld3Mgb2YgeW91 IHRoZXNlIGRheXMgLCBPdXIgcXVvdGF0aW9uIGhhZCB1cGRhdGVkLg0KDQpIZXJlICBhdHRhY2hl ZCBvdXIgbmV3IHF1b3RhdGlvbiB3aXRoIG5ldyBpdGVtcyA6DQoNClNGUCAxLjI1RyA4NTBubSA1 NTBtICAgJDkuMC9wYyANClNGUCAxLjI1RyAxNTUwbm0gODBrbSAkMzgvcGMgDQoxMDAwTSBDb3Bw ZXIgU0ZQICAgICAkMTgvcGMgDQpTRlArIExSICAgICAgICAgICAgICAgICAgICAgICAkODUvcGMg DQpYRlAgTFIgICAgICAgICAgICAgICAgICAgICAgICAgJDkyL3BjIA0KMTAvMTAwLzEwMDBNIFNG UCBNZWRpYSBDb252ZXJ0ZXIgJDIyL3BjDQoNCklmIHlvdSBoYXZlIG5ldyBpbnF1aXJ5ICx3ZWxj b21lIGhlcmUgYW5kIEkgd2lsbCB0cnkgbXkgYmVzdCB0byBzYXRpc2Z5IHlvdSB3aXRoIGNvbXBl dGl0aXZlIHByaWNlLg0KDQpUaGFua3MgYW5kIGJlc3QgcmVnYXJkcywNCkFteQ0KDQoNCkdlemhp IFBob3RvbmljcyBDby4sIEx0ZA0KQWRkOiAgMTNGLFdlaWRvbmdsb25nIFRlY2ggQnVsZGluZywg TWVpbG9uZyBSb2FkLCBMb25naHVhLCBTaGVuemhlbiwgQ2hpbmEgNTE4MTA5DQpXZWI6IHd3dy5n ZXpoaXBob3Rvbmljcy5jb20gDQpUZWw6ICs4Ni03NTUtMzMxNTk3NzcgICBNb2JpbGU6ICs4NjE1 ODIwNDQwMTIwICAgDQpFbWFpbDogYW15QGdlemhpcGhvdG9uaWNzLmNvbQ0KU2t5cGU6IGdlemhp MDA3DQoNCg== From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 02:17:42 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59A95FFB for ; Wed, 2 Jul 2014 02:17:42 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4157A28EC for ; Wed, 2 Jul 2014 02:17:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s622HgeX052963 for ; Wed, 2 Jul 2014 03:17:42 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189413] link information Date: Wed, 02 Jul 2014 02:17:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: wblock@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 02:17:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189413 Warren Block changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved CC| |wblock@FreeBSD.org Resolution|--- |Feature Proposal Rejected --- Comment #1 from Warren Block --- There appears to be no FreeBSD-specific hardware or support at www.smartvm.com. If this is a mistake, please point out the information relevant to FreeBSD. Thanks. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 02:39:57 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA47829E for ; Wed, 2 Jul 2014 02:39:57 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C2E892A4F for ; Wed, 2 Jul 2014 02:39:57 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s622dvNG029328 for ; Wed, 2 Jul 2014 03:39:57 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191544] New: no man page for svnlite Date: Wed, 02 Jul 2014 02:39:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: eric@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 02:39:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191544 Bug ID: 191544 Summary: no man page for svnlite Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: eric@FreeBSD.org What is svnlite? Is it a real version of Subversion, or a pared down copy? What options does it take? Sadly no man page knows the answer - % man svnlite No manual entry for svnlite % -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 02:46:17 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC7D94C6 for ; Wed, 2 Jul 2014 02:46:17 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C48042AEA for ; Wed, 2 Jul 2014 02:46:17 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s622kH3F075371 for ; Wed, 2 Jul 2014 03:46:17 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191544] no man page for svnlite Date: Wed, 02 Jul 2014 02:46:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 02:46:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191544 Glen Barber changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Issue Resolved CC| |gjb@FreeBSD.org Resolution|--- |Works As Intended --- Comment #1 from Glen Barber --- It takes the same options as svn from ports. See 'svnlite help'. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 02:53:37 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 678F072B for ; Wed, 2 Jul 2014 02:53:37 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F7E22BA5 for ; Wed, 2 Jul 2014 02:53:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s622rb8Z007822 for ; Wed, 2 Jul 2014 03:53:37 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191544] no man page for svnlite Date: Wed, 02 Jul 2014 02:53:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: eric@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 02:53:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191544 Eric Melville changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Issue Resolved |In Discussion Resolution|Works As Intended |--- --- Comment #2 from Eric Melville --- Those questions were rhetoric. If a command is installed it should have a man page. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 03:20:36 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 060F8A33 for ; Wed, 2 Jul 2014 03:20:36 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E6A2F2DF3 for ; Wed, 2 Jul 2014 03:20:35 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s623KZn5098053 for ; Wed, 2 Jul 2014 03:20:35 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s623KZAg098051 for freebsd-doc@FreeBSD.org; Wed, 2 Jul 2014 03:20:35 GMT (envelope-from www-data) Date: Wed, 2 Jul 2014 03:20:35 GMT From: User Www-data Message-Id: <201407020320.s623KZAg098051@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 03:20:36 -0000 ===> ../../de_DE.ISO8859-1/htdocs/releases/5.1R ===> ../../de_DE.ISO8859-1/htdocs/releases/5.2R ===> ../../de_DE.ISO8859-1/htdocs/releases/5.3R ===> ../../de_DE.ISO8859-1/htdocs/security ===> ../../de_DE.ISO8859-1/htdocs/snapshots ===> ../../de_DE.ISO8859-1/htdocs/support ===> ../../de_DE.ISO8859-1/htdocs/ports cd /home/www/build/head/de_DE.ISO8859-1/htdocs/ports; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ -f /home/www/build/head/de_DE.ISO8859-1/htdocs/ports/Makefile.inc0 all cd growth; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ all cd /home/www/build/head/de_DE.ISO8859-1/htdocs/ports/growth/../../../../share/tools/portsgrowth; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ DIRPRFX=../../de_DE.ISO8859-1/htdocs/ports/ all ===> ../../de_DE.ISO8859-1/htdocs/doc ===> ../../de_DE.ISO8859-1/htdocs/doc/articles (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/contributing (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/contributing-ports (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/explaining-bsd (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/freebsd-update-server (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/laptop (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/linux-comparison (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/nanobsd (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/new-users (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/port-mentor-guidelines (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/solid-state (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/developers-handbook (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/faq (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/fdp-primer (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/handbook (all) env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude /home/www/build/head/de_DE.ISO8859-1/books/handbook/book.xml > book.parsed.xml.tmp /home/www/build/head/de_DE.ISO8859-1/books/handbook/mirrors.xml.cvsup.inc:2: element variablelist: validity error : Element variablelist content does not follow the DTD, expecting (((title | titleabbrev)* , info?) , (itemizedlist | orderedlist | procedure | simplelist | variablelist | segmentedlist | glosslist | bibliolist | calloutlist | qandaset | example | figure | table | equation | informalexample | informalfigure | informaltable | informalequation | sidebar | blockquote | address | epigraph | mediaobject | screenshot | task | productionset | constraintdef | msgset | screen | literallayout | programlistingco | screenco | programlisting | synopsis | bridgehead | remark | revhistory | indexterm | funcsynopsis | classsynopsis | methodsynopsis | constructorsynopsis | destructorsynopsis | fieldsynopsis | cmdsynopsis | caution | important | note | tip | warning | anchor | para | formalpara | simpara | annotation)* , varlistentry+), got ^ *** [book.parsed.xml] Error code 4 Stop in /home/www/build/head/de_DE.ISO8859-1/books/handbook. *** [all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1/books. *** [all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1. *** [all-all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1/htdocs/doc. *** [all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1/htdocs. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 31.33 real 19.98 user 11.97 sys From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 03:28:53 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 078AEC10; Wed, 2 Jul 2014 03:28:53 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id E87C52EA5; Wed, 2 Jul 2014 03:28:52 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 1A4141E1; Wed, 2 Jul 2014 03:28:53 +0000 (UTC) Date: Wed, 2 Jul 2014 03:28:49 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@freebsd.org, freebsd-doc@freebsd.org, gavin@FreeBSD.org, wblock@FreeBSD.org Message-ID: <2103741128.21.1404271732494.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1888536697.11.1404260814322.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1888536697.11.1404260814322.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_DOC #482 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Jenkins-Job: FreeBSD_DOC X-Jenkins-Result: FAILURE X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 03:28:53 -0000 See Changes: [wblock] Remove excess word. PR: 191541 Submitted by: cs@ ------------------------------------------ [...truncated 116 lines...] Writing x-understanding.html for sect1(x-understanding) Writing x-install.html for sect1(x-install) Writing x-config.html for sect1(x-config) Writing x-fonts.html for sect1(x-fonts) Writing x-xdm.html for sect1(x-xdm) Writing x11-wm.html for sect1(x11-wm) Writing x11-understanding.html for sect1(x11-understanding) Writing x11.html for chapter(x11) Writing getting-started.html for part(getting-started) Writing desktop-browsers.html for sect1(desktop-browsers) Writing desktop-productivity.html for sect1(desktop-productivity) Writing desktop-viewers.html for sect1(desktop-viewers) Writing desktop-finance.html for sect1(desktop-finance) Writing desktop.html for chapter(desktop) Writing sound-setup.html for sect1(sound-setup) Writing sound-mp3.html for sect1(sound-mp3) Writing video-playback.html for sect1(video-playback) Writing tvcard.html for sect1(tvcard) Writing mythtv.html for sect1(mythtv) Writing scanners.html for sect1(scanners) Writing multimedia.html for chapter(multimedia) Writing kernelconfig-custom-kernel.html for sect1(kernelconfig-custom-kernel) Writing kernelconfig-devices.html for sect1(kernelconfig-devices) Writing kernelconfig-config.html for sect1(kernelconfig-config) Writing kernelconfig-building.html for sect1(kernelconfig-building) Writing kernelconfig-trouble.html for sect1(kernelconfig-trouble) Writing kernelconfig.html for chapter(kernelconfig) Writing printing-connections.html for sect1(printing-connections) Writing printing-pdls.html for sect1(printing-pdls) Writing printing-direct.html for sect1(printing-direct) Writing printing-lpd.html for sect1(printing-lpd) Writing printing-other.html for sect1(printing-other) Writing printing.html for chapter(printing) Writing linuxemu-lbc-install.html for sect1(linuxemu-lbc-install) Writing linuxemu-advanced.html for sect1(linuxemu-advanced) Writing linuxemu.html for chapter(linuxemu) Writing common-tasks.html for part(common-tasks) Writing configtuning-starting-services.html for sect1(configtuning-starting-services) Writing configtuning-cron.html for sect1(configtuning-cron) Writing configtuning-rcd.html for sect1(configtuning-rcd) Writing config-network-setup.html for sect1(config-network-setup) Writing configtuning-virtual-hosts.html for sect1(configtuning-virtual-hosts) Writing configtuning-syslog.html for sect1(configtuning-syslog) Writing configtuning-configfiles.html for sect1(configtuning-configfiles) Writing configtuning-sysctl.html for sect1(configtuning-sysctl) Writing configtuning-disk.html for sect1(configtuning-disk) Writing configtuning-kernel-limits.html for sect1(configtuning-kernel-limits) Writing adding-swap-space.html for sect1(adding-swap-space) Writing acpi-overview.html for sect1(acpi-overview) Writing config-tuning.html for chapter(config-tuning) Writing boot-introduction.html for sect1(boot-introduction) Writing boot-splash.html for sect1(boot-splash) Writing device-hints.html for sect1(device-hints) Writing boot-shutdown.html for sect1(boot-shutdown) Writing boot.html for chapter(boot) Writing security-intro.html for sect1(security-intro) Writing one-time-passwords.html for sect1(one-time-passwords) Writing tcpwrappers.html for sect1(tcpwrappers) Writing kerberos5.html for sect1(kerberos5) Writing openssl.html for sect1(openssl) Writing ipsec.html for sect1(ipsec) Writing openssh.html for sect1(openssh) Writing fs-acl.html for sect1(fs-acl) Writing security-portaudit.html for sect1(security-portaudit) Writing security-advisories.html for sect1(security-advisories) Writing security-accounting.html for sect1(security-accounting) Writing security-resourcelimits.html for sect1(security-resourcelimits) Writing security.html for chapter(security) Writing jails-terms.html for sect1(jails-terms) Writing jails-build.html for sect1(jails-build) Writing jails-tuning.html for sect1(jails-tuning) Writing jails-application.html for sect1(jails-application) Writing jails.html for chapter(jails) Writing mac-inline-glossary.html for sect1(mac-inline-glossary) Writing mac-understandlabel.html for sect1(mac-understandlabel) Writing mac-planning.html for sect1(mac-planning) Writing mac-policies.html for sect1(mac-policies) Writing mac-userlocked.html for sect1(mac-userlocked) Writing mac-implementing.html for sect1(mac-implementing) Writing mac-troubleshoot.html for sect1(mac-troubleshoot) Writing mac.html for chapter(mac) Writing audit-inline-glossary.html for sect1(audit-inline-glossary) Writing audit-config.html for sect1(audit-config) Writing audit-administration.html for sect1(audit-administration) Writing audit.html for chapter(audit) Writing disks-adding.html for sect1(disks-adding) Writing disks-growing.html for sect1(disks-growing) Writing usb-disks.html for sect1(usb-disks) Writing creating-cds.html for sect1(creating-cds) Writing creating-dvds.html for sect1(creating-dvds) Writing floppies.html for sect1(floppies) Writing backup-basics.html for sect1(backup-basics) Writing disks-virtual.html for sect1(disks-virtual) Writing snapshots.html for sect1(snapshots) Writing quotas.html for sect1(quotas) Writing disks-encrypting.html for sect1(disks-encrypting) Writing swap-encrypting.html for sect1(swap-encrypting) Writing disks-hast.html for sect1(disks-hast) Writing disks.html for chapter(disks) Writing geom-striping.html for sect1(geom-striping) Writing geom-mirror.html for sect1(geom-mirror) Writing geom-raid3.html for sect1(geom-raid3) Writing geom-graid.html for sect1(geom-graid) Writing geom-ggate.html for sect1(geom-ggate) Writing geom-glabel.html for sect1(geom-glabel) Writing geom-gjournal.html for sect1(geom-gjournal) Writing geom.html for chapter(geom) Writing filesystems-zfs.html for sect1(filesystems-zfs) Writing filesystems-linux.html for sect1(filesystems-linux) Writing filesystems.html for chapter(filesystems) Writing virtualization-guest.html for sect1(virtualization-guest) Writing virtualization-host-virtualbox.html for sect1(virtualization-host-virtualbox) Writing virtualization-host-bhyve.html for sect1(virtualization-host-bhyve) Writing virtualization.html for chapter(virtualization) Writing using-localization.html for sect1(using-localization) Writing l10n-compiling.html for sect1(l10n-compiling) Writing lang-setup.html for sect1(lang-setup) Writing l10n.html for chapter(l10n) Writing updating-upgrading-freebsdupdate.html for sect1(updating-upgrading-freebsdupdate) Writing updating-upgrading-documentation.html for sect1(updating-upgrading-documentation) Writing current-stable.html for sect1(current-stable) Writing synching.html for sect1(synching) Writing makeworld.html for sect1(makeworld) Writing small-lan.html for sect1(small-lan) Writing updating-upgrading.html for chapter(updating-upgrading) Writing dtrace-implementation.html for sect1(dtrace-implementation) Writing dtrace-enable.html for sect1(dtrace-enable) Writing dtrace-using.html for sect1(dtrace-using) Writing dtrace.html for chapter(dtrace) Writing system-administration.html for part(system-administration) Writing serial.html for sect1(serial) Writing term.html for sect1(term) Writing dialup.html for sect1(dialup) Writing dialout.html for sect1(dialout) Writing serialconsole-setup.html for sect1(serialconsole-setup) Writing serialcomms.html for chapter(serialcomms) Writing userppp.html for sect1(userppp) Writing ppp-troubleshoot.html for sect1(ppp-troubleshoot) Writing pppoe.html for sect1(pppoe) Writing pppoa.html for sect1(pppoa) Writing ppp-and-slip.html for chapter(ppp-and-slip) Writing mail-using.html for sect1(mail-using) Writing sendmail.html for sect1(sendmail) Writing mail-changingmta.html for sect1(mail-changingmta) Writing mail-trouble.html for sect1(mail-trouble) Writing mail-advanced.html for sect1(mail-advanced) Writing outgoing-only.html for sect1(outgoing-only) Writing SMTP-dialup.html for sect1(SMTP-dialup) Writing SMTP-Auth.html for sect1(SMTP-Auth) Writing mail-agents.html for sect1(mail-agents) Writing mail-fetchmail.html for sect1(mail-fetchmail) Writing mail-procmail.html for sect1(mail-procmail) Writing mail.html for chapter(mail) Writing network-inetd.html for sect1(network-inetd) Writing network-nfs.html for sect1(network-nfs) Writing network-nis.html for sect1(network-nis) Writing network-ldap.html for sect1(network-ldap) Writing network-dhcp.html for sect1(network-dhcp) Writing network-dns.html for sect1(network-dns) Writing network-apache.html for sect1(network-apache) Writing network-ftp.html for sect1(network-ftp) Writing network-samba.html for sect1(network-samba) Writing network-ntp.html for sect1(network-ntp) Writing network-iscsi.html for sect1(network-iscsi) Writing network-servers.html for chapter(network-servers) Writing firewalls-concepts.html for sect1(firewalls-concepts) Writing firewalls-pf.html for sect1(firewalls-pf) Writing firewalls-ipfw.html for sect1(firewalls-ipfw) Writing firewalls-ipf.html for sect1(firewalls-ipf) Writing firewalls.html for chapter(firewalls) Writing network-routing.html for sect1(network-routing) Writing network-wireless.html for sect1(network-wireless) Writing network-usb-tethering.html for sect1(network-usb-tethering) Writing network-bluetooth.html for sect1(network-bluetooth) Writing network-bridging.html for sect1(network-bridging) Writing network-aggregation.html for sect1(network-aggregation) Writing network-diskless.html for sect1(network-diskless) Writing network-ipv6.html for sect1(network-ipv6) Writing carp.html for sect1(carp) Writing advanced-networking.html for chapter(advanced-networking) Writing network-communication.html for part(network-communication) Writing mirrors-ftp.html for sect1(mirrors-ftp) Writing ctm.html for sect1(ctm) Writing svn.html for sect1(svn) Writing mirrors-rsync.html for sect1(mirrors-rsync) Writing mirrors.html for appendix(mirrors) Writing bibliography-userguides.html for sect1(bibliography-userguides) Writing bibliography-adminguides.html for sect1(bibliography-adminguides) Writing bibliography-programmers.html for sect1(bibliography-programmers) Writing bibliography-osinternals.html for sect1(bibliography-osinternals) Writing bibliography-security.html for sect1(bibliography-security) Writing bibliography-hardware.html for sect1(bibliography-hardware) Writing bibliography-history.html for sect1(bibliography-history) Writing bibliography-journals.html for sect1(bibliography-journals) Writing bibliography.html for appendix(bibliography) Writing eresources-news.html for sect1(eresources-news) Writing eresources-web.html for sect1(eresources-web) Writing eresources.html for appendix(eresources) Writing pgpkeys.html for appendix(pgpkeys) Writing appendices.html for part(appendices) Writing freebsd-glossary.html for glossary(freebsd-glossary) Writing ix01.html for index Writing colophon.html for colophon(colophon) Writing index.html for book Writing HTML.manifest ===> en_US.ISO8859-1/books/pmake (all) ===> en_US.ISO8859-1/books/porters-handbook (all) ===> bn_BD.UTF-8 (all) ===> bn_BD.UTF-8/articles (all) ===> bn_BD.UTF-8/articles/explaining-bsd (all) ===> bn_BD.UTF-8/articles/new-users (all) ===> da_DK.ISO8859-1 (all) ===> da_DK.ISO8859-1/articles (all) ===> da_DK.ISO8859-1/articles/ipsec-must (all) ===> da_DK.ISO8859-1/articles/pxe (all) ===> de_DE.ISO8859-1 (all) ===> de_DE.ISO8859-1/articles (all) ===> de_DE.ISO8859-1/articles/contributing (all) ===> de_DE.ISO8859-1/articles/contributing-ports (all) ===> de_DE.ISO8859-1/articles/explaining-bsd (all) ===> de_DE.ISO8859-1/articles/freebsd-update-server (all) ===> de_DE.ISO8859-1/articles/laptop (all) ===> de_DE.ISO8859-1/articles/linux-comparison (all) ===> de_DE.ISO8859-1/articles/nanobsd (all) ===> de_DE.ISO8859-1/articles/new-users (all) ===> de_DE.ISO8859-1/articles/port-mentor-guidelines (all) ===> de_DE.ISO8859-1/articles/solid-state (all) ===> de_DE.ISO8859-1/books (all) ===> de_DE.ISO8859-1/books/developers-handbook (all) ===> de_DE.ISO8859-1/books/faq (all) ===> de_DE.ISO8859-1/books/fdp-primer (all) ===> de_DE.ISO8859-1/books/handbook (all) env XML_CATALOG_FILES="file:// file:// file:// file:// file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude > book.parsed.xml.tmp :2: element variablelist: validity error : Element variablelist content does not follow the DTD, expecting (((title | titleabbrev)* , info?) , (itemizedlist | orderedlist | procedure | simplelist | variablelist | segmentedlist | glosslist | bibliolist | calloutlist | qandaset | example | figure | table | equation | informalexample | informalfigure | informaltable | informalequation | sidebar | blockquote | address | epigraph | mediaobject | screenshot | task | productionset | constraintdef | msgset | screen | literallayout | programlistingco | screenco | programlisting | synopsis | bridgehead | remark | revhistory | indexterm | funcsynopsis | classsynopsis | methodsynopsis | constructorsynopsis | destructorsynopsis | fieldsynopsis | cmdsynopsis | caution | important | note | tip | warning | anchor | para | formalpara | simpara | annotation)* , varlistentry+), got ^ *** [book.parsed.xml] Error code 4 Stop in *** [all] Error code 1 Stop in *** [all] Error code 1 Stop in *** [all] Error code 1 Stop in Build step 'Execute shell' marked build as failure From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 04:06:39 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6EEE6748 for ; Wed, 2 Jul 2014 04:06:39 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 56FA321F6 for ; Wed, 2 Jul 2014 04:06:39 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6246dfM042087 for ; Wed, 2 Jul 2014 05:06:39 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191544] no man page for svnlite Date: Wed, 02 Jul 2014 04:06:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: eadler@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 04:06:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191544 Eitan Adler changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |peter@FreeBSD.org --- Comment #3 from Eitan Adler --- Agreed. If svnlite isn't document then its existence could rightfully be considered a bug. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 05:09:50 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B05E22AD for ; Wed, 2 Jul 2014 05:09:50 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98DCA2688 for ; Wed, 2 Jul 2014 05:09:50 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6259oCm081968 for ; Wed, 2 Jul 2014 06:09:50 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191544] no man page for svnlite Date: Wed, 02 Jul 2014 05:09:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 05:09:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191544 --- Comment #4 from commit-hook@freebsd.org --- A commit references this bug: Author: eadler Date: Wed Jul 2 05:09:41 UTC 2014 New revision: 268135 URL: http://svnweb.freebsd.org/changeset/base/268135 Log: Add documentation for svnlite. PR: 191544 Reported by: eric Reviewed by: imp MFC After: 1 week Changes: head/tools/build/mk/OptionalObsoleteFiles.inc head/usr.bin/svn/svn/Makefile -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 05:09:57 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2CF732EB for ; Wed, 2 Jul 2014 05:09:57 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 153A2268D for ; Wed, 2 Jul 2014 05:09:57 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6259u9M082111 for ; Wed, 2 Jul 2014 06:09:56 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191544] no man page for svnlite Date: Wed, 02 Jul 2014 05:09:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: eadler@FreeBSD.org X-Bugzilla-Status: Needs MFC X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 05:09:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191544 Eitan Adler changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Needs MFC -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 05:10:12 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B64132A for ; Wed, 2 Jul 2014 05:10:12 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83FBE26FB for ; Wed, 2 Jul 2014 05:10:12 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s625ACF3083106 for ; Wed, 2 Jul 2014 06:10:12 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191544] no man page for svnlite Date: Wed, 02 Jul 2014 05:10:12 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: eadler@FreeBSD.org X-Bugzilla-Status: Needs MFC X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: eadler@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 05:10:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191544 Eitan Adler changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |freebsd-doc@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |eadler@FreeBSD.org -- You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 06:20:37 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB0CC2CD for ; Wed, 2 Jul 2014 06:20:36 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7CCA2C18 for ; Wed, 2 Jul 2014 06:20:36 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s626Ka1D021294 for ; Wed, 2 Jul 2014 06:20:36 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s626KaPe021292 for freebsd-doc@FreeBSD.org; Wed, 2 Jul 2014 06:20:36 GMT (envelope-from www-data) Date: Wed, 2 Jul 2014 06:20:36 GMT From: User Www-data Message-Id: <201407020620.s626KaPe021292@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 06:20:37 -0000 ===> ../../de_DE.ISO8859-1/htdocs/releases/5.1R ===> ../../de_DE.ISO8859-1/htdocs/releases/5.2R ===> ../../de_DE.ISO8859-1/htdocs/releases/5.3R ===> ../../de_DE.ISO8859-1/htdocs/security ===> ../../de_DE.ISO8859-1/htdocs/snapshots ===> ../../de_DE.ISO8859-1/htdocs/support ===> ../../de_DE.ISO8859-1/htdocs/ports cd /home/www/build/head/de_DE.ISO8859-1/htdocs/ports; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ -f /home/www/build/head/de_DE.ISO8859-1/htdocs/ports/Makefile.inc0 all cd growth; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ all cd /home/www/build/head/de_DE.ISO8859-1/htdocs/ports/growth/../../../../share/tools/portsgrowth; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ DIRPRFX=../../de_DE.ISO8859-1/htdocs/ports/ all ===> ../../de_DE.ISO8859-1/htdocs/doc ===> ../../de_DE.ISO8859-1/htdocs/doc/articles (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/contributing (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/contributing-ports (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/explaining-bsd (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/freebsd-update-server (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/laptop (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/linux-comparison (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/nanobsd (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/new-users (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/port-mentor-guidelines (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/solid-state (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/developers-handbook (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/faq (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/fdp-primer (all) ===> ../../de_DE.ISO8859-1/htdocs/doc/books/handbook (all) env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude /home/www/build/head/de_DE.ISO8859-1/books/handbook/book.xml > book.parsed.xml.tmp /home/www/build/head/de_DE.ISO8859-1/books/handbook/mirrors.xml.cvsup.inc:2: element variablelist: validity error : Element variablelist content does not follow the DTD, expecting (((title | titleabbrev)* , info?) , (itemizedlist | orderedlist | procedure | simplelist | variablelist | segmentedlist | glosslist | bibliolist | calloutlist | qandaset | example | figure | table | equation | informalexample | informalfigure | informaltable | informalequation | sidebar | blockquote | address | epigraph | mediaobject | screenshot | task | productionset | constraintdef | msgset | screen | literallayout | programlistingco | screenco | programlisting | synopsis | bridgehead | remark | revhistory | indexterm | funcsynopsis | classsynopsis | methodsynopsis | constructorsynopsis | destructorsynopsis | fieldsynopsis | cmdsynopsis | caution | important | note | tip | warning | anchor | para | formalpara | simpara | annotation)* , varlistentry+), got ^ *** [book.parsed.xml] Error code 4 Stop in /home/www/build/head/de_DE.ISO8859-1/books/handbook. *** [all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1/books. *** [all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1. *** [all-all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1/htdocs/doc. *** [all] Error code 1 Stop in /home/www/build/head/de_DE.ISO8859-1/htdocs. *** [all] Error code 1 Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. 31.62 real 19.91 user 12.39 sys From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 08:20:40 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF448B9A for ; Wed, 2 Jul 2014 08:20:40 +0000 (UTC) Received: from mail-gw14.york.ac.uk (mail-gw14.york.ac.uk [144.32.129.164]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92142271D for ; Wed, 2 Jul 2014 08:20:37 +0000 (UTC) Received: from ury.york.ac.uk ([144.32.64.162]:40996) by mail-gw14.york.ac.uk with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1X2FhQ-0005Zs-Me; Wed, 02 Jul 2014 09:15:28 +0100 Date: Wed, 2 Jul 2014 09:15:28 +0100 (BST) From: Gavin Atkinson X-X-Sender: gavin@ury.york.ac.uk To: User Www-data Subject: Re: FreeBSD web build failed on build-web.stream.freebsd.org In-Reply-To: <201407020022.s620MRBQ077722@build-web.stream.freebsd.org> Message-ID: References: <201407020022.s620MRBQ077722@build-web.stream.freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 08:20:40 -0000 Sorry guys, hopefully now worked around. Gavin On Wed, 2 Jul 2014, User Www-data wrote: > cd /home/www/build/head/de_DE.ISO8859-1/htdocs/ports; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ -f /home/www/build/head/de_DE.ISO8859-1/htdocs/ports/Makefile.inc0 all > cd growth; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ all > cd /home/www/build/head/de_DE.ISO8859-1/htdocs/ports/growth/../../../../share/tools/portsgrowth; make DIRPRFX=../../de_DE.ISO8859-1/htdocs/ DIRPRFX=../../de_DE.ISO8859-1/htdocs/ports/ all > ===> ../../de_DE.ISO8859-1/htdocs/doc > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/contributing (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/contributing-ports (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/explaining-bsd (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/freebsd-update-server (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/laptop (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/linux-comparison (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/nanobsd (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/new-users (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/port-mentor-guidelines (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/articles/solid-state (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/books (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/books/developers-handbook (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/books/faq (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/books/fdp-primer (all) > ===> ../../de_DE.ISO8859-1/htdocs/doc/books/handbook (all) > env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.lastmod.inc --param 'target' "'lastmod'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml > env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.xml.ftp.inc --param 'type' "'ftp'" --param 'proto' "'ftp'" --param 'target' "'handbook/mirrors/chapter.xml'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml > env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.xml.ftp.index.inc --param 'type' "'ftp'" --param 'proto' "'ftp'" --param 'target' "'index'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml > env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.xml.cvsup.inc --param 'type' "'cvsup'" --param 'proto' "'cvsup'" --param 'target' "'handbook/mirrors/chapter.xml'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml > env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o mirrors.xml.cvsup.index.inc --param 'type' "'cvsup'" --param 'proto' "'cvsup'" --param 'target' "'index'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml > env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o eresources.xml.www.inc --param 'type' "'www'" --param 'proto' "'http'" --param 'target' "'handbook/eresources/chapter.xml'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml > env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --param docformatnav "'1'" -o eresources.xml.www.index.inc --param 'type' "'www'" --param 'proto' "'http'" --param 'target' "'index'" --param transtable.xml "'/home/www/build/head/de_DE.ISO8859-1/share/xml/transtable.xml'" /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors-local.xsl /home/www/build/head/de_DE.ISO8859-1/share/xml/mirrors.xml > env XML_CATALOG_FILES="file:///home/www/build/head/de_DE.ISO8859-1/books/handbook/catalog-cwd.xml file:///home/www/build/head/de_DE.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --nonet --noent --valid --dropdtd --xinclude /home/www/build/head/de_DE.ISO8859-1/books/handbook/book.xml > book.parsed.xml.tmp > /home/www/build/head/de_DE.ISO8859-1/books/handbook/mirrors.xml.cvsup.inc:2: element variablelist: validity error : Element variablelist content does not follow the DTD, expecting (((title | titleabbrev)* , info?) , (itemizedlist | orderedlist | procedure | simplelist | variablelist | segmentedlist | glosslist | bibliolist | calloutlist | qandaset | example | figure | table | equation | informalexample | informalfigure | informaltable | informalequation | sidebar | blockquote | address | epigraph | mediaobject | screenshot | task | productionset | constraintdef | msgset | screen | literallayout | programlistingco | screenco | programlisting | synopsis | bridgehead | remark | revhistory | indexterm | funcsynopsis | classsynopsis | methodsynopsis | constructorsynopsis | destructorsynopsis | fieldsynopsis | cmdsynopsis | caution | important | note | tip | warning | anchor | para | formalpara | simpara | annotation)* , varlistentry+), got > > ^ > *** [book.parsed.xml] Error code 4 > > Stop in /home/www/build/head/de_DE.ISO8859-1/books/handbook. > *** [all] Error code 1 > > Stop in /home/www/build/head/de_DE.ISO8859-1/books. > *** [all] Error code 1 > > Stop in /home/www/build/head/de_DE.ISO8859-1. > *** [all-all] Error code 1 > > Stop in /home/www/build/head/de_DE.ISO8859-1/htdocs/doc. > *** [all] Error code 1 > > Stop in /home/www/build/head/de_DE.ISO8859-1/htdocs. > *** [all] Error code 1 > > Stop in /home/www/build/head/en_US.ISO8859-1/htdocs. > 142.60 real 129.76 user 13.43 sys > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" > From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 10:02:16 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1FA7E4E; Wed, 2 Jul 2014 10:02:16 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id B07EB220F; Wed, 2 Jul 2014 10:02:16 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 11B782B4; Wed, 2 Jul 2014 10:02:17 +0000 (UTC) Date: Wed, 2 Jul 2014 10:02:16 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@freebsd.org, freebsd-doc@freebsd.org, gavin@FreeBSD.org, wblock@FreeBSD.org, mav@FreeBSD.org Message-ID: <1298708650.44.1404295336970.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <2103741128.21.1404271732494.JavaMail.jenkins@jenkins-9.freebsd.org> References: <2103741128.21.1404271732494.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Jenkins build is back to normal : FreeBSD_DOC #483 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Jenkins-Job: FreeBSD_DOC X-Jenkins-Result: SUCCESS X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 10:02:16 -0000 See From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 13:20:20 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D48564A for ; Wed, 2 Jul 2014 13:20:20 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 763B5243F for ; Wed, 2 Jul 2014 13:20:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s62DKKVd010069 for ; Wed, 2 Jul 2014 14:20:20 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191544] no man page for svnlite Date: Wed, 02 Jul 2014 13:20:20 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: eric@FreeBSD.org X-Bugzilla-Status: Needs MFC X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: eadler@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 13:20:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191544 --- Comment #5 from Eric Melville --- Awesome; thanks! -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 2 16:36:49 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F54CCB9 for ; Wed, 2 Jul 2014 16:36:49 +0000 (UTC) Received: from o103.p9.mailjet.com (o103.p9.mailjet.com [87.253.234.103]) by mx1.freebsd.org (Postfix) with ESMTP id 51A632842 for ; Wed, 2 Jul 2014 16:36:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/simple; q=dns/txt; d=humanitycampaign.org; i=lisa@humanitycampaign.org; s=mailjet; h=domainkey-signature:message-id:from:reply-to:to:subject:date:list-unsubscribe:mime-version: content-transfer-encoding; bh=nzq0O0PoMOEpLPkwBQQyRKf/J5c=; b= G+f8PmlfkY+tLNlxboQTVkQ0FsMHrJj7S1EOTqdkcPVPtvSZH7pqPenbszIH YpA1WzYJsfLv6CXapj042S6fR7AmpHdWP9jbViyBXXlW8TJfEVaxIwKffDQl tgyg3tmKl49pQ4tGMO7+sGeqThw6YZOE7I2QfJw1Kjr+8sM1tbA= DomainKey-Signature: a=rsa-sha1; c=simple; q=dns; d=humanitycampaign.org; s=mailjet; h=message-id:from:reply-to:to:subject:date:list-unsubscribe:mime-version: content-transfer-encoding; b= RkAIhBlJVTlWrbckO8lr/+b5dhl6untEvX2KLD5/W4Q2i7evrPs/3IKyPuuN 2lYZkWaYfGhcFAnfO9B+HUWurdTRDwYhgZh25almhZjH/7j5V4cvRbV62Zb/ BQXbpb+K/YNEPOJSOP9rYgGijs59HsbSLcDuv6ck1emaHnZzSM0= Message-Id: <0379190a.ET9.GDC.gd.11asK7ikWQ@mailjet.com> From: Lisa Reply-To: lisa@humanitycampaign.org To: freebsd-doc@freebsd.org, contacto@bsd-peru.org, lisa@humanitycampaign.org Subject: Link not working on master-6.destek.net Date: Wed, 2 Jul 2014 16:27:50 +0000 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 16:36:49 -0000 Looks like there is a broken link on http://master-6.destek.net///////es/pr= ojects/newbies.html to http://www.plig.org/xwinman/. You might also want to= add some of these resources I found useful... http://online.sju.edu/resource/engineering-technology/trends-in-todays-clas= sroom-hardware http://fluency21.com/blog/2013/04/08/6-hot-trends-in-educational-technology= -infographic/ Thanks! ~lisa = From owner-freebsd-doc@FreeBSD.ORG Thu Jul 3 03:52:40 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7492A09 for ; Thu, 3 Jul 2014 03:52:40 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8F7DD2617 for ; Thu, 3 Jul 2014 03:52:40 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s633qemq032026 for ; Thu, 3 Jul 2014 04:52:40 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191578] New: application for a new entry in the support list Date: Thu, 03 Jul 2014 03:52:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sysadmin@per101.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jul 2014 03:52:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191578 Bug ID: 191578 Summary: application for a new entry in the support list Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Website Assignee: freebsd-doc@FreeBSD.org Reporter: sysadmin@per101.com ImayaTech We offer professional services to companies implementing open source in their IT infrastructure main in Argentina. Our solutions use OpenBSD firewalls, edge servers and authentication servers. FreeBSD used mainly in data servers. We have over 20 years experience in BSD. We offer: professional services, technical support, project development and infrastructure analysis. Visit our website for more information. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jul 3 10:04:29 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF92D69A for ; Thu, 3 Jul 2014 10:04:29 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B722323BB for ; Thu, 3 Jul 2014 10:04:29 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s63A4TJE025526 for ; Thu, 3 Jul 2014 11:04:29 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191581] New: [patch] Fix typos in iscsictl.8 Date: Thu, 03 Jul 2014 10:04:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: olgeni@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jul 2014 10:04:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191581 Bug ID: 191581 Summary: [patch] Fix typos in iscsictl.8 Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Keywords: easy Severity: Affects Only Me Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: olgeni@FreeBSD.org Created attachment 144368 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144368&action=edit Typo fixes A couple of fixes for iscsictl.8. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jul 3 20:29:10 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7ABEF7D0 for ; Thu, 3 Jul 2014 20:29:10 +0000 (UTC) Received: from mail44.host-services.com (mail44.host-services.com [194.8.30.189]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0A982136 for ; Thu, 3 Jul 2014 20:29:09 +0000 (UTC) Received: (qmail 16995 invoked by uid 399); 3 Jul 2014 21:26:27 +0100 Received: from unknown (HELO ?192.168.0.101?) (info@chaveprateada.pt@46.182.25.70) by mail44.host-services.com with ESMTPAMMMMMMMMM; 3 Jul 2014 21:26:27 +0100 X-Originating-IP: 46.182.25.70 X-Sender: info@chaveprateada.pt Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Description: Mail message body Subject: Administrative Notice To: doc@freebsd.org From: "Help Desk" Date: Fri, 04 Jul 2014 04:28:59 +0800 Reply-To: help.desk.team014@tech-center.com X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jul 2014 20:29:10 -0000 Help Desk Attention Account User, Scheduled Maintenance & Upgrade Your account is in the process of being upgraded to a newest = Windows-based servers and an enhanced online email interface inline with in= ternet infrastructure Maintenance. The new servers will provide better anti= -spam and anti-virus functions, along with IMAP Support for mobile devices = to enhance your usage. To ensure that your account is not disrupted but active during and after th= is upgrade, you are required to kindly confirm your account by stating the = details below: * Domain\user name: = * Password: = This will prompt the upgrade of your account. Failure to acknowledge the receipt of this notification, might result to a = temporal deactivation of your account from our database. Your account shall= remain active upon your confirmation of your login details. We do apologize for any inconvenience caused. Sincerely, Your Customer Care Team (c) Copyright 2014, All Rights Reserved. From owner-freebsd-doc@FreeBSD.ORG Fri Jul 4 14:38:22 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD805F98 for ; Fri, 4 Jul 2014 14:38:22 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A57592088 for ; Fri, 4 Jul 2014 14:38:22 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s64EcMlv099298 for ; Fri, 4 Jul 2014 15:38:22 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191607] New: Inconsistent documentation on entering the debugger Date: Fri, 04 Jul 2014 14:38:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jul 2014 14:38:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191607 Bug ID: 191607 Summary: Inconsistent documentation on entering the debugger Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Website Assignee: freebsd-doc@FreeBSD.org Reporter: emaste@freebsd.org In the handbook (http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug-online-ddb.html): > There is an option available for serial consoles that allows the use of a serial line BREAK on the console line to enter DDB (options BREAK_TO_DEBUGGER in the kernel config file). This option has been modified to control the default value of the debug.kdb.break_to_debugger tunable, which controls both serial and video console debugger behaviour. ddb(4) may benefit from a mention kernel config NOTES files have incorrect information (jmg@ is looking at that) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Fri Jul 4 20:54:50 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A90895C for ; Fri, 4 Jul 2014 20:54:50 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id BE1AA20F8 for ; Fri, 4 Jul 2014 20:54:49 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s64Ksg1A030786 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Fri, 4 Jul 2014 14:54:42 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s64Ksg49030783 for ; Fri, 4 Jul 2014 14:54:42 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Fri, 4 Jul 2014 14:54:42 -0600 (MDT) From: Warren Block To: freebsd-doc@FreeBSD.org Subject: Annotation for doc review Message-ID: User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Fri, 04 Jul 2014 14:54:42 -0600 (MDT) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jul 2014 20:54:50 -0000 The phabricator instance has shown that some review can be done more easily. We've talked before about having periodic reviews of parts of the documentation. It turns out that experts rarely read the docs on things they know about, but are the ones that can produce very valuable feedback. Phabricator probably does not lend itself well to reviewing our DocBook documents. The source and rendered versions are just too different to review easily, even for those who are familiar with DocBook. Ideally, we'd be able to show a rendered HTML version of the document and let people comment on it. There are commercial services out there for that, but also free Javascript implementations that we could use directly, like this: http://annotatorjs.org/ Note that I am not suggesting this would go on our documentation web pages. Instead, we would create a small rendered version of part of a document, say one subsection out of a chapter, and put that up somewhere for review and annotation. At the end of a limited time, maybe a week or two, the annotations would be gone through, adapted, and changes applied. Then the process is repeated for a different documentation section. The annotated web page is just temporary. The biggest problems I see are user authentication: so we can avoid spam and vandalism, and track suggestions by user. For best results, this would use existing credentials and not require creating a new account logging: annotations must be saved until they can be processed If these problems can be addressed, we can make it doc review easy for everyone. From owner-freebsd-doc@FreeBSD.ORG Sat Jul 5 01:08:57 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A10E961B for ; Sat, 5 Jul 2014 01:08:57 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 88974254C for ; Sat, 5 Jul 2014 01:08:57 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6518vto042080 for ; Sat, 5 Jul 2014 02:08:57 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191620] New: make lint says is not valid for use in title elements Date: Sat, 05 Jul 2014 01:08:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: wblock@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jul 2014 01:08:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191620 Bug ID: 191620 Summary: make lint says is not valid for use in title elements Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: wblock@FreeBSD.org This is a valid DocBook title, and renders to HTML without problems: Using <buildtarget>installworld</buildtarget> However, 'make lint' complains: element title: validity error : Element buildtarget is not declared in title list of possible children -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Sat Jul 5 01:29:55 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B198AB6F for ; Sat, 5 Jul 2014 01:29:55 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 990DD269D for ; Sat, 5 Jul 2014 01:29:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s651TtRH049583 for ; Sat, 5 Jul 2014 02:29:55 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191620] make lint says is not valid for use in title elements Date: Sat, 05 Jul 2014 01:29:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: wblock@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jul 2014 01:29:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191620 --- Comment #1 from Warren Block --- My mistake, neither lint nor the actual build accept inside title elements. This makes it difficult to create an accurate title in some cases. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Sun Jul 6 19:21:17 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 607FFEC3 for ; Sun, 6 Jul 2014 19:21:17 +0000 (UTC) Received: from mail-qc0-x22a.google.com (mail-qc0-x22a.google.com [IPv6:2607:f8b0:400d:c01::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 25D7B2D31 for ; Sun, 6 Jul 2014 19:21:17 +0000 (UTC) Received: by mail-qc0-f170.google.com with SMTP id l6so3039068qcy.15 for ; Sun, 06 Jul 2014 12:21:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=VqUh+15R7+aeYKItlrUfFKIZvrolDTXIOnAaNHOcc+0=; b=EGKsSKW1KxddtCAKRDpDhELZ0cQKVWFp7h0tUiC3L0UPL9YpfNh0QxB/DXZzz1Xrqr tzXqc9EEvQiUBuao+DGR/nvQnBIRRdguyy2NM3m6sG2C6WIbl/VtCxgqvyq05ppWXG+u VKcHxYJc7zaWkGq7KhwWumkvfbveJFfSt0z6/8AWnh+sEnlVf6NgF2nKtXrgu0L49L/8 L0JEZnd4wql+6+VJQ6SaLAaBKWs02MhEd5qqXhJzsvZ7HXQHn4te+w2n3lFYbQqrhYTL fZ1SSzv9MOcJ65j4Un2RmpqICyJQTl/hd4oujIhpjvDz9emDzMw7Vkrj+cjGEt/6HDoF NTSA== MIME-Version: 1.0 X-Received: by 10.224.66.70 with SMTP id m6mr42530226qai.55.1404674475858; Sun, 06 Jul 2014 12:21:15 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.224.202.193 with HTTP; Sun, 6 Jul 2014 12:21:15 -0700 (PDT) Date: Sun, 6 Jul 2014 12:21:15 -0700 X-Google-Sender-Auth: b7JGWfem1QPwhr_tqhOcbHkNeX8 Message-ID: Subject: looking for help to document the new RSS stuff From: Adrian Chadd To: doc@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jul 2014 19:21:17 -0000 Hi! I'm looking for some help to document the new RSS stuff. I'm happy writing up some text documentation - shall I just email out the bits here so I can get some help with markup and such? Thanks! -a From owner-freebsd-doc@FreeBSD.ORG Sun Jul 6 19:46:52 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C7A8704; Sun, 6 Jul 2014 19:46:52 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4546D2F09; Sun, 6 Jul 2014 19:46:52 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s66Jkop6035614 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 6 Jul 2014 13:46:50 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s66JkoZL035611; Sun, 6 Jul 2014 13:46:50 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 6 Jul 2014 13:46:50 -0600 (MDT) From: Warren Block To: Adrian Chadd Subject: Re: looking for help to document the new RSS stuff In-Reply-To: Message-ID: References: User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 06 Jul 2014 13:46:51 -0600 (MDT) Cc: doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jul 2014 19:46:52 -0000 On Sun, 6 Jul 2014, Adrian Chadd wrote: > I'm looking for some help to document the new RSS stuff. > > I'm happy writing up some text documentation - shall I just email out > the bits here so I can get some help with markup and such? Is this for a man page or book or article? Mailing list threads can make it hard to track suggestions. Posting a diff to phabricator can actually be better, with all the suggestions in one place. Or maybe one doc person can help with an initial version first, and then put it on phabricator for review. But first, let's find out which kind of document. From owner-freebsd-doc@FreeBSD.ORG Sun Jul 6 19:48:43 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A7D878D for ; Sun, 6 Jul 2014 19:48:43 +0000 (UTC) Received: from mail-qc0-x22b.google.com (mail-qc0-x22b.google.com [IPv6:2607:f8b0:400d:c01::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C142A2F19 for ; Sun, 6 Jul 2014 19:48:42 +0000 (UTC) Received: by mail-qc0-f171.google.com with SMTP id w7so2966601qcr.2 for ; Sun, 06 Jul 2014 12:48:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=yzjTGCsUjvmvGTThxKUHhXhiDVQkO6hwLHUebQBNkW8=; b=UIx3HXfboXUOe0OWopgOEjjY08vlBRzKcLdgAzwZmZC0SYnYn9u3iTcQUpBA8MtL5t 1/5q76/9I+4pqck23SqKuqnwaY7+xs6whcsZNJfBdcLOygYGjsvB0uVriYuUvPs0+QoT oIc12BP7Rzat/Rf/y1OEHQwxa9VhCguIzgSpoTDOb3JjIh7UhkCGeoukUI+Ulwp69djc ogPLSTo8EBWeqz0GplVMTO2yBQFhllJdbNm4HOdEv99hiNerXSTjz6d83JGKHTR9tCqB 5bZe6Tqu9RrtWHitjShpbF29OxkY1zlHGDMLUB7p+vuDr8xwzNxvemMnwFzFY0ZFjMrn PzPw== MIME-Version: 1.0 X-Received: by 10.229.13.134 with SMTP id c6mr39508275qca.13.1404676121981; Sun, 06 Jul 2014 12:48:41 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.224.202.193 with HTTP; Sun, 6 Jul 2014 12:48:41 -0700 (PDT) In-Reply-To: References: Date: Sun, 6 Jul 2014 12:48:41 -0700 X-Google-Sender-Auth: RmMgvUtn0Q5kIl6FDP-hXd06EJI Message-ID: Subject: Re: looking for help to document the new RSS stuff From: Adrian Chadd To: Warren Block Content-Type: text/plain; charset=UTF-8 Cc: doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jul 2014 19:48:43 -0000 On 6 July 2014 12:46, Warren Block wrote: > On Sun, 6 Jul 2014, Adrian Chadd wrote: > >> I'm looking for some help to document the new RSS stuff. >> >> I'm happy writing up some text documentation - shall I just email out >> the bits here so I can get some help with markup and such? > > > Is this for a man page or book or article? Just manpages to start with. I'll worry about updating the handbook once I finish the rest of it off (IPv6, UDP, multi-socket, etc.) But I'd at least like a manpage describing what I'm about to throw into -HEAD so people can give it a whirl. -a From owner-freebsd-doc@FreeBSD.ORG Sun Jul 6 20:06:26 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3937CDF9; Sun, 6 Jul 2014 20:06:26 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id DE5FC20CB; Sun, 6 Jul 2014 20:06:25 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s66K6Obw036077 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 6 Jul 2014 14:06:24 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s66K6OHi036074; Sun, 6 Jul 2014 14:06:24 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 6 Jul 2014 14:06:24 -0600 (MDT) From: Warren Block To: Adrian Chadd Subject: Re: looking for help to document the new RSS stuff In-Reply-To: Message-ID: References: User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 06 Jul 2014 14:06:24 -0600 (MDT) Cc: doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jul 2014 20:06:26 -0000 On Sun, 6 Jul 2014, Adrian Chadd wrote: > On 6 July 2014 12:46, Warren Block wrote: >> On Sun, 6 Jul 2014, Adrian Chadd wrote: >> >>> I'm looking for some help to document the new RSS stuff. >>> >>> I'm happy writing up some text documentation - shall I just email out >>> the bits here so I can get some help with markup and such? >> >> >> Is this for a man page or book or article? > > Just manpages to start with. I'll worry about updating the handbook > once I finish the rest of it off (IPv6, UDP, multi-socket, etc.) But > I'd at least like a manpage describing what I'm about to throw into > -HEAD so people can give it a whirl. Okay. If it's a new manpage, it helps to find an existing one that is similar to use as a template. I'll contact you privately and we can work up an initial version. Thanks! From owner-freebsd-doc@FreeBSD.ORG Sun Jul 6 22:42:10 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCE984BD for ; Sun, 6 Jul 2014 22:42:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF9A22CF3 for ; Sun, 6 Jul 2014 22:42:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s66MgA7b060757 for ; Sun, 6 Jul 2014 23:42:10 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 176363] Remove mention of 'CVSup' from "Mirroring FreeBSD article" Date: Sun, 06 Jul 2014 22:42:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gavin@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jul 2014 22:42:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=176363 Gavin Atkinson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved Resolution|--- |FIXED --- Comment #1 from Gavin Atkinson --- I think we've now got rid of the last mentions of CVSup in live documentation :) Thanks for your bug report! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Mon Jul 7 08:02:40 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B7CBB1 for ; Mon, 7 Jul 2014 08:02:40 +0000 (UTC) Received: from forward5m.mail.yandex.net (forward5m.mail.yandex.net [IPv6:2a02:6b8:0:2519::3:14]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Certum Level IV CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3F251265B for ; Mon, 7 Jul 2014 08:02:40 +0000 (UTC) Received: from web13m.yandex.ru (web13m.yandex.ru [37.140.138.104]) by forward5m.mail.yandex.net (Yandex) with ESMTP id 3650929A11D3 for ; Mon, 7 Jul 2014 12:02:15 +0400 (MSK) Received: from 127.0.0.1 (localhost [127.0.0.1]) by web13m.yandex.ru (Yandex) with ESMTP id C7CD8176009F; Mon, 7 Jul 2014 12:02:14 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1404720134; bh=qFsESY++lCuc4a4W3gJ3q5ZZxlE3ikhchsWi3Lma/+M=; h=From:To:Subject:Date; b=FbAMTo8iEWmVrANWtKHq1zjxNGBbD3n0Q8swdsfmJYTrcRRJxrfit3RwnXNKK1VUc +ZqilEUwCEJWwccw5FC5BP20Q3zkoH8QW+UWX70XS1PHq3UiARz8kqF2OUaqQ1tnh8 p2KOEQfNfJgL21UW9Tk9XhrNSQAkPVHppIPxEV3I= Received: from [213.145.128.192] ([213.145.128.192]) by web13m.yandex.ru with HTTP; Mon, 07 Jul 2014 12:02:13 +0400 From: iWorm Envelope-From: iwormx99@yandex.ru To: doc@freebsd.org Subject: Wrong extention at ftp://ftp.freebsd.org/pub/FreeBSD/doc/ru_RU.KOI8-R/books/handbook/ in all RTF MIME-Version: 1.0 Message-Id: <2025461404720133@web13m.yandex.ru> X-Mailer: Yamail [ http://yandex.ru ] 5.0 Date: Mon, 07 Jul 2014 14:02:13 +0600 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=koi8-r X-Mailman-Approved-At: Mon, 07 Jul 2014 11:30:10 +0000 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jul 2014 08:02:40 -0000 Hello guys I'm trying to create the fb2 copy of FreeBSD handbook from .rtf file at ftp://ftp.freebsd.org/pub/FreeBSD/doc/ru_RU.KOI8-R/books/handbook/, and there are a couple of *.rtf files in bz2 and zip archives with the same size as that pdf versions of handbook have. book.pdf.bz2 Jul 06 06:37 7861k book.pdf.zip Jul 06 06:37 7958k book.rtf.bz2 Jul 06 06:37 7861k book.rtf.zip Jul 06 06:37 7958k And when MS word trying open that .rtf file it shows window to select the encoding where he writes thats that file begin with PDF-1.4 header Please correct. Also, please consider publishing version HandBook in FB2 format as many readers better reflect this format. Sincerely.......... äÏÂÒÏÇÏ ×ÒÅÍÅÎÉ ÓÕÔÏË, Õ×ÁÖÁÅÍÙÅ ÕÞÁÓÔÎÉËÉ ÐÒÏÅËÔÁ ÄÏËÕÍÅÎÔÁÃÉÉ FreeBSD îÅÄÁ×ÎÏ ÒÅÛÉÌ ÐÅÒÅÓÅÓÔØ Ó ×ÅÎÄÙ ÎÁ FreeBSD, ÐÙÔÁÀÓØ ÓÁÍÏÓÔÏÑÔÅÌØÎÏ ÓÄÅÌÁÔØ fb2 ËÎÉÇÕ ÄÌÑ ÞÔÅÎÉÑ ÎÁ ebook' Å ÉÚ RTF ËÏÐÉÉ Handbook'Á É ÏËÁÚÁÌÏÓØ ÞÔÏ ÆÁÊÌÙ ÕËÁÚÁÎÎÙÅ ËÁË book.rtf.zip É book.rtf.bz2 ÍÁÌÏ ÔÏÇÏ ÞÔÏ ÉÍÅÀÔ ÏÄÉÎÏËÏ×ÙÊ Ó PDF ×ÅÒÓÉÑÍÉ ÒÁÚÍÅÒ ÔÁË ÏÎÉ É Ñ×ÌÑÀÔÓÑ PDF ×ÅÒÓÉÑÍÉ. îÁ ÎÉÈ ÐÒÏÓÔÏ ÓÍÅÎÉÌÉ ÒÁÛÉÒÅÎÉÑ Ó PDF ÎÁ RTF. book.pdf.bz2 Jul 06 06:37 7861k book.pdf.zip Jul 06 06:37 7958k book.rtf.bz2 Jul 06 06:37 7861k book.rtf.zip Jul 06 06:37 7958k ðÏÖÁÌÕÊÓÔÁ ÐÏÐÒÁ×ØÔÅ. ôÁËÖÅ ÐÒÏÛÕ ÒÁÓÓÍÏÔÒÅÔØ ×ÏÚÍÏÖÎÏÓÔØ ÐÕÂÌÉËÁÃÉÉ ×ÅÒÓÉÉ HandBook'a É × fb2 ÆÏÒÍÁÔÅ ÔÁË ËÁË ÍÎÏÇÉÅ ÒÉÄÅÒÙ ÌÕÞÛÅ ÏÔÏÂÒÁÖÁÀÔ ÄÁÎÎÙÊ ÆÏÒÍÁÔ. ó Õ×ÁÖÅÎÉÅÍ..... From owner-freebsd-doc@FreeBSD.ORG Mon Jul 7 23:34:41 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 12F775D4 for ; Mon, 7 Jul 2014 23:34:41 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE8982D60 for ; Mon, 7 Jul 2014 23:34:40 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s67NYeTp082259 for ; Tue, 8 Jul 2014 00:34:40 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191726] New: exec.timeout documentation in jail(8) is confusing Date: Mon, 07 Jul 2014 23:34:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jul 2014 23:34:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191726 Bug ID: 191726 Summary: exec.timeout documentation in jail(8) is confusing Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: yaneurabeya@gmail.com exec.timeout The maximum amount of time to wait for a command to complete. If a command is still running after this many seconds have passed, the jail not be created or removed. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 8 00:16:48 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C094EC4E for ; Tue, 8 Jul 2014 00:16:48 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A7EB720BE for ; Tue, 8 Jul 2014 00:16:48 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s680GmrF061574 for ; Tue, 8 Jul 2014 01:16:48 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191726] exec.timeout documentation in jail(8) is confusing Date: Tue, 08 Jul 2014 00:16:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2014 00:16:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191726 --- Comment #1 from yaneurabeya@gmail.com --- (In reply to yaneurabeya from comment #0) > exec.timeout > The maximum amount of time to wait for a command to complete. > If > a command is still running after this many seconds have passed, > the jail not be created or removed. Just to be clear, the last sentence is confusing (sounds like a sentence fragment). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 8 09:32:02 2014 Return-Path: Delivered-To: www@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DD9999E5 for ; Tue, 8 Jul 2014 09:32:01 +0000 (UTC) Received: from smtp.smtpout.orange.fr (smtp11.smtpout.orange.fr [80.12.242.133]) by mx1.freebsd.org (Postfix) with ESMTP id F30A02E23 for ; Tue, 8 Jul 2014 09:32:00 +0000 (UTC) Received: from Bureau ([82.121.66.51]) by mwinf5d46 with ME id PlXd1o00H16MTLq03lXs7f; Tue, 08 Jul 2014 11:31:53 +0200 X-ME-Helo: Bureau X-ME-Date: Tue, 08 Jul 2014 11:31:53 +0200 X-ME-IP: 82.121.66.51 From: "CT INDUSTRIE" To: www@FreeBSD.org Reply-To: "CT INDUSTRIE Mr Yakov" Subject: generators for sales Date: Tue, 8 Jul 2014 11:31:54 +0200 Mime-Version: 1.0 Message-ID: <20140708091620.3784DBCF72@Bureau> X-Antivirus: avast! (VPS 140707-1, 07/07/2014), Outbound message X-Antivirus-Status: Not-Tested Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2014 09:32:02 -0000 we have available for sale 1- caterpillar 35 16 gas1110 kva years 2000 42000 hours Transfo accessoires avaible: panel control transformer,exchangeur Air cooling systeme,gas train,muffler,pipe recording Price Loading on trucks 45 000=E2=82=AC=E2=82=AC 1- caterpillar 35 24 gas 1672 kva years 2000 42000 hours Transfo accessoires avaible: panel control transformer,exchangeur Air cooling systeme,gas train,muffler,pipe recording Price Loading on trucks 45 000=E2=82=AC=E2=82=AC =E3=80=80 Groupe =C3=A9lectrog=C3=A8ne Gas Type DEUTZ TBG 620V16 Puissance 1680 Kva N=C2=B0de s=C3=A9rie 2201591 Mise en service en 2000 Prix HT 35 000=E2=82=AC=E2=82=AC 3 Moteurs Mitsubishi GSU 16 PTK 2000Kw GAS GE1 Mise en service 2001 GE1 N=C2=B0 de s=C3=A9rie 503 405 19 Mise en servi= ce 2001 GE2 Mise en service 2001 GE2 N=C2=B0 de s=C3=A9rie 503 405 29 Mise en servi= ce 2001 GE3 Mise en service 2001 N=C2=B0 de s=C3=A9rie de s=C3=A9rie 503 405 12 Mis= e en service 2001 1 MITSUBISHI GSU 12PTK GAS GE1 Type 2412G N=C2=B0de s=C3=A9rie 339528 Mise en service en 2000 1550kW Prix de vente de la centrale complet HT 160 000=E2=82=AC=E2=82=AC Engine Wartsila Serie CW 220 / 2875kVa GAS Year : 2000 / Hours : 37856 Alternator : Stamford LV 824E / Puissance apparente 2875 kVA / Tension 400V= / 1500 tr/min Control Command : Promics 2.00 + Chargeur CPN-D + Synchro 909 + C2S Good condition FRANCE / Available Now PRICE 95000=E2=82=AC LOADED ON TRUCK OR CONTENEUR Moteur JENBACHER Type J612GSE01 Puissance Motor 1500KW Puissance alternator 1464Kw Years 1999 Hours 39 000 generator exchanger aero 8m*2m50 control panel 3m*0m60*2m silencor and exhaut gas ramp circulation pump maintenance booking TOTAL PRICE LOADING ON TRUCKS 48 000=E2=82=AC=E2=82=AC Generator cummins 1000kVa/ Power alternator 1600Kva Model : KTA50 G1 Alternator : Leroy somer Year : 1994 Hours numbers 7000H Version: Hood =E3=80=80 Groupe =C3=A9lectrog=C3=A8ne Marque CATERPILLAR FIOUL Puissances 1000 Kva Type 3508 Moteur 8 cylindres Ann=C3=A9e 1990 5000 Heures services radiateur s=C3=A9parer 4 a=C3=A9rothermes Prix de vente HT 30 000=E2=82=AC charger sur camion =E3=80=80 =E3=80=80 Generator cummins 1400kVa Model : KTTA50 G Alternator : Leroy somer Year : 1988 Hours numbers 9500H Version: Hood Good condition FRANCE / Available Now PRICE : 35000=E2=82=AC LOADED ON TRUCK OR CONTENEUR Generator SACM 1250KVA Model : UD 30 G Alternator : IEC34 Year : 1999 Good condition FRANCE / Available Now PRICE 23000=E2=82=AC LOADED ON TRUCK OR CONTENAIR Generator cummins 1000kVa/ Power alternator 1600Kva Model : KTA50 G1 Alternator : Leroy somer Year : 1994 Hours numbers 7000H Version: Hood Good condition FRANCE / Available Now PRICE 38000=E2=82=AC LOADED ON TRUCK OR CONTENAIR Generator cummins 400kva Model : NTA 1150 G Alternator : Leroy somer Year : 1982 Hours numbers 1970H Version: Chassis Good condition FRANCE / Available Now PRICE 9500=E2=82=AC LOADED ON TRUCK OR CONTENAIR PACKTAGE FOR 3 GENSET Generator cummins 920kVa / radiator separated Model : KTA50 G1 Alternator : Althsom Year : 1989 Hours numbers 5500H Version: Chassis ----------------------------------------------------- Generator cummins 575kVa / radiator separated Model : VTA28 G3 Alternator : Althsom Year : 1989 Hours numbers 5500H Version: Chassis ------------------------------------------------------- Generator cummins 725kVa Model : VTA28 G3 Alternator : Althsom Version: Contenair/ Year : 1988 Hours numbers 5500H Good condition FRANCE / Available Now PACKAGE PRICE 55000=E2=82=AC LOADED ON TRUCK OR CONTENAIR PICTURES=C2=A0 ON REQUEST CTINDUSTRIE 4 RUE DE LA PRESSE BRUXELLES- BELGIQUE Tel: +336 03 86 59 55=C2=A0=C2=A0 Fax: +331 48 45 47 70=C2=A0=C2=A0 Gsm: +3= 36 03 86 59 55 mail ctindustrie@orange.fr ( "mailto:ctindustrie@orange.fr" ) TVA BE 0847.703.388 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D Message compos=C3=A9 et exp=C3=A9di=C3=A9 avec la version d'=C3=A9valuatio= n gratuite de Sarbacane=C2=AE, le logiciel d'e-mailing professionnel pour Windows de Sarbacane Software. Attention, Sarbacane Software n'est responsable ni du contenu de ce messag= e ni du fait qu'il vous a =C3=A9t=C3=A9 exp=C3=A9di=C3=A9. Pour toute question = au sujet de ce message, merci de prendre contact avec l'exp=C3=A9diteur. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D From owner-freebsd-doc@FreeBSD.ORG Tue Jul 8 11:43:12 2014 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CED4DF2D for ; Tue, 8 Jul 2014 11:43:12 +0000 (UTC) Received: from mail-yh0-x248.google.com (mail-yh0-x248.google.com [IPv6:2607:f8b0:4002:c01::248]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 97EF42921 for ; Tue, 8 Jul 2014 11:43:12 +0000 (UTC) Received: by mail-yh0-f72.google.com with SMTP id f10so23798229yha.3 for ; Tue, 08 Jul 2014 04:43:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:message-id:date:subject:from:to:content-type; bh=WY9ckH6xbrl9H8HM7sB18zxctIO0hN7BQH1fBGsVdug=; b=Z63KHnNiAqfLxpCxI1dxfllQm0533Py5VJF0eDnvK5Wo8jaoOd/RAh0hckNvnEBIms j74iHwZMW+jSSnzSwXamijUB6CBVwKqzHG6HeEQLJ9kxhzVYR7WDiXS0p5jPs4HS6147 kgB1pQ+SNpuk3tSuAohG78dscGT7GGs8IpLQTYwFUZ7ZDhi0tomKhf8u/bxpS07xu8/s DeU805+/p6zWy/6upxl83ObpGCrr6dbaBwwWeoE1zpJz1Ci22vFYTOThbsleagy3QyqJ LmGAAagwlhR8PIS8usyyGm3KDJX6dsiUdcmvcam9aKRNc56A2ej9FD1LtIVcjRKMW9m7 u9+g== MIME-Version: 1.0 X-Received: by 10.52.36.211 with SMTP id s19mr14626975vdj.7.1404819791822; Tue, 08 Jul 2014 04:43:11 -0700 (PDT) Message-ID: <20cf307abe91aa46cb04fdad18c2@google.com> Date: Tue, 08 Jul 2014 11:43:11 +0000 Subject: www.freebsd.org From: Miinette To: doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2014 11:43:12 -0000 Hi, I found your contact over the web and wanted to send you a quick note. With Search Engine Optimization and Web Development, I can help your business achieve better ranking on prominent search engines like Google, Bing & others to generate more leads/sales. This may look like one of those spurious foreign emails you get in your inbox every day that promise big but delivers nothing. Just to be upfront we are happy to discuss your requirements. So, let me know if you are interested in receiving further information/quote with no strings attached from our team of SEO & Web experts. Best regards, Minette Web Expert / Specialist *HubScope* SEO LLC Melbourne | Sydney | Perth | Brisbane | Adelaide & Hobart Disclaimer: We respect your privacy and want to make sure you are aware of a few things. By replying to this email, you authorize our affiliates that can help with your project to call you at the number you provided, and you understand that they may use automated phone technology to call you. At no time are you required to make a purchase. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 8 20:43:51 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B5C02FD for ; Tue, 8 Jul 2014 20:43:51 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 616B42F42 for ; Tue, 8 Jul 2014 20:43:51 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s68KhpU4057491 for ; Tue, 8 Jul 2014 21:43:51 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191751] New: powl(3) is not documented Date: Tue, 08 Jul 2014 20:43:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: yaneurabeya@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2014 20:43:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191751 Bug ID: 191751 Summary: powl(3) is not documented Product: Documentation Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: Documentation Assignee: freebsd-doc@FreeBSD.org Reporter: yaneurabeya@gmail.com powl(3) is defined via math.h and is provided via libm, but isn't documented in pow(3). More information about what POSIX defines powl(3) as can be found here: http://pubs.opengroup.org/onlinepubs/9699919799/functions/pow.html -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 9 15:36:39 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34F584BF for ; Wed, 9 Jul 2014 15:36:39 +0000 (UTC) Received: from astart2.astart.com (108-248-95-193.lightspeed.sndgca.sbcglobal.net [108.248.95.193]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C8862B5A for ; Wed, 9 Jul 2014 15:36:38 +0000 (UTC) Received: from laptop_84.private (localhost [127.0.0.1]) by astart2.astart.com (8.14.4/8.14.4) with ESMTP id s69FaVjK080741 for ; Wed, 9 Jul 2014 08:36:31 -0700 (PDT) (envelope-from papowell@astart.com) Message-ID: <53BD617E.1040700@astart.com> Date: Wed, 09 Jul 2014 08:36:30 -0700 From: Patrick Powell Reply-To: papowell@astart.com Organization: Astart Technologies User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130714 Thunderbird/17.0.7 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Handbook - mention portsnap in Section 5.3 - finding software, pkgng respository Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jul 2014 15:36:39 -0000 I notice that Section 5.3 - Finding Software describes how to search for software but there are a couple of steps left out that might confuse a newbie. I think you need to run 'portsnap fetch install' if you did not install the ports when you did the system installation. In any case, it is a good idea. You might want to put a forward reference to section 5.4 - Using pkgng. Also, on a FreeBSD 9.2 install, when you first enter 'pkg search subversion' you get the message to install pkgng. This works fine, you get pkgng version 1.2.7_3 installed. However, when you reenter the 'pkg search subversion' you get 'pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository configuration file.' I suggest that this error message be modified to be '"... Please use man pkg ...' I strongly suggest that the man page for pkgng have an example of a repository file and details of its location. Also, details of the contents of the respository file. I also extremely strongly suggest that Section 5.4 - using pkgng ... have an example and really really detailed instructions on how to install the repository file. I also suggest that since the installation of pgk has add/created the pkg.conf and pkg.conf.sample, you might as well create the /usr/local/etc/pkg/repos/FreeBSD.conf.example file as well, and point this out in the error message. I would suggest that this be done ASAP as without this information it is difficult for newbies to use/install/understand the pkgng system. Note: I think pkg is a GREAT improvement over the old pkg_add, but the legacy documentation in the FreeBSD handbook needs to be updated. If somebody sends me either a set of files for Handbook Section 5.2, 5.3, 5.4 or idiot level instructions on how to access the files (SVN, etc.) I will edit them and submit them for comment. I can put the content in the files, but some expert may need to massage the formatting a bit. From owner-freebsd-doc@FreeBSD.ORG Wed Jul 9 19:02:10 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28D1DEA3 for ; Wed, 9 Jul 2014 19:02:10 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C9C862E76 for ; Wed, 9 Jul 2014 19:02:09 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s69J232C071914 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 9 Jul 2014 13:02:03 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s69J23xY071911; Wed, 9 Jul 2014 13:02:03 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Wed, 9 Jul 2014 13:02:03 -0600 (MDT) From: Warren Block To: Patrick Powell Subject: Re: Handbook - mention portsnap in Section 5.3 - finding software, pkgng respository In-Reply-To: <53BD617E.1040700@astart.com> Message-ID: References: <53BD617E.1040700@astart.com> User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Wed, 09 Jul 2014 13:02:03 -0600 (MDT) Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jul 2014 19:02:10 -0000 On Wed, 9 Jul 2014, Patrick Powell wrote: > I notice that Section 5.3 - Finding Software describes how to search for > software but there are a couple > of steps left out that might confuse a newbie. ... > Note: I think pkg is a GREAT improvement over the old pkg_add, but the > legacy documentation in the FreeBSD handbook needs to be updated. If > somebody sends me either a set of files for Handbook Section 5.2, 5.3, 5.4 > or idiot level instructions on how to access the files (SVN, etc.) I will > edit them and submit them for comment. > I can put the content in the files, but some expert may need to massage the > formatting a bit. We have a book for that: http://www.freebsd.org/doc/en_US.ISO8859-1/books/fdp-primer/ The quick start shows the initial steps: http://www.freebsd.org/doc/en_US.ISO8859-1/books/fdp-primer/overview-quick-start.html From owner-freebsd-doc@FreeBSD.ORG Wed Jul 9 20:41:01 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 05F14949 for ; Wed, 9 Jul 2014 20:41:01 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4F5F27C1 for ; Wed, 9 Jul 2014 20:41:00 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id E3632B9C1; Wed, 9 Jul 2014 16:40:59 -0400 (EDT) From: John Baldwin To: freebsd-doc@freebsd.org Subject: Re: Annotation for doc review Date: Wed, 9 Jul 2014 13:54:57 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.4-CBSD-20140415; KDE/4.5.5; amd64; ; ) References: In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201407091354.57645.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Wed, 09 Jul 2014 16:41:00 -0400 (EDT) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jul 2014 20:41:01 -0000 On Friday, July 04, 2014 4:54:42 pm Warren Block wrote: > The phabricator instance has shown that some review can be done more > easily. > > We've talked before about having periodic reviews of parts of the > documentation. It turns out that experts rarely read the docs on things > they know about, but are the ones that can produce very valuable > feedback. > > Phabricator probably does not lend itself well to reviewing our DocBook > documents. The source and rendered versions are just too different to > review easily, even for those who are familiar with DocBook. > > Ideally, we'd be able to show a rendered HTML version of the document > and let people comment on it. Definitely agreed. > There are commercial services out there for that, but also free > Javascript implementations that we could use directly, like this: > > http://annotatorjs.org/ > > Note that I am not suggesting this would go on our documentation web > pages. Instead, we would create a small rendered version of part of a > document, say one subsection out of a chapter, and put that up somewhere > for review and annotation. At the end of a limited time, maybe a week > or two, the annotations would be gone through, adapted, and changes > applied. Then the process is repeated for a different documentation > section. The annotated web page is just temporary. > > The biggest problems I see are > > user authentication: so we can avoid spam and vandalism, and track > suggestions by user. For best results, this would use existing > credentials and not require creating a new account Talk with clusteradm@ about the setup they use for bugzilla (and I believe are going to adopt for phabric) > logging: annotations must be saved until they can be processed > > If these problems can be addressed, we can make it doc review easy for > everyone. This sounds like an excellent idea. -- John Baldwin From owner-freebsd-doc@FreeBSD.ORG Thu Jul 10 10:00:44 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B06C331 for ; Thu, 10 Jul 2014 10:00:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 837172867 for ; Thu, 10 Jul 2014 10:00:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6AA0ijE030093 for ; Thu, 10 Jul 2014 10:00:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191726] exec.timeout documentation in jail(8) is confusing Date: Thu, 10 Jul 2014 10:00:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jul 2014 10:00:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191726 --- Comment #2 from commit-hook@freebsd.org --- A commit references this bug: Author: gavin Date: Thu Jul 10 10:00:11 UTC 2014 New revision: 268488 URL: http://svnweb.freebsd.org/changeset/base/268488 Log: Reword an awkward option description PR: 191726 Reported by: yaneurabeya gmail.com MFC after: 3 days Changes: head/usr.sbin/jail/jail.8 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jul 10 10:02:31 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C906838D for ; Thu, 10 Jul 2014 10:02:31 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1335287A for ; Thu, 10 Jul 2014 10:02:31 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6AA2Vww050656 for ; Thu, 10 Jul 2014 10:02:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 191726] exec.timeout documentation in jail(8) is confusing Date: Thu, 10 Jul 2014 10:02:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gavin@FreeBSD.org X-Bugzilla-Status: Needs MFC X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gavin@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jul 2014 10:02:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191726 Gavin Atkinson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Needs MFC Assignee|freebsd-doc@FreeBSD.org |gavin@FreeBSD.org --- Comment #3 from Gavin Atkinson --- Thanks, I've changed it to: exec.timeout The maximum amount of time to wait for a command to complete, in seconds. If a command is still running after this timeout has passed, the jail will not be created or removed, as appropriate. I'll merge it in a few days. Gavin -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Thu Jul 10 10:49:30 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93119EF8 for ; Thu, 10 Jul 2014 10:49:30 +0000 (UTC) Received: from mail-gw12.york.ac.uk (mail-gw12.york.ac.uk [144.32.129.162]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5AE972C38 for ; Thu, 10 Jul 2014 10:49:30 +0000 (UTC) Received: from ury.york.ac.uk ([144.32.64.162]:25084) by mail-gw12.york.ac.uk with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1X5Bup-0000CM-3n; Thu, 10 Jul 2014 11:49:27 +0100 Date: Thu, 10 Jul 2014 11:49:26 +0100 (BST) From: Gavin Atkinson X-X-Sender: gavin@ury.york.ac.uk To: Warren Block Subject: Re: Annotation for doc review In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jul 2014 10:49:30 -0000 On Fri, 4 Jul 2014, Warren Block wrote: > We've talked before about having periodic reviews of parts of the > documentation. It turns out that experts rarely read the docs on things they > know about, but are the ones that can produce very valuable feedback. > > Ideally, we'd be able to show a rendered HTML version of the document and let > people comment on it. > > There are commercial services out there for that, but also free Javascript > implementations that we could use directly, like this: > > http://annotatorjs.org/ I'd be very happy to see something like this. > Note that I am not suggesting this would go on our documentation web pages. Could you elaborate as to why you think this is a bad idea? I think a significant part of the benefit is receiving comments from people who only drop into the documentation for a few seconds and then vanish again. These are the sort of people who are unlikely to go out of their way to reiew docs for us, but might leave a comment if there was an easy mechanism to do so. PostgreSQL used to have a facility to comment directly on the web page, though they seem to have instead moved to a forum approach. Could we also consider that perhaps? I don't know how easy it would be for every page to have its own section on the forum, but maybe that could work? Though I do very much prefer their old approach, to be honest. > Instead, we would create a small rendered version of part of a document, say > one subsection out of a chapter, and put that up somewhere for review and > annotation. At the end of a limited time, maybe a week or two, the > annotations would be gone through, adapted, and changes applied. Then the > process is repeated for a different documentation section. The annotated web > page is just temporary. > > The biggest problems I see are > > user authentication: so we can avoid spam and vandalism, and track > suggestions by user. For best results, this would use existing > credentials and not require creating a new account To some extent, we only need to avoid spam if the suggestions are not immediately published. If there is some moderation process before they become visible, that would likely be suficient. Gavin From owner-freebsd-doc@FreeBSD.ORG Thu Jul 10 10:55:58 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from hub.FreeBSD.org (hub.freebsd.org [IPv6:2001:1900:2254:206c::16:88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0AB92EB; Thu, 10 Jul 2014 10:55:57 +0000 (UTC) Date: Thu, 10 Jul 2014 06:55:54 -0400 From: Glen Barber To: Gavin Atkinson Subject: Re: Annotation for doc review Message-ID: <20140710105554.GC25581@hub.FreeBSD.org> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="Izn7cH1Com+I3R9J" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jul 2014 10:55:58 -0000 --Izn7cH1Com+I3R9J Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 10, 2014 at 11:49:26AM +0100, Gavin Atkinson wrote: > PostgreSQL used to have a facility to comment directly on the web page,= =20 > though they seem to have instead moved to a forum approach. Please, no. Glen --Izn7cH1Com+I3R9J Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJTvnE6AAoJELls3eqvi17QfDMP/irAnz9zPYiBubpKPFLIV/uD VfSEQk+irBW6x9Pe3acwuAJKNmXSluTAfUZt3bllmXvxZbPIlvZ7ebsbAns2t5iE bdys6QCnIASq3LCd5bUYPzzV/U6r22D88Jo7ua6GZePv3pxVdrLdmNJB+wmOiihy JIieUEMTaN/53UazrMq11xT9pNR5ltyaE3i8/H4xnuQiANtQxCXA3P0bfUjlC0iD Wqey61MHyrji3a7RO1Lq9OxDtjaakNpXV7fL2be02dUakJOQ7iYEuVyBxJqvLvzA 4aFlUSkWJ60sYSsANT55dAkLm2BjYqZpM9cYIUzj1+T+guJVX/tIgehZNfYWAW/Z pauuBCcb+yuQVKRZkPKyEni5S7J7MUtvnJuiDsWw4s1xT0KCu2APgy9noJ7JqWoB d/vzXd42y1Mv/tAr7QO1JngqSHSV4OiMI58Lbnat2c/cXukulqVFQ/ZTLGxCt5iR f4iI0hmF8E/cIs0RDKEOZJrNByonxsab9kH8jacnMCRThhXCM6DFj65dtePeWIEE McGk2k3JUhCQJLx2zBgyDoZODkaIUtPlILosU9vUEbmIbV3hMES0osVTKuwzq+X3 00KDDlkmFbvmNva9HZ0+D6lpIDHO/YvVjqB3Z3KYQPtg4hD9filyiq+mQisxKKAc eejoJhFlMbJloLPUFwN+ =pdGJ -----END PGP SIGNATURE----- --Izn7cH1Com+I3R9J-- From owner-freebsd-doc@FreeBSD.ORG Thu Jul 10 11:15:40 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6EA8588; Thu, 10 Jul 2014 11:15:40 +0000 (UTC) Received: from mail-gw11.york.ac.uk (mail-gw11.york.ac.uk [144.32.129.150]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DF032E84; Thu, 10 Jul 2014 11:15:40 +0000 (UTC) Received: from ury.york.ac.uk ([144.32.64.162]:31358) by mail-gw11.york.ac.uk with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1X5CK9-00061e-MP; Thu, 10 Jul 2014 12:15:37 +0100 Date: Thu, 10 Jul 2014 12:15:36 +0100 (BST) From: Gavin Atkinson X-X-Sender: gavin@ury.york.ac.uk To: Glen Barber Subject: Re: Annotation for doc review In-Reply-To: <20140710105554.GC25581@hub.FreeBSD.org> Message-ID: References: <20140710105554.GC25581@hub.FreeBSD.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jul 2014 11:15:40 -0000 On Thu, 10 Jul 2014, Glen Barber wrote: > On Thu, Jul 10, 2014 at 11:49:26AM +0100, Gavin Atkinson wrote: > > PostgreSQL used to have a facility to comment directly on the web page, > > though they seem to have instead moved to a forum approach. > > Please, no. To which half? G From owner-freebsd-doc@FreeBSD.ORG Thu Jul 10 11:18:24 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from hub.FreeBSD.org (hub.freebsd.org [IPv6:2001:1900:2254:206c::16:88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F06836A2; Thu, 10 Jul 2014 11:18:23 +0000 (UTC) Date: Thu, 10 Jul 2014 07:18:20 -0400 From: Glen Barber To: Gavin Atkinson Subject: Re: Annotation for doc review Message-ID: <20140710111820.GD25581@hub.FreeBSD.org> References: <20140710105554.GC25581@hub.FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="HWvPVVuAAfuRc6SZ" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jul 2014 11:18:24 -0000 --HWvPVVuAAfuRc6SZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 10, 2014 at 12:15:36PM +0100, Gavin Atkinson wrote: > On Thu, 10 Jul 2014, Glen Barber wrote: >=20 > > On Thu, Jul 10, 2014 at 11:49:26AM +0100, Gavin Atkinson wrote: > > > PostgreSQL used to have a facility to comment directly on the web pag= e,=20 > > > though they seem to have instead moved to a forum approach. > >=20 > > Please, no. >=20 > To which half? >=20 Forum approach. Glen --HWvPVVuAAfuRc6SZ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJTvnZ8AAoJELls3eqvi17QdroP/iaR83+O1wJ7R+tYr73r+PYN SpjQ9EwT9pX/h+dumZEI0ERT8DG3mhdnAFTgDYW7P5XIGaIgShOtN196u08Wab0e K/OfSU/iWqxcnucfeE+Ell49BYEaGABZH4pKgKtjGYETOUwNcxpPXR3ezOF/MxmL cuWxCgpk7cIxfvIhBhGgJVloD0Zbb433ypkTaS/NGmx9r78Swb0GHDBm/TXz+hZe YeyUMlU9duIlfRBelBYFjQVgJiF0U0mLZxBD5d9dFgDsrzcuEiOkgXsgIUKREvXU EY59+5XQxCJKEVr//kMfOiILDbSJtkV7NeZ7AZ3VE5wbvZmkS55tW7u7Fq3Tyy/i CIOLbAyZUr1p3G2qp0e0R9aVATDSt8Y7iCk/5TmTXXkGCLdmp2ND9G6ztUgbrTx2 71CMvscyt1YXSddrA5Xrd0iqW6GEkqePxWJXSDZNnp+ah1LNfV1p36JyqNXagDJx r57i2HbZ7dWoYw+QiUoGdjrEVMSjv7zkytv8ArznvaBjSJPiV5z3lyyvGH5eWJmr WNhLViXI1+p/vOZu7n3lNr70hoHtUJ5xpa6I4s+JuFVLmKJUIlu4tdxEOvqigpGJ wr20Jr9zguprCnDjz1rkEqFmjNStfZvRNNk0IdRLOpn/9Nc4Qm24EKz6pzn34NPH geqd6hrjyKNhFzjjj8Gq =Mzfd -----END PGP SIGNATURE----- --HWvPVVuAAfuRc6SZ-- From owner-freebsd-doc@FreeBSD.ORG Thu Jul 10 14:22:49 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB4BCAA6; Thu, 10 Jul 2014 14:22:49 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D62F2057; Thu, 10 Jul 2014 14:22:49 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s6AEMeQH005674 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 10 Jul 2014 08:22:40 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s6AEMeWk005671; Thu, 10 Jul 2014 08:22:40 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 10 Jul 2014 08:22:40 -0600 (MDT) From: Warren Block To: Gavin Atkinson Subject: Re: Annotation for doc review In-Reply-To: Message-ID: References: User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Thu, 10 Jul 2014 08:22:40 -0600 (MDT) Cc: freebsd-doc@FreeBSD.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jul 2014 14:22:49 -0000 On Thu, 10 Jul 2014, Gavin Atkinson wrote: > On Fri, 4 Jul 2014, Warren Block wrote: > >> We've talked before about having periodic reviews of parts of the >> documentation. It turns out that experts rarely read the docs on things they >> know about, but are the ones that can produce very valuable feedback. >> >> Ideally, we'd be able to show a rendered HTML version of the document and let >> people comment on it. >> >> There are commercial services out there for that, but also free Javascript >> implementations that we could use directly, like this: >> >> http://annotatorjs.org/ > > I'd be very happy to see something like this. > >> Note that I am not suggesting this would go on our documentation web pages. > > Could you elaborate as to why you think this is a bad idea? I think a > significant part of the benefit is receiving comments from people who only > drop into the documentation for a few seconds and then vanish again. > These are the sort of people who are unlikely to go out of their way to > reiew docs for us, but might leave a comment if there was an easy > mechanism to do so. The goal for this particular project is to have limited review events, kind of like a sprint. Limiting the scope to a particular section of documentation and limiting the time for review helps people know what to expect. Committers would volunteer ahead of time for the responsibility of going through the suggestions and changing the document, and know the limits of the project. This allows for budgeting time to make the changes. It's a fixed length rather than open-ended time commitment. Reviewers know that there is a deadline, and also that their suggestions will be considered immediately after that deadline. So there is an incentive to comment immediately. We can also announce these reviews to selected groups of users. A review of the Handbook X11 configuration section could be announced on the freebsd-x11 mailing list. These limited reviews could be used as test cases to see whether it could be used full-time on all docs. My concern is that someone would have to continuously monitor the comments and implement changes, or commenters could be discouraged. We have the beginnings that situation with doc bug reports now. > PostgreSQL used to have a facility to comment directly on the web page, > though they seem to have instead moved to a forum approach. Could we also > consider that perhaps? I don't know how easy it would be for every page > to have its own section on the forum, but maybe that could work? Though I > do very much prefer their old approach, to be honest. It's technically possible, but again, monitoring that for suggestions would require a long-term commitment. Without that, users have less incentive to comment, and those that do comment could become discouraged without some kind of reasonably quick feedback. >> user authentication: so we can avoid spam and vandalism, and track >> suggestions by user. For best results, this would use existing >> credentials and not require creating a new account > > To some extent, we only need to avoid spam if the suggestions are not > immediately published. If there is some moderation process before they > become visible, that would likely be suficient. There might also be anti-spam features in the annotation system, or they could be added. If we could use the same credentials as for Bugzilla, that would give people another reason to sign up. And it would be handy to be able to correspond by email with a commenter to ask them about details. It would be nice to be able to do this from the annotation web page: commenter leaves an unclear comment, committer clicks on a "respond by email" button, and it triggers a mailto link. From owner-freebsd-doc@FreeBSD.ORG Fri Jul 11 17:02:46 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBCD6DF9 for ; Fri, 11 Jul 2014 17:02:46 +0000 (UTC) Received: from hawking.rebel.net.au (hawking.rebel.net.au [203.20.69.83]) (using TLSv1.1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A31582FA2 for ; Fri, 11 Jul 2014 17:02:45 +0000 (UTC) Received: from [192.168.0.65] (softdnserr [::ffff:58.160.128.249]) (AUTH: LOGIN davidn, SSL: TLSv1/SSLv3,128bits,AES128-SHA) by hawking.rebel.net.au with ESMTPSA; Sat, 12 Jul 2014 02:27:31 +0930 id 000000000008006C.53C0177C.000013B0 Message-ID: <53C01775.4080203@davidnewall.com> Date: Sat, 12 Jul 2014 02:27:25 +0930 From: David Newall User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Booting FreeBSD from an LVM volume Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jul 2014 17:02:46 -0000 I've written a brief article explaining how to boot FreeBSD from a LVM2 volume. Extensive search of the web suggested it could not be done, but it can, and easily. I thought this might be of interest to the community, and perhaps even suitable for inclusion on the FreeBSD web or handbook. See http://davidnewall.com/papers/Boot-FreeBSD-on-LVM2.html. From owner-freebsd-doc@FreeBSD.ORG Sat Jul 12 09:15:23 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4F84F0E for ; Sat, 12 Jul 2014 09:15:23 +0000 (UTC) Received: from mail-ie0-x245.google.com (mail-ie0-x245.google.com [IPv6:2607:f8b0:4001:c03::245]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 892A12069 for ; Sat, 12 Jul 2014 09:15:23 +0000 (UTC) Received: by mail-ie0-f197.google.com with SMTP id rd18so11306871iec.8 for ; Sat, 12 Jul 2014 02:15:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:message-id:date:subject:from:to:content-type; bh=DvzwbExoc2dZQgUU8PoKtfL+o92FFvRGDxHXlQUCejQ=; b=NfsQy/r+446X+FCSlrutAvOkm6BKzed4Ymm+91WD0KuzbdAbaOt3HnSgIjm+x1Lnsb sTeEofy0mO1ZcoGqnruh0V24F0Ra1qA5AKdTl3z/x0UZpFP2m6qGYzfKG936I9d6q2aS sb84qLFNl8jonhUFbtjN6ZI6xV2eFTzg43UZYkjmEPVSQymZul/bh5DkNuMUsv2Ee18X ZRnc2t2uPhbQ/74d6WUjkMf66Ch1jiVLNVrjpLN3J+WKqwjeALk9uT7nUYZwOMc0/3dW COTexkkgtCpw+x4Dkep1JfzUu/z3rT7w0Qt7GHCmGS1ZCdiAWSr3eCZ5g5u4Ns1yvt99 mtng== MIME-Version: 1.0 X-Received: by 10.182.250.229 with SMTP id zf5mr2184771obc.4.1405156522951; Sat, 12 Jul 2014 02:15:22 -0700 (PDT) Message-ID: <001a11c2b9a66788bf04fdfb7f2a@google.com> Date: Sat, 12 Jul 2014 09:15:22 +0000 Subject: www.freebsd.org From: Olivia To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jul 2014 09:15:23 -0000 Hi, If you want your website to work harder, WE can help you measure your performances, identify areas of weakness, and clear a path to better conversion rates. There's no single reason why visitors to your website fail to become customers. The need is to attract visitor's attention that helps in better interaction. Optimisation does not mean changing the existing layout of your website but these are tools for better visitor engagements. Every non-converting visitor costs you in wasted market-ing efforts and missed sale. Would you be interested in receiving further information & a quote for optimising your website with no-strings-attached? Best regards, Olivia Conversion Optimisation Specialist *D*OMOTICS Western Australia, Northern Territory, South Australia, Queensland, New South Wales, Victoria, Australian Capital Territory, Tasmania Disclaimer: We respect your privacy and want to make sure you are aware of a few things. By replying to this email, you authorise our affiliates that can help with your project to contact you at the number you provided, and you understand that they may use automated technology to reach you. At no time are you required to make a purchase. From owner-freebsd-doc@FreeBSD.ORG Sun Jul 13 01:03:21 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2CA7176C for ; Sun, 13 Jul 2014 01:03:21 +0000 (UTC) Received: from mail-pa0-f44.google.com (mail-pa0-f44.google.com [209.85.220.44]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0416323FD for ; Sun, 13 Jul 2014 01:03:19 +0000 (UTC) Received: by mail-pa0-f44.google.com with SMTP id rd3so3454874pab.3 for ; Sat, 12 Jul 2014 18:03:13 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=yq9YV8fA6bpM4JwR0WYIxIXjcPKLrAcp739OrPKL0mA=; b=YxZPSYCj9hdxTCr+qHJCl+ZYQTS6YjH3mMN2jApPfWzASnIKSYLsg1rG16R9YsfEXt 95NZUEOlaeyZj8xanymFcH86qoEm+HeJ9IFInqNd6VNv8WJqwQ2TLets4qjEOzrCzjE0 tEr5DC7/EfI3RkC8xXIZTjwvZgzvmY77I02mGWAk/LDbIfQOM9Paxhsn8P4ZNAe13FP4 +Obepfm4k5ZkKepqJAP2Wgw5zcI1tFB56jCwHyaN2U9h1zp3cNMRb1qCjLxdCpj0qhhK Gk9Jce+d8pqbwn8Dd90+M4pclelyeQJ6Ta24eR/MDEyJnBUCDrfdkbPREazoF2HmOV3o H6JQ== X-Gm-Message-State: ALoCoQkD2AEMSqVYFiZBxtzyUyKAYZcJuCGMTVRkmCcoZhprd4re3zWAsscMLA746K/0ri8G41gF X-Received: by 10.68.240.34 with SMTP id vx2mr7994191pbc.1.1405213393086; Sat, 12 Jul 2014 18:03:13 -0700 (PDT) Received: from blackbox.krakensys.lokal ([120.28.208.99]) by mx.google.com with ESMTPSA id xh10sm27151673pac.24.2014.07.12.18.03.10 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 12 Jul 2014 18:03:12 -0700 (PDT) Message-ID: <53C1DACD.5050008@anarchy.in.the.ph> Date: Sun, 13 Jul 2014 09:03:09 +0800 From: "Mars G. Miro" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-doc@FreeBSD.org Subject: Security Advisories page went missing ? Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jul 2014 01:03:21 -0000 Hi It seems the page at http://www.freebsd.org/security/advisories.html is gone. -- An elephant is a mouse with an operating system. From owner-freebsd-doc@FreeBSD.ORG Sun Jul 13 01:21:02 2014 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 97E75883 for ; Sun, 13 Jul 2014 01:21:02 +0000 (UTC) Received: from na01-bl2-obe.outbound.protection.outlook.com (mail-bl2lp0206.outbound.protection.outlook.com [207.46.163.206]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5B3C8252F for ; Sun, 13 Jul 2014 01:21:01 +0000 (UTC) Received: from [IPv6:2601:2:4780:2fd:f50f:2579:fc6c:3208] (2601:2:4780:2fd:f50f:2579:fc6c:3208) by BLUPR03MB018.namprd03.prod.outlook.com (10.255.208.40) with Microsoft SMTP Server (TLS) id 15.0.980.8; Sun, 13 Jul 2014 01:20:45 +0000 Message-ID: <53C1DEE8.1020804@my.hennepintech.edu> Date: Sat, 12 Jul 2014 20:20:40 -0500 From: Andrew Berg User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Subject: Re: Security Advisories page went missing ? References: <53C1DACD.5050008@anarchy.in.the.ph> In-Reply-To: <53C1DACD.5050008@anarchy.in.the.ph> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [2601:2:4780:2fd:f50f:2579:fc6c:3208] X-ClientProxiedBy: BY2PR03CA076.namprd03.prod.outlook.com (10.141.249.49) To BLUPR03MB018.namprd03.prod.outlook.com (10.255.208.40) X-Microsoft-Antispam: BCL:0;PCL:0;RULEID: X-Forefront-PRVS: 0271483E06 X-Forefront-Antispam-Report: SFV:NSPM; SFS:(6009001)(24454002)(199002)(51704005)(189002)(77982001)(74662001)(31966008)(99396002)(83506001)(95666004)(65816999)(106356001)(19580395003)(89122001)(2351001)(110136001)(107886001)(107046002)(85306003)(59896001)(64706001)(15202345003)(83322001)(74502001)(15188555004)(105586002)(23676002)(19300405004)(42186005)(65956001)(81542001)(33656002)(47776003)(75432001)(20776003)(92726001)(4396001)(101416001)(92566001)(46102001)(81342001)(76482001)(558084003)(87266999)(50466002)(80316001)(102836001)(15975445006)(87976001)(77096002)(80022001)(19273905006)(85852003)(88552001)(79102001)(76176999)(21056001)(54356999)(50986999)(86362001)(83072002)(569964003)(3826002)(562404015)(563064011)(15302535011); DIR:OUT; SFP:; SCL:1; SRVR:BLUPR03MB018; H:[IPv6:2601:2:4780:2fd:f50f:2579:fc6c:3208]; FPR:; MLV:sfv; PTR:InfoNoRecords; MX:1; LANG:en; X-OriginatorOrg: my.hennepintech.edu X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jul 2014 01:21:02 -0000 On 2014.07.12 20:03, Mars G. Miro wrote: > > Hi > > It seems the page at http://www.freebsd.org/security/advisories.html is > gone. Looks okay to me. From owner-freebsd-doc@FreeBSD.ORG Mon Jul 14 02:00:06 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3BA414AD for ; Mon, 14 Jul 2014 02:00:06 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0EB912DA5 for ; Mon, 14 Jul 2014 02:00:06 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s6E205n0021417 for ; Mon, 14 Jul 2014 02:00:05 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s6E205Jd021415 for freebsd-doc@FreeBSD.org; Mon, 14 Jul 2014 02:00:05 GMT (envelope-from www-data) Date: Mon, 14 Jul 2014 02:00:05 GMT From: User Www-data Message-Id: <201407140200.s6E205Jd021415@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2014 02:00:06 -0000 ===> gnome/docs ===> gnome/images ===> handbook ===> internal /usr/bin/perl /home/www/build/head/en_US.ISO8859-1/htdocs/internal/homepage.pl > homepage.inc env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/internal/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --xinclude --valid --noout --nonet homepage.xml env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/internal/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --debug -o homepage.html http://www.FreeBSD.org/XML/share/xml/xhtml.xsl homepage.xml ===> ipv6 ===> java ===> java/dists ===> marketing ===> multimedia ===> news ===> news/1993 ===> news/1996 ===> news/1997 ===> news/1998 ===> news/1999 ===> news/2000 ===> news/2001 ===> news/2002 ===> news/2003 ===> news/2004 ===> news/2005 ===> news/2006 ===> news/2007 ===> news/2008 ===> news/2009 ===> news/status env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/news/status/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet -o report-2014-04-2014-06.html report.xsl report-2014-04-2014-06.xml file:///home/www/build/head/share/xml/statusreport.dtd:114: warning: failed to load external entity "http://www.FreeBSD.org/XML/share/xml/l10n.ent" %l10n.ent; ^ Entity: line 1: %l10n.ent; ^ report-2014-04-2014-06.xml:516: parser error : StartTag: invalid element name Add support for granular dependencies (for example >=1.0,<2.0). Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1218581 for ; Mon, 14 Jul 2014 02:10:05 +0000 (UTC) Received: from build-web.stream.freebsd.org (build-web.stream.freebsd.org [IPv6:2001:1900:2254:206a::16:6504]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B42282E59 for ; Mon, 14 Jul 2014 02:10:05 +0000 (UTC) Received: from build-web.stream.freebsd.org ([127.0.1.2]) by build-web.stream.freebsd.org (8.14.8/8.14.8) with ESMTP id s6E2A597037819 for ; Mon, 14 Jul 2014 02:10:05 GMT (envelope-from www-data@build-web.stream.freebsd.org) Received: (from www-data@localhost) by build-web.stream.freebsd.org (8.14.8/8.14.8/Submit) id s6E2A5ha037817 for freebsd-doc@FreeBSD.org; Mon, 14 Jul 2014 02:10:05 GMT (envelope-from www-data) Date: Mon, 14 Jul 2014 02:10:05 GMT From: User Www-data Message-Id: <201407140210.s6E2A5ha037817@build-web.stream.freebsd.org> To: freebsd-doc@FreeBSD.org Subject: FreeBSD web build failed on build-web.stream.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2014 02:10:06 -0000 ===> gnome/docs ===> gnome/images ===> handbook ===> internal /usr/bin/perl /home/www/build/head/en_US.ISO8859-1/htdocs/internal/homepage.pl > homepage.inc env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/internal/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xmllint --xinclude --valid --noout --nonet homepage.xml env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/internal/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet --debug -o homepage.html http://www.FreeBSD.org/XML/share/xml/xhtml.xsl homepage.xml ===> ipv6 ===> java ===> java/dists ===> marketing ===> multimedia ===> news ===> news/1993 ===> news/1996 ===> news/1997 ===> news/1998 ===> news/1999 ===> news/2000 ===> news/2001 ===> news/2002 ===> news/2003 ===> news/2004 ===> news/2005 ===> news/2006 ===> news/2007 ===> news/2008 ===> news/2009 ===> news/status env XML_CATALOG_FILES="file:///home/www/build/head/en_US.ISO8859-1/htdocs/news/status/catalog-cwd.xml file:///home/www/build/head/en_US.ISO8859-1/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog.xml file:///home/www/build/head/share/xml/catalog-common.xml file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc --xinclude --nonet -o report-2014-04-2014-06.html report.xsl report-2014-04-2014-06.xml file:///home/www/build/head/share/xml/statusreport.dtd:114: warning: failed to load external entity "http://www.FreeBSD.org/XML/share/xml/l10n.ent" %l10n.ent; ^ Entity: line 1: %l10n.ent; ^ report-2014-04-2014-06.xml:516: parser error : StartTag: invalid element name Add support for granular dependencies (for example >=1.0,<2.0). Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 042039B6 for ; Mon, 14 Jul 2014 16:15:47 +0000 (UTC) Received: from dmz-mailsec-scanner-5.mit.edu (dmz-mailsec-scanner-5.mit.edu [18.7.68.34]) by mx1.freebsd.org (Postfix) with ESMTP id 9B64427EC for ; Mon, 14 Jul 2014 16:15:46 +0000 (UTC) X-AuditID: 12074422-f79be6d000007518-d1-53c400ff8321 Received: from mailhub-auth-3.mit.edu ( [18.9.21.43]) (using TLS with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by dmz-mailsec-scanner-5.mit.edu (Symantec Messaging Gateway) with SMTP id 61.30.29976.FF004C35; Mon, 14 Jul 2014 12:10:39 -0400 (EDT) Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11]) by mailhub-auth-3.mit.edu (8.13.8/8.9.2) with ESMTP id s6EGAbCI000544; Mon, 14 Jul 2014 12:10:39 -0400 Received: from multics.mit.edu (system-low-sipb.mit.edu [18.187.2.37]) (authenticated bits=56) (User authenticated as kaduk@ATHENA.MIT.EDU) by outgoing.mit.edu (8.13.8/8.12.4) with ESMTP id s6EGAYi1029101 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 14 Jul 2014 12:10:36 -0400 Received: (from kaduk@localhost) by multics.mit.edu (8.12.9.20060308) id s6EGAYPH015337; Mon, 14 Jul 2014 12:10:34 -0400 (EDT) Date: Mon, 14 Jul 2014 12:10:34 -0400 (EDT) From: Benjamin Kaduk X-X-Sender: kaduk@multics.mit.edu To: David Newall Subject: Re: Booting FreeBSD from an LVM volume In-Reply-To: <53C01775.4080203@davidnewall.com> Message-ID: References: <53C01775.4080203@davidnewall.com> User-Agent: Alpine 1.10 (GSO 962 2008-03-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFvrBIsWRmVeSWpSXmKPExsUixCmqrfuf4UiwwaVDohaX9i9htzh1povV gcnj3qcD7B4zPs1nCWCK4rJJSc3JLEst0rdL4Mr4uPkUS8Fc9opHu2azNjDeYO1i5OSQEDCR 2PDhBwuELSZx4d56ti5GLg4hgdlMEgcv3GCGcDYySpx6fR4qc4hJYuX0JewQTgOjxPX3Dcwg /SwC2hKdd7eyg9hsAmoSj/c2Q+1QlNh8ahJYjYiApsThLffA4swC0hIN6zczgdjCAvoSqz6e B6rh4OAEsp/fFAUJ8wo4Suw5fxksLCSgJ9HzvBIkLCqgI7F6/xQWiBJBiZMzn7BATLSUOPfn OtsERqFZSFKzkKQWMDKtYpRNya3SzU3MzClOTdYtTk7My0st0jXVy80s0UtNKd3ECApgdhel HYw/DyodYhTgYFTi4ZV4dzhYiDWxrLgy9xCjJAeTkiiv0C+gEF9SfkplRmJxRnxRaU5q8SFG CQ5mJRHeox+AcrwpiZVVqUX5MClpDhYlcd631lbBQgLpiSWp2ampBalFMFkZDg4lCd5T/4Ea BYtS01Mr0jJzShDSTBycIMN5gIZvAanhLS5IzC3OTIfIn2JUlBLnDQJJCIAkMkrz4HphCeYV ozjQK8K8W0GqeIDJCa77FdBgJqDB5TVgg0sSEVJSDYwiomdL5nA7Lt6YbDndeD2/5UmuU92H os7s/pwlYCQeOvfftRC+4/PEZRYafbZjar0Tck3jlf35wzHvFknl1i+o/bWaIe7R6xMOoomv K9Q0d//a2J2mmxSmGHv/ybWZj/U9zSX/5/AutMssLz2nk3/bbP1OhdXlzNzlE/4f/zb9YX8x a9gX8RolluKMREMt5qLiRADktX5RCwMAAA== Cc: freebsd-doc@freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2014 16:15:47 -0000 Hi David, On Fri, 11 Jul 2014, David Newall wrote: > I've written a brief article explaining how to boot FreeBSD from a LVM2 > volume. Extensive search of the web suggested it could not be done, but > it can, and easily. I thought this might be of interest to the > community, and perhaps even suitable for inclusion on the FreeBSD web or > handbook. See http://davidnewall.com/papers/Boot-FreeBSD-on-LVM2.html. Thanks for the pointer to this article -- it's quite an interesting tale. The article itself is written in a style that one might find on a blog, which is not really a suitable style for direct inclusion into the FreeBSD handbook. However, I think this would be a helpful example to have, and I will look into the possibility of adding it. (But probably not for a month or so, I've got a lot on my plate at the moment.) Thanks for the writeup and pointing us to it! -Ben Kaduk From owner-freebsd-doc@FreeBSD.ORG Mon Jul 14 17:46:56 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E811B36A for ; Mon, 14 Jul 2014 17:46:56 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D06B820C2 for ; Mon, 14 Jul 2014 17:46:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6EHkusH030766 for ; Mon, 14 Jul 2014 17:46:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 180970] [request] No manpage for ps_strings Date: Mon, 14 Jul 2014 17:46:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: wblock@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: wblock@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2014 17:46:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=180970 Warren Block changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wblock@FreeBSD.org Assignee|freebsd-doc@FreeBSD.org |wblock@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 15 09:09:18 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0DDB15BF for ; Tue, 15 Jul 2014 09:09:18 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9C722EAC for ; Tue, 15 Jul 2014 09:09:17 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6F99H8X002401 for ; Tue, 15 Jul 2014 09:09:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Tue, 15 Jul 2014 09:09:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dreamcat4@gmail.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 09:09:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189268 --- Comment #7 from dreamcat4@gmail.com --- Should this PR really be in 'Documentation' ? Or 'Base System' ? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 15 14:22:11 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AC14DFC for ; Tue, 15 Jul 2014 14:22:11 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 026142B66 for ; Tue, 15 Jul 2014 14:22:11 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FEMAWd096182 for ; Tue, 15 Jul 2014 14:22:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Tue, 15 Jul 2014 14:22:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bjk@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 14:22:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189268 Benjamin Kaduk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bjk@FreeBSD.org --- Comment #8 from Benjamin Kaduk --- I do not see why it is believed to be correct behavior to blindly cast addrinfo->ai_addr to type 'struct sockaddr_in *' without first checking that addrinfo->ai_family is PF_INET (or that the sockaddr's sa_family is AFS_INET); such a cast is expected to yield "nonsense" results when ai_family is PF_INET6. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 15 15:17:12 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6DDD6CB8 for ; Tue, 15 Jul 2014 15:17:12 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B1E520C2 for ; Tue, 15 Jul 2014 15:17:12 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FFHCSb066762 for ; Tue, 15 Jul 2014 15:17:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Tue, 15 Jul 2014 15:17:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dreamcat4@gmail.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 15:17:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189268 --- Comment #9 from dreamcat4@gmail.com --- (In reply to Benjamin Kaduk from comment #8) > I do not see why it is believed to be correct behavior to blindly cast > addrinfo->ai_addr to type 'struct sockaddr_in *' without first checking that > addrinfo->ai_family is PF_INET (or that the sockaddr's sa_family is > AFS_INET); such a cast is expected to yield "nonsense" results when > ai_family is PF_INET6. I made the change you suggested. https://gist.github.com/dreamcat4/86706bba25c468fc0ecc For PF_INET6 hints, the returned structure says it is of type ai_family '0x1C' (which is '28' in decimal base 10). If we look in the header file '/usr/include/sys/socket.h', we see that returned type is: AF_ISDN :/ Maybe that aught to be a returned value of type '30' (0x1E) for PF_INET6. Since that was the type we actually requested? #define pseudo_AF_PIP 25 /* Help Identify PIP packets */ #ifdef __APPLE__ /*define pseudo_AF_BLUE 26 Identify packets for Blue Box - Not used */ #define AF_NDRV 27 /* Network Driver 'raw' access */ #endif #define AF_ISDN 28 /* Integrated Services Digital Network*/ #define AF_E164 AF_ISDN /* CCITT E.164 recommendation */ #define pseudo_AF_KEY 29 /* Internal key-management function */ #endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */ #define AF_INET6 30 /* IPv6 */ #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) #define AF_NATM 31 /* native ATM access */ #ifdef __APPLE__ #define AF_SYSTEM 32 /* Kernel event messages */ -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 15 15:44:18 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E29FC8A2 for ; Tue, 15 Jul 2014 15:44:18 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9E3923EF for ; Tue, 15 Jul 2014 15:44:18 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FFiImk019900 for ; Tue, 15 Jul 2014 15:44:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Tue, 15 Jul 2014 15:44:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bjk@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 15:44:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D189268 --- Comment #10 from Benjamin Kaduk --- (In reply to dreamcat4 from comment #9) > For PF_INET6 hints, the returned structure says it is of type ai_family > '0x1C' (which is '28' in decimal base 10). >=20 > If we look in the header file '/usr/include/sys/socket.h', we see that > returned type is: AF_ISDN >=20 > :/ >=20 > Maybe that aught to be a returned value of type '30' (0x1E) for PF_INET6. > Since that was the type we actually requested? >=20 >=20 > #define pseudo_AF_PIP 25 /* Help Identify PIP packets */ > #ifdef __APPLE__ > /*define pseudo_AF_BLUE 26 Identify packets for Blue Box - Not used */ > #define AF_NDRV 27 /* Network Driver 'raw' access */ > #endif > #define AF_ISDN 28 /* Integrated Services Digital Network*/ > #define AF_E164 AF_ISDN /* CCITT E.164 recommendation */ > #define pseudo_AF_KEY 29 /* Internal key-management function */ > #endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */ > #define AF_INET6 30 /* IPv6 */ > #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) > #define AF_NATM 31 /* native ATM access */ > #ifdef __APPLE__ > #define AF_SYSTEM 32 /* Kernel event messages */ I think you are looking at the /usr/include/sys/socket.h from an OS X machi= ne, not a FreeBSD machine. On my FreeBSD machine, AF_INET6 is decimal 28, matc= hing the 0x1c you see. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@FreeBSD.ORG Tue Jul 15 16:06:48 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C48F711B for ; Tue, 15 Jul 2014 16:06:48 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ABDCE2629 for ; Tue, 15 Jul 2014 16:06:48 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FG6m1s003138 for ; Tue, 15 Jul 2014 16:06:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Tue, 15 Jul 2014 16:06:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dreamcat4@gmail.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 16:06:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189268 --- Comment #11 from dreamcat4@gmail.com --- (In reply to Benjamin Kaduk from comment #10) > I think you are looking at the /usr/include/sys/socket.h from an OS X > machine, not a FreeBSD machine. On my FreeBSD machine, AF_INET6 is decimal > 28, matching the 0x1c you see. Yes. Oh sorry! Been looking in the wrong window. Silly me. And my test program should be: if ( (addrinfo) && (addrinfo->ai_family == hints.ai_family) ) ^^^^^^^^^^^^^^^ in order to filter on the same requested / returned type. Gist link is updated to reflect that, https://gist.github.com/dreamcat4/86706bba25c468fc0ecc BTW This bug I have observed on FreeBSD 9.2-RELEASE. It is also suspected to occur on 9.3, 10.0, and high. I just don't have any newer FreeBSD servers to test it on. Can check on them by running this program 'test.c'. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 15 16:47:05 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A980E49D for ; Tue, 15 Jul 2014 16:47:05 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90A842A75 for ; Tue, 15 Jul 2014 16:47:05 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FGl58s065685 for ; Tue, 15 Jul 2014 16:47:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Tue, 15 Jul 2014 16:47:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bjk@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 16:47:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189268 --- Comment #12 from Benjamin Kaduk --- (In reply to dreamcat4 from comment #11) > > Gist link is updated to reflect that, > https://gist.github.com/dreamcat4/86706bba25c468fc0ecc > No, this is still incorrect. The point I was making, is that the ai_addr field must be cast to the type 'struct sockaddr_in6 *' (note the '6') when it is in the INET6 family. Your code is still using 'struct sockaddr_in *', which is incorrect. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 15 17:34:51 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 155E2D6B for ; Tue, 15 Jul 2014 17:34:51 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D6FFF2FD9 for ; Tue, 15 Jul 2014 17:34:50 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FHYoq3022740 for ; Tue, 15 Jul 2014 17:34:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Tue, 15 Jul 2014 17:34:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dreamcat4@gmail.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 17:34:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189268 --- Comment #13 from dreamcat4@gmail.com --- (In reply to Benjamin Kaduk from comment #12) > (In reply to dreamcat4 from comment #11) > No, this is still incorrect. The point I was making, is that the ai_addr > field must be cast to the type 'struct sockaddr_in6 *' (note the '6') when > it is in the INET6 family. Your code is still using 'struct sockaddr_in *', > which is incorrect. Thanks Ben! I am pleased to say that with that change, the new version of 'test.c' and test result you can see here: https://gist.github.com/dreamcat4/86706bba25c468fc0ecc So this proves that there is no bug in getaddrinfo. My bug report is invalid. This also proves there is definitely some bug in GSOAP library (which the previous version of this 'test.c' program was exactly reproducing). Many thanks. Bug is on GSOAP. As previously stated in my very 1st comment: stdsoap2.cpp:4143: err = getaddrinfo(host, soap_int2s(soap, port), &hints, &addrinfo); Is passing in "localhost", is told "0.0.0.0". Then later on in soap_bind(), the returned address "0.0.0.0" is passed into bind(). And bind() then binds to ALL interfaces. We can see as of today, comparing before and after, the '0.0.0.0' is occur because incorrect cast of structure members. When the INET6 structure actually contain '::1' ipv6 address for localhost. Appreciate this. It clarifies the issue totally. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 15 17:42:13 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B0E82E2 for ; Tue, 15 Jul 2014 17:42:13 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 427D120F4 for ; Tue, 15 Jul 2014 17:42:13 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FHgDPU005265 for ; Tue, 15 Jul 2014 17:42:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Tue, 15 Jul 2014 17:42:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bjk@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 17:42:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189268 Benjamin Kaduk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved Resolution|--- |Works As Intended -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-doc@FreeBSD.ORG Tue Jul 15 20:54:58 2014 Return-Path: Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC178E79 for ; Tue, 15 Jul 2014 20:54:58 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3B73238C for ; Tue, 15 Jul 2014 20:54:58 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FKswlo002697 for ; Tue, 15 Jul 2014 20:54:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-doc@FreeBSD.org Subject: [Bug 189268] 3 getaddrinfo(3) - hostanme="localhost", but it returns IN_ADDR_ANY (0.0.0.0) Date: Tue, 15 Jul 2014 20:54:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dreamcat4@gmail.com X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-doc@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 20:54:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189268 --- Comment #14 from dreamcat4@gmail.com --- Just for completeness (and not to forget it), here is link to IPV4 tutorial page. Which was the most helpful to improve / fix today this parts of broken networking code (where error occurred). http://long.ccaba.upc.edu/long/045Guidelines/eva/ipv6.html Many thanks. -- You are receiving this mail because: You are the assignee for the bug.