From owner-freebsd-jail@FreeBSD.ORG Sun Aug 31 04:12:13 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C601106566C for ; Sun, 31 Aug 2008 04:12:13 +0000 (UTC) (envelope-from jack@crepinc.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.181]) by mx1.freebsd.org (Postfix) with ESMTP id 397D38FC1C for ; Sun, 31 Aug 2008 04:12:13 +0000 (UTC) (envelope-from jack@crepinc.com) Received: by wa-out-1112.google.com with SMTP id j4so970295wah.3 for ; Sat, 30 Aug 2008 21:12:12 -0700 (PDT) Received: by 10.114.184.7 with SMTP id h7mr4226396waf.9.1220154192167; Sat, 30 Aug 2008 20:43:12 -0700 (PDT) Received: by 10.115.110.16 with HTTP; Sat, 30 Aug 2008 20:43:12 -0700 (PDT) Message-ID: <2ad0f9f60808302043i5ea4c20eoa83469f655020a9@mail.gmail.com> Date: Sat, 30 Aug 2008 23:43:12 -0400 From: "Jack C" To: freebsd-jail@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Building with Jail Patches X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Aug 2008 04:12:13 -0000 Greetings all, I apologize in advance for anything stupid I overlooked; I tried to search as best I could for answers before wasting your time. I've been trying to compile resource controls into jails for about the past week. No matter how hard I try, I always seem to run into some issue. I started by finding Chris Jones' Summer of Code patches, and attempting them against 6.0 to no avail. In reading archives of this list, I found the 7.0 memory control patch and tried that as well. Can anyone point out what I'm doing wrong? I installed this machine straight from 6.0 ISOs. No cvsup was performed. --- bsd6laptop# uname -a FreeBSD bsd6laptop.66fruit.com 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC i386 bsd6laptop# [apply the changes detailed in docs/INSTALL (without error)] bsd6laptop# make buildworld [... stuff working fine here ...] ===> usr.bin/elf2aout (all) cc -O2 -fno-strict-aliasing -pipe -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wunused-parameter -c /usr/src/usr.bin/elf2aout/elf2aout.c /usr/src/usr.bin/elf2aout/elf2aout.c: In function `main': /usr/src/usr.bin/elf2aout/elf2aout.c:69: error: syntax error before "phentsize" /usr/src/usr.bin/elf2aout/elf2aout.c:120: error: `machine' undeclared (first use in this function) /usr/src/usr.bin/elf2aout/elf2aout.c:120: error: (Each undeclared identifier is reported only once /usr/src/usr.bin/elf2aout/elf2aout.c:120: error: for each function it appears in.) /usr/src/usr.bin/elf2aout/elf2aout.c:123: error: `phentsize' undeclared (first use in this function) /usr/src/usr.bin/elf2aout/elf2aout.c:129: error: `phnum' undeclared (first use in this function) *** Error code 1 Stop in /usr/src/usr.bin/elf2aout. *** Error code 1 [...] --- Similarly, I installed a 7.0 machine straight from ISO without update. I succeded to buildworld, buildkernel and installkernel, however in single user mode when I go to installworld, I am stopped at this: ---- [...] install-info --quiet --defsection="Programming & development tools." --defentry="* libcom_err: (com_err). A Common Error Description Library for UNIX." com_err.info /usr/share/info/dir *** Error code 1 Stop in /usr/src/lib/libcom_err/doc *** Error code 1 [...] --- On the 7.0 machine, if I cvsup to RELENG_7 or RELENG_7_0 (same issue with both), the patch does not apply: (I am not amazing at patching it seems... the only way I could get it to work is to make src.old, and the patches seem to be applied there.) --- hydra# uname -a FreeBSD hydra.66fruit.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 hydra# grep RELENG /usr/local/etc/cvsup/src-supfile *default release=cvs tag=RELENG_7_0 hydra# pwd /usr hydra# cp -R src src.old hydra# patch < /root/jailmem.patch [... success and such ...] Hunk #13 succeeded at 482. Hunk #14 succeeded at 607. patch: **** malformed patch at line 424: diff -burN src.old/sys/kern/syscalls.c src.new/sys/kern/syscalls.c hydra# --- After cvsuping to the current 7 tree, I try again. --- hydra# grep RELENG /usr/local/etc/cvsup/src-supfile *default release=cvs tag=RELENG_7 ---cvsuping takes place here without issue--- hydra# patch < /root/jailmem.patch [... edited for brevity ...] Patching file src.old/sys/kern/init_sysent.c using Plan A... Hunk #1 failed at 2. Hunk #2 succeeded at 510 with fuzz 1 (offset -1 lines). [...] patch: **** malformed patch at line 424: diff -burN src.old/sys/kern/syscalls.c src.new/sys/kern/syscalls.c --- Could anyone perchance give me a condensed step-by-step as to getting the right source, patching, and compiling one of the resource patches out there? Sorry again for the long mail. Thanks, -Jack Carrozzo From owner-freebsd-jail@FreeBSD.ORG Mon Sep 1 02:52:30 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C0A01065680 for ; Mon, 1 Sep 2008 02:52:30 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.freebsd.org (Postfix) with ESMTP id 2B70F8FC14 for ; Mon, 1 Sep 2008 02:52:29 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from localhost (unknown [200.46.204.183]) by hub.org (Postfix) with ESMTP id 4C7D41D0B852 for ; Sun, 31 Aug 2008 23:35:28 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.183]) (amavisd-maia, port 10024) with ESMTP id 91685-02 for ; Sun, 31 Aug 2008 23:35:21 -0300 (ADT) Received: from [192.168.1.2] (blk-224-204-104.eastlink.ca [24.224.204.104]) by hub.org (Postfix) with ESMTPA id 7A74D1D0B851 for ; Sun, 31 Aug 2008 23:35:25 -0300 (ADT) Date: Sun, 31 Aug 2008 23:35:22 -0300 From: "Marc G. Fournier" To: freebsd-jail@freebsd.org Message-ID: X-Mailer: Mulberry/4.0.8 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: cPanel or Plesk ... X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2008 02:52:30 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Has anyone gotten either to work in a jail? I got Plesk installed on a 6.x jail awhile back, but when you went into the interface to create a virtual host, an error was generated due to lack of file system quotas, and didn't have much time to pursue that ... - -- Marc G. Fournier Hub.Org Hosting Solutions S.A. (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAki7VOoACgkQ4QvfyHIvDvMNlgCgx0zOZhG/O6xfy7NDWEzcS9h8 RdkAn2YhC20te7oHXAHw+2tVAw1TjRjB =9OlA -----END PGP SIGNATURE----- From owner-freebsd-jail@FreeBSD.ORG Mon Sep 1 11:06:57 2008 Return-Path: Delivered-To: freebsd-jail@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC9411065675 for ; Mon, 1 Sep 2008 11:06:57 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CD3BC8FC20 for ; Mon, 1 Sep 2008 11:06:57 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m81B6vJo068474 for ; Mon, 1 Sep 2008 11:06:57 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m81B6v1e068470 for freebsd-jail@FreeBSD.org; Mon, 1 Sep 2008 11:06:57 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 1 Sep 2008 11:06:57 GMT Message-Id: <200809011106.m81B6v1e068470@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-jail@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-jail@FreeBSD.org X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2008 11:06:57 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/89528 jail [jail] [patch] impossible to kill a jail o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o kern/126368 jail [jail] Running ktrace/kdump in jail leads to stale jai 3 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with o kern/68192 jail [quotas] [jail] Cannot use quotas on jailed systems o kern/72498 jail [libc] [jail] timestamp code on jailed SMP machine gen o kern/74314 jail [resolver] [jail] DNS resolver broken under certain ja o kern/84215 jail [jail] [patch] wildcard ip (INADDR_ANY) should not bin o kern/89989 jail [jail] [patch] Add option -I (ASCII 73) PID to specif o kern/97071 jail [jail] [patch] add security.jail.jid sysctl o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o kern/120753 jail [jail] Zombie jails (jailed child process exits while 9 problems total. From owner-freebsd-jail@FreeBSD.ORG Mon Sep 1 21:30:06 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 562FD1065671 for ; Mon, 1 Sep 2008 21:30:06 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [91.103.162.4]) by mx1.freebsd.org (Postfix) with ESMTP id 0D7328FC16 for ; Mon, 1 Sep 2008 21:30:06 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from localhost (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 203AB19E02A; Mon, 1 Sep 2008 23:30:05 +0200 (CEST) Received: from [192.168.1.2] (r5bb235.net.upc.cz [86.49.61.235]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 733AC19E027; Mon, 1 Sep 2008 23:30:01 +0200 (CEST) Message-ID: <48BC5EF9.402@quip.cz> Date: Mon, 01 Sep 2008 23:30:33 +0200 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 X-Accept-Language: cz, cs, en, en-us MIME-Version: 1.0 To: freebsd-rc@FreeBSD.org References: <200806032138.m53Lccwn006905@freefall.freebsd.org> In-Reply-To: <200806032138.m53Lccwn006905@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-jail@freebsd.org Subject: Re: conf/124248: [patch] add support for nice value for rc.d/jail + rc.conf X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2008 21:30:06 -0000 linimon@FreeBSD.org wrote: > Old Synopsis: adds support for nice value for rc.d/jail + rc.conf > New Synopsis: [patch] add support for nice value for rc.d/jail + rc.conf > > Responsible-Changed-From-To: freebsd-bugs->freebsd-rc > Responsible-Changed-By: linimon > Responsible-Changed-When: Tue Jun 3 21:38:18 UTC 2008 > Responsible-Changed-Why: > Over to maintainer(s). > > http://www.freebsd.org/cgi/query-pr.cgi?pr=124248 Is there any chance to have it in FreeBSD 7.1 RELEASE? Miroslav Lachman From owner-freebsd-jail@FreeBSD.ORG Mon Sep 1 22:06:27 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 010271065672 for ; Mon, 1 Sep 2008 22:06:27 +0000 (UTC) (envelope-from gexlie@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.30]) by mx1.freebsd.org (Postfix) with ESMTP id AB63B8FC13 for ; Mon, 1 Sep 2008 22:06:26 +0000 (UTC) (envelope-from gexlie@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so1147911yxb.13 for ; Mon, 01 Sep 2008 15:06:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=t4CI8mGJln8YMkeli7uUlc7+OiwvUO62e4BYhzKxuB4=; b=Ldv3xpLOFt3+I7rxT+nwb9v3+R9/38betPao90hWpZvVHjqER6y94OwMyIdr4Ww95g ZV53+XMPuPCZFkKCew0I3Brj30eM7D/hd28edZZjT2f3GzhT6bD/+qZL4Pnyc2HS97AL kT2zIdwsFcFLtql+i/848o0Yd4DwTfh5U9onU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=i6k6Jcohic9I0z65MUz2+QLRTr/vxauHnsgWu49b9ZKGTTC620MWlWTZgdrkNkrtM6 yDUMZYH3/IRZLz04BVMHNGCfhZFl8exeKCmZyEZizkbiEJAVq36tPxbHfmut22s1Z5bz NpVeXNGNqI9Y2ETndxJnmpW12XSeQgBvjdNFM= Received: by 10.150.137.9 with SMTP id k9mr9396313ybd.44.1220305441827; Mon, 01 Sep 2008 14:44:01 -0700 (PDT) Received: by 10.150.57.21 with HTTP; Mon, 1 Sep 2008 14:44:01 -0700 (PDT) Message-ID: <53cc795f0809011444t69ba43b5t5eca7e4604235fb4@mail.gmail.com> Date: Tue, 2 Sep 2008 01:44:01 +0400 From: "Matkhamtkha Brekher" To: freebsd-jail@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: Multiple IPs X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2008 22:06:27 -0000 this patch is broken today ive tried to compile the patched world and it stops compiling with due to error: cc -O2 -fno-strict-aliasing -pipe -DLIBC_SCCS -I/usr/src/lib/libkvm -DSUPPORT_OLD_XPRISON -c /usr/src/lib/libkvm/kvm.c cc -O2 -fno-strict-aliasing -pipe -DLIBC_SCCS -I/usr/src/lib/libkvm -DSUPPORT_OLD_XPRISON -c /usr/src/lib/libkvm/kvm_i386.c cc -O2 -fno-strict-aliasing -pipe -DLIBC_SCCS -I/usr/src/lib/libkvm -DSUPPORT_OLD_XPRISON -c /usr/src/lib/libkvm/kvm_cptime.c cc -O2 -fno-strict-aliasing -pipe -DLIBC_SCCS -I/usr/src/lib/libkvm -DSUPPORT_OLD_XPRISON -c /usr/src/lib/libkvm/kvm_file.c cc -O2 -fno-strict-aliasing -pipe -DLIBC_SCCS -I/usr/src/lib/libkvm -DSUPPORT_OLD_XPRISON -c /usr/src/lib/libkvm/kvm_getloadavg.c cc -O2 -fno-strict-aliasing -pipe -DLIBC_SCCS -I/usr/src/lib/libkvm -DSUPPORT_OLD_XPRISON -c /usr/src/lib/libkvm/kvm_getswapinfo.c cc -O2 -fno-strict-aliasing -pipe -DLIBC_SCCS -I/usr/src/lib/libkvm -DSUPPORT_OLD_XPRISON -c /usr/src/lib/libkvm/kvm_pcpu.c cc -O2 -fno-strict-aliasing -pipe -DLIBC_SCCS -I/usr/src/lib/libkvm -DSUPPORT_OLD_XPRISON -c /usr/src/lib/libkvm/kvm_proc.c /usr/src/lib/libkvm/kvm_proc.c: In function 'kvm_read_prison_id': /usr/src/lib/libkvm/kvm_proc.c:113: error: storage size of 'xp' isn't known /usr/src/lib/libkvm/kvm_proc.c: In function 'kvm_proclist': /usr/src/lib/libkvm/kvm_proc.c:430: warning: passing argument 1 of 'bintime2timeval' from incompatible pointer type *** Error code 1 Stop in /usr/src/lib/libkvm. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. > # cd /usr/src > # wget http://people.freebsd.org/~bz/bz_jail7-20080727-11-at146062.diff > # patch -p6 bz_jail7-20080727-11-at146062.diff > # make buildworld > # make buildkernel KERNCONF=GENERIC > # make installworld > # make installkernel KERNCONF=GENERIC > # mergemaster -U From owner-freebsd-jail@FreeBSD.ORG Mon Sep 1 22:20:08 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76C6A106566B for ; Mon, 1 Sep 2008 22:20:08 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mail.cksoft.de (mail.cksoft.de [62.111.66.27]) by mx1.freebsd.org (Postfix) with ESMTP id 2B1228FC24 for ; Mon, 1 Sep 2008 22:20:08 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from localhost (amavis.str.cksoft.de [192.168.74.71]) by mail.cksoft.de (Postfix) with ESMTP id 4F69141C711; Tue, 2 Sep 2008 00:20:06 +0200 (CEST) X-Virus-Scanned: amavisd-new at cksoft.de Received: from mail.cksoft.de ([62.111.66.27]) by localhost (amavis.str.cksoft.de [192.168.74.71]) (amavisd-new, port 10024) with ESMTP id pgMjwOy7bHE9; Tue, 2 Sep 2008 00:20:05 +0200 (CEST) Received: by mail.cksoft.de (Postfix, from userid 66) id D664141C70C; Tue, 2 Sep 2008 00:20:05 +0200 (CEST) Received: from maildrop.int.zabbadoz.net (maildrop.int.zabbadoz.net [10.111.66.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.int.zabbadoz.net (Postfix) with ESMTP id DB89244487F; Mon, 1 Sep 2008 22:15:23 +0000 (UTC) Date: Mon, 1 Sep 2008 22:15:23 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@maildrop.int.zabbadoz.net To: Matkhamtkha Brekher In-Reply-To: <53cc795f0809011444t69ba43b5t5eca7e4604235fb4@mail.gmail.com> Message-ID: <20080901221215.N65801@maildrop.int.zabbadoz.net> References: <53cc795f0809011444t69ba43b5t5eca7e4604235fb4@mail.gmail.com> X-OpenPGP-Key: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-jail@freebsd.org Subject: Re: Multiple IPs X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2008 22:20:08 -0000 On Tue, 2 Sep 2008, Matkhamtkha Brekher wrote: > this patch is broken > > today ive tried to compile the patched world and it stops compiling > with due to error: I bet you got errors over errors when you tried to apply it. check the output or the return code from patch in your scripts... patch < .... case $? in 0) ;; # all fine * echo "PATCH DID NOT APPLY CLEANLY" >&2 exit 1 ;; esac You could try with patch -C first btw to not hose your src tre... I am wroking towards getting it into HEAD and once 7 will be in freeze I'll generate a new patch but 7 has been hosed for a while and people are doing last minute MFCs now so I would have had to regen it every few hours. -- Bjoern A. Zeeb Stop bit received. Insert coin for new game. From owner-freebsd-jail@FreeBSD.ORG Tue Sep 2 01:06:03 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C518106566B; Tue, 2 Sep 2008 01:06:03 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.freebsd.org (Postfix) with ESMTP id 580CC8FC1B; Tue, 2 Sep 2008 01:06:03 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from localhost (unknown [200.46.204.183]) by hub.org (Postfix) with ESMTP id 071191D0B705; Mon, 1 Sep 2008 22:06:02 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.183]) (amavisd-maia, port 10024) with ESMTP id 15282-07; Mon, 1 Sep 2008 22:05:55 -0300 (ADT) Received: from [192.168.1.2] (blk-224-204-104.eastlink.ca [24.224.204.104]) by hub.org (Postfix) with ESMTPA id 2BE141D0B703; Mon, 1 Sep 2008 22:06:00 -0300 (ADT) Date: Mon, 01 Sep 2008 22:05:57 -0300 From: "Marc G. Fournier" To: freebsd-isp@freebsd.org Message-ID: <681FC7B8A3FE76F9056F4B54@ganymede.hub.org> X-Mailer: Mulberry/4.0.8 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-jail@freebsd.org Subject: cPanel in a jail ... seems to work ... X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Sep 2008 01:06:03 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Everything appears to have installed fine, I can login, create accounts, etc ... all in all, I'm impressed ... but, I seem to have one process 'running wild': # ps aux | grep stunnel root 93708 92.2 0.0 12780 3500 ?? RJ 12:18AM 40:34.35 /usr/local/bin/stunnel /tmp/stunnel_test.conf root 93704 0.0 0.0 12780 3416 ?? IJ 12:18AM 0:00.00 /usr/local/bin/stunnel /tmp/stunnel_test.conf root 93705 0.0 0.0 12780 3308 ?? IJ 12:18AM 0:00.00 /usr/local/bin/stunnel /tmp/stunnel_test.conf root 93706 0.0 0.0 12780 3308 ?? IJ 12:18AM 0:00.00 /usr/local/bin/stunnel /tmp/stunnel_test.conf root 93707 0.0 0.0 12780 3308 ?? IJ 12:18AM 0:00.00 /usr/local/bin/stunnel /tmp/stunnel_test.conf root 3802 0.0 0.0 456 372 p6 D+J 1:02AM 0:00.00 grep stunnel 92.2% of the CPU? Wow ... Does anyone know what this is for, and why its using so much CPU? - -- Marc G. Fournier Hub.Org Hosting Solutions S.A. (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAki8kXUACgkQ4QvfyHIvDvM6OACg0mLx5etJdLjOvh+x6qThZlPJ 0EsAn0h+mqvxGHzCLdhr2OEHQTA1XSuA =70sT -----END PGP SIGNATURE----- From owner-freebsd-jail@FreeBSD.ORG Tue Sep 2 12:14:46 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A81EE1065671; Tue, 2 Sep 2008 12:14:46 +0000 (UTC) (envelope-from stas@ht-systems.ru) Received: from smtp.ht-systems.ru (mr0.ht-systems.ru [78.110.50.55]) by mx1.freebsd.org (Postfix) with ESMTP id 55FFD8FC19; Tue, 2 Sep 2008 12:14:45 +0000 (UTC) (envelope-from stas@ht-systems.ru) Received: from [83.166.229.34] (helo=sputnik.SpringDaemons.com) by smtp.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1KaUAu-0001AA-5B; Tue, 02 Sep 2008 15:35:56 +0400 Received: by sputnik.SpringDaemons.com (Postfix, from userid 1024) id B879194254D; Tue, 2 Sep 2008 15:37:24 +0400 (MSD) Date: Tue, 2 Sep 2008 15:37:19 +0400 From: Stanislav Sedov To: "Marc G. Fournier" Message-Id: <20080902153719.2148127c.stas@FreeBSD.org> In-Reply-To: <681FC7B8A3FE76F9056F4B54@ganymede.hub.org> References: <681FC7B8A3FE76F9056F4B54@ganymede.hub.org> Organization: The FreeBSD Project X-XMPP: ssedov@jabber.ru X-Voice: +7 916 849 20 23 X-PGP-Fingerprin: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Tue__2_Sep_2008_15_37_19_+0400_QMIxpTVBG.Ws7+W7" Cc: freebsd-isp@freebsd.org, freebsd-jail@freebsd.org Subject: Re: cPanel in a jail ... seems to work ... X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Sep 2008 12:14:46 -0000 --Signature=_Tue__2_Sep_2008_15_37_19_+0400_QMIxpTVBG.Ws7+W7 Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, 01 Sep 2008 22:05:57 -0300 "Marc G. Fournier" mentioned: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 >=20 >=20 > Everything appears to have installed fine, I can login, create accounts, = etc=20 > ... all in all, I'm impressed ... but, I seem to have one process 'runnin= g=20 > wild': >=20 >=20 > # ps aux | grep stunnel > root 93708 92.2 0.0 12780 3500 ?? RJ 12:18AM 40:34.35=20 > /usr/local/bin/stunnel /tmp/stunnel_test.conf > root 93704 0.0 0.0 12780 3416 ?? IJ 12:18AM 0:00.00=20 > /usr/local/bin/stunnel /tmp/stunnel_test.conf > root 93705 0.0 0.0 12780 3308 ?? IJ 12:18AM 0:00.00=20 > /usr/local/bin/stunnel /tmp/stunnel_test.conf > root 93706 0.0 0.0 12780 3308 ?? IJ 12:18AM 0:00.00=20 > /usr/local/bin/stunnel /tmp/stunnel_test.conf > root 93707 0.0 0.0 12780 3308 ?? IJ 12:18AM 0:00.00=20 > /usr/local/bin/stunnel /tmp/stunnel_test.conf > root 3802 0.0 0.0 456 372 p6 D+J 1:02AM 0:00.00 grep stu= nnel >=20 > 92.2% of the CPU? Wow ... >=20 > Does anyone know what this is for, and why its using so much CPU? >=20 What does truss say? --=20 Stanislav Sedov ST4096-RIPE --Signature=_Tue__2_Sep_2008_15_37_19_+0400_QMIxpTVBG.Ws7+W7 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAki9JXQACgkQK/VZk+smlYH0HACfQAYVqq691am25obLa352zmK6 bToAnjKA+Npf3BRNV3Sn7MiL10k4fAsy =riG0 -----END PGP SIGNATURE----- --Signature=_Tue__2_Sep_2008_15_37_19_+0400_QMIxpTVBG.Ws7+W7-- From owner-freebsd-jail@FreeBSD.ORG Wed Sep 3 13:51:54 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A21721065673 for ; Wed, 3 Sep 2008 13:51:54 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.152]) by mx1.freebsd.org (Postfix) with ESMTP id 287B48FC15 for ; Wed, 3 Sep 2008 13:51:53 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so150482fgb.35 for ; Wed, 03 Sep 2008 06:51:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=zTzWhxSb41GsUhDgV+UolfX3ekvABBOkloOo3r7NxeM=; b=WCgs4ryrsQWIQ9N1Q+JBRzGI9hmc4G5Yop+LI5DpcbZSGkYpOyoKDczTZZLSEAXle9 oSccYknxTwrkJNgW+NbavjpLO/9CEwAJChs/QxPr0S3WHCEb/TqeODbRNbXXnbpq6/eV AjsmCEZRxALeGwwe3aD1AAlxn38oS6IJGaYVM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=wrf6fXpyDLMez7TREXNNbrLzV7TSsV84UWQQEHyaTJOSXoYMIjXwXIl+XpNUvSWrrj HfcJ6nzJdA/E+SbpP35WXtho4tTZyiZ9y38yX/508rwYAl53Q+FDRYt3vLqvgItmUEHm AEOe52llMHyNzDuv3Gh99cfh/HYe40JUVwPCI= Received: by 10.86.82.16 with SMTP id f16mr6695369fgb.9.1220449912247; Wed, 03 Sep 2008 06:51:52 -0700 (PDT) Received: from gmail.com ( [77.236.1.49]) by mx.google.com with ESMTPS id l19sm8381324fgb.7.2008.09.03.06.51.50 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 03 Sep 2008 06:51:50 -0700 (PDT) Date: Wed, 3 Sep 2008 15:51:50 +0200 From: Mateusz Guzik To: alexus Message-ID: <20080903135150.GA68588@skucha.home.aster.pl> References: <200808081740.m78He4bc084276@freefall.freebsd.org> <20080808184224.H88849@maildrop.int.zabbadoz.net> <20080809234717.GC13799@skucha.home.aster.pl> <6ae50c2d0808141716g5c213fe9ha688c7b544a0fb35@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline In-Reply-To: <6ae50c2d0808141716g5c213fe9ha688c7b544a0fb35@mail.gmail.com> User-Agent: Mutt/1.4.2.3i Cc: freebsd-jail@freebsd.org, "Bjoern A. Zeeb" Subject: Re: kern/126368: Running ktrace/kdump in jail leads to stale jails X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Sep 2008 13:51:54 -0000 On Thu, Aug 14, 2008 at 08:16:38PM -0400, alexus wrote: > where can I get latest patch? that I can apply to 7.0-RELEASE-p3 ? > Sorry for very late reply, you can grab it from here: http://student.agh.edu.pl/~frag/kern_ktrace.diff Thanks, -- Mateusz Guzik From owner-freebsd-jail@FreeBSD.ORG Thu Sep 4 04:20:37 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEB45106566B for ; Thu, 4 Sep 2008 04:20:37 +0000 (UTC) (envelope-from alexus@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.168]) by mx1.freebsd.org (Postfix) with ESMTP id B02138FC0A for ; Thu, 4 Sep 2008 04:20:37 +0000 (UTC) (envelope-from alexus@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so3082787wfg.7 for ; Wed, 03 Sep 2008 21:20:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=a5iHL0K063lbNKGh42Rf4TmYkG+6DQGyheNSvhIrKl8=; b=DWT7J8WgsFS/fkx8rXU6qlnPTPussWV0gBIrUvTDqjv5c3AOoGLR0UNdutKSx2le8L pU0B6A07Fi26IGpUO7BZFUvPl6cNuyCSoOWtTYe918vB04cFv4QGqTmI9iyOvrEKm2wl nxRhalkenD91a83eHx2GBlhbLasK4eN7502o8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=dS+/U+quGkzBb7A/g7b1Lv5RTS++AHBt+VDtuPJP0syW26Kx4i80q8N2iPJdrKOcFy oE/GS8KqELBBmYSxoK0UAqSs48fZlKSPQ/BfgBaw2tF6ZVmLL0ioEmDjLl6VLuLQf0Ch U5I6MP4Xezvlqc93hzrOEOOkGyVHXF4LqIU70= Received: by 10.142.143.14 with SMTP id q14mr3355180wfd.304.1220502036524; Wed, 03 Sep 2008 21:20:36 -0700 (PDT) Received: by 10.142.211.14 with HTTP; Wed, 3 Sep 2008 21:20:36 -0700 (PDT) Message-ID: <6ae50c2d0809032120u1f6d9929rfe1fdac57c44bb6c@mail.gmail.com> Date: Thu, 4 Sep 2008 00:20:36 -0400 From: alexus To: "Bjoern A. Zeeb" In-Reply-To: <20080901221215.N65801@maildrop.int.zabbadoz.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <53cc795f0809011444t69ba43b5t5eca7e4604235fb4@mail.gmail.com> <20080901221215.N65801@maildrop.int.zabbadoz.net> Cc: freebsd-jail@freebsd.org Subject: Re: Multiple IPs X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Sep 2008 04:20:38 -0000 Bjoern, is there a new patch available by any chance? can you at least post somewhere latest patch that was working? also, would your know if your patch be included in 7.1-RELEASE? Thanks in advance, and thanks for good work! On Mon, Sep 1, 2008 at 6:15 PM, Bjoern A. Zeeb wrote: > On Tue, 2 Sep 2008, Matkhamtkha Brekher wrote: > >> this patch is broken >> >> today ive tried to compile the patched world and it stops compiling >> with due to error: > > I bet you got errors over errors when you tried to apply it. > > check the output or the return code from patch in your scripts... > patch < .... > case $? in > 0) ;; # all fine > * echo "PATCH DID NOT APPLY CLEANLY" >&2 > exit 1 > ;; > esac > > You could try with patch -C first btw to not hose your src tre... > > > > I am wroking towards getting it into HEAD and once 7 will be in freeze > I'll generate a new patch but 7 has been hosed for a while and people > are doing last minute MFCs now so I would have had to regen it every > few hours. > > > -- > Bjoern A. Zeeb Stop bit received. Insert coin for new game. > _______________________________________________ > freebsd-jail@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-jail > To unsubscribe, send any mail to "freebsd-jail-unsubscribe@freebsd.org" > -- http://alexus.org/ From owner-freebsd-jail@FreeBSD.ORG Fri Sep 5 21:15:42 2008 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDCDD106567F; Fri, 5 Sep 2008 21:15:42 +0000 (UTC) (envelope-from simon@nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.freebsd.org (Postfix) with ESMTP id 957A08FC1A; Fri, 5 Sep 2008 21:15:42 +0000 (UTC) (envelope-from simon@nitro.dk) Received: from arthur.nitro.dk (arthur.bofh [192.168.2.3]) by mx.nitro.dk (Postfix) with ESMTP id E17431E8C21; Fri, 5 Sep 2008 20:57:37 +0000 (UTC) Received: by arthur.nitro.dk (Postfix, from userid 1000) id DA3BA5C71; Fri, 5 Sep 2008 22:57:37 +0200 (CEST) Date: Fri, 5 Sep 2008 22:57:37 +0200 From: "Simon L. Nielsen" To: Miroslav Lachman <000.fbsd@quip.cz> Message-ID: <20080905205737.GD1448@arthur.nitro.dk> References: <200806032138.m53Lccwn006905@freefall.freebsd.org> <48BC5EF9.402@quip.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <48BC5EF9.402@quip.cz> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-jail@freebsd.org, freebsd-rc@FreeBSD.org Subject: Re: conf/124248: [patch] add support for nice value for rc.d/jail + rc.conf X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Sep 2008 21:15:43 -0000 On 2008.09.01 23:30:33 +0200, Miroslav Lachman wrote: > linimon@FreeBSD.org wrote: > > Old Synopsis: adds support for nice value for rc.d/jail + rc.conf > > New Synopsis: [patch] add support for nice value for rc.d/jail + rc.conf > > > > Responsible-Changed-From-To: freebsd-bugs->freebsd-rc > > Responsible-Changed-By: linimon > > Responsible-Changed-When: Tue Jun 3 21:38:18 UTC 2008 > > Responsible-Changed-Why: > > Over to maintainer(s). > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=124248 > > Is there any chance to have it in FreeBSD 7.1 RELEASE? As the patch hasn't been commited yet to -CURRENT, having it in 7.1 is somewhat unlikely. Somebody need to take an interest first... -- Simon L. Nielsen