From owner-p4-projects@FreeBSD.ORG Fri Jul 17 08:17:05 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id F3AFF1065670; Fri, 17 Jul 2009 08:17:04 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0E31106566B for ; Fri, 17 Jul 2009 08:17:04 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9D9318FC1F for ; Fri, 17 Jul 2009 08:17:04 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n6H8H4dS022285 for ; Fri, 17 Jul 2009 08:17:04 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n6H8H4HT022283 for perforce@freebsd.org; Fri, 17 Jul 2009 08:17:04 GMT (envelope-from rene@FreeBSD.org) Date: Fri, 17 Jul 2009 08:17:04 GMT Message-Id: <200907170817.n6H8H4HT022283@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Cc: Subject: PERFORCE change 166192 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jul 2009 08:17:05 -0000 http://perforce.freebsd.org/chv.cgi?CH=166192 Change 166192 by rene@rene_self on 2009/07/17 08:16:21 IFC Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#29 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/developers-handbook/x86/chapter.sgml#3 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/virtualization/chapter.sgml#3 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#36 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#36 integrate .. //depot/projects/docproj_nl/share/pgpkeys/gavin.key#1 branch .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys-developers.sgml#23 integrate .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys.ent#20 integrate .. //depot/projects/docproj_nl/www/en/java/dists/15.sgml#2 integrate .. //depot/projects/docproj_nl/www/en/java/news.xml#3 integrate .. //depot/projects/docproj_nl/www/share/sgml/commercial.consult.xml#10 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#29 (text+ko) ==== @@ -1,4 +1,4 @@ - + @@ -6464,7 +6464,7 @@ Thomas M. Sommers opened the door for me. His -How +How do I write "Hello, world" in FreeBSD assembler? web page was my first encounter with an example of assembly language programming under FreeBSD. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/virtualization/chapter.sgml#3 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -963,12 +963,116 @@ FreeBSD as a Host OS - FreeBSD is not officially supported by any virtualization - package as a host operating system at this time, but many people - use older versions of VMware in this capacity. - Work is also ongoing in getting &xen; to - work as a host environment on FreeBSD. + For a number of years, &os; was not officially supported as a host + OS by any of the available virtualization solutions. Some people were + using older and mostly obsolete versions of + VMware (like emulators/vmware3), which utilized the + &linux; binary compatibility layer. Shortly after the release of + &os; 7.2, the Open Source Edition (OSE) of + &sun;'s VirtualBox appeared in the + Ports Collection as a native &os; program. + + VirtualBox is an actively developed, + complete virtualization package, that is available for most operating + systems including &windows;, &macos;, &linux; and &os;. It is equally + capable at running &windows; or &unix;-type guests. It comes in two + flavors, an open source and a proprietary edition. From the user's + point of view, perhaps the most important limitation of the + OSE is the lack of USB support. Other differences + may be found in the Editions page of the + VirtualBox wiki, at . + Currently, only the OSE is available for &os;. + + + Installing VirtualBox + + VirtualBox is available as a &os; port + in emulators/virtualbox, and + may be installed using the following commands: + + &prompt.root; cd /usr/ports/emulators/virtualbox +&prompt.root; make install clean + + One useful option in the configuration dialog is the + GuestAdditions suite of programs. These provide a + number of useful features in guest operating systems, like mouse + pointer integration (allowing the mouse to be shared between host + and guest without the need to press a special keyboard shortcut to + switch) and faster video rendering, especially in &windows; guests. + The guest additions are available in the Devices + menu, after the installation of the guest OS is finished. + + A few configuration changes are needed before + VirtualBox is started for the first time. + The port installs a kernel module in /boot/modules which must be loaded + into the running kernel: + + &prompt.root; kldload vboxdrv + + To ensure the module always gets loaded after a reboot, add the + following line to /boot/loader.conf: + + vboxdrv_load="YES" + + VirtualBox also requires the + proc file system to be + mounted: + + &prompt.root; mount -t procfs proc /proc + + To allow this setting to persist reboots, the following line + is needed in /etc/fstab: + + proc /proc procfs rw 0 0 + + + If an error message similar to the following is observed + when VirtualBox is run from + the terminal: + + VirtualBox: supR3HardenedExecDir: couldn't read "", errno=2 cchLink=-1 + + The most likely culprit will be the proc file system. Please use the + mount command to check whether it is mounted + properly. + + + The vboxusers group is created during + the installation of VirtualBox. + All users that need access to VirtualBox + will have to be added as members of this group. + The pw command may be used to add new + members: + + &prompt.root; pw groupmod vboxusers -m yourusername + + To launch VirtualBox, either select + the Sun VirtualBox item from your + graphic environment's menu, or type the following in a + terminal: + + &prompt.user; VirtualBox + + For more information on configuring and using + VirtualBox, please visit the official + website at . + As the &os; port is very recent, it is under heavy development. + For the latest information and troubleshooting instructions, please + visit the relevant page in the &os; wiki, at . + + + + Other Virtualization Options + There is ongoing work in getting &xen; + to work as a host environment on &os;. An experimental version of + this will appear in &os; 8.0. + ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#36 (text+ko) ==== @@ -1,7 +1,7 @@ + 702104 + July 14, 2009 + 7.2-STABLE after MFC of the + closefrom system call. + + + 800000 October 11, 2007 8.0-CURRENT. Separating wide and single byte ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#36 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -44,6 +44,11 @@ &pgpkey.asami; + + &a.gavin; + &pgpkey.gavin; + + &a.jadawin; &pgpkey.jadawin; ==== //depot/projects/docproj_nl/share/pgpkeys/pgpkeys.ent#20 (text+ko) ==== @@ -1,5 +1,5 @@ - + @@ -97,6 +97,7 @@ + ==== //depot/projects/docproj_nl/www/en/java/dists/15.sgml#2 (text+ko) ==== @@ -1,6 +1,6 @@ - + ]> @@ -12,6 +12,15 @@

+March 5, 2009: Greg +Lewis has released the ninth patchset (patchlevel 9, "Siegfried") +for the &jdk; 1.5.0 software. The major change in this patchset +is to move the patchset base source code to 1.5.0 Update 16. Information +on downloading the patchset can be found at +http://www.eyesbeyond.com/freebsddom/java/jdk15.html. +

+ +

February 14, 2008: Greg Lewis has released the eighth patchset (patchlevel 8, "Tarragindi") for the &jdk; 1.5.0 software. This release now supports NetBSD/amd64 ==== //depot/projects/docproj_nl/www/en/java/news.xml#3 (text+ko) ==== @@ -20,11 +20,33 @@ - $FreeBSD: www/en/java/news.xml,v 1.7 2008/08/27 13:42:31 jkois Exp $ + $FreeBSD: www/en/java/news.xml,v 1.8 2009/07/12 22:53:00 glewis Exp $ + 2009 + + + March + + + 5 + + + Patchset 9 for &jdk; 1.5 released + +

Greg Lewis has + released the ninth patchset (patchset 9) in the + &jdk; 1.5 series. See the JDK 1.5.x page for more + details.

+ + + + + + 2008 ==== //depot/projects/docproj_nl/www/share/sgml/commercial.consult.xml#10 (text+ko) ==== @@ -1,12 +1,12 @@ - + - $FreeBSD: www/share/sgml/commercial.consult.xml,v 1.60 2009/05/09 18:27:51 jkois Exp $ + $FreeBSD: www/share/sgml/commercial.consult.xml,v 1.61 2009/07/16 13:22:45 danger Exp $ @@ -1173,6 +1173,22 @@
+ + SysCare s. r. o. + http://www.SysCare.sk/ + + SysCare s. r. o. is a company based in Slovakia with the aim to + provide highly proffesional solutions, including consultancy and + outsourcing services for reasonable amount of money. Our focus + is on high-availability and high-performance solutions for web, + database, DNS and email products built on &os;. SysCare s. r. o. + has been founded by Daniel Gerzo, who is being part of the official + &os; development team. For inquiries please send us an email to + office@syscare.sk, or visit our + web site for more information. + + + SysConfig Consulting http://www.sysconfig.com/