From owner-freebsd-questions@FreeBSD.ORG Sun May 20 07:41:34 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42962106566B for ; Sun, 20 May 2012 07:41:34 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from sola.nimnet.asn.au (paqi.nimnet.asn.au [115.70.110.159]) by mx1.freebsd.org (Postfix) with ESMTP id 561DB8FC0A for ; Sun, 20 May 2012 07:41:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by sola.nimnet.asn.au (8.14.2/8.14.2) with ESMTP id q4K7fHlR074856; Sun, 20 May 2012 17:41:18 +1000 (EST) (envelope-from smithi@nimnet.asn.au) Date: Sun, 20 May 2012 17:41:17 +1000 (EST) From: Ian Smith To: David Banning In-Reply-To: <20120519120024.1820210657C5@hub.freebsd.org> Message-ID: <20120520153337.Y98171@sola.nimnet.asn.au> References: <20120519120024.1820210657C5@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-questions@freebsd.org Subject: Re: problems with networking and route command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 07:41:34 -0000 In freebsd-questions Digest, Vol 415, Issue 6, Message: 1 On Fri, 18 May 2012 08:07:16 -0400 David Banning wrote: > > > It is machines that connect and receive via DHCP 192.168.1.2 and above that > > > can't connect to the internet though the server. I don't know a whole > > > lot about route - I have been attempting a variation of route commands > > > without success. [Chuck Swiger wrote:] > > You need to implement NAT on this box, since 192.168.0.0/16 is an > > RFC-1918 unrouteable private network range. > I previously connected to the internet using ppp with the -nat option > and now my connection has changed - so that makes sense. > > So I implemented natd. > > Unfortunately natd does not work as yet. I followed the setup as laid > out in "man natd" and also used the layout in; > > http://www.freebsddiary.org/ipfw.php I've since seen Derek's response in the archives (I get the digests) at http://lists.freebsd.org/pipermail/freebsd-questions/2012-May/241035.html and I agree that 1998 is far too old to be of much use. I differ however about advisability of referring to the Handbook IPFW page, which frankly sucks - the only section of the Handbook that does, that I know of; you will find ipfw(8) and /etc/rc.firewall to be much better friends. > Here is my natd setup > > 1. Compiled IPFIREWALL & IPDIVERT into my kernel - went fine. Didn't need to, both will load from modules from the /etc/rc.d scripts. Many these days prefer to use in-kernel NAT (firewall_nat_enable="YES") instead, but natd still works as ever; you can always switch later. > Here is my rc.conf network related entries; > > natd_enable="YES" > natd_interface="rl0" > natd_flags="-f /etc/natd.conf" > gateway_enable="YES" > ifconfig_rl0="inet 64.40.244.36 netmask 255.255.255.240" > defaultrouter="64.40.244.33" > ifconfig_vr0="DHCP" > ifconfig_vr0=up > ifconfig_vr0="inet 192.168.1.1" Only the last ifconfig_vr0 counts, but that's ok, DHCP is for clients, not where vr0 gets its address from, right? Ah, you fix that below .. > network_interfaces="rl0 vr0 lo0" > ifconfig_lo0="inet 127.0.0.1" > firewall_enable="YES" > firewall_script="/etc/firewall.rules" > firewall_type="simple" > firewall_logging="YES" firewall_type only applies where firewall_script="/etc/rc.firewall", however that would be ignored by your custom /etc/firewall.rules. > dhcpd_ifaces="vr0" > dhcpd_enable="YES" > > My firewall rules; > > ipfw add 64000 allow ip from any to any > ipfw add divert natd all from any to any via rl0 > ipfw add allow tcp from any to 192.168.2.1 139 > ipfw add allow tcp from any to 192.168.1.1 139 That won't work; after specifying the current rule as 64000, subsequent unnumbered rules will be placed at 64100, 64200 etc - so they will never be reached. If you put that 'allow all' at the end that would work, although a default policy of 'deny all' is very much safer. > ipfw add 6000 deny tcp from any to 64.40.244.36 139 > ipfw add 6010 deny tcp from any to 64.40.244.36 445 These two will now be the first rules encountered, being so numbered. You'll also want to deny an awful lot more than NETBIOS packets to your outside address, see below. > ipfw add deny tcp from any to any 139 And that will go at the end, again after everything has been allowed. Always use 'ipfw list' or 'ipfw show' to check your running ruleset. I would seriously advise you to consider using the rc.firewall 'simple' ruleset, at least as a basis, for a setup like yours. It's designed specifically to protect small networks, and particularly to place the NAT rules in just the right place between inbound and outbound anti- spoofing rules. See /etc/defaults/rc.conf for the variables you can set that should work more or less out of the box, though you may want to modify rc.firewall (or better, a copy of it, say rc.myfirewall) if you need to any add particular rules for specific services you need. It will also protect your IPv6 network, if that's relevant to you. > My /etc/natd.conf; > > interface rl0 > use_sockets yes > same_ports yes Should be ok. You already have natd_interface="rl0" in rc.conf. Consider 'unregistered_only yes', particularly if not using the anti-spoofing rules provided in rc.firewall 'simple'. > My /etc/services includes the line; > > natd 8668/divert # Network Address Translation socket > > Output of ifconfig; > > # ifconfig > fwe0: flags=8802 mtu 1500 > ether 02:11:d8:b3:0e:43 > ch 1 dma -1 > vr0: flags=8843 mtu 1500 > inet 192.168.1.1 netmask 0xffffff00 broadcast 192.168.1.255 > inet6 fe80::16d6:4dff:fe47:88ae%vr0 prefixlen 64 scopeid 0x2 > ether 14:d6:4d:47:88:ae > media: Ethernet autoselect (100baseTX ) > status: active > rl0: flags=8843 mtu 1500 > inet 64.40.244.36 netmask 0xfffffff0 broadcast 64.40.244.47 > inet6 fe80::211:95ff:fe66:7162%rl0 prefixlen 64 scopeid 0x3 > ether 00:11:95:66:71:62 > media: Ethernet autoselect (100baseTX ) > status: active > lp0: flags=8810 mtu 1500 > lo0: flags=8049 mtu 16384 > inet6 ::1 prefixlen 128 > inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5 > inet 127.0.0.1 netmask 0xff000000 > ppp0: flags=8010 mtu 1500 > sl0: flags=c010 mtu 552 > faith0: flags=8002 mtu 1500 > > >From my initial communication I have swapped the uses of the two network > cards - which explains the reversal of entries for devices vr0 and rl0. > Still I have server connection to the internet on rl0 and server > connection to the network on vr0 - but the network cannot connect > to the internet via rl0. > > If there are any commands that would help collect information leading > to the answer I would appreciate any feedback. rc.firewall, though not perfect, provides a good, safe basic firewall for your stated needs. The major omission in the 'simple' ruleset is that it doesn't enable 'essential' ICMP messages, allowing pings but more importantly, TCP path MTU discovery. You might add, for example: # Allow outbound pings from our net ${fwcmd} add pass icmp from any to any out icmptypes 8 keep-state # Allow essential ICMP: unreachable, source quench, TTL exceeded ${fwcmd} add pass icmp from any to any icmptypes 3,4,11 ${fwcmd} add deny icmp from any to any # or default deny all later cheers, Ian (please cc me on any response) From owner-freebsd-questions@FreeBSD.ORG Sun May 20 07:50:13 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 068FA106566C for ; Sun, 20 May 2012 07:50:13 +0000 (UTC) (envelope-from venkatduvvuru.ml@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 80F9B8FC0A for ; Sun, 20 May 2012 07:50:12 +0000 (UTC) Received: by obcni5 with SMTP id ni5so8626444obc.13 for ; Sun, 20 May 2012 00:50:11 -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=B9ltP2OfMHJmuy4L4GF5HEFkR8zzdO8pai5M0bgS0cQ=; b=m/Fo66JRN9Ohq0pr0pjNiYnrmzCeeyTQXfLcGW8LLjwhajlmdxW1LPg3OvLHO0BQWp 3HTylwmGHbhfJ83qqFniGLdUxhXjiYGpZIZnRfvJ94KJ69iYlgI+KOrhXUXjfiwhELx1 LYuMB0mklr0VAjKQPaAI0mseShUmpZGtekf1ztpbEqI+Lp+u5q5f5iI8541Ol4dWYjN1 I6D03NEd61l/npIOFEVJPzwlYsWV1lv1KWUKO1gZtQ8LXc1cGnXgn3eyC00MyHHZGJQd o+B7mD1YtwA7QwBzy1Mnn/zpM/Og8VYjI8ejmGMzKq04pk//Pw0IsCCMLR+A+3ZDHIQq kcuw== MIME-Version: 1.0 Received: by 10.50.46.228 with SMTP id y4mr4290469igm.10.1337500211677; Sun, 20 May 2012 00:50:11 -0700 (PDT) Received: by 10.64.12.205 with HTTP; Sun, 20 May 2012 00:50:11 -0700 (PDT) Date: Sun, 20 May 2012 13:20:11 +0530 Message-ID: From: Venkat Duvvuru To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Extend Error Handling X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 07:50:13 -0000 Linux has a feature called EEH (extended error handling) which is introduced to handle PCI errors gracefully. Is EEH supported in freebsd as well? I looked into the documentation of freebsd and briefly looked into the freebsd source tree as well but couldn't find anything like that. Please confirm. /Venkat From owner-freebsd-questions@FreeBSD.ORG Sun May 20 08:36:29 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D4E91106566B for ; Sun, 20 May 2012 08:36:29 +0000 (UTC) (envelope-from freebsdathome@telus.net) Received: from defout.telus.net (defout.telus.net [204.209.205.31]) by mx1.freebsd.org (Postfix) with ESMTP id EEDC18FC0A for ; Sun, 20 May 2012 08:36:28 +0000 (UTC) Received: from edmwcm04 ([204.209.205.31]) by priv-edmwes48.telusplanet.net (InterMail vM.8.01.03.00 201-2260-125-20100507) with ESMTP id <20120520083616.KHQQ11384.priv-edmwes48.telusplanet.net@edmwcm04> for ; Sun, 20 May 2012 02:36:16 -0600 Received: from localhost.localdomain ([142.179.38.250]) by edmwcm04 with bizsmtp id C8Tk1j00z5Ppoyu018Tkx1; Sun, 20 May 2012 02:27:45 -0600 X-Authority-Analysis: v=1.1 cv=xe1kXdDUpMZg26Ozmtu6NDPbLQj4YktJcmTKvqO5QKc= c=1 sm=2 a=LGgl8L9ij00A:10 a=kj9zAlcOel0A:10 a=PoZGbeaQAAAA:8 a=6-2wp9am0bCSeB62Z3cA:9 a=CjuIK1q_8ugA:10 a=0ceDX-PQDVkA:10 X-Telus-Outbound-IP: 142.179.38.250 Date: Sun, 20 May 2012 01:37:34 -0700 From: freebsdathome@telus.net To: freebsd-questions@freebsd.org Message-ID: <20120520013734.55067850@telus.net> In-Reply-To: <4FB7C7DD.5060906@cyberleo.net> References: <20120518211704.3ad0afe3@gmail.com> <4FB74053.8090602@gmail.com> <20120519012919.42724cb4@telus.net> <4FB7C7DD.5060906@cyberleo.net> Organization: home-REBEKAH X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: buildworld problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 08:36:29 -0000 On Sat, 19 May 2012 11:18:37 -0500 CyberLeo Kitsana wrote: > On 05/19/2012 03:29 AM, Andriy Babiy wrote: > >>> "Makefile.inc1", line 160: CPUTYPE global should be set with ?=. > ... > > In make.conf I have CPUTYPE=nocona > > As it says, you need CPUTYPE?=nocona instead of CPUTYPE=nocona in > /etc/make.conf or /etc/src.conf; otherwise the build process chokes > while building the 32-bit compatibility stuff, since it cannot > override your 64-bit CPU selection with a 32-bit one. > You are right. Thank you. From owner-freebsd-questions@FreeBSD.ORG Sun May 20 11:00:29 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95F0E106564A for ; Sun, 20 May 2012 11:00:29 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from outbound.icp-qv1-irony-out6.iinet.net.au (outbound.icp-qv1-irony-out6.iinet.net.au [203.59.1.109]) by mx1.freebsd.org (Postfix) with ESMTP id 9C2D48FC08 for ; Sun, 20 May 2012 11:00:05 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgwKAKLNuE98lICU/2dsb2JhbABFsm4DgR2BB4IVAQEEATo/BQsLDTkUGDETiAkEvEiLXoQSYgOVGoU9NYl/gns X-IronPort-AV: E=Sophos;i="4.75,625,1330876800"; d="scan'208";a="326231224" Received: from unknown (HELO smtp.phoenix) ([124.148.128.148]) by outbound.icp-qv1-irony-out6.iinet.net.au with ESMTP; 20 May 2012 18:59:50 +0800 Received: by smtp.phoenix (Postfix, from userid 1001) id CE7563534; Sun, 20 May 2012 20:59:50 +1000 (EST) Date: Sun, 20 May 2012 20:59:50 +1000 From: andrew clarke To: Polytropon Message-ID: <20120520105950.GA64196@ozzmosis.com> References: <4FB4DEC1.8020704@bananmonarki.se> <20120517145437.03dd4cdf.freebsd@edvax.de> <20120517151713.2503552d.freebsd@edvax.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120517151713.2503552d.freebsd@edvax.de> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-questions@freebsd.org, fake fake Subject: Re: ls-F tcsh built-in command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 11:00:29 -0000 On Thu 2012-05-17 15:17:13 UTC+0200, Polytropon (freebsd@edvax.de) wrote: > Search for "LS_COLORS" in the environment variables section > of "man csh". However, I've always been satisfied with using > $LSCOLORS as "ExGxdxdxCxDxDxBxBxegeg". :-) Before I discovered $LSCOLORS I used gls from /usr/ports/sysutils/coreutils and had an alias in .tcshrc: alias ls "gls --time-style=long-iso --color=auto" I still use this in Linux. In FreeBSD I use /bin/ls: setenv LSCOLORS "ExGxFxdxCxDxDxhbadExEx" alias ls 'ls -D "%Y-%m-%d %H:%M:%S"' The -D stuff is to display ISO 8601 style timestamps like GNU ls's --time-style=long-iso format, eg: -r-xr-xr-x 1 root wheel 12612347 2011-09-28 19:13:57 /boot/GENERIC/kernel I don't know if this helps the OP. :-) From owner-freebsd-questions@FreeBSD.ORG Sun May 20 12:17:13 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2B262106564A for ; Sun, 20 May 2012 12:17:13 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id E07188FC14 for ; Sun, 20 May 2012 12:17:12 +0000 (UTC) Received: by obcni5 with SMTP id ni5so8978130obc.13 for ; Sun, 20 May 2012 05:17:06 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding:x-gm-message-state; bh=Mo5xKeTpGE+jL+LVREgqKGVGzosqIi6IEV7m791v/0Q=; b=FLD/r2bkAhuuVRHuAb3BqZjVFCWsrqkoh5uyIlZfs1xyxfV7SxfrHAxDGXuilHKXNn FM03g2FOxFR3w4WwzFliXJvePa3ciQMqMioh4VxnJvv6kpEnveP+Dnz8nubvaivl9thS owMFZL64hd6GMBq2xXfbQcLFJ2kskbTjh86UkLy1+sjjjWL5zkkeTGgi5gxRpB5juG8G g+wPGiUrliBQQq9Pb0aZdB2QqNs0S/0cqc8ZgsNh0wz4dEwK/4qwd1AC6Laffr1Alihz TRMc1oSBtdzpcsoxff/hwnG+rAO/MzyAaBLX8pp8QMe+gdstXU2Q9RDQnry7zA5di7UT 88lw== MIME-Version: 1.0 Received: by 10.50.193.132 with SMTP id ho4mr4507839igc.17.1337516226374; Sun, 20 May 2012 05:17:06 -0700 (PDT) Received: by 10.231.167.10 with HTTP; Sun, 20 May 2012 05:17:06 -0700 (PDT) X-Originating-IP: [93.221.167.173] In-Reply-To: <4FB64022.6010206@bananmonarki.se> References: <201205181149.q4IBndvU028665@hera.homer.att.com> <4FB64022.6010206@bananmonarki.se> Date: Sun, 20 May 2012 14:17:06 +0200 Message-ID: From: "C. P. Ghost" To: Bernt Hansson Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQnCOdSzMlBBx26wEUX46W0H38kDErru7xl+cFCtXXGypoH8G/KV+4+V0vAuylzyfk1zn7rj Cc: freebsd-questions@freebsd.org, "J. W. Ballantine" Subject: Re: Mouse stopped working in X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 12:17:13 -0000 On Fri, May 18, 2012 at 2:27 PM, Bernt Hansson wrote: > 2012-05-18 13:49, J. W. Ballantine skrev: > >> Hi, >> >> Before the update of x11 on 4/21/2012, X was working fine, but now >> when I startx, my usb and touchpad mouse are no longer found. =A0The >> mouse works in terminal mode, and hald and dbus are started in >> /etc/rc.conf. > > I have exactly the same problem. What windowmanager are you > using? I'm using xfce4, I have a workaround for that. > > 1. start X > 2. when it comes up press alt+F2, the start program dialog comes up > 3. type in xterm or your terminal of choice > 4. in your terminal su to root then type > > /usr/local/etc/rc.d/dbus restart && /usr/local/etc/rc.d/hald restart > > wait a few seconds and the mouse should work again. I have the same problem but with a ps/2 mouse. Restarting dbus and hald from within an xterm is a workable workaround. Since I'm using fluxbox, I start an xterm in ~/.xinitrc in the background to get a terminal before exec-ing fluxbox. Luckily, this xterm has already the focus. This is the relevant part of /var/log/Xorg.0.log regarding the mouse: (II) config/hal: Adding input device PS/2 Mouse (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input/mouse_drv.so (II) Module mouse: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.7.1 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 7.0 (WW) PS/2 Mouse: No Device specified, looking for one... (II) PS/2 Mouse: Setting Device option to "/dev/psm0" (--) PS/2 Mouse: Device: "/dev/psm0" (=3D=3D) PS/2 Mouse: Protocol: "Auto" (**) PS/2 Mouse: always reports core events (**) Option "Device" "/dev/psm0" (EE) xf86OpenSerial: Cannot open device /dev/psm0 Device busy. (EE) PS/2 Mouse: cannot open input device (II) UnloadModule: "mouse" (EE) PreInit returned NULL for "PS/2 Mouse" (EE) config/hal: NewInputDeviceRequest failed (8) After restarting hald: (II) config/hal: Adding input device PS/2 Mouse (WW) PS/2 Mouse: No Device specified, looking for one... (II) PS/2 Mouse: Setting Device option to "/dev/sysmouse" (--) PS/2 Mouse: Device: "/dev/sysmouse" (=3D=3D) PS/2 Mouse: Protocol: "Auto" (**) PS/2 Mouse: always reports core events (**) Option "Device" "/dev/sysmouse" (=3D=3D) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5 (**) PS/2 Mouse: Buttons: 9 (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) Interestingly, the first time Xorg tries to access the mouse, it opens /dev/psm0, and the second time after manually restarting hald, it accesses /dev/sysmouse... which is the driver that I always use in /etc/X11/xorg.conf: Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Shouldn't Xorg use /dev/sysmouse all the time then? Why does it try to open /dev/psm0? I hope this problem will get fixed soon. ;-) Thanks for the good workaround. Regards, -cpghost. --=20 Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Sun May 20 12:23:28 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 607001065670 for ; Sun, 20 May 2012 12:23:28 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 269078FC15 for ; Sun, 20 May 2012 12:23:28 +0000 (UTC) Received: by obcni5 with SMTP id ni5so8986976obc.13 for ; Sun, 20 May 2012 05:23:27 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:date:message-id:subject:from:to :content-type:x-gm-message-state; bh=9p1UH7jLEY/rr5ycCWNdDD4BmjM7dOKMM0wuLz7geak=; b=M49E4BSSNN1GitZPk1Dz+96vt37BSiaId0y/Ilj6IkXw7n+QqRaBqhHFEGNESz8byY 15dCCtyOMYFW7WRh9qDTyCYNLzhkjoWwH7YyG4vGtfYigWZdyJQ14Ux2/wvEJBKKIdsM xY/k+XVvnaBcHUw6vi3nqJItLDVPpMQcZWKd9ftR6aQA6DGZ/chw5C2QuPX68PMjS0DV heMKUuBJU5IXq6PV4zcKC+DaCiOCo8L04M7QOvei22UNy2lOr2k/FcPHQxb/MllH0Bj5 ipmSPIaiol8jDFZjLAwo+z8reWkxAmRdHMkEdSNKMAoFAT/cM2+NEkgks4JqGV1TiKTt 4+yw== MIME-Version: 1.0 Received: by 10.50.41.165 with SMTP id g5mr4639693igl.13.1337516607291; Sun, 20 May 2012 05:23:27 -0700 (PDT) Received: by 10.231.167.10 with HTTP; Sun, 20 May 2012 05:23:27 -0700 (PDT) X-Originating-IP: [93.221.167.173] Date: Sun, 20 May 2012 14:23:27 +0200 Message-ID: From: "C. P. Ghost" To: FreeBSD Mailing List Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQllBHSfL1ShOE/9K3IeQG9aZ7Kka5oPudtj/czdR7D2PTF9N+lqc2EyqSBYMSQ/Zlpls/vU Subject: link_elf_obj: symbol ata_controlcmd undefined X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 12:23:28 -0000 Hello, what does this boot message means, and where does it come from? link_elf_obj: symbol ata_controlcmd undefined linker_load_file: Unsupported file type It appears between between ZFS storage pool version 28 and drm0: on vgapci0 uname -a: FreeBSD phenom.cordula.ws 9.0-STABLE FreeBSD 9.0-STABLE #0 r235604: Fri May 18 15:49:06 CEST 2012 root@phenom.cordula.ws: /usr/obj/usr/src/sys/GENERIC amd64 TIA, -cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Sun May 20 13:13:37 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A6FE1065670 for ; Sun, 20 May 2012 13:13:37 +0000 (UTC) (envelope-from iqbal@aroussi.name) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id EDB938FC15 for ; Sun, 20 May 2012 13:13:36 +0000 (UTC) Received: by obcni5 with SMTP id ni5so9056542obc.13 for ; Sun, 20 May 2012 06:13:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=aroussi.name; s=google; h=mime-version:from:date:message-id:subject:to:content-type; bh=8nvq6/NRFymgN8qlCsW31ELBH6nq8FdLudVNnMplPKs=; b=XY95iF0vdcpMSSapV+nIKEBTtXrVEBbr8/2mkHinQPspgsxZtfS3l7xl4lAwznRpro cuwgRr7pXZ1ATHclsE5xAAwi9GAAelXw/V3iiZGKMpJAG5mTEn1X5PCG9S+/1HLGx5ZU v1sesNKv9voB1HW5GpfVdgC3f2t4l3vbSLqpo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type :x-gm-message-state; bh=8nvq6/NRFymgN8qlCsW31ELBH6nq8FdLudVNnMplPKs=; b=W7HEFasIVSAiBiarzuZlZ5Sf6J2+c/LKlzqHJr/vnUiuA3dbJHxV11jcB+sTOuXyU2 LS07PWAA/Z03DS0qAYEp6blyg/Hge0oYDydrV+7aKGjjhwqs2KDX8UO5lovis2Rw9IZa mG6Lv0VW0cWp65o55drZ3+umIeksyJQ4ibjL60RF4OJhmgAjTW/RI2WBx976VeQdC9T0 fM/Jefg/Qm6zmdTm0HuhZRmnKeRbRrh9AvA2Nui4PxGj6O/NwFKRp2toc2afOLHAdxLl mMV9ILRHp5XXeDcIdc7BfNx+G+ed8QxO0WPn+4sxv1wlnArdOHdk12tE9vffBD5sEq2c aeZQ== Received: by 10.60.25.6 with SMTP id y6mr16407252oef.42.1337519616119; Sun, 20 May 2012 06:13:36 -0700 (PDT) MIME-Version: 1.0 Received: by 10.182.150.1 with HTTP; Sun, 20 May 2012 06:13:15 -0700 (PDT) From: Iqbal Aroussi Date: Sun, 20 May 2012 13:13:15 +0000 Message-ID: To: FreeBSD Mailing List X-Gm-Message-State: ALoCoQk1a3/rFgAVcY41GK6vlldvfCcXukl4s7vvz6JymZ2wWlQ4xCdEx2O4lfIWqrdQ4LgB19Wf Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: lrzip error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 13:13:37 -0000 Hi, I've installed lrzip from ports 'portmaster archivers/lrzip' on both FreeBSD 8.2 / 9 but when I try using it it always fail. I get the following error: iA# lrzip file.sql Output filename is: file.sql.lrz pthread_mutex_lock failedNo such file or directory Fatal error - exiting I need your help please. Thanks in advance. * -- * *Iqbal Aroussi* *+212 660 304 583* *iqbal@aroussi.name* From owner-freebsd-questions@FreeBSD.ORG Sun May 20 14:41:11 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EB83C106566B for ; Sun, 20 May 2012 14:41:11 +0000 (UTC) (envelope-from lists@xaerolimit.net) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id BD0918FC12 for ; Sun, 20 May 2012 14:41:11 +0000 (UTC) Received: by dadv36 with SMTP id v36so6193418dad.13 for ; Sun, 20 May 2012 07:41:10 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:subject:message-id:x-mailer:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=XMpP5EJAJ104xIndtWlg6V88YOmxJ1gOQ7nimyCdeNA=; b=bmD3QX2oDlbZEmoe1dq+s5qQ5ljt0KkXgkMNKoDqSJ3xVsJM/ay2KBY+1zVhEcvdyD SC4KtGjlG6kBGU3zMY3oBiqEEfe7EtQrirq8FuMKE2c+UJ1O0N4BOhs//zgVnUU/ic6a yhPAXEei0Pw9r/UrRwsTZHKovoNc9vtQxV89TuAXIkLH8vo03XZpSpyOF9nTnMgiHs9P 4Dshbz/DQ5lSlOxzW6fNxYEJoxc9Kj+BhISe+2qqcSyQ+22jjZg+/xs2stt9UI0MZIy3 vx8qDvZLz87FQZDuxhjQIyimJlw4rIugwd+EGXGF9nwNQd8ffWVOEaHF/pZxiEQuOkRc 6sdA== Received: by 10.68.191.106 with SMTP id gx10mr16323688pbc.161.1337524870554; Sun, 20 May 2012 07:41:10 -0700 (PDT) Received: from Naga (ool-45745da6.dyn.optonline.net. [69.116.93.166]) by mx.google.com with ESMTPS id mt9sm19779220pbb.14.2012.05.20.07.41.09 (version=SSLv3 cipher=OTHER); Sun, 20 May 2012 07:41:10 -0700 (PDT) Date: Sun, 20 May 2012 10:41:00 -0400 From: Chris Brennan (lists) To: freebsd-questions@freebsd.org Message-Id: <20120520104100.840fd1e7ddf3096c27520885@xaerolimit.net> X-Mailer: Sylpheed 3.2.0beta6 (GTK+ 2.10.14; i686-pc-mingw32) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQnsRHRiJRy4U7RLUZ0C8TjMDKGNAqllwqnJtUrg8QgA2dw6/bhE4at4coGJlG10+uaSfrvH Subject: ZFS mounting order X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 14:41:12 -0000 Greetings! I have a FreeBSD 9 system with 3 different ZFS pools on it. I am booting from a ro CF Card w/o any major issues, the problem I am encountering is that zroot needs to be mounted at boot first, because it contains /usr, zhome and tank contain other various sub-partitions of /usr. Also, zroot causes me a lot of problems when I try to do "zpool import", when zpool gets to probing zroot, I get g_vfs errors printed to the console and the hacnine hangs till I reset it (which is obviously not acceptable behavior.) I was able to get around this when booting to my cf card by making / ro, which was my intention all along for that media.) I suspect this happens because there is a on that volume that is trying to replace something on / on either the USB boot img or on my CF card and this might be causing either to freak out. So I dunno what to do to get this working the way it should and some guidence would be greatly appreciated! -- > Chris Brennan | http://xaerolimit.net | http://xaerolimit.net/forum > A: Yes. > >Q: Are you sure? > >>A: Because it reverses the logical flow of conversation. > >>>Q: Why is top posting frowned upon? > http://xkcd.com/84/ | http://xkcd.com/149/ | http://xkcd.com/549/ > GPG: D5B20C0C (6741 8EE4 6C7D 11FB 8DA8 9E4A EECD 9A84 D5B2 0C0C) ------------------------------------------------------------------------ From owner-freebsd-questions@FreeBSD.ORG Sun May 20 15:31:43 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6EBE1106566B for ; Sun, 20 May 2012 15:31:43 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 2A1C38FC16 for ; Sun, 20 May 2012 15:31:43 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx01.qsc.de (Postfix) with ESMTP id 63AEB3CA24; Sun, 20 May 2012 17:31:40 +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 q4KFVeX6001925; Sun, 20 May 2012 17:31:40 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Sun, 20 May 2012 17:31:40 +0200 From: Polytropon To: andrew clarke Message-Id: <20120520173140.428f4b59.freebsd@edvax.de> In-Reply-To: <20120520105950.GA64196@ozzmosis.com> References: <4FB4DEC1.8020704@bananmonarki.se> <20120517145437.03dd4cdf.freebsd@edvax.de> <20120517151713.2503552d.freebsd@edvax.de> <20120520105950.GA64196@ozzmosis.com> 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-questions@freebsd.org, fake fake Subject: Re: ls-F tcsh built-in command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 15:31:43 -0000 On Sun, 20 May 2012 20:59:50 +1000, andrew clarke wrote: > In FreeBSD I use /bin/ls: > > setenv LSCOLORS "ExGxFxdxCxDxDxhbadExEx" > alias ls 'ls -D "%Y-%m-%d %H:%M:%S"' > > The -D stuff is to display ISO 8601 style timestamps like GNU ls's > --time-style=long-iso format, eg: > > -r-xr-xr-x 1 root wheel 12612347 2011-09-28 19:13:57 /boot/GENERIC/kernel > > I don't know if this helps the OP. :-) At least it helps me, many thanks for the inspiration! I now have (and intend to keep using): setenv LSCOLORS "ExGxdxdxCxDxDxBxBxegeg" alias ls 'ls -FG -D "%Y-%m-%d %H:%M:%S"' alias ll 'ls -laFG -D "%Y-%m-%d %H:%M:%S"' This is nice because I haven't found a feature of gls yet that I needed, but which system's ls couldn't provide. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sun May 20 15:54:52 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 737061065670 for ; Sun, 20 May 2012 15:54:52 +0000 (UTC) (envelope-from LConrad@Go2France.com) Received: from mgw1.MEIway.com (mgw1.meiway.com [81.255.84.75]) by mx1.freebsd.org (Postfix) with ESMTP id 346ED8FC1A for ; Sun, 20 May 2012 15:54:51 +0000 (UTC) Received: from VirusGate.MEIway.com (virusgate.meiway.com [81.255.84.76]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 4D5D947187F for ; Sun, 20 May 2012 17:22:22 +0200 (CEST) Received: from mail.Go2France.com (ms1.meiway.com [81.255.84.73]) by VirusGate.MEIway.com (Postfix) with ESMTP id 8F2C23865BB for ; Sun, 20 May 2012 17:22:22 +0200 (CEST) (envelope-from LConrad@Go2France.com) Received: from W500.Go2France.com [72.48.240.99] by mail.Go2France.com with ESMTP (SMTPD32-7.07) id AC3028DD00FE; Sun, 20 May 2012 17:22:24 +0200 X-Mailer: QUALCOMM Windows Eudora Version 7.1.0.9 Date: Sun, 20 May 2012 10:22:04 -0500 To: freebsd-questions@freebsd.org From: Len Conrad Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Message-Id: <201205201722810.SM10488@W500.Go2France.com> Subject: Cannot --enable-pcretest-libedit because libedit library was not found X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 15:54:52 -0000 8.2-RELEASE FreeBSD 8.2-RELEASE #0 with current portsnap mtr, postfix-current, pcre all fail to install with error: ** Cannot --enable-pcretest-libedit because libedit library was not found. ===> Script "configure" failed unexpectedly. Please report the problem to mm@FreeBSD.org [maintainer] and attach the "/usr/ports/devel/pcre/work/pcre-8.30/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 thanks Len From owner-freebsd-questions@FreeBSD.ORG Sun May 20 16:08:11 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 871581065672 for ; Sun, 20 May 2012 16:08:11 +0000 (UTC) (envelope-from bluethundr@gmail.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 41E218FC0C for ; Sun, 20 May 2012 16:08:10 +0000 (UTC) Received: by vbmv11 with SMTP id v11so4351909vbm.13 for ; Sun, 20 May 2012 09:08:04 -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=lQU21eCQi+rjUVZODTSmHmavHwjj2dVfwproULGYyz4=; b=ZCFGFd50r3Mz8C+m3c8makR0UkR5CJ6jofg+9EJqrveIpIUUMUV6Sw4ULMZIgENY9e 16BEzCLf6BcyYgO/9e6QatMTIkfMofQatFIfb4Lz9Y//hOQsYRxXXUY2yFzRSF9w2YyG X9OgRo3Dix8TbhoFEYkkonTy48YRISR7xbgwKUN1gFAXqvIyqXwJ61H2TZLkawWAllnV KUa+LtMllRNzY0Fm4FFuPl2/rpgIh40yEKCIjxG2aVPtJF+xibR+4nX3p/wrbNJ+K1hN lleQ1R+tLFbkt0FzytDS13h52MDk6P/hh7ZbM/dhq6vnnIzjFZDI2Rr/mVCYNrHwX5L1 tceA== MIME-Version: 1.0 Received: by 10.52.69.100 with SMTP id d4mr8800761vdu.9.1337530084581; Sun, 20 May 2012 09:08:04 -0700 (PDT) Received: by 10.52.172.103 with HTTP; Sun, 20 May 2012 09:08:04 -0700 (PDT) Date: Sun, 20 May 2012 12:08:04 -0400 Message-ID: From: Tim Dunphy To: freebsd-questions Content-Type: text/plain; charset=ISO-8859-1 Subject: eliminate character with sed X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 16:08:11 -0000 Hello list, I have a few php config files that have the windows delimiter character in them ('^M') that I would like to get rid of. I'm trying to use sed to do it, and for some reason I am not having any luck. Here's the line that I'm trying to use: #sed -i '.bak' 's/^M//g' config.php However when I have a look at the backup file that's been created with this command, it looks like there was no effect: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 70C491065670 for ; Sun, 20 May 2012 16:09:03 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id CBFC98FC1F for ; Sun, 20 May 2012 16:09:02 +0000 (UTC) Received: from seedling.local (209.Red-88-21-46.staticIP.rima-tde.net [88.21.46.209]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q4KG8pkH022313 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sun, 20 May 2012 17:08:52 +0100 (BST) (envelope-from matthew@FreeBSD.org) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q4KG8pkH022313 Authentication-Results: smtp.infracaninophile.co.uk/q4KG8pkH022313; dkim=none (no signature); dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host 209.Red-88-21-46.staticIP.rima-tde.net [88.21.46.209] claimed to be seedling.local Message-ID: <4FB91709.7040409@FreeBSD.org> Date: Sun, 20 May 2012 18:08:41 +0200 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Len Conrad References: <201205201722810.SM10488@W500.Go2France.com> In-Reply-To: <201205201722810.SM10488@W500.Go2France.com> X-Enigmail-Version: 1.4.1 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig9CB36148B041F2801A9083DB" X-Virus-Scanned: clamav-milter 0.97.4 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,KHOP_DYNAMIC, SPF_SOFTFAIL autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Cc: freebsd-questions@FreeBSD.org Subject: Re: Cannot --enable-pcretest-libedit because libedit library was not found X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 16:09:03 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig9CB36148B041F2801A9083DB Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 20/05/2012 17:22, Len Conrad wrote: > 8.2-RELEASE FreeBSD 8.2-RELEASE #0 >=20 > with current portsnap >=20 > mtr, postfix-current, pcre all fail to install with error: >=20 > ** Cannot --enable-pcretest-libedit because libedit library was not fou= nd. > =3D=3D=3D> Script "configure" failed unexpectedly. > Please report the problem to mm@FreeBSD.org [maintainer] and attach the= > "/usr/ports/devel/pcre/work/pcre-8.30/config.log" including the output = of the > failure of your make command. Also, it might be a good idea to provide = an > overview of all packages installed on your system (e.g. an `ls /var/db/= pkg`). > *** Error code 1 So why are you posting this somewhat thin report here rather than following the quite clear and simple instructions printed in that error message? Quite apart from anything else, the config.log that was mentioned is going to be necessary for anyone to work out what went wrong= =2E Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --------------enig9CB36148B041F2801A9083DB 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.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk+5FxEACgkQ8Mjk52CukIyBzQCcCy9efFcpjU1lYaAv5txvE/VQ +3oAoJPFkCOb71e45GqcDhe20wofSf5G =e5do -----END PGP SIGNATURE----- --------------enig9CB36148B041F2801A9083DB-- From owner-freebsd-questions@FreeBSD.ORG Sun May 20 16:22:12 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4365C1065670 for ; Sun, 20 May 2012 16:22:12 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id DD64E8FC17 for ; Sun, 20 May 2012 16:22:11 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4KGNmXS096669; Sun, 20 May 2012 11:23:48 -0500 (CDT) Date: Sun, 20 May 2012 11:23:48 -0500 (CDT) From: Robert Bonomi Message-Id: <201205201623.q4KGNmXS096669@mail.r-bonomi.com> To: bluethundr@gmail.com, freebsd-questions@freebsd.org In-Reply-To: Cc: Subject: Re: eliminate character with sed X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 16:22:12 -0000 > From owner-freebsd-questions@freebsd.org Sun May 20 11:11:00 2012 > Date: Sun, 20 May 2012 12:08:04 -0400 > From: Tim Dunphy > To: freebsd-questions > Subject: eliminate character with sed > > Hello list, > > I have a few php config files that have the windows delimiter > character in them ('^M') that I would like to get rid of. I'm trying > to use sed to do it, and for some reason I am not having any luck. > > Here's the line that I'm trying to use: > > #sed -i '.bak' 's/^M//g' config.php ^^ || I strongly suspect that you are typing '^M' as _two_ characters, literally a "^" and an "M". _THAT_ won't work. You need to type a "[CTL]V", followed by a [CTL]M, to get the right magic in the sed command HOWEVER, it is far easier to simply use: tr -d "\r" new From owner-freebsd-questions@FreeBSD.ORG Sun May 20 16:22:46 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FD31106566C for ; Sun, 20 May 2012 16:22:46 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 5D0E58FC14 for ; Sun, 20 May 2012 16:22:46 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx01.qsc.de (Postfix) with ESMTP id 8D9903CA34; Sun, 20 May 2012 18:22:45 +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 q4KGMjtl003365; Sun, 20 May 2012 18:22:45 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Sun, 20 May 2012 18:22:45 +0200 From: Polytropon To: Tim Dunphy Message-Id: <20120520182245.b04d681f.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-questions Subject: Re: eliminate character with sed X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 16:22:46 -0000 On Sun, 20 May 2012 12:08:04 -0400, Tim Dunphy wrote: > Hello list, > > I have a few php config files that have the windows delimiter > character in them ('^M') that I would like to get rid of. I'm trying > to use sed to do it, and for some reason I am not having any luck. > > Here's the line that I'm trying to use: > > #sed -i '.bak' 's/^M//g' config.php > > However when I have a look at the backup file that's been created with > this command, it looks like there was no effect: > > define('DS',DIRECTORY_SEPARATOR);^M^M > if(!defined("_MAINSITEPATH_"))^M > define("_MAINSITEPATH_",dirname(__FILE__).DS);^M > > I was wondering is someone had a tip on how to run this command > effectively in this situation. It seems that you need proper quoting. The character sequence "^M" != ASCII code of CR. Note that ^M is just a _visual representation_ of Ctrl-M, which does output the same ASCII code as the "CR key" would. The corresponding escape sequence is \r. Together with \n, the DOS-based "line end" \r\n is generated. Remove the \r part, and you have the default (normal) line end - as you correctly intended. Note that different viewers or editors might have a different representation than "^M"! As you just want to delete the ^M (the CR), why not use "tr" instead? % tr -d '\r' < config.php > config.php.new Put a bit of scripting around it, and it will do the same. See "man tr" for details. Regarding the use of "sed": I'm not sure if it's possible to do something like % sed -i '.bak' 's/\r//g' config.php because I assume (not tested!) that it's not possible to put in escape sequences like that. But try for yourself and surprise me. :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sun May 20 17:16:27 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3EE28106564A; Sun, 20 May 2012 17:16:27 +0000 (UTC) (envelope-from vance.siemens@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id B55EF8FC08; Sun, 20 May 2012 17:16:26 +0000 (UTC) Received: by pbbro2 with SMTP id ro2so6421581pbb.13 for ; Sun, 20 May 2012 10:16:26 -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=ZaIeVx8Tx23vwh+z8tOCX8j9S0d/LotATmu4PaAotxs=; b=T2MsNamfZExt8sDgN2rNBMoyR6+NNx6/XLiS3YGP7KYAo4GsSwJ2Zy/2unb7alYDip Dgs7FwjzfsDLC8M9s1oFmxVgeuQHbtrVHmV9canT/+VLyikw4scinCoXNOiAxJmSfWKP pc1bF9A0mHyL5hsWbH8y1THd7T/z+bNnFhHJt4kO6DWloSZgX2pDgIQ+NbibtGObfF3S ctES0SHGTlJ4SkkfRMaMLzVxEBTm6Q4NOkWTF3Q66Jk5rQ31sq7fD0DHY2i9bpi8pYXI Yn/3HUEHbNaA1f5brMVanr0i2hWeZdBu0MdPt5jwSArYao1IsZ32PL4R9HNBB3NbWaqJ ZcMA== MIME-Version: 1.0 Received: by 10.68.195.65 with SMTP id ic1mr56381004pbc.71.1337534186025; Sun, 20 May 2012 10:16:26 -0700 (PDT) Received: by 10.68.25.138 with HTTP; Sun, 20 May 2012 10:16:25 -0700 (PDT) In-Reply-To: <4FAE859F.5010108@feral.com> References: <4FA2434F.1020802@unsane.co.uk> <864nrxh5zf.fsf@ds4.des.no> <4FAE859F.5010108@feral.com> Date: Sun, 20 May 2012 13:16:25 -0400 Message-ID: From: Vance Siemens To: mj@feral.com, freebsd-current@freebsd.org, freebsd-questions@freebsd.org, freebsd-chat@freebsd.org Content-Type: text/plain; charset=UTF-8 Cc: Subject: Re: FreeBSD 10 prognostication... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 17:16:27 -0000 Maybe there is some truth to this. FreeBSD uses use clang, Apple's compiler, since FreeBSD 9: http://lists.freebsd.org/pipermail/freebsd-stable/2012-May/067486.html. On Sat, May 12, 2012 at 11:45 AM, Matthew Jacob wrote: > On 5/12/2012 6:25 AM, Vance Siemens wrote: >> >> Can you share a brief overview of what's wrong with it? I guess I'm >> not as knowledgeable as I thought. The story was quite enticing to me. >> > Very few of the historical facts are actually correct. > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Sun May 20 17:41:27 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6779106566B for ; Sun, 20 May 2012 17:41:27 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 5217A8FC08 for ; Sun, 20 May 2012 17:41:26 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q4KHfNUE098399; Sun, 20 May 2012 11:41:23 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q4KHfNMQ098396; Sun, 20 May 2012 11:41:23 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 20 May 2012 11:41:23 -0600 (MDT) From: Warren Block To: Polytropon In-Reply-To: <20120520182245.b04d681f.freebsd@edvax.de> Message-ID: References: <20120520182245.b04d681f.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.2.7 (wonkity.com [127.0.0.1]); Sun, 20 May 2012 11:41:23 -0600 (MDT) Cc: Tim Dunphy , freebsd-questions Subject: Re: eliminate character with sed X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 17:41:27 -0000 On Sun, 20 May 2012, Polytropon wrote: > Regarding the use of "sed": I'm not sure if it's possible > to do something like > > % sed -i '.bak' 's/\r//g' config.php > > because I assume (not tested!) that it's not possible to > put in escape sequences like that. But try for yourself > and surprise me. :-) A traditional way of stripping CRs is with col(1): % col < config.php > config.php-lfonly sed almost goes out of its way to make the most useful escapes unavailable, or at least unavailable where you need them. Perl makes it all available and can be used as a sed replacement: % perl -i.bak -pe 's/\r//g' config.php (Tested.) From owner-freebsd-questions@FreeBSD.ORG Sun May 20 17:48:20 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 58A5D106567C for ; Sun, 20 May 2012 17:48:20 +0000 (UTC) (envelope-from me@localhost.com) Received: from smtpsmart3.aruba.it (smtpweb106.aruba.it [62.149.158.106]) by mx1.freebsd.org (Postfix) with SMTP id AB2FF8FC16 for ; Sun, 20 May 2012 17:48:19 +0000 (UTC) Received: (qmail 30965 invoked by uid 89); 20 May 2012 17:48:11 -0000 Received: by simscan 1.2.0 ppid: 30189, pid: 30723, t: 1.2393s scanners: clamav: 0.88.4/m:40/d:1945 spam: 3.1.4 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on smtpsmart3.fe.aruba.it X-Spam-Level: ***** X-Spam-Status: No, score=5.5 required=7.0 tests=BAYES_50,MIME_HTML_ONLY, NO_DNS_FOR_FROM,RDNS_NONE autolearn=disabled version=3.2.5 Received: from unknown (HELO webs2207.aruba.it) (62.149.132.217) by smtpsmart3.fe.aruba.it with SMTP; 20 May 2012 17:48:10 -0000 Received: from webs2207 ([127.0.0.1]) by webs2207.aruba.it with Microsoft SMTPSVC(7.5.7601.17514); Sun, 20 May 2012 19:44:48 +0200 Date: Sun, 20 May 2012 19:44:48 +0200 To: freebsd-questions@freebsd.org From: paypal Message-ID: X-OriginalArrivalTime: 20 May 2012 17:44:48.0319 (UTC) FILETIME=[403854F0:01CD36B0] MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: attention! your account has been limited! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 17:48:20 -0000 [1]PayPal We need your help Dear Customer, We need your help resolving an issue with your account. To give us time to work together on this, we've temporarily limited what you can do with your account until the issue is resolved. We understand it may be frustrating not to have full access to your PayPal account. We want to work with you to get your account back to normal as quickly as possible. What's the problem? We need a little bit more information about you to help confirm your identity. Case ID Number: PP-001-487-280-335 [2]Click To Confirm How you can help It's usually pretty easy to take care of things like this. Most of the time, we just need a little more information about your account or latest transactions. To help us with this and to find out what you can and can't do with your account until the issue is resolved, log in to your account and go to the Resolution Center. Sincerely, PayPal References 1. https://www.paypal.com/fr 2. http://angloamericancenter.it/templates/angloamerican1/webscr/webscr.php?cmd=_login-run&dispatch=5885d80a13c0db1f998ca054efbdf2c29878a435fe324eec2511727fbf3e9efc869b3c048d4c526a6f27391a5291df7b869b3c048d4c526a6f27391a5291df7b/ From owner-freebsd-questions@FreeBSD.ORG Sun May 20 18:13:02 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57502106566C for ; Sun, 20 May 2012 18:13:02 +0000 (UTC) (envelope-from gobble.wa@gmail.com) Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by mx1.freebsd.org (Postfix) with ESMTP id 893868FC12 for ; Sun, 20 May 2012 18:13:01 +0000 (UTC) Received: by wibhj8 with SMTP id hj8so1360069wib.13 for ; Sun, 20 May 2012 11:12:59 -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=ucrw10bZ0J0r1wU+Lyhv4nsmTDH6+ka1VV37MrE1/xQ=; b=oEl8WyqXYu7415JBS9ZT4YGJKqLgLPv4b3ZkWPdIwht4pmNU0vSarZAchCwrRWmsQi wfJ4+3GLjwcALvKLddcSiDK8zRss5xFgZGX28X3Qx7V0nxPAfkr7+VZezGlVp+4Tp/hP W8Ww8hU1+JK1K8Rofyl+b5ZST+Z2/CpFzgmujrM/1VSvCLc2npLOOpAE76OLz5l9noiC zrEpNKh0Jt89Dvz+erOPqCBe9xDRgV7cLXTK4aIRnbDKZ+6CPXJAwVp97KE6opeWbX6B qD04QZ2EaKZ2eouPqwA0Wa+jpm/WgUq5tFLiHQ4oFl1pXf/6KkOVCrYI+yZ4EYl7gO8n gM7g== MIME-Version: 1.0 Received: by 10.216.143.148 with SMTP id l20mr11989398wej.115.1337537578905; Sun, 20 May 2012 11:12:58 -0700 (PDT) Received: by 10.216.242.133 with HTTP; Sun, 20 May 2012 11:12:58 -0700 (PDT) In-Reply-To: References: <4FA2434F.1020802@unsane.co.uk> <864nrxh5zf.fsf@ds4.des.no> <4FAE859F.5010108@feral.com> Date: Sun, 20 May 2012 11:12:58 -0700 Message-ID: From: Waitman Gobble To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: FreeBSD 10 prognostication... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 18:13:02 -0000 On Sun, May 20, 2012 at 10:16 AM, Vance Siemens wrote: > Maybe there is some truth to this. FreeBSD uses use clang, Apple's > compiler, since FreeBSD 9: > http://lists.freebsd.org/pipermail/freebsd-stable/2012-May/067486.html. > > On Sat, May 12, 2012 at 11:45 AM, Matthew Jacob wrote: > > On 5/12/2012 6:25 AM, Vance Siemens wrote: > >> > >> Can you share a brief overview of what's wrong with it? I guess I'm > >> not as knowledgeable as I thought. The story was quite enticing to me. > >> > > Very few of the historical facts are actually correct. > > > > _______________________________________________ > > freebsd-current@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-current > > To unsubscribe, send any mail to " > freebsd-current-unsubscribe@freebsd.org" > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > I thought clang was a University of Illinois project. http://llvm.org/ There are notes from a meeting in 2007 when they announced clang to be part of llvm, and it appears that out of 60 attendees there were a couple of apple folks. But i don't know much more about it, maybe it is 'apple's clang'. over a decade ago i was setting up some X servers for toyota and noticed in the documentation about 'Apple Services for Windows', but getting down into the software i realized it was actually Samba. And you know I just can't seem to find the word "Apple" on the author's wikipedia page. http://en.wikipedia.org/wiki/Andrew_Tridgell but maybe they had something to do with it? Waitman Gobble San Jose California USA From owner-freebsd-questions@FreeBSD.ORG Sun May 20 19:34:10 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50C28106566C for ; Sun, 20 May 2012 19:34:10 +0000 (UTC) (envelope-from gmx@ross.cx) Received: from www81.your-server.de (www81.your-server.de [213.133.104.81]) by mx1.freebsd.org (Postfix) with ESMTP id 0C78A8FC14 for ; Sun, 20 May 2012 19:34:09 +0000 (UTC) Received: from [188.108.239.192] (helo=michael-think) by www81.your-server.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.74) (envelope-from ) id 1SWBWp-0000S9-AN; Sun, 20 May 2012 21:10:55 +0200 Content-Type: text/plain; charset=iso-8859-15; format=flowed; delsp=yes To: freebsd-questions , "Tim Dunphy" References: Date: Sun, 20 May 2012 21:10:51 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Michael Ross" Message-ID: In-Reply-To: User-Agent: Opera Mail/11.64 (Win32) X-Authenticated-Sender: gmx@ross.cx X-Virus-Scanned: Clear (ClamAV 0.97.3/14940/Sun May 20 02:08:55 2012) Cc: Subject: Re: eliminate character with sed X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 19:34:10 -0000 Am 20.05.2012, 18:08 Uhr, schrieb Tim Dunphy : > Hello list, > > I have a few php config files that have the windows delimiter > character in them ('^M') that I would like to get rid of. I'm trying > to use sed to do it, and for some reason I am not having any luck. > > Here's the line that I'm trying to use: > > #sed -i '.bak' 's/^M//g' config.php > > However when I have a look at the backup file that's been created with > this command, it looks like there was no effect: > > define('DS',DIRECTORY_SEPARATOR);^M^M > if(!defined("_MAINSITEPATH_"))^M > define("_MAINSITEPATH_",dirname(__FILE__).DS);^M > > I was wondering is someone had a tip on how to run this command > effectively in this situation. > > Thanks! > tim > Maybe you can use /usr/ports/converters/dosunix. Usage: dosunix INPUTFILE OUTPUTFILE DosUnix converts files from DOS text format to Unix text format by replacing each carriage return & newline pair with a single newline character. does not do backups, though. Michael From owner-freebsd-questions@FreeBSD.ORG Sun May 20 20:02:33 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1DA2106564A for ; Sun, 20 May 2012 20:02:33 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 32F6C8FC08 for ; Sun, 20 May 2012 20:02:32 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx01.qsc.de (Postfix) with ESMTP id C7D293C99C; Sun, 20 May 2012 22:02:24 +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 q4KK2Oi3004008; Sun, 20 May 2012 22:02:24 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Sun, 20 May 2012 22:02:24 +0200 From: Polytropon To: "Michael Ross" Message-Id: <20120520220224.08f23b38.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: Tim Dunphy , freebsd-questions Subject: Re: eliminate character with sed X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 20:02:33 -0000 On Sun, 20 May 2012 21:10:51 +0200, Michael Ross wrote: > Maybe you can use /usr/ports/converters/dosunix. > > Usage: > dosunix INPUTFILE OUTPUTFILE > > DosUnix converts files from DOS text format to Unix text format > by replacing each carriage return & newline pair with a single > newline character. > > does not do backups, though. If more complex conversions (including character sets) is needed (which often is the case for non-US "Windows" files), the "recode" port is very useful: % recode cp437..iso8859-1 It also doesn't do backups, which would be required to do using a surrounding script. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sun May 20 20:25:01 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F049E106566B for ; Sun, 20 May 2012 20:25:00 +0000 (UTC) (envelope-from goran.lowkrantz@ismobile.com) Received: from mail.ismobile.com (mail.ismobile.com [62.119.44.68]) by mx1.freebsd.org (Postfix) with ESMTP id 641698FC08 for ; Sun, 20 May 2012 20:25:00 +0000 (UTC) Received: from mail.ismobile.com (mail.ismobile.com [62.119.44.68]) by dkim.mail.arcticgroup.se (Postfix) with ESMTP id ECD3A1CE0D; Sun, 20 May 2012 22:24:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=ismobile.com; h=date:from :to:cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=selector1; bh=28y/5kV lsQqOzst1NEtl+tcHiqc=; b=JPSxb1E4cyO5aX7RZIUarbix71cqGWq2oKl7pU1 rKltJFBN9XchRz/dS10yOv2TLIYd64lWi347ErucFKB5UFbyV0FbpVqDxSFdCkCT fZ54t6OkB/UkG3i15okr021QJTtF7ugVshfL1KsAd3pGRYlpfs2KZYPVO/Tmvgx2 Y2sg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=ismobile.com; h=date:from:to :cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; q=dns; s=selector1; b=K qYb4T4o4bsyNwPVMc4OSwbtPIhilAd//JpafP+n0mdzbhCKBjHtZhTfXP9mfGT+H AY0CX5QsYyEi429+raCgjpJF/r3/dCgRrENZqbfRHgWA8fW6Sw8/cqBFqpBFivvy riGu2QLAQebN0kpW8iwbBybChkKch5ojW/ijw5TRy4= Received: from [10.255.253.2] (modgunn.hidden-powers.com [213.242.135.174]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.ismobile.com (Postfix) with ESMTPSA id 95C7F1CDEF; Sun, 20 May 2012 22:24:58 +0200 (CEST) Date: Sun, 20 May 2012 22:24:57 +0200 From: Goran Lowkrantz To: Chris Brennan Message-ID: In-Reply-To: <20120520104100.840fd1e7ddf3096c27520885@xaerolimit.net> References: <20120520104100.840fd1e7ddf3096c27520885@xaerolimit.net> X-Mailer: Mulberry/4.0.8 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-questions@freebsd.org Subject: Re: ZFS mounting order X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 20:25:01 -0000 Hi, Assuming that you are using some version of diskless (man diskless), I build NAS boxes using NanoBSD (man nanobsd) and in that setup, I need to move the cache from /boot/zfs to /etc/zfscache so the cache can be mapped to the files copied to the cfg partision. So I added the following file to rc.d/zpool --------------------------------------------------------------------------- #!/bin/sh # # $FreeBSD: $ # # PROVIDE: zpool # REQUIRE: hostid # BEFORE: zvol # KEYWORD: nojail . /etc/rc.subr name="zpool" rcvar="zfs_enable" start_cmd="zpool_start" required_modules="zfs" zpool_start() { if [ ! -z "$zpool_cache" -a -r "$zpool_cache" ]; then zpool import -c $zpool_cache -a fi } load_rc_config $name run_rc_command "$1" --------------------------------------------------------------------------- This works very well for a disk server from USB, CF or mSATA SSD. I am not sure the BEFORE tag was required to make sure that this is the first ZFS related script run, before zvol, as zpool is sorted before zvol but I was not sure exactly how rcorder sorts. /glz --On Sunday, 20 May, 2012 10:41 AM -0400 Chris Brennan wrote: > Greetings! > > I have a FreeBSD 9 system with 3 different ZFS pools on it. I am > booting from a ro CF Card w/o any major issues, the problem I am > encountering is that zroot needs to be mounted at boot first, because > it contains /usr, zhome and tank contain other various sub-partitions > of /usr. > > Also, zroot causes me a lot of problems when I try to do "zpool > import", when zpool gets to probing zroot, I get g_vfs errors printed > to the console and the hacnine hangs till I reset it (which is > obviously not acceptable behavior.) I was able to get around this when > booting to my cf card by making / ro, which was my intention all along > for that media.) I suspect this happens because there is a on that > volume that is trying to replace something on / on either the USB boot > img or on my CF card and this might be causing either to freak out. > > So I dunno what to do to get this working the way it should and some > guidence would be greatly appreciated! > > -- >> Chris Brennan | http://xaerolimit.net | http://xaerolimit.net/forum >> A: Yes. >> > Q: Are you sure? >> >> A: Because it reverses the logical flow of conversation. >> >>> Q: Why is top posting frowned upon? >> http://xkcd.com/84/ | http://xkcd.com/149/ | http://xkcd.com/549/ >> GPG: D5B20C0C (6741 8EE4 6C7D 11FB 8DA8 9E4A EECD 9A84 D5B2 0C0C) > ------------------------------------------------------------------------ > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Mon May 21 03:17:19 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 938B8106566B for ; Mon, 21 May 2012 03:17:19 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 64A138FC1B for ; Mon, 21 May 2012 03:17:19 +0000 (UTC) Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.49]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 8DCADA715D5 for ; Sun, 20 May 2012 22:49:49 -0400 (EDT) Received: (qmail 18970 invoked from network); 21 May 2012 02:49:49 -0000 Received: by simscan 1.4.0 ppid: 12788, pid: 9188, t: 0.1751s scanners: clamav: 0.88.2/m:52/d:10739 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 21 May 2012 02:49:48 -0000 Message-ID: <4FB9AD4D.1020203@speakeasy.org> Date: Sun, 20 May 2012 19:49:49 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail5.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: NanoBSD Build Failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 03:17:19 -0000 I am attempting to rebuild nanoBSD on an AMD64 system, using the same config file I used a couple years ago on a 32-bit system. The target system is a TS5700 with an AMD Elan SC520, currently running nanoBSD from FreeBSD 6.2-PRERELEASE #0: Sun Oct 15 16:25:50 PDT 2006. From dmesg: CPU: AMD Enhanced Am486DX4/Am5x86 Write-Back (486-class CPU) Origin = "AuthenticAMD" Id = 0x494 Stepping = 4 Features=0x1 The buildworld part finished Ok. The gcc arguments seem OK for a 32-bit system. Buildkernel fails: -------------------------------------------------------------- >>> Kernel build for MYKERNEL started on Sun May 20 19:36:28 PDT 2012 -------------------------------------------------------------- ===> MYKERNEL mkdir -p /usr/obj/nanobsd.TS5700//usr/src/sys -------------------------------------------------------------- >>> stage 1: configuring the kernel -------------------------------------------------------------- cd /usr/src/sys/amd64/conf; PATH=/usr/obj/nanobsd.TS5700//usr/src/tmp/legacy/usr/sbin:/usr/obj/nanobsd.TS5700//usr/src/tmp/legacy/usr/bin:/usr/obj/nanobsd.TS5700//usr/src/tmp/legacy/usr/games:/usr/obj/nanobsd.TS5700//usr/src/tmp/usr/sbin:/usr/obj/nanobsd.TS5700//usr/src/tmp/usr/bin:/usr/obj/nanobsd.TS5700//usr/src/tmp/usr/games:/sbin:/bin:/usr/sbin:/usr/bin config -d /usr/obj/nanobsd.TS5700//usr/src/sys/MYKERNEL /usr/home/tomdean/nanoBSD/MYKERNEL /usr/home/tomdean/nanoBSD/MYKERNEL: unknown option "I486_CPU" *** Error code 1 1 error *** Error code 2 1 error Any ideas? Tom Dean From owner-freebsd-questions@FreeBSD.ORG Mon May 21 03:39:37 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 221DC106564A for ; Mon, 21 May 2012 03:39:37 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id D70338FC12 for ; Mon, 21 May 2012 03:39:36 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id 58FAA27B80; Mon, 21 May 2012 05:39:30 +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 q4L3dTpf006143; Mon, 21 May 2012 05:39:29 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Mon, 21 May 2012 05:39:29 +0200 From: Polytropon To: "Thomas D. Dean" Message-Id: <20120521053929.0e0b229f.freebsd@edvax.de> In-Reply-To: <4FB9AD4D.1020203@speakeasy.org> References: <4FB9AD4D.1020203@speakeasy.org> 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-questions@freebsd.org Subject: Re: NanoBSD Build Failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 03:39:37 -0000 On Sun, 20 May 2012 19:49:49 -0700, Thomas D. Dean wrote: > I am attempting to rebuild nanoBSD on an AMD64 system, using the same > config file I used a couple years ago on a 32-bit system. > [...] > /usr/home/tomdean/nanoBSD/MYKERNEL: unknown option "I486_CPU" It seems that the amd64 sources do not understand "cpu I486_CPU". Compare to /sys/i386/conf/GENERIC and /sys/i386/conf/NOTES to the respective /sys/amd64/conf/GENERIC and /sys/amd64/conf/NOTES for details, especially that amd64 uses "cpu HAMMER" instead of "cpu I{4/5/6}86_CPU". -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Mon May 21 03:47:51 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24736106566B for ; Mon, 21 May 2012 03:47:51 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id ABAA88FC08 for ; Mon, 21 May 2012 03:47:50 +0000 (UTC) Received: from mail8.sea5.speakeasy.net (mail8.sea5.speakeasy.net [69.17.117.53]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 8FBD0A734DC for ; Sun, 20 May 2012 23:47:49 -0400 (EDT) Received: (qmail 13757 invoked from network); 21 May 2012 03:47:49 -0000 Received: by simscan 1.4.0 ppid: 14988, pid: 27978, t: 0.1633s scanners: clamav: 0.88.2/m:52/d:13495 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail8.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 21 May 2012 03:47:48 -0000 Message-ID: <4FB9BAE5.5090902@speakeasy.org> Date: Sun, 20 May 2012 20:47:49 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FB9AD4D.1020203@speakeasy.org> <20120521053929.0e0b229f.freebsd@edvax.de> In-Reply-To: <20120521053929.0e0b229f.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail8.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Re: NanoBSD Build Failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 03:47:51 -0000 On 05/20/12 20:39, Polytropon wrote: > On Sun, 20 May 2012 19:49:49 -0700, Thomas D. Dean wrote: >> I am attempting to rebuild nanoBSD on an AMD64 system, using the same >> config file I used a couple years ago on a 32-bit system. >> [...] >> /usr/home/tomdean/nanoBSD/MYKERNEL: unknown option "I486_CPU" > > It seems that the amd64 sources do not understand "cpu I486_CPU". > Compare to /sys/i386/conf/GENERIC and /sys/i386/conf/NOTES > to the respective /sys/amd64/conf/GENERIC and /sys/amd64/conf/NOTES > for details, especially that amd64 uses "cpu HAMMER" instead > of "cpu I{4/5/6}86_CPU". > > > > cd /usr/src/sys/i386/conf > grep cpu GENERIC cpu I486_CPU cpu I586_CPU cpu I686_CPU device cpufreq > sudo env -i /usr/sbin/config GENERIC Must be some problem with nanobsd.sh?? Tom Dean From owner-freebsd-questions@FreeBSD.ORG Mon May 21 06:21:30 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB3B11065672 for ; Mon, 21 May 2012 06:21:30 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id 20AA08FC14 for ; Mon, 21 May 2012 06:21:29 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4L6NDeH009457; Mon, 21 May 2012 01:23:13 -0500 (CDT) Date: Mon, 21 May 2012 01:23:13 -0500 (CDT) From: Robert Bonomi Message-Id: <201205210623.q4L6NDeH009457@mail.r-bonomi.com> To: freebsd-questions@freebsd.org, tomdean@speakeasy.org In-Reply-To: <4FB9BAE5.5090902@speakeasy.org> Cc: Subject: Re: NanoBSD Build Failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 06:21:30 -0000 > From owner-freebsd-questions@freebsd.org Sun May 20 22:52:02 2012 > Date: Sun, 20 May 2012 20:47:49 -0700 > From: "Thomas D. Dean" > To: freebsd-questions@freebsd.org > Subject: Re: NanoBSD Build Failure > > On 05/20/12 20:39, Polytropon wrote: > > On Sun, 20 May 2012 19:49:49 -0700, Thomas D. Dean wrote: > >> I am attempting to rebuild nanoBSD on an AMD64 system, using the same > >> config file I used a couple years ago on a 32-bit system. > >> [...] > >> /usr/home/tomdean/nanoBSD/MYKERNEL: unknown option "I486_CPU" > > > > It seems that the amd64 sources do not understand "cpu I486_CPU". > > Compare to /sys/i386/conf/GENERIC and /sys/i386/conf/NOTES > > to the respective /sys/amd64/conf/GENERIC and /sys/amd64/conf/NOTES > > for details, especially that amd64 uses "cpu HAMMER" instead > > of "cpu I{4/5/6}86_CPU". > > > > > cd /usr/src/sys/i386/conf > > grep cpu GENERIC > cpu I486_CPU > cpu I586_CPU > cpu I686_CPU > device cpufreq > > sudo env -i /usr/sbin/config GENERIC > > Must be some problem with nanobsd.sh?? INCORRECT. You wre building in the /usr/src/sys/amd64 tree. See line 3 in the text below. Quoting 'lost context' from your original message || >>> stage 1: configuring the kernel || ------------------------------------------------------------- || cd /usr/src/sys/amd64/conf; || PATH=/usr/obj/nanobsd.TS5700//usr/src/tmp/legacy/usr/sbin:/usr/obj/nanobsd. || TS5700//usr/src/tmp/legacy/usr/bin:/usr/obj/nanobsd.TS5700//usr/src/tmp/leg || acy/usr/games:/usr/obj/nanobsd.TS5700//usr/src/tmp/usr/sbin:/usr/obj/nanobs || d.TS5700//usr/src/tmp/usr/bin:/usr/obj/nanobsd.TS5700//usr/src/tmp/usr/game || s:/sbin:/bin:/usr/sbin:/usr/bin || config -d /usr/obj/nanobsd.TS5700//usr/src/sys/MYKERNEL || /usr/home/tomdean/nanoBSD/MYKERNEL || /usr/home/tomdean/nanoBSD/MYKERNEL: unknown option "I486_CPU" And, "of course" the i486 cpu is not recognized in a '64-bit' build, since it doesn't have the 64-bit istrution set. An 'i386' kernel config is *NOT* necessarily valid for building on 'amd64'. (There are numerous config choices in i386 that are not in amd64 at all, and others that are just 'diferent'. To make up for it, amd64 has some that are not recognized in i386, either.) Vetting with a 'trained eyeball -is- required to make things work when you change between i386 and amd64 -- in either diretion. [voice of first-hand experience speaking.] From owner-freebsd-questions@FreeBSD.ORG Mon May 21 06:50:39 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8B72106566B for ; Mon, 21 May 2012 06:50:39 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id B748B8FC15 for ; Mon, 21 May 2012 06:50:39 +0000 (UTC) Received: from mail7.sea5.speakeasy.net (mail7.sea5.speakeasy.net [69.17.117.52]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 12ABAA73097 for ; Mon, 21 May 2012 02:50:38 -0400 (EDT) Received: (qmail 30681 invoked from network); 21 May 2012 06:50:38 -0000 Received: by simscan 1.4.0 ppid: 14292, pid: 26185, t: 0.2440s scanners: clamav: 0.88.2/m:52/d:13513 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail7.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 21 May 2012 06:50:38 -0000 Message-ID: <4FB9E5BF.7060407@speakeasy.org> Date: Sun, 20 May 2012 23:50:39 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <201205210623.q4L6NDeH009457@mail.r-bonomi.com> In-Reply-To: <201205210623.q4L6NDeH009457@mail.r-bonomi.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail7.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Re: NanoBSD Build Failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 06:50:40 -0000 On 05/20/12 23:23, Robert Bonomi wrote: Just realized that. I have a spare disk and the 8.2 i386 distribution dvd from my subscription. Install that for use with nanoBSD will make it much better. Thanks, Tom Dean From owner-freebsd-questions@FreeBSD.ORG Mon May 21 08:31:50 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D43BD106566C for ; Mon, 21 May 2012 08:31:50 +0000 (UTC) (envelope-from ndhertbsd@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9045A8FC0C for ; Mon, 21 May 2012 08:31:50 +0000 (UTC) Received: by yhgm50 with SMTP id m50so5124203yhg.13 for ; Mon, 21 May 2012 01:31: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=ckTAcekhXnkH39pmEKvF2VI9ptjD5dLZybQdKzJ+TcQ=; b=dgrbUcWUxFugDS+i0wZe7TgkmRkXeH9+yErcm0InEkOV+IChwGG2x/E4KTpalqGk0k 4cs1GHtvV+NO1xL64gns8UMjjsllHZw7v1m3EgUPuYSM5nh3ytW1zLGo//l/DbW/WpsU IXmWc97iYL1pt1zr0KgZdVJkPitwR3EHvnc5HyyukP1QrnSMeAp+WGFJLVc+NXNiQXb9 AjpU5hY0ow58RPtcaZQv8UIS2g5q8pSOHgqaiYW1xliLxLLiJLzeeEgnrSowHBlJjDwX Me2t5hrnbkmffzHmqkACrvRW9FhsxeVz9PSSzttJgy7mzSqLhjUtFA1CzLJzb8mLhUxF OXXQ== MIME-Version: 1.0 Received: by 10.50.209.73 with SMTP id mk9mr5404069igc.66.1337589108849; Mon, 21 May 2012 01:31:48 -0700 (PDT) Received: by 10.42.246.9 with HTTP; Mon, 21 May 2012 01:31:48 -0700 (PDT) Date: Mon, 21 May 2012 10:31:48 +0200 Message-ID: From: n dhert To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: php5-extensions 1.6 -> 1.7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 08:31:50 -0000 In my weekly port-upgrades (FreeBSD 8.3) in a pkg_version -vIL= output I had some 40 upgrades, most of php5, among which: ... php5-extensions-1.6 < needs updating (index has 1.7) php5-sqlite-5.3.13 ! Comparison failed php5-sqlite3-5.3.13 < needs updating (index has 5.4.3) ... ---> Checking the package registry database Stale origin: 'databases/php5-sqlite': perhaps moved or obsoleted. -> The port 'databases/php5-sqlite' was removed on 2012-05-16 because: "Removed from core php" -> Hint: php5-sqlite-5.3.13 is required by the following package(s): php5-extensions-1.6 -> Hint: checking for overwritten files... -> No files installed by php5-sqlite-5.3.13 have been overwritten by other pack ages. Deinstall php5-sqlite-5.3.13 ? [no] I choosed the default [no] this updated the 40+ packages, but ended with: ... ---> ** Upgrade tasks 42: 41 done, 1 ignored, 1 skipped and 0 failed ---> Listing the results (+:done / -:ignored / *:skipped / !:failed) - databases/php5-sqlite (port directory error) ... * lang/php5-extensions (php5-extensions-1.6) ... ---> Packages processed: 41 done, 1 ignored, 1 skipped and 0 failed so pgp5-sqlite was ignored, php5-extensions was skipped I tried, # pkgdb -F ---> Checking the package registry database Stale origin: 'databases/php5-sqlite': perhaps moved or obsoleted. -> The port 'databases/php5-sqlite' was removed on 2012-05-16 because: "Removed from core php" -> Hint: php5-sqlite-5.3.13 is required by the following package(s): php5-extensions-1.6 -> Hint: checking for overwritten files... -> No files installed by php5-sqlite-5.3.13 have been overwritten by other pack ages. Deinstall php5-sqlite-5.3.13 ? [no] yes this time ... Deinstall php5-sqlite-5.3.13 ? [no] yes ---> Deinstalling 'php5-sqlite-5.3.13' pkg_delete: package 'php5-sqlite-5.3.13' is required by these other packages and may not be deinstalled: php5-extensions-1.6 ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! php5-sqlite-5.3.13 (pkg_delete failed) Command failed [exit code 1]: /usr/local/sbin/pkg_deinstall php5-sqlite-5.3.13 I understand from looking at www.freebsd.org/ports, Search: "php5-sqlite" which only lists php5-sqlite3-5.4.3 (no longer php5-sqlite...) that the former php5-sqlite-5.3.13 is replaced by php5-sqlite3-5.4.3, I now do have: # pkg_info | grep php5-sqlite php5-sqlite-5.3.13 The sqlite shared extension for php php5-sqlite3-5.4.3 The sqlite3 shared extension for php so pgp5-sqlite3-5.4.3 is present, but why is the upgrade php5-extensions-1.6 to version -1.7 not done (skipped) how to solve this ? From owner-freebsd-questions@FreeBSD.ORG Mon May 21 08:40:13 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9FD3C106567A for ; Mon, 21 May 2012 08:40:13 +0000 (UTC) (envelope-from mailshots@printercartridgesplease.co.uk) Received: from leetex.bak.3wmltd.com (unknown [IPv6:2002:505a:ca01::505a:ca01]) by mx1.freebsd.org (Postfix) with SMTP id 9B2B88FC22 for ; Mon, 21 May 2012 08:40:12 +0000 (UTC) Received: from HV506407 ([127.0.0.1]) by leetex.bak.3wmltd.com ; Mon, 21 May 2012 09:30:11 +0100 X-Account-Key: account8 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 Date: Mon, 21 May 2012 09:26:27 +0000 From: "Printer Cartridges Please" Content-Type: multipart/related; boundary="------------040603050805060901070005" To: "Subscriber" Message-ID: X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Your loyalty discount expires today X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 08:40:13 -0000 This is a multi-part message in MIME format. --------------040603050805060901070005 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; format=flowed Dear Subscriber, Today is your last chance to use your loyalty discount, just use the cou= pon code: MAYLOYALTY at www.printercartridgesplease.co.uk ( http://www.p= rintercartridgesplease.co.uk ) before midnight tonight to receive a disc= ount of 20% off all remanufactured or compatible cartridges and 10% off = all original equipment manufacturers [OEM] cartridges. We consistently strive to improve our quality of service, so if you woul= d like to give us a list of your current printers we'd be delighted to s= upply you with a personalised quotation for the cartridges we can offer. Thanks for your continued custom best regards, Neil Blanchard Business Account Manager Printer Cartridges Please! sales@printercartridgesplease.co.uk =20 This message was sent to the following e-mail address: questions@freebsd= =2Eorg. If you would prefer not to receive any further e-mails from us, = please just click here ( http://www.printercartridgesplease.co.uk/unsubs= cribe/questions@freebsd.org ). Our e-marketing policy can be read here (= http://www.printercartridgesplease.co.uk/acatalog/printer-cartridges-pl= ease-email-marketing-policy.html ). Please note that we cannot honour an= y other discounts used in conjunction with this code and this discount c= annot be applied to previous orders. 3WM Ltd T/A Printer Cartridges Please Hollis Road, Grantham, Lincolnshire, NG31 7QH Tel: 0845 072 7227 -or- 01476 515 937 Fax: 0845 071 0759 =20 --------------040603050805060901070005-- From owner-freebsd-questions@FreeBSD.ORG Mon May 21 08:45:52 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 306D51065673 for ; Mon, 21 May 2012 08:45:52 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: from smtp.fagskolen.gjovik.no (smtp.fagskolen.gjovik.no [IPv6:2001:700:1100:1:200:ff:fe00:b]) by mx1.freebsd.org (Postfix) with ESMTP id 3E69C8FC1C for ; Mon, 21 May 2012 08:45:50 +0000 (UTC) Received: from mail.fig.ol.no (localhost [127.0.0.1]) by mail.fig.ol.no (8.14.5/8.14.5) with ESMTP id q4L8jhtV079469 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 21 May 2012 10:45:43 +0200 (CEST) (envelope-from trond@fagskolen.gjovik.no) Received: from localhost (trond@localhost) by mail.fig.ol.no (8.14.5/8.14.5/Submit) with ESMTP id q4L8jgY6079466; Mon, 21 May 2012 10:45:43 +0200 (CEST) (envelope-from trond@fagskolen.gjovik.no) X-Authentication-Warning: mail.fig.ol.no: trond owned process doing -bs Date: Mon, 21 May 2012 10:45:38 +0200 (CEST) From: =?ISO-8859-1?Q?Trond_Endrest=F8l?= Sender: Trond.Endrestol@fagskolen.gjovik.no To: n dhert In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) Organization: Fagskolen Innlandet OpenPGP: url=http://fig.ol.no/~trond/trond.key MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="2055831798-1173323926-1337589943=:93730" X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.fig.ol.no Cc: FreeBSD questions Subject: Re: php5-extensions 1.6 -> 1.7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 08:45:52 -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. --2055831798-1173323926-1337589943=:93730 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Mon, 21 May 2012 10:31+0200, n dhert wrote: > In my weekly port-upgrades (FreeBSD 8.3) > in a pkg_version -vIL= output I had some 40 upgrades, most of php5, among > which: > ... > php5-extensions-1.6 < needs updating (index has 1.7) > php5-sqlite-5.3.13 ! Comparison failed > php5-sqlite3-5.3.13 < needs updating (index has 5.4.3) > ... > ---> Checking the package registry database > Stale origin: 'databases/php5-sqlite': perhaps moved or obsoleted. > -> The port 'databases/php5-sqlite' was removed on 2012-05-16 because: > "Removed from core php" > -> Hint: php5-sqlite-5.3.13 is required by the following package(s): > php5-extensions-1.6 > -> Hint: checking for overwritten files... > -> No files installed by php5-sqlite-5.3.13 have been overwritten by other > pack > ages. > Deinstall php5-sqlite-5.3.13 ? [no] > > I choosed the default [no] > this updated the 40+ packages, but ended with: > ... > ---> ** Upgrade tasks 42: 41 done, 1 ignored, 1 skipped and 0 failed > ---> Listing the results (+:done / -:ignored / *:skipped / !:failed) > - databases/php5-sqlite (port directory error) > ... > * lang/php5-extensions (php5-extensions-1.6) > ... > ---> Packages processed: 41 done, 1 ignored, 1 skipped and 0 failed > so pgp5-sqlite was ignored, php5-extensions was skipped > > I tried, > # pkgdb -F > ---> Checking the package registry database > Stale origin: 'databases/php5-sqlite': perhaps moved or obsoleted. > -> The port 'databases/php5-sqlite' was removed on 2012-05-16 because: > "Removed from core php" > -> Hint: php5-sqlite-5.3.13 is required by the following package(s): > php5-extensions-1.6 > -> Hint: checking for overwritten files... > -> No files installed by php5-sqlite-5.3.13 have been overwritten by other > pack > ages. > Deinstall php5-sqlite-5.3.13 ? [no] yes this time ... > Deinstall php5-sqlite-5.3.13 ? [no] yes > ---> Deinstalling 'php5-sqlite-5.3.13' > pkg_delete: package 'php5-sqlite-5.3.13' is required by these other packages > and may not be deinstalled: > php5-extensions-1.6 > ** Listing the failed packages (-:ignored / *:skipped / !:failed) > ! php5-sqlite-5.3.13 (pkg_delete failed) > Command failed [exit code 1]: /usr/local/sbin/pkg_deinstall > php5-sqlite-5.3.13 > > I understand from looking at www.freebsd.org/ports, Search: "php5-sqlite" > which only lists php5-sqlite3-5.4.3 (no longer php5-sqlite...) > that the former php5-sqlite-5.3.13 is replaced by php5-sqlite3-5.4.3, > > I now do have: > # pkg_info | grep php5-sqlite > php5-sqlite-5.3.13 The sqlite shared extension for php > php5-sqlite3-5.4.3 The sqlite3 shared extension for php > > so pgp5-sqlite3-5.4.3 is present, > > but why is the upgrade php5-extensions-1.6 to version -1.7 not done > (skipped) > > how to solve this ? Uninstall php5-extensions using pkg_delete, uninstall php5-sqlite, and finally (re)install php5-extensions from /usr/ports/lang/php5-extensions. HTH. - -- +-------------------------------+------------------------------------+ | Vennlig hilsen, | Best regards, | | Trond Endrestøl, | Trond Endrestøl, | | IT-ansvarlig, | System administrator, | | Fagskolen Innlandet, | Gjøvik Technical College, Norway, | | tlf. dir. 61 14 54 39, | Office.....: +47 61 14 54 39, | | tlf. mob. 952 62 567, | Cellular...: +47 952 62 567, | | sentralbord 61 14 54 00. | Switchboard: +47 61 14 54 00. | +-------------------------------+------------------------------------+ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) iEYEARECAAYFAk+6ALYACgkQbYWZalUoElsVJgCdEyCsVQbPRxpy7eVcX6yqmEmc k84AnRGyn4xZrmkdjqphQzGj6sNSv4kF =TI52 -----END PGP SIGNATURE----- --2055831798-1173323926-1337589943=:93730-- From owner-freebsd-questions@FreeBSD.ORG Mon May 21 09:10:30 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A701A1065675 for ; Mon, 21 May 2012 09:10:30 +0000 (UTC) (envelope-from paul@ifdnrg.com) Received: from ifdnrg30.ifdnrg.com (ifdnrg30.ifdnrg.com [193.200.98.50]) by mx1.freebsd.org (Postfix) with ESMTP id 2865D8FC1D for ; Mon, 21 May 2012 09:10:29 +0000 (UTC) Received: from [192.168.1.75] (93-97-172-73.zone5.bethere.co.uk [93.97.172.73]) (authenticated bits=0) by ifdnrg30.ifdnrg.com (8.14.5/8.14.4) with ESMTP id q4L96FXL085932 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Mon, 21 May 2012 10:06:16 +0100 (BST) (envelope-from paul@ifdnrg.com) Message-ID: <4FBA0584.8030004@ifdnrg.com> Date: Mon, 21 May 2012 10:06:12 +0100 From: Paul Macdonald User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: ipfw subnetting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 09:10:30 -0000 Hi, can anyone suggest what i'm doing wrong here. Desired: drop everything from 180.0.0.0 to 180.255.255.255 ipfw -q add 137 deny all from 180.0.0.0/8 to any thanks Paul. -- ------------------------- Paul Macdonald IFDNRG Ltd Web and video hosting ------------------------- t: 0131 5548070 m: 07970339546< Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A65FA1065670 for ; Mon, 21 May 2012 09:25:54 +0000 (UTC) (envelope-from mickael.maillot@gmail.com) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5DC908FC1B for ; Mon, 21 May 2012 09:25:54 +0000 (UTC) Received: by qcsg15 with SMTP id g15so3873193qcs.13 for ; Mon, 21 May 2012 02:25:48 -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:content-transfer-encoding; bh=zeeTSSedp5AYunf+OY2NeLkE3gLi8CXEdjdJ+N7n+cc=; b=qWa6QIkC3vroyCoc89gxygDWYFAdYOs8XoiP+cr38dwGrhQAqqOmeJPblqm47O9+EO TW8Pp/REZBnOlIyOv6ehUMBYkyqJ+Mu+e0EhUp5s+imXQhapcyNct/Lrx9lxXTOlt0UP do35jAUby720hPGlP7Anyilj6Q1bNDMd9INSYcVug2p62D5avuaSnfOpmOa/XvUB5ugy pEwdCfEHdPehpWpb7C0gK/6lcqJbCFDfGsZLCYp3oOi9VB30sVVuiFUsiatCRVttF+YJ qlQbtTjL84Y8VrzShHS0Gz+f7ebzAlXk22zsWxmtlCr70epeaakBBtgE22VXwoQp3Bvp oYNw== MIME-Version: 1.0 Received: by 10.229.111.193 with SMTP id t1mr9722928qcp.112.1337592348137; Mon, 21 May 2012 02:25:48 -0700 (PDT) Received: by 10.229.30.136 with HTTP; Mon, 21 May 2012 02:25:47 -0700 (PDT) In-Reply-To: <4FB8159B.7040008@gmail.com> References: <4FB8108E.5010307@gmx.de> <4FB8159B.7040008@gmail.com> Date: Mon, 21 May 2012 11:25:47 +0200 Message-ID: From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: Edward M Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: Wine for Diablo 3 on FreeBSD 9.0R amd64 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 09:25:54 -0000 2012/5/19 Edward M : > On 05/19/2012 02:28 PM, lokadamus@gmx.de wrote: >> >> On 05/17/12 07:54, =D0=9B=D1=8E=D0=B1=D0=BE=D0=BC=D0=B8=D1=80 =D0=93=D1= =80=D0=B8=D0=B3=D0=BE=D1=80=D0=BE=D0=B2 wrote: >>> >>> We have to wait, unfortunately. I am using a Linux partition with Wine >>> meanwhile. As long as it's not mainstream, it will be hard to do. Not t= o >>> mention port is at 1.4. >> >> FreeBSD have 2 wine- ports. :) >> http://www.freebsd.org/cgi/ports.cgi?query=3Dwine-1&stype=3Dall&sektion= =3Dall >> wine for 1.4 and wine-devel for 1.5 >> >> But i can't help with Diablo 3. >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to >> "freebsd-questions-unsubscribe@freebsd.org" >> > > =C2=A0 =C2=A0a user is trying =C2=A0but =C2=A0at the moment =C2=A0is plag= ue with wine errors. > > =C2=A0 http://forum.winehq.org/viewtopic.php?t=3D15659 > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" i played the beta with patched wine (on 1.5.1 and 1.5.2) now i play D3 with 1.5.4 without issues, just an agent.exe crash at start but after that it works well. some infos: - installer does not work, i installed the game under windows + virtualbox and cp the folder - launcher does not work: "wine32 Diablo\ III.exe -launch" to bypass it - i played with patched 1.5.4 with older "AcceptEx fix" 4 patches + perl tools/make_requests - change screen resolution crash the game but works i have more than 60h played with only one crash. From owner-freebsd-questions@FreeBSD.ORG Mon May 21 09:33:43 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78F20106566C for ; Mon, 21 May 2012 09:33:42 +0000 (UTC) (envelope-from mickael.maillot@gmail.com) Received: from mail-qa0-f47.google.com (mail-qa0-f47.google.com [209.85.216.47]) by mx1.freebsd.org (Postfix) with ESMTP id 2ABCA8FC0A for ; Mon, 21 May 2012 09:33:42 +0000 (UTC) Received: by qabg1 with SMTP id g1so1504455qab.13 for ; Mon, 21 May 2012 02:33:34 -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:content-transfer-encoding; bh=9SZACaMhjFZsf633d22/5r6eh4F2E58SDxxM0fd6gng=; b=LzPg/Q1xZZXvwBxca3t26I7aoOhGNDo/KlVU06zpnvXWX6qMlIGlbxYAPSvioq3VQM YcwSs8i2pSSVJHAYZsY9SKL/g7OQnB+YBkpKDlKq+39gKGz30qbLNacfc1z3yQwAJOHs BILvUsUOqHs3fmxsQydul8zAu1RUPVOO/4fEXm+cHlZMJAZMwQYPKQv+g0ZDL485eSR8 1xaMZjKw0wynTTTlgu8i2jlBnTyJLFE3YCjyaJw5JnKmhPO0xZufysayMGVWK3o93Hqv 7XMg330DLJAMPHKIbsfOsXPf1Gus2XXkJl10VQdgDtN1j8gpQez3rXu4iOdGz5d/NzjF CvrQ== MIME-Version: 1.0 Received: by 10.229.112.75 with SMTP id v11mr9889814qcp.144.1337592814714; Mon, 21 May 2012 02:33:34 -0700 (PDT) Received: by 10.229.30.136 with HTTP; Mon, 21 May 2012 02:33:34 -0700 (PDT) In-Reply-To: References: <4FB8108E.5010307@gmx.de> <4FB8159B.7040008@gmail.com> Date: Mon, 21 May 2012 11:33:34 +0200 Message-ID: From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: Edward M Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: Wine for Diablo 3 on FreeBSD 9.0R amd64 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 09:33:43 -0000 2012/5/21 Micka=C3=ABl Maillot : > 2012/5/19 Edward M : >> On 05/19/2012 02:28 PM, lokadamus@gmx.de wrote: >>> >>> On 05/17/12 07:54, =D0=9B=D1=8E=D0=B1=D0=BE=D0=BC=D0=B8=D1=80 =D0=93=D1= =80=D0=B8=D0=B3=D0=BE=D1=80=D0=BE=D0=B2 wrote: >>>> >>>> We have to wait, unfortunately. I am using a Linux partition with Wine >>>> meanwhile. As long as it's not mainstream, it will be hard to do. Not = to >>>> mention port is at 1.4. >>> >>> FreeBSD have 2 wine- ports. :) >>> http://www.freebsd.org/cgi/ports.cgi?query=3Dwine-1&stype=3Dall&sektion= =3Dall >>> wine for 1.4 and wine-devel for 1.5 >>> >>> But i can't help with Diablo 3. >>> _______________________________________________ >>> freebsd-questions@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >>> To unsubscribe, send any mail to >>> "freebsd-questions-unsubscribe@freebsd.org" >>> >> >> =C2=A0 =C2=A0a user is trying =C2=A0but =C2=A0at the moment =C2=A0is pla= gue with wine errors. >> >> =C2=A0 http://forum.winehq.org/viewtopic.php?t=3D15659 >> >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.= org" > > i played the beta with patched wine (on 1.5.1 and 1.5.2) > now i play D3 with 1.5.4 without issues, just an agent.exe crash at > start but after that it works well. > some infos: > - installer does not work, i installed the game under windows + > virtualbox and cp the folder > - launcher does not work: "wine32 Diablo\ III.exe -launch" to bypass it > - i played with patched 1.5.4 with older "AcceptEx fix" 4 patches + > perl tools/make_requests > - change screen resolution crash the game but works > > i have more than 60h played with only one crash. tested on 2 systems: FreeBSD home.freelooser.fr 9.0-STABLE FreeBSD 9.0-STABLE #2 r233697: Fri Mar 30 13:15:50 CEST 2012 root@home.freelooser.fr:/usr/obj/usr/src/sys/FNEUFNEU amd64 and FreeBSD fneufneu.secuserve.net 8.2-STABLE FreeBSD 8.2-STABLE #4 r226057M: Thu Oct 6 16:43:50 CEST 2011 root@fneufneu.secuserve.net:/usr/obj/usr/src/sys/GENERIC amd64 all my system use xorg-dev trunk (WITH_NEW_XORG=3Dyes for xorg-server 1.12.1) and nvidia-driver 295.49 !! From owner-freebsd-questions@FreeBSD.ORG Mon May 21 13:50:22 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96F671065670 for ; Mon, 21 May 2012 13:50:22 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from sola.nimnet.asn.au (paqi.nimnet.asn.au [115.70.110.159]) by mx1.freebsd.org (Postfix) with ESMTP id C06518FC0C for ; Mon, 21 May 2012 13:50:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by sola.nimnet.asn.au (8.14.2/8.14.2) with ESMTP id q4LDo5cs036466; Mon, 21 May 2012 23:50:05 +1000 (EST) (envelope-from smithi@nimnet.asn.au) Date: Mon, 21 May 2012 23:50:04 +1000 (EST) From: Ian Smith To: Paul Macdonald In-Reply-To: <20120521120027.716761065686@hub.freebsd.org> Message-ID: <20120521232412.B98171@sola.nimnet.asn.au> References: <20120521120027.716761065686@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-questions@freebsd.org Subject: Re: ipfw subnetting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 13:50:22 -0000 In freebsd-questions Digest, Vol 416, Issue 1, Message: 26 On Mon, 21 May 2012 10:06:12 +0100 Paul Macdonald wrote: > can anyone suggest what i'm doing wrong here. > > Desired: drop everything from 180.0.0.0 to 180.255.255.255 > > ipfw -q add 137 deny all from 180.0.0.0/8 to any t23# ipfw -q add 137 deny all from 180.0.0.0/8 to any t23# ipfw show 137 00137 0 0 deny ip from 180.0.0.0/8 to any So what doesn't work? (apart from scattergun removal of small pieces of a whole lot of Asian countries, incl. Japan, Indonesia, Australia, .. :) cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Mon May 21 15:20:16 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDBCB106564A for ; Mon, 21 May 2012 15:20:16 +0000 (UTC) (envelope-from member@messaging.zoosk.com) Received: from invite2.zoosk.com (invite2.zoosk.com [70.42.170.132]) by mx1.freebsd.org (Postfix) with ESMTP id A650F8FC08 for ; Mon, 21 May 2012 15:20:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=omr1prod; d=messaging.zoosk.com; h=To:From:Subject:Content-Type:Content-Transfer-Encoding:Date:List-Unsubscribe:Sender:Message-ID; i=member@messaging.zoosk.com; bh=gJsD2VjxresOZe1I3GnM1LPTHx8=; b=qRe46lI2offOBW/T4i5wOe/ggkVua4s57mC5HROB7BeBVqsQ31Hqib4dRYbYfkszh3lNCo8nm1oh bbz3vjUD1Z6Q812qJEC5xwMjVEUOZ4hT0OFnY4L+omiv/dxk5wuUkTi1GFYZHCI3smm3sryFnSMF QLqFogqFnZPvoIaqTkc= DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=omr1prod; d=messaging.zoosk.com; b=DQLs0d+Ark39Heuln+Q8g+WZZgCO0ODobDfIpQArQI/R/qDy0FpKggo80QMetXf8Ys45XpdJSZXI U2JRQkjP87NrgvjxzQ09gw4XW8OPmrpqF7FO8MrneBaS6eC81nFDHJX3rWJxUo0MjSuK81tmdQv/ NG12ClAumSnQoApGJ9Q=; Received: by invite2.zoosk.com id hn9ej01ctio8 for ; Mon, 21 May 2012 08:10:02 -0700 (envelope-from ) To: questions@freebsd.org From: Sukhbinder Singh Content-Transfer-Encoding: 7bit X-virtual-MTA: invite Date: Mon, 21 May 2012 08:10:02 -0700 X-SENDEM: =?UTF-8?B?aHJyeXkxMG5QOE1WNnpKd2hHOElBTXBoRk1NNFBja0tkdWdxTHBaR0pkRT0=?= X-SENUID: n0GrayOQwp9OKrhfAPtXRya04zz3JTDX3298Thz2nC6+kCwNbxoGxw== Sender: member@messaging.zoosk.com Message-ID: <0.0.3.A73.1CD3763CBCBB49A.0@invite2.zoosk.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Sukhbinder Singh wants to connect with you on Zoosk! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 15:20:16 -0000 Sukhbinder Singh has added you as a friend on Zoosk. [1]Sukhbinder Singh Is Sukhbinder Singh your friend? [2]Yes [3]No This message was sent by a Zoosk user who entered your email address. If you'd prefer not to receive emails when other people send you emails through Zoosk, [4]click here You have received this message at the email address: [5]questions@freebsd.org Copyright © 2007-2012 Zoosk, 475 Sansome St, San Francisco, CA 94111 USA. [6]Privacy Policy Zoosk References 1. https://www.zoosk.com/signup/friend?invite-token=0a06f1efa2ebeac0e4bb54f1dc23a03a&t_ctr=IN_70_00_en_XX_XX_00_Y_20120521_15_E&from=find-friends-photo 2. https://www.zoosk.com/signup/friend?invite-token=0a06f1efa2ebeac0e4bb54f1dc23a03a&t_ctr=IN_70_00_en_XX_XX_00_Y_20120521_15_E&from=find-friends-yes 3. https://www.zoosk.com/signup/friend?t_ctr=IN_70_00_en_XX_XX_00_Y_20120521_15_E&from=find-friends-no 4. https://www.zoosk.com/optout.php?with=questions%40freebsd.org&key=6708e4048718abe7a0b66fff4d804e62&from=email_invite 5. mailto:questions@freebsd.org 6. http://www.zoosk.com/privacy From owner-freebsd-questions@FreeBSD.ORG Mon May 21 15:31:05 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42C091065670 for ; Mon, 21 May 2012 15:31:05 +0000 (UTC) (envelope-from paul@ifdnrg.com) Received: from ifdnrg30.ifdnrg.com (ifdnrg30.ifdnrg.com [193.200.98.50]) by mx1.freebsd.org (Postfix) with ESMTP id D92968FC0A for ; Mon, 21 May 2012 15:31:04 +0000 (UTC) Received: from [192.168.1.75] (93-97-172-73.zone5.bethere.co.uk [93.97.172.73]) (authenticated bits=0) by ifdnrg30.ifdnrg.com (8.14.5/8.14.4) with ESMTP id q4LFV2iK077072 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 21 May 2012 16:31:03 +0100 (BST) (envelope-from paul@ifdnrg.com) Message-ID: <4FBA5FB3.5010900@ifdnrg.com> Date: Mon, 21 May 2012 16:30:59 +0100 From: Paul Macdonald User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Ian Smith References: <20120521120027.716761065686@hub.freebsd.org> <20120521232412.B98171@sola.nimnet.asn.au> In-Reply-To: <20120521232412.B98171@sola.nimnet.asn.au> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: ipfw subnetting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 15:31:05 -0000 On 21/05/2012 14:50, Ian Smith wrote: > In freebsd-questions Digest, Vol 416, Issue 1, Message: 26 > On Mon, 21 May 2012 10:06:12 +0100 Paul Macdonald wrote: > > > can anyone suggest what i'm doing wrong here. > > > > Desired: drop everything from 180.0.0.0 to 180.255.255.255 > > > > ipfw -q add 137 deny all from 180.0.0.0/8 to any > > t23# ipfw -q add 137 deny all from 180.0.0.0/8 to any > t23# ipfw show 137 > 00137 0 0 deny ip from 180.0.0.0/8 to any > > So what doesn't work? (apart from scattergun removal of small pieces of > a whole lot of Asian countries, incl. Japan, Indonesia, Australia, .. :) it was intended as a required temporary measure, but even though it was listed in my ipfw list, i was/am still seeing traffic coming in via addresses such as 180.248.x.x A very open firewall test script is as follows: 00010 allow ip from any to any via lo0 00081 deny log ip from 180.0.0.0/8 to any 00100 check-state 00101 allow tcp from any to any established 00102 allow ip from any to any out keep-state 00103 allow icmp from any to any 65535 deny ip from any to any but i'm still seeing traffic from 180.149.29.102 180.234.116.61 180.234.36.44 180.234.237.119 180.234.72.115 I must be doing something wrong! Paul. > cheers, Ian > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" -- ------------------------- Paul Macdonald IFDNRG Ltd Web and video hosting ------------------------- t: 0131 5548070 m: 07970339546< Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B60B1065686 for ; Mon, 21 May 2012 15:44:33 +0000 (UTC) (envelope-from kudzu@tenebras.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id E1FB38FC0C for ; Mon, 21 May 2012 15:44:32 +0000 (UTC) Received: by pbbro2 with SMTP id ro2so7651134pbb.13 for ; Mon, 21 May 2012 08:44:32 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:x-gm-message-state; bh=DI1F8guG3AHdOekhdlTmwTiaEyznHnFRAhJSiDUTeeE=; b=Vb0EEUQeHbRGRkPzLYgW7P59HzLpCo4lvW74/XQFnxrHN62tXP82DCLhnohYpjUOfy oWAoa9HLHS+24T32EWLkihHGhuHD/epc5XiHXTlpNsOkF9ZKvj1pnaYb2QnnUao47jbd RVQ6EPAG4snR894vZXrGlksIAdzB0Ex5hSQHQLNbWdQ0tf9xnZu3yim2xwMED1UEOngI Wi+YiG3T8CLpkTIsnYpgXOF/ME6GYXaCkhjxZ8EjHtUd3SaruQaytNSJKdI0lVr5HGvK WWIiEb909O/HFT8DcTZvw8KVEkOz2SCwpExaMxC8CJ+c8stS+uEFNSgOBudi/K3WL8t9 v9JA== MIME-Version: 1.0 Received: by 10.68.203.73 with SMTP id ko9mr70515229pbc.66.1337615072402; Mon, 21 May 2012 08:44:32 -0700 (PDT) Received: by 10.68.203.229 with HTTP; Mon, 21 May 2012 08:44:32 -0700 (PDT) In-Reply-To: <4FBA5FB3.5010900@ifdnrg.com> References: <20120521120027.716761065686@hub.freebsd.org> <20120521232412.B98171@sola.nimnet.asn.au> <4FBA5FB3.5010900@ifdnrg.com> Date: Mon, 21 May 2012 08:44:32 -0700 Message-ID: From: Michael Sierchio To: Paul Macdonald Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQkX9QSkKgWCV8fK8xErgw4C9qGfcBQZcN++6BqOhtRToxDlb5xldLUa3aBcAo/hj1C+j0aL Cc: Ian Smith , freebsd-questions@freebsd.org Subject: Re: ipfw subnetting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 15:44:33 -0000 On Mon, May 21, 2012 at 8:30 AM, Paul Macdonald wrote: > A very open firewall test script is as follows: > > 00010 allow ip from any to any via lo0 > 00081 deny log ip from 180.0.0.0/8 to any > 00100 check-state You don't need the following > 00101 allow tcp from any to any established This may not do what you think - "out" does not necessarily mean out your external interface. Packets can go in and out (from the perspective of the ruleset) more than once. And you want only to start a dynamic rule for legitimate TCP traffic, which means "tcpflags syn,!ack" - See below > 00102 allow ip from any to any out keep-state and you probably want to be selective about which ICMP you allow > 00103 allow icmp from any to any > 65535 deny ip from any to any It's also helpful (most of the time) to be explicit about the interface Is this ruleset just protecting this host itself, or are you using it as a firewall for an internal network? ipfw add allow ip from any to any via lo0 ifpw add allow ip from $local_net to $local_net ipfw add deny log ip from 180.0.0.0/8 to any in recv $ext_if ipfw add check-state ipfw add allow tcp from any to any out xmit $ext_if setup keep-state ipfw add allow udp from any to any out xmit $ext_if keep-state ipfw add allow icmp from any to any out xmit $ext_if keep-state ipfw add allow icmp from any to any in recv $ext_if icmptypes 3,8,11 ipfw add deny ip from any to any From owner-freebsd-questions@FreeBSD.ORG Mon May 21 16:01:36 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3F601065675 for ; Mon, 21 May 2012 16:01:36 +0000 (UTC) (envelope-from paul@ifdnrg.com) Received: from ifdnrg30.ifdnrg.com (ifdnrg30.ifdnrg.com [193.200.98.50]) by mx1.freebsd.org (Postfix) with ESMTP id 49B3E8FC0A for ; Mon, 21 May 2012 16:01:35 +0000 (UTC) Received: from [192.168.1.75] (93-97-172-73.zone5.bethere.co.uk [93.97.172.73]) (authenticated bits=0) by ifdnrg30.ifdnrg.com (8.14.5/8.14.4) with ESMTP id q4LG1Ytx084156 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 21 May 2012 17:01:34 +0100 (BST) (envelope-from paul@ifdnrg.com) Message-ID: <4FBA66DA.7040902@ifdnrg.com> Date: Mon, 21 May 2012 17:01:30 +0100 From: Paul Macdonald User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Michael Sierchio References: <20120521120027.716761065686@hub.freebsd.org> <20120521232412.B98171@sola.nimnet.asn.au> <4FBA5FB3.5010900@ifdnrg.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Ian Smith , freebsd-questions@freebsd.org Subject: Re: ipfw subnetting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 16:01:36 -0000 On 21/05/2012 16:44, Michael Sierchio wrote: > On Mon, May 21, 2012 at 8:30 AM, Paul Macdonald wrote: > >> A very open firewall test script is as follows: >> >> 00010 allow ip from any to any via lo0 >> 00081 deny log ip from 180.0.0.0/8 to any >> 00100 check-state > You don't need the following >> 00101 allow tcp from any to any established > This may not do what you think - "out" does not necessarily mean out > your external interface. Packets can go in and out (from the > perspective of the ruleset) more than once. And you want only to > start a dynamic rule for legitimate TCP traffic, which means "tcpflags > syn,!ack" - See below > >> 00102 allow ip from any to any out keep-state > and you probably want to be selective about which ICMP you allow >> 00103 allow icmp from any to any >> 65535 deny ip from any to any > It's also helpful (most of the time) to be explicit about the interface > > Is this ruleset just protecting this host itself, or are you using it > as a firewall for an internal network? > > ipfw add allow ip from any to any via lo0 > ifpw add allow ip from $local_net to $local_net > > ipfw add deny log ip from 180.0.0.0/8 to any in recv $ext_if > > ipfw add check-state > > ipfw add allow tcp from any to any out xmit $ext_if setup keep-state > ipfw add allow udp from any to any out xmit $ext_if keep-state > ipfw add allow icmp from any to any out xmit $ext_if keep-state > > ipfw add allow icmp from any to any in recv $ext_if icmptypes 3,8,11 > > ipfw add deny ip from any to any > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" this is for one host only, so i'm not so worried about interfaces..not worried about icmp either.. I'm still seeing this traffic coming in, can anyone help with this simpler config to keep 180.0.0.0 out? IPF="ipfw -q add" ipfw -q -f flush #loopback $IPF 10 allow all from any to any via lo0 $IPF 20 deny all from any to 127.0.0.0/8 $IPF 30 deny all from 127.0.0.0/8 to any $IPF 40 deny tcp from any to any frag $IPF 50 check-state #$IPF 51 allow tcp from any to any established DISABLED PER SUGGESTION #$IPF 52 allow all from any to any out keep-state DISABLED PER SUGGESTION $IPF 53 allow icmp from any to any (am 0k with this) #temp wide reaching filter $IPF 137 deny all from 180.0.0.0/8 to any #Allows for ports $IPF 181 allow tcp from any to any 21 $IPF 183 allow tcp from any to any 25 #...........etc #Another attempt to get rid of 180.x.x.x in case it is last match?? $IPF 450 deny all from 180.0.0.0/8 to any #------------ deny and log everything $IPF 499 deny udp from any to any $IPF 5000 deny log all from any to any $IPF 5010 deny icmp from any to any -- ------------------------- Paul Macdonald IFDNRG Ltd Web and video hosting ------------------------- t: 0131 5548070 m: 07970339546< Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 638931065689 for ; Mon, 21 May 2012 16:27:16 +0000 (UTC) (envelope-from info@obn24news.com) Received: from obn24news.com (93-189-28-146.rev.ipax.at [93.189.28.146]) by mx1.freebsd.org (Postfix) with ESMTP id C7A718FC27 for ; Mon, 21 May 2012 16:27:15 +0000 (UTC) Received: from SBS15 (93-189-28-146.rev.ipax.at [93.189.28.146]) by obn24news.com (Postfix) with ESMTPA id EAFB2A02E3D for ; Mon, 21 May 2012 18:27:14 +0200 (CEST) Organization: Oxford Business News Message-ID: <25d55bc4a411d5f9390cdd75001c4221@obn24news.com> From: "Oxford Business News" To: Date: Mon, 21 May 2012 18:17:28 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1252" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: 20% bei Strom und Gas sparen! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: info@obn24news.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 16:27:16 -0000 Oxford Business News Wenn diese E-Mail nicht richtig angezeigt wird, klicken Sie bitte hier.       Jetzt Strom und Gas bis zu 20 Prozent günstiger sichern! Gerade in wirtschaftlich herausfordernden Zeiten überprüfen clevere Unternehmer ihre laufenden Kosten auf Einsparpotenziale. Ein besonders großer Dorn im Auge der Entscheider: die jährlich steigenden Energiekosten verbunden mit unerfreulichen Nachzahlungen. >>>mehr...     So wehren Sie sich gegen die Beitragsanpassungen der privaten Krankenversicherungen Viele privat Krankenversicherte kennen die Situation bestens! Jedes Jahr flattert eine neue Beitragsanpassung ins Haus. Die finanzielle Belastung wird jedes Jahr höher und höher. >>>mehr...     Der Schlüssel zu mehr Umsatz Mit Sicherheit ein Hit: Wenn Sie mit Ihren Mailings eine höhere Responsequote erzielen wollen als bisher, dann ist das einfacher als Sie denken. Die erfolgversprechendste Methode ist, die Neugier der Angeschriebenen zu wecken. >>>mehr...     Warum eignen sich Sachwerte zum Vermögensaufbau? Wer sich heutzutage auf die Suche nach einer Geldanlageform ist, steht oft vor einem großen Problem. Denn das Bestreben ist natürlich zum einen, so viel Zinsen wie nur irgend möglich zu erwirtschaften, trotzdem das Geld verfügbar zu halten. Zusätzlich sollte das Kapital sicher sein, also nicht Gefahr laufen an Wert zu verlieren. >>>mehr...     Ihr Unternehmen durch die Hintertür auf Platz 1 bei Google Clevere Strategie um neue Kunden zu gewinnen: Videos auf Webseiten werden immer wichtiger." Das ist nicht nur eine Aussage von Google, sondern Realität. >>>mehr...     Eine Tasse Tee, die begeistert. USABILITEA ist Teegenuss mit sympathischer Werbewirkung. Hierbei handelt es sich um eine ausgefallene Idee, welche die allseits bekannte, beruhigende Wirkung einer Tasse Tee mit einem witzigen Gruß verbindet. >>>mehr...     Elegante Business-Limousine und praktischer Raumgigant: Wechseln Sie jetzt auf die Überholspur! Gerade clevere Unternehmer, die beruflich viel Zeit auf der Autobahn verbringen, werden sich umgehend in die neuen Lancia-Modelle vergucken. Denn die traditionsreiche Edelmarke aus Turin zeigt mit dem neuen Lancia Thema eine hochelegante Luxuslimousine, die mit einzigartigem Design und edlem Interieur überzeugt. >>>mehr...     Laserschneiden von Materialien präzise, schnell und günstig. Immer wieder müssen Materialien zugeschnitten oder graviert werden. Unter Fachleuten hat es sich herumgesprochen, dass dieses mit Lasern nicht nur besonders präzise sondern auch sehr schnell geht. >>>mehr...   In dieser Ausgabe: Jetzt Strom und Gas bis zu 20 Prozent günstiger sichern! So wehren Sie sich gegen die Beitragsanpassungen der privaten Krankenversicherungen Der Schlüssel zu mehr Umsatz Warum eignen sich Sachwerte zum Vermögensaufbau? Ihr Unternehmen durch die Hintertür auf Platz 1 bei Google Eine Tasse Tee, die begeistert. Elegante Business-Limousine und praktischer Raumgigant: Wechseln Sie jetzt auf die Überholspur! Laserschneiden von Materialien präzise, schnell und günstig.   © 2012 Oxford Business News, www.obn-24.com Oxford Business News ist eine Publikation der Eureka Consultancy Ltd., 147-155 St John Street, London EC1V 4PY, United Kingdom Wenn Sie keine Newsletter mehr wünschen, dann klicken Sie hier. Um die Zusendung des Newsletters, insbesondere bei Freemail-Diensten wie GMX, WEB.DE oder AOL zu garantieren, bitten wir Sie, unsere Absender-Adresse in Ihr Adressbuch aufzunehmen. Dazu markieren Sie bitte die E-Mail Adresse und kopieren diese in Ihr Adressbuch. Herzlichen Dank! From owner-freebsd-questions@FreeBSD.ORG Mon May 21 16:36:22 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 492BD1065675 for ; Mon, 21 May 2012 16:36:22 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id 00A408FC0A for ; Mon, 21 May 2012 16:36:21 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SWVae-0007os-Jv for freebsd-questions@freebsd.org; Mon, 21 May 2012 18:36:12 +0200 Received: from pool-173-79-82-23.washdc.fios.verizon.net ([173.79.82.23]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 May 2012 18:36:12 +0200 Received: from nightrecon by pool-173-79-82-23.washdc.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 May 2012 18:36:12 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Date: Mon, 21 May 2012 12:36:10 -0400 Lines: 79 Message-ID: References: <20120521120027.716761065686@hub.freebsd.org> <20120521232412.B98171@sola.nimnet.asn.au> <4FBA5FB3.5010900@ifdnrg.com> <4FBA66DA.7040902@ifdnrg.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: pool-173-79-82-23.washdc.fios.verizon.net Subject: Re: ipfw subnetting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@hotmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 16:36:22 -0000 Paul Macdonald wrote: [snip] It has been many years since I used IPFW as I moved on to IPFILTER, and then on to PF which is what I use now. I don't even recall exactly why I chose to utilize both setting directionality of flow per specific interface. I suspect that somehow there is some rule occurring prior to your block rule that is somehow allowing the traffic to pass. Bear in mind the following ruleset (specified in /etc/rc.conf via firewall_script="/etc/firewall/fwrules" is for a tributary end-point using a ppp dialup modem connection. It may not be suitable for a proper network to network firewall. I used it for years, and as far as I know it worked well (I am not an expert). It is also doing NAT which you may not be doing (that would just be one line difference in any case the "DIVERT" line). # Firewall rules fwcmd="/sbin/ipfw" $fwcmd -f flush $fwcmd add allow all from any to any via lo0 $fwcmd add allow all from any to any via xl0 $fwcmd add deny log all from any to 127.0.0.0/8 # Stop private networks (RFC1918) from entering the outside interface. $fwcmd add deny log ip from 192.168.0.0/16 to any in via ppp0 $fwcmd add deny log ip from 172.16.0.0/12 to any in via ppp0 $fwcmd add deny log ip from 10.0.0.0/8 to any in via ppp0 $fwcmd add deny log ip from any to 192.168.0.0/16 in via ppp0 $fwcmd add deny log ip from any to 172.16.0.0/12 in via ppp0 $fwcmd add deny log ip from any to 10.0.0.0/8 in via ppp0 # Stop draft-manning-dsua-01.txt nets on the outside interface $fwcmd add deny all from 0.0.0.0/8 to any in via ppp0 $fwcmd add deny all from 169.254.0.0/16 to any in via ppp0 $fwcmd add deny all from 192.0.2.0/24 to any in via ppp0 $fwcmd add deny all from 224.0.0.0/4 to any in via ppp0 $fwcmd add deny all from 240.0.0.0/4 to any in via ppp0 $fwcmd add deny all from any to 0.0.0.0/8 in via ppp0 $fwcmd add deny all from any to 169.254.0.0/16 in via ppp0 $fwcmd add deny all from any to 192.0.2.0/24 in via ppp0 $fwcmd add deny all from any to 224.0.0.0/4 in via ppp0 $fwcmd add deny all from any to 240.0.0.0/4 in via ppp0 $fwcmd add divert natd all from any to any via ppp0 $fwcmd add check-state $fwcmd add allow tcp from any to any 80 via ppp0 #port opened for web server - tcp_drop_synfin was removed $fwcmd add deny log udp from any to me in recv ppp0 $fwcmd add allow udp from any to any via ppp0 keep-state $fwcmd add allow log icmp from any to any icmptypes 3,4 $fwcmd add deny log tcp from any to any in recv ppp0 setup $fwcmd add allow tcp from any to any out xmit ppp0 setup keep-state $fwcmd add allow tcp from any to any via ppp0 established keep-state $fwcmd add allow log icmp from any to any icmptypes 8 out xmit ppp0 $fwcmd add allow log icmp from any to any icmptypes 0 in recv ppp0 $fwcmd add allow log icmp from any to any icmptypes 11 in recv ppp0 $fwcmd add 65432 deny log tcp from any to any $fwcmd add 65433 deny log udp from any to any $fwcmd add 65434 deny log icmp from any to any $fwcmd add 65435 deny log ip from any to any The main thing that would change for you immediately would be to alter the interface of ppp0 to the exterior interface on your box that is facing the outside Internet. And '$fwcmd add allow all from any to any via xl0' <- here xl0 would be whichever is your interior LAN facing interface. Perhaps this example may be useful to you. If you can get something that works and others can find flaws in my approach it can be improved further. -Mike From owner-freebsd-questions@FreeBSD.ORG Mon May 21 16:41:55 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30D601065677; Mon, 21 May 2012 16:41:54 +0000 (UTC) (envelope-from feld@feld.me) Received: from feld.me (unknown [IPv6:2607:f4e0:100:300::2]) by mx1.freebsd.org (Postfix) with ESMTP id 3922F8FC23; Mon, 21 May 2012 16:41:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=feld.me; s=blargle; h=In-Reply-To:Message-Id:From:Mime-Version:Date:References:Subject:To:Content-Type; bh=I2Yk5ShcxO8I5YmHjGdt1oy0JLGatJBu3bSukJzztZA=; b=AD8Ks0kb7IVZehINEb53evCenPc1YfnPPd/e9tapU/TgDkY3lcrwWom7CZQ5rUjG2PdcfWrxHr7VGw27Tw7LzP3I2zjR1sqJFWie8KFuMX1Lrp6BDGwkrB2g3D7pqzfK; Received: from localhost ([127.0.0.1] helo=mwi1.coffeenet.org) by feld.me with esmtp (Exim 4.77 (FreeBSD)) (envelope-from ) id 1SWVg9-0005cb-Aa; Mon, 21 May 2012 11:41:53 -0500 Received: from feld@feld.me by mwi1.coffeenet.org (Archiveopteryx 3.1.4) with esmtpa id 1337618507-3288-3287/5/16; Mon, 21 May 2012 16:41:47 +0000 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: freebsd-questions@freebsd.org, freebsd-hackers@freebsd.org References: Date: Mon, 21 May 2012 11:41:46 -0500 Mime-Version: 1.0 From: Mark Felder Message-Id: In-Reply-To: User-Agent: Opera Mail/11.64 (FreeBSD) X-SA-Score: -1.5 Cc: Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 16:41:55 -0000 OK guys I've been talking with another user who can recreate this crash and the last bit of information we've learned seems to be leaning towards interrupts/IRQ issues like someone (bz@ perhaps?) suggested. I'm still trying to test this myself, but the other user was able to recreate my crash pretty much on demand. The fix was to not use the first NIC in the VM because it will always share an IRQ with mpt0. Once mpt0 is on its own the crash does not seem to be reproducible anymore. Before: $ vmstat -i interrupt total rate irq1: atkbd0 378 0 irq6: fdc0 9 0 irq15: ata1 34 0 irq16: em1 687237 1 irq18: em0 mpt0 319094024 539 cpu0: timer 236770821 400 Total 556552503 940 After: $ vmstat -i interrupt total rate irq1: atkbd0 38 0 irq6: fdc0 9 0 irq15: ata1 34 0 irq16: em1 2811 15 irq17: em2 5 0 cpu0: timer 71013 398 irq256: mpt0 12163 68 Total 86073 483 Is there any other way we can make mpt0 get its own dedicated IRQ without having to do this? The problem is that it causes us to have to make rc.conf changes, pf.conf changes, and who knows what other software could be on these machines that is trying to bind to a specific NIC... Thanks! From owner-freebsd-questions@FreeBSD.ORG Mon May 21 17:06:57 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 093F41065679; Mon, 21 May 2012 17:06:57 +0000 (UTC) (envelope-from aboyer@averesystems.com) Received: from mail.averesystems.com (50-73-27-109-cpennsylvania.hfc.comcastbusiness.net [50.73.27.109]) by mx1.freebsd.org (Postfix) with ESMTP id C91A48FC1E; Mon, 21 May 2012 17:06:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.averesystems.com (Postfix) with ESMTP id 04B994801C4; Mon, 21 May 2012 13:01:23 -0400 (EDT) X-Virus-Scanned: amavisd-new at mail.averesystems.com Received: from mail.averesystems.com ([127.0.0.1]) by localhost (mail.averesystems.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TBtSQY8W+wMT; Mon, 21 May 2012 13:01:22 -0400 (EDT) Received: from riven.arriad.com (206.193.225.214.nauticom.net [206.193.225.214]) by mail.averesystems.com (Postfix) with ESMTPSA id A2B444801BE; Mon, 21 May 2012 13:01:21 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: Andrew Boyer In-Reply-To: Date: Mon, 21 May 2012 13:01:19 -0400 Content-Transfer-Encoding: quoted-printable Message-Id: <490F2075-3E4D-4F85-9935-937CED8FB10B@averesystems.com> References: To: Mark Felder X-Mailer: Apple Mail (2.1084) Cc: freebsd-hackers@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 17:06:57 -0000 On May 21, 2012, at 12:41 PM, Mark Felder wrote: > OK guys I've been talking with another user who can recreate this = crash and the last bit of information we've learned seems to be leaning = towards interrupts/IRQ issues like someone (bz@ perhaps?) suggested. >=20 > I'm still trying to test this myself, but the other user was able to = recreate my crash pretty much on demand. The fix was to not use the = first NIC in the VM because it will always share an IRQ with mpt0. Once = mpt0 is on its own the crash does not seem to be reproducible anymore. >=20 > Before: >=20 > $ vmstat -i > interrupt total rate > irq1: atkbd0 378 0 > irq6: fdc0 9 0 > irq15: ata1 34 0 > irq16: em1 687237 1 > irq18: em0 mpt0 319094024 539 > cpu0: timer 236770821 400 > Total 556552503 940 >=20 > After: >=20 > $ vmstat -i > interrupt total rate > irq1: atkbd0 38 0 > irq6: fdc0 9 0 > irq15: ata1 34 0 > irq16: em1 2811 15 > irq17: em2 5 0 > cpu0: timer 71013 398 > irq256: mpt0 12163 68 > Total 86073 483 >=20 >=20 > Is there any other way we can make mpt0 get its own dedicated IRQ = without having to do this? The problem is that it causes us to have to = make rc.conf changes, pf.conf changes, and who knows what other software = could be on these machines that is trying to bind to a specific NIC... >=20 >=20 > Thanks! >=20 You could try switching mpt to MSI. MSI interrupts are never shared. = Add this to /boot/device.hints: > hint.mpt.0.msi_enable=3D"1" -Andrew -------------------------------------------------- Andrew Boyer aboyer@averesystems.com From owner-freebsd-questions@FreeBSD.ORG Mon May 21 17:10:02 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C6B51065702 for ; Mon, 21 May 2012 17:10:02 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from sola.nimnet.asn.au (paqi.nimnet.asn.au [115.70.110.159]) by mx1.freebsd.org (Postfix) with ESMTP id 890CA8FC08 for ; Mon, 21 May 2012 17:10:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by sola.nimnet.asn.au (8.14.2/8.14.2) with ESMTP id q4LH9pTP044821; Tue, 22 May 2012 03:09:52 +1000 (EST) (envelope-from smithi@nimnet.asn.au) Date: Tue, 22 May 2012 03:09:51 +1000 (EST) From: Ian Smith To: Paul Macdonald In-Reply-To: <4FBA5FB3.5010900@ifdnrg.com> Message-ID: <20120522021125.P98171@sola.nimnet.asn.au> References: <20120521120027.716761065686@hub.freebsd.org> <20120521232412.B98171@sola.nimnet.asn.au> <4FBA5FB3.5010900@ifdnrg.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Michael Sierchio , freebsd-questions@freebsd.org Subject: Re: ipfw subnetting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 17:10:02 -0000 On Mon, 21 May 2012 16:30:59 +0100, Paul Macdonald wrote: > On 21/05/2012 14:50, Ian Smith wrote: > > In freebsd-questions Digest, Vol 416, Issue 1, Message: 26 > > On Mon, 21 May 2012 10:06:12 +0100 Paul Macdonald wrote: > > > > > can anyone suggest what i'm doing wrong here. > > > > > > Desired: drop everything from 180.0.0.0 to 180.255.255.255 > > > > > > ipfw -q add 137 deny all from 180.0.0.0/8 to any > > > > t23# ipfw -q add 137 deny all from 180.0.0.0/8 to any > > t23# ipfw show 137 > > 00137 0 0 deny ip from 180.0.0.0/8 to any > > > > So what doesn't work? (apart from scattergun removal of small pieces of > > a whole lot of Asian countries, incl. Japan, Indonesia, Australia, .. :) > it was intended as a required temporary measure, > but even though it was listed in my ipfw list, i was/am still seeing traffic > coming in via addresses such as 180.248.x.x Ok. Coming in to what service/s? > A very open firewall test script is as follows: > > 00010 allow ip from any to any via lo0 > 00081 deny log ip from 180.0.0.0/8 to any > 00100 check-state > 00101 allow tcp from any to any established > 00102 allow ip from any to any out keep-state > 00103 allow icmp from any to any > 65535 deny ip from any to any > > but i'm still seeing traffic from > > 180.149.29.102 Banglalion Communications Ltd. WiMAX Operator. Bangladesh. > 180.234.116.61 > 180.234.36.44 > 180.234.237.119 > 180.234.72.115 Augere Wireless Broadband Bangladesh Limited. (FWIW) > I must be doing something wrong! If you're using just that order, denying 180/8 BEFORE the check-state, then incoming traffic from 180/8 not being dropped (and logged) at rule 81 would represent a serious bug in ipfw, worthy of a PR. But this may not be quite as it seems .. for example, even when dropped you'll see such packets from tcpdump, which are hooked before the firewall. Where and how, past the firewall, are you detecting this traffic? What sort of traffic? Are you sure sysctl net.inet.ip.fw.enable=1 ? Seeing `ipfw show` over a period, even better `ipfw -t show` with timestamps, could convince us the firewall was actually otherwise working .. In your later post to Michael you had that rule 137 AFTER check-state, which means that packets from 180/8 - in response to outbound requests by you (or your rootkit :) to those addresses - might indeed pass. > 00102 allow ip from any to any out keep-state keep-state for 'ip' or 'all' traffic (rather than specifying tcp, udp or icmp) doesn't make much sense, and could have dangerous consequences of allowing any sort of return traffic from (say) 180/8 initiated from your end, but only if check-state were BEFORE you've denied 180/8 traffic. Rather than show the script, please post results from ipfw show, and a few of the log entries of denied packets (with your addresses obscured if need be). And some logging from where you're detecting those hosts? cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Mon May 21 17:19:22 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4D268106564A; Mon, 21 May 2012 17:19:22 +0000 (UTC) (envelope-from feld@feld.me) Received: from feld.me (unknown [IPv6:2607:f4e0:100:300::2]) by mx1.freebsd.org (Postfix) with ESMTP id 223888FC23; Mon, 21 May 2012 17:19:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=feld.me; s=blargle; h=In-Reply-To:Message-Id:From:Mime-Version:Date:References:Subject:To:Content-Type; bh=QDQYTsKicQApn4memU3LH+y8nPxTe/XWsXZ1eFbpqIc=; b=rDK17jY5hUhhbF4mpZrcMwtjYuAGGnFrRYKmMKwcnCyii5OigN1mH7AAwdf3CNN0cStCnQMry04Nq3vEwcsfGeOoaM8xgvlsyfJ/ckwZc6g9ItofnuUdBeTT0rKFk61G; Received: from localhost ([127.0.0.1] helo=mwi1.coffeenet.org) by feld.me with esmtp (Exim 4.77 (FreeBSD)) (envelope-from ) id 1SWWGO-0006lk-9c; Mon, 21 May 2012 12:19:21 -0500 Received: from feld@feld.me by mwi1.coffeenet.org (Archiveopteryx 3.1.4) with esmtpa id 1337620754-3288-3287/5/17; Mon, 21 May 2012 17:19:14 +0000 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: freebsd-hackers@freebsd.org, freebsd-questions@FreeBSD.org References: <490F2075-3E4D-4F85-9935-937CED8FB10B@averesystems.com> Date: Mon, 21 May 2012 12:19:14 -0500 Mime-Version: 1.0 From: Mark Felder Message-Id: In-Reply-To: <490F2075-3E4D-4F85-9935-937CED8FB10B@averesystems.com> User-Agent: Opera Mail/11.64 (FreeBSD) X-SA-Score: -1.5 Cc: Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 17:19:22 -0000 On Mon, 21 May 2012 12:01:19 -0500, Andrew Boyer wrote: > You could try switching mpt to MSI. MSI interrupts are never shared. > Add this to /boot/device.hints: > >> hint.mpt.0.msi_enable="1" Currently implementing this on the known crashy servers. I've been looking around and all of our VM's that do NOT crash also do not share interrupts between em0/mpt0. Thank you very much.... if this is the fix we will be SO grateful. From owner-freebsd-questions@FreeBSD.ORG Mon May 21 17:19:56 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B85D5106567B for ; Mon, 21 May 2012 17:19:56 +0000 (UTC) (envelope-from paul@ifdnrg.com) Received: from ifdnrg30.ifdnrg.com (ifdnrg30.ifdnrg.com [193.200.98.50]) by mx1.freebsd.org (Postfix) with ESMTP id 5324A8FC0A for ; Mon, 21 May 2012 17:19:56 +0000 (UTC) Received: from [192.168.1.75] (93-97-172-73.zone5.bethere.co.uk [93.97.172.73]) (authenticated bits=0) by ifdnrg30.ifdnrg.com (8.14.5/8.14.4) with ESMTP id q4LHJrmh001337 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 21 May 2012 18:19:53 +0100 (BST) (envelope-from paul@ifdnrg.com) Message-ID: <4FBA7935.7090000@ifdnrg.com> Date: Mon, 21 May 2012 18:19:49 +0100 From: Paul Macdonald User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Michael Sierchio References: <20120521120027.716761065686@hub.freebsd.org> <20120521232412.B98171@sola.nimnet.asn.au> <4FBA5FB3.5010900@ifdnrg.com> <4FBA66DA.7040902@ifdnrg.com> In-Reply-To: <4FBA66DA.7040902@ifdnrg.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Ian Smith , freebsd-questions@freebsd.org Subject: Re: ipfw subnetting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 17:19:56 -0000 On 21/05/2012 17:01, Paul Macdonald wrote: > On 21/05/2012 16:44, Michael Sierchio wrote: >> On Mon, May 21, 2012 at 8:30 AM, Paul Macdonald wrote: >> >>> A very open firewall test script is as follows: >>> this is now resolved, i hadn't realised (embarrassingly) that ipfw list will show rules if if the fw is disabled. at some point during debugging i think i'd disabled the firewall and not re-enabled, and on seeing rules listed assumed it was actually on this was web traffic, coming in from 5-6 very wide ranges, with a referrer of http://bdsclickcenter.com/en/surf/view/75967 Not sure why they've become interested in one of my clients sites, but they have probably hit the server from several 100k ip's. mod_rewrite has been serving them 403's for over 24 hrs, but that doesn't seem to bother them! thanks to those who took the time to help. -- ------------------------- Paul Macdonald IFDNRG Ltd Web and video hosting ------------------------- t: 0131 5548070 m: 07970339546< Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 480DC1065874 for ; Mon, 21 May 2012 17:51:19 +0000 (UTC) (envelope-from kudzu@tenebras.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 194BA8FC15 for ; Mon, 21 May 2012 17:51:19 +0000 (UTC) Received: by pbbro2 with SMTP id ro2so7814639pbb.13 for ; Mon, 21 May 2012 10:51:18 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:x-gm-message-state; bh=4T9Muh4wT1FLYNrzSBAGck7dVQXitH7ZscHvWkskJ8s=; b=BmZ2PUu3IMBRDCh6/9O+d2ZAEz582wb39Uyo3XkkbM189j7fypzkciPEsUjZPUrEQr zIOeHJbs7pLDuY05Q6oO8deaR9nIL73RMmqVL23d2eaGKZ4GMTKC50m0sj01Unp5/s+X weSF1MKhvU8SJ0fSZdSoNN/MRw4XHpPpMJjMc1VJmnXTMMH29y8A3Tf1JpEledd25ilj W2ntEqIbZzbfBobZWthZe1MJSgwdt6Ua2xpq33hd74IH5IIDtx+UwUcjDBZyqm2g4pZ9 n2jWtU3d+bUWAaAUQ0lLA4UAR2u9uL69VY0uZmkUvBz/gAxnOK8Cy9Ef0MAh7nGLOyzN w3Bg== MIME-Version: 1.0 Received: by 10.68.241.165 with SMTP id wj5mr27312713pbc.76.1337622678567; Mon, 21 May 2012 10:51:18 -0700 (PDT) Received: by 10.68.203.229 with HTTP; Mon, 21 May 2012 10:51:18 -0700 (PDT) In-Reply-To: <4FBA7935.7090000@ifdnrg.com> References: <20120521120027.716761065686@hub.freebsd.org> <20120521232412.B98171@sola.nimnet.asn.au> <4FBA5FB3.5010900@ifdnrg.com> <4FBA66DA.7040902@ifdnrg.com> <4FBA7935.7090000@ifdnrg.com> Date: Mon, 21 May 2012 10:51:18 -0700 Message-ID: From: Michael Sierchio To: Paul Macdonald Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQmfeGFxbb5e51zlsq2T7A8WwyAEVSWLm0wgjaf9N0c/zH5Zvzhow93cCeK/wjE1Oj10+SkL Cc: Ian Smith , freebsd-questions@freebsd.org Subject: Re: ipfw subnetting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 17:51:19 -0000 On Mon, May 21, 2012 at 10:19 AM, Paul Macdonald wrote: > this is now resolved, i hadn't realised (embarrassingly) that ipfw list will > show rules if if the fw is disabled. You should consider using tables, which allow you to add ad hoc nets, etc. and you can swap rulesets atomically so you can manipulate tables and then deploy them. ipfw add deny ip from table\(1\) to any etc. From owner-freebsd-questions@FreeBSD.ORG Mon May 21 18:48:00 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17A401065686 for ; Mon, 21 May 2012 18:48:00 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id C4A5E8FC08 for ; Mon, 21 May 2012 18:47:59 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SWXe8-0004UZ-Rt for freebsd-questions@freebsd.org; Mon, 21 May 2012 20:47:56 +0200 Received: from pool-173-79-82-23.washdc.fios.verizon.net ([173.79.82.23]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 May 2012 20:47:56 +0200 Received: from nightrecon by pool-173-79-82-23.washdc.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 May 2012 20:47:56 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Mon, 21 May 2012 14:47:45 -0400 Lines: 103 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: pool-173-79-82-23.washdc.fios.verizon.net Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@hotmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 18:48:00 -0000 Mark Felder wrote: > OK guys I've been talking with another user who can recreate this crash > and the last bit of information we've learned seems to be leaning towards > interrupts/IRQ issues like someone (bz@ perhaps?) suggested. > > I'm still trying to test this myself, but the other user was able to > recreate my crash pretty much on demand. The fix was to not use the first > NIC in the VM because it will always share an IRQ with mpt0. Once mpt0 is > on its own the crash does not seem to be reproducible anymore. > [snip] I am not anywhere near your level in this subject area. My understanding is limited and do not have the in-depth experience. However, please allow me to possibly add an idea or two. I am shakedown testing FreeBSD 9 in a VirtualBox VM - so there is definitely a degree of 'apples vs oranges' present. VirtualBox (as I am using it) is a userland app and not a bare-metal hypervisor. When I set up the VM I chose to use the synthetic SAS controller as that would best represent actual server hardware in my workplace, along with the corresponding mpt driver in the FreeBSD 9 guest. Please note some of the following for comparative purposes only: [...] Event timer "LAPIC" quality 400 ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 acpi0: on motherboard acpi0: Power Button (fixed) acpi0: Sleep Button (fixed) Timecounter "HPET" frequency 14318180 Hz quality 950 Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 acpi_timer0: <32-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 [...] em0: port 0xd000-0xd007 mem 0xf0000000-0xf001ffff irq 19 at device 3.0 on pci0 [...] mpt0: port 0xd100-0xd1ff mem 0xf0820000-0xf083ffff,0xf0840000-0xf085ffff irq 22 at device 22.0 on pci0 mpt0: MPI Version=1.5.0.0 [...] The em0 is the first Intel NIC in Vbox and notice how it and mpt0 come up with distinctly different IRQs. A sysctl -a |grep mpt returns this: device mpt kern.sched.preemption: 1 kern.sched.preempt_thresh: 80 dev.mpt.0.%desc: LSILogic SAS/SATA Adapter dev.mpt.0.%driver: mpt dev.mpt.0.%location: slot=22 function=0 dev.mpt.0.%pnpinfo: vendor=0x1000 device=0x0054 subvendor=0x1000 subdevice=0x8000 class=0x010000 dev.mpt.0.%parent: pci0 dev.mpt.0.debug: 3 dev.mpt.0.role: 1 Very curious how 'irq 22 at device 22.0' and 'dev.mpt.0.%location: slot=22' all match with a '22'. The obvious thing here is we are comparing a userland Vbox guest to a VMWare hypervisor. From what little I know concerning any of this, to me it sounds vaguely like an APIC, LAPIC, and IO/APIC bug. There are known bugs wrt to BIOS setting up IRQ routing incorrectly, and/or providing incorrect ACPI and/or IMS tables to operating systems. The parallel in this case would be the logical or synthetic so-called "BIOS" that the VMWare hypervisor presents to the FreeBSD guest at guest boot time. In this case the truest fix for the problem would fall to VMWare, e.g. if the hypervisor is setting up tables in such a way as to create the shared IRQ problem in the first place. If my idea/theory/potential hypothesis has any merit. I do not understand why any of this would be different depending upon which guest is installed, but I also know absolutely nothing about VMWare hypervisor internals. > > Is there any other way we can make mpt0 get its own dedicated IRQ without > having to do this? The problem is that it causes us to have to make > rc.conf changes, pf.conf changes, and who knows what other software could > be on these machines that is trying to bind to a specific NIC... > Very possibly Andrew's device.hints is probably your best shot at a workaround. Wish you the best of luck in any case. You have done quite a job in researching this problem even to arrive at this point. Thank-you for that, and for sharing it with the community. Even though I can't really offer the kind of assistance you require, I have followed along with interest for self edification. -Mike From owner-freebsd-questions@FreeBSD.ORG Mon May 21 20:09:57 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 897D4106567B for ; Mon, 21 May 2012 20:09:57 +0000 (UTC) (envelope-from feld@feld.me) Received: from feld.me (unknown [IPv6:2607:f4e0:100:300::2]) by mx1.freebsd.org (Postfix) with ESMTP id 4CF1F8FC0A for ; Mon, 21 May 2012 20:09:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=feld.me; s=blargle; h=In-Reply-To:Message-Id:From:Mime-Version:Date:References:Subject:To:Content-Type; bh=pJMxxOwSzCi1FB6LKd/VRz9CU4mgJnVmDLF/KSm7jOE=; b=Te11/y3tJoZ4tVybigF8vqcwToeMlkam4vZwQMgXgrvo4dJxvHzDX4CZS/DcAoeMDZbwux6QnudITDN8DQniplNEbicgrteR9s5nnfftjElTED2LEC9XJkT5L/TDAShi; Received: from localhost ([127.0.0.1] helo=mwi1.coffeenet.org) by feld.me with esmtp (Exim 4.77 (FreeBSD)) (envelope-from ) id 1SWYvS-000C6G-DH for freebsd-questions@freebsd.org; Mon, 21 May 2012 15:09:56 -0500 Received: from feld@feld.me by mwi1.coffeenet.org (Archiveopteryx 3.1.4) with esmtpa id 1337630988-3288-3287/5/18; Mon, 21 May 2012 20:09:48 +0000 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: freebsd-questions@freebsd.org References: Date: Mon, 21 May 2012 15:09:48 -0500 Mime-Version: 1.0 From: Mark Felder Message-Id: In-Reply-To: User-Agent: Opera Mail/11.64 (FreeBSD) X-SA-Score: -1.5 Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 20:09:57 -0000 On Mon, 21 May 2012 13:47:45 -0500, Michael Powell wrote: > Very curious how 'irq 22 at device 22.0' and 'dev.mpt.0.%location: > slot=22' > all match with a '22'. Strangely here in ESXi that doesn't work the same. Emulated BIOS must be considerably different... :/ $ vmstat -i interrupt total rate irq1: atkbd0 6 0 irq6: fdc0 9 0 irq15: ata1 34 0 irq16: em1 62 0 irq18: em0 178079 17 cpu0: timer 4136470 400 irq256: mpt0 112544 10 Total 4427204 428 $ sysctl -a | grep mpt kern.sched.preemption: 1 kern.sched.preempt_thresh: 64 dev.mpt.0.%desc: LSILogic SAS/SATA Adapter dev.mpt.0.%driver: mpt dev.mpt.0.%location: slot=0 function=0 handle=\_SB_.PCI0.PE40.S1F0 dev.mpt.0.%pnpinfo: vendor=0x1000 device=0x0054 subvendor=0x15ad subdevice=0x1976 class=0x010700 dev.mpt.0.%parent: pci3 dev.mpt.0.debug: 3 dev.mpt.0.role: 1 dev.mpt.0.wake: 0 irq256 and slot ... 0. Interesting. > The obvious thing here is we are comparing a userland Vbox guest to a > VMWare > hypervisor. From what little I know concerning any of this, to me it > sounds > vaguely like an APIC, LAPIC, and IO/APIC bug. There are known bugs wrt to > BIOS setting up IRQ routing incorrectly, and/or providing incorrect ACPI > and/or IMS tables to operating systems. FWIW, VirtualBox and ESXi are nearly the same except ESXi just has as minimal an OS as possible for performance reasons. And what you're describing is exactly what I've been thinking for a long time but I just haven't had the proof. > The parallel in this case would be the logical or synthetic so-called > "BIOS" > that the VMWare hypervisor presents to the FreeBSD guest at guest boot > time. > In this case the truest fix for the problem would fall to VMWare, e.g. > if the > hypervisor is setting up tables in such a way as to create the shared IRQ > problem in the first place. > If my idea/theory/potential hypothesis has any merit. I do not understand > why any of this would be different depending upon which guest is > installed, > but I also know absolutely nothing about VMWare hypervisor internals. I don't know enough about how it's supposed to work but hopefully we're getting close to nailing down the real VMWare bug and we can finally tell their engineering to fix it. From owner-freebsd-questions@FreeBSD.ORG Tue May 22 02:23:59 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08ECF106566C for ; Tue, 22 May 2012 02:23:59 +0000 (UTC) (envelope-from olivares14031@gmail.com) Received: from mail-gh0-f182.google.com (mail-gh0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id BA0958FC0C for ; Tue, 22 May 2012 02:23:58 +0000 (UTC) Received: by ghbz22 with SMTP id z22so772175ghb.13 for ; Mon, 21 May 2012 19:23:58 -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=0kgn1wrKrzlPIznbvxzu6zo81g9r1pI/+24rpGhu4Lc=; b=gna91YEEmYYZbrkVL/Wah1v1L1ywax80/YvZKYodw7x5oJiy8WPFq+5smjmk+3sMup Cj4YCW7xWPMbw2/rEFm/FhBzn0hOlhunKqm6LEmTQwfkzYkaH6IOLgUw9ff5ZU4ap24o DTBNDuaHRHhFxU+FWitVuf5zMRY66WUCh5m0REIeHESy5QxFCzyBYMgjNyUCCcDgG+b4 5WW4BM2s5K2yDZvVGc/z/E9AG+TEZ0DIz+lBbXEKMQhx15weH7PlDjhEEt3lUGBdAPbe o5JZmGGbdO8w/r5uMM79Lilqgvi7A3aFWpsO+hfHWhhBLiuQv8O56N/QQIjJt0et+rpV nlBQ== MIME-Version: 1.0 Received: by 10.50.213.71 with SMTP id nq7mr8226068igc.12.1337653437714; Mon, 21 May 2012 19:23:57 -0700 (PDT) Received: by 10.50.112.4 with HTTP; Mon, 21 May 2012 19:23:57 -0700 (PDT) Date: Mon, 21 May 2012 21:23:57 -0500 Message-ID: From: Antonio Olivares To: FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1 Subject: no X after updating ports [Intel i945GME] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 02:23:59 -0000 Dear folks, I have an acer-aspire 1 netbook running FreeBSD 9.0 i386. It was working beautifully, but after todays updates, X no longer works. On screen I have drm0: on vgapci0 info: [drm] AGP at 0x20000000 256MB info: [drm] Initialized i915 1.6.0 20080730 I have also: xfsettingsd: Fatal IO error 35 (Resource temporarily unavailable) on X server :0. xfce4-settings-helper: Fatal IO error 35 (Resource temporarily unavailable) on X server :0. xfwm4: Fatal IO error 35 (Resource temporarily unavailable) on X server :0. Thunar: Fatal IO error 35 (Resource temporarily unavailable) on X server :0. wrapper: Fatal IO error 35 (Resource temporarily unavailable) on X server :0. xfce4-panel: Fatal IO error 35 (Resource temporarily unavailable) on X server :0. gkrellm: Fatal IO error 0 (No error: 0) on X server :0. running 'ssh-agent -s -k' unset SSH_AUTH_SOCK; unset SSH_AGENT_PID; echo Agent pid 1785 killed; xinit connection to X server lost waiting for X server to shut down xfdesktop: Fatal IO error 2 (No such file or directory) on X server :0.0. Segmentation fault: 11 at address 0x10 Fatal server errror: Caught signal 11 (Segmentation fault: 11). Server aborting updates installed via portmaster: fontconfig-2.9.0,1 gdk-pixbuf-2.23.5_2 gtk-2.24.6_1 also cairo went from cairo-1.10.2_3,1 to cairo-1.12.2,1 Any advice, comments or suggestions are greatly appreciated. Best Regards, Antonio From owner-freebsd-questions@FreeBSD.ORG Tue May 22 02:26:51 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DEB51065674 for ; Tue, 22 May 2012 02:26:51 +0000 (UTC) (envelope-from olivares14031@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3518E8FC0A for ; Tue, 22 May 2012 02:26:51 +0000 (UTC) Received: by yenl8 with SMTP id l8so6225122yen.13 for ; Mon, 21 May 2012 19:26:50 -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=btNq2vQM87cn1f6r+wX0THyq7RLmNUwWnEdH+udNZ7E=; b=W7W+60KX6K9FHbB5eIA24ZhOFeauanY9aSK4zfxk/1FHtlOpcWVZXnShxbgg1uT8i6 4J0yWpUr9iYMUrud426wWxCQ2HbNeYQGxxVB61P6opnF5ev/Wj8Ml+vqdX9CARF3MyRV TR1zcJzOq3wAVh2Y3OSz1xCylDtJUQhGZRrnCppmTQbcFnhezXmXW/vqpOP6WRq+r19k Qy37m6vtrk9kHrWtmBfJob+Pn3XKzE4H7Ltj/E2G76+eAK0spA1IO9VVaHwx8dhTP2uA kcmDYFmB72ljlg6duvqOwKophRmzkZwL+Vrurf3nrvgYVNaw46Iqk60IIPRoAWPZjkJB ei4A== MIME-Version: 1.0 Received: by 10.43.58.73 with SMTP id wj9mr13750654icb.17.1337653610283; Mon, 21 May 2012 19:26:50 -0700 (PDT) Received: by 10.50.112.4 with HTTP; Mon, 21 May 2012 19:26:50 -0700 (PDT) In-Reply-To: <20120510161429.dd7008cf.freebsd@edvax.de> References: <20120510064959.5d1fe5c6.freebsd@edvax.de> <20120510161429.dd7008cf.freebsd@edvax.de> Date: Mon, 21 May 2012 21:26:50 -0500 Message-ID: From: Antonio Olivares To: Polytropon Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD Questions Subject: Re: djvu viewers from ports or add capability to view to xpdf, gv or other X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 02:26:51 -0000 >> I had a gut feeling that viewers like gv or xpdf would have the >> capability to view djvu files, since evince could do this, but I guess >> I was wrong. > > As far as I know, the ability to deal with this file formate > requires the corresponding library to be used. Evince seems > to be able to, but xpdf and gv are "just PS/PDF viewers", so > this functionality hasn't been incorporated. > > Even though ImageMagic is a "heavy chunk of compiling", it > is acceptably easy to use when installed ("display" command). > Enabling DJVU option and recompiling it shouldn't pull too > many dependencies into the system. > > > -- Polytropon, Thank you for sharing this advice. I have recompiled ImageMagick with the djvu capability and had to include [x] for threads and it works well. I have to use the [space bar] to change pages, but I don't know which key to use to return one page back. Otherwise it works and no need to use evince :) Best Regards, Antonio From owner-freebsd-questions@FreeBSD.ORG Tue May 22 08:18:46 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33820106566C for ; Tue, 22 May 2012 08:18:46 +0000 (UTC) (envelope-from bah@bananmonarki.se) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id 87CEA8FC08 for ; Tue, 22 May 2012 08:18:44 +0000 (UTC) Received: from kw.news4all.se (c80-217-70-175.bredband.comhem.se [80.217.70.175]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id q4M8IZl2060972; Tue, 22 May 2012 10:18:35 +0200 (CEST) (envelope-from bah@bananmonarki.se) Message-ID: <4FBB4B8C.3000806@bananmonarki.se> Date: Tue, 22 May 2012 10:17:16 +0200 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:10.0.3) Gecko/20120411 Thunderbird/10.0.3 MIME-Version: 1.0 To: "C. P. Ghost" References: <201205181149.q4IBndvU028665@hera.homer.att.com> <4FB64022.6010206@bananmonarki.se> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, "J. W. Ballantine" Subject: Re: Mouse stopped working in X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 08:18:46 -0000 012-05-20 14:17, C. P. Ghost skrev: > On Fri, May 18, 2012 at 2:27 PM, Bernt Hansson wrote: >> 2012-05-18 13:49, J. W. Ballantine skrev: >> >>> Hi, >>> >>> Before the update of x11 on 4/21/2012, X was working fine, but now >>> when I startx, my usb and touchpad mouse are no longer found. The >>> mouse works in terminal mode, and hald and dbus are started in >>> /etc/rc.conf. >> >> I have exactly the same problem. What windowmanager are you >> using? I'm using xfce4, I have a workaround for that. >> >> 1. start X >> 2. when it comes up press alt+F2, the start program dialog comes up >> 3. type in xterm or your terminal of choice >> 4. in your terminal su to root then type >> >> /usr/local/etc/rc.d/dbus restart&& /usr/local/etc/rc.d/hald restart >> >> wait a few seconds and the mouse should work again. There is a second way of doing this stunt. Start X When X is up and running press CTRL+ALT+F3 or any F* frpm F3 up to F8 then you get to the console Su to root in the console and type in /usr/local/etc/rc.d/dbus restart&& /usr/local/etc/rc.d/hald restart Then press ALT+F9 to get back to X > I have the same problem but with a ps/2 mouse. Restarting dbus > and hald from within an xterm is a workable workaround. > > Since I'm using fluxbox, I start an xterm in ~/.xinitrc in the background > to get a terminal before exec-ing fluxbox. Luckily, this xterm has > already the focus. > > This is the relevant part of /var/log/Xorg.0.log regarding the > mouse: > > (II) config/hal: Adding input device PS/2 Mouse > (II) LoadModule: "mouse" > (II) Loading /usr/local/lib/xorg/modules/input/mouse_drv.so > (II) Module mouse: vendor="X.Org Foundation" > compiled for 1.7.7, module version = 1.7.1 > Module class: X.Org XInput Driver > ABI class: X.Org XInput driver, version 7.0 > (WW) PS/2 Mouse: No Device specified, looking for one... > (II) PS/2 Mouse: Setting Device option to "/dev/psm0" > (--) PS/2 Mouse: Device: "/dev/psm0" > (==) PS/2 Mouse: Protocol: "Auto" > (**) PS/2 Mouse: always reports core events > (**) Option "Device" "/dev/psm0" > (EE) xf86OpenSerial: Cannot open device /dev/psm0 > Device busy. > (EE) PS/2 Mouse: cannot open input device > (II) UnloadModule: "mouse" > (EE) PreInit returned NULL for "PS/2 Mouse" > (EE) config/hal: NewInputDeviceRequest failed (8) > > After restarting hald: > > (II) config/hal: Adding input device PS/2 Mouse > (WW) PS/2 Mouse: No Device specified, looking for one... > (II) PS/2 Mouse: Setting Device option to "/dev/sysmouse" > (--) PS/2 Mouse: Device: "/dev/sysmouse" > (==) PS/2 Mouse: Protocol: "Auto" > (**) PS/2 Mouse: always reports core events > (**) Option "Device" "/dev/sysmouse" > (==) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 > (**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5 > (**) PS/2 Mouse: Buttons: 9 > (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) > > Interestingly, the first time Xorg tries to access the > mouse, it opens /dev/psm0, and the second time after > manually restarting hald, it accesses /dev/sysmouse... > which is the driver that I always use in /etc/X11/xorg.conf: > > Section "InputDevice" > Identifier "Mouse0" > Driver "mouse" > Option "Protocol" "auto" > Option "Device" "/dev/sysmouse" > Option "ZAxisMapping" "4 5 6 7" > EndSection > > Shouldn't Xorg use /dev/sysmouse all the time then? > Why does it try to open /dev/psm0? > > I hope this problem will get fixed soon. ;-) > > Thanks for the good workaround. > > Regards, > -cpghost. > From owner-freebsd-questions@FreeBSD.ORG Tue May 22 08:43:53 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F746106566C; Tue, 22 May 2012 08:43:53 +0000 (UTC) (envelope-from venkatduvvuru.ml@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 39A9F8FC1C; Tue, 22 May 2012 08:43:53 +0000 (UTC) Received: by yenl8 with SMTP id l8so6431675yen.13 for ; Tue, 22 May 2012 01:43:52 -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=WOqCc3dF4bXyxrMdqwx+x2tWmmYlsb0SYd2zLpHTu6g=; b=eT360OfLE7ZuN8lj8LCk+7MZDRVQ4tg4qzytKPlciJN6gztMDj+piZ01xPnU8hYHjK eqezDZ2et0B747UZnr8EdsHHUYblQag8fPITclxvnsKih54GRCUE+oDDH/SRg/cM1O+n qLx7NYd8oG7Vc0Ih8tD5MinRWpYGpaiVpL4b2r1pX42Q+ZhL0vPp/ynSFNScM4pAJk+Z 1lU6iD7ncQx2R6jSxdnZzlLMnmQDhBY4MHfYgo9MgknxerDQNgbbHcBCcMnEQ/BHNJzF xY/fLFF2oB+gkKeHy+8Xn9gRx00P28XEuPddWVNUyCFZ1CRieIAoy2iyUd9MKIXIa56Q nKvQ== MIME-Version: 1.0 Received: by 10.50.168.34 with SMTP id zt2mr8866398igb.10.1337676232177; Tue, 22 May 2012 01:43:52 -0700 (PDT) Received: by 10.64.12.205 with HTTP; Tue, 22 May 2012 01:43:52 -0700 (PDT) Date: Tue, 22 May 2012 14:13:52 +0530 Message-ID: From: Venkat Duvvuru To: freebsd-questions@freebsd.org, freebsd-net@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 08:43:53 -0000 Folks, Could somebody please tell about the base Freebsd version which has LRO support for IPv6? I'm using 9.0-RELEASE and I see that tcp_lro_rx is failing. Please confirm. /Venkat From owner-freebsd-questions@FreeBSD.ORG Tue May 22 08:44:49 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DEB31065670 for ; Tue, 22 May 2012 08:44:49 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id D06F08FC15 for ; Tue, 22 May 2012 08:44:48 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx01.qsc.de (Postfix) with ESMTP id D3D9B3CBC3; Tue, 22 May 2012 10:44:41 +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 q4M8ifJA005231; Tue, 22 May 2012 10:44:41 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Tue, 22 May 2012 10:44:41 +0200 From: Polytropon To: Bernt Hansson Message-Id: <20120522104441.f05a2f88.freebsd@edvax.de> In-Reply-To: <4FBB4B8C.3000806@bananmonarki.se> References: <201205181149.q4IBndvU028665@hera.homer.att.com> <4FB64022.6010206@bananmonarki.se> <4FBB4B8C.3000806@bananmonarki.se> 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-questions@freebsd.org Subject: Re: Mouse stopped working in X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 08:44:49 -0000 On Tue, 22 May 2012 10:17:16 +0200, Bernt Hansson wrote: > There is a second way of doing this stunt. > > Start X > When X is up and running press CTRL+ALT+F3 or any F* frpm F3 up to F8 > then you get to the console > Su to root in the console and type in > > /usr/local/etc/rc.d/dbus restart&& /usr/local/etc/rc.d/hald restart > > Then press ALT+F9 to get back to X So if that is the _solution_, why not try to automate it? Not tested, just a suggestion: Make this the last-1 line in ~/.xinitrc (or ~/.xsession depending on actual setup), before the "exec" call to the WM / DE, maybe like this: #!/bin/sh [ -f ~/.xmodmaprc ] && xmodmap ~/.xmodmaprc xterm & xsetroot -solid rgb:3b/4c/7a xset b 100 1000 15 & xset r rate 250 30 & xset s off & xset -dpms & -> sudo /usr/local/etc/rc.d/dbus restart && sudo /usr/local/etc/rc.d/hald restart exec wmaker It should "happen" when X is running, and it should be "back to normal" when the WM or DE is launched (and all background programs have fully started). -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Tue May 22 09:13:40 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 436F3106566B; Tue, 22 May 2012 09:13:40 +0000 (UTC) (envelope-from centigradefrs35@hemc.net) Received: from et-0-13.gw-nat.bs.kae.de.oneandone.net (et-0-13.gw-nat.bs.kae.de.oneandone.net [212.227.35.77]) by mx1.freebsd.org (Postfix) with ESMTP id 051748FC17; Tue, 22 May 2012 09:13:40 +0000 (UTC) Received: from 212.227.35.77 (account , , HELO freebsd.org) by freebsd.org (CommuniGate Pro SMTP 5.2.3) with ESMTPA id 484263142 for ; Tue, 22 May 2012 10:13:38 +0100 From: , , To: , , Date: Tue, 22 May 2012 10:13:38 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Mailer: nxzzf.91 Message-ID: <8813674075.IKNM1Q5S948448@dzzjzuisfrzpv.zbwydquop.org> Cc: Subject: Your monthly income can be increased to 1950 dollars paid. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 09:13:40 -0000 We invite you to work in the remote assistant position. This work takes 2-3 hours per week and requires absolutely no investment. The essence of this work for incoming client requests in your city. The starting salary is about 2500 EUR per month + bonuses. You get paid your salary every 2 weeks and your bonuses after fulfilling each task! We guarantee work for everyone. But we accept applications this week only! Therefore, you should write a request right now. And you will start earning money, starting from next week. Please indicate in the request: Your name: Your email address: City of residence: Please send the request to my email Malcolm@topeuropajobs.com,and I will answer you personally as soon as possible Sincerely, Malcolm Gibbons From owner-freebsd-questions@FreeBSD.ORG Tue May 22 09:17:32 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 369C21065673 for ; Tue, 22 May 2012 09:17:32 +0000 (UTC) (envelope-from bah@bananmonarki.se) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id A29F88FC0A for ; Tue, 22 May 2012 09:17:31 +0000 (UTC) Received: from kw.news4all.se (c80-217-70-175.bredband.comhem.se [80.217.70.175]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id q4M9HOiC062719; Tue, 22 May 2012 11:17:24 +0200 (CEST) (envelope-from bah@bananmonarki.se) Message-ID: <4FBB5956.9020605@bananmonarki.se> Date: Tue, 22 May 2012 11:16:06 +0200 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:10.0.3) Gecko/20120411 Thunderbird/10.0.3 MIME-Version: 1.0 To: Polytropon References: <201205181149.q4IBndvU028665@hera.homer.att.com> <4FB64022.6010206@bananmonarki.se> <4FBB4B8C.3000806@bananmonarki.se> <20120522104441.f05a2f88.freebsd@edvax.de> In-Reply-To: <20120522104441.f05a2f88.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Mouse stopped working in X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 09:17:32 -0000 2012-05-22 10:44, Polytropon skrev: > On Tue, 22 May 2012 10:17:16 +0200, Bernt Hansson wrote: >> There is a second way of doing this stunt. >> >> Start X >> When X is up and running press CTRL+ALT+F3 or any F* frpm F3 up to F8 >> then you get to the console >> Su to root in the console and type in >> >> /usr/local/etc/rc.d/dbus restart&& /usr/local/etc/rc.d/hald restart >> >> Then press ALT+F9 to get back to X > > So if that is the _solution_, why not try to automate it? > Not tested, just a suggestion: > > Make this the last-1 line in ~/.xinitrc (or ~/.xsession depending > on actual setup), before the "exec" call to the WM / DE, maybe > like this: > > #!/bin/sh > [ -f ~/.xmodmaprc ]&& xmodmap ~/.xmodmaprc > xterm& > xsetroot -solid rgb:3b/4c/7a > xset b 100 1000 15& > xset r rate 250 30& > xset s off& > xset -dpms& > -> sudo /usr/local/etc/rc.d/dbus restart&& sudo /usr/local/etc/rc.d/hald restart > exec wmaker > > It should "happen" when X is running, and it should be > "back to normal" when the WM or DE is launched (and > all background programs have fully started). We don't use sudo, only su. But I guess it work for those that use sudo. From owner-freebsd-questions@FreeBSD.ORG Tue May 22 04:42:58 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F451106564A for ; Tue, 22 May 2012 04:42:58 +0000 (UTC) (envelope-from leeho94@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 2A0D18FC15 for ; Tue, 22 May 2012 04:42:57 +0000 (UTC) Received: by bkvi18 with SMTP id i18so6218568bkv.13 for ; Mon, 21 May 2012 21:42:57 -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=65ANeE2defHAIUj5QCcohxf4vZnP6UqnWSX1YMThXf8=; b=QYdVjqkkqD4KzyB5KGE8GbFJMijO/Un4YgIioLmL3GOAURUeYIw3Lqe/JyC0R0QE/d fJcXxMrnphfGpqy0A516hz4M/K+OFut4c2/IlUjmRPNIuIMdgD/A+GqzHdw8pXuJzFXm jAaC9UXeFV/m3OnTj7b+2+e2WbhV/vrlXxGOELdmi7pEPyiskrJdS7REWMup/vgNn8MJ SpTMOg+xj16BbiHTfmOmksI2UYlsgVfUGeECgIMNPFSul5kZTvL7o3/luQJcNw7LbzK8 f5boIsfR//T/I2Tkfdw4yQAPHQcd5e8TzoSg8T3mLFAO/QiaxHrcUS+kDpUb5IxWyMuC 3wGA== MIME-Version: 1.0 Received: by 10.204.153.21 with SMTP id i21mr8292095bkw.38.1337661776998; Mon, 21 May 2012 21:42:56 -0700 (PDT) Received: by 10.204.100.6 with HTTP; Mon, 21 May 2012 21:42:56 -0700 (PDT) Date: Tue, 22 May 2012 13:42:56 +0900 Message-ID: From: JAEHO LEE To: freebsd-questions@FreeBSD.org X-Mailman-Approved-At: Tue, 22 May 2012 10:57:00 +0000 Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: I have a question. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 04:42:58 -0000 Dear Sir, I would be a FreeBSD open source committer. But I don't know how to do. Could you teach me ? Best regards. From owner-freebsd-questions@FreeBSD.ORG Tue May 22 11:21:48 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05B02106568E for ; Tue, 22 May 2012 11:21:48 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id B920E8FC15 for ; Tue, 22 May 2012 11:21:47 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id 59DF52808E; Tue, 22 May 2012 13:21:41 +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 q4MBLeN1005952; Tue, 22 May 2012 13:21:41 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Tue, 22 May 2012 13:21:40 +0200 From: Polytropon To: JAEHO LEE Message-Id: <20120522132140.0cc8eb42.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-questions@freebsd.org Subject: Re: I have a question. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 11:21:48 -0000 On Tue, 22 May 2012 13:42:56 +0900, JAEHO LEE wrote: > Dear Sir, > > I would be a FreeBSD open source committer. > But I don't know how to do. > Could you teach me ? Check out the FreeBSD home page, especially the article about contributing to FreeBSD: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/contributing/index.html You'll find more information on the FreeBSD web page, e. g. the Porters Handbook and other development resources. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Tue May 22 11:50:18 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B43B1065672 for ; Tue, 22 May 2012 11:50:18 +0000 (UTC) (envelope-from kernel@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id D7CED8FC0A for ; Tue, 22 May 2012 11:50:17 +0000 (UTC) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 5CA8A50995 for ; Tue, 22 May 2012 13:49:11 +0200 (CEST) Received: from [10.10.10.44] (chimea.webrz.net [10.10.10.44]) by webrz.xs4all.nl (Postfix) with ESMTPA id 2693C5087D for ; Tue, 22 May 2012 13:49:11 +0200 (CEST) Message-ID: <4FBB7D72.9090507@webrz.net> Date: Tue, 22 May 2012 13:50:10 +0200 From: Jos Chrispijn User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: Subject: Startup from script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 11:50:18 -0000 I have this issue with running commands from a script: In my crontab I define script 'do_daily.run': 30 23 * * * root /root/cronjobs/do_daily.run The content of this script (amongst others) is: rsync -avpog /etc /backup/$DATE/ Funny thing now is that in the output of the script, the following appears: /root/cronjobs/do_daily.run: rsync: not found file credentials of the script itself: -rwx------ 1 root wheel 246 Jun 20 2010 do_daily.run What do I oversee here? kind regards, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Tue May 22 12:07:21 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B732106564A for ; Tue, 22 May 2012 12:07:21 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from mail-ee0-f54.google.com (mail-ee0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id C7C188FC15 for ; Tue, 22 May 2012 12:07:20 +0000 (UTC) Received: by eeke49 with SMTP id e49so1781336eek.13 for ; Tue, 22 May 2012 05:07:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; bh=pqVf2LZM3a3C8aqRU4tPJW7oPm+hAzh1qx7wzbyH1Sw=; b=H3zehbvfjte5qN0e3a6dVqk6/JCeGSPAAJDBlpx/EQFIBCA+Y7qdwi3KH64xuqPJWj d5I8KajnBes83RDdRyvhgW0N1He5/a7nBqXhdUh8Y7XJ06bIPdAfDARwJinrCeeXB2pX JRvzniX0mPXcHaN/K5mCuCaD8YffcMStv0nsrrWNtiMwdvwrvacExewZ1zNZr4nDPjzY 0PbZs/ldhbf3GGVi7+1JEbFUJAgQRmh9wEgtEneoW3CGTxNf693naTd3sNo7W0j6HU1X /OC8SNI9xpwzVFcNPWs/uCBR2Ep1F52zvTCxhPilG7U+SNUXkT4pp6Ch95oFXXRm0Rsg Ch6A== Received: by 10.14.48.7 with SMTP id u7mr4375884eeb.68.1337688439731; Tue, 22 May 2012 05:07:19 -0700 (PDT) Received: from gumby.homeunix.com (87-194-105-247.bethere.co.uk. [87.194.105.247]) by mx.google.com with ESMTPS id z5sm105715525eem.3.2012.05.22.05.07.16 (version=SSLv3 cipher=OTHER); Tue, 22 May 2012 05:07:17 -0700 (PDT) Date: Tue, 22 May 2012 13:07:14 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20120522130714.2413c310@gumby.homeunix.com> In-Reply-To: <4FBB7D72.9090507@webrz.net> References: <4FBB7D72.9090507@webrz.net> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Startup from script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 12:07:21 -0000 On Tue, 22 May 2012 13:50:10 +0200 Jos Chrispijn wrote: > I have this issue with running commands from a script: > > In my crontab I define script 'do_daily.run': > 30 23 * * * root > /root/cronjobs/do_daily.run > > The content of this script (amongst others) is: > rsync -avpog /etc /backup/$DATE/ > > Funny thing now is that in the output of the script, the following > appears: /root/cronjobs/do_daily.run: rsync: not found > > file credentials of the script itself: > -rwx------ 1 root wheel 246 Jun 20 2010 do_daily.run > You need to set PATH in the crontab or script, or use the full path for rsync. From owner-freebsd-questions@FreeBSD.ORG Tue May 22 12:12:29 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BF74106568D for ; Tue, 22 May 2012 12:12:29 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 83E7F8FC18 for ; Tue, 22 May 2012 12:12:28 +0000 (UTC) Received: from mr17.lnh.mail.rcn.net ([207.172.157.37]) by smtp02.lnh.mail.rcn.net with ESMTP; 22 May 2012 08:12:22 -0400 Received: from smtp04.lnh.mail.rcn.net (smtp04.lnh.mail.rcn.net [207.172.157.104]) by mr17.lnh.mail.rcn.net (MOS 4.3.4-GA) with ESMTP id BMR27801; Tue, 22 May 2012 08:12:22 -0400 Received: from 209-6-86-84.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.86.84]) by smtp04.lnh.mail.rcn.net with ESMTP; 22 May 2012 08:12:20 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <20411.33442.423721.174389@jerusalem.litteratus.org> Date: Tue, 22 May 2012 08:12:18 -0400 To: Jos Chrispijn In-Reply-To: <4FBB7D72.9090507@webrz.net> References: <4FBB7D72.9090507@webrz.net> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr17.lnh.mail.rcn.net) Cc: freebsd-questions@freebsd.org Subject: Startup from script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 12:12:29 -0000 Jos Chrispijn writes: > The content of this script (amongst others) is: > rsync -avpog /etc /backup/$DATE/ > > Funny thing now is that in the output of the script, the following appears: > /root/cronjobs/do_daily.run: rsync: not found > > file credentials of the script itself: > -rwx------ 1 root wheel 246 Jun 20 2010 do_daily.run 1) rsync is a port. 2) by default, ports install executables to /usr/local/bin 3) by default, "do_daily_run" will inherit its environment - including PATH - from crontab(5) (system or per-user). 4) by default, the crontab PATH does not include /usr/local/bin. (There is a reason for this.) Recommended solution: provide the full path to rsync. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Tue May 22 13:05:45 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE6BC1065670 for ; Tue, 22 May 2012 13:05:45 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4AD628FC0A for ; Tue, 22 May 2012 13:05:45 +0000 (UTC) Received: by werg1 with SMTP id g1so5086023wer.13 for ; Tue, 22 May 2012 06:05:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=djaFNRhzGcGfNm4PZ5ysRw47ps+vgHcExJZw9Eq1i60=; b=q52isJGCExHozaH65ZzV7keN9FXdXvG9yUE3Znqk+J+SRytupgUKMxaQqSv5vwHWDb QLkCYZ0EMqmV7+W0xsK/cGP2g74n3R3LjI45CboFW81icdTR3B2i2o5lCmhdBJNw7Y/w FsVizNxCAin/Lx4DXTDxi1abFKMAeRHhUjvCW9YclCqYudLwep2OWTGSpYHOGLv99CXa VWiGrOrm60LiLUO3R1/lG2EKbCHie23DUy60PQnrclxx3eezhvvqUpofyJAmeP351NKJ 7sWxaPpAQ61NHZH9xAvJZxg+usdUR3OZtFH81wiYykU8fHhfqMauB/3s0pZdDog4Pg54 7/JQ== Received: by 10.180.94.4 with SMTP id cy4mr35203748wib.2.1337691943436; Tue, 22 May 2012 06:05:43 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.75.151 with HTTP; Tue, 22 May 2012 06:05:02 -0700 (PDT) From: Odhiambo Washington Date: Tue, 22 May 2012 16:05:02 +0300 Message-ID: To: questions Content-Type: multipart/related; boundary=f46d044403841b827e04c09fad68 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Dirty System - openssl problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 13:05:45 -0000 --f46d044403841b827e04c09fad68 Content-Type: text/plain; charset=UTF-8 Hi, Can someone please tell me how to resolve the following multiplicity of libraries, to ensure I only compile applications against a particular library. I believe this emanates from my installing of openssl from the ports. FreeBSD 8.3-STABLE i386: (15:58:10 <~>) 0 $ ls -al /usr/lib/libcrypt* -r--r--r-- 1 root wheel 94534 May 13 13:45 /usr/lib/libcrypt.a lrwxr-xr-x 1 root wheel 18 May 13 13:45 /usr/lib/libcrypt.so -> /lib/libcrypt.so.5 -r--r--r-- 1 root wheel 95088 May 13 13:45 /usr/lib/libcrypt_p.a -r--r--r-- 1 root wheel 2152154 May 13 13:46 /usr/lib/libcrypto.a lrwxr-xr-x 1 root wheel 19 May 13 13:46 /usr/lib/libcrypto.so -> /lib/libcrypto.so.6 -r--r--r-- 1 root wheel 2216396 May 13 13:46 /usr/lib/libcrypto_p.a (15:58:20 <~>) 0 $ (15:58:26 <~>) 0 $ ls -al /usr/local/lib/libcrypt* -rw-r--r-- 1 root wheel 2874924 May 22 14:58 /usr/local/lib/libcrypto.a lrwxr-xr-x 1 root wheel 14 May 22 14:58 /usr/local/lib/libcrypto.so -> libcrypto.so.8 -r--r--r-- 1 root wheel 1387063 Apr 9 2009 /usr/local/lib/libcrypto.so.5 -r--r--r-- 1 root wheel 1832156 May 22 14:58 /usr/local/lib/libcrypto.so.8 -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ I can't hear you -- I'm using the scrambler. Please consider the environment before printing this email. --f46d044403841b827e04c09fad68-- From owner-freebsd-questions@FreeBSD.ORG Tue May 22 15:22:08 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D30D41065674 for ; Tue, 22 May 2012 15:22:08 +0000 (UTC) (envelope-from "") Received: from remailer.privacy.at (remailer.privacy.at [212.124.141.99]) by mx1.freebsd.org (Postfix) with ESMTP id 8B1938FC12 for ; Tue, 22 May 2012 15:22:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by remailer.privacy.at (Postfix) with ESMTP id ECAF97F701 for ; Tue, 22 May 2012 17:22:00 +0200 (CEST) From: "Anonymous Remailer (austria)" Comments: This message did not originate from the Sender address above. It was remailed automatically by anonymizing remailer software. Please report problems or inappropriate use to the remailer administrator at . To: freebsd-questions@freebsd.org In-Reply-To: Message-ID: <71db2ddcae73ed6e3f4fe5897b804acb@remailer.privacy.at> Date: Tue, 22 May 2012 17:22:00 +0200 (CEST) Subject: Re: I have a question. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 15:22:08 -0000 This doesn't answer your question but let me be the first to congratulate you on your wisdom of not posting this to misc@openbsd.org ;-) From owner-freebsd-questions@FreeBSD.ORG Tue May 22 15:32:03 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A7B9106566C for ; Tue, 22 May 2012 15:32:03 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from nk11p00mm-asmtp010.mac.com (nk11p00mm-asmtp010.mac.com [17.158.161.9]) by mx1.freebsd.org (Postfix) with ESMTP id 0D2818FC16 for ; Tue, 22 May 2012 15:32:03 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from [17.153.50.35] (unknown [17.153.50.35]) by nk11p00mm-asmtp010.mac.com (Oracle Communications Messaging Server 7u4-23.01(7.0.4.23.0) 64bit (built Aug 10 2011)) with ESMTPSA id <0M4F00F3TKH6ZI30@nk11p00mm-asmtp010.mac.com> for questions@freebsd.org; Tue, 22 May 2012 15:31:57 +0000 (GMT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.6.7580,1.0.260,0.0.0000 definitions=2012-05-21_03:2012-05-21, 2012-05-21, 1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=6.0.2-1012030000 definitions=main-1205220154 From: Chuck Swiger In-reply-to: Date: Tue, 22 May 2012 08:31:54 -0700 Message-id: References: To: Odhiambo Washington X-Mailer: Apple Mail (2.1084) Cc: questions Subject: Re: Dirty System - openssl problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 15:32:03 -0000 On May 22, 2012, at 6:05 AM, Odhiambo Washington wrote: > Can someone please tell me how to resolve the following multiplicity of > libraries, to ensure I only compile applications against a particular > library. I believe this emanates from my installing of openssl from the > ports. You could run "make deinstall" from the openssl port directory, or similar equivalent with pkg_delete. You'd then also need to rebuild anything linked to the openssl port. Why bother, though? FreeBSD isn't Windows; having multiple versions of a shared library around is supported sanely on Unix platforms.... Regards, -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Tue May 22 15:35:24 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 828C81065679 for ; Tue, 22 May 2012 15:35:24 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by mx1.freebsd.org (Postfix) with ESMTP id 0EECA8FC16 for ; Tue, 22 May 2012 15:35:23 +0000 (UTC) Received: by wibhn6 with SMTP id hn6so2975153wib.13 for ; Tue, 22 May 2012 08:35:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=6wKPqqJPA/6rKzjX5QIPz7fh6sgSBvQhDeVlvkCZPoE=; b=amekq+CLfcn5loXu8UIEPu6YauErbysoEkoJZHqbTJwBzQEzzQEixM06HusuG6wcYs Ir+1JVQ+3S3uT2Wn5GqruqAyI/D6IZ9yGzCugpH5cPXJRw4r7koWoQEUE4t2lKGtzg3/ Xt6Pf5Sp/Uq7dP0tueq0NLH/WKgZdyRuT8TTA7+6/VmLPfljVTwh5pgIfwNcO8Jax7R6 XmTZvPzcDB1rXtEZJtKWE/8YlrrgiCyBsvjo15s9RGFHnF2gO0CkvWVQHJ3ctAHlCd2V KH/M28CQp3beoFngu/aHSn+ISptmfwyL7n8pRbep80e6XC01mqnJ7p/lXePHd8mkV4wM GTJg== Received: by 10.216.202.22 with SMTP id c22mr15228600weo.10.1337700923000; Tue, 22 May 2012 08:35:23 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.75.151 with HTTP; Tue, 22 May 2012 08:34:42 -0700 (PDT) In-Reply-To: References: From: Odhiambo Washington Date: Tue, 22 May 2012 18:34:42 +0300 Message-ID: To: Chuck Swiger Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: questions Subject: Re: Dirty System - openssl problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 15:35:24 -0000 On Tue, May 22, 2012 at 6:31 PM, Chuck Swiger wrote: > On May 22, 2012, at 6:05 AM, Odhiambo Washington wrote: > > Can someone please tell me how to resolve the following multiplicity of > > libraries, to ensure I only compile applications against a particular > > library. I believe this emanates from my installing of openssl from the > > ports. > > You could run "make deinstall" from the openssl port directory, or > similar equivalent with pkg_delete. You'd then also need to rebuild > anything linked to the openssl port. > > Why bother, though? FreeBSD isn't Windows; having multiple versions of a > shared library around is supported sanely on Unix platforms.... > > Hi Chuck, Thanks for that. Actually, I ended up figuring out how to address my source of worry. Something I planted in pkgtools.conf bit me so badly, but I nailed it. Thanks! -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ I can't hear you -- I'm using the scrambler. From owner-freebsd-questions@FreeBSD.ORG Tue May 22 16:50:42 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30DC81065675; Tue, 22 May 2012 16:50:42 +0000 (UTC) (envelope-from jfvogel@gmail.com) Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by mx1.freebsd.org (Postfix) with ESMTP id 8FDA98FC18; Tue, 22 May 2012 16:50:41 +0000 (UTC) Received: by wibhm6 with SMTP id hm6so3855759wib.1 for ; Tue, 22 May 2012 09:50:34 -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=uTWwJUUSAaUEmdH7aPYJr57TvGg1e3QQJ3YtM4WtNxo=; b=ITdVLDPnn/n3CK1y8NtKqVzl/HOP2ztAiTn7F4G4mqmF3VpQIvOteCzLIZbs+jf5wE w3oXvEpARh3LUuV5G1R2nOKAho87hre+vj05UrgAHfbA6M1sp8GSHp3KTFo+JhmGwQAJ ZpvnX8x97Q7IjZXtPXMgsTKyV7Y6nRrHvNkmv06PUMtfxnUcSKz23lUvuk6y0WZEA0rR mdWiD7AAN0Ru/IEHg2LuqKHGxqsbcKwWz+kkAGM1XuGQYTqCjwjosNpD7SuLoiyKlVNa +dlT3A99/KyTnvzmYmUYj/CHl+qJJjboHxRhBCMYCpVV+YJzTxvlDN0bu9mKDRZMHhF9 DKWw== MIME-Version: 1.0 Received: by 10.216.141.84 with SMTP id f62mr134855wej.91.1337705434717; Tue, 22 May 2012 09:50:34 -0700 (PDT) Received: by 10.180.7.103 with HTTP; Tue, 22 May 2012 09:50:34 -0700 (PDT) In-Reply-To: References: Date: Tue, 22 May 2012 09:50:34 -0700 Message-ID: From: Jack Vogel To: Venkat Duvvuru Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-net@freebsd.org, freebsd-questions@freebsd.org Subject: Re: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 16:50:42 -0000 The LRO code as it stands right now is IPV4 specific, it would be nice to extend it, one of many improvements that may get done at some point. Jack On Tue, May 22, 2012 at 1:43 AM, Venkat Duvvuru wrote: > Folks, > Could somebody please tell about the base Freebsd version which has LRO > support for IPv6? > I'm using 9.0-RELEASE and I see that tcp_lro_rx is failing. > > Please confirm. > > /Venkat > _______________________________________________ > freebsd-net@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-net > To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:01:35 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B04C1106566C; Tue, 22 May 2012 17:01:35 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mx1.sbone.de (mx1.sbone.de [IPv6:2a01:4f8:130:3ffc::401:25]) by mx1.freebsd.org (Postfix) with ESMTP id 391AB8FC16; Tue, 22 May 2012 17:01:35 +0000 (UTC) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id 25C5025D3A91; Tue, 22 May 2012 17:01:34 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id 4A247BE780C; Tue, 22 May 2012 17:01:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id AXck2xLk0Cd3; Tue, 22 May 2012 17:01:32 +0000 (UTC) Received: from orange-en1.sbone.de (orange-en1.sbone.de [IPv6:fde9:577b:c1a9:31:cabc:c8ff:fecf:e8e3]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 56C10BE7809; Tue, 22 May 2012 17:01:32 +0000 (UTC) Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: "Bjoern A. Zeeb" In-Reply-To: Date: Tue, 22 May 2012 17:01:31 +0000 Content-Transfer-Encoding: 7bit Message-Id: References: To: Jack Vogel X-Mailer: Apple Mail (2.1084) Cc: freebsd-net@freebsd.org, Venkat Duvvuru , freebsd-questions@freebsd.org Subject: Re: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:01:35 -0000 On 22. May 2012, at 16:50 , Jack Vogel wrote: > The LRO code as it stands right now is IPV4 specific, it would be nice to > extend it, one of > many improvements that may get done at some point. I am about to commit it to HEAD. Bear another few days with me; I know I am running late but committing new code had less prio than some other real life things currently. I'll also bring TSO6, etc... /bz -- Bjoern A. Zeeb You have to have visions! It does not matter how good you are. It matters what good you do! From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:04:53 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC15A106566B; Tue, 22 May 2012 17:04:53 +0000 (UTC) (envelope-from jfvogel@gmail.com) Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id C89908FC1D; Tue, 22 May 2012 17:04:52 +0000 (UTC) Received: by wgbds11 with SMTP id ds11so6420335wgb.31 for ; Tue, 22 May 2012 10:04:51 -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=DIn7zaEQg9zybCqR2k7OYMwa6Mag/yBYHk0UbaHSnkE=; b=fPv2J48nuXrDthZm27kLXaskGvHqubq7ORMitngUiz+owcHzS0WZH011lhke6R0Le1 ojwuBpm6smQ0mPySmSnW3cdP1H0T6RjoGLXp3oHoDO6S5O8a/5+9vgGXikaJtBxEAdnj GtfVZ1tEYtUQHlYoZCJa7Or1BpINoqaJYy2fHQKj2YWDY6pYXqIBz7DeBG6uIWmEtrLp ONOSzpFuv25PFpRBqSE+TAi0sFLzLleY0p6H+yvzzsy/IaoMcneg4UvKpW+UoEu/AhIN BKrGDfR+miv0rIchWrv9dgA8WEXxIl7Kx9YkezQsyZwNtnYgxBboxAAnYnbtfp2pVjVn T20A== MIME-Version: 1.0 Received: by 10.216.198.65 with SMTP id u43mr1705485wen.170.1337706291621; Tue, 22 May 2012 10:04:51 -0700 (PDT) Received: by 10.180.7.103 with HTTP; Tue, 22 May 2012 10:04:51 -0700 (PDT) In-Reply-To: References: Date: Tue, 22 May 2012 10:04:51 -0700 Message-ID: From: Jack Vogel To: "Bjoern A. Zeeb" Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-net@freebsd.org, Venkat Duvvuru , freebsd-questions@freebsd.org Subject: Re: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:04:53 -0000 Oh, that's right, distracted with other projects and I forgot, now we just need to have an LRO that works with forwarding eh :) You ROCK bz :) Jack On Tue, May 22, 2012 at 10:01 AM, Bjoern A. Zeeb wrote: > > On 22. May 2012, at 16:50 , Jack Vogel wrote: > > > The LRO code as it stands right now is IPV4 specific, it would be nice to > > extend it, one of > > many improvements that may get done at some point. > > I am about to commit it to HEAD. Bear another few days with me; I know > I am running late but committing new code had less prio than some other > real life things currently. > > I'll also bring TSO6, etc... > > /bz > > -- > Bjoern A. Zeeb You have to have visions! > It does not matter how good you are. It matters what good you do! > > From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:06:05 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 998A4106566B for ; Tue, 22 May 2012 17:06:05 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 5CED18FC12 for ; Tue, 22 May 2012 17:06:05 +0000 (UTC) Received: from [12.32.36.74] (freshstart.dreamchaser.org. [12.32.36.74]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4MH5rQ9008630; Tue, 22 May 2012 11:05:53 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBBC778.7060805@dreamchaser.org> Date: Tue, 22 May 2012 11:06:00 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Warren Block References: <4FB730B7.60009@dreamchaser.org> <4FB7DF67.1000603@dreamchaser.org> <20120519210008.f1721985.freebsd@edvax.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Tue, 22 May 2012 11:05:54 -0600 (MDT) Cc: Polytropon , freebsd-questions@freebsd.org Subject: Re: ATI Radeon HD5500 driver question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:06:05 -0000 Thanks for the pointers and hints, I'm over that hurdle. On 5/19/2012 5:28 PM, Warren Block wrote: > On Sat, 19 May 2012, Polytropon wrote: > >>> 3. The Xorg man page notes that should cause it to >>> exit. However, it doesn't, and I had to use kill -TERM. Any hints on >>> why doesn't cause it to exit? >> >> This is also a new default to _not_ work anymore. You have more >> than two (if I remember correctly) options in making it work. >> You'll find them in the Handbook: >> >> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html >> >> One possibility when X has been compiled _without_ HAL support >> (and no hald running), placing >> >> Option "DontZap" "false" >> >> into the "ServerLayout" section should work. Additionally, I see >> that I have >> >> Option "XkbOptions" "terminate:ctrl_alt_bksp" >> >> in the "InputDevice" section of "Keyboard0". It "just" works. :-) > > This should work whether or not HAL is installed or running. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > > From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:07:54 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D382106566C; Tue, 22 May 2012 17:07:54 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mx1.sbone.de (mx1.sbone.de [IPv6:2a01:4f8:130:3ffc::401:25]) by mx1.freebsd.org (Postfix) with ESMTP id 1D2518FC12; Tue, 22 May 2012 17:07:54 +0000 (UTC) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id 2977225D39FD; Tue, 22 May 2012 17:07:53 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id 56089BE780C; Tue, 22 May 2012 17:07:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id F+lrwrzhkm9v; Tue, 22 May 2012 17:07:51 +0000 (UTC) Received: from orange-en1.sbone.de (orange-en1.sbone.de [IPv6:fde9:577b:c1a9:31:cabc:c8ff:fecf:e8e3]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 3CDAEBE7809; Tue, 22 May 2012 17:07:51 +0000 (UTC) Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: "Bjoern A. Zeeb" In-Reply-To: Date: Tue, 22 May 2012 17:07:50 +0000 Content-Transfer-Encoding: quoted-printable Message-Id: <72B744D5-3D24-4A56-907C-2A8F6620877B@FreeBSD.org> References: To: Jack Vogel X-Mailer: Apple Mail (2.1084) Cc: freebsd-net@freebsd.org, Venkat Duvvuru , freebsd-questions@freebsd.org Subject: Re: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:07:54 -0000 On 22. May 2012, at 17:04 , Jack Vogel wrote: > Oh, that's right, distracted with other projects and I forgot, now we = just need > to have an LRO that works with forwarding eh :) That's a 6 line bainaid commit afterwards, basically returning form the = LRO queuing function in case forwarding is turned on for that address family; a = proper solution for long term can than be done whenever we feel like it. The above we = should have done years ago;) > You ROCK bz :) >=20 > Jack >=20 >=20 > On Tue, May 22, 2012 at 10:01 AM, Bjoern A. Zeeb = wrote: >=20 > On 22. May 2012, at 16:50 , Jack Vogel wrote: >=20 > > The LRO code as it stands right now is IPV4 specific, it would be = nice to > > extend it, one of > > many improvements that may get done at some point. >=20 > I am about to commit it to HEAD. Bear another few days with me; I = know > I am running late but committing new code had less prio than some = other > real life things currently. >=20 > I'll also bring TSO6, etc... --=20 Bjoern A. Zeeb You have to have visions! It does not matter how good you are. It matters what good you do! From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:16:59 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96E93106564A for ; Tue, 22 May 2012 17:16:59 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id 05EF08FC1C for ; Tue, 22 May 2012 17:16:58 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4MHGvr6061197; Tue, 22 May 2012 19:16:57 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4MHGvEq061194; Tue, 22 May 2012 19:16:57 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 22 May 2012 19:16:57 +0200 (CEST) From: User Wojtek To: Jos Chrispijn In-Reply-To: <4FBB7D72.9090507@webrz.net> Message-ID: References: <4FBB7D72.9090507@webrz.net> 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Tue, 22 May 2012 19:16:58 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: Startup from script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:16:59 -0000 > > In my crontab I define script 'do_daily.run': > 30 23 * * * root > /root/cronjobs/do_daily.run > > The content of this script (amongst others) is: > rsync -avpog /etc /backup/$DATE/ > > Funny thing now is that in the output of the script, the following appears: > /root/cronjobs/do_daily.run: rsync: not found > > file credentials of the script itself: > -rwx------ 1 root wheel 246 Jun 20 2010 do_daily.run > > What do I oversee here? > add PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin in the beginning of your crontab your default $PATH is NOT cron default $PATH From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:33:12 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2BA3106564A for ; Tue, 22 May 2012 17:33:12 +0000 (UTC) (envelope-from kernel@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 9976F8FC08 for ; Tue, 22 May 2012 17:33:12 +0000 (UTC) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 29C22508BB; Tue, 22 May 2012 19:32:12 +0200 (CEST) Received: from [10.10.10.44] (chimea.webrz.net [10.10.10.44]) by webrz.xs4all.nl (Postfix) with ESMTPA id C9DB95086E; Tue, 22 May 2012 19:32:11 +0200 (CEST) Message-ID: <4FBBCDD7.8070008@webrz.net> Date: Tue, 22 May 2012 19:33:11 +0200 From: Jos Chrispijn User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Robert Huff References: <4FBB7D72.9090507@webrz.net> <20411.33442.423721.174389@jerusalem.litteratus.org> In-Reply-To: <20411.33442.423721.174389@jerusalem.litteratus.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: freebsd-questions@freebsd.org Subject: Re: Startup from script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:33:13 -0000 Thank you (all) for your information; I followed your suggestions and it all works flawless! best regards, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:35:29 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C2620106567C; Tue, 22 May 2012 17:35:29 +0000 (UTC) (envelope-from venkatduvvuru.ml@gmail.com) Received: from mail-gg0-f182.google.com (mail-gg0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 500338FC19; Tue, 22 May 2012 17:35:29 +0000 (UTC) Received: by ggnm2 with SMTP id m2so7070929ggn.13 for ; Tue, 22 May 2012 10:35:23 -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=0uEUNnYjh4FW2ksiIcYvqXXR+G3Y6CdeEUDPssDWP94=; b=ByYPf8Eyl3sOEuL4ejpQZo6vHxPuBQqVbCOS23R97JTjsBtbXZeP011HHBiALwrdJz FuqTfGvW9miDuQft6C2ssH+FtKwtAFQE7hVjAaXLz4YXUhP7ZCZrQ46OZ6dNIGEeHps1 A8mXGXXPlugtDUW61muSqtNZB73cl3H67n/e9zHAvCSnYOpD71huxwtmrIyOSYi9cTfl 0vqw4F4H+mXeATZPVYYJmeDjd/GbguBHjVGiNVeRs2hAUqS7ACrj4pJF/AliH0ju9BjO x4/HLoI6WE/grQJDr5xFMMPFPE9cZ8Txre2e8HW0Om1NVH4EoB7wGvdsQv2+0MRS7jys t69g== MIME-Version: 1.0 Received: by 10.50.10.164 with SMTP id j4mr10667076igb.13.1337708123101; Tue, 22 May 2012 10:35:23 -0700 (PDT) Received: by 10.64.12.205 with HTTP; Tue, 22 May 2012 10:35:23 -0700 (PDT) In-Reply-To: <72B744D5-3D24-4A56-907C-2A8F6620877B@FreeBSD.org> References: <72B744D5-3D24-4A56-907C-2A8F6620877B@FreeBSD.org> Date: Tue, 22 May 2012 23:05:23 +0530 Message-ID: From: Venkat Duvvuru To: "Bjoern A. Zeeb" Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-net@freebsd.org, Jack Vogel , freebsd-questions@freebsd.org Subject: Re: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:35:29 -0000 Thanks for the response. I observed that there is a significant performance drop in case of IPv6 on the "rx" side. While I'm able to hit line rate ~9.5 Gbps on a 10gb NIC for IPv4..I could only get ~6 Gbps on the "rx" front for IPv6...However "tx" for IPv6 is on par with IPv4 hitting almost line rates. Could this be because of lack of LRO6?? Note: hwpmc profiling shows that most of the time is spent in the IPv6 stack code /Venkat On Tue, May 22, 2012 at 10:37 PM, Bjoern A. Zeeb wrote: > > On 22. May 2012, at 17:04 , Jack Vogel wrote: > > > Oh, that's right, distracted with other projects and I forgot, now we > just need > > to have an LRO that works with forwarding eh :) > > That's a 6 line bainaid commit afterwards, basically returning form the > LRO queuing > function in case forwarding is turned on for that address family; a > proper solution > for long term can than be done whenever we feel like it. The above we > should have done > years ago;) > > > > You ROCK bz :) > > > > Jack > > > > > > On Tue, May 22, 2012 at 10:01 AM, Bjoern A. Zeeb wrote: > > > > On 22. May 2012, at 16:50 , Jack Vogel wrote: > > > > > The LRO code as it stands right now is IPV4 specific, it would be nice > to > > > extend it, one of > > > many improvements that may get done at some point. > > > > I am about to commit it to HEAD. Bear another few days with me; I know > > I am running late but committing new code had less prio than some other > > real life things currently. > > > > I'll also bring TSO6, etc... > > -- > Bjoern A. Zeeb You have to have visions! > It does not matter how good you are. It matters what good you do! > > From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:38:21 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3DF65106566C for ; Tue, 22 May 2012 17:38:21 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id D9B378FC20 for ; Tue, 22 May 2012 17:38:20 +0000 (UTC) Received: from [12.32.36.74] (freshstart.dreamchaser.org. [12.32.36.74]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4MHcIio008751 for ; Tue, 22 May 2012 11:38:19 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBBCF11.3040007@dreamchaser.org> Date: Tue, 22 May 2012 11:38:25 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <201205181149.q4IBndvU028665@hera.homer.att.com> <4FB64022.6010206@bananmonarki.se> <4FBB4B8C.3000806@bananmonarki.se> In-Reply-To: <4FBB4B8C.3000806@bananmonarki.se> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Tue, 22 May 2012 11:38:19 -0600 (MDT) Subject: gimp 2.8? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:38:21 -0000 Can anyone tell me the status of gimp 2.8 for FreeBSD? I just assumed it would be in the ports tree but I don't see it. Thanks, Gary From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:46:59 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E89F106566B; Tue, 22 May 2012 17:46:59 +0000 (UTC) (envelope-from jfvogel@gmail.com) Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 502208FC0A; Tue, 22 May 2012 17:46:58 +0000 (UTC) Received: by wgbds11 with SMTP id ds11so6459693wgb.31 for ; Tue, 22 May 2012 10:46:57 -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=jWywyyv1Z7vxDdU/5l56L9C3cJh6UwK/J1I76zawWPU=; b=iWLwex6oV2X9ugobH7KsYEItb2DDWoP3gZJjCy2biPL1Qs8znsA9JF4PThOUNwa73i KNpawQTgXGbL2281N+KKiWCopDWl1Az9W0aKnsYy1AkSmoVf04Xh5FPuf+es846U/n6B jD5BsYpQJVVAaa/mv6QgGMgeBSbbEoABXYyiUx0Mz46YefFQSOicw+sELEd1dxMSwR5g 3TPAl3VZ0YzfKhFv5VDS5UNH+omLlQVjm+Dac6WDUUKQbAoiqqHYhaYLMZFhKd8agoO7 cURG3dx+e14aSS/f1znQWA8p/kuE1j9JalH67t5mnq65MshjduIkhpdBB6JWoiLU/fgi C3rw== MIME-Version: 1.0 Received: by 10.216.141.226 with SMTP id g76mr14857438wej.67.1337708817209; Tue, 22 May 2012 10:46:57 -0700 (PDT) Received: by 10.180.7.103 with HTTP; Tue, 22 May 2012 10:46:57 -0700 (PDT) In-Reply-To: References: <72B744D5-3D24-4A56-907C-2A8F6620877B@FreeBSD.org> Date: Tue, 22 May 2012 10:46:57 -0700 Message-ID: From: Jack Vogel To: Venkat Duvvuru Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-net@freebsd.org, "Bjoern A. Zeeb" , freebsd-questions@freebsd.org Subject: Re: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:46:59 -0000 LRO is a huge win for 10G (as is TSO on the TX side), so odds are good its behind the drop, in any case you'll be able to test that soon :) Jack On Tue, May 22, 2012 at 10:35 AM, Venkat Duvvuru wrote: > Thanks for the response. > > I observed that there is a significant performance drop in case of IPv6 on > the "rx" side. > While I'm able to hit line rate ~9.5 Gbps on a 10gb NIC for IPv4..I could > only get ~6 Gbps on the "rx" front for IPv6...However "tx" for IPv6 is on > par with IPv4 hitting almost line rates. > > Could this be because of lack of LRO6?? > > Note: hwpmc profiling shows that most of the time is spent in the IPv6 > stack code > > /Venkat > On Tue, May 22, 2012 at 10:37 PM, Bjoern A. Zeeb wrote: > >> >> On 22. May 2012, at 17:04 , Jack Vogel wrote: >> >> > Oh, that's right, distracted with other projects and I forgot, now we >> just need >> > to have an LRO that works with forwarding eh :) >> >> That's a 6 line bainaid commit afterwards, basically returning form the >> LRO queuing >> function in case forwarding is turned on for that address family; a >> proper solution >> for long term can than be done whenever we feel like it. The above we >> should have done >> years ago;) >> >> >> > You ROCK bz :) >> > >> > Jack >> > >> > >> > On Tue, May 22, 2012 at 10:01 AM, Bjoern A. Zeeb >> wrote: >> > >> > On 22. May 2012, at 16:50 , Jack Vogel wrote: >> > >> > > The LRO code as it stands right now is IPV4 specific, it would be >> nice to >> > > extend it, one of >> > > many improvements that may get done at some point. >> > >> > I am about to commit it to HEAD. Bear another few days with me; I know >> > I am running late but committing new code had less prio than some other >> > real life things currently. >> > >> > I'll also bring TSO6, etc... >> >> -- >> Bjoern A. Zeeb You have to have visions! >> It does not matter how good you are. It matters what good you do! >> >> > From owner-freebsd-questions@FreeBSD.ORG Tue May 22 17:47:04 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67ACF1065670 for ; Tue, 22 May 2012 17:47:04 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 396A78FC16 for ; Tue, 22 May 2012 17:47:04 +0000 (UTC) Received: from mail4.sea5.speakeasy.net (mail4.sea5.speakeasy.net [69.17.117.48]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 987A9A7131A for ; Tue, 22 May 2012 13:46:57 -0400 (EDT) Received: (qmail 8651 invoked from network); 22 May 2012 17:46:57 -0000 Received: by simscan 1.4.0 ppid: 17085, pid: 19276, t: 0.1968s scanners: clamav: 0.88.2/m:52/d:10739 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail4.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 22 May 2012 17:46:56 -0000 Message-ID: <4FBBD113.70304@speakeasy.org> Date: Tue, 22 May 2012 10:46:59 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org, SeaBUG Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail4.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 X-Mailman-Approved-At: Tue, 22 May 2012 18:23:38 +0000 Cc: Subject: Nfscl X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 17:47:04 -0000 I built nanoBSD on > uname -a FreeBSD P9X79.tddhome 9.0-STABLE FreeBSD 9.0-STABLE #2: Fri May 11 20:41:54 PDT 2012 tomdean@P9X79.tddhome:/usr/src/sys/GENERIC amd64 for a TS5700 with a ELAN SC520. The trick was to override some variables in the .cfg file. The image will boot and all seems OK. In the kernel config, I have options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server options NFSLOCKD # Network Lock Manager options NFS_ROOT # NFS as /, requires NFSCLIENT When I try to start nfscleint # /etc/rc.d/nfsclient start I get an error message about a missing nfscl module. Looking in sys/i386/conf/*, I find that NFSCL is the new NFS client and NFSD is the new NFS server. I saw no errors from having NFSxxxx in my kernel config. Do I need to use the new NFSxxxx op[tions? If not, how do I get nfsclient working in nanoBSD? Tom Dean From owner-freebsd-questions@FreeBSD.ORG Tue May 22 19:43:53 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E7A51065675 for ; Tue, 22 May 2012 19:43:53 +0000 (UTC) (envelope-from www-data@loft5074.serverloft.eu) Received: from nws1.ispeed.it (loft5074.serverloft.eu [188.138.48.174]) by mx1.freebsd.org (Postfix) with ESMTP id 52A628FC0C for ; Tue, 22 May 2012 19:43:52 +0000 (UTC) Received: from nws1.ispeed.it (localhost.localdomain [127.0.0.1]) by nws1.ispeed.it (Postfix) with ESMTP id 7A20D194EB47 for ; Tue, 22 May 2012 21:42:10 +0200 (CEST) Received: by nws1.ispeed.it (Postfix, from userid 33) id E5126194F166; Tue, 22 May 2012 21:41:08 +0200 (CEST) To: questions@freebsd.org From: Bob Sup LLC MIME-Version: 1.0 Content-Type: text/plain Message-Id: <20120522194108.E5126194F166@nws1.ispeed.it> Date: Tue, 22 May 2012 21:41:08 +0200 (CEST) Content-Transfer-Encoding: quoted-printable Cc: Subject: Product Inquiry!.8 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bobbriggs33@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 19:43:53 -0000 =0D Hello Sales,=0D =0D I will like to have your newly updated site,so that i can give you= the list of what i really want from your website. Also i need you to con= firm if you accept credit card orders and you can use FedEx or Ups to shi= p within United State=0D =0D Kindly reply back asap today.=0D Thanks=0D From owner-freebsd-questions@FreeBSD.ORG Tue May 22 19:43:57 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 747DC1065680 for ; Tue, 22 May 2012 19:43:57 +0000 (UTC) (envelope-from kernel@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 2F81F8FC14 for ; Tue, 22 May 2012 19:43:57 +0000 (UTC) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id E1EC1508BB for ; Tue, 22 May 2012 21:42:56 +0200 (CEST) Received: from [10.10.10.41] (zeus.webrz.net [10.10.10.41]) by webrz.xs4all.nl (Postfix) with ESMTPA id A89245086E for ; Tue, 22 May 2012 21:42:56 +0200 (CEST) Message-ID: <4FBBEC79.1000004@webrz.net> Date: Tue, 22 May 2012 21:43:53 +0200 From: Jos Chrispijn User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: Subject: Updating /src from command line X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 19:43:57 -0000 I want to compile my kernel and I read that for this I need to have the complete /SRC tree installed. If I do this via sysinstall, I get either a display that the chosen server is not available or these are not available for FreeBSD 9. Is there a way to update /src by CVSUP or otherwise? thanks, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Tue May 22 19:59:47 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 574C2106564A for ; Tue, 22 May 2012 19:59:47 +0000 (UTC) (envelope-from gmx@ross.cx) Received: from www81.your-server.de (www81.your-server.de [213.133.104.81]) by mx1.freebsd.org (Postfix) with ESMTP id 15BC48FC1C for ; Tue, 22 May 2012 19:59:46 +0000 (UTC) Received: from [188.108.239.192] (helo=michael-think) by www81.your-server.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.74) (envelope-from ) id 1SWvF5-0005Dg-Mf; Tue, 22 May 2012 21:59:39 +0200 Content-Type: text/plain; charset=iso-8859-15; format=flowed; delsp=yes To: freebsd-questions@freebsd.org, "Jos Chrispijn" References: <4FBBEC79.1000004@webrz.net> Date: Tue, 22 May 2012 21:59:34 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Michael Ross" Message-ID: In-Reply-To: <4FBBEC79.1000004@webrz.net> User-Agent: Opera Mail/11.64 (Win32) X-Authenticated-Sender: gmx@ross.cx X-Virus-Scanned: Clear (ClamAV 0.97.3/14946/Tue May 22 15:45:25 2012) Cc: Subject: Re: Updating /src from command line X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 19:59:47 -0000 Am 22.05.2012, 21:43 Uhr, schrieb Jos Chrispijn : > I want to compile my kernel and I read that for this I need to have the > complete /SRC tree installed. > If I do this via sysinstall, I get either a display that the chosen > server is not available or these are not available for FreeBSD 9. > Is there a way to update /src by CVSUP or otherwise? > > thanks, > Jos Chrispijn I do it like this: Copy, read and modify /usr/src/share/examples/cvsup/stable-supfile to, e.g. /root/stable-supfile then csup /root/stable-supfile HTH Michael From owner-freebsd-questions@FreeBSD.ORG Tue May 22 20:06:06 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8D411065688 for ; Tue, 22 May 2012 20:06:06 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 82C578FC14 for ; Tue, 22 May 2012 20:06:06 +0000 (UTC) Received: from [12.32.36.74] (freshstart.dreamchaser.org. [12.32.36.74]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4MK65Tv009141 for ; Tue, 22 May 2012 14:06:05 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBBF1B1.4050706@dreamchaser.org> Date: Tue, 22 May 2012 14:06:09 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <201205181149.q4IBndvU028665@hera.homer.att.com> <4FB64022.6010206@bananmonarki.se> <4FBB4B8C.3000806@bananmonarki.se> <4FBBCF11.3040007@dreamchaser.org> In-Reply-To: <4FBBCF11.3040007@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Tue, 22 May 2012 14:06:05 -0600 (MDT) Subject: hard link identification X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 20:06:06 -0000 Is there any way to tell if something is a hard link, other than ls -i of relevant files and seeing that the inode is the same? or a better way? I was a bit confused when looking at /root/.cshrc and then discovering a .cshrc in / as well. Thanks, Gary From owner-freebsd-questions@FreeBSD.ORG Tue May 22 20:12:26 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FA25106566B for ; Tue, 22 May 2012 20:12:26 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id C4A948FC08 for ; Tue, 22 May 2012 20:12:25 +0000 (UTC) Received: from [12.32.36.74] (freshstart.dreamchaser.org. [12.32.36.74]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4MKCOr1009173 for ; Tue, 22 May 2012 14:12:25 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBBF32D.9070505@dreamchaser.org> Date: Tue, 22 May 2012 14:12:29 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Tue, 22 May 2012 14:12:25 -0600 (MDT) Subject: openoffice on 9.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 20:12:26 -0000 I was trying to pkg_add openoffice and it fails (file not found) when trying to fetch the openoffice.org tarball. 1. I'm assuming that since pkg_add looks for the tarball, it is supposed to exist. Is that a valid assumption? 2. Anyone know why the tarball isn't there? Should I be trying to add something else? Thanks, Gary From owner-freebsd-questions@FreeBSD.ORG Tue May 22 20:12:34 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5863E10656EA for ; Tue, 22 May 2012 20:12:34 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id D48F08FC12 for ; Tue, 22 May 2012 20:12:33 +0000 (UTC) Received: by werg1 with SMTP id g1so5453267wer.13 for ; Tue, 22 May 2012 13:12:32 -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=l0VtB3fDRpqzi228QrnbP3QMIQ/RMQN146MB702sR1g=; b=lrbfXlb8KIRNUsE6296QcQdrUYlcBcjt+hWZ7GkXv8RlrmJZSuC1ua43+7lwplCEBC 6Tf/gvbeQfoHtbuAbvEIjcZjHsMvJMnR2MLGpmr3GuCCras9cqwQJub9I4xaB/VGiceg TfGgZt42aP9H95g9GlQ4cTHuGSVbbEwvZudOI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding:x-gm-message-state; bh=l0VtB3fDRpqzi228QrnbP3QMIQ/RMQN146MB702sR1g=; b=Rtg0R7ODbFjIBERoXx8UWbGexXY3qxVnXomTl60bmsVequMZ9Nis+1xYtsT7IJGOsO gqY5/YLyFyiYwztKz+l+C8e186SeBWkHVhNdLIvXpxmnSNA14zlWoXuXu8bY/4w2Ogun LIKvVUgXHCnP39E9BIR+jiH1XurHBfBztpsgdoaoUyukKDc+w4x80vyPBHUBBe4stQTv AFwFkJBQkiD3wmgF1rVn4WmUEH2Fgin+X4vBLRXx5blYGWpPfN/Kg2UraNkI0ewV0FMr UoGalXhbP4Fwb8KN/v3/BxyYlvciVGefc/GvHv+jtDAqnF8SmR2AQggCYF+vuWANuF+q 7owQ== Received: by 10.180.93.38 with SMTP id cr6mr37739075wib.16.1337717551856; Tue, 22 May 2012 13:12:31 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.85.202 with HTTP; Tue, 22 May 2012 13:12:01 -0700 (PDT) In-Reply-To: <4FBBF1B1.4050706@dreamchaser.org> References: <201205181149.q4IBndvU028665@hera.homer.att.com> <4FB64022.6010206@bananmonarki.se> <4FBB4B8C.3000806@bananmonarki.se> <4FBBCF11.3040007@dreamchaser.org> <4FBBF1B1.4050706@dreamchaser.org> From: Eitan Adler Date: Tue, 22 May 2012 13:12:01 -0700 Message-ID: To: freebsd@dreamchaser.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQly/QOgjUAOEn3IGTbocEAXctoPa/vzB/gAuKS0p/SH5bwSCK6ubhys9NjndM5n4XQIJLkj Cc: freebsd-questions@freebsd.org Subject: Re: hard link identification X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 20:12:34 -0000 On 22 May 2012 13:06, Gary Aitken wrote: > Is there any way to tell if something is a hard link, other than > =C2=A0ls -i of relevant files and seeing that the inode is the same? > or a better way? Hard links are not special. You can't tell something is a "hard link" because normal files are exactly the same. You can use stat(1) to see how many hard links point to a file though. --=20 Eitan Adler From owner-freebsd-questions@FreeBSD.ORG Tue May 22 20:13:34 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C30A1065673 for ; Tue, 22 May 2012 20:13:34 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 22C078FC1A for ; Tue, 22 May 2012 20:13:33 +0000 (UTC) Received: from mail4.sea5.speakeasy.net (mail4.sea5.speakeasy.net [69.17.117.48]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 6102EA704D0 for ; Tue, 22 May 2012 16:13:33 -0400 (EDT) Received: (qmail 5080 invoked from network); 22 May 2012 20:13:32 -0000 Received: by simscan 1.4.0 ppid: 16640, pid: 16284, t: 0.2635s scanners: clamav: 0.88.2/m:52/d:10739 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail4.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 22 May 2012 20:13:32 -0000 Message-ID: <4FBBF36F.9000804@speakeasy.org> Date: Tue, 22 May 2012 13:13:35 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail4.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Using inb() and outb() X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 20:13:34 -0000 I have nanoBSD running a hardware control application. To do this, I need inb() and outb() functions. I an do this as root. However, it is better if none of the control system is run as root. How do I allow these functions to one specific user? Tom Dean From owner-freebsd-questions@FreeBSD.ORG Tue May 22 20:16:12 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7C921065677 for ; Tue, 22 May 2012 20:16:12 +0000 (UTC) (envelope-from gmx@ross.cx) Received: from www81.your-server.de (www81.your-server.de [213.133.104.81]) by mx1.freebsd.org (Postfix) with ESMTP id 8331D8FC12 for ; Tue, 22 May 2012 20:16:12 +0000 (UTC) Received: from [188.108.239.192] (helo=michael-think) by www81.your-server.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.74) (envelope-from ) id 1SWvV5-00061F-GN; Tue, 22 May 2012 22:16:11 +0200 Content-Type: text/plain; charset=iso-8859-15; format=flowed; delsp=yes To: freebsd-questions@freebsd.org, "Jos Chrispijn" , "Michael Ross" References: <4FBBEC79.1000004@webrz.net> Date: Tue, 22 May 2012 22:16:06 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Michael Ross" Message-ID: In-Reply-To: User-Agent: Opera Mail/11.64 (Win32) X-Authenticated-Sender: gmx@ross.cx X-Virus-Scanned: Clear (ClamAV 0.97.3/14946/Tue May 22 15:45:25 2012) Cc: Subject: Re: Updating /src from command line X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 20:16:12 -0000 Am 22.05.2012, 21:59 Uhr, schrieb Michael Ross : > Am 22.05.2012, 21:43 Uhr, schrieb Jos Chrispijn : > >> I want to compile my kernel and I read that for this I need to have the >> complete /SRC tree installed. >> If I do this via sysinstall, I get either a display that the chosen >> server is not available or these are not available for FreeBSD 9. >> Is there a way to update /src by CVSUP or otherwise? >> >> thanks, >> Jos Chrispijn > > > I do it like this: > > Copy, read and modify > /usr/src/share/examples/cvsup/stable-supfile Sorry, that is /usr/share/examples/cvsup/stable-supfile of course. From owner-freebsd-questions@FreeBSD.ORG Tue May 22 20:45:20 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7275E106566B for ; Tue, 22 May 2012 20:45:20 +0000 (UTC) (envelope-from goksin.akdeniz@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id ED14B8FC14 for ; Tue, 22 May 2012 20:45:19 +0000 (UTC) Received: by bkvi18 with SMTP id i18so7289418bkv.13 for ; Tue, 22 May 2012 13:45:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :x-mailer:mime-version:content-type; bh=F2ZyhniPL6vOeiFzTEpDeMUHwOxVBQtTU/JOussDQhQ=; b=B8RhV185A9NARSdgI+GxKhQJwVu3PECHOD3OxceKoHoC0QOcwbasqXVS3DvNIpnLI9 N8o4zwbGDvkwgDynaqglvb6GTPDk0VOXViVs/9wfmsFj2ou+oWWgtSC8VgFUF9A8s83g K5TilALXb0YhMivjiWXh6+9dawPs0Xkl0zVP3dE5JGNkhoW09Zw6I2+E/zz8J0kVOJns ogPoTjC9GK7G7Yk8Z5uA98sAzcRKUsPwcLrIk/wPL86xY6aich8OUXYPXWtZlNJtuSM+ iIY2Kr3bRKCZ5ON4U3grGU5ng31XOLV0gwuywme5cPGmHFH39A/kRfUq5GDm0WMvu+hv jRQA== Received: by 10.204.155.131 with SMTP id s3mr10492317bkw.124.1337719518755; Tue, 22 May 2012 13:45:18 -0700 (PDT) Received: from localhost.elkotek ([78.163.23.47]) by mx.google.com with ESMTPS id e20sm34034474bkw.3.2012.05.22.13.45.16 (version=SSLv3 cipher=OTHER); Tue, 22 May 2012 13:45:17 -0700 (PDT) Date: Tue, 22 May 2012 23:45:10 +0300 From: =?ISO-8859-9?Q?G=F6k=FEin?= Akdeniz To: freebsd-questions@freebsd.org Message-Id: <20120522234510.a406941d.goksin.akdeniz@gmail.com> In-Reply-To: <4FBBF32D.9070505@dreamchaser.org> References: <4FBBF32D.9070505@dreamchaser.org> X-Mailer: Sylpheed 3.1.4 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Tue__22_May_2012_23_45_10_+0300_SR7HpGX7ovU..AXn" Subject: Re: openoffice on 9.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: goksin.akdeniz@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 20:45:20 -0000 --Signature=_Tue__22_May_2012_23_45_10_+0300_SR7HpGX7ovU..AXn Content-Type: text/plain; charset=ISO-8859-9 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello Gary Aitken, >=20 > 1. I'm assuming that since pkg_add looks for the tarball, it is=20 > supposed to exist. Is that a valid assumption? >=20 It is sort of. Have look at http://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-9-stable/All/ > > 2. Anyone know why the tarball isn't there? Should I be trying to > add something else? >=20 The OpenOffice.org package is a big one and consumes a lot of bandwith. Therefore some may not be available. Try to build OpenOffice.org from ports. It takes time, be patient. --=20 G=F6k=FEin Akdeniz --Signature=_Tue__22_May_2012_23_45_10_+0300_SR7HpGX7ovU..AXn Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQIcBAEBAgAGBQJPu/raAAoJEC4yIan56Tgwf8UQAKDd+1tZP3S/HpggSB4pDhWw 3wu+h2tLlmMQPoId95Wuse3DVlMqAmNrMqthUbm5vb3jhv+ZKcywPTkoQIVEUw9W hrWhUy8yFFUx4tUrNLkSFINWL/McG3Irmyj0NJ/MH/7lFsWJcXVfD8PIln9BKGMT 4QwzQ4cGvmxH9/L2GNXqwjQXSBLBqw95gJbFtPLf8mELYuW+U0d9KvWUhd30w005 lvVF1Sdw1WU+n+Cgb3VkrpNDS8sz0GDfRQvtb9VI7te8FDDAXh9M9ahHjKH0Pcxf fVf5hWHYo7nWKoa5SQ91DQpujFxy5OPPm3b29uHqqbHb4r1Xs8Ta7clE8dPfCPrr 4ElBOTYhVjukMdA1S36TJALBuqaT3guU42Clm08rR+OEAsboLIyQ9P16w8J4gt4V Ae4G47R9mJmT3WAFT7yPIE/lk7ohP8/45CeBBwYMHYF7jtZfJ1qzb2FBbl9wH1LG qI48/To2a4taydynNJLU9+40gvm7nzbHza7pqk0wbQHnbre8mMXP3+ah8u656T/C EwuJmowTzzNotxWhViEgYMxH5egJrN1LfwiW42B73e/I2sJfzxsFMosi/FJNRbHm 3bjhfTXqMBDzbPDoO3ze/PhAlOhfbk+6AlEBWotUrYDo/uqSeVZIiplnd1sF6/6U BXw0C9tQs4qtH15tZnex =6hn/ -----END PGP SIGNATURE----- --Signature=_Tue__22_May_2012_23_45_10_+0300_SR7HpGX7ovU..AXn-- From owner-freebsd-questions@FreeBSD.ORG Tue May 22 20:48:42 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A16731065670 for ; Tue, 22 May 2012 20:48:42 +0000 (UTC) (envelope-from Devin.Teske@fisglobal.com) Received: from mx1.fisglobal.com (mx1.fisglobal.com [199.200.24.190]) by mx1.freebsd.org (Postfix) with ESMTP id 644998FC08 for ; Tue, 22 May 2012 20:48:42 +0000 (UTC) Received: from pps.filterd (ltcfislmsgpa03 [127.0.0.1]) by ltcfislmsgpa03.fnfis.com (8.14.4/8.14.4) with SMTP id q4MKS98R005869; Tue, 22 May 2012 15:48:26 -0500 Received: from smtp.fisglobal.com ([10.132.206.15]) by ltcfislmsgpa03.fnfis.com with ESMTP id 150hut81v4-65 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Tue, 22 May 2012 15:48:26 -0500 Received: from dtwin (10.14.152.60) by smtp.fisglobal.com (10.132.206.15) with Microsoft SMTP Server (TLS) id 14.2.283.3; Tue, 22 May 2012 15:48:01 -0500 From: Sender: Devin Teske To: , References: <201205181149.q4IBndvU028665@hera.homer.att.com> <4FB64022.6010206@bananmonarki.se> <4FBB4B8C.3000806@bananmonarki.se> <4FBBCF11.3040007@dreamchaser.org> <4FBBF1B1.4050706@dreamchaser.org> In-Reply-To: <4FBBF1B1.4050706@dreamchaser.org> Date: Tue, 22 May 2012 13:48:06 -0700 Message-ID: <0ae301cd385c$31813370$94839a50$@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 14.0 Thread-Index: AQGZeMa+PEfFrJ70heYut2TA8KrlFgFpVNetAVWzTToBXJuycAFMxwLnAasgA9+XBSlX4A== Content-Language: en-us X-Originating-IP: [10.14.152.60] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.6.7580, 1.0.260, 0.0.0000 definitions=2012-05-22_05:2012-05-21, 2012-05-22, 1970-01-01 signatures=0 Cc: Subject: RE: hard link identification X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 20:48:42 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd- > questions@freebsd.org] On Behalf Of Gary Aitken > Sent: Tuesday, May 22, 2012 1:06 PM > To: freebsd-questions@freebsd.org > Subject: hard link identification > > Is there any way to tell if something is a hard link, other than > ls -i > of relevant files and seeing that the inode is the same? > or a better way? > > I was a bit confused when looking at /root/.cshrc and then discovering a > .cshrc in / as well. > ls -l quickly enumerates the link-count of items in the current working directory (displayed as the second column, by-default). For directories, the link-count is quite obviously the number of filesystem entities contained within. For files, the link-count is the number of links to the same file. If this number is higher than 1, then the file you're looking at is a hard-link (which is also indistinguishable from the original). -- Devin _____________ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you. From owner-freebsd-questions@FreeBSD.ORG Tue May 22 19:25:20 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC0351065670 for ; Tue, 22 May 2012 19:25:20 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 7D0F48FC12 for ; Tue, 22 May 2012 19:25:20 +0000 (UTC) Received: from mail8.sea5.speakeasy.net (mail8.sea5.speakeasy.net [69.17.117.53]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id CC645A7020C for ; Tue, 22 May 2012 15:25:19 -0400 (EDT) Received: (qmail 21544 invoked from network); 22 May 2012 19:25:19 -0000 Received: by simscan 1.4.0 ppid: 1342, pid: 15469, t: 0.1279s scanners: clamav: 0.88.2/m:52/d:13495 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail8.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 22 May 2012 19:25:19 -0000 Message-ID: <4FBBE821.7020908@speakeasy.org> Date: Tue, 22 May 2012 12:25:21 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBBD113.70304@speakeasy.org> In-Reply-To: <4FBBD113.70304@speakeasy.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail8.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 X-Mailman-Approved-At: Tue, 22 May 2012 21:05:54 +0000 Subject: Re: Nfscl X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 19:25:20 -0000 On 05/22/12 10:46, Thomas D. Dean wrote: I rebuilt the kernel with the new NFSxxxx options and it works. Tom Dean From owner-freebsd-questions@FreeBSD.ORG Tue May 22 21:06:22 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44194106566B for ; Tue, 22 May 2012 21:06:22 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id 028818FC08 for ; Tue, 22 May 2012 21:06:21 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4ML84Zc070244; Tue, 22 May 2012 16:08:04 -0500 (CDT) Date: Tue, 22 May 2012 16:08:04 -0500 (CDT) From: Robert Bonomi Message-Id: <201205222108.q4ML84Zc070244@mail.r-bonomi.com> To: freebsd-questions@freebsd.org, tomdean@speakeasy.org In-Reply-To: <4FBBF36F.9000804@speakeasy.org> Cc: Subject: Re: Using inb() and outb() X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 21:06:22 -0000 > From owner-freebsd-questions@freebsd.org Tue May 22 15:18:43 2012 > Date: Tue, 22 May 2012 13:13:35 -0700 > From: "Thomas D. Dean" > To: freebsd-questions@freebsd.org > Subject: Using inb() and outb() > > I have nanoBSD running a hardware control application. > > To do this, I need inb() and outb() functions. > > I an do this as root. However, it is better if none of the control > system is run as root. > > How do I allow these functions to one specific user? To do that, you would have to re-build a significant portion of the security controls of the O/S. Good luck. 'regular' users are simply -not- allowed to acces hardware I/O ports directly. Only the 'superuser' can do that. Thus, to use inb()/outb() the application must be running with EUID 0. No other options. If you don't want the application to run as root, The only other option is to write an actual 'device driver' -- which would execute as part of the kernel -- that provides the required functionality to the app, and does the actual hardware port IN/OUT operations iself, inside the driver. From owner-freebsd-questions@FreeBSD.ORG Tue May 22 21:24:31 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEC83106564A; Tue, 22 May 2012 21:24:31 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id 538FD8FC0C; Tue, 22 May 2012 21:24:30 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4MLQImN071457; Tue, 22 May 2012 16:26:18 -0500 (CDT) Date: Tue, 22 May 2012 16:26:18 -0500 (CDT) From: Robert Bonomi Message-Id: <201205222126.q4MLQImN071457@mail.r-bonomi.com> To: dteske@freebsd.org, freebsd-questions@freebsd.org, freebsd@dreamchaser.org In-Reply-To: <0ae301cd385c$31813370$94839a50$@freebsd.org> Cc: Subject: RE: hard link identification X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 21:24:31 -0000 wrote; > > For directories, the link-count is quite obviously the number of filesystem > entities contained within. That is *INCORRECT*. The link-count on a directory is the number of dir- ectory entries (file names) tht resolve to it, just as with any other file. The count starts at *TWO* -- one for the directory name itself, plus one for the '.' self-refernce 'in' that directory -- plus one for the '..' reference in each and every sub-directory that is in that directory, PLUS one (albeit rare) for any other hard-linked names that also resolve to that diretory. To wit: $ mkdir foo # 'ls -l foo' will show a link-count of 2 $ touch foo/bar # 'ls -l foo' will show a link-count of 2 $ mkdir foo/baz # 'ls -l foo' will show a link-count of 3 $ ln -s foo foo2 # 'ls -l foo' will show a link-count of 3 $ ln foo quux # 'ls -l foo' will show a link-count of 4 From owner-freebsd-questions@FreeBSD.ORG Tue May 22 21:25:44 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFF1F106564A for ; Tue, 22 May 2012 21:25:44 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 7F83F8FC1C for ; Tue, 22 May 2012 21:25:44 +0000 (UTC) Received: from mail8.sea5.speakeasy.net (mail8.sea5.speakeasy.net [69.17.117.53]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 2E709A70A65 for ; Tue, 22 May 2012 17:25:42 -0400 (EDT) Received: (qmail 2880 invoked from network); 22 May 2012 21:25:41 -0000 Received: by simscan 1.4.0 ppid: 11752, pid: 15305, t: 0.2721s scanners: clamav: 0.88.2/m:52/d:13495 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail8.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 22 May 2012 21:25:41 -0000 Message-ID: <4FBC0458.3060200@speakeasy.org> Date: Tue, 22 May 2012 14:25:44 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <201205222108.q4ML84Zc070244@mail.r-bonomi.com> In-Reply-To: <201205222108.q4ML84Zc070244@mail.r-bonomi.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail8.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Re: Using inb() and outb() X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 21:25:44 -0000 On 05/22/12 14:08, Robert Bonomi wrote: That is what I thought. The entire operation will have to run as root. Nothing will be non-root. Don't like that, but, it is nanoBSD and hardware control.... Tom Dean From owner-freebsd-questions@FreeBSD.ORG Tue May 22 21:27:53 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B8721065676 for ; Tue, 22 May 2012 21:27:53 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 4CA198FC0C for ; Tue, 22 May 2012 21:27:53 +0000 (UTC) Received: from mail7.sea5.speakeasy.net (mail7.sea5.speakeasy.net [69.17.117.52]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id D09E0A70800 for ; Tue, 22 May 2012 17:27:52 -0400 (EDT) Received: (qmail 22632 invoked from network); 22 May 2012 21:27:52 -0000 Received: by simscan 1.4.0 ppid: 32255, pid: 25799, t: 0.1264s scanners: clamav: 0.88.2/m:52/d:13513 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail7.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 22 May 2012 21:27:52 -0000 Message-ID: <4FBC04DB.8010108@speakeasy.org> Date: Tue, 22 May 2012 14:27:55 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail7.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Make and sys.mk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 21:27:53 -0000 I need to get away from sys.mk - no usr/share/mk. This is normally done with 'make -r' Is there a way to do it from within a Makefile? Tom Dean From owner-freebsd-questions@FreeBSD.ORG Tue May 22 21:33:32 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF08E1065672 for ; Tue, 22 May 2012 21:33:32 +0000 (UTC) (envelope-from www-data@loft5074.serverloft.eu) Received: from nws1.ispeed.it (loft5074.serverloft.eu [188.138.48.174]) by mx1.freebsd.org (Postfix) with ESMTP id 84A0F8FC19 for ; Tue, 22 May 2012 21:33:31 +0000 (UTC) Received: from nws1.ispeed.it (localhost.localdomain [127.0.0.1]) by nws1.ispeed.it (Postfix) with ESMTP id 3C19B194ECE2 for ; Tue, 22 May 2012 23:33:04 +0200 (CEST) Received: by nws1.ispeed.it (Postfix, from userid 33) id BF334194ECFC; Tue, 22 May 2012 23:32:24 +0200 (CEST) To: questions@freebsd.org From: Bob Sup LLC MIME-Version: 1.0 Content-Type: text/plain Message-Id: <20120522213224.BF334194ECFC@nws1.ispeed.it> Date: Tue, 22 May 2012 23:32:24 +0200 (CEST) Content-Transfer-Encoding: quoted-printable Cc: Subject: Product Inquiry!6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bobbriggs33@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 21:33:32 -0000 =0D Hello Sales,=0D =0D I will like to have your newly updated site,so that i can give you= the list of what i really want from your website. Also i need you to con= firm if you accept credit card orders and you can use FedEx or Ups to shi= p within United State=0D =0D Kindly reply back asap today.=0D Thanks=0D From owner-freebsd-questions@FreeBSD.ORG Tue May 22 23:02:32 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCD1F106564A for ; Tue, 22 May 2012 23:02:32 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 899F68FC0A for ; Tue, 22 May 2012 23:02:32 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4MN2UAM009691 for ; Tue, 22 May 2012 17:02:31 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBC1B06.6060102@dreamchaser.org> Date: Tue, 22 May 2012 17:02:30 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111228 Thunderbird/9.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Tue, 22 May 2012 17:02:31 -0600 (MDT) Subject: portsnap update won't update original /usr/ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 23:02:32 -0000 According to the handbook, one can do portsnap fetch portsnap update and the update will work with a previously created ports tree; I presume this includes one created during system install. However, when I attempted this, portsnap complained: /usr/ports was not created by portsnap. You must run 'portsnap extract' before running 'portsnap update'. Is there a way to use portsnap against this tree, or must I delete the existing /usr/ports and do an extract first? Thanks, Gary From owner-freebsd-questions@FreeBSD.ORG Tue May 22 23:39:31 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7B7A106566B for ; Tue, 22 May 2012 23:39:31 +0000 (UTC) (envelope-from www-data@loft5074.serverloft.eu) Received: from nws1.ispeed.it (loft5074.serverloft.eu [188.138.48.174]) by mx1.freebsd.org (Postfix) with ESMTP id 6BE398FC1E for ; Tue, 22 May 2012 23:39:31 +0000 (UTC) Received: from nws1.ispeed.it (localhost.localdomain [127.0.0.1]) by nws1.ispeed.it (Postfix) with ESMTP id 7C9E31ACE6DB for ; Wed, 23 May 2012 01:39:09 +0200 (CEST) Received: by nws1.ispeed.it (Postfix, from userid 33) id BF2E619CF72F; Wed, 23 May 2012 01:37:27 +0200 (CEST) To: questions@freebsd.org From: Bob Sup LLC MIME-Version: 1.0 Content-Type: text/plain Message-Id: <20120522233828.BF2E619CF72F@nws1.ispeed.it> Date: Wed, 23 May 2012 01:37:27 +0200 (CEST) Content-Transfer-Encoding: quoted-printable Cc: Subject: Product Inquiry! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bobbriggs33@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 23:39:31 -0000 =0D Hello Sales,=0D 1=0D I will like to have your newly updated site,so that i can give you= the list of what i really want from your website. Also i need you to con= firm if you accept credit card orders and you can use FedEx or Ups to shi= p within United State=0D =0D Kindly reply back asap today.=0D Thanks=0D From owner-freebsd-questions@FreeBSD.ORG Wed May 23 00:09:42 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2ADF4106566B for ; Wed, 23 May 2012 00:09:42 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id A80118FC08 for ; Wed, 23 May 2012 00:09:41 +0000 (UTC) Received: by wgbds11 with SMTP id ds11so6733359wgb.31 for ; Tue, 22 May 2012 17:09: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=Bw32FL3qT8xTdpgo/XEIw+LDOP8L2EjfXC42IoTRwuI=; b=QSsQ5SSziK6aihMqCafcC2QGMb3zax1xcdlRKKi2aBCNwkXVCHoUPH/Vhr1IKWaH7S UTPzlIGUd7DU92H59gUvrmLqc0qgreiKAwXtIIlDY0fiNBAPFaibcca38qa4rYcDW4T+ KLnRcO/FjAR0r9rE/9dD+UnANvqCkGdizK4Qc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding:x-gm-message-state; bh=Bw32FL3qT8xTdpgo/XEIw+LDOP8L2EjfXC42IoTRwuI=; b=Z6zR5E5Q2atNeyuV4MGlhS5DAHGrS0ef4rIp7dOh/jk/0ehsX+v6J1t/YPYigium+R kk4ih/DF/YunhxO0iBl3+f3LHOnMXVLQidD+946JPB0qnpgcgv2jkxKuuyEjgpuzQ5I7 +whEElUHofaS+zg0ZAvys9F0pfuzhodDkCGJKrZzzPhfAYlVBIku0OFQ7GU2vxJCSIRX OdxMVx1hw5t8VI1gfmpTrx2rIzJ5CEcfBMY0V4WQE8ghqhMPO3BFRuwON9t1RX3Xf1yW Q6fDB3iRg1N4hV8iCz2wx4fALxL6L6WRJh3yV2/EA8pJtToDCCBwM+4BF55qvS5M0MTj I83w== Received: by 10.180.81.36 with SMTP id w4mr39676930wix.16.1337731780079; Tue, 22 May 2012 17:09:40 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.85.202 with HTTP; Tue, 22 May 2012 17:09:09 -0700 (PDT) In-Reply-To: <4FBC0458.3060200@speakeasy.org> References: <201205222108.q4ML84Zc070244@mail.r-bonomi.com> <4FBC0458.3060200@speakeasy.org> From: Eitan Adler Date: Tue, 22 May 2012 17:09:09 -0700 Message-ID: To: "Thomas D. Dean" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQlfVF1vy8t/ZuZSG4bTw44BCxdqx43Lj9ePl7xqH7U+LuhSluVeOFzNItynb7ziw8F9XkJc Cc: freebsd-questions@freebsd.org Subject: Re: Using inb() and outb() X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 00:09:42 -0000 On 22 May 2012 14:25, Thomas D. Dean wrote: > On 05/22/12 14:08, Robert Bonomi wrote: > > That is what I thought. > > The entire operation will have to run as root. =C2=A0Nothing will be non-= root. Can you make a SUID helper which only does the inb/outb operations as root? --=20 Eitan Adler From owner-freebsd-questions@FreeBSD.ORG Wed May 23 01:04:23 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E6361065670 for ; Wed, 23 May 2012 01:04:23 +0000 (UTC) (envelope-from seoengine.ranking@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 129F78FC08 for ; Wed, 23 May 2012 01:04:22 +0000 (UTC) Received: by werg1 with SMTP id g1so5603233wer.13 for ; Tue, 22 May 2012 18:04: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=LeQVe88vyhv6mN2N/87cKogHxOtDF59Uo4U7OfAGUyw=; b=rOsSgVSeQZcuF/e9BiuJl810zjMEAxZlNl0iwhvFOwgO/5NzB58KNxuxAZK1vZBWtq qem9Qm+3MhOXMhd0caBT2yNcLsJEgphCsa1uBgbbNET8qhe660Lm1xb+9vmx3awYpQZC KCPHM9bWvYACZRo9rnoeo3L4uWpUFIs5lhHEsj9V4sJIJmwVUlNZCHm7mFdxnkJ8gv3F mrn8FyLYTGimIXs/e/PUqhpkDTfaZJzjSUpVPeLd3E6nBoCo1Wqd7pVsBkUEHHPRF5Rb jGtMf/yq8jS5IR9ijKiHdVuVexDLirf8s7Ur7vRA1nTXOlGUxr1jd/7xDOIr+y2t2X39 RtdA== MIME-Version: 1.0 Received: by 10.180.107.99 with SMTP id hb3mr40414443wib.0.1337735062055; Tue, 22 May 2012 18:04:22 -0700 (PDT) Received: by 10.216.65.195 with HTTP; Tue, 22 May 2012 18:04:22 -0700 (PDT) Date: Wed, 23 May 2012 06:34:22 +0530 Message-ID: From: Jay Plouffe To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Organic SEO - Freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 01:04:23 -0000 Freebsd.org Team, I thought you might like to know some of the reasons why you are not getting enough Social Media and Organic search engine traffic for Freebsd.org 1.Your website Freebsd.org is not ranking top in Google organic search for many competitive keyword phrases. 2. Your website profile is not available in most of the Social Media Websites. 3. Your site has 2120 Google 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. 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, *Jay Plouffe* *SEO Consultant* *(239) 205-3053* ------------------------------------------------------------------ *PS1*: This is onetime email and you may ask us to =93REMOVE=94 you from ou= r mailing list. *PS2*: I found your site from online advertising but did not click. PS3: We operate 24 x7. I will be happy to send you links to price list,money back guarantee, client rankings, client testimonials, =93How we are different from others?=94, and =93Why should you choose us?=94 on recei= ving a response from you. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 01:08:45 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C095A106566C for ; Wed, 23 May 2012 01:08:45 +0000 (UTC) (envelope-from FreeBSD@shaneware.biz) Received: from ipmail06.adl2.internode.on.net (ipmail06-adl2.internode.on.net [IPv6:2001:44b8:8060:ff02:300:1:2:6]) by mx1.freebsd.org (Postfix) with ESMTP id 149278FC14 for ; Wed, 23 May 2012 01:08:44 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AtsEAIw3vE/LevdH/2dsb2JhbABDsFWEUYIVAQEFOEEQCxgJEwMPCQMCAQIBRRMBBwEBiAm7D4sIgh+DHgOIQZxLgno Received: from ppp247-71.static.internode.on.net (HELO leader.local) ([203.122.247.71]) by ipmail06.adl2.internode.on.net with ESMTP; 23 May 2012 10:38:42 +0930 Message-ID: <4FBC37B4.7060908@ShaneWare.Biz> Date: Wed, 23 May 2012 10:34:52 +0930 From: Shane Ambler User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120505 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd@dreamchaser.org References: <4FBC1B06.6060102@dreamchaser.org> In-Reply-To: <4FBC1B06.6060102@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: portsnap update won't update original /usr/ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 01:08:45 -0000 On 23/05/2012 08:32, Gary Aitken wrote: > According to the handbook, one can do portsnap fetch portsnap update > and the update will work with a previously created ports tree; I > presume this includes one created during system install. > > However, when I attempted this, portsnap complained: /usr/ports was > not created by portsnap. You must run 'portsnap extract' before > running 'portsnap update'. > > Is there a way to use portsnap against this tree, or must I delete > the existing /usr/ports and do an extract first? > 'portsnap extract' will write over whatever is in /usr/ports so you don't have to delete what is there. Any distfiles or packages will remain intact. You need to start with 'portsnap extract' so that portsnap gets a reference point to use for updates - which only adds changes since last update From owner-freebsd-questions@FreeBSD.ORG Wed May 23 01:25:46 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 115D1106564A for ; Wed, 23 May 2012 01:25:46 +0000 (UTC) (envelope-from olivares14031@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id BC9EA8FC0C for ; Wed, 23 May 2012 01:25:45 +0000 (UTC) Received: by yenl8 with SMTP id l8so7542096yen.13 for ; Tue, 22 May 2012 18:25:45 -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:content-transfer-encoding; bh=tneAyWuWJqOvNUGBbqWcMEDGELnFimfG/mqIvOX5Q+o=; b=uHpL4bN9TRh9GyoleKzkJJlqf8uSZVmC96Wt4LUjTnvRqtbY76uZZjD4mOXidEL0ni OyfGYK+fWhNnAbuPDK0brUNqZxvQ+Xn/Sb7oPLT0qXKrL2u49yG0rN/OkceiyDahAFI+ 5dEmi7ZHnyK+cZtDBXh/bsdkDTQTyaPhBZnhQcch3hqKI24jaIf5LDr+XvkZ4WGTNVMk 8nLHNSljdLBt4ugKHjQj2IDepKEKp6XfywfLc71OwDHzQCotzhFH08GnjCbizNgr092e yOyv7tPJIFZBISwnGMQKThZQpnqs/CiW8gIUDSsA3tZDCJzhLH7qJrm4gO4CHrP8kbfX cPTQ== MIME-Version: 1.0 Received: by 10.50.187.233 with SMTP id fv9mr3116287igc.59.1337736344764; Tue, 22 May 2012 18:25:44 -0700 (PDT) Received: by 10.50.112.4 with HTTP; Tue, 22 May 2012 18:25:44 -0700 (PDT) In-Reply-To: References: Date: Tue, 22 May 2012 20:25:44 -0500 Message-ID: From: Antonio Olivares To: FreeBSD Questions Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: no X after updating ports [Intel i945GME] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 01:25:46 -0000 > Dear folks, > > I have an acer-aspire 1 netbook running FreeBSD 9.0 i386. =C2=A0It was > working beautifully, but after todays updates, X no longer works. > > On screen I have > > drm0: on vgapci0 > info: =C2=A0[drm] AGP at 0x20000000 256MB > info: =C2=A0[drm] Initialized i915 1.6.0 20080730 > > I have also: > xfsettingsd: =C2=A0Fatal IO error 35 (Resource temporarily unavailable) o= n > X server :0. > xfce4-settings-helper: =C2=A0Fatal IO error 35 (Resource temporarily > unavailable) on X server :0. > xfwm4: =C2=A0Fatal IO error 35 (Resource temporarily unavailable) on X se= rver :0. > Thunar: =C2=A0Fatal IO error 35 (Resource temporarily unavailable) on X s= erver :0. > wrapper: =C2=A0Fatal IO error 35 (Resource temporarily unavailable) on X = server :0. > xfce4-panel: =C2=A0Fatal IO error 35 (Resource temporarily unavailable) o= n > X server :0. > gkrellm: =C2=A0Fatal IO error 0 (No error: =C2=A00) on X server :0. > running 'ssh-agent -s -k' > unset SSH_AUTH_SOCK; > unset SSH_AGENT_PID; > echo Agent pid 1785 killed; > xinit connection to X server lost > > waiting for X server to shut down xfdesktop: =C2=A0Fatal IO error 2 (No > such file or directory) on X server :0.0. > > > Segmentation fault: =C2=A011 at address 0x10 > > Fatal server errror: > Caught signal 11 (Segmentation fault: =C2=A011). Server aborting > > updates installed via portmaster: > > fontconfig-2.9.0,1 > gdk-pixbuf-2.23.5_2 > gtk-2.24.6_1 > > also cairo went from cairo-1.10.2_3,1 to cairo-1.12.2,1 > > Any advice, comments or suggestions are greatly appreciated. > > Best Regards, > > > Antonio Dear folks, I have used # Xorg -configure to create an xorg.conf file and copied it over to /etc/X11/xorg.conf. I changed intel to vesa and I am running X. I have found Xorg.0.log the old one where I get error. See below =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D acer-aspire-1# cat Xorg.0.log.old X.Org X Server 1.7.7 Release Date: 2010-05-04 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 9.0-RELEASE i386 Current Operating System: FreeBSD acer-aspire-1 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 Build Date: 28 April 2012 05:51:53AM Current version of pixman: 0.24.2 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (=3D=3D) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (=3D=3D) Log file: "/var/log/Xorg.0.log", Time: Tue May 22 20:16:26 2012 (=3D=3D) Using config file: "/etc/X11/xorg.conf" (=3D=3D) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (=3D=3D) Not automatically adding devices (=3D=3D) Not automatically enabling devices (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (II) Loader magic: 0x81dcfc0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 6.0 X.Org XInput driver : 7.0 X.Org Server Extension : 2.0 (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0:0:2:0) 8086:27ae:1025:019c Intel Corporation Mobile 945GSE Express Integrated Graphics Controller rev 3, Mem @ 0x36280000/524288, 0x20000000/268435456, 0x36300000/262144, I/O @ 0x000050f0/8, BIOS @ 0x????????/65536 (--) PCI: (0:0:2:1) 8086:27a6:1025:019c Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0x36200000/524288 (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) "dri2" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions/libextmod.so (II) Module extmod: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions/librecord.so (II) Module record: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions/libdbe.so (II) Module dbe: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so (II) Module glx: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.0.0 ABI class: X.Org Server Extension, version 2.0 (=3D=3D) AIGLX disabled (II) Loading extension GLX (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions/libdri.so (II) Module dri: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "dri2" (II) Loading /usr/local/lib/xorg/modules/extensions/libdri2.so (II) Module dri2: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.1.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DRI2 (II) LoadModule: "intel" (II) Loading /usr/local/lib/xorg/modules/drivers/intel_drv.so (II) Module intel: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 2.7.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 6.0 (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input/mouse_drv.so (II) Module mouse: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.7.1 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 7.0 (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input/kbd_drv.so (II) Module kbd: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.6.1 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 7.0 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, IGD_GM, IGD_G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel=EF=BF=BD=EF=BF=BD GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules/libvgahw.so (II) Module vgahw: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 0.1.0 ABI class: X.Org Video Driver, version 6.0 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (=3D=3D) intel(0): Depth 24, (--) framebuffer bpp 32 (=3D=3D) intel(0): RGB weight 888 (=3D=3D) intel(0): Default visual is TrueColor (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GME (--) intel(0): Chipset: "945GME" (--) intel(0): Linear framebuffer at 0x20000000 (--) intel(0): IO registers at addr 0x36280000 (=3D=3D) intel(0): Using EXA for acceleration (II) intel(0): 2 display pipes available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA using monitor section Monitor0 (II) intel(0): Output LVDS has no monitor section (II) intel(0): I2C bus "LVDSDDC_C" initialized. (II) intel(0): Attempting to determine panel fixed mode. (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): EDID vendor "CMO", prod id 4100 (=3D=3D) intel(0): Write-combining range (0xa0000,0x10000) was already clea= r (II) intel(0): Resizable framebuffer: not available (1 3) (II) intel(0): EDID vendor "CMO", prod id 4100 (II) intel(0): Output VGA disconnected (II) intel(0): Output LVDS connected (II) intel(0): Using exact sizes for initial modes (II) intel(0): Output LVDS using initial mode 1024x600 (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stat= ed. (=3D=3D) intel(0): Write-combining range (0xa0000,0x10000) was already clea= r (II) intel(0): detected 256 kB GTT. (II) intel(0): detected 7932 kB stolen memory. (=3D=3D) intel(0): video overlay key set to 0x101fe (=3D=3D) intel(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules/libfb.so (II) Module fb: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules/libexa.so (II) Module exa: vendor=3D"X.Org Foundation" compiled for 1.7.7, module version =3D 2.5.0 ABI class: X.Org Video Driver, version 6.0 (II) intel(0): Comparing regs from server start up to After PreInit (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a (WW) intel(0): PP_STATUS before: on, ready, sequencing idle (WW) intel(0): PP_STATUS after: on, ready, sequencing on (=3D=3D) Depth 24 pixmap format is 32 bpp (II) intel(0): Kernel reported 112640 total, 0 used (II) intel(0): I830CheckAvailableMemory: 450560 kB available (WW) intel(0): DRI2 requires UXA drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: drmOpenMinor returns 11 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. (II) intel(0): [drm] framebuffer mapped by ddx driver (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): X context handle =3D 0x2 (II) intel(0): [drm] installed DRM signal handler (**) intel(0): Framebuffer compression enabled (**) intel(0): Tiling enabled (=3D=3D) intel(0): VideoRam: 262144 KB (II) intel(0): Attempting memory allocation with tiled buffers. (II) intel(0): Tiled allocation successful. (II) intel(0): [drm] Registers =3D 0x10000000 (II) intel(0): [drm] ring buffer =3D 0x30000000 (II) intel(0): [drm] mapped front buffer at 0x21000000, handle =3D 0x400000= 00 (II) intel(0): [drm] mapped back buffer at 0x22000000, handle =3D 0x5000000= 0 (II) intel(0): [drm] mapped depth buffer at 0x22400000, handle =3D 0x600000= 00 (II) intel(0): [drm] mapped classic textures at 0x22800000, handle =3D 0x70= 000000 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 (II) intel(0): [dri] visual configs initialized (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0= 000 (=3D=3D) intel(0): Write-combining range (0xa0000,0x10000) was already clea= r (II) EXA(0): Offscreen pixmap area of 12582912 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (=3D=3D) intel(0): Backing store disabled (=3D=3D) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): [DRI] installation complete (WW) intel(0): drmDropMaster failed: Unknown error: -1 (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x007bf000 (pgoffset 1983= ) (II) intel(0): xf86BindGARTMemory: bind key 16 at 0x00e2b000 (pgoffset 3627= ) (II) intel(0): xf86BindGARTMemory: bind key 17 at 0x01000000 (pgoffset 4096= ) (II) intel(0): xf86BindGARTMemory: bind key 18 at 0x01400000 (pgoffset 5120= ) (II) intel(0): xf86BindGARTMemory: bind key 19 at 0x02000000 (pgoffset 8192= ) (II) intel(0): xf86BindGARTMemory: bind key 20 at 0x02400000 (pgoffset 9216= ) (II) intel(0): xf86BindGARTMemory: bind key 21 at 0x02800000 (pgoffset 1024= 0) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x0061ffff: compressed frame buffer (6144 kB, 0x000000001f820000 physical ) (II) intel(0): 0x00620000-0x00620fff: compressed ll buffer (4 kB, 0x000000001fe20000 physical ) (II) intel(0): 0x00621000-0x0062afff: HW cursors (40 kB, 0x000000001fe21000 physical ) (II) intel(0): 0x0062b000-0x00e2afff: fake bufmgr (8192 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00e2b000-0x00e2bfff: overlay registers (4 kB, 0x000000001d581000 physical ) (II) intel(0): 0x01000000-0x013fffff: front buffer (4096 kB) X tiled (II) intel(0): 0x01400000-0x01ffffff: exa offscreen (12288 kB) (II) intel(0): 0x02000000-0x023fffff: back buffer (4096 kB) X tiled (II) intel(0): 0x02400000-0x027fffff: depth buffer (4096 kB) X tiled (II) intel(0): 0x02800000-0x047fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (II) intel(0): using SSC reference clock of 96 MHz (II) intel(0): Selecting standard 18 bit TMDS pixel format. (II) intel(0): Output configuration: (II) intel(0): Pipe A is off (II) intel(0): Display plane A is now disabled and connected to pipe A. (II) intel(0): Pipe B is on (II) intel(0): Display plane B is now enabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output LVDS is connected to pipe B (II) intel(0): [drm] dma control initialized, using IRQ 16 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled messa= ge. (=3D=3D) intel(0): DPMS enabled (=3D=3D) intel(0): Intel XvMC decoder disabled (II) intel(0): Set up textured video (II) intel(0): Set up overlay video (II) intel(0): direct rendering: XF86DRI Enabled (--) RandR disabled (II) Initializing built-in extension Generic Event Extension (II) Initializing built-in extension SHAPE (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension BIG-REQUESTS (II) Initializing built-in extension SYNC (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XC-MISC (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so (II) GLX: Initialized DRISWRAST GL provider for screen 0 (II) intel(0): Setting screen physical size to 270 x 158 (WW) Mouse0: No Device specified, looking for one... (II) Mouse0: Setting Device option to "/dev/sysmouse" (--) Mouse0: Device: "/dev/sysmouse" (=3D=3D) Mouse0: Protocol: "Auto" (**) Option "CorePointer" (**) Mouse0: always reports core events (**) Option "Device" "/dev/sysmouse" (=3D=3D) Mouse0: Emulate3Buttons, Emulate3Timeout: 50 (**) Option "ZAxisMapping" "4 5 6 7" (**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7 (**) Mouse0: Buttons: 11 (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE) (**) Mouse0: (accel) keeping acceleration scheme 1 (**) Mouse0: (accel) acceleration profile 0 (II) Mouse0: SetupAuto: hw.iftype is 4, hw.model is 0 (II) Mouse0: SetupAuto: protocol is SysMouse (**) Option "CoreKeyboard" (**) Keyboard0: always reports core events (**) Option "Protocol" "standard" (**) Option "XkbRules" "base" (**) Option "XkbModel" "pc105" (**) Option "XkbLayout" "us" (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD) (II) intel(0): EDID vendor "CMO", prod id 4100 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1024x600"x0.0 48.08 1024 1089 1133 1264 600 604 609 634 -hsync -vsync (38.0 kHz) (II) intel(0): EDID vendor "CMO", prod id 4100 Segmentation fault: 11 at address 0x10 Fatal server error: Caught signal 11 (Segmentation fault: 11). Server aborting Please consult the The X.Org Foundation support at http://wiki.x.org for help. Please also check the log file at "/var/log/Xorg.0.log" for additional information. (II) UnloadModule: "mouse" (II) UnloadModule: "kbd" (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) intel(0): xf86UnbindGARTMemory: unbind key 16 (II) intel(0): xf86UnbindGARTMemory: unbind key 17 (II) intel(0): xf86UnbindGARTMemory: unbind key 18 (II) intel(0): xf86UnbindGARTMemory: unbind key 19 (II) intel(0): xf86UnbindGARTMemory: unbind key 20 (II) intel(0): xf86UnbindGARTMemory: unbind key 21 (WW) intel(0): drmDropMaster failed: Unknown error: -1 acer-aspire-1# Thanks and sorry for asking again, but if I need to try newer ports I am willing to take the risk(s). Regards, Antonio From owner-freebsd-questions@FreeBSD.ORG Wed May 23 01:27:53 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B77AB106567A for ; Wed, 23 May 2012 01:27:53 +0000 (UTC) (envelope-from FreeBSD@shaneware.biz) Received: from ipmail06.adl2.internode.on.net (ipmail06-adl2.internode.on.net [IPv6:2001:44b8:8060:ff02:300:1:2:6]) by mx1.freebsd.org (Postfix) with ESMTP id 3BFD98FC08 for ; Wed, 23 May 2012 01:27:53 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AtoEAFs8vE/LevdH/2dsb2JhbABDsFWEUYIVAQEFOEEQCxgJExIPAkYGDQEHAQGICbsgiwiFPQOIQZxLgno Received: from ppp247-71.static.internode.on.net (HELO leader.local) ([203.122.247.71]) by ipmail06.adl2.internode.on.net with ESMTP; 23 May 2012 10:57:52 +0930 Message-ID: <4FBC3C31.30406@ShaneWare.Biz> Date: Wed, 23 May 2012 10:54:01 +0930 From: Shane Ambler User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120505 Thunderbird/12.0.1 MIME-Version: 1.0 To: "Chris Brennan (lists)" References: <20120520104100.840fd1e7ddf3096c27520885@xaerolimit.net> In-Reply-To: <20120520104100.840fd1e7ddf3096c27520885@xaerolimit.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: ZFS mounting order X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 01:27:53 -0000 On 21/05/2012 00:11, Chris Brennan (lists) wrote: > Greetings! > > I have a FreeBSD 9 system with 3 different ZFS pools on it. I am > booting from a ro CF Card w/o any major issues, the problem I am > encountering is that zroot needs to be mounted at boot first, because > it contains /usr, zhome and tank contain other various sub-partitions > of /usr. > > Also, zroot causes me a lot of problems when I try to do "zpool > import", when zpool gets to probing zroot, I get g_vfs errors printed > to the console and the hacnine hangs till I reset it (which is > obviously not acceptable behavior.) I was able to get around this when > booting to my cf card by making / ro, which was my intention all along > for that media.) I suspect this happens because there is a on that > volume that is trying to replace something on / on either the USB boot > img or on my CF card and this might be causing either to freak out. > > So I dunno what to do to get this working the way it should and some > guidence would be greatly appreciated! > Sounds like something I came across and haven't gathered more details to submit a pr yet. I think there is a problem when two zpools have the same mountpoint - either / or legacy or one of each that prevents startup. Also zfs filesystems with matching mountpoints appear to mount together and cause issues, not sure if this extends to existing ufs mount points. Check the mountpoint settings on each filesystem 'zfs get mountpoint' will list them all. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 01:30:52 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0DED6106564A for ; Wed, 23 May 2012 01:30:52 +0000 (UTC) (envelope-from mueller23@insightbb.com) Received: from mail.insightbb.com (smtp2.insight.synacor.com [208.47.185.24]) by mx1.freebsd.org (Postfix) with ESMTP id B30138FC14 for ; Wed, 23 May 2012 01:30:51 +0000 (UTC) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.1 cv=wrhXgJ9nkwt8TTMNKhvCqF8fuZ+h8jNBlvD3crutgKE= c=1 sm=0 a=NKak1Zy_U9wA:10 a=FKkrIqjQGGEA:10 a=4akNS2quZTYA:10 a=jLN7EqiLvroA:10 a=IkcTkHD0fZMA:10 a=0wQVMjYSAAAA:8 a=6I5d2MoRAAAA:8 a=38fVbI_EPPiBvGugP70A:9 a=QEXdDO2ut3YA:10 a=hWxbGAk4Mo4A:10 a=SV7veod9ZcQA:10 a=6HS/Esr6SxOSn4gf+UdElA==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp02.insight.synacor.com header.from=mueller23@insightbb.com; sender-id=softfail Authentication-Results: smtp02.insight.synacor.com smtp.mail=mueller23@insightbb.com; spf=softfail; sender-id=softfail Received-SPF: softfail (smtp02.insight.synacor.com: transitional domain insightbb.com does not designate 10.51.1.65 as permitted sender) Received: from [10.51.1.65] ([10.51.1.65:40692] helo=md03.insight.synacor.com) by mail.insightbb.com (envelope-from ) (ecelerity 2.2.2.40 r(29895/29896)) with ESMTP id 1B/A4-04805-4CD3CBF4; Tue, 22 May 2012 21:30:45 -0400 Date: Tue, 22 May 2012 21:30:44 -0400 (EDT) From: Thomas Mueller To: freebsd@dreamchaser.org Message-ID: <1800315639.3547775.1337736644930.JavaMail.root@md03.insight.synacor.com> In-Reply-To: <4FBC1B06.6060102@dreamchaser.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [74.134.26.53] X-Mailer: Zimbra 6.0.8_GA_2685 (zclient/6.0.8_GA_2685) Cc: freebsd-questions@freebsd.org Subject: Re: portsnap update won't update original /usr/ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 01:30:52 -0000 ----- Original Message ----- From: Gary Aitken To: freebsd-questions@freebsd.org Sent: Tue, 22 May 2012 19:02:30 -0400 (EDT) Subject: portsnap update won't update original /usr/ports According to the handbook, one can do portsnap fetch portsnap update and the update will work with a previously created ports tree; I presume this includes one created during system install. However, when I attempted this, portsnap complained: /usr/ports was not created by portsnap. You must run 'portsnap extract' before running 'portsnap update'. Is there a way to use portsnap against this tree, or must I delete the existing /usr/ports and do an extract first? Thanks, Gary ---- My response: ---- I screwed up this way too, when I downloaded the USB memstick image for FreeBSD 9.0_BETA1 and later, BETA2, I installed the ports from that, which worked to my disadvantage when I later ran "portsnap fetch update". I wound up deleting /usr/ports/* and starting fresh, may not necessarily have had to delete the ports tree. But now it works. Now I wonder if it's feasible to switch between "portsnap fetch update" and csup , or if it's strictly one or the other. I am at webmail interface, which strongly favors top-posting over bottom-posting; feel more comfortable with vi editor. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 02:27:43 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54DA4106566C for ; Wed, 23 May 2012 02:27:43 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 224668FC12 for ; Wed, 23 May 2012 02:27:43 +0000 (UTC) Received: from mail4.sea5.speakeasy.net (mail4.sea5.speakeasy.net [69.17.117.48]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 3F575A7354E for ; Tue, 22 May 2012 22:27:42 -0400 (EDT) Received: (qmail 15137 invoked from network); 23 May 2012 02:27:41 -0000 Received: by simscan 1.4.0 ppid: 29156, pid: 4098, t: 0.3353s scanners: clamav: 0.88.2/m:52/d:10739 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail4.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2012 02:27:41 -0000 Message-ID: <4FBC4B20.8070100@speakeasy.org> Date: Tue, 22 May 2012 19:27:44 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <201205222108.q4ML84Zc070244@mail.r-bonomi.com> <4FBC0458.3060200@speakeasy.org> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail4.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Re: Using inb() and outb() X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 02:27:43 -0000 On 05/22/12 17:09, Eitan Adler wrote: > On 22 May 2012 14:25, Thomas D. Dean wrote: >> On 05/22/12 14:08, Robert Bonomi wrote: >> >> That is what I thought. >> >> The entire operation will have to run as root. Nothing will be non-root. > > Can you make a SUID helper which only does the inb/outb operations as root? > I am planing to move the higher level functions to a driver. I really want a userland interface to the process. Tom Dean From owner-freebsd-questions@FreeBSD.ORG Wed May 23 02:52:05 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7010106566C for ; Wed, 23 May 2012 02:52:05 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id 653028FC12 for ; Wed, 23 May 2012 02:52:05 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4N2rsdN078363; Tue, 22 May 2012 21:53:54 -0500 (CDT) Date: Tue, 22 May 2012 21:53:54 -0500 (CDT) From: Robert Bonomi Message-Id: <201205230253.q4N2rsdN078363@mail.r-bonomi.com> To: freebsd-questions@freebsd.org, tomdean@speakeasy.org In-Reply-To: <4FBC4B20.8070100@speakeasy.org> Cc: Subject: Re: Using inb() and outb() X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 02:52:05 -0000 > From owner-freebsd-questions@freebsd.org Tue May 22 21:30:21 2012 > Date: Tue, 22 May 2012 19:27:44 -0700 > From: "Thomas D. Dean" > To: freebsd-questions@freebsd.org > Subject: Re: Using inb() and outb() > > On 05/22/12 17:09, Eitan Adler wrote: > > On 22 May 2012 14:25, Thomas D. Dean wrote: > >> On 05/22/12 14:08, Robert Bonomi wrote: > >> > >> That is what I thought. > >> > >> The entire operation will have to run as root. Nothing will be non-root. > > > > Can you make a SUID helper which only does the inb/outb operations as root? > > > > I am planing to move the higher level functions to a driver. > > I really want a userland interface to the process. It just occured to me -- you could do a 'daemon' process that ran as the superuser, and provided the hardware-level services to a non-root client via, say, RPC, or a bare 'socket' ('unix' or 'ip') connection. Doing the I/O via RPC would be 'interesting', in that the 'device' could be physically connected to one machine (almost an 'embedded'-class micro- controller), while the vast majority of the 'control progrm' could run on an entirely different machine. If you're up to doing the device-driver coding, it is a =better= solution, because then you can use the filesystem access-control mechanisms to limit access to the 'device'. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 04:00:12 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9303D106566B for ; Wed, 23 May 2012 04:00:12 +0000 (UTC) (envelope-from lars@larseighner.com) Received: from mail.team1internet.com (mail.team1internet.com [216.110.13.10]) by mx1.freebsd.org (Postfix) with ESMTP id 6C6AE8FC08 for ; Wed, 23 May 2012 04:00:12 +0000 (UTC) Received: from larseighner.com (unknown [216.110.13.78]) by mail.team1internet.com (Postfix) with SMTP id A07F216B4B0 for ; Tue, 22 May 2012 23:00:05 -0500 (CDT) Received: by larseighner.com (nbSMTP-1.00) for uid 1001 lars@larseighner.com; Tue, 22 May 2012 22:58:45 -0500 (CDT) Date: Tue, 22 May 2012 22:58:39 -0500 (CDT) From: Lars Eighner X-X-Sender: lars@noos.6dollardialup.com To: freebsd-questions@freebsd.org 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 Subject: Connect to Clear hub modem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 04:00:12 -0000 This is NOT a wireless question. I am running FreeBSD 8.3-p1. I want to connect to Clear Wireless Internet. I know I cannot do this with a Clear dongle, because Clear uses WiMax which is not supported. Instead I have a Clear hub modem. I want to connect by ethernet to it by wire. I get this from ifconfig: re0: flags=8802 metric 0 mtu 1500 options=209b ether 40:61:86:e9:96:0e media: Ethernet autoselect (100baseTX ) status: active But I don't have a clue what to do from here. The hub is supposed to have a web page at (imaginary address) 192.168.15.1, but I haven't been able to raise it. The handbook has only a couple of references to ethernet, neither of which seem to apply here, and seem to be from the point of view of setting up a hub server, but the hub is more or less a black box to me. If anyone has already done this, please explain -- slowly and loudly. Oh, yeah, Clear Customer Service is strictly for the entertainment of masochists. -- Lars Eighner http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-questions@FreeBSD.ORG Wed May 23 04:54:07 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E130D1065670 for ; Wed, 23 May 2012 04:54:07 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 6F42B8FC18 for ; Wed, 23 May 2012 04:54:07 +0000 (UTC) Received: from mail1.sea5.speakeasy.net (mail1.sea5.speakeasy.net [69.17.117.39]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id AC76DA712B3 for ; Wed, 23 May 2012 00:54:06 -0400 (EDT) Received: (qmail 28312 invoked from network); 23 May 2012 04:54:06 -0000 Received: by simscan 1.4.0 ppid: 27831, pid: 11621, t: 0.1565s scanners: clamav: m: Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail1.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2012 04:54:05 -0000 Message-ID: <4FBC6D71.7080808@speakeasy.org> Date: Tue, 22 May 2012 21:54:09 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <201205230253.q4N2rsdN078363@mail.r-bonomi.com> In-Reply-To: <201205230253.q4N2rsdN078363@mail.r-bonomi.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail1.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Re: Using inb() and outb() X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 04:54:08 -0000 On 05/22/12 19:53, Robert Bonomi wrote: I implemented a RPC system at SLAC - actually got RPC numbers from Sun! But, it is slow. Unless it is located far away (two miles at SLAC), it is much faster to do it with a driver, etc. Tom Dean From owner-freebsd-questions@FreeBSD.ORG Wed May 23 05:21:44 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D92261065670 for ; Wed, 23 May 2012 05:21:44 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from nk11p00mm-asmtp005.mac.com (nk11p00mm-asmtp005.mac.com [17.158.161.4]) by mx1.freebsd.org (Postfix) with ESMTP id BB1E28FC1C for ; Wed, 23 May 2012 05:21:44 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from [17.153.21.164] (unknown [17.153.21.164]) by nk11p00mm-asmtp005.mac.com (Oracle Communications Messaging Server 7u4-23.01(7.0.4.23.0) 64bit (built Aug 10 2011)) with ESMTPSA id <0M4G009AJK3YJS30@nk11p00mm-asmtp005.mac.com> for freebsd-questions@freebsd.org; Wed, 23 May 2012 04:21:37 +0000 (GMT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.7.7724,1.0.260,0.0.0000 definitions=2012-05-23_01:2012-05-23, 2012-05-22, 1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=6.0.2-1012030000 definitions=main-1205220373 From: Chuck Swiger In-reply-to: Date: Tue, 22 May 2012 21:21:33 -0700 Message-id: References: To: Lars Eighner X-Mailer: Apple Mail (2.1084) Cc: freebsd-questions@freebsd.org Subject: Re: Connect to Clear hub modem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 05:21:44 -0000 On May 22, 2012, at 8:58 PM, Lars Eighner wrote: > But I don't have a clue what to do from here. Try running 'dhclient'. If that works, add this to /etc/rc.conf: ifconfig_re0="DHCP" > The hub is supposed to have a web page at (imaginary address) 192.168.15.1, > but I haven't been able to raise it. If the above doesn't work, try: ifconfig re0 inet 192.168.15.2 netmask 255.255.255.0 route add default 192.168.15.1 Regards, -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Wed May 23 05:32:54 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8408A1065670 for ; Wed, 23 May 2012 05:32:54 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id 400008FC08 for ; Wed, 23 May 2012 05:32:54 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4N5YhcB083259; Wed, 23 May 2012 00:34:43 -0500 (CDT) Date: Wed, 23 May 2012 00:34:43 -0500 (CDT) From: Robert Bonomi Message-Id: <201205230534.q4N5YhcB083259@mail.r-bonomi.com> To: freebsd-questions@freebsd.org, luvbeastie@larseighner.com In-Reply-To: Cc: Subject: Re: Connect to Clear hub modem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 05:32:54 -0000 > From owner-freebsd-questions@freebsd.org Tue May 22 23:03:03 2012 > Date: Tue, 22 May 2012 22:58:39 -0500 (CDT) > From: Lars Eighner > To: freebsd-questions@freebsd.org > Subject: Connect to Clear hub modem > > > This is NOT a wireless question. > > I am running FreeBSD 8.3-p1. > > I want to connect to Clear Wireless Internet. I know I cannot do this with > a Clear dongle, because Clear uses WiMax which is not supported. > > Instead I have a Clear hub modem. I want to connect by ethernet to it by > wire. > > I get this from ifconfig: > > re0: flags=8802 metric 0 mtu 1500 > options=209b > ether 40:61:86:e9:96:0e > media: Ethernet autoselect (100baseTX ) > status: active > > But I don't have a clue what to do from here. > > The hub is supposed to have a web page at (imaginary address) 192.168.15.1, > but I haven't been able to raise it. > > The handbook has only a couple of references to ethernet, neither of which > seem to apply here, and seem to be from the point of view of setting up a > hub server, but the hub is more or less a black box to me. > > If anyone has already done this, please explain -- slowly and loudly. If the 'imaginary' address you gave above, is really something other than '192.168.5.1', substitute the actual first 3 parts of the 'real' address for '192.168.5' everywhere below. and the actual 4th part for the .1 address. This will be a several step process. Some of the things are 'just temporary', so you can see how to do subsequent things. First: use the 'ifconfig' command to set an IP addreess for your machine, so that you can 'see' what the Clear hub configuration is. ifconfig re0 192.168.5.2 netmask 255.255.255.0 Also, just for grins, we'll set up a 'default' route, to see if we can see the 'world'. route add default 192.168.5.1 Now, fire up a web browser, and enter the 'imaginary' webserver address in the browser's 'address' space. hit the enter key. Tell us what you get, and we can proceed from there. *Probably* just enabling DHCP in /etc/rc.conf, on the 're' interface (that is, adding the following line to that file): ifconfig_re="DHCP" And re-booting is all you'll need. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 05:57:50 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B091106566C; Wed, 23 May 2012 05:57:50 +0000 (UTC) (envelope-from venkatduvvuru.ml@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2D9D38FC15; Wed, 23 May 2012 05:57:50 +0000 (UTC) Received: by obcni5 with SMTP id ni5so14358465obc.13 for ; Tue, 22 May 2012 22:57:49 -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=3Vk8ZOzZYXfiaWM7DwhI8itkfymPMc4oZNOSSYdlIHo=; b=mfV3mHFSvzvUW2eg1Lywd22b4ipydhHQheWCo740XczbJI6q/1oQA3Dwq2RM/eOhPv 1Z1wbzYTkPEMm9NWcCJc0eXkXjJ948Ff76z4Axyh7QdbIuLq1gNL9FFtOCK4alcKUiGI zN/M/3t+tletcGx7nedSNDsEXBqwjTmm62R4PGnMev0gbdnSDTFfxMFrRg9jC3WY0mV2 YAOnKyhfkyhCaQ8fDxPRhYPxG4wSLl+xlmg6+GPsmGsu26lAjNkdZUuFt4LXTyAw1mw6 3dcYj9pFQ+MQuFEdMysaRlGNa+IA8ywK66VknIFv3ITpcwzPqsBYJSThyZ4papi0+teg yOlA== MIME-Version: 1.0 Received: by 10.50.41.165 with SMTP id g5mr11890503igl.13.1337752669238; Tue, 22 May 2012 22:57:49 -0700 (PDT) Received: by 10.64.12.205 with HTTP; Tue, 22 May 2012 22:57:49 -0700 (PDT) In-Reply-To: References: <72B744D5-3D24-4A56-907C-2A8F6620877B@FreeBSD.org> Date: Wed, 23 May 2012 11:27:49 +0530 Message-ID: From: Venkat Duvvuru To: Jack Vogel Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-net@freebsd.org, "Bjoern A. Zeeb" , freebsd-questions@freebsd.org Subject: Re: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 05:57:50 -0000 Ok. I found the reason for the throughput drop in case of IPv6. Reason is that the "tcp check sum" calculation is mandated in case of IPv6 irrespective of whether the card is doing it or not (checksum offload). Is there a reason why freebsd is doing it that way? /Venkat On Tue, May 22, 2012 at 11:16 PM, Jack Vogel wrote: > LRO is a huge win for 10G (as is TSO on the TX side), so odds are good its > behind the drop, > in any case you'll be able to test that soon :) > > Jack > > > > On Tue, May 22, 2012 at 10:35 AM, Venkat Duvvuru < > venkatduvvuru.ml@gmail.com> wrote: > >> Thanks for the response. >> >> I observed that there is a significant performance drop in case of IPv6 >> on the "rx" side. >> While I'm able to hit line rate ~9.5 Gbps on a 10gb NIC for IPv4..I could >> only get ~6 Gbps on the "rx" front for IPv6...However "tx" for IPv6 is on >> par with IPv4 hitting almost line rates. >> >> Could this be because of lack of LRO6?? >> >> Note: hwpmc profiling shows that most of the time is spent in the IPv6 >> stack code >> >> /Venkat >> On Tue, May 22, 2012 at 10:37 PM, Bjoern A. Zeeb wrote: >> >>> >>> On 22. May 2012, at 17:04 , Jack Vogel wrote: >>> >>> > Oh, that's right, distracted with other projects and I forgot, now we >>> just need >>> > to have an LRO that works with forwarding eh :) >>> >>> That's a 6 line bainaid commit afterwards, basically returning form the >>> LRO queuing >>> function in case forwarding is turned on for that address family; a >>> proper solution >>> for long term can than be done whenever we feel like it. The above we >>> should have done >>> years ago;) >>> >>> >>> > You ROCK bz :) >>> > >>> > Jack >>> > >>> > >>> > On Tue, May 22, 2012 at 10:01 AM, Bjoern A. Zeeb >>> wrote: >>> > >>> > On 22. May 2012, at 16:50 , Jack Vogel wrote: >>> > >>> > > The LRO code as it stands right now is IPV4 specific, it would be >>> nice to >>> > > extend it, one of >>> > > many improvements that may get done at some point. >>> > >>> > I am about to commit it to HEAD. Bear another few days with me; I know >>> > I am running late but committing new code had less prio than some other >>> > real life things currently. >>> > >>> > I'll also bring TSO6, etc... >>> >>> -- >>> Bjoern A. Zeeb You have to have visions! >>> It does not matter how good you are. It matters what good you do! >>> >>> >> > From owner-freebsd-questions@FreeBSD.ORG Wed May 23 07:15:27 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 429EA106566B; Wed, 23 May 2012 07:15:27 +0000 (UTC) (envelope-from Devin.Teske@fisglobal.com) Received: from mx1.fisglobal.com (mx1.fisglobal.com [199.200.24.190]) by mx1.freebsd.org (Postfix) with ESMTP id E05128FC0A; Wed, 23 May 2012 07:15:26 +0000 (UTC) Received: from pps.filterd (ltcfislmsgpa01 [127.0.0.1]) by ltcfislmsgpa01.fnfis.com (8.14.4/8.14.4) with SMTP id q4N73utT011427; Wed, 23 May 2012 02:15:17 -0500 Received: from smtp.fisglobal.com ([10.132.206.31]) by ltcfislmsgpa01.fnfis.com with ESMTP id 150u5y812h-1 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Wed, 23 May 2012 02:15:17 -0500 Received: from [10.0.0.105] (10.14.152.61) by smtp.fisglobal.com (10.132.206.31) with Microsoft SMTP Server (TLS) id 14.2.283.3; Wed, 23 May 2012 02:15:16 -0500 MIME-Version: 1.0 (Apple Message framework v1257) Content-Type: text/plain; charset="us-ascii" From: Devin Teske In-Reply-To: <201205222126.q4MLQImN071457@mail.r-bonomi.com> Date: Wed, 23 May 2012 00:15:11 -0700 Content-Transfer-Encoding: quoted-printable Message-ID: References: <201205222126.q4MLQImN071457@mail.r-bonomi.com> To: Robert Bonomi X-Mailer: Apple Mail (2.1257) X-Originating-IP: [10.14.152.61] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.7.7724, 1.0.260, 0.0.0000 definitions=2012-05-23_01:2012-05-23, 2012-05-22, 1970-01-01 signatures=0 Cc: freebsd@dreamchaser.org, dteske@freebsd.org, freebsd-questions@freebsd.org Subject: Re: hard link identification X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 07:15:27 -0000 On May 22, 2012, at 2:26 PM, Robert Bonomi wrote: >=20 > wrote; >>=20 >> For directories, the link-count is quite obviously the number of filesys= tem >> entities contained within. >=20 > That is *INCORRECT*. Details. The OP wanted to know about files. I chose to not elaborate on the director= y-case of the value (as it was not important to the OP). --=20 Devin _____________ The information contained in this message is proprietary and/or confidentia= l. If you are not the intended recipient, please: (i) delete the message an= d all copies; (ii) do not disclose, distribute or use the message in any ma= nner; and (iii) notify the sender immediately. In addition, please be aware= that any message addressed to our domain is subject to archiving and revie= w by persons other than the intended recipient. Thank you. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 08:13:47 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 303DA106566B for ; Wed, 23 May 2012 08:13:47 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id E3C5E8FC0C for ; Wed, 23 May 2012 08:13:46 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4N8FbD3088961 for freebsd-questions@freebsd.org; Wed, 23 May 2012 03:15:37 -0500 (CDT) Date: Wed, 23 May 2012 03:15:37 -0500 (CDT) From: Robert Bonomi Message-Id: <201205230815.q4N8FbD3088961@mail.r-bonomi.com> To: freebsd-questions@freebsd.org Subject: foo X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 08:13:47 -0000 >From bonomi Wed May 23 03:14:43 2012 Date: Wed, 23 May 2012 03:14:43 -0500 (CDT) From: Mail Delivery Subsystem To: root@mail.r-bonomi.com Subject: Postmaster notify: see transcript for details This is a MIME-encapsulated message --q4N8Egh0088941.1337760883/mail.r-bonomi.com The original message was received at Wed, 23 May 2012 03:14:37 -0500 (CDT) from bonomi@localhost with id q4N8Ebh0088939 ----- The following addresses had permanent fatal errors ----- freebsd-questioins@freebsd.org (reason: 550 5.1.1 : Recipient address rejected: undeliverable address: No mailbox by that name) ----- Transcript of session follows ----- ... while talking to mx1.freebsd.org.: >>> DATA <<< 550 5.1.1 : Recipient address rejected: undeliverable address: No mailbox by that name 550 5.1.1 freebsd-questioins@freebsd.org... User unknown <<< 554 5.5.1 Error: no valid recipients --q4N8Egh0088941.1337760883/mail.r-bonomi.com Content-Type: message/delivery-status Reporting-MTA: dns; mail.r-bonomi.com Arrival-Date: Wed, 23 May 2012 03:14:37 -0500 (CDT) Final-Recipient: RFC822; freebsd-questioins@freebsd.org Action: failed Status: 5.1.1 Remote-MTA: DNS; mx1.freebsd.org Diagnostic-Code: SMTP; 550 5.1.1 : Recipient address rejected: undeliverable address: No mailbox by that name Last-Attempt-Date: Wed, 23 May 2012 03:14:42 -0500 (CDT) --q4N8Egh0088941.1337760883/mail.r-bonomi.com Content-Type: text/rfc822-headers Return-Path: Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4N8Ebh0088939 for freebsd-questioins@freebsd.org; Wed, 23 May 2012 03:14:37 -0500 (CDT) Date: Wed, 23 May 2012 03:14:37 -0500 (CDT) From: Robert Bonomi Message-Id: <201205230814.q4N8Ebh0088939@mail.r-bonomi.com> To: freebsd-questioins@freebsd.org Subject: Re: hard link identification In-Reply-To: --q4N8Egh0088941.1337760883/mail.r-bonomi.com-- From owner-freebsd-questions@FreeBSD.ORG Wed May 23 08:20:29 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA9441065670; Wed, 23 May 2012 08:20:29 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id A757C8FC08; Wed, 23 May 2012 08:20:29 +0000 (UTC) Received: from [82.113.121.239] (helo=tiny.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1SX6nt-0000DC-Nd; Wed, 23 May 2012 10:20:22 +0200 Received: from tiny.Sisis.de (localhost [127.0.0.1]) by tiny.Sisis.de (8.14.5/8.14.3) with ESMTP id q4N8KJu5001533; Wed, 23 May 2012 10:20:19 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by tiny.Sisis.de (8.14.5/8.14.3/Submit) id q4N8KIdW001532; Wed, 23 May 2012 10:20:18 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: tiny.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Wed, 23 May 2012 10:20:18 +0200 From: Matthias Apitz To: freebsd-questions@freebsd.org Message-ID: <20120523082017.GA1522@tiny> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD 10.0-CURRENT r226986 (i386) User-Agent: Mutt/1.5.21 (2010-09-15) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 82.113.121.239 Cc: freebsd-gnome@freebsd.org Subject: Evolution 2.32.3 && printing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 08:20:30 -0000 Hi, I run Evolution 2.32.3 in FreeBSD 9-CURRENT in my office because I have to use a MS Exchange server with OWA only; When I want to print something (Ctrl-P) a dialog comes up presenting the CUPS configured printers and a field where one could type in a command line for printing; this field is pre-set to lpr I would like to have it set to lpr -Paps -o SelectColor=Grayscale -o .... I don't see how to configure this. Thanks matthias -- Matthias Apitz e - w http://www.unixarea.de/ UNIX since V7 on PDP-11, UNIX on mainframe since ESER 1055 (IBM /370) UNIX on x86 since SVR4.2 UnixWare 2.1.2, FreeBSD since 2.2.5 From owner-freebsd-questions@FreeBSD.ORG Wed May 23 08:22:57 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D2DA71065674; Wed, 23 May 2012 08:22:57 +0000 (UTC) (envelope-from venkatduvvuru.ml@gmail.com) Received: from mail-gg0-f182.google.com (mail-gg0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4AF368FC0C; Wed, 23 May 2012 08:22:57 +0000 (UTC) Received: by ggnm2 with SMTP id m2so7748012ggn.13 for ; Wed, 23 May 2012 01:22:56 -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=JRpQ4tiPVFqWeOICIwPxfMvKJYrxpgfMxUZQptDRW4k=; b=c1okEyAa3/2QCKMbTzfxFXXS4NTJb4QGQTIZJ1H6iGJGy4q0gFiBdBGCHbNJH+baXN ViCnC6roS1XRAYcTmhAJDaTExfulFbdVf4HVnVf+jaSFx4VWlSrvC7wxNpDiwkfCVYEg mAYTJCWMSXyAhkVfGB0JgOOp57YTlmZVBO0fLgyRzeDlQH6qUy9WtJLaHoKet5kqfmjX +GijvX5wlPWxAgJGyY5hvhsCNaodNH3ZjpjsAzsXEpnOhZThj4GRgH2GWq5xGwnZ1dJ0 UC0DHZSYDtjm8H8iusjpdTCVG0VV0WSpplXdnd6CieEVQLO/SmUJ7q0tJ5ZOSx2+UkZh O1Ag== MIME-Version: 1.0 Received: by 10.42.141.133 with SMTP id o5mr17014323icu.13.1337761375967; Wed, 23 May 2012 01:22:55 -0700 (PDT) Received: by 10.64.12.205 with HTTP; Wed, 23 May 2012 01:22:55 -0700 (PDT) In-Reply-To: References: <72B744D5-3D24-4A56-907C-2A8F6620877B@FreeBSD.org> Date: Wed, 23 May 2012 13:52:55 +0530 Message-ID: From: Venkat Duvvuru To: lstewart@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-net@freebsd.org, "Bjoern A. Zeeb" , freebsd-questions@freebsd.org, Jack Vogel Subject: Re: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 08:22:57 -0000 Folks, Can somebody please explain me why "tcp checsum" calculation is mandated in the freebsd network stack (tcp_input--->in6_cksum) albeit the card supports it? Probably Steve is the right person who can answer this. /Venkat On Wed, May 23, 2012 at 11:27 AM, Venkat Duvvuru wrote: > Ok. I found the reason for the throughput drop in case of IPv6. > Reason is that the "tcp check sum" calculation is mandated in case of IPv6 > irrespective of whether the card is doing it or not (checksum offload). Is > there a reason why freebsd is doing it that way? > > /Venkat > > On Tue, May 22, 2012 at 11:16 PM, Jack Vogel wrote: > >> LRO is a huge win for 10G (as is TSO on the TX side), so odds are good >> its behind the drop, >> in any case you'll be able to test that soon :) >> >> Jack >> >> >> >> On Tue, May 22, 2012 at 10:35 AM, Venkat Duvvuru < >> venkatduvvuru.ml@gmail.com> wrote: >> >>> Thanks for the response. >>> >>> I observed that there is a significant performance drop in case of IPv6 >>> on the "rx" side. >>> While I'm able to hit line rate ~9.5 Gbps on a 10gb NIC for IPv4..I >>> could only get ~6 Gbps on the "rx" front for IPv6...However "tx" for IPv6 >>> is on par with IPv4 hitting almost line rates. >>> >>> Could this be because of lack of LRO6?? >>> >>> Note: hwpmc profiling shows that most of the time is spent in the IPv6 >>> stack code >>> >>> /Venkat >>> On Tue, May 22, 2012 at 10:37 PM, Bjoern A. Zeeb wrote: >>> >>>> >>>> On 22. May 2012, at 17:04 , Jack Vogel wrote: >>>> >>>> > Oh, that's right, distracted with other projects and I forgot, now we >>>> just need >>>> > to have an LRO that works with forwarding eh :) >>>> >>>> That's a 6 line bainaid commit afterwards, basically returning form the >>>> LRO queuing >>>> function in case forwarding is turned on for that address family; a >>>> proper solution >>>> for long term can than be done whenever we feel like it. The above we >>>> should have done >>>> years ago;) >>>> >>>> >>>> > You ROCK bz :) >>>> > >>>> > Jack >>>> > >>>> > >>>> > On Tue, May 22, 2012 at 10:01 AM, Bjoern A. Zeeb >>>> wrote: >>>> > >>>> > On 22. May 2012, at 16:50 , Jack Vogel wrote: >>>> > >>>> > > The LRO code as it stands right now is IPV4 specific, it would be >>>> nice to >>>> > > extend it, one of >>>> > > many improvements that may get done at some point. >>>> > >>>> > I am about to commit it to HEAD. Bear another few days with me; I >>>> know >>>> > I am running late but committing new code had less prio than some >>>> other >>>> > real life things currently. >>>> > >>>> > I'll also bring TSO6, etc... >>>> >>>> -- >>>> Bjoern A. Zeeb You have to have visions! >>>> It does not matter how good you are. It matters what good you do! >>>> >>>> >>> >> > From owner-freebsd-questions@FreeBSD.ORG Wed May 23 08:26:00 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A2FE106566B for ; Wed, 23 May 2012 08:26:00 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id 37F4A8FC19 for ; Wed, 23 May 2012 08:25:59 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4N8RopZ089148 for freebsd-questions@freebsd.org; Wed, 23 May 2012 03:27:50 -0500 (CDT) Date: Wed, 23 May 2012 03:27:50 -0500 (CDT) From: Robert Bonomi Message-Id: <201205230827.q4N8RopZ089148@mail.r-bonomi.com> To: freebsd-questions@freebsd.org Subject: Re: hard link identification X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 08:26:00 -0000 Devin Teske wrote: > > On May 22, 2012, at 2:26 PM, Robert Bonomi wrote: > > > wrote; > >> > >> For directories, the link-count is quite obviously the number of filesystem > >> entities contained within. > > > > That is *INCORRECT*. > > Details. > > The OP wanted to know about files. I chose to not elaborate on the > directory-case of the value (as it was not important to the OP). FACT: The count for a directory is _NOT_ the number of "filesystem entities" containted within, as you claimed. (Unless your notion of a 'filesystem entry' excludes (1) regular files, (2), named pipess, (3) device nodes, (4) unix sockets, (5) symlinks, AND everything else, _except_directories_, that appear as entries in a directory.) Tell me, according to your claim that "for directories, the link-count is quite obviously the number of filesystem entities contained within", just _approximately_, what is the expected link count for a directory containing 135 regular files, 9 'dot files' (including '.' and '..'), and 26 sub- directories? No need for an exact answer. Just pick one -- do you claim the number is going to be close to 26, or to 170? The 'details' of the link count for a directory became significant only when someone posted grossly incorrect information about what that number "meant". A 'name' inside a directory points to an 'inode'. the inode has a count of how many 'names' point to that inode. It doesn't make NOT ONE D*MN BIT of difference whether the contents of that inode are a directory, a regular file, a symlink, or whateverC -- the 'link count' has always exactly the same meaning. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 09:14:14 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11EFF106564A for ; Wed, 23 May 2012 09:14:14 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from mail-gh0-f182.google.com (mail-gh0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id BA6068FC15 for ; Wed, 23 May 2012 09:14:13 +0000 (UTC) Received: by ghbz22 with SMTP id z22so1408406ghb.13 for ; Wed, 23 May 2012 02:14:13 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding:x-gm-message-state; bh=P2DH0akYvQmnzSf38qxMqkn3RDgG1OI41GZ4W5Psldk=; b=gMYAiXBWvUMiSVnjgH6loyvEs7muW3QZfy/CXexzH3/eC764/iDWE5TYihBpZ6yyxn ZwaG4DCPezgUN20v2HP3xAATcqj8ialwotcbRU6LJTuw3bs1hvP9gzqMYsJUCu5QoO1S RczuE6gz3Fz4SKsinFLmb53QVoBSQ5XYGrqbdj2Bl6b5JeMvsm+leJhgFygP1ISTNzx4 LnMkGLLMmxYl7aK9yPEnvbEkLq5Qqg1nf9GOfZaUC/755NXaxBt9w8AklUY+Oqik04tH CBSqRQmaohb/2v6QJu4tpDxf5/qoVBpz9zlQ9OdqLRd6atekqz/pW2XQWtjjZhAu+KpB N0Yw== MIME-Version: 1.0 Received: by 10.42.157.200 with SMTP id e8mr5814187icx.46.1337764452844; Wed, 23 May 2012 02:14:12 -0700 (PDT) Received: by 10.231.167.10 with HTTP; Wed, 23 May 2012 02:14:12 -0700 (PDT) X-Originating-IP: [93.221.178.66] In-Reply-To: <20120522104441.f05a2f88.freebsd@edvax.de> References: <201205181149.q4IBndvU028665@hera.homer.att.com> <4FB64022.6010206@bananmonarki.se> <4FBB4B8C.3000806@bananmonarki.se> <20120522104441.f05a2f88.freebsd@edvax.de> Date: Wed, 23 May 2012 11:14:12 +0200 Message-ID: From: "C. P. Ghost" To: Polytropon Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQkysdfShKS6FTdPsZlMj/05eBHryUOwInbp/R5lzOHas7Ssr/UI1h7qjRAKLhHwnpXJwrmo Cc: freebsd-questions@freebsd.org, Bernt Hansson Subject: Re: Mouse stopped working in X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 09:14:14 -0000 On Tue, May 22, 2012 at 10:44 AM, Polytropon wrote: > On Tue, 22 May 2012 10:17:16 +0200, Bernt Hansson wrote: >> There is a second way of doing this stunt. >> >> Start X >> When X is up and running press CTRL+ALT+F3 or any F* frpm F3 up to F8 >> then you get to the console >> Su to root in the console and type in >> >> /usr/local/etc/rc.d/dbus restart&& =A0/usr/local/etc/rc.d/hald restart >> >> Then press ALT+F9 to get back to X > > So if that is the _solution_, why not try to automate it? > Not tested, just a suggestion: > > Make this the last-1 line in ~/.xinitrc (or ~/.xsession depending > on actual setup), before the "exec" call to the WM / DE, maybe > like this: > > =A0 =A0 =A0 =A0#!/bin/sh > =A0 =A0 =A0 =A0[ -f ~/.xmodmaprc ] && xmodmap ~/.xmodmaprc > =A0 =A0 =A0 =A0xterm & > =A0 =A0 =A0 =A0xsetroot -solid rgb:3b/4c/7a > =A0 =A0 =A0 =A0xset b 100 1000 15 & > =A0 =A0 =A0 =A0xset r rate 250 30 & > =A0 =A0 =A0 =A0xset s off & > =A0 =A0 =A0 =A0xset -dpms & > =A0-> =A0 =A0 sudo /usr/local/etc/rc.d/dbus restart && sudo /usr/local/et= c/rc.d/hald restart > =A0 =A0 =A0 =A0exec wmaker > > It should "happen" when X is running, and it should be > "back to normal" when the WM or DE is launched (and > all background programs have fully started). Yep, that's a good idea... as well as switching to a text console, issue the commands there, and then go back to X. But IMHO, the *real* solution is to fix hald (or its config), so that it tries /dev/sysmouse, or whatever mouse is configured in Xorg.conf, instead of automatically picking some wrong mouse device. I guess the problem stems from the fact, that when moused is running, it has already grabbed the real mouse device (e.g. /dev/psm0) and provides the virtual device /dev/sysmouse. When hald starts the first time, it tries to grab the real mouse device too... and fails because that mouse is already used by moused, and is therefore locked. Only when hald tries to load /dev/sysmouse the second time it is started, will it suc= ceed. Unfortunatly, hald config is pretty black magic to me. I wouldn't touch tha= t with a 10 ft. pole. > -- > Polytropon > Magdeburg, Germany > Happy FreeBSD user since 4.0 > Andra moi ennepe, Mousa, ... Thanks, -cpghost. --=20 Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Wed May 23 09:45:43 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A866F106564A; Wed, 23 May 2012 09:45:43 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 66E9C8FC08; Wed, 23 May 2012 09:45:43 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id D525E2786D; Wed, 23 May 2012 11:45:41 +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 q4N9jfa5002038; Wed, 23 May 2012 11:45:41 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Wed, 23 May 2012 11:45:41 +0200 From: Polytropon To: Matthias Apitz Message-Id: <20120523114541.11d56f7b.freebsd@edvax.de> In-Reply-To: <20120523082017.GA1522@tiny> References: <20120523082017.GA1522@tiny> 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-questions@freebsd.org, freebsd-gnome@freebsd.org Subject: Re: Evolution 2.32.3 && printing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 09:45:43 -0000 On Wed, 23 May 2012 10:20:18 +0200, Matthias Apitz wrote: > > Hi, > > I run Evolution 2.32.3 in FreeBSD 9-CURRENT in my office because I have > to use a MS Exchange server with OWA only; > > When I want to print something (Ctrl-P) a dialog comes up presenting the > CUPS configured printers and a field where one could type in a command > line for printing; this field is pre-set to > > lpr > > I would like to have it set to > > lpr -Paps -o SelectColor=Grayscale -o .... > > I don't see how to configure this. I see tow ways to do it: 1. Change the settings for your default printer in the CUPS configuration web page. Make "aps" the default printer and add the desired options. Now "lpr" will default to that specific set of options. 2. Consult Evolution's documentation in regards of a config file that allows overriding the content of the printing dialog setting (such as xpdf can do). Good luck. :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Wed May 23 11:37:57 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A6C9106564A for ; Wed, 23 May 2012 11:37:57 +0000 (UTC) (envelope-from lars@larseighner.com) Received: from mail.team1internet.com (mail.team1internet.com [216.110.13.10]) by mx1.freebsd.org (Postfix) with ESMTP id 3A45B8FC0A for ; Wed, 23 May 2012 11:37:56 +0000 (UTC) Received: from larseighner.com (unknown [71.20.75.102]) by mail.team1internet.com (Postfix) with SMTP id ABC7A16B4AB; Wed, 23 May 2012 06:37:55 -0500 (CDT) Received: by larseighner.com (nbSMTP-1.00) for uid 1001 lars@larseighner.com; Wed, 23 May 2012 06:36:36 -0500 (CDT) Date: Wed, 23 May 2012 06:36:34 -0500 (CDT) From: Lars Eighner X-X-Sender: lars@noos.6dollardialup.com To: Robert Bonomi In-Reply-To: <201205230534.q4N5YhcB083259@mail.r-bonomi.com> Message-ID: References: <201205230534.q4N5YhcB083259@mail.r-bonomi.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Connect to Clear hub modem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 11:37:57 -0000 On Wed, 23 May 2012, Robert Bonomi wrote: >> From owner-freebsd-questions@freebsd.org Tue May 22 23:03:03 2012 >> Date: Tue, 22 May 2012 22:58:39 -0500 (CDT) >> From: Lars Eighner >> To: freebsd-questions@freebsd.org >> Subject: Connect to Clear hub modem >> >> >> This is NOT a wireless question. >> >> I am running FreeBSD 8.3-p1. >> >> I want to connect to Clear Wireless Internet. I know I cannot do this with >> a Clear dongle, because Clear uses WiMax which is not supported. >> >> Instead I have a Clear hub modem. I want to connect by ethernet to it by >> wire. >> >> I get this from ifconfig: >> >> re0: flags=8802 metric 0 mtu 1500 >> options=209b >> ether 40:61:86:e9:96:0e >> media: Ethernet autoselect (100baseTX ) >> status: active >> >> But I don't have a clue what to do from here. >> >> The hub is supposed to have a web page at (imaginary address) 192.168.15.1, >> but I haven't been able to raise it. Whoops! By imaginary, I meant not really on the internet, but in 198.168.x.x block reserved for private netting. This combination of things seems to work in rc.conf: network_interfaces="lo0 re0" ifconfig="DCHP" ifconfig_re0="inet 192.168.15.2 netmask 255.255.255.0" defaultrouter="192.168.15.1" This seems to be the basic setup for all Clear hub modems for fixed locations. It may or may not be a step in the right direct for Clear mobile hotspot type modems. I also added the nameservers that the hub told me about to resolv.conf although it is not clear to me that this is consulted. tun0 will stomp all over this configuration (which is, as a reminder, wire ethernet connection to Clear hub-modem) and pppoe is not pertinent on your side anyway. It is much simpler than I thought. You can leave /etc/ppp/ppp.conf alone in case you have to drop back - just don't invoke tunX in rc.conf. Also part of the learning experience before the original question: ethernet cables are not created equal. Use the one that comes in the modem box (four wire), not some two-wire cable you have lying around. Later today, dongles that will work with FreeBSD are expected to arrive, so we will see whether it is possible to get wireless connections to the Clear hub modem. -- Lars Eighner http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-questions@FreeBSD.ORG Wed May 23 11:45:54 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC0FD106564A for ; Wed, 23 May 2012 11:45:54 +0000 (UTC) (envelope-from subramani.pasupathy@lsi.com) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) by mx1.freebsd.org (Postfix) with ESMTP id B5D228FC12 for ; Wed, 23 May 2012 11:45:54 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1SXA0o-0007Mv-5b for freebsd-questions@freebsd.org; Wed, 23 May 2012 04:45:54 -0700 Date: Wed, 23 May 2012 04:45:54 -0700 (PDT) From: "subramani.p" To: freebsd-questions@freebsd.org Message-ID: <1337773554147-5711599.post@n5.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Regarding PCI-E error display in FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 11:45:54 -0000 Does FreeBSD has provision to display PCI-E errors. we are observing a FreeBSD OS hang while performing a phy break of an expander during IOs on the drives attached to the expander. The same test when run under linux we could see Linux OS popping up PCIe related error messages which was detected through their AER module. Please help me in understanding if there are any such modules in FreeBSD through which PCIe related error message can be viewed. -- View this message in context: http://freebsd.1045724.n5.nabble.com/Regarding-PCI-E-error-display-in-FreeBSD-tp5711599.html Sent from the freebsd-questions mailing list archive at Nabble.com. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 12:14:38 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 73954106566C for ; Wed, 23 May 2012 12:14:38 +0000 (UTC) (envelope-from nvass@gmx.com) Received: from mailout-us.gmx.com (mailout-us.gmx.com [74.208.5.67]) by mx1.freebsd.org (Postfix) with SMTP id 0FF318FC12 for ; Wed, 23 May 2012 12:14:37 +0000 (UTC) Received: (qmail invoked by alias); 23 May 2012 12:14:36 -0000 Received: from g230068075.adsl.alicedsl.de (EHLO [192.168.178.28]) [92.230.68.75] by mail.gmx.com (mp-us005) with SMTP; 23 May 2012 08:14:36 -0400 X-Authenticated: #46156728 X-Provags-ID: V01U2FsdGVkX1+wW7RTe9Wwi5jlZ+Afgty7yG31/JA3AJK+5vVDUr f4qO51+/iDwZDX Message-ID: <4FBCD49B.90104@gmx.com> Date: Wed, 23 May 2012 14:14:19 +0200 From: Nikos Vassiliadis User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10 MIME-Version: 1.0 To: "subramani.p" References: <1337773554147-5711599.post@n5.nabble.com> In-Reply-To: <1337773554147-5711599.post@n5.nabble.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: freebsd-questions@freebsd.org Subject: Re: Regarding PCI-E error display in FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 12:14:38 -0000 On 5/23/2012 1:45 PM, subramani.p wrote: > Does FreeBSD has provision to display PCI-E errors. > > we are observing a FreeBSD OS hang while performing a phy break of an > expander during IOs on the drives attached to the expander. > > The same test when run under linux we could see Linux OS popping up PCIe > related error messages which was detected through their AER module. > > Please help me in understanding if there are any such modules in FreeBSD > through which PCIe related error message can be viewed. Hi, Check if this helps: http://lists.freebsd.org/pipermail/freebsd-current/2012-May/033734.html Nikos From owner-freebsd-questions@FreeBSD.ORG Wed May 23 12:33:58 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C5DF4106564A for ; Wed, 23 May 2012 12:33:58 +0000 (UTC) (envelope-from kayasaman@gmail.com) Received: from mail-qa0-f47.google.com (mail-qa0-f47.google.com [209.85.216.47]) by mx1.freebsd.org (Postfix) with ESMTP id 81E9E8FC0C for ; Wed, 23 May 2012 12:33:58 +0000 (UTC) Received: by qabg1 with SMTP id g1so3527966qab.13 for ; Wed, 23 May 2012 05:33:52 -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=E5xAWN4wTY1+xBT2CFx6CDvGYLWdodJUjvJxulh+36s=; b=pT76Zreit1PZyBCxyvVvIEfsA1Sdhxywcl8CP8tmB8EhbSkwnyGRxFS42zwMyAy8ud CkFIKNqafkG0ZDf1cJu1Mr9pibQ7EyjzTJ1oUimNW7jWWECAiB6erWMpeD9WGBaMmcCd 3Lzwza8zz2FdRD9CjFdhr9jCdtEi25+X4nnnpIcV4J1GsrKuxzU+E11eze1Exyl6spo1 OoH9Q33I+i6kAZG9NKVzWWR9tnBJe7zLvx34nivcl/+OFEZk/HX4C3PKR4Cksvrje53r v8YjbsU9N8Tm+w+aZACBXqE5k6VpLqRmMz/Xu6GBLYoQy0KkiAMYAE9vLv6D5wiHkzYH qaZw== MIME-Version: 1.0 Received: by 10.229.135.77 with SMTP id m13mr4616397qct.12.1337776432077; Wed, 23 May 2012 05:33:52 -0700 (PDT) Received: by 10.229.71.11 with HTTP; Wed, 23 May 2012 05:33:52 -0700 (PDT) Date: Wed, 23 May 2012 13:33:52 +0100 Message-ID: From: Kaya Saman To: freebsd-questions Content-Type: text/plain; charset=ISO-8859-1 Subject: Integrating FreeBSD with MS Active Directory in order to be able to Authenticate Dovecot IMAP server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 12:33:58 -0000 Hi, I'm attempting to authenticate Dovecot to Active Directory, however, I'm failing quite badly. So far I have gone through the FreeBSD handbook on Kerberos authentication: http://www.freebsd.org/doc/handbook/kerberos5.html Additionally I have been through the Dovecot config: http://wiki2.dovecot.org/Authentication/Mechanisms/Winbind http://wiki2.dovecot.org/HowTo/ActiveDirectoryNtlm I am running FreeBSD 8.2 x64 RELEASE edition with the Dovecot2 port installed, SAMBA 3.6, and the Heimdal version of Kerberos. I pulled the krb5.conf and smb.conf files from one of our production Linux boxes...... This is my dovecot.conf file: # v1.1: #auth_ntlm_use_winbind = yes # v1.2+: auth_use_winbind = yes auth_winbind_helper_path = /usr/local/bin/ntlm_auth protocols = imap # It's nice to have separate log files for Dovecot. You could do this # by changing syslog configuration also, but this is easier. log_path = /var/log/dovecot.log info_log_path = /var/log/dovecot-info.log # Disable SSL for now. ssl = no disable_plaintext_auth = no # We're using Maildir format #mail_location = maildir:~/Maildir mail_location = mbox:/mail:INBOX=/mail/%u # If you're using POP3, you'll need this: #pop3_uidl_format = %g # Authentication configuration: auth_verbose = yes auth_username_format = %n #auth_mechanisms = plain auth_mechanisms = plain ntlm login #passdb { # driver = passwd-file # args = /usr/local/etc/dovecot/passwd #} #userdb { # driver = static # args = uid=root gid=root home=/root/ # driver = static # args = uid=500 gid=500 home=/ZPOOL_1/%u #} #userdb static { # args= uid=501 gid=501 home=/mail/%1Ln/%Ln # mail=maildir:/mail/%d/%1Ln/%Ln:INBOX=/mail/%d/%1Ln/%Ln # allow_all_users=yes #} passdb { driver = static } userdb { driver = static args = uid=501 gid=501 home=/mail/%1Ln/%Ln } This is ther krb5.conf file: [logging] default = FILE:/var/log/krb5libs.log kdc = FILE:/var/log/krb5kdc.log admin_server = FILE:/var/log/kadmind.log [libdefaults] default_realm = DOMAIN.COM dns_lookup_realm = false dns_lookup_kdc = false ticket_lifetime = 24h forwardable = yes [realms] DOMAIN.COM = { kdc = :88 kdc = :88 admin_server = :749 kdc = DC.DOMAIN.COM } [domain_realm] domain.com = DOMAIN.COM .domain.com = DOMAIN.COM [appdefaults] pam = { debug = false ticket_lifetime = 36000 renew_lifetime = 36000 forwardable = true krb4_convert = false } This is the smb.conf file: [global] #--authconfig--start-line-- # Generated by authconfig on 2011/04/11 15:41:02 # DO NOT EDIT THIS SECTION (delimited by --start-line--/--end-line--) # Any modification may be deleted or altered by authconfig in future workgroup = DOMAIN password server = DC.DOMAIN.COM realm = DOMAIN.COM security = ads idmap uid = 16777216-33554431 idmap gid = 16777216-33554431 template shell = /bin/bash winbind use default domain = true winbind offline logon = false winbind separator = + #--authconfig--end-line-- preferred master = no server string = FreeBSD IMAP Server encrypt passwords = yes log level = 3 log file = /var/log/samba/%m max log size = 50 printcap name = cups printing = cups unix extensions = no winbind enum users = Yes winbind enum groups = Yes winbind nested groups = Yes winbind cache time = 5 Running the command klist does give an output however, I am totally stuck as to why the Dovecot authentication isn't working.... This is the output from the dovecot.log: May 20 13:16:32 auth: Error: could not obtain winbind domain name! May 20 13:16:32 auth: Error: could not obtain winbind netbios name! May 20 13:16:32 auth: Error: could not obtain winbind domain name! May 20 13:16:42 auth: Fatal: master: service(auth): child 15253 killed with signal 11 (core not dumped - set service auth { drop_priv_before_exec=yes }) May 20 13:16:42 imap-login: Warning: Auth connection closed with 1 pending requests (max 8 secs, pid=15254, EOF) May 20 13:16:51 auth: Error: Ignoring unknown parameter "use kerberos keytab" May 20 13:16:51 auth: Error: could not obtain winbind domain name! May 20 13:16:51 auth: Error: could not obtain winbind netbios name! May 20 13:16:51 auth: Error: could not obtain winbind domain name! May 20 13:17:08 auth: Fatal: master: service(auth): child 15256 killed with signal 11 (core not dumped - set service auth { drop_priv_before_exec=yes }) May 20 13:17:08 imap-login: Warning: Auth connection closed with 1 pending requests (max 15 secs, pid=15257, EOF) May 23 12:18:31 imap-login: Warning: Auth connection closed with 1 pending requests (max 0 secs, pid=25437, EOF) May 23 12:18:31 auth: Fatal: master: service(auth): child 25439 killed with signal 11 (core not dumped - set service auth { drop_priv_before_exec=yes }) May 23 12:19:00 imap-login: Warning: Auth connection closed with 1 pending requests (max 0 secs, pid=25437, EOF) May 23 12:19:00 auth: Fatal: master: service(auth): child 25440 killed with signal 11 (core not dumped - set service auth { drop_priv_before_exec=yes }) May 23 12:37:16 master: Warning: Killed with signal 15 (by pid=25630 uid=0 code=kill) May 23 13:37:41 imap-login: Warning: Auth connection closed with 1 pending requests (max 0 secs, pid=1231, EOF) May 23 13:37:41 auth: Fatal: master: service(auth): child 1232 killed with signal 11 (core not dumped - set service auth { drop_priv_before_exec=yes }) May 23 13:38:12 imap-login: Warning: Auth connection closed with 1 pending requests (max 0 secs, pid=1231, EOF) May 23 13:38:12 auth: Fatal: master: service(auth): child 1233 killed with signal 11 (core not dumped - set service auth { drop_priv_before_exec=yes }) May 23 13:40:37 master: Warning: Killed with signal 15 (by pid=1384 uid=0 code=kill) May 23 13:42:47 imap-login: Warning: Auth connection closed with 1 pending requests (max 0 secs, pid=1208, EOF) May 23 13:42:47 auth: Fatal: master: service(auth): child 1209 killed with signal 11 (core not dumped - set service auth { drop_priv_before_exec=yes }) Can anybody help me figure this out? Regards, Kaya From owner-freebsd-questions@FreeBSD.ORG Wed May 23 12:24:25 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 487D8106564A for ; Wed, 23 May 2012 12:24:25 +0000 (UTC) (envelope-from ramirocaso05@yahoo.com.ar) Received: from nm16-vm0.bullet.mail.sp2.yahoo.com (nm16-vm0.bullet.mail.sp2.yahoo.com [98.139.91.210]) by mx1.freebsd.org (Postfix) with SMTP id 1BE8A8FC0A for ; Wed, 23 May 2012 12:24:25 +0000 (UTC) Received: from [98.139.91.68] by nm16.bullet.mail.sp2.yahoo.com with NNFMP; 23 May 2012 12:24:19 -0000 Received: from [98.136.185.44] by tm8.bullet.mail.sp2.yahoo.com with NNFMP; 23 May 2012 12:24:19 -0000 Received: from [127.0.0.1] by smtp105.mail.gq1.yahoo.com with NNFMP; 23 May 2012 12:24:19 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com.ar; s=s1024; t=1337775859; bh=t0t0uiLU/hfOZeTuXirupYN7RcBz/BGvm6HUHBl59gU=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=LDE9WHOI4X3UDiSlGkywTLvgVvcTRfaiEOWlWANjxDqBWLpCj1RfjKCT48F9e4hjCERLVoKkQ8+KBwx5nPjKhCbNQGxT4Npxq1nmO08plgysLspQWHe0/iMSmg0O14EpA4M3AL/DaX4Ln+iB+DXdwSyqOfgFqBAjgYq1e0ehyQs= X-Yahoo-Newman-Id: 213820.63433.bm@smtp105.mail.gq1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: Q0hFTpQVM1n8hBZeySLByprfvjDvhzLEGYOCCV.xO7fv7Zm AqgNuCQB_YTTLcdl7VoBxbsatLwdorfMLrs9kdfTrtOoramUqFZ5evlVpkP_ kEhXy4q15VFUDLwf6A8IucaONQxTYtdsqgkfKCzclT.AlePQM8m5QB_UUR.t tspPKJBioXuWsY516UXetDaDA9F4U1dwirYWEXym19vJr7dheg55SEImh93Q 5w3ZCHDtfecWcZT6kzQI3PB9SdJmfs19TkDbqdEEZDvwmLFqnbqYTVvfRa.2 Mi4JD4uxX34hRx2q8.zp1NB5pKPXqzfvcYZf0EWPTdqIV3NoxTKu5zHyoIA2 j4RML.sBz8hBoPOGNITP02oEbtvwYeNcbZMX_M8wWOunpOrWAP6qJNU4VLJ3 5osDtF3GctLUMYzBjisd5LiCxfgYRYmaEidwhPDLeevVKKrVEi0L2 X-Yahoo-SMTP: nvs2XB.swBAGTflg2_BV8MKeFlUrIJyEuA-- Received: from [192.168.1.104] (ramirocaso05@186.22.171.89 with plain) by smtp105.mail.gq1.yahoo.com with SMTP; 23 May 2012 05:24:18 -0700 PDT Message-ID: <4FBCD6F0.3030207@yahoo.com.ar> Date: Wed, 23 May 2012 09:24:16 -0300 From: Ramiro Caso User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120503 Thunderbird/12.0.1 MIME-Version: 1.0 To: Antonio Olivares References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 23 May 2012 13:55:04 +0000 Cc: FreeBSD Questions Subject: Re: no X after updating ports [Intel i945GME] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 12:24:25 -0000 On 21/05/2012 23:23, Antonio Olivares wrote: > Dear folks, > > I have an acer-aspire 1 netbook running FreeBSD 9.0 i386. It was > working beautifully, but after todays updates, X no longer works. I have a similar problem. I have a Dell Inspiron 1318 running 9.0 amd. I use KDE4 (kde-4.7.4_1). After an upgrade of ports (using portupgrade), X works, but every time I launch a non-KDE application, X crashes. Putting "vesa" instead of "intel" in xorg.conf stopped the crashes. I upgraded roughly the same ports, and I get a "Segmentation fault: 11 at address 0x10" error. The card is an Intel Mobile GM965/GL960 IGC. If it helps, I can provide more details (upgraded ports, log files and screen output). > On screen I have > > drm0: on vgapci0 > info: [drm] AGP at 0x20000000 256MB > info: [drm] Initialized i915 1.6.0 20080730 > > I have also: > xfsettingsd: Fatal IO error 35 (Resource temporarily unavailable) on > X server :0. > xfce4-settings-helper: Fatal IO error 35 (Resource temporarily > unavailable) on X server :0. > xfwm4: Fatal IO error 35 (Resource temporarily unavailable) on X server :0. > Thunar: Fatal IO error 35 (Resource temporarily unavailable) on X server :0. > wrapper: Fatal IO error 35 (Resource temporarily unavailable) on X server :0. > xfce4-panel: Fatal IO error 35 (Resource temporarily unavailable) on > X server :0. > gkrellm: Fatal IO error 0 (No error: 0) on X server :0. > running 'ssh-agent -s -k' > unset SSH_AUTH_SOCK; > unset SSH_AGENT_PID; > echo Agent pid 1785 killed; > xinit connection to X server lost > > waiting for X server to shut down xfdesktop: Fatal IO error 2 (No > such file or directory) on X server :0.0. > > > Segmentation fault: 11 at address 0x10 > > Fatal server errror: > Caught signal 11 (Segmentation fault: 11). Server aborting > > updates installed via portmaster: > > fontconfig-2.9.0,1 > gdk-pixbuf-2.23.5_2 > gtk-2.24.6_1 > > also cairo went from cairo-1.10.2_3,1 to cairo-1.12.2,1 > > Any advice, comments or suggestions are greatly appreciated. > > Best Regards, > > > Antonio > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Wed May 23 14:07:44 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 272F4106566C for ; Wed, 23 May 2012 14:07:44 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id D6B6B8FC0A for ; Wed, 23 May 2012 14:07:43 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q4NE7gdl047929; Wed, 23 May 2012 08:07:42 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q4NE7g9p047926; Wed, 23 May 2012 08:07:42 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Wed, 23 May 2012 08:07:42 -0600 (MDT) From: Warren Block To: Lars Eighner In-Reply-To: Message-ID: References: <201205230534.q4N5YhcB083259@mail.r-bonomi.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.2.7 (wonkity.com [127.0.0.1]); Wed, 23 May 2012 08:07:42 -0600 (MDT) Cc: freebsd-questions@freebsd.org, Robert Bonomi Subject: Re: Connect to Clear hub modem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 14:07:44 -0000 On Wed, 23 May 2012, Lars Eighner wrote: > Whoops! By imaginary, I meant not really on the internet, but in > 198.168.x.x block reserved for private netting. > > This combination of things seems to work in rc.conf: > > network_interfaces="lo0 re0" That is normally not needed. > ifconfig="DCHP" > ifconfig_re0="inet 192.168.15.2 netmask 255.255.255.0" These are variable assignments, and the second line overwrites the value assigned by the first. The first alone is preferable because DHCP will do other setup, like the route and resolve.conf. > defaultrouter="192.168.15.1" > > This seems to be the basic setup for all Clear hub modems for fixed > locations. It may or may not be a step in the right direct for Clear mobile > hotspot type modems. > > I also added the nameservers that the hub told me about to resolv.conf > although it is not clear to me that this is consulted. DHCP will do that for you. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 14:37:43 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AD67106566C for ; Wed, 23 May 2012 14:37:43 +0000 (UTC) (envelope-from joe.gain@gmail.com) Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 9C0FB8FC12 for ; Wed, 23 May 2012 14:37:42 +0000 (UTC) Received: by wgbds11 with SMTP id ds11so7420158wgb.31 for ; Wed, 23 May 2012 07:37:36 -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:content-transfer-encoding; bh=rZQSsScvDsmf5B95EgrfnjFL0g9aU23q/3SeBzSz5Bg=; b=rmFL+3fPCnws+YUCgrNOOtEDaQ9gfn5ErTt9JZomABlUm8azZgDUnR2XRcPMB/Mrc9 D5jY8AXDz6bMZ7jGU6fN963pu5GNiQTCEhvzuRMNuUyzitnZO7oYbo2zVQl5ytHmHR2M b/HKgRi/JT09eoggdc+hnFYr314lQ2K3mlpK00DTfghHhgb4hUy5foDoHQ4AK5hwDoLf zDFZVWVqDMB8D9H7ij93ba5m3PhXQ7H+4N8ULnwYT/UHxNRGaYZhpOXxjZqUP5mpcxRl q9sIjkmm2K2BE31NchMlMVM2IH4n1MeUvBS3PXHFlBrUaSnjhK1JE2RMc6pxUHuNGl8g cOVQ== MIME-Version: 1.0 Received: by 10.180.99.195 with SMTP id es3mr46789288wib.12.1337783856351; Wed, 23 May 2012 07:37:36 -0700 (PDT) Received: by 10.216.185.84 with HTTP; Wed, 23 May 2012 07:37:36 -0700 (PDT) In-Reply-To: <4FBCD6F0.3030207@yahoo.com.ar> References: <4FBCD6F0.3030207@yahoo.com.ar> Date: Wed, 23 May 2012 16:37:36 +0200 Message-ID: From: Joe Gain To: Ramiro Caso Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Questions , Antonio Olivares Subject: Re: no X after updating ports [Intel i945GME] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 14:37:43 -0000 Hi all, same problem here as well. Apparently this is in relation to updating Cairo. See the thread on the forum: http://forums.freebsd.org/showthread.php?p=3D178116 =3D> downgrade Cairo to 1.10 http://www.freebsd.org/cgi/cvsweb.cgi/ports/graphics/cairo/distinfo Would be good to see this fixed ;) On Wed, May 23, 2012 at 2:24 PM, Ramiro Caso wr= ote: > On 21/05/2012 23:23, Antonio Olivares wrote: >> >> Dear folks, >> >> I have an acer-aspire 1 netbook running FreeBSD 9.0 i386. =A0It was >> working beautifully, but after todays updates, X no longer works. > > > I have a similar problem. I have a Dell Inspiron 1318 running 9.0 amd. I = use > KDE4 (kde-4.7.4_1). After an upgrade of ports (using portupgrade), X work= s, > but every time I launch a non-KDE application, X crashes. Putting "vesa" > instead of "intel" in xorg.conf stopped the crashes. > > I upgraded roughly the same ports, and I get a "Segmentation fault: 11 at > address 0x10" error. The card is an Intel Mobile GM965/GL960 IGC. > > If it helps, I can provide more details (upgraded ports, log files and > screen output). > > >> On screen I have >> >> drm0: =A0on vgapci0 >> info: =A0[drm] AGP at 0x20000000 256MB >> info: =A0[drm] Initialized i915 1.6.0 20080730 >> >> I have also: >> xfsettingsd: =A0Fatal IO error 35 (Resource temporarily unavailable) on >> X server :0. >> xfce4-settings-helper: =A0Fatal IO error 35 (Resource temporarily >> unavailable) on X server :0. >> xfwm4: =A0Fatal IO error 35 (Resource temporarily unavailable) on X serv= er >> :0. >> Thunar: =A0Fatal IO error 35 (Resource temporarily unavailable) on X ser= ver >> :0. >> wrapper: =A0Fatal IO error 35 (Resource temporarily unavailable) on X se= rver >> :0. >> xfce4-panel: =A0Fatal IO error 35 (Resource temporarily unavailable) on >> X server :0. >> gkrellm: =A0Fatal IO error 0 (No error: =A00) on X server :0. >> running 'ssh-agent -s -k' >> unset SSH_AUTH_SOCK; >> unset SSH_AGENT_PID; >> echo Agent pid 1785 killed; >> xinit connection to X server lost >> >> waiting for X server to shut down xfdesktop: =A0Fatal IO error 2 (No >> such file or directory) on X server :0.0. >> >> >> Segmentation fault: =A011 at address 0x10 >> >> Fatal server errror: >> Caught signal 11 (Segmentation fault: =A011). Server aborting >> >> updates installed via portmaster: >> >> fontconfig-2.9.0,1 >> gdk-pixbuf-2.23.5_2 >> gtk-2.24.6_1 >> >> also cairo went from cairo-1.10.2_3,1 to cairo-1.12.2,1 >> >> Any advice, comments or suggestions are greatly appreciated. >> >> Best Regards, >> >> >> Antonio >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to >> "freebsd-questions-unsubscribe@freebsd.org" > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" --=20 joe gain jacob-burckhardt-str. 16 78464 konstanz germany +49 (0)7531 60389 (...otherwise in ???) From owner-freebsd-questions@FreeBSD.ORG Wed May 23 16:30:28 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A05761065674; Wed, 23 May 2012 16:30:28 +0000 (UTC) (envelope-from jhein@symmetricom.com) Received: from duck.symmetricom.us (duck.symmetricom.us [206.168.13.214]) by mx1.freebsd.org (Postfix) with ESMTP id 6CDE48FC19; Wed, 23 May 2012 16:30:28 +0000 (UTC) Received: from gromit.timing.com (gromit.timing.com [206.168.13.209]) by duck.symmetricom.us (8.14.5/8.14.5) with ESMTP id q4NGUFOj096322; Wed, 23 May 2012 10:30:21 -0600 (MDT) (envelope-from jhein@symmetricom.com) Received: from gromit.timing.com (localhost [127.0.0.1]) by gromit.timing.com (8.14.5/8.14.5) with ESMTP id q4NGTYKt019364; Wed, 23 May 2012 10:29:34 -0600 (MDT) (envelope-from jhein@gromit.timing.com) Received: (from jhein@localhost) by gromit.timing.com (8.14.5/8.14.5/Submit) id q4NGTStn019363; Wed, 23 May 2012 10:29:28 -0600 (MDT) (envelope-from jhein) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <20413.4200.318543.522374@gromit.timing.com> Date: Wed, 23 May 2012 10:29:28 -0600 From: John Hein To: freebsd-gnome@freebsd.org In-Reply-To: <20120523114541.11d56f7b.freebsd@edvax.de> References: <20120523082017.GA1522@tiny> <20120523114541.11d56f7b.freebsd@edvax.de> X-Mailer: VM 8.2.0b-trunk-1396 under 23.4.1 (i386-portbld-freebsd7.4) Cc: Matthias Apitz , freebsd-questions@freebsd.org Subject: Re: Evolution 2.32.3 && printing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 16:30:28 -0000 Polytropon wrote at 11:45 +0200 on May 23, 2012: > On Wed, 23 May 2012 10:20:18 +0200, Matthias Apitz wrote: > > > > Hi, > > > > I run Evolution 2.32.3 in FreeBSD 9-CURRENT in my office because I have > > to use a MS Exchange server with OWA only; > > > > When I want to print something (Ctrl-P) a dialog comes up presenting the > > CUPS configured printers and a field where one could type in a command > > line for printing; this field is pre-set to > > > > lpr > > > > I would like to have it set to > > > > lpr -Paps -o SelectColor=Grayscale -o .... > > > > I don't see how to configure this. > > I see tow ways to do it: > > 1. Change the settings for your default printer in the CUPS > configuration web page. Make "aps" the default printer > and add the desired options. Now "lpr" will default to > that specific set of options. > > 2. Consult Evolution's documentation in regards of a config > file that allows overriding the content of the printing > dialog setting (such as xpdf can do). Good luck. :-) 3. Install mail/davmail (gateway from proprietary exchange formats to standard protocols) and use any mail client you want (via imap or pop). And use any calendar client you want (caldav, ical). A bit off topic unless you have an email client that you can more easily achieve your goal - so worth mentioning. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 18:16:10 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5083B1065672 for ; Wed, 23 May 2012 18:16:10 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id 0C23E8FC0C for ; Wed, 23 May 2012 18:16:10 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SXG6S-0008Op-GI for freebsd-questions@freebsd.org; Wed, 23 May 2012 20:16:08 +0200 Received: from pool-173-79-82-23.washdc.fios.verizon.net ([173.79.82.23]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 May 2012 20:16:08 +0200 Received: from nightrecon by pool-173-79-82-23.washdc.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 May 2012 20:16:08 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Date: Wed, 23 May 2012 14:15:57 -0400 Lines: 71 Message-ID: References: <201205230815.q4N8FbD3088961@mail.r-bonomi.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: pool-173-79-82-23.washdc.fios.verizon.net Subject: Re: foo X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@hotmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 18:16:10 -0000 Robert Bonomi wrote: >>From bonomi Wed May 23 03:14:43 2012 > Date: Wed, 23 May 2012 03:14:43 -0500 (CDT) > From: Mail Delivery Subsystem > To: root@mail.r-bonomi.com > Subject: Postmaster notify: see transcript for details > > This is a MIME-encapsulated message > > --q4N8Egh0088941.1337760883/mail.r-bonomi.com > > The original message was received at Wed, 23 May 2012 03:14:37 -0500 (CDT) > from bonomi@localhost > with id q4N8Ebh0088939 > > ----- The following addresses had permanent fatal errors ----- > freebsd-questioins@freebsd.org > (reason: 550 5.1.1 : Recipient address > rejected: undeliverable address: No mailbox by that name) > > ----- Transcript of session follows ----- > ... while talking to mx1.freebsd.org.: >>>> DATA > <<< 550 5.1.1 : Recipient address > rejected: undeliverable address: No mailbox by that name 550 5.1.1 > freebsd-questioins@freebsd.org... User unknown <<< 554 5.5.1 Error: no > valid recipients > > --q4N8Egh0088941.1337760883/mail.r-bonomi.com > Content-Type: message/delivery-status > > Reporting-MTA: dns; mail.r-bonomi.com > Arrival-Date: Wed, 23 May 2012 03:14:37 -0500 (CDT) > > Final-Recipient: RFC822; freebsd-questioins@freebsd.org > Action: failed > Status: 5.1.1 > Remote-MTA: DNS; mx1.freebsd.org > Diagnostic-Code: SMTP; 550 5.1.1 : > Recipient address rejected: undeliverable address: No mailbox by that name > Last-Attempt-Date: Wed, 23 May 2012 03:14:42 -0500 (CDT) > > --q4N8Egh0088941.1337760883/mail.r-bonomi.com > Content-Type: text/rfc822-headers > > Return-Path: > Received: (from bonomi@localhost) > by mail.r-bonomi.com (8.14.4/rdb1) id q4N8Ebh0088939 > for freebsd-questioins@freebsd.org; Wed, 23 May 2012 03:14:37 -0500 (CDT) > Date: Wed, 23 May 2012 03:14:37 -0500 (CDT) > From: Robert Bonomi > Message-Id: <201205230814.q4N8Ebh0088939@mail.r-bonomi.com> > To: freebsd-questioins@freebsd.org > Subject: Re: hard link identification > In-Reply-To: > > --q4N8Egh0088941.1337760883/mail.r-bonomi.com-- > Excuse me for being dense, but _what_ exactly is the problem here? You're going to see these whenever you try and send to an address that does not exist - that is: freebsd-questioins@freebsd.org Should freebsd-questioins@freebsd.org not actually be freebsd- questions@freebsd.org? Or this some super-double-secret list that the rest of us are not privy? ;-) -Mike From owner-freebsd-questions@FreeBSD.ORG Wed May 23 20:52:21 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 115DA1065688; Wed, 23 May 2012 20:52:21 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 8E05E8FC0A; Wed, 23 May 2012 20:52:20 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) with esmtp (envelope-from ) id <1SXIXW-0004Bw-1A>; Wed, 23 May 2012 22:52:14 +0200 Received: from e178040087.adsl.alicedsl.de ([85.178.40.87] helo=thor.walstatt.dyndns.org) by inpost2.zedat.fu-berlin.de (Exim 4.69) with esmtpsa (envelope-from ) id <1SXIXV-0004w4-Oh>; Wed, 23 May 2012 22:52:14 +0200 Message-ID: <4FBD4DF5.5080502@zedat.fu-berlin.de> Date: Wed, 23 May 2012 22:52:05 +0200 From: "O. Hartmann" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120502 Thunderbird/12.0.1 MIME-Version: 1.0 To: Garrett Cooper References: <4FB7A63C.70509@zedat.fu-berlin.de> In-Reply-To: X-Enigmail-Version: 1.5pre Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigEFF48EA4D047EC40F5E58B45" X-Originating-IP: 85.178.40.87 Cc: Current FreeBSD , freebsd-questions@freebsd.org Subject: Re: CURRENT: buildworld fails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 20:52:21 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigEFF48EA4D047EC40F5E58B45 Content-Type: multipart/mixed; boundary="------------060907030507050307080104" This is a multi-part message in MIME format. --------------060907030507050307080104 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 05/19/12 22:33, Garrett Cooper wrote: > On Sat, May 19, 2012 at 6:55 AM, O. Hartmann > wrote: >> Since approx. a week for now, I can not build FreeBSD 10.0-CURRENT/amd= 64 >> anymore! This happens to be on ALL(!) FreeBSD 10 boxes around here I >> maintain. >=20 > ... >=20 >> b) build and install /usr/src/lib via "make clean cleandepend depend o= bj >> all install" doesn't work anymore, it fails with >> ."/usr/src/lib/Makefile", line 179: Malformed conditional (${MK_NAND} = !=3D >> "no") >> "/usr/src/lib/Makefile", line 181: if-less endif >=20 > Your mk files in /usr/share/mk are out of synch with your build tree. > If you opt out of using buildworld, then you need to do 'make -C > share/mk install' beforehand. >=20 > Thanks, > -Garrett My problems became more desperate. Since May, 15th, I'm unable to compile a buildworld and I suspect I messed up my OS somehow. I have already completely deleted /usr/src and checked out via SVN again.= Deleting /etc/src.conf and /etc/make.conf, performing buildworld with the system's original make.conf (using the legacy GCC 4.2.1) ends up with the below shown error. Try to compile with CLANG as suggested via the Wiki page and the attached /etc/src.conf gives a very short approach in how to trap into a error, also shown below. My problems occured around the May, 15th and hit ALL of my FreeBSD 10-CURRENT/amd64 boxes on which I do most time daily buildworld. Two of them could be fixed, I did this two days ago by cd /usr/src make installincludes make -C {lib|libexec|sbin ...} clean cleandepend depend obj all install On one specific machine it didn't work that way. I found out that several binaries in the system's tree remained dated on 15th May, so like "ld" or other essential pieces. Therefore I suspect a crushed system= =2E Does anyhow do have any idea how to repair the system? I can compile a kernel, but I can not compile ports (or even update them, I receive multiple weird errors of missing header files or "changed" libstdc++.so. The idea was to take a very recent binary installation set and install this selective peice by piece over the existing installation, but I need to preserve /etc and other directories. Any ideas ? Help is appreciated and thanks in advance, Oliver [ BUILD with legacy gcc 4.2.1] =3D=3D=3D> bin/ed (all) cc -O2 -pipe -DDES -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/bin/ed/buf.c cc -O2 -pipe -DDES -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/bin/ed/cbc.c cc -O2 -pipe -DDES -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/bin/ed/glbl.c cc -O2 -pipe -DDES -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/bin/ed/io.c cc -O2 -pipe -DDES -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/bin/ed/main.c cc -O2 -pipe -DDES -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/bin/ed/re.c cc -O2 -pipe -DDES -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/bin/ed/sub.c cc -O2 -pipe -DDES -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/bin/ed/undo.c cc -O2 -pipe -DDES -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -o ed buf.o cbc.o glbl.o io.o main.o re.o sub.o undo.o -lcrypto gzip -cn /usr/src/bin/ed/ed.1 > ed.1.gz =3D=3D=3D> bin/expr (all) cc -O2 -pipe -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c expr.c cc1: warnings being treated as errors /usr/src/bin/expr/expr.y: In function 'main': /usr/src/bin/expr/expr.y:291: warning: implicit declaration of function 'yyparse' /usr/src/bin/expr/expr.y:291: warning: nested extern declaration of 'yyparse' expr.c: At top level: expr.c:813: warning: no previous prototype for 'yyparse' *** [expr.o] Error code 1 Stop in /usr/src/bin/expr. *** [all] Error code 1 Stop in /usr/src/bin. *** [bin.all__D] Error code 1 Stop in /usr/src. *** [everything] Error code 1 Stop in /usr/src. *** [buildworld] Error code 1 Stop in /usr/src. [ BUILD with CLANG as with attached /etc/src.conf] -------------------------------------------------------------- >>> stage 1.2: bootstrap tools -------------------------------------------------------------- cd /usr/src; MAKEOBJDIRPREFIX=3D/usr/obj/usr/src/tmp INSTALL=3D"sh /usr/src/tools/install.sh" PATH=3D/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/u= sr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/sbin:/bin:/usr/sbin:/usr/bi= n WORLDTMP=3D/usr/obj/usr/src/tmp VERSION=3D"FreeBSD 10.0-CURRENT amd64 1000013" MAKEFLAGS=3D"-m /usr/src/tools/build/mk -m /usr/src/share/mk TARGET=3Damd64 TARGET_ARCH=3Damd64" make -f Makefile.inc1 DESTDIR=3D BOOTSTRAPPING=3D1000013 SSP_CFLAGS=3D -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN -DNO_PIC -DNO_PROFILE -DNO_SHARED -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF bootstrap-tools =3D=3D=3D> lib/clang/libllvmsupport (obj,depend,all,install) /usr/obj/usr/src/tmp/usr/src/lib/clang/libllvmsupport created for /usr/src/lib/clang/libllvmsupport rm -f .depend CC=3D'clang' mkdep -f .depend -a -I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/include -I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/tools/clang/inc= lude -I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support -I. -I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/../../lib/clang= /include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_DEFAULT_TARGET_TRIPLE=3D\"x86_64-unknown-freebsd10.0\" -DDEFAULT_SYSROOT=3D\"\" -I/usr/obj/usr/src/tmp/legacy/usr/include -std=3Dgnu99 /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/regco= mp.c /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/reger= ror.c /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/regex= ec.c /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/regfr= ee.c /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/regst= rlcpy.c /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/regco= mp.c:38:10: fatal error: 'sys/types.h' file not found #include ^ 1 error generated. mkdep: compile failed *** [.depend] Error code 1 Stop in /usr/src/lib/clang/libllvmsupport. *** [bootstrap-tools] Error code 1 Stop in /usr/src. *** [_bootstrap-tools] Error code 1 Stop in /usr/src. *** [buildworld] Error code 1 Stop in /usr/src. --------------060907030507050307080104 Content-Type: text/plain; charset=us-ascii; name="src.conf" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="src.conf" =2Eif !defined(NO_CLANG) CC=3D clang CXX=3D clang++ CPP=3D clang-cpp ## Don't die on warnings NO_WERROR=3D WERROR=3D ### Don't forget this when using Jails! #NO_FSCHG=3D # CFLAGS=3D -pipe -O3 -fno-strict-aliasing COPTFLAGS=3D -pipe -O3 =2Eendif # WITH_CLANG_IS_CC=3D YES # WITH_CLANG=3D YES WITH_CLANG_EXTRAS=3D YES # WITH_BIND_LIBS=3D YES WITH_BIND_SIGCHASE=3D YES WITH_BIND_LARGE_FILE=3D YES # WITH_IDEA=3D YES WITH_HESIOD=3D YES # #WITH_ICONV=3D YES #WITH_BSD_GREP=3D YES WITH_BSD_SORT=3D YES # WITH_LIBCPLUSPLUS=3D YES # #WITH_OFED=3D YES # #PORTS_MODULES=3D x11/nvidia-driver # MALLOC_PRODUCTION=3D YES --------------060907030507050307080104-- --------------enigEFF48EA4D047EC40F5E58B45 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.19 (FreeBSD) iQEcBAEBAgAGBQJPvU39AAoJEOgBcD7A/5N8rgMH/i11WQd7RtplyLqAosVx6RcF uaOpSg9/Z4dK7UvY61Lq+tstEv/qoKS+5l9wb2yIf1RlICCKvYgztqisy9UEhLnr Gdn56ugrFbMcXVBwJ3uIW9Q6UKG4pA5DyVfYnOSnjcAuCJ127cw5UjhNTOsKd7aJ D5Ex+AqqOxvkoqHed12NkfwBxrPAMk84s8YlR4rt0/D8YS8XkXMIp3PpbjSWg4gZ tUC3gg6XRqPukx4SdiJ9Mpgp0HcYmsRFCNe2kJQedNu9NVeB/C+jiBbz1uGew2Gn +dxUdPs9LaA3pOM6yjHDIxyXliPm9mlNh98H6qMZHCf5J9uqFKDIm6E2vERRm84= =HfyN -----END PGP SIGNATURE----- --------------enigEFF48EA4D047EC40F5E58B45-- From owner-freebsd-questions@FreeBSD.ORG Wed May 23 21:40:42 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E0ABB106564A; Wed, 23 May 2012 21:40:41 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 981028FC18; Wed, 23 May 2012 21:40:41 +0000 (UTC) Received: by obcni5 with SMTP id ni5so15674747obc.13 for ; Wed, 23 May 2012 14:40:41 -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=VmHnNiPEOlHBaz6B5/BI/dBly2j7FNj3pfdPascCFyc=; b=t9e/3L6GO26iXYkAncdyEh6EoV8eTsQpOAO7pyydXIxYTV6E9CwlpOdIfcKeoL8QPW mLKnPi2LisDvpkFDy+xT9lGnSz3ozDDn3iLrnGq6dtkM9M15oOgVT1iXdYk9ekE8DWBZ ye9r/bdLEEsLTRvF32nwxyivcnJAKsvARyRsJ3+9kOkHS/OSU9h/i8yzgOwQDAHKtREu D1zr8PYKn3Jh7+DHsLVXpKETdtS/KV36cFgN6R0q+zJaAxROsQaUz5CN8oXgOV7R4LKr 1HGtx/a6cLTyfaioyXjsPMBA/AUwlM7WBzMjhCRXYO4LFsiuR/OWwy2saJ05EcEYN6O3 cs7A== MIME-Version: 1.0 Received: by 10.60.7.200 with SMTP id l8mr28037230oea.52.1337809240924; Wed, 23 May 2012 14:40:40 -0700 (PDT) Received: by 10.76.153.72 with HTTP; Wed, 23 May 2012 14:40:40 -0700 (PDT) In-Reply-To: <4FBD4DF5.5080502@zedat.fu-berlin.de> References: <4FB7A63C.70509@zedat.fu-berlin.de> <4FBD4DF5.5080502@zedat.fu-berlin.de> Date: Wed, 23 May 2012 14:40:40 -0700 Message-ID: From: Garrett Cooper To: "O. Hartmann" Content-Type: text/plain; charset=ISO-8859-1 Cc: Current FreeBSD , freebsd-questions@freebsd.org Subject: Re: CURRENT: buildworld fails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 21:40:42 -0000 On Wed, May 23, 2012 at 1:52 PM, O. Hartmann wrote: > On 05/19/12 22:33, Garrett Cooper wrote: >> On Sat, May 19, 2012 at 6:55 AM, O. Hartmann >> wrote: >>> Since approx. a week for now, I can not build FreeBSD 10.0-CURRENT/amd64 >>> anymore! This happens to be on ALL(!) FreeBSD 10 boxes around here I >>> maintain. >> >> ... >> >>> b) build and install /usr/src/lib via "make clean cleandepend depend obj >>> all install" doesn't work anymore, it fails with >>> ."/usr/src/lib/Makefile", line 179: Malformed conditional (${MK_NAND} != >>> "no") >>> "/usr/src/lib/Makefile", line 181: if-less endif >> >> Your mk files in /usr/share/mk are out of synch with your build tree. >> If you opt out of using buildworld, then you need to do 'make -C >> share/mk install' beforehand. ... > My problems occured around the May, 15th and hit ALL of my FreeBSD > 10-CURRENT/amd64 boxes on which I do most time daily buildworld. Two of > them could be fixed, I did this two days ago by The problem has been on and off "mild" breakage for the past couple days (yacc, format string qualifier issues, etc). > cd /usr/src > make installincludes > make -C {lib|libexec|sbin ...} clean cleandepend depend obj all install > > On one specific machine it didn't work that way. I found out that > several binaries in the system's tree remained dated on 15th May, so > like "ld" or other essential pieces. Therefore I suspect a crushed system. I ran into a similar issue when my copy of mtree went MIA after a freshly installed world corrupted my VM during an nlm panic (thankfully it was my VM and not something else). > Does anyhow do have any idea how to repair the system? Trial and error for the base system is the only method I'm aware of right now, but if portions of the base system are corrupted and not others, I would suspect all of the contents on disk (esp after recent reports about UFS filesystem corruption with SUJ). > I can compile a kernel, but I can not compile ports (or even update them, I receive > multiple weird errors of missing header files or "changed" libstdc++.so. You can resolve the ports issue via another port that's shell based or C based. Memory serves me correctly it was ports-mgmt/port-maintenance-tools .. > The idea was to take a very recent binary installation set and install > this selective peice by piece over the existing installation, but I need > to preserve /etc and other directories. Any ideas ? You can save files that would be in the dist tarballs on the install media to another directory (/etc/*, customizations in /root, /usr, etc). Then you can extract the tarballs (I would use a test directory first though). Passing certain flags to tar to just copy out some binaries might help. > Help is appreciated and thanks in advance, Lesson to maybe learn: 1. Always have a backup machine running a stable version of FreeBSD that is fast enough that you can use to generate images and push out to machines on the fly. If not possible, always have a static toolchain on hand (I would assume that it's safe to say that anything listed in bootstrap-tools would be game for the toolchain). 2. Expect warts on CURRENT right after a major release cycle has run its course. If this is too much to worry about, don't run 10-CURRENT and instead run 9-STABLE, etc. Cheers, -Garrett From owner-freebsd-questions@FreeBSD.ORG Wed May 23 21:54:12 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0EE51065674 for ; Wed, 23 May 2012 21:54:12 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (gizmo.acns.msu.edu [35.8.1.43]) by mx1.freebsd.org (Postfix) with ESMTP id B4A2F8FC12 for ; Wed, 23 May 2012 21:54:12 +0000 (UTC) Received: from gizmo.acns.msu.edu (localhost [127.0.0.1]) by gizmo.acns.msu.edu (8.13.6/8.13.6) with ESMTP id q4NLn6SV071207 for ; Wed, 23 May 2012 17:49:06 -0400 (EDT) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: (from jerrymc@localhost) by gizmo.acns.msu.edu (8.13.6/8.13.6/Submit) id q4NLn6F3071206 for freebsd-questions@freebsd.org; Wed, 23 May 2012 17:49:06 -0400 (EDT) (envelope-from jerrymc) Date: Wed, 23 May 2012 17:49:06 -0400 From: Jerry McAllister To: freebsd-questions@freebsd.org Message-ID: <20120523214906.GA71149@gizmo.acns.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Subject: Dual Boot Windows 7 FreeBSd 8.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 21:54:13 -0000 Hi, I have been searching through questions and forums for information on dual booting FreeBSD 8.3 on a machine with Windows 7 already on it. My problem is that the posts seem to go around in circles and be contradictory. I am not sure which to believe. My new machine has two disk drives. Windows 7 is on ad0 and I want to put FreeBSD 8.3 on ad1, leaving W7 as is. So, I don't even have to shrink a primary slice to do this. I have dual booted Xp, Windows 98 and 95 with various FreeBSDs before with no problem. But, the story I keep hearing now seems to be that Windows 7 is more picky and will not work with the FreeBSD MBR. I am not sure why. At least some people seem to be claiming that I canNOT just do the install and put the FreeBSD MBR on the primary slices right from the sysnstall menu just like in the good old days - that the only way to make it work is to use something called 'Easybcd' to edit whatever Windows 7 puts in place rather than using the FreeBSD MBR and then use the MS MBR with whatever Easybcd does to it. Then again there were some posts that seemed to claim that using the FreeBSD MBR in the tried and true old way is just fine and everything just works. I'd like to think that is true. I really don't want to have to scrounge up install media and remake the Windows 7 just because I do some wrong thing or I would just smoke test it. I am really phobic when it comes to MS stuff. I don't need any fancy boot menu. What I have had in the past is just fine. I just want to select either of the OSen and get some stuff done. I expect to be booted to FreeBSD most of the time, but need to use some W7 now and then for powder point, etc. If someone who understands the process underlying the boot system and knows if Windows 7 really does require something else now, who can speak with confidence can enlighten us, I would certainly appreciate it. Thank you, ////jerry From owner-freebsd-questions@FreeBSD.ORG Wed May 23 22:30:41 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49CF1106566B; Wed, 23 May 2012 22:30:41 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 15FF78FC16; Wed, 23 May 2012 22:30:41 +0000 (UTC) Received: by pbbro2 with SMTP id ro2so11375724pbb.13 for ; Wed, 23 May 2012 15:30:40 -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 :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=9L2OEEm7OzRSx51qsNQvE2zo3+P2eulW0CuhLkKhV2s=; b=YH2839Ku+L4mfBNa+gvGNFWwATdKQn1QtQ29lebaEW+tdVaverM20DYVkkrmZNJ4ye reAYRtwUChOQMERYdVJrbfifqMJawHBgQOK3gJ1jwSQkAi/TjmIJhgWVAjhwIy3c2kUl hefNk7nM20rHJSa+qHFylPkp9jSlNoOWKAFhxziyTzvEd3BvrRl3BqtxFug+Ldsot7z4 b2xRaanwLFfl/RLqCPQow/ocB4NP2wVuojAWtULLGKky/dYqsZlb/Pk96QAUjork+r54 YvtF/LLi6SQBVVzMiuvXts1ufdz5A6wcJ4H/RW1UuSA8Wk9C3dLqDLKlwzpB6wh/PDbz ETDw== MIME-Version: 1.0 Received: by 10.68.232.129 with SMTP id to1mr5075523pbc.27.1337812240616; Wed, 23 May 2012 15:30:40 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.142.203.2 with HTTP; Wed, 23 May 2012 15:30:40 -0700 (PDT) In-Reply-To: References: <490F2075-3E4D-4F85-9935-937CED8FB10B@averesystems.com> Date: Wed, 23 May 2012 15:30:40 -0700 X-Google-Sender-Auth: hc1bGub3x6XFJXxtcw9PwZuAOiA Message-ID: From: Adrian Chadd To: Mark Felder Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-hackers@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 22:30:41 -0000 Hi, can you please, -please- file a PR? And place all of the above information in it so we don't lose it? If this is indeed the problem then I really think we should root cause why the driver and/or interrupt handling code is getting angry with the shared interrupt. I'd also appreciate it if you and the other people who can reproduce this could work with the em/mpt driver people and root cause why this is going. I think having FreeBSD on vmware work stable out of the box without these kinds of tweaks is the way to go - who knows what else is lurking here.. I'm very very glad you've persisted with this and if I had them, I'd send you a "FreeBSD persistent bug reporter!" t-shirt. Thanks, Adrian From owner-freebsd-questions@FreeBSD.ORG Wed May 23 22:31:49 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6162106566B for ; Wed, 23 May 2012 22:31:49 +0000 (UTC) (envelope-from lobo@bsd.com.br) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 51C738FC22 for ; Wed, 23 May 2012 22:31:49 +0000 (UTC) Received: by vcbfy7 with SMTP id fy7so1625755vcb.13 for ; Wed, 23 May 2012 15:31:43 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:subject:date:user-agent:references:in-reply-to :x-kmail-markup:mime-version:content-type:content-transfer-encoding :message-id:x-gm-message-state; bh=TEp0aH+G2lblZuris7gfmpZYxX/+vr8FLNps+f6HOc0=; b=KGYWk5HqmIDF+8fub+LQUPikhglChzIBbDegh+Fnz5f3mNaSpitTRWfowwflrG71Ei gkzevRke0HxUf2CFQBHJxm8eejnFoaLcQk/HGOUYrZplqBHPJubIwTxInVGFHDNWLmgr FkeZARhSGyIWGWGWn8t+LViPz25adgAy/QamDDx3yUK/Tzyf6u8OJs2DN3Szy4gqfyNg JDLowfwAKNTuDA+nYJP/6FWRukRrCRh25vR1eq7CsD/Vg7o9Yu+j89EEdD9TP5A07QGM 3oMWuXZQ2FdRQh+r/IWsBv7mmKkObZ8udGcW42ME9YSv8CYznJ4Rv6pFoHc4BRQWvAow OgcA== Received: by 10.52.95.147 with SMTP id dk19mr1500040vdb.106.1337812303040; Wed, 23 May 2012 15:31:43 -0700 (PDT) Received: from papi.localnet ([187.113.167.110]) by mx.google.com with ESMTPS id i10sm19581886vdw.21.2012.05.23.15.31.40 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 23 May 2012 15:31:42 -0700 (PDT) From: Mario Lobo To: freebsd-questions@freebsd.org Date: Wed, 23 May 2012 19:32:06 -0300 User-Agent: KMail/1.13.7 (FreeBSD/8.2-STABLE; KDE/4.7.4; amd64; ; ) References: <20120523214906.GA71149@gizmo.acns.msu.edu> In-Reply-To: <20120523214906.GA71149@gizmo.acns.msu.edu> X-KMail-Markup: true MIME-Version: 1.0 Message-Id: <201205231932.06706.lobo@bsd.com.br> X-Gm-Message-State: ALoCoQlxCiE0pHyP/55hZTO6g9/Z3X/xvlhsWKG3cOwldnptUoviX/hPGjEBZPRmTYKRAGUrrPVV Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Dual Boot Windows 7 FreeBSd 8.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 22:31:49 -0000 On Wednesday 23 May 2012 18:49:06 Jerry McAllister wrote: > Hi, > > I have been searching through questions and forums for information > on dual booting FreeBSD 8.3 on a machine with Windows 7 already on it. > > My problem is that the posts seem to go around in circles and be > contradictory. I am not sure which to believe. > > My new machine has two disk drives. Windows 7 is on ad0 and I want > to put FreeBSD 8.3 on ad1, leaving W7 as is. So, I don't even have > to shrink a primary slice to do this. > > > Thank you, > > ////jerry > _______________________________________________ Since each system is going to be on different physical drives, why don't you make things easy for you and just use the BIOS boot menu to choose which drive to boot from? -- Mario Lobo http://www.mallavoodoo.com.br FreeBSD since 2.2.8 [not Pro-Audio.... YET!!] (99% winblows FREE) From owner-freebsd-questions@FreeBSD.ORG Wed May 23 22:42:20 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 736F3106566B for ; Wed, 23 May 2012 22:42:20 +0000 (UTC) (envelope-from vermaden@interia.pl) Received: from smtpo.poczta.interia.pl (smtpo.poczta.interia.pl [217.74.65.208]) by mx1.freebsd.org (Postfix) with ESMTP id 2D5888FC08 for ; Wed, 23 May 2012 22:42:19 +0000 (UTC) Date: Thu, 24 May 2012 00:19:18 +0200 From: vermaden To: freebsd-questions@freebsd.org X-Mailer: interia.pl/pf09 Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=interia.pl; s=biztos; t=1337811558; bh=yAhd2fy8NwkHk5Apz96UZ8LdWCyf8c/JP2doPfqzusI=; h=Date:From:Subject:To:X-Mailer:Message-Id:MIME-Version: Content-Type:Content-Transfer-Encoding; b=QvbnE5kzPjzIWtCWo9G/CTfyBwjhaps312M1i8K4BFroOcsVqAsUG8OxFgiH5FpDr wRaJ3VR6142twwTZVoAsN81vqULHi7ldT1qFZ6QgsEvnoqeBR2wkpWc+eVXpH/MFWM 5KVrEwudms5psCTRiPPIMFug++wZqbgFGh7sKC2M= Subject: Purpose of FreeBSD X.Y-RELEASE Hardware Notes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 22:42:20 -0000 Gentleman (and ladies), what is the purpose of the Hardware Notes when it does not provide any REAL information about what hardware is supported? A painful example, I checked if SCSI Controller Adaptec 29320 is supported on FreeBSD and the 'official' information is that it is supported with the AHD(4) driver, like below. > [i386,sparc64,ia64,amd64] The ahd(4) driver supports the following: > Adaptec AIC7901 host adapter chip > Adaptec AIC7901A host adapter chip > Adaptec AIC7902 host adapter chip > *Adaptec 29320 host adapter* > Adaptec 39320 host adapter > Many motherboards with on-board SCSI support But after connecting this Adaptec 29320 to the system it shits the terminal from top to bottom and all I have are issues with it, that is called officially supported hardware? There should be [*] sign on that device that this device ID is known, but its support is less then good. Grepping the Internet shows that all people suggest to put that SCSI card directly into the bin and get something else to work on FreeBSD. Regards, vermaden and nothing more=20 --=20 ... From owner-freebsd-questions@FreeBSD.ORG Wed May 23 22:46:23 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9960C106566B for ; Wed, 23 May 2012 22:46:23 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (gizmo.acns.msu.edu [35.8.1.43]) by mx1.freebsd.org (Postfix) with ESMTP id 5DBFA8FC0A for ; Wed, 23 May 2012 22:46:23 +0000 (UTC) Received: from gizmo.acns.msu.edu (localhost [127.0.0.1]) by gizmo.acns.msu.edu (8.13.6/8.13.6) with ESMTP id q4NMfMUi071548; Wed, 23 May 2012 18:41:22 -0400 (EDT) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: (from jerrymc@localhost) by gizmo.acns.msu.edu (8.13.6/8.13.6/Submit) id q4NMfMS7071547; Wed, 23 May 2012 18:41:22 -0400 (EDT) (envelope-from jerrymc) Date: Wed, 23 May 2012 18:41:22 -0400 From: Jerry McAllister To: Mario Lobo Message-ID: <20120523224122.GA71528@gizmo.acns.msu.edu> References: <20120523214906.GA71149@gizmo.acns.msu.edu> <201205231932.06706.lobo@bsd.com.br> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201205231932.06706.lobo@bsd.com.br> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: Dual Boot Windows 7 FreeBSd 8.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 22:46:23 -0000 On Wed, May 23, 2012 at 07:32:06PM -0300, Mario Lobo wrote: > On Wednesday 23 May 2012 18:49:06 Jerry McAllister wrote: > > Hi, > > > > I have been searching through questions and forums for information > > on dual booting FreeBSD 8.3 on a machine with Windows 7 already on it. > > > > My problem is that the posts seem to go around in circles and be > > contradictory. I am not sure which to believe. > > > > My new machine has two disk drives. Windows 7 is on ad0 and I want > > to put FreeBSD 8.3 on ad1, leaving W7 as is. So, I don't even have > > to shrink a primary slice to do this. > > > > > > Thank you, > > > > ////jerry > > _______________________________________________ > > > Since each system is going to be on different physical drives, why don't you > make things easy for you and just use the BIOS boot menu to choose which > drive to boot from? That surely seems the hard way. Why interrupt the boot and go in to the BIOS every time when that is all provided for in the boot structure? ////jerry > > -- > Mario Lobo > http://www.mallavoodoo.com.br > FreeBSD since 2.2.8 [not Pro-Audio.... YET!!] (99% winblows FREE) > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Wed May 23 22:52:48 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AECB106566C for ; Wed, 23 May 2012 22:52:48 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by mx1.freebsd.org (Postfix) with ESMTP id 438208FC0A for ; Wed, 23 May 2012 22:52:48 +0000 (UTC) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.14.4/8.14.4) with ESMTP id q4NMqeEn064732; Wed, 23 May 2012 18:52:40 -0400 (EDT) (envelope-from doug@fledge.watson.org) Received: from localhost (doug@localhost) by fledge.watson.org (8.14.4/8.14.4/Submit) with ESMTP id q4NMqe4k064729; Wed, 23 May 2012 18:52:40 -0400 (EDT) (envelope-from doug@fledge.watson.org) Date: Wed, 23 May 2012 18:52:40 -0400 (EDT) From: doug To: Jerry McAllister In-Reply-To: <20120523214906.GA71149@gizmo.acns.msu.edu> Message-ID: References: <20120523214906.GA71149@gizmo.acns.msu.edu> 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.2.3 (fledge.watson.org [127.0.0.1]); Wed, 23 May 2012 18:52:41 -0400 (EDT) Cc: freebsd-questions@freebsd.org Subject: Re: Dual Boot Windows 7 FreeBSd 8.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: doug@safeport.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 22:52:48 -0000 On Wed, 23 May 2012, Jerry McAllister wrote: > Hi, > > I have been searching through questions and forums for information > on dual booting FreeBSD 8.3 on a machine with Windows 7 already on it. > > My problem is that the posts seem to go around in circles and be > contradictory. I am not sure which to believe. > > My new machine has two disk drives. Windows 7 is on ad0 and I want > to put FreeBSD 8.3 on ad1, leaving W7 as is. So, I don't even have > to shrink a primary slice to do this. > > I have dual booted Xp, Windows 98 and 95 with various FreeBSDs before > with no problem. But, the story I keep hearing now seems to be that > Windows 7 is more picky and will not work with the FreeBSD MBR. I am > not sure why. I have only done this with systems up to 8.1. With one disk you obviously have to shrink the partition. Depending on the size and how long windows 7 has been mucking with the disk there may be non-movable files.So you could need something a bit more sophicated the the native partition manager. Past that until 9.0, which works perfectly, installing an MBR removes the windows 7 MBR. >From scratch using FreeBSD to make at least three partitions, installing FreeBSD in the third one and reinstalling from a restore set (which will most like use partitions 1 and 2) and then using a windows 7 compliant boot manager works. If you can shrink the windows partition to get enough space, make a windows restore set and then install FreeBSD and a boot manager. I have done this with 7.x, 8.0 and 8.1. I did a post I can probably find. > At least some people seem to be claiming that I canNOT just do the > install and put the FreeBSD MBR on the primary slices right from the > sysnstall menu just like in the good old days - that the only way to > make it work is to use something called 'Easybcd' to edit whatever > Windows 7 puts in place rather than using the FreeBSD MBR and then > use the MS MBR with whatever Easybcd does to it. Easybcd is what I used. > Then again there were some posts that seemed to claim that using the > FreeBSD MBR in the tried and true old way is just fine and everything > just works. I'd like to think that is true. Me too, but until 9.0 that has not been my experience. > I really don't want to have to scrounge up install media and remake > the Windows 7 just because I do some wrong thing or I would just > smoke test it. I am really phobic when it comes to MS stuff. If you can shrink the partition its fairly straight foward. The main trick is once you have shrunk the partion you must make a restore set because if you have to restore, the process rewrites everything, partition table and MBE as well as the windows partition. So if you do not and have to restore, your FreeBSD partition will disappear. > I don't need any fancy boot menu. What I have had in the past is > just fine. I just want to select either of the OSen and get some > stuff done. I expect to be booted to FreeBSD most of the time, but > need to use some W7 now and then for powder point, etc. > > If someone who understands the process underlying the boot system and > knows if Windows 7 really does require something else now, who can speak > with confidence can enlighten us, I would certainly appreciate it. Using FreeBSD 9.0 takes away the need for a third party boot manager but all the rest of the above applies, I am pretty sure. All my experience with windows 7 has been with AMD64, a Dell laptop, and a cute little HP thingy that I got for $300. If it is helpful I can probably dig up some details but the 8.x stuff I did was a year ago so the frog of war dims my recollection of details. From owner-freebsd-questions@FreeBSD.ORG Wed May 23 23:02:11 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 58046106566C; Wed, 23 May 2012 23:02:11 +0000 (UTC) (envelope-from vermaden@interia.pl) Received: from smtpo.poczta.interia.pl (smtpo.poczta.interia.pl [217.74.65.208]) by mx1.freebsd.org (Postfix) with ESMTP id 10FD78FC0A; Wed, 23 May 2012 23:02:10 +0000 (UTC) Date: Thu, 24 May 2012 01:02:09 +0200 From: vermaden To: freebsd-questions@freebsd.org, freebsd-scsi@FreeBSD.org, freebsd-hardware@FreeBSD.org X-Mailer: interia.pl/pf09 Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=interia.pl; s=biztos; t=1337814130; bh=M87CDJ82L4afYoGkQuWlu/BHMvH5GeFIlP/fwC2YzCQ=; h=Date:From:Subject:To:X-Mailer:Message-Id:MIME-Version: Content-Type:Content-Transfer-Encoding; b=XluXSjZ4AuCbc/SPfQyY1P0S5bim70T7lVKciYsAPnUz2gIInkvLs49ZmWbhcasKN 5TNNiCIIT/CEcPkvH7XD2rTCVvog25LtKapXUfeKAh3XOLDYfKlgNTOWCz4lmE9VcS T1uUktqmOaYw+xjxhrdMRE3mrR17sdzExJZDvSPw= Cc: Subject: Working and Supported SCSI Controller X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 23:02:11 -0000 Hi, as HARDWARE NOTES are next to useless: http://lists.freebsd.org/pipermail/freebsd-questions/2012-May/241164.html What *working* PCI/PCI-X SCSI controller do You guys suggest? Requirements: PCI/PCI-X Ultra160 or Ultra320 with one or more 68-pin intern= al connector Thanks in advance for Your suggestions, vermaden --=20 ... From owner-freebsd-questions@FreeBSD.ORG Wed May 23 23:10:31 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB5F81065670 for ; Wed, 23 May 2012 23:10:31 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id AAFE18FC12 for ; Wed, 23 May 2012 23:10:31 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id B98EF282B6; Thu, 24 May 2012 01:10:24 +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 q4NNAN8J003355; Thu, 24 May 2012 01:10:24 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Thu, 24 May 2012 01:10:23 +0200 From: Polytropon To: vermaden Message-Id: <20120524011023.6f5401c6.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-questions@freebsd.org Subject: Re: Working and Supported SCSI Controller X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 23:10:32 -0000 On Thu, 24 May 2012 01:02:09 +0200, vermaden wrote: > What *working* PCI/PCI-X SCSI controller do You guys suggest? > > Requirements: PCI/PCI-X Ultra160 or Ultra320 with one or more 68-pin internal connector I haven't looked into that topic for a long time, but in the past, I've had _no_ problems using Ataptec's 2940 type of controllers (either W or U, and UW). The ahc driver worked well with them. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Wed May 23 23:18:14 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC761106564A for ; Wed, 23 May 2012 23:18:14 +0000 (UTC) (envelope-from lobo@bsd.com.br) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 83F298FC08 for ; Wed, 23 May 2012 23:18:14 +0000 (UTC) Received: by vbmv11 with SMTP id v11so6859031vbm.13 for ; Wed, 23 May 2012 16:18:13 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:subject:date:user-agent:references:in-reply-to :x-kmail-markup:mime-version:content-type:content-transfer-encoding :message-id:x-gm-message-state; bh=u5VvaFy7tTfLF9QtT8pFsAd6UisoaE/DfW8GIUZ5jSE=; b=KzrkyXdW0CqrQ050Z6FJewjVPeAloPeGuPjvS0J1SiCV0iV39tduxe97Pz6sOqNlLT 3HtDateqRDlC2N3MKWKhc/4x0bmiguPG+8w7bvHqUCMCafi+xgu3zY7F/gImOl6xFHJ+ vk2XJUtWIBPExXIEGZa9636+tZDI6zw94ybSjO+kyE0cNH4J1VMZiQvcrzMO/xEf49nd UKafV80Amxw1t2Up5mpLsocj/ZjF8AI77OZ6ECgRiTP2OSBiTmVeS9vX6ZwiI7VqG1nL keB0EhZc/NLp2z+pDFx8pc0hXGDlWJjGQP4dHqXJOY/a60kfUkDwmbHvcj/1bQO8OQoL DnZg== Received: by 10.52.100.9 with SMTP id eu9mr13814640vdb.28.1337815093028; Wed, 23 May 2012 16:18:13 -0700 (PDT) Received: from papi.localnet ([187.113.167.110]) by mx.google.com with ESMTPS id t15sm25023905vdj.3.2012.05.23.16.18.10 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 23 May 2012 16:18:12 -0700 (PDT) From: Mario Lobo To: freebsd-questions@freebsd.org Date: Wed, 23 May 2012 20:18:36 -0300 User-Agent: KMail/1.13.7 (FreeBSD/8.2-STABLE; KDE/4.7.4; amd64; ; ) References: <20120523214906.GA71149@gizmo.acns.msu.edu> <201205231932.06706.lobo@bsd.com.br> <20120523224122.GA71528@gizmo.acns.msu.edu> In-Reply-To: <20120523224122.GA71528@gizmo.acns.msu.edu> X-KMail-Markup: true MIME-Version: 1.0 Message-Id: <201205232018.36514.lobo@bsd.com.br> X-Gm-Message-State: ALoCoQk4PjMuoh/GmlILboe2/rvYWKv5t+ovRfsF9eobm79KQFgSVn4ZAXSGrOI++ixVwirfhCyT Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Dual Boot Windows 7 FreeBSd 8.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 23:18:14 -0000 On Wednesday 23 May 2012 19:41:22 Jerry McAllister wrote: > > Since each system is going to be on different physical drives, why don't > > you make things easy for you and just use the BIOS boot menu to choose > > which drive to boot from? > > That surely seems the hard way. Why interrupt the boot and go > in to the BIOS every time when that is all provided for in the > boot structure? > > ////jerry Because if you want to switch systems you're gonna have to reboot anyway! The boot manager is nothing but an automatic interruption of the boot process to give you a chance to press a key for the system you want to boot from. But you're right. Pressing 3 keys instead of one or none IS the hard way. just my 0,02... -- Mario Lobo http://www.mallavoodoo.com.br FreeBSD since 2.2.8 [not Pro-Audio.... YET!!] (99% winblows FREE) From owner-freebsd-questions@FreeBSD.ORG Wed May 23 23:57:12 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 768521065670 for ; Wed, 23 May 2012 23:57:12 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 45FA88FC0A for ; Wed, 23 May 2012 23:57:12 +0000 (UTC) Received: from mail7.sea5.speakeasy.net (mail7.sea5.speakeasy.net [69.17.117.52]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 70232A7271D for ; Wed, 23 May 2012 19:54:51 -0400 (EDT) Received: (qmail 15111 invoked from network); 23 May 2012 23:54:50 -0000 Received: by simscan 1.4.0 ppid: 5024, pid: 4223, t: 0.1830s scanners: clamav: 0.88.2/m:52/d:13513 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail7.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2012 23:54:50 -0000 Message-ID: <4FBD78CA.9090208@speakeasy.org> Date: Wed, 23 May 2012 16:54:50 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20120523214906.GA71149@gizmo.acns.msu.edu> In-Reply-To: <20120523214906.GA71149@gizmo.acns.msu.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail7.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Re: Dual Boot Windows 7 FreeBSd 8.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 23:57:12 -0000 On 05/23/12 14:49, Jerry McAllister wrote: > Hi, > I have a dual boot system, windows 7 (ad0) and FreeBSD 9-stable (ad1). I moved back to BIOS boot after (I think) windows upgrade stabbed ad0. I found the system with a blank screen in the AM. Using BIOS boot, The first windows screen had an update message. Tom Dean From owner-freebsd-questions@FreeBSD.ORG Thu May 24 00:04:08 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A322106566C; Thu, 24 May 2012 00:04:08 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (alchemy.franken.de [194.94.249.214]) by mx1.freebsd.org (Postfix) with ESMTP id 0BD978FC08; Thu, 24 May 2012 00:04:07 +0000 (UTC) Received: from alchemy.franken.de (localhost [127.0.0.1]) by alchemy.franken.de (8.14.4/8.14.4/ALCHEMY.FRANKEN.DE) with ESMTP id q4O041sk019368; Thu, 24 May 2012 02:04:01 +0200 (CEST) (envelope-from marius@alchemy.franken.de) Received: (from marius@localhost) by alchemy.franken.de (8.14.4/8.14.4/Submit) id q4O041tJ019367; Thu, 24 May 2012 02:04:01 +0200 (CEST) (envelope-from marius) Resent-Message-Id: <201205240004.q4O041tJ019367@alchemy.franken.de> Date: Thu, 24 May 2012 01:57:04 +0200 From: Marius Strobl To: vermaden Message-ID: <20120523235704.GA19290@alchemy.franken.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Resent-From: marius@alchemy.franken.de Resent-Date: Thu, 24 May 2012 02:04:01 +0200 Resent-To: freebsd-questions@freebsd.org, freebsd-scsi@freebsd.org, freebsd-hardware@freebsd.org Cc: Subject: Re: Working and Supported SCSI Controller X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 00:04:08 -0000 On Thu, May 24, 2012 at 01:02:09AM +0200, vermaden wrote: > Hi, > > as HARDWARE NOTES are next to useless: > http://lists.freebsd.org/pipermail/freebsd-questions/2012-May/241164.html > > What *working* PCI/PCI-X SCSI controller do You guys suggest? > > Requirements: PCI/PCI-X Ultra160 or Ultra320 with one or more 68-pin internal connector > LSI 53C1010-66 (Ultra160, sym(4)) or 53C1030 (Ultra320, mpt(4)) based ones. Marius From owner-freebsd-questions@FreeBSD.ORG Thu May 24 00:07:27 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EC8F106566B for ; Thu, 24 May 2012 00:07:27 +0000 (UTC) (envelope-from garya@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 83B0E8FC12 for ; Thu, 24 May 2012 00:07:03 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4O06udO014138; Wed, 23 May 2012 18:06:57 -0600 (MDT) (envelope-from garya@dreamchaser.org) Message-ID: <4FBD7BA0.7070502@dreamchaser.org> Date: Wed, 23 May 2012 18:06:56 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111228 Thunderbird/9.0 MIME-Version: 1.0 To: goksin.akdeniz@gmail.com References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> In-Reply-To: <20120522234510.a406941d.goksin.akdeniz@gmail.com> Content-Type: text/plain; charset=ISO-8859-9; format=flowed Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Wed, 23 May 2012 18:06:57 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: openoffice on 9.0 (JDK issues) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 00:07:27 -0000 On 05/22/12 14:45, Gökþin Akdeniz wrote: > The OpenOffice.org package is a big one and consumes a lot of bandwith. > Therefore some may not be available. > > Try to build OpenOffice.org from ports. It takes time, be patient. ok, attempting that... After copying the jdk-6u3-fcs... files that it complained about from the oracle site: OO requires ant, but the ant install fails: 123 /usr/ports/devel/apache-ant#make install ===> Installing for apache-ant-1.8.2_1 ===> apache-ant-1.8.2_1 depends on executable: classpath - found ===> apache-ant-1.8.2_1 depends on file: /usr/local/jdk1.6.0/bin/java - not found ===> Verifying install for /usr/local/jdk1.6.0/bin/java in /usr/ports/java/jdk16 ===> Vulnerability check disabled, database not found ===> License check disabled, port has not defined LICENSE ===> Found saved configuration for jdk-1.6.0.3p4_27 IMPORTANT: To build the JDK 1.6.0 port, you should have at least 2.5Gb of free disk space in the build area! Due to licensing restrictions, certain files must be fetched manually. Please open http://www.oracle.com/technetwork/java/javase/downloads/index.html in a web browser and follow the "Download" link for "JDK DST Timezone Update Tool - 1_3_42" to obtain the time zone update file, tzupdater-1_3_42-2011k.zip. Please place the downloaded file(s) in /usr/ports/distfiles and restart the build. *** Error code 1 Stop in /usr/ports/java/jdk16. *** Error code 1 Stop in /usr/ports/java/jdk16. *** Error code 1 Stop in /usr/ports/devel/apache-ant. The oracle site does not contain the proper version of tzupdater -- it includes a more recent version, 1_3_47-2012c.zip. What's the right way to get around that issue? Thanks, Gary From owner-freebsd-questions@FreeBSD.ORG Thu May 24 00:35:41 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B6441065670 for ; Thu, 24 May 2012 00:35:41 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by mx1.freebsd.org (Postfix) with ESMTP id BD0F38FC0A for ; Thu, 24 May 2012 00:35:40 +0000 (UTC) Received: by wibhj8 with SMTP id hj8so4266695wib.13 for ; Wed, 23 May 2012 17:35:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; bh=yZ4jGXmUFQDPxki0MoAONz4NTOdAA0BzJQVx7DZTj1Q=; b=BbWJ/Ak1yXYjNmJx/q6JdesefnATxY0HJJcHMW1cRSvV80hXe2E3uqXEvbx7c0StX7 q32cs6W6jhJw2UU9mFVXfeQ3cez1EAkA3p8ag+zYMNHzmqmgjVfBUmaXWpDKuNQaDQmi Hw9tfu4zl2Ggx9V9QP14yP0eiupZ0gzBAcKbdzb4EeGN48zY22ZCyvjYb7lY+jxnfeyf FhWh9adzrnAAFX/OHRuxABks0SlC0dg7X/oY0DrD7+4u4mWRkHC5pxIFps5aK5SisUsw JNA5eCDxBm2gHn9TTCuqVwh8+k1Piuz+rVAr+qU50H+1I7/qUmIKmLv9nQClA/oBDTbO j1zQ== Received: by 10.216.197.4 with SMTP id s4mr2335853wen.181.1337819739726; Wed, 23 May 2012 17:35:39 -0700 (PDT) Received: from gumby.homeunix.com (87-194-105-247.bethere.co.uk. [87.194.105.247]) by mx.google.com with ESMTPS id k8sm2101082wia.6.2012.05.23.17.35.36 (version=SSLv3 cipher=OTHER); Wed, 23 May 2012 17:35:38 -0700 (PDT) Date: Thu, 24 May 2012 01:35:34 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20120524013534.7b5038cf@gumby.homeunix.com> In-Reply-To: <1800315639.3547775.1337736644930.JavaMail.root@md03.insight.synacor.com> References: <4FBC1B06.6060102@dreamchaser.org> <1800315639.3547775.1337736644930.JavaMail.root@md03.insight.synacor.com> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: portsnap update won't update original /usr/ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 00:35:41 -0000 On Tue, 22 May 2012 21:30:44 -0400 (EDT) Thomas Mueller wrote: > ----- Original Message ----- > From: Gary Aitken > To: freebsd-questions@freebsd.org > Sent: Tue, 22 May 2012 19:02:30 -0400 (EDT) > Subject: portsnap update won't update original /usr/ports > > According to the handbook, one can do > portsnap fetch > portsnap update > and the update will work with a previously created ports tree; > I presume this includes one created during system install. It says: "If you are running Portsnap for the first time, extract the snapshot into /usr/ports: # portsnap extract If you already have a populated /usr/ports and you are just updating, run the following command instead..." If you have the tree from the disk then that means you are running portsnap for the first time, the second sentence refers to a /usr/ports populated by a portsnap extract. > ---- My response: ---- > > Now I wonder if it's feasible to switch between "portsnap fetch > update" and csup , or if it's strictly one or the > other. You'll probably get away with it most of the time, but it's not safe to mix them. From owner-freebsd-questions@FreeBSD.ORG Thu May 24 02:04:56 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF2BB106564A for ; Thu, 24 May 2012 02:04:56 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 8B14B8FC12 for ; Thu, 24 May 2012 02:04:55 +0000 (UTC) Received: from mr16.lnh.mail.rcn.net ([207.172.157.36]) by smtp02.lnh.mail.rcn.net with ESMTP; 23 May 2012 22:04:49 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr16.lnh.mail.rcn.net (MOS 4.3.4-GA) with ESMTP id BTQ90356; Wed, 23 May 2012 22:04:49 -0400 Received-SPF: None identity=pra; client-ip=209.6.86.84; receiver=smtp01.lnh.mail.rcn.net; envelope-from="roberthuff@rcn.com"; x-sender="roberthuff@rcn.com"; x-conformance=sidf_compatible Received-SPF: Neutral identity=mailfrom; client-ip=209.6.86.84; receiver=smtp01.lnh.mail.rcn.net; envelope-from="roberthuff@rcn.com"; x-sender="roberthuff@rcn.com"; x-conformance=sidf_compatible; x-record-type="v=spf1" Received-SPF: None identity=helo; client-ip=209.6.86.84; receiver=smtp01.lnh.mail.rcn.net; envelope-from="roberthuff@rcn.com"; x-sender="postmaster@jerusalem.litteratus.org.litteratus.org"; x-conformance=sidf_compatible Received: from 209-6-86-84.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.86.84]) by smtp01.lnh.mail.rcn.net with ESMTP; 23 May 2012 22:04:49 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <20413.38720.685986.900426@jerusalem.litteratus.org> Date: Wed, 23 May 2012 22:04:48 -0400 To: Polytropon In-Reply-To: <20120524011023.6f5401c6.freebsd@edvax.de> References: <20120524011023.6f5401c6.freebsd@edvax.de> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr16.lnh.mail.rcn.net) Cc: vermaden , freebsd-questions@freebsd.org Subject: Re: Working and Supported SCSI Controller X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 02:04:56 -0000 Polytropon writes: > On Thu, 24 May 2012 01:02:09 +0200, vermaden wrote: > > What *working* PCI/PCI-X SCSI controller do You guys suggest? > > > > Requirements: PCI/PCI-X Ultra160 or Ultra320 with one or more > > 68-pin internal connector > > I haven't looked into that topic for a long time, but in > the past, I've had _no_ problems using Ataptec's 2940 > type of controllers (either W or U, and UW). The ahc > driver worked well with them. Agreed. Adaptec has the reputation of being expensive but robust and well-supported; my experience confirms all three. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Thu May 24 02:06:44 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FC29106566B for ; Thu, 24 May 2012 02:06:44 +0000 (UTC) (envelope-from garya@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id DF4698FC1A for ; Thu, 24 May 2012 02:06:43 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4O26g6t014456; Wed, 23 May 2012 20:06:43 -0600 (MDT) (envelope-from garya@dreamchaser.org) Message-ID: <4FBD97B2.9000408@dreamchaser.org> Date: Wed, 23 May 2012 20:06:42 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111228 Thunderbird/9.0 MIME-Version: 1.0 To: goksin.akdeniz@gmail.com References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> In-Reply-To: <4FBD7BA0.7070502@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-9; format=flowed Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Wed, 23 May 2012 20:06:43 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: openoffice on 9.0 (JDK issues) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 02:06:44 -0000 Never mind... Not sure how to get around the issue posted, but a portupdate solved the problem -- now building apache-oo instead of oo On 05/23/12 18:06, Gary Aitken wrote: > On 05/22/12 14:45, Gökþin Akdeniz wrote: > >> The OpenOffice.org package is a big one and consumes a lot of bandwith. >> Therefore some may not be available. >> >> Try to build OpenOffice.org from ports. It takes time, be patient. > > ok, attempting that... > After copying the jdk-6u3-fcs... files that it complained about from the > oracle site: > > OO requires ant, but the ant install fails: > > 123 /usr/ports/devel/apache-ant#make install > ===> Installing for apache-ant-1.8.2_1 > ===> apache-ant-1.8.2_1 depends on executable: classpath - found > ===> apache-ant-1.8.2_1 depends on file: /usr/local/jdk1.6.0/bin/java - > not found > ===> Verifying install for /usr/local/jdk1.6.0/bin/java in > /usr/ports/java/jdk16 > ===> Vulnerability check disabled, database not found > ===> License check disabled, port has not defined LICENSE > ===> Found saved configuration for jdk-1.6.0.3p4_27 > > IMPORTANT: To build the JDK 1.6.0 port, you should have at least > 2.5Gb of free disk space in the build area! > > > Due to licensing restrictions, certain files must be fetched manually. > > Please open > http://www.oracle.com/technetwork/java/javase/downloads/index.html > in a web browser and follow the "Download" link for > "JDK DST Timezone Update Tool - 1_3_42" to obtain the > time zone update file, tzupdater-1_3_42-2011k.zip. > > Please place the downloaded file(s) in /usr/ports/distfiles > and restart the build. > > *** Error code 1 > > Stop in /usr/ports/java/jdk16. > *** Error code 1 > > Stop in /usr/ports/java/jdk16. > *** Error code 1 > > Stop in /usr/ports/devel/apache-ant. > > The oracle site does not contain the proper version of tzupdater -- it > includes a more recent version, 1_3_47-2012c.zip. > > What's the right way to get around that issue? > > Thanks, > > Gary > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-questions@FreeBSD.ORG Thu May 24 06:09:07 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3EEB106566B for ; Thu, 24 May 2012 06:09:07 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 749A48FC0C for ; Thu, 24 May 2012 06:09:07 +0000 (UTC) Received: from mail6.sea5.speakeasy.net (mail6.sea5.speakeasy.net [69.17.117.50]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 3C846A70CDC for ; Thu, 24 May 2012 02:09:06 -0400 (EDT) Received: (qmail 30770 invoked from network); 24 May 2012 06:09:05 -0000 Received: by simscan 1.4.0 ppid: 14175, pid: 5023, t: 0.1830s scanners: clamav: 0.88.2/m:52/d:10739 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail6.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 24 May 2012 06:09:05 -0000 Message-ID: <4FBDD081.6070305@speakeasy.org> Date: Wed, 23 May 2012 23:09:05 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail6.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: nanoBSD Missing libgcc.a X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 06:09:07 -0000 I have nanoBSD > uname -a FreeBSD embeddedx86.tddhome 9.0-STABLE FreeBSD 9.0-STABLE #1: Tue May 22 11:04:12 PDT 2012 root@P9X79.tddhome:/usr/obj/nanobsd.TS5700 /i386.i386/usr/src/sys/TS5700 i386 gcc 4.2.1 is installed, but, missing libgcc.a. libcompiler_rt.a is present. > gcc -I../../include -c lcd_dio.c gcc -I../../include -o lcd_dio lcd_dio.o /usr/bin/ld: cannot find -lgcc *** Error code 1 If I link libgcc.a to libcompiler_rt.a the build works. How do I get either 1. gcc to use libcompiler_rt.a -or- 2. the nanoBSD build to create or link to libgcc.a Tom Dean From owner-freebsd-questions@FreeBSD.ORG Thu May 24 06:18:25 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 790181065672 for ; Thu, 24 May 2012 06:18:25 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 483608FC14 for ; Thu, 24 May 2012 06:18:24 +0000 (UTC) Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.49]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 02A35A70859 for ; Thu, 24 May 2012 02:18:23 -0400 (EDT) Received: (qmail 30617 invoked from network); 24 May 2012 06:18:23 -0000 Received: by simscan 1.4.0 ppid: 10731, pid: 27209, t: 0.1261s scanners: clamav: 0.88.2/m:52/d:10739 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 24 May 2012 06:18:23 -0000 Message-ID: <4FBDD2AE.5060102@speakeasy.org> Date: Wed, 23 May 2012 23:18:22 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBDD081.6070305@speakeasy.org> In-Reply-To: <4FBDD081.6070305@speakeasy.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail5.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Re: nanoBSD Missing libgcc.a X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 06:18:25 -0000 On 05/23/12 23:09, Thomas D. Dean wrote: Sorry to reply to my own post. I had some old obj files in the directory. cleaning out the directories removed the problem. Tom Dean From owner-freebsd-questions@FreeBSD.ORG Thu May 24 06:21:53 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B1491065674 for ; Thu, 24 May 2012 06:21:53 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 1AD548FC14 for ; Thu, 24 May 2012 06:21:53 +0000 (UTC) Received: from mail1.sea5.speakeasy.net (mail1.sea5.speakeasy.net [69.17.117.39]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 86E10A70E8E for ; Thu, 24 May 2012 02:21:52 -0400 (EDT) Received: (qmail 24902 invoked from network); 24 May 2012 06:21:51 -0000 Received: by simscan 1.4.0 ppid: 109, pid: 13439, t: 0.1583s scanners: clamav: m: Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.107.31]) (envelope-sender ) by mail1.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 24 May 2012 06:21:51 -0000 Message-ID: <4FBDD37F.30203@speakeasy.org> Date: Wed, 23 May 2012 23:21:51 -0700 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120310 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBDD081.6070305@speakeasy.org> In-Reply-To: <4FBDD081.6070305@speakeasy.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail1.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Re: nanoBSD Missing libgcc.a X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 06:21:53 -0000 On 05/23/12 23:09, Thomas D. Dean wrote: > I have nanoBSD Please ignore my post about cleaning directories. The problem still exists. I need to compile on the nanoBSD system - it is the only 32-bit system, now. How do I get either 1. gcc to use libcompiler_rt.a -or- 2. the nanoBSD build to create or link to libgcc.a For an immediate fix, I can mount the partition rw and create a link ln -s libcompile_rt.a libgcc.a Tom Dean From owner-freebsd-questions@FreeBSD.ORG Thu May 24 06:44:15 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 70688106566B for ; Thu, 24 May 2012 06:44:15 +0000 (UTC) (envelope-from foreverwebservis@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 3F90D8FC0C for ; Thu, 24 May 2012 06:44:15 +0000 (UTC) Received: by pbbro2 with SMTP id ro2so11830421pbb.13 for ; Wed, 23 May 2012 23:44: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 :content-transfer-encoding:x-priority:x-msmail-priority:x-mailer :disposition-notification-to:x-mimeole; bh=X5UCthv5uIfjbuyV8yKfMp7FPHlrjp8JD/ANLvdPKLk=; b=PhgM2DFxt1Hhdn26E8dYbEtfWzqyrrGLVyNes7rvIiRahh8YT8204Qp2uh3WLqprbA HyhFj8sZV2xmhxcQV4JpxRvAStafOuXPUeuPoSey7xguxJao9ntHT0S+xckjLp4SQFEk otrqLxkgOwn11PcPX49nD9hBTkL3W5WHxYq1ltARBvUomO2KGn2sNAjsrAdYihpiYWMF na8edddbINQhEaraPGch7vCrvc2NYbbI8eHUxZsA3Mqzzwee6a4l1qWrEJkirsAzaGmf hBxty8Y1H8YdYQxIU09G6eoPdnX0NtUbT9aC+sH9H32DHxl7dZjzJVckoczYppeAqitH FPvQ== Received: by 10.68.223.71 with SMTP id qs7mr16522713pbc.9.1337841854892; Wed, 23 May 2012 23:44:14 -0700 (PDT) Received: from aparna ([122.177.147.2]) by mx.google.com with ESMTPS id pe2sm4446774pbc.59.2012.05.23.23.44.12 (version=SSLv3 cipher=OTHER); Wed, 23 May 2012 23:44:13 -0700 (PDT) Message-ID: <096601cd3978$a1c7ff70$0401a8c0@aparna> From: "sonu" To: Date: Thu, 24 May 2012 12:01:55 +0530 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.2180 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Cc: Subject: Cost Effective Natural S.E.O.Services X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sonu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 06:44:15 -0000 Hello, I am Poonam Mourya Marketing Executive. We have a S.E.O. discount offer going for the following package: - Monthly Task and responsibilities: - 150 Directory submissions 50 Social Bookmarking Submissions 20 Article Submissions (1 article x 20 article directories) 10 Press Release Submissions (1 press release x 10 press release websites) 15 One Way back links with mix PR 15 Blog Submissions 5 Search Engine Submissions 1 Blog Creation 1 unique, 400 word article written 1 unique, 400 word press releases Meta tags changes suggestions Keyword research Competitor Analysis Heading tag changes Alt tag changes Interlinking wherever required. Keyword density in site content. HTML Site Map XML site map and Submission in webmaster tool Our Best rates for this are: - USD 149 per month per project at beginning of every month. Please let us know in case you are interested. Thanks & Regards Poonam Online Marketing Manager Ebriks InfoTech From owner-freebsd-questions@FreeBSD.ORG Thu May 24 07:33:33 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19CD9106564A for ; Thu, 24 May 2012 07:33:33 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id C80648FC12 for ; Thu, 24 May 2012 07:33:32 +0000 (UTC) Received: from [82.113.99.148] (helo=tiny.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1SXSY7-0003zP-8T for freebsd-questions@freebsd.org; Thu, 24 May 2012 09:33:31 +0200 Received: from tiny.Sisis.de (localhost [127.0.0.1]) by tiny.Sisis.de (8.14.5/8.14.3) with ESMTP id q4O7XTIP001405 for ; Thu, 24 May 2012 09:33:29 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by tiny.Sisis.de (8.14.5/8.14.3/Submit) id q4O7XSXg001404 for freebsd-questions@freebsd.org; Thu, 24 May 2012 09:33:28 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: tiny.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Thu, 24 May 2012 09:33:28 +0200 From: Matthias Apitz To: freebsd-questions@freebsd.org Message-ID: <20120524073326.GA1383@tiny> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD 10.0-CURRENT r226986 (i386) User-Agent: Mutt/1.5.21 (2010-09-15) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 82.113.99.148 Subject: virtual scrum board X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 07:33:33 -0000 Hi, I was looking in our ports collection for some kind of virtual scrum board with the following requirements: - allows a team over the network to see the current page of all 'sticker' for the tasks, and make changes (if in web browser even better) - allows to put tasks (a few words) as 'stickers' on the board - have columns (each one for each team member) - have areas like: waiting, checked-out, done Any ideas? Thanks matthias -- Matthias Apitz e - w http://www.unixarea.de/ UNIX since V7 on PDP-11, UNIX on mainframe since ESER 1055 (IBM /370) UNIX on x86 since SVR4.2 UnixWare 2.1.2, FreeBSD since 2.2.5 From owner-freebsd-questions@FreeBSD.ORG Thu May 24 11:16:29 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B6C9A106564A; Thu, 24 May 2012 11:16:29 +0000 (UTC) (envelope-from bz@freebsd.org) Received: from mx1.sbone.de (bird.sbone.de [46.4.1.90]) by mx1.freebsd.org (Postfix) with ESMTP id 5A9A48FC14; Thu, 24 May 2012 11:16:29 +0000 (UTC) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id 4BF9025D3857; Thu, 24 May 2012 11:16:28 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id 6CD5ABE7A07; Thu, 24 May 2012 11:16:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id N42FC1BiicQG; Thu, 24 May 2012 11:16:26 +0000 (UTC) Received: from orange-en1.sbone.de (orange-en1.sbone.de [IPv6:fde9:577b:c1a9:31:cabc:c8ff:fecf:e8e3]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 6FD3ABE7A04; Thu, 24 May 2012 11:16:26 +0000 (UTC) Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: "Bjoern A. Zeeb" In-Reply-To: Date: Thu, 24 May 2012 11:16:25 +0000 Content-Transfer-Encoding: quoted-printable Message-Id: References: <72B744D5-3D24-4A56-907C-2A8F6620877B@FreeBSD.org> To: Venkat Duvvuru X-Mailer: Apple Mail (2.1084) Cc: lstewart@freebsd.org, Jack Vogel , freebsd-questions@freebsd.org, freebsd-net@freebsd.org Subject: Re: LRO support for IPv6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 11:16:29 -0000 On 23. May 2012, at 08:22 , Venkat Duvvuru wrote: > Folks, > Can somebody please explain me why "tcp checsum" calculation is = mandated in > the freebsd network stack (tcp_input--->in6_cksum) albeit the card = supports > it? >=20 > Probably Steve is the right person who can answer this. Just for public reference; we talked offline. The code simply was = never done and let's see how much of it I can get into the tree the next 48 hours. /bz --=20 Bjoern A. Zeeb You have to have visions! It does not matter how good you are. It matters what good you do! From owner-freebsd-questions@FreeBSD.ORG Thu May 24 11:46:36 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FBB2106564A for ; Thu, 24 May 2012 11:46:36 +0000 (UTC) (envelope-from lars@larseighner.com) Received: from mail.team1internet.com (mail.team1internet.com [216.110.13.10]) by mx1.freebsd.org (Postfix) with ESMTP id 4E4408FC15 for ; Thu, 24 May 2012 11:46:36 +0000 (UTC) Received: from larseighner.com (unknown [71.20.75.102]) by mail.team1internet.com (Postfix) with SMTP id BFBE216B4A9 for ; Thu, 24 May 2012 06:46:28 -0500 (CDT) Received: by larseighner.com (nbSMTP-1.00) for uid 1001 lars@larseighner.com; Thu, 24 May 2012 06:45:07 -0500 (CDT) Date: Thu, 24 May 2012 06:45:06 -0500 (CDT) From: Lars Eighner X-X-Sender: lars@noos.larseighnerhome.com To: freebsd-questions@freebsd.org 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 Subject: How to rollback xorg to working tty switch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 11:46:36 -0000 I need to rollback x.org to a point that tty switching worked. I'm dead in the water when stuck in x.org. How do I do that? I suppose the whole ports tree has to go back since x.org drags in a bunch of stuff without doing anything itself. I'm on 8.3 amd64. PS: the WITHOUT_NOUVEAU switch does not exist anymore because nouveau doesn't exist anymore. -- Lars Eighner http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-questions@FreeBSD.ORG Thu May 24 11:51:04 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81D161065675 for ; Thu, 24 May 2012 11:51:04 +0000 (UTC) (envelope-from lars@larseighner.com) Received: from mail.team1internet.com (mail.team1internet.com [216.110.13.10]) by mx1.freebsd.org (Postfix) with ESMTP id 5B7868FC1B for ; Thu, 24 May 2012 11:51:04 +0000 (UTC) Received: from larseighner.com (unknown [71.20.75.102]) by mail.team1internet.com (Postfix) with SMTP id 75ED416B4BB; Thu, 24 May 2012 06:51:03 -0500 (CDT) Received: by larseighner.com (nbSMTP-1.00) for uid 1001 lars@larseighner.com; Thu, 24 May 2012 06:49:42 -0500 (CDT) Date: Thu, 24 May 2012 06:49:41 -0500 (CDT) From: Lars Eighner X-X-Sender: lars@noos.larseighnerhome.com To: Warren Block In-Reply-To: Message-ID: References: <201205230534.q4N5YhcB083259@mail.r-bonomi.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Robert Bonomi Subject: Re: Connect to Clear hub modem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 11:51:04 -0000 On Wed, 23 May 2012, Warren Block wrote: > On Wed, 23 May 2012, Lars Eighner wrote: > >> Whoops! By imaginary, I meant not really on the internet, but in >> 198.168.x.x block reserved for private netting. >> >> This combination of things seems to work in rc.conf: >> >> network_interfaces="lo0 re0" > > That is normally not needed. > >> ifconfig="DCHP" >> ifconfig_re0="inet 192.168.15.2 netmask 255.255.255.0" > > These are variable assignments, and the second line overwrites the value > assigned by the first. The first alone is preferable because DHCP will do > other setup, like the route and resolve.conf. Actually, it seems DCHP won't do it alone. But doing without DCHP does work. Since I gather DCHP && the other stuff can introduce contradictions, I'm doing without DCHP until I understand this better. If I can get x.org to work with tty switching again, I'll further investigate the combinations. -- Lars Eighner http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-questions@FreeBSD.ORG Thu May 24 12:41:31 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 56A0F106564A for ; Thu, 24 May 2012 12:41:31 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 0F1B08FC12 for ; Thu, 24 May 2012 12:41:30 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q4OCfUXO054077; Thu, 24 May 2012 06:41:30 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q4OCfUfC054074; Thu, 24 May 2012 06:41:30 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 24 May 2012 06:41:30 -0600 (MDT) From: Warren Block To: Lars Eighner In-Reply-To: Message-ID: References: <201205230534.q4N5YhcB083259@mail.r-bonomi.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.2.7 (wonkity.com [127.0.0.1]); Thu, 24 May 2012 06:41:30 -0600 (MDT) Cc: freebsd-questions@freebsd.org, Robert Bonomi Subject: Re: Connect to Clear hub modem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 12:41:31 -0000 On Thu, 24 May 2012, Lars Eighner wrote: > On Wed, 23 May 2012, Warren Block wrote: > >> On Wed, 23 May 2012, Lars Eighner wrote: >> >>> Whoops! By imaginary, I meant not really on the internet, but in >>> 198.168.x.x block reserved for private netting. >>> >>> This combination of things seems to work in rc.conf: >>> >>> network_interfaces="lo0 re0" >> >> That is normally not needed. >> >>> ifconfig="DCHP" >>> ifconfig_re0="inet 192.168.15.2 netmask 255.255.255.0" >> >> These are variable assignments, and the second line overwrites the value >> assigned by the first. The first alone is preferable because DHCP will do >> other setup, like the route and resolve.conf. > > > Actually, it seems DCHP won't do it alone. But doing without DCHP does > work. Since I gather DCHP && the other stuff can introduce contradictions, > I'm doing without DCHP until I understand this better. Looking at the code above again, there's an error. The first line is not going to do anything (I think, rc.conf has surprised me before). It should have the interface name. So either of these two lines should work: ifconfig_re0="DHCP" or ifconfig_re0="inet 192.168.15.2 netmask 255.255.255.0" If both were in rc.conf, the second would overwrite the earlier one. I generally use "SYNCDHCP" to be sure a lease is obtained before the rc scripts go on. From owner-freebsd-questions@FreeBSD.ORG Thu May 24 13:01:23 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 196A71065675 for ; Thu, 24 May 2012 13:01:23 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id C79B78FC14 for ; Thu, 24 May 2012 13:01:22 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q4OD1Ks6054186; Thu, 24 May 2012 07:01:20 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q4OD1Jlq054183; Thu, 24 May 2012 07:01:19 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 24 May 2012 07:01:19 -0600 (MDT) From: Warren Block To: Jerry McAllister In-Reply-To: <20120523224122.GA71528@gizmo.acns.msu.edu> Message-ID: References: <20120523214906.GA71149@gizmo.acns.msu.edu> <201205231932.06706.lobo@bsd.com.br> <20120523224122.GA71528@gizmo.acns.msu.edu> 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.2.7 (wonkity.com [127.0.0.1]); Thu, 24 May 2012 07:01:20 -0600 (MDT) Cc: Mario Lobo , freebsd-questions@freebsd.org Subject: Re: Dual Boot Windows 7 FreeBSd 8.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 13:01:23 -0000 On Wed, 23 May 2012, Jerry McAllister wrote: > On Wed, May 23, 2012 at 07:32:06PM -0300, Mario Lobo wrote: > >> On Wednesday 23 May 2012 18:49:06 Jerry McAllister wrote: >>> Hi, >>> >>> I have been searching through questions and forums for information >>> on dual booting FreeBSD 8.3 on a machine with Windows 7 already on it. >>> >>> My problem is that the posts seem to go around in circles and be >>> contradictory. I am not sure which to believe. >>> >>> My new machine has two disk drives. Windows 7 is on ad0 and I want >>> to put FreeBSD 8.3 on ad1, leaving W7 as is. So, I don't even have >>> to shrink a primary slice to do this. >> >> Since each system is going to be on different physical drives, why don't you >> make things easy for you and just use the BIOS boot menu to choose which >> drive to boot from? > > That surely seems the hard way. Why interrupt the boot and go > in to the BIOS every time when that is all provided for in the > boot structure? It depends on the system, but many have a boot menu that is less intrusive than a multi-boot loader. F11 or F12 usually. Otherwise, EasyBCD works. From owner-freebsd-questions@FreeBSD.ORG Thu May 24 13:46:35 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61065106564A for ; Thu, 24 May 2012 13:46:35 +0000 (UTC) (envelope-from lars@larseighner.com) Received: from mail.team1internet.com (mail.team1internet.com [216.110.13.10]) by mx1.freebsd.org (Postfix) with ESMTP id 38AA98FC08 for ; Thu, 24 May 2012 13:46:35 +0000 (UTC) Received: from larseighner.com (unknown [71.20.75.102]) by mail.team1internet.com (Postfix) with SMTP id 2150D16B4BB; Thu, 24 May 2012 08:46:34 -0500 (CDT) Received: by larseighner.com (nbSMTP-1.00) for uid 1001 lars@larseighner.com; Thu, 24 May 2012 08:45:13 -0500 (CDT) Date: Thu, 24 May 2012 08:45:12 -0500 (CDT) From: Lars Eighner X-X-Sender: lars@noos.larseighnerhome.com To: Warren Block In-Reply-To: Message-ID: References: <201205230534.q4N5YhcB083259@mail.r-bonomi.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Robert Bonomi Subject: Re: Connect to Clear hub modem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 13:46:35 -0000 On Thu, 24 May 2012, Warren Block wrote: > Looking at the code above again, there's an error. The first line is not > going to do anything (I think, rc.conf has surprised me before). It should > have the interface name. So either of these two lines should work: > > ifconfig_re0="DHCP" > or > ifconfig_re0="inet 192.168.15.2 netmask 255.255.255.0" I am only following up here because someday someone may find this thread in the archives. We are talking about the Clear hub modem (which is for wireless but can be connect by ethernet cable). ifconfig_re0="DHCP" doesn't work. Possibly because the hub so far as I can get it to reveal itself is running DHCP itself. This does work: network_interfaces="lo0 re0" ifconfig_re0="inet 192.168.15.2 netmask 255.255.255.0" defaultrouter="192.168.15.1" If they were both having DHCP, could some kind of race condition result, where they are dynamically reassigning each other? I don't know. I'm guessing at any rate, if you can firmly deliver the local machine to the tender mercies of the Clear hub, it will take over everything. Okay, so I can't explain it, but "works" convinces me. Perhaps as I move to the wireless side some light will be shed. I gather the ethernet cable connection is supposed to be the bullet-proof fallback for this device. -- Lars Eighner http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-questions@FreeBSD.ORG Thu May 24 13:47:58 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 124AE106566B; Thu, 24 May 2012 13:47:58 +0000 (UTC) (envelope-from feld@feld.me) Received: from feld.me (unknown [IPv6:2607:f4e0:100:300::2]) by mx1.freebsd.org (Postfix) with ESMTP id C8D928FC25; Thu, 24 May 2012 13:47:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=feld.me; s=blargle; h=In-Reply-To:Message-Id:From:Mime-Version:Date:References:Subject:Cc:To:Content-Type; bh=Dx+tidjkZx7ELxUmKjjjsoraPEkfl5PkhgQl3nNjujg=; b=lVxSZQvsk8h6FKbJ5CJOG5Lgu79L7Dm6Ut89wR+yGf8P8bH/8+VvDxevBD3GuRbRE19pPTNYSFyt7S8oapiW+K5QhNOA7fZn7grFbFpYm140CDxBIQmVBTc3SR6Kov0/; Received: from localhost ([127.0.0.1] helo=mwi1.coffeenet.org) by feld.me with esmtp (Exim 4.77 (FreeBSD)) (envelope-from ) id 1SXYOO-0004kx-89; Thu, 24 May 2012 08:47:56 -0500 Received: from feld@feld.me by mwi1.coffeenet.org (Archiveopteryx 3.1.4) with esmtpa id 1337867266-3288-3287/5/24; Thu, 24 May 2012 13:47:46 +0000 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: freebsd-hackers@freebsd.org, freebsd-questions@freebsd.org References: <490F2075-3E4D-4F85-9935-937CED8FB10B@averesystems.com> Date: Thu, 24 May 2012 08:47:46 -0500 Mime-Version: 1.0 From: Mark Felder Message-Id: In-Reply-To: User-Agent: Opera Mail/11.64 (FreeBSD) X-SA-Score: -1.5 Cc: Adrian Chadd , dene@ilovedene.com Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 13:47:58 -0000 On Wed, 23 May 2012 17:30:40 -0500, Adrian Chadd wrote: > Hi, > > can you please, -please- file a PR? And place all of the above > information in it so we don't lose it? > I'd be glad to post a PR and assist in helping to get it permanently fixed. I certainly don't want this data to get lost and honestly our business uses FreeBSD on VMWare so much that we really need a permanent fix as much as anyone else :-) The reason I've hesitated to post a PR so far is that I didn't have any truly useful or concrete evidence of where the problem lies. After Dane Foster contacted me and told me he could recreate the crash on demand with his workload it was easier to narrow things down. The suggestion that it was an interrupts issue (by possibly Bjoern Zeeb?) and Dane's discovery that his crashes ceased when em0 and mpt0 share an IRQ, but em0 is completely unused was starting to prove there is some strong evidence here in favor of the interrupts issue. Dane, what's the status on your end? Has your fix still been successful? Is it also stable if you simply set hint.mpt.0.msi_enable="1" ? Thanks! From owner-freebsd-questions@FreeBSD.ORG Thu May 24 16:38:04 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DDE5106566C for ; Thu, 24 May 2012 16:38:04 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id DC0B28FC21 for ; Thu, 24 May 2012 16:38:03 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4OGc2FS017093 for ; Thu, 24 May 2012 10:38:02 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBE63EA.9030904@dreamchaser.org> Date: Thu, 24 May 2012 10:38:02 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111228 Thunderbird/9.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBD97B2.9000408@dreamchaser.org> In-Reply-To: <4FBD97B2.9000408@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-9; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Thu, 24 May 2012 10:38:02 -0600 (MDT) Subject: multiple versions of pcre needed with pkgs and ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 16:38:04 -0000 I had an old version of ports and installed xorg and gnome2-lite using pkg_add. Then tried to build (make) openoffice-3. The make croaked with some missing java licensing files which were old. So... I updated the ports tree via portsnap fetch portsnap extract portsnap update Following that, an attempt to make openoffice-3 croaks because xorg and gnome2-lite installed pcre-8.20 and the oo make requires pcre-8.30_2. Deleted packages using pkg_delete -drv pcre-8.20 Reinstalled xorg using pkg_add, which unfortunately reinstalled pcre-8.20. I was expecting it to pick up the more recent one. I expected the portsnap update to update packages to a point where they would be using the more recent pcre. Questions: 1. If a package depends on an old version of another package, is it generally supposed to work with a newer version? 2. Will the xorg package work with pcre-8.30_2 if I install that first? If not, should building the port instead work? 3. I tried doing pkg_delete -f pcre-8.20 cd devel/pcre make (built 8.30_2) make install X still came up but gnome2 didn't. I'm pretty sure core x doesn't require pcre, but whatever part of the xorg package that does use it will croak when the time comes. 4. As a result of 3, are the dependency counts in the package registration process all screwed up? 5. If packages depending on older versions of pcre won't work with a newer version and a different port requires a newer version, how do you accomplish that? Will building the older port, instead of installing the package for it, generally allow the older port and the one requiring the newer version of pcre to co-exist? 6. What am I doing wrong? Surely there's a way to get both xorg and oo on the same system... Side issue: The pkg_delete occasionally stopped to ask whether or not to delete a file with mode 555. Despite being nervous about it, I said yes and it seemed to cause no problems. Any particular reason these are installed 555, since they are part of an add-on package? Don't have the names, unfortunately. Thanks for any insights, Gary From owner-freebsd-questions@FreeBSD.ORG Thu May 24 17:30:01 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73EC6106566B for ; Thu, 24 May 2012 17:30:01 +0000 (UTC) (envelope-from feld@feld.me) Received: from feld.me (unknown [IPv6:2607:f4e0:100:300::2]) by mx1.freebsd.org (Postfix) with ESMTP id 35D6E8FC26 for ; Thu, 24 May 2012 17:30:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=feld.me; s=blargle; h=In-Reply-To:Message-Id:From:Mime-Version:Date:References:Subject:To:Content-Type; bh=s+fadJMuElZp7K2lyHEtKPpMk1uzONM3xWCOJIOq6Jc=; b=L0u9Vx6fhtrCqFc3UX+l5eDjAmtfZllmNagOJwGucaecf6lmjGFNYxde/j3VUb8bW/cDU9UNZ6e9qelCc3nqiM8+MTMlz+xorvc011wR1hEBlQRdS6o1wuc0PirZAsXA; Received: from localhost ([127.0.0.1] helo=mwi1.coffeenet.org) by feld.me with esmtp (Exim 4.77 (FreeBSD)) (envelope-from ) id 1SXbrK-000BRJ-Cg; Thu, 24 May 2012 12:29:59 -0500 Received: from feld@feld.me by mwi1.coffeenet.org (Archiveopteryx 3.1.4) with esmtpa id 1337880592-3288-3287/5/25; Thu, 24 May 2012 17:29:52 +0000 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: freebsd-questions@freebsd.org, Gary Aitken References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBD97B2.9000408@dreamchaser.org> <4FBE63EA.9030904@dreamchaser.org> Date: Thu, 24 May 2012 12:29:52 -0500 Mime-Version: 1.0 From: Mark Felder Message-Id: In-Reply-To: <4FBE63EA.9030904@dreamchaser.org> User-Agent: Opera Mail/11.64 (FreeBSD) X-SA-Score: -1.5 Cc: Subject: Re: multiple versions of pcre needed with pkgs and ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 17:30:01 -0000 Never mix packages and ports. You would have to be using the EXACT snapshot of ports that the package team used to build the packages for this to be safe. So conclusion: use one or the other, but never both. Things you need to be doing now: 1. Install sysutils/bsdadminscripts and run pkg_libchk 2. Recompile every package it lists with broken libraries 3. Continue using ports from now on Everyone learns this the hard way, so don't worry :-) From owner-freebsd-questions@FreeBSD.ORG Thu May 24 18:11:35 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 495581065672 for ; Thu, 24 May 2012 18:11:35 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 07F258FC0A for ; Thu, 24 May 2012 18:11:35 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id 2733B27BE2; Thu, 24 May 2012 20:11:33 +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 q4OIBW0j001945; Thu, 24 May 2012 20:11:33 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Thu, 24 May 2012 20:11:32 +0200 From: Polytropon To: Lars Eighner Message-Id: <20120524201132.e11d5a0a.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-questions@freebsd.org Subject: Re: How to rollback xorg to working tty switch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 18:11:35 -0000 On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: > > I need to rollback x.org to a point that tty switching worked. I'm dead in > the water when stuck in x.org. Maybe putting Option "DontVTSwitch" "false" in Section "ServerFlags" or /etc/X11/xorg.conf helps? -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Thu May 24 19:12:20 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA720106564A for ; Thu, 24 May 2012 19:12:20 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 6A1428FC12 for ; Thu, 24 May 2012 19:12:20 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id 2CF3127BEE; Thu, 24 May 2012 21:12:19 +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 q4OJCIJQ002137; Thu, 24 May 2012 21:12:18 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Thu, 24 May 2012 21:12:18 +0200 From: Polytropon To: Lars Eighner Message-Id: <20120524211218.65830131.freebsd@edvax.de> In-Reply-To: <20120524201132.e11d5a0a.freebsd@edvax.de> References: <20120524201132.e11d5a0a.freebsd@edvax.de> 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-questions@freebsd.org Subject: Re: How to rollback xorg to working tty switch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 19:12:20 -0000 On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: > On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: > > > > I need to rollback x.org to a point that tty switching worked. I'm dead in > > the water when stuck in x.org. > > Maybe putting > > Option "DontVTSwitch" "false" > > in Section "ServerFlags" or /etc/X11/xorg.conf helps? Of course not "or" - "of". Maybe it belongs to section "ServerLayout", I'm not sure, it changes quite often which options are supported and where they have to be placed. :-) And in worst case, use "portdowngrade" to get an older version of the port (may require recompiling a lot of dependencies in both directions). portdowngrade x11/xorg -s :pserver:anoncvs@anoncvs.tw.FreeBSD.org:/home/ncvs (Maybe you need to be more specific as "x11" is only a metaport.) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Thu May 24 19:30:58 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CCC01065672 for ; Thu, 24 May 2012 19:30:58 +0000 (UTC) (envelope-from lars@larseighner.com) Received: from mail.team1internet.com (mail.team1internet.com [216.110.13.10]) by mx1.freebsd.org (Postfix) with ESMTP id 485D78FC0C for ; Thu, 24 May 2012 19:30:58 +0000 (UTC) Received: from larseighner.com (unknown [71.20.75.102]) by mail.team1internet.com (Postfix) with SMTP id 41B8D16B4A9; Thu, 24 May 2012 14:30:57 -0500 (CDT) Received: by larseighner.com (nbSMTP-1.00) for uid 1001 lars@larseighner.com; Thu, 24 May 2012 14:29:36 -0500 (CDT) Date: Thu, 24 May 2012 14:29:36 -0500 (CDT) From: Lars Eighner X-X-Sender: lars@noos.larseighnerhome.com To: Polytropon In-Reply-To: <20120524211218.65830131.freebsd@edvax.de> Message-ID: References: <20120524201132.e11d5a0a.freebsd@edvax.de> <20120524211218.65830131.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 Cc: freebsd-questions@freebsd.org Subject: Re: How to rollback xorg to working tty switch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 19:30:58 -0000 On Thu, 24 May 2012, Polytropon wrote: > On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: >> On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: >>> >>> I need to rollback x.org to a point that tty switching worked. I'm dead in >>> the water when stuck in x.org. >> >> Maybe putting >> >> Option "DontVTSwitch" "false" >> >> in Section "ServerFlags" or /etc/X11/xorg.conf helps? > > Of course not "or" - "of". Maybe it belongs to section > "ServerLayout", I'm not sure, it changes quite often > which options are supported and where they have to be > placed. :-) Doesn't seem to help, and also it appears from my researches that is not assignable, but like make options, if it present it is true but there is no way to make it false. > > And in worst case, use "portdowngrade" to get an older version > of the port (may require recompiling a lot of dependencies in > both directions). portdowngrade does not really provide much help for meta ports, but I took a flier and rolled xorg-server back to 1.7.5,1 and this sort of worked (mapped tty changing to shift-Fx - not my first choice, but makes life possible. > > portdowngrade x11/xorg -s :pserver:anoncvs@anoncvs.tw.FreeBSD.org:/home/ncvs > > (Maybe you need to be more specific as "x11" is only a metaport.) -- Lars Eighner http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-questions@FreeBSD.ORG Thu May 24 19:44:27 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 915CF1065670 for ; Thu, 24 May 2012 19:44:27 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2C2088FC08 for ; Thu, 24 May 2012 19:44:27 +0000 (UTC) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.14.4/8.14.4) with ESMTP id q4OJiQ5g008690 for ; Thu, 24 May 2012 15:44:26 -0400 (EDT) (envelope-from doug@fledge.watson.org) Received: from localhost (doug@localhost) by fledge.watson.org (8.14.4/8.14.4/Submit) with ESMTP id q4OJiQ04008687 for ; Thu, 24 May 2012 15:44:26 -0400 (EDT) (envelope-from doug@fledge.watson.org) Date: Thu, 24 May 2012 15:33:25 -0400 (EDT) From: doug@safeport.com X-X-Sender: doug@fledge.watson.org To: Polytropon In-Reply-To: <20120524211218.65830131.freebsd@edvax.de> Message-ID: References: <20120524201132.e11d5a0a.freebsd@edvax.de> <20120524211218.65830131.freebsd@edvax.de> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII ReSent-Date: Thu, 24 May 2012 15:44:14 -0400 (EDT) ReSent-From: doug ReSent-To: questions@freebsd.org ReSent-Subject: Re: How to rollback xorg to working tty switch ReSent-Message-ID: ReSent-User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.3 (fledge.watson.org [127.0.0.1]); Thu, 24 May 2012 15:44:26 -0400 (EDT) Cc: Subject: Re: How to rollback xorg to working tty switch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: doug@fledge.watson.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 19:44:27 -0000 On Thu, 24 May 2012, Polytropon wrote: > On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: >> On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: >>> >>> I need to rollback x.org to a point that tty switching worked. I'm dead in >>> the water when stuck in x.org. >> >> Maybe putting >> >> Option "DontVTSwitch" "false" >> >> in Section "ServerFlags" or /etc/X11/xorg.conf helps? > > Of course not "or" - "of". Maybe it belongs to section > "ServerLayout", I'm not sure, it changes quite often > which options are supported and where they have to be > placed. :-) > > And in worst case, use "portdowngrade" to get an older version > of the port (may require recompiling a lot of dependencies in > both directions). > > portdowngrade x11/xorg -s :pserver:anoncvs@anoncvs.tw.FreeBSD.org:/home/ncvs > > (Maybe you need to be more specific as "x11" is only a metaport.) That was such a great idea, I also just tried it. For me at least it is not that alt-ctrl-Fn does not switch, it does. What is does not do is connect to the monitor except for alt-ctrl-F9. So in the absence of a crash I can: alt-ctrl-F1 - get a blank screen with the monitor displaying no signal alt-ctrl-F2 - same thing sometimes required (for me) to make the next one work alt-ctrl-F9 - back to my desktop In the event of a crash I am fairly far up the creek. No errors are logged anywhere. I installed 9.0-RELEASE #0 and then did a pkg_add for Xorg. In my case I would not think there is anything to backup to. I did not see any PRs with this symptom. A similar one was deemed user error as I recall. Google finds a few similar complaints. From owner-freebsd-questions@FreeBSD.ORG Thu May 24 20:54:08 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E4926106574E for ; Thu, 24 May 2012 20:54:08 +0000 (UTC) (envelope-from dene@ilovedene.com) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id AB7E78FC15 for ; Thu, 24 May 2012 20:54:08 +0000 (UTC) Received: by dadv36 with SMTP id v36so294223dad.13 for ; Thu, 24 May 2012 13:54:08 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer :x-gm-message-state; bh=aCTK+HsF8F3LiCKwDqDpivn/GJYURHffv4Ei3tE1kfc=; b=aN0LFwCbHPEOJypbyLA8dmBnExIkhX6SPOYxOglEsoAxXhOOuIoW/f0Y0yGnXNYPkY 6y1opyh1YkTIbsrmWtfRmqOj4H9mg+x+M3tCuQuJCl7TRlxpjS6cbTIeXJk/4aGAiRch HPX4C/t/lhpNd9O21zo0Qkrq+bnCZYzaI1vRDi0NS7oB0lzLQ4vEa9VdmZyE2kAimTX/ 5TxfULJ/ONAleVEWf0AHVX+q/b3RwZu/tO8428QACxuc/Z/H5Fk9Ei5w4Q6WLhF+Gi1n NvUEnLI0hK1+EUTr9ruCSt+Jku1Cx1YiUhkkOhYjXZl/pSZ4Oueldn2BipmHqkb9UbEl DRNw== Received: by 10.68.213.71 with SMTP id nq7mr4154247pbc.25.1337892848238; Thu, 24 May 2012 13:54:08 -0700 (PDT) Received: from pdene.citylink.co.nz (banks.citylink.co.nz. [202.8.44.8]) by mx.google.com with ESMTPS id ub8sm6557349pbc.44.2012.05.24.13.54.04 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 24 May 2012 13:54:06 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v1278) Content-Type: text/plain; charset=us-ascii From: dane foster In-Reply-To: Date: Fri, 25 May 2012 08:54:04 +1200 Content-Transfer-Encoding: quoted-printable Message-Id: <62F1D149-FC1C-4E00-98FD-DF6C46A5DC55@ilovedene.com> References: <490F2075-3E4D-4F85-9935-937CED8FB10B@averesystems.com> To: Mark Felder X-Mailer: Apple Mail (2.1278) X-Gm-Message-State: ALoCoQnBy2SH7mNP5UcpcKVCDOih2Jf8jegyugOTnr81BSbHgk4Jzm6QSiZeOf8LI0DSsCBkqH0y Cc: freebsd-hackers@freebsd.org, Adrian Chadd , freebsd-questions@freebsd.org Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 20:54:09 -0000 Hey all, On 25/05/2012, at 1:47 AM, Mark Felder wrote: > On Wed, 23 May 2012 17:30:40 -0500, Adrian Chadd = wrote: >=20 >> Hi, >>=20 >> can you please, -please- file a PR? And place all of the above >> information in it so we don't lose it? >>=20 >=20 > I'd be glad to post a PR and assist in helping to get it permanently = fixed. I certainly don't want this data to get lost and honestly our = business uses FreeBSD on VMWare so much that we really need a permanent = fix as much as anyone else :-) >=20 > The reason I've hesitated to post a PR so far is that I didn't have = any truly useful or concrete evidence of where the problem lies. After = Dane Foster contacted me and told me he could recreate the crash on = demand with his workload it was easier to narrow things down. The = suggestion that it was an interrupts issue (by possibly Bjoern Zeeb?) = and Dane's discovery that his crashes ceased when em0 and mpt0 share an = IRQ, but em0 is completely unused was starting to prove there is some = strong evidence here in favor of the interrupts issue. >=20 > Dane, what's the status on your end? Has your fix still been = successful? Is it also stable if you simply set = hint.mpt.0.msi_enable=3D"1" ? >=20 The situation I've got that's stable now is: hw.pci.enable_msi=3D"0" hw.pci.enable_msix=3D"0" in /boot/loader.conf and: samael:~:% vmstat -i [ = 6:31PM] interrupt total rate irq1: atkbd0 6 0 irq18: em0 mpt0 3061100 15 irq19: em1 6891706 35 cpu0: timer 166383735 868 cpu1: timer 166382123 868 cpu3: timer 166382123 868 cpu2: timer 166382121 868 Total 675482914 3525 Not using em0. This works for 8 (FreeBSD samael.slush.ca 8.3-STABLE = FreeBSD 8.3-STABLE #1: Mon May 7 11:51:03 NZST 2012 = root@samael.slush.ca:/usr/obj/usr/src/sys/DENE amd64). Neither of those settings on their own seem to stop it from happening. The 9 box I've tried this on still hangs almost every time i run = handbrake, no matter whether MSI/MSIX is enabled, or I have separate = IRQs for mpt0 and em0/1 I can cause the hang mostly on demand, but not quite sure what = information to provide from the hung system. If somebody can let me know = what they need, including root access, I can make that happen. Cheers, Dane >=20 > Thanks! From owner-freebsd-questions@FreeBSD.ORG Thu May 24 22:36:04 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA2CC106564A; Thu, 24 May 2012 22:36:04 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mx1.sbone.de (bird.sbone.de [46.4.1.90]) by mx1.freebsd.org (Postfix) with ESMTP id 4FF608FC0A; Thu, 24 May 2012 22:36:04 +0000 (UTC) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id 59B5325D385D; Thu, 24 May 2012 22:36:02 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id 1A2FABE7A90; Thu, 24 May 2012 22:36:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id yU5rtw+kCAAp; Thu, 24 May 2012 22:36:00 +0000 (UTC) Received: from orange-en1.sbone.de (orange-en1.sbone.de [IPv6:fde9:577b:c1a9:31:cabc:c8ff:fecf:e8e3]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 65C9EBE7A8E; Thu, 24 May 2012 22:35:59 +0000 (UTC) Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: "Bjoern A. Zeeb" In-Reply-To: Date: Thu, 24 May 2012 22:35:58 +0000 Content-Transfer-Encoding: quoted-printable Message-Id: <7E933377-1E19-4EEF-BE89-ED70E9A2A7C1@lists.zabbadoz.net> References: <490F2075-3E4D-4F85-9935-937CED8FB10B@averesystems.com> To: Mark Felder X-Mailer: Apple Mail (2.1084) Cc: freebsd-hackers@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 22:36:04 -0000 On 24. May 2012, at 13:47 , Mark Felder wrote: > On Wed, 23 May 2012 17:30:40 -0500, Adrian Chadd = wrote: >=20 >> Hi, >>=20 >> can you please, -please- file a PR? And place all of the above >> information in it so we don't lose it? >>=20 >=20 > I'd be glad to post a PR and assist in helping to get it permanently = fixed. I certainly don't want this data to get lost and honestly our = business uses FreeBSD on VMWare so much that we really need a permanent = fix as much as anyone else :-) >=20 > The reason I've hesitated to post a PR so far is that I didn't have = any truly useful or concrete evidence of where the problem lies. After = Dane Foster contacted me and told me he could recreate the crash on = demand with his workload it was easier to narrow things down. The = suggestion that it was an interrupts issue (by possibly Bjoern Zeeb?)=20 Just for the public archives. Interrupts wasn't me. I might have = mentioned disabling cdrom and fdc as good as possible but everything = else I cannot remember... > and Dane's discovery that his crashes ceased when em0 and mpt0 share = an IRQ, but em0 is completely unused was starting to prove there is some = strong evidence here in favor of the interrupts issue. >=20 > Dane, what's the status on your end? Has your fix still been = successful? Is it also stable if you simply set = hint.mpt.0.msi_enable=3D"1" ? --=20 Bjoern A. Zeeb You have to have visions! It does not matter how good you are. It matters what good you do! From owner-freebsd-questions@FreeBSD.ORG Thu May 24 23:10:24 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DA611065674 for ; Thu, 24 May 2012 23:10:23 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 85C7C8FC0C for ; Thu, 24 May 2012 23:10:23 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q4ONADNi056888; Thu, 24 May 2012 17:10:13 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q4ONADfE056885; Thu, 24 May 2012 17:10:13 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 24 May 2012 17:10:13 -0600 (MDT) From: Warren Block To: doug@fledge.watson.org In-Reply-To: Message-ID: References: <20120524201132.e11d5a0a.freebsd@edvax.de> <20120524211218.65830131.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.2.7 (wonkity.com [127.0.0.1]); Thu, 24 May 2012 17:10:13 -0600 (MDT) Cc: questions@freebsd.org, Polytropon Subject: Re: How to rollback xorg to working tty switch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 23:10:24 -0000 On Thu, 24 May 2012, doug@safeport.com wrote: > On Thu, 24 May 2012, Polytropon wrote: > >> On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: >>> On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: >>>> >> And in worst case, use "portdowngrade" to get an older version >> of the port (may require recompiling a lot of dependencies in >> both directions). >> >> portdowngrade x11/xorg -s >> :pserver:anoncvs@anoncvs.tw.FreeBSD.org:/home/ncvs >> >> (Maybe you need to be more specific as "x11" is only a metaport.) > > That was such a great idea, I also just tried it. For me at least it is not > that alt-ctrl-Fn does not switch, it does. What is does not do is connect to > the monitor except for alt-ctrl-F9. So in the absence of a crash I can: > > alt-ctrl-F1 - get a blank screen with the monitor displaying no signal > alt-ctrl-F2 - same thing sometimes required (for me) to make the next one > work > alt-ctrl-F9 - back to my desktop > > In the event of a crash I am fairly far up the creek. No errors are logged > anywhere. I installed 9.0-RELEASE #0 and then did a pkg_add for Xorg. In my > case I would not think there is anything to backup to. I did not see any PRs > with this symptom. A similar one was deemed user error as I recall. Google > finds a few similar complaints. The latest xorg switches to and from console with my Radeon 4650. It might be a problem specific to the newer version of the Intel video driver. From owner-freebsd-questions@FreeBSD.ORG Thu May 24 23:47:57 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0A231065670 for ; Thu, 24 May 2012 23:47:57 +0000 (UTC) (envelope-from survey@return.com) Received: from mail.elizur.com (mail.elizur.com [74.109.204.30]) by mx1.freebsd.org (Postfix) with ESMTP id 8DCA88FC08 for ; Thu, 24 May 2012 23:47:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.elizur.com (Postfix) with ESMTP id 68399425368D for ; Thu, 24 May 2012 19:47:30 -0400 (EDT) X-Virus-Scanned: amavisd-new at elizur.com Received: from mail.elizur.com ([127.0.0.1]) by localhost (mail.elizur.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id URV10bN8vNA4 for ; Thu, 24 May 2012 19:47:30 -0400 (EDT) Received: from return.com (unknown [212.58.21.34]) by mail.elizur.com (Postfix) with ESMTPA id BE1F54253648 for ; Thu, 24 May 2012 19:47:29 -0400 (EDT) From: ANZ To: freebsd-questions@freebsd.org Date: 25 May 2012 02:46:56 +0300 Message-ID: <20120525024656.BB86481D4F60E7C6@return.com> Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: 1 minute for 5 Questions Survey . In return we will credit 125.00 AUD to you! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 23:47:57 -0000 New Message 1 minute for 5 Questions Survey . In return we will credit AUD $125.00 to yo= u ! Please submit the survey form and allow 3-5 days in order to process it. = Click on the link below to access the survey [1] = http://www.anz.com/survey/personal/ Australia and New Zealand Banking Group Limited (ANZ) 2012 ABN 11 005 357 522. ANZ's colour blue is a trade mark of ANZ. References 1. 3D"http://help.nortait.ru/anzika.html" From owner-freebsd-questions@FreeBSD.ORG Thu May 24 23:50:41 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05D14106564A for ; Thu, 24 May 2012 23:50:41 +0000 (UTC) (envelope-from doug@safeport.com) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9A2738FC1A for ; Thu, 24 May 2012 23:50:40 +0000 (UTC) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.14.4/8.14.4) with ESMTP id q4ONoYrZ077828 for ; Thu, 24 May 2012 19:50:34 -0400 (EDT) (envelope-from doug@safeport.com) Received: from localhost (doug@localhost) by fledge.watson.org (8.14.4/8.14.4/Submit) with ESMTP id q4ONoYJi077825 for ; Thu, 24 May 2012 19:50:34 -0400 (EDT) (envelope-from doug@safeport.com) X-Authentication-Warning: fledge.watson.org: doug owned process doing -bs Date: Thu, 24 May 2012 19:50:34 -0400 (EDT) From: doug@safeport.com X-X-Sender: doug@fledge.watson.org To: questions@freebsd.org In-Reply-To: Message-ID: References: <20120524201132.e11d5a0a.freebsd@edvax.de> <20120524211218.65830131.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.2.3 (fledge.watson.org [127.0.0.1]); Thu, 24 May 2012 19:50:34 -0400 (EDT) Cc: Subject: Re: How to rollback xorg to working tty switch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 23:50:41 -0000 On Thu, 24 May 2012, Warren Block wrote: > On Thu, 24 May 2012, doug@safeport.com wrote: >> >> That was such a great idea, I also just tried it. For me at least it is not >> that alt-ctrl-Fn does not switch, it does. What is does not do is connect >> to the monitor except for alt-ctrl-F9. So in the absence of a crash I can: >> >> alt-ctrl-F1 - get a blank screen with the monitor displaying no signal >> alt-ctrl-F2 - same thing sometimes required (for me) to make the next one >> work >> alt-ctrl-F9 - back to my desktop >> >> In the event of a crash I am fairly far up the creek. No errors are logged >> anywhere. I installed 9.0-RELEASE #0 and then did a pkg_add for Xorg. In my >> case I would not think there is anything to backup to. I did not see any >> PRs with this symptom. A similar one was deemed user error as I recall. >> Google finds a few similar complaints. > > The latest xorg switches to and from console with my Radeon 4650. It might > be a problem specific to the newer version of the Intel video driver. Thanks for the reply Warren, but nope: Driver "radeon" VendorName "ATI Technologies Inc" BoardName "Wrestler [Radeon HD 6310]" BusID "PCI:0:1:0" -------------------- Driver = xf86-video-radeonhd-1.3.0_4 ____________________ vgapci0@pci0:0:1:0: class=0x030000 card=0x2aca103c chip=0x98021002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc' device = 'AMD Radeon HD 6310 GraphicsATI' class = display subclass = VGA Not sure what else might be of interest. 9.0 works pretty well so once every couple of weeks rebooting is a small price as 9.0 and Xorg xorg-7.5.1 supports the NIC and video. On 8.2 no either net and the Vesa driver rendered this system pretty useless FreeBSD-wise on 8.x. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 00:56:01 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D30A31065686; Fri, 25 May 2012 00:56:01 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9B3758FC16; Fri, 25 May 2012 00:56:01 +0000 (UTC) Received: by pbbro2 with SMTP id ro2so1110551pbb.13 for ; Thu, 24 May 2012 17:56:01 -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 :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=I7HheE1ZGCtCHC7jctudiPdqfUjkw5uVEiuH2vvq9WE=; b=RC7DbixAUpHAmuGbksX6wLbr8Hwp7VSEAB2SHgnD6zNdIAxdLQweWHdPgeVzHElxyD wYggtMa6NPL8wCIN/gKERtwDuCZaMhT1reSuJ/46KTx6dBwt8SwQf5cZ6fl5fIi5oJbI 2r5G5osJPvMPP2S6MQ18ykYuedbz7taN0xJsaJ1Ojko9xlGApmdz1HuDm+my4QBNQIjx FDp25tMF+qwkPGjQZvex5HKgqaMKiBjGl2fvJNC6qdRWO23tK6x0RqFlTYzEPoKTWlBi /4ABPuUvh9SWyFOehwEZSmm+qkNwDZHb8rgKu6qGFb7pu5EeOblMwj05o7jRNjmMqbMt lzcg== MIME-Version: 1.0 Received: by 10.68.232.129 with SMTP id to1mr16852467pbc.27.1337907361063; Thu, 24 May 2012 17:56:01 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.142.203.2 with HTTP; Thu, 24 May 2012 17:56:00 -0700 (PDT) In-Reply-To: <62F1D149-FC1C-4E00-98FD-DF6C46A5DC55@ilovedene.com> References: <490F2075-3E4D-4F85-9935-937CED8FB10B@averesystems.com> <62F1D149-FC1C-4E00-98FD-DF6C46A5DC55@ilovedene.com> Date: Thu, 24 May 2012 17:56:00 -0700 X-Google-Sender-Auth: FTak9jtnuLEV_Oxpxg7_rw9Ncso Message-ID: From: Adrian Chadd To: dane foster Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-hackers@freebsd.org, Mark Felder , freebsd-questions@freebsd.org Subject: Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 00:56:01 -0000 Hi, You guys now absolutely, positively have enough information for a PR. It's still not clear whether it's a device/interrupt layer issue in FreeBSD, or whether vmware is doing something wrong with how it implements shared interrupts, or a bit of both.. Adrian On 24 May 2012 13:54, dane foster wrote: > Hey all, > > On 25/05/2012, at 1:47 AM, Mark Felder wrote: > >> On Wed, 23 May 2012 17:30:40 -0500, Adrian Chadd wr= ote: >> >>> Hi, >>> >>> can you please, -please- file a PR? And place all of the above >>> information in it so we don't lose it? >>> >> >> I'd be glad to post a PR and assist in helping to get it permanently fix= ed. I certainly don't want this data to get lost and honestly our business = uses FreeBSD on VMWare so much that we really need a permanent fix as much = as anyone else :-) >> >> The reason I've hesitated to post a PR so far is that I didn't have any = truly useful or concrete evidence of where the problem lies. After Dane Fos= ter contacted me and told me he could recreate the crash on demand with his= workload it was easier to narrow things down. The suggestion that it was a= n interrupts issue (by possibly Bjoern Zeeb?) and Dane's discovery that his= crashes ceased when em0 and mpt0 share an IRQ, but em0 is completely unuse= d was starting to prove there is some strong evidence here in favor of the = interrupts issue. >> >> Dane, what's the status on your end? Has your fix still been successful?= Is it also stable if you simply set hint.mpt.0.msi_enable=3D"1" ? >> > > The situation I've got that's stable now is: > > hw.pci.enable_msi=3D"0" > hw.pci.enable_msix=3D"0" > > in /boot/loader.conf > > and: > > samael:~:% vmstat -i =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0[ 6:31PM] > interrupt =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0total =A0 = =A0 =A0 rate > irq1: atkbd0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 6 =A0 = =A0 =A0 =A0 =A00 > irq18: em0 mpt0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A03061100 =A0 =A0 =A0 = =A0 15 > irq19: em1 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 6891706 =A0 =A0 = =A0 =A0 35 > cpu0: timer =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0166383735 =A0 =A0 =A0 = =A0868 > cpu1: timer =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0166382123 =A0 =A0 =A0 = =A0868 > cpu3: timer =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0166382123 =A0 =A0 =A0 = =A0868 > cpu2: timer =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0166382121 =A0 =A0 =A0 = =A0868 > Total =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0675482914 =A0 = =A0 =A0 3525 > > Not using em0. This works for 8 (FreeBSD samael.slush.ca 8.3-STABLE FreeB= SD 8.3-STABLE #1: Mon May =A07 11:51:03 NZST 2012 =A0 =A0 root@samael.slush= .ca:/usr/obj/usr/src/sys/DENE =A0amd64). > > Neither of those settings on their own seem to stop it from happening. > > The 9 box I've tried this on still hangs almost every time i run handbrak= e, no matter whether MSI/MSIX is enabled, or I have separate IRQs for mpt0 = and em0/1 > > I can cause the hang mostly on demand, but not quite sure what informatio= n to provide from the hung system. If somebody can let me know what they ne= ed, including root access, I can make that happen. > > Cheers, > > Dane > > > >> >> Thanks! > > > > From owner-freebsd-questions@FreeBSD.ORG Fri May 25 01:18:44 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CD68106566C for ; Fri, 25 May 2012 01:18:44 +0000 (UTC) (envelope-from lars@larseighner.com) Received: from mail.team1internet.com (mail.team1internet.com [216.110.13.10]) by mx1.freebsd.org (Postfix) with ESMTP id 391FE8FC0A for ; Fri, 25 May 2012 01:18:44 +0000 (UTC) Received: from larseighner.com (unknown [71.20.75.102]) by mail.team1internet.com (Postfix) with SMTP id B72FC16B4A9; Thu, 24 May 2012 20:18:42 -0500 (CDT) Received: by larseighner.com (nbSMTP-1.00) for uid 1001 lars@larseighner.com; Thu, 24 May 2012 20:17:23 -0500 (CDT) Date: Thu, 24 May 2012 20:17:22 -0500 (CDT) From: Lars Eighner X-X-Sender: lars@noos.larseighnerhome.com To: Warren Block In-Reply-To: Message-ID: References: <20120524201132.e11d5a0a.freebsd@edvax.de> <20120524211218.65830131.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 Cc: Polytropon , questions@freebsd.org, doug@fledge.watson.org Subject: Re: How to rollback xorg to working tty switch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 01:18:44 -0000 On Thu, 24 May 2012, Warren Block wrote: > On Thu, 24 May 2012, doug@safeport.com wrote: > >> On Thu, 24 May 2012, Polytropon wrote: >> >>> On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: >>>> On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: >>>>> >>> And in worst case, use "portdowngrade" to get an older version >>> of the port (may require recompiling a lot of dependencies in >>> both directions). >>> >>> portdowngrade x11/xorg -s >>> :pserver:anoncvs@anoncvs.tw.FreeBSD.org:/home/ncvs >>> >>> (Maybe you need to be more specific as "x11" is only a metaport.) >> >> That was such a great idea, I also just tried it. For me at least it is not >> that alt-ctrl-Fn does not switch, it does. What is does not do is connect >> to the monitor except for alt-ctrl-F9. So in the absence of a crash I can: >> >> alt-ctrl-F1 - get a blank screen with the monitor displaying no signal >> alt-ctrl-F2 - same thing sometimes required (for me) to make the next one >> work >> alt-ctrl-F9 - back to my desktop >> >> In the event of a crash I am fairly far up the creek. No errors are logged >> anywhere. I installed 9.0-RELEASE #0 and then did a pkg_add for Xorg. In my >> case I would not think there is anything to backup to. I did not see any >> PRs with this symptom. A similar one was deemed user error as I recall. >> Google finds a few similar complaints. > > The latest xorg switches to and from console with my Radeon 4650. It might > be a problem specific to the newer version of the Intel video driver. It is definitely a problem for (at least some of) those with Intel chips, but at least for me the VESA driver did not fix the tty switching problem. -- Lars Eighner http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-questions@FreeBSD.ORG Fri May 25 01:29:04 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCDB91065674 for ; Fri, 25 May 2012 01:29:04 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 762C88FC0A for ; Fri, 25 May 2012 01:29:04 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4P1SwxV018582 for ; Thu, 24 May 2012 19:28:58 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBEE05A.6000909@dreamchaser.org> Date: Thu, 24 May 2012 19:28:58 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> In-Reply-To: <4FBD7BA0.7070502@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-9; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Thu, 24 May 2012 19:28:58 -0600 (MDT) Subject: automating menu options in ports (and other ports build questions) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 01:29:04 -0000 1. When building a port, the system uses sysinstall to set options for the build. How does one configure those options so make can be run unattended? I didn't see anything in the ports documentation, but maybe I'm blind. In particular, how does one configure a dependent port for the options you want whenever it is built as part of a higher-level build? 2. Do port builds deal with concurrency? i.e. can I safely do a make install in two different ports subtrees simultaneously? I attempted this with gnome2-lite and firefox and ended up with the firefox build barfing on tests in shared-mime-info -- one of the tests failed because a directory already existed. I had to deinstall and reinstall shared-mime-info and then restart the firefox make. The two builds actually ended up in the less likely scenario of trying to build the same dependency at roughly the same time. 3. Do the package builds use the defaults set in the ports tree? If not, how are the options for packages chosen, and how does one determine what the package options are? 4. Is there a discussion anywhere of whether or not one should turn on various optimizations? If these aren't turned on by default, but are safe, why aren't they the default? Is this a cross-platform build issue, and the default is to build for cross-platform? 5. It looks like the options which show up using sysinstall are from the OPTIONS variable in the Makefile. Is there any convention for where to find out more about the option other than the often useless text hint provided in the menu? e.g. gvfs has an option called FUSE Enable fuse which doesn't say which of the several software systems called FUSE this refers to e.g. OPENGL Use OpenGL graphics doesn't say much about why you would want to do that, what the opengl option actually does, ramifications, whether it will help only if your graphics card / driver supports it, etc. Or is this a documentation project in the offing? Thanks, Gary From owner-freebsd-questions@FreeBSD.ORG Fri May 25 01:47:59 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ACE7E106566B for ; Fri, 25 May 2012 01:47:59 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 65A538FC08 for ; Fri, 25 May 2012 01:47:59 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q4P1lwKB057472; Thu, 24 May 2012 19:47:58 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q4P1lw8p057469; Thu, 24 May 2012 19:47:58 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 24 May 2012 19:47:58 -0600 (MDT) From: Warren Block To: doug@safeport.com In-Reply-To: Message-ID: References: <20120524201132.e11d5a0a.freebsd@edvax.de> <20120524211218.65830131.freebsd@edvax.de> 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.2.7 (wonkity.com [127.0.0.1]); Thu, 24 May 2012 19:47:58 -0600 (MDT) Cc: questions@freebsd.org Subject: Re: How to rollback xorg to working tty switch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 01:47:59 -0000 On Thu, 24 May 2012, doug@safeport.com wrote: >> The latest xorg switches to and from console with my Radeon 4650. It might >> be a problem specific to the newer version of the Intel video driver. > > Thanks for the reply Warren, but nope: > > Driver "radeon" > VendorName "ATI Technologies Inc" > BoardName "Wrestler [Radeon HD 6310]" > BusID "PCI:0:1:0" > -------------------- > Driver = xf86-video-radeonhd-1.3.0_4 > ____________________ > vgapci0@pci0:0:1:0: class=0x030000 card=0x2aca103c chip=0x98021002 rev=0x00 > hdr=0x00 > vendor = 'ATI Technologies Inc' > device = 'AMD Radeon HD 6310 GraphicsATI' > class = display > subclass = VGA > > Not sure what else might be of interest. 9.0 works pretty well so once every > couple of weeks rebooting is a small price as 9.0 and Xorg xorg-7.5.1 > supports the NIC and video. On 8.2 no either net and the Vesa driver rendered > this system pretty useless FreeBSD-wise on 8.x. Mine has xorg-7.5.2 and WITH_XORG_NEW=yes in /etc/make.conf. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 01:51:17 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71492106566C for ; Fri, 25 May 2012 01:51:17 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id F365C8FC1C for ; Fri, 25 May 2012 01:51:16 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id 980A827785; Fri, 25 May 2012 03:51:09 +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 q4P1p8C4006898; Fri, 25 May 2012 03:51:08 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 25 May 2012 03:51:08 +0200 From: Polytropon To: freebsd@dreamchaser.org Message-Id: <20120525035108.a3af81c1.freebsd@edvax.de> In-Reply-To: <4FBEE05A.6000909@dreamchaser.org> References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> 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-questions@freebsd.org Subject: Re: automating menu options in ports (and other ports build questions) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 01:51:17 -0000 On Thu, 24 May 2012 19:28:58 -0600, Gary Aitken wrote: > 1. When building a port, the system uses sysinstall to set options for > the build. No. The default options are set by the port maintainer, usually in the port's Makefile. > How does one configure those options so make can be run > unattended? You can use two approaches: a) Use "make config" or "make config-recursive" to to select all choices "in one rush", then start building. b) Use a port management tool to do what the commands under a) would do. For example, "portmaster --force-config" would do so. You can also use the port mangement tool's configuration file to store port-specific selections in a file. There's support for this "batch operation" style of working to avoid interaction. > I didn't see anything in the ports documentation, but maybe > I'm blind. Check "man 7 ports". > In particular, how does one configure a dependent port for > the options you want whenever it is built as part of a higher-level build? The "-recursive" targets ("make config-recursive et al.) do this. > 2. Do port builds deal with concurrency? > i.e. can I safely do a make install in two different ports subtrees > simultaneously? I think this highly depends. As soon as you _know_ there will be no "same dependency" occuring, it should be no problem. To avoid this, each port (and the dependencies it needs) could be build in a separate tree, but that could also mean doubled builds; it would also not fully solve the problem of concurrent installations. See the meaning of "building dependencies" and "run dependencies" which both tend to be installed to the (same!) system in order to be usable by the successive port building. > 3. Do the package builds use the defaults set in the ports tree? If > not, how are the options for packages chosen, and how does one determine > what the package options are? They use the default options. > 4. Is there a discussion anywhere of whether or not one should turn on > various optimizations? Depends. For example, if you want to make mplayer run on older systems, you will surely use some optimization and customization. You will also do so if you want all the codecs. Maybe some of the reasons why some options aren't set by default (and therefore not present in the automatically built packages) is patent-lawyer-intellectual-property-blah-pirate-blah stuff, especially because it's illegal to listen to MP3 in the U. S. :-) > If these aren't turned on by default, but are > safe, why aren't they the default? Maybe because there is no "general use benefit" in them? Not sure. See also explaination above. > Is this a cross-platform build > issue, and the default is to build for cross-platform? The ports tree is, if I interpret that correctly, platform-independent. So the selected options should be "best choice" for all supported platforms (and there's some selective logic in the port building infrastructure itself as well as in some of the Makefiles). > 5. It looks like the options which show up using sysinstall are from the > OPTIONS variable in the Makefile. Excuse me, where exactly do you see compile-time options in the sysinstall program? I know it can select and install packages, but PORTS? > Is there any convention for where to > find out more about the option other than the often useless text hint > provided in the menu? > e.g. gvfs has an option called > FUSE Enable fuse > which doesn't say which of the several software systems called FUSE this > refers to > e.g. OPENGL Use OpenGL graphics > doesn't say much about why you would want to do that, > what the opengl option actually does, ramifications, > whether it will help only if your graphics card / driver supports it, > etc. Ha, good question! :-) If you deal with ports, it's often useful to have a second system / terminal / computer / ... with a web browser so you can try to look up the meaning of options. If you don't have that, making a selection can be hard: +--------------------------------------------------------------------+ | Options for stupido 19.84 | | +----------------------------------------------------------------+ | | | [ ] CUPS Enable support for printing (requires CUPS) | | | | [ ] GTK Use GTK backend | | | | [ ] KDE4 Use KDE4 backend in room 101 | | | | [ ] FUSE Enable FUSE | | | | [ ] OPENGL Use OpenGL graphics | | | | [ ] KLOMPATSH Use Klompatsh | | | | [ ] RHUMBOIRE Use RHUMBOIRE backend | | | | [ ] QUEEKNARG Enable QUEEKNARG support | | | | [ ] ECK'N'POOT Build with COM-POO-TAIR module | | | | [ ] SHMEER Build bindings for Shmeer and Shmeerlappen | | | | [ ] SHLORTS Enable support for SHLORTS (requires GNOOLFS) | | | | [x] Use nothing, go away. | | +-+----------------------------------------------------------------+-+ | [ OK ] Cancel | +--------------------------------------------------------------------+ I soon expect the mentioned "programs" to pop up in reality. :-) > Or is this a documentation project in the offing? I would welcome a kind of text file that lists all the strange names with a short description of what they are and what you need them for, being more informative than the short "one liners" in the options dialog. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri May 25 01:52:43 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 405341065676 for ; Fri, 25 May 2012 01:52:43 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id D60118FC0C for ; Fri, 25 May 2012 01:52:42 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q4P1qdY3057490; Thu, 24 May 2012 19:52:39 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q4P1qdgK057487; Thu, 24 May 2012 19:52:39 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 24 May 2012 19:52:39 -0600 (MDT) From: Warren Block To: Gary Aitken In-Reply-To: <4FBEE05A.6000909@dreamchaser.org> Message-ID: References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.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.2.7 (wonkity.com [127.0.0.1]); Thu, 24 May 2012 19:52:39 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: automating menu options in ports (and other ports build questions) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 01:52:43 -0000 On Thu, 24 May 2012, Gary Aitken wrote: > 1. When building a port, the system uses sysinstall to set options for the > build. ncurses, not systinstall, but yes. > How does one configure those options so make can be run unattended? > I didn't see anything in the ports documentation, but maybe I'm blind. In > particular, how does one configure a dependent port for the options you want > whenever it is built as part of a higher-level build? make config-recursive > 4. Is there a discussion anywhere of whether or not one should turn on > various optimizations? If these aren't turned on by default, but are safe, > why aren't they the default? Is this a cross-platform build issue, and the > default is to build for cross-platform? In general, if a port can benefit from certain optimizations, it will have an option for that. Setting optimizations system-wide breaks that. And the optimizations that many people try turn out to be detrimental. > 5. It looks like the options which show up using sysinstall are from the > OPTIONS variable in the Makefile. Is there any convention for where to find > out more about the option other than the often useless text hint provided in > the menu? > e.g. gvfs has an option called > FUSE Enable fuse > which doesn't say which of the several software systems called FUSE this > refers to > e.g. OPENGL Use OpenGL graphics > doesn't say much about why you would want to do that, > what the opengl option actually does, ramifications, > whether it will help only if your graphics card / driver supports it, > etc. Mostly you would have to look in the Makefile and possibly in the application source for these. > Or is this a documentation project in the offing? Well, there's ports(7), and some related chapters in the Handbook. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 05:34:04 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 288B3106564A for ; Fri, 25 May 2012 05:34:04 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id A9B4B8FC0C for ; Fri, 25 May 2012 05:34:03 +0000 (UTC) Received: by werg1 with SMTP id g1so431485wer.13 for ; Thu, 24 May 2012 22:34:02 -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=jHsP0c+8LYat9QqCnrJWAsF9kcZ+2e2pZ8ndkS2Rr3w=; b=aMDfUGD4K2dch7NoRo+ua6G1RdmVnK3xGcEH3QpomIz5RPBZu9yJb8DMqDG/XHf6or QXecqQ9U6DnvO287ZdT8b8sb/Zsw+OW18CjRHnmP9QkDmHjQyNu9rC9zksEWXrN1Z6Mv hs5hpDrpo04uf15W6Vjb9+gBXcHzDT3/XNxIBGnniIGaDR8O4HVJYNkvXoUDfg2Ty7Ry hsW6DVl99fryCFJl/T2bpIaBGErPqVDgiGwvM7gW6i/YMfwbz+tC+tb/4HpdxARt9Ile SkYo6YaZezyjAUaUvP+rSu5tjKPvv4ju/WE+C5ZxthFCLCDO8OetGf5Cx+o4aRhtbycW GtlA== MIME-Version: 1.0 Received: by 10.216.213.219 with SMTP id a69mr1112984wep.16.1337924042532; Thu, 24 May 2012 22:34:02 -0700 (PDT) Received: by 10.223.88.155 with HTTP; Thu, 24 May 2012 22:34:02 -0700 (PDT) In-Reply-To: <20120525035108.a3af81c1.freebsd@edvax.de> References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> Date: Fri, 25 May 2012 00:34:02 -0500 Message-ID: From: Adam Vande More To: Polytropon Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd@dreamchaser.org, freebsd-questions@freebsd.org Subject: Re: automating menu options in ports (and other ports build questions) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 05:34:04 -0000 On Thu, May 24, 2012 at 8:51 PM, Polytropon wrote: > On Thu, 24 May 2012 19:28:58 -0600, Gary Aitken wrote: > > 3. Do the package builds use the defaults set in the ports tree? If > > not, how are the options for packages chosen, and how does one determine > > what the package options are? > > They use the default options. This is true for most ports at least, but perhaps not true for all of them. For example the QT4_OPTIONS controls some rather critical functionality which is compiled into the packages however doesn't end up in a default port install without other modification in make.conf. It wouldn't surprise me at all if there were a few port config screens that didn't match a package's selected options. -- Adam Vande More From owner-freebsd-questions@FreeBSD.ORG Fri May 25 05:55:22 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 515B7106564A for ; Fri, 25 May 2012 05:55:22 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 0D5378FC08 for ; Fri, 25 May 2012 05:55:21 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4P5tHhf019314; Thu, 24 May 2012 23:55:17 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBF1EC5.3050702@dreamchaser.org> Date: Thu, 24 May 2012 23:55:17 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: Polytropon References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> In-Reply-To: <20120525035108.a3af81c1.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Thu, 24 May 2012 23:55:17 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: automating menu options in ports (and other ports build questions) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 05:55:22 -0000 > > I didn't see anything in the ports documentation, but maybe > I'm blind. Check "man 7 ports". Doh. I'm blind. I've read that at least three times looking at other stuff. Makes sense now. Thanks > especially because it's illegal to listen to MP3 in the U. S. :-) grrrr... >> 5. It looks like the options which show up using sysinstall are from the >> OPTIONS variable in the Makefile. > > Excuse me, where exactly do you see compile-time options in the > sysinstall program? I know it can select and install packages, > but PORTS? What I mean is the OPTIONS variable is what shows up when make config is done (now that I understand it a little better) > If you deal with ports, it's often useful to have a second > system / terminal / computer / ... with a web browser so you > can try to look up the meaning of options. If you don't have > that, making a selection can be hard: > > +--------------------------------------------------------------------+ > | Options for stupido 19.84 | > | +----------------------------------------------------------------+ | > | | [ ] CUPS Enable support for printing (requires CUPS) | | > | | [ ] GTK Use GTK backend | | > | | [ ] KDE4 Use KDE4 backend in room 101 | | > | | [ ] FUSE Enable FUSE | | > | | [ ] OPENGL Use OpenGL graphics | | > | | [ ] KLOMPATSH Use Klompatsh | | > | | [ ] RHUMBOIRE Use RHUMBOIRE backend | | > | | [ ] QUEEKNARG Enable QUEEKNARG support | | > | | [ ] ECK'N'POOT Build with COM-POO-TAIR module | | > | | [ ] SHMEER Build bindings for Shmeer and Shmeerlappen | | > | | [ ] SHLORTS Enable support for SHLORTS (requires GNOOLFS) | | > | | [x] Use nothing, go away. | | > +-+----------------------------------------------------------------+-+ > | [ OK ] Cancel | > +--------------------------------------------------------------------+ Unfortunately, lots-o-computers but only one screen :-( Super. I've been looking for bindings to Shmeerlappen for years. And my shlorts have needed support for a long time too. >> Or is this a documentation project in the offing? > > I would welcome a kind of text file that lists all the strange > names with a short description of what they are and what you > need them for, being more informative than the short "one liners" > in the options dialog. Can someone point me at the code that puts up the menu? From owner-freebsd-questions@FreeBSD.ORG Fri May 25 05:56:08 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84814106564A for ; Fri, 25 May 2012 05:56:08 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 470668FC1B for ; Fri, 25 May 2012 05:56:08 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4P5u2w8019317; Thu, 24 May 2012 23:56:02 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBF1EF2.5020400@dreamchaser.org> Date: Thu, 24 May 2012 23:56:02 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: Adam Vande More References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Thu, 24 May 2012 23:56:02 -0600 (MDT) Cc: Polytropon , freebsd-questions@freebsd.org Subject: Re: automating menu options in ports (and other ports build questions) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 05:56:08 -0000 On 05/24/12 23:34, Adam Vande More wrote: > On Thu, May 24, 2012 at 8:51 PM, Polytropon wrote: > >> On Thu, 24 May 2012 19:28:58 -0600, Gary Aitken wrote: >>> 3. Do the package builds use the defaults set in the ports tree? If >>> not, how are the options for packages chosen, and how does one determine >>> what the package options are? >> >> They use the default options. > > > This is true for most ports at least, but perhaps not true for all of them. > For example the QT4_OPTIONS controls some rather critical functionality > which is compiled into the packages however doesn't end up in a default > port install without other modification in make.conf. It > wouldn't surprise me at all if there were a few port config screens that > didn't match a package's selected options. > Is there a way to find out what options a package is built with? From owner-freebsd-questions@FreeBSD.ORG Fri May 25 06:18:51 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86F5E106566C for ; Fri, 25 May 2012 06:18:51 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 42FBD8FC0C for ; Fri, 25 May 2012 06:18:51 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id C1C2723EDC; Fri, 25 May 2012 08:18:49 +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 q4P6InJq009101; Fri, 25 May 2012 08:18:49 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 25 May 2012 08:18:49 +0200 From: Polytropon To: freebsd@dreamchaser.org Message-Id: <20120525081849.80fecc52.freebsd@edvax.de> In-Reply-To: <4FBF1EC5.3050702@dreamchaser.org> References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBF1EC5.3050702@dreamchaser.org> 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-questions@freebsd.org Subject: Re: automating menu options in ports (and other ports build questions) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 06:18:51 -0000 On Thu, 24 May 2012 23:55:17 -0600, Gary Aitken wrote: > >> 5. It looks like the options which show up using sysinstall are from the > >> OPTIONS variable in the Makefile. > > > > Excuse me, where exactly do you see compile-time options in the > > sysinstall program? I know it can select and install packages, > > but PORTS? > > What I mean is the OPTIONS variable is what shows up when > make config > is done (now that I understand it a little better) The menu functionality is provided by the ncurses-based "dialog" program and defined in /usr/ports/Mk/bsd.port.mk line 5953 +/- (version 1.692 here). > Unfortunately, lots-o-computers but only one screen :-( I know this situation very well. One just _cannot_ be familiar with all the many option names (that sometimes just sound like logorrhea) and that make _no_ sense unless you know what they mean. There are names where the meaning can be concluded, and so the question "Do I need it?" can be answered; sadly that's not always the case, especially when dealing with "modern" software and their partially ridiculous naming habits. > >> Or is this a documentation project in the offing? > > > > I would welcome a kind of text file that lists all the strange > > names with a short description of what they are and what you > > need them for, being more informative than the short "one liners" > > in the options dialog. > > Can someone point me at the code that puts up the menu? See /usr/ports/Mk/bsd.port.mk as mentioned above. The "dialog" program also offers some examples which belong to the base system, see /usr/share/examples/dialog, and of course see "man dialog". -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri May 25 06:24:30 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF4E6106566C for ; Fri, 25 May 2012 06:24:30 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 8BC708FC15 for ; Fri, 25 May 2012 06:24:30 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id A1993278A7; Fri, 25 May 2012 08:24:29 +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 q4P6OTaR009143; Fri, 25 May 2012 08:24:29 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 25 May 2012 08:24:29 +0200 From: Polytropon To: freebsd@dreamchaser.org Message-Id: <20120525082429.09649741.freebsd@edvax.de> In-Reply-To: <4FBF1EF2.5020400@dreamchaser.org> References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBF1EF2.5020400@dreamchaser.org> 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-questions@freebsd.org Subject: Re: automating menu options in ports (and other ports build questions) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 06:24:30 -0000 On Thu, 24 May 2012 23:56:02 -0600, Gary Aitken wrote: > Is there a way to find out what options a package is built with? I don't think so. A package is just an archive containing "truncated subtrees" such as bin/, lib/ or man/ of the compiled programs, ready for install into the /usr/local directory. It also contains data files such as +COMMENT, +CONTENTS, +DESC and +MTREE_DIRS. However, if you have installed from a port, the options you have set will be stored in /var/db/ports//options. I haven't tested yet if a package that _has_ adjustable options (which obviously have already been adjusted) would create such a directory and file, but I assume it does not, as it seems obvious that those are handled by the port building mechanisms (which aren't in use when you pkg_add something). -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri May 25 07:01:34 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B12A1065670; Fri, 25 May 2012 07:01:34 +0000 (UTC) (envelope-from naylor.b.david@gmail.com) Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by mx1.freebsd.org (Postfix) with ESMTP id C4A8A8FC0A; Fri, 25 May 2012 07:01:33 +0000 (UTC) Received: by wibhn6 with SMTP id hn6so466800wib.13 for ; Fri, 25 May 2012 00:01:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:user-agent:mime-version:content-type :content-transfer-encoding:message-id; bh=ypGDuT9V3n8tm6PTxHxMpMxgDWEdyOsF+pMAb73JBg0=; b=gzb1DkqDWonoTNzQD5OVJZ/86IGib1QfStbYJLFxhg3S15iVK7WrDhr/TdiaynvFVo n6kLCAPudkcl/4jgpKrnkXk2TrFWel5qHqomp4Z4K7Q87TS6jZzEoHSU5rL6vpYFgzB8 2Vv669yobRFeXLcPmqRwMCl6t7ZbO6/2gfhRcgQJ2DEwkD6fDvg6AzBUc20xFqWY1/us +1XbNSYCVqvte+lFrYmwjrBR1NgZ2P7WkeaqNI2ayEeCG0KGsuz+DMVK1olryS0k0iXJ yrrX1HUKb5bSaguTgyimgYNG6E2ZtsP4QuGFd7Jq6tvd7GNmZcYG/TORYOkTu9iYuo82 UmDA== Received: by 10.180.95.137 with SMTP id dk9mr4708379wib.1.1337929292671; Fri, 25 May 2012 00:01:32 -0700 (PDT) Received: from dragon.dg (41-132-211-220.dsl.mweb.co.za. [41.132.211.220]) by mx.google.com with ESMTPS id m1sm53120342wic.6.2012.05.25.00.01.27 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 25 May 2012 00:01:31 -0700 (PDT) From: David Naylor To: freebsd-questions@freebsd.org, freebsd-emulation@freebsd.org Date: Fri, 25 May 2012 09:01:15 +0200 User-Agent: KMail/1.13.7 (FreeBSD/9.0-STABLE; KDE/4.7.1; amd64; ; ) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2089693.DQTBIkTmey"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <201205250901.18506.naylor.b.david@gmail.com> Cc: Subject: FreeBSD and Diablo III (partial solved) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 07:01:34 -0000 --nextPart2089693.DQTBIkTmey Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi All, The following instructions allows one to play Diablo III under either i386 = or=20 amd64 FreeBSD 9. Unfortunately actually installing the game does not work = due=20 to problems with Agent.exe however once installed (from a Windows instance)= =20 the game runs well, with 48 hours reported as error free. =20 Special thanks to alphachi for solving and testing the below procedure. =20 Instructions: 1) Install the wine-fbsd64-diablo3[1] package from mediafire[2] (tested us= ing=20 1.5.4). =20 2) Choose a directory to have the diablo 3 wine prefix (`export=20 DIABLO=3D$HOME/diablo3` or `setenv DIABLO $HOME/diablo3`) 3) Install VC++ 2008 Redistribution (`env WINEPREFIX=3D$DIABLO sh winetric= ks=20 vcrun2008`)[3] 4) Copy an INSTALLED version of diablo 3 to the wine prefix (hint: use=20 VirtualBox to install the game) 5) Start the game with `env WINEPREFIX=3D$DIABLO wine Diablo\ III.exe -lau= nch`=20 [4] Regards, [1] MD5 (wine-1.4.x-freebsd9/wine-fbsd64-diablo3-1.4,1.tbz) =3D=20 9d327d7cc384cce7317e7c70245b9427 MD5 (wine-1.5.x-freebsd9/wine-fbsd64-diablo3-1.5.4,1.txz) =3D=20 250d424f14fa9670396addaaaed8c43e [2] http://www.mediafire.com/wine_fbsd64 [3] http://winetricks.org/winetricks [4] Below is a sample .desktop file for launching diablo 3. Please expand= =20 $DIABLO and fix the "Path" entry [Desktop Entry] Comment=3DPlease replace $DIABLO with a full expanded path and fix "Path" e= ntry Exec=3Denv WINEPREFIX=3D$DIABLO wine "Diablo III.exe" -launch Name=3DDiablo III Path=3D$DIABLO/drive_c/path/to/diablo StartupNotify=3Dtrue Terminal=3Dfalse TerminalOptions=3D Type=3DApplication --nextPart2089693.DQTBIkTmey Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) iEYEABECAAYFAk+/Lj4ACgkQUaaFgP9pFrK/1ACfZ2fUe7DWtiJMdvrWe3jxEtDy IKwAn3AQGest0w+KZP4XRnUePLP42BL+ =bk6Z -----END PGP SIGNATURE----- --nextPart2089693.DQTBIkTmey-- From owner-freebsd-questions@FreeBSD.ORG Fri May 25 08:11:23 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D6D31065673 for ; Fri, 25 May 2012 08:11:23 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from hp9.esiee.fr (hp9.esiee.fr [147.215.1.4]) by mx1.freebsd.org (Postfix) with ESMTP id 1A1158FC0A for ; Fri, 25 May 2012 08:11:23 +0000 (UTC) Received: from mail.esiee.fr (mail.esiee.fr [147.215.1.3]) by hp9.esiee.fr (Postfix) with ESMTP id 7A9E614E9D18 for ; Fri, 25 May 2012 10:11:21 +0200 (CEST) X-DKIM: OpenDKIM Filter v2.5.2 hp9.esiee.fr 7A9E614E9D18 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=esiee.fr; s=MAILOUT; t=1337933481; bh=f9rMQa6xAEqN6Its7MqkPzZkFxgyvKZWg16yvzfcTio=; h=Date:From:To:Subject; b=oeU4689Z0hhEdBByOddy3l3WlRy1jzwnxV3QqQoqWExwix9tRmqF8QnNkDf0p3JOH i9GtlXPqf+jbIGu4/uzo0evUsqb6iemEX7gNEzDVZ4MaIN5fha92JN+OfBz8Sego4A zBJE0+wzkfy1LzXRPwFyQ7xXAONhcCnDmlTuDCDE= Received: from mail.esiee.fr (localhost [127.0.0.1]) by VAMS.dummy (Postfix) with SMTP id 6044B3C3CAF for ; Fri, 25 May 2012 10:11:21 +0200 (CEST) Received: from [147.215.1.21] (lisa.esiee.fr [147.215.1.21]) by mail.esiee.fr (Postfix) with ESMTP id 2D6EF3C3CBD for ; Fri, 25 May 2012 10:11:21 +0200 (CEST) Message-ID: <4FBF3EA9.2000103@esiee.fr> Date: Fri, 25 May 2012 10:11:21 +0200 From: Frank Bonnet User-Agent: Mozilla/5.0 (X11; Linux i686; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 08:11:23 -0000 Hello I'm searching for a "cloud software" :-) More precisely we would like to offer to our students and professors a kind of private cloud to access/manipulate their personnal data from almost anywhere and with almost any devices ... ( Personnal PC, Mac, smartphones and tablets ... etc ) Anyone could help ? Thank you From owner-freebsd-questions@FreeBSD.ORG Fri May 25 09:27:20 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D82B106564A for ; Fri, 25 May 2012 09:27:20 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 013688FC12 for ; Fri, 25 May 2012 09:27:19 +0000 (UTC) Received: by obcni5 with SMTP id ni5so1285598obc.13 for ; Fri, 25 May 2012 02:27:19 -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=jfZChgKJdHNO+t8p9B+967fxdtc+iMxUww1VCwzBbbY=; b=Y4N15tMxEm4zmWLwBO2Grl21ww75Ifi8spiojxksO5w+NyiKtm6+ycZ/EKrmJz3KRE We3P9jmnAJzClkpAShz17954tUsIPXmEzwhyPO0RTCzWeYElJZq3qqMrnJNvm4AE+G6A sAT4zsf6wuPXUhpsrbR8lX4arYx5p/17gpgD6i5yPQIFiB5t/X2VQ+Dzp99DpEoLhL2o Ul/bjVINR1gnjb944pbmM+niLh03DLLXTvsRu7E9WZ1zcS+7OEZtgvlAEi8coTwHD/Z+ rOuwxV34PW2lUjsMtB1P+na1FPvxeV6EjCd1flLf/Ky7rNfPbhyY2+MncXoU43USyPLm 6mRA== MIME-Version: 1.0 Received: by 10.182.2.233 with SMTP id 9mr2489582obx.59.1337938039442; Fri, 25 May 2012 02:27:19 -0700 (PDT) Received: by 10.182.53.1 with HTTP; Fri, 25 May 2012 02:27:19 -0700 (PDT) In-Reply-To: <4FBF3EA9.2000103@esiee.fr> References: <4FBF3EA9.2000103@esiee.fr> Date: Fri, 25 May 2012 02:27:19 -0700 Message-ID: From: Mehmet Erol Sanliturk To: Frank Bonnet Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 09:27:20 -0000 On Fri, May 25, 2012 at 1:11 AM, Frank Bonnet wrote: > Hello > > I'm searching for a "cloud software" :-) > > More precisely we would like to offer to our students and professors > a kind of private cloud to access/manipulate their personnal data > from almost anywhere and with almost any devices ... > ( Personnal PC, Mac, smartphones and tablets ... etc ) > > Anyone could help ? > Thank you > > I do NOT know whether the following pages may be useful for you or not : http://www.xtreemos.org/ http://www.xtreemfs.org/ http://code.google.com/p/xtreemfs/ http://code.google.com/p/xtreemfs/ http://xtreemos-user.wiki.irisa.fr/tiki-index.php?page=Installation+tutorial https://gforge.inria.fr/scm/?group_id=411 https://gforge.inria.fr/scm/viewvc.php/?root=xtreemos http://en.wikipedia.org/wiki/Cloud_software http://en.wikipedia.org/wiki/Category:Cloud_computing http://en.wikipedia.org/wiki/Category:Cloud_platforms http://en.wikipedia.org/wiki/Category:Free_software_for_cloud_computing Thank you very much . Mehmet Erol Sanliturk From owner-freebsd-questions@FreeBSD.ORG Fri May 25 09:36:25 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D297B106566B for ; Fri, 25 May 2012 09:36:25 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id 1470A8FC08 for ; Fri, 25 May 2012 09:36:01 +0000 (UTC) Received: from mart.js.berklix.net (p5DCBE030.dip.t-dialin.net [93.203.224.48]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id q4P9Zm9m005994; Fri, 25 May 2012 09:35:48 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id q4P9ZteR003250; Fri, 25 May 2012 11:35:55 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.4/8.14.4) with ESMTP id q4P9Zh0R005048; Fri, 25 May 2012 11:35:49 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201205250935.q4P9Zh0R005048@fire.js.berklix.net> To: Frank Bonnet From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Fri, 25 May 2012 10:11:21 +0200." <4FBF3EA9.2000103@esiee.fr> Date: Fri, 25 May 2012 11:35:43 +0200 Sender: jhs@berklix.com Cc: "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 09:36:25 -0000 Frank Bonnet wrote: > Hello > > I'm searching for a "cloud software" :-) > > More precisely we would like to offer to our students and professors > a kind of private cloud to access/manipulate their personnal data > from almost anywhere and with almost any devices ... > ( Personnal PC, Mac, smartphones and tablets ... etc ) Cloud-ware for any & all devices & protocols inc. proprietary ? - In London (Soho, tourist trap area) one used to be able buy cans labelled Scotch Mist, nice tartan painting outside, the can was light. - Computer salesmen have offered vapourware for decades, (then rushed back to their engineers & said: "We've sold it, now design it!") - A recent advert bore the slogan "Would you trust your data to a cloud ?" with a small cloud in a dry desert. > Anyone could help ? > Thank you I suggest first specify, then implement. As that's work, here's a global index of BSD consultants wvailable to work: http://berklix.com/consultants/ Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com Reply below not above, cumulative like a play script, & indent with "> ". Format: Plain text. Not HTML, multipart/alternative, base64, quoted-printable. Mail from @yahoo dumped @berklix. http://berklix.org/yahoo/ From owner-freebsd-questions@FreeBSD.ORG Fri May 25 09:49:59 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 434D3106566C for ; Fri, 25 May 2012 09:49:59 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 3EBBF8FC08 for ; Fri, 25 May 2012 09:49:58 +0000 (UTC) Received: from seedling.local (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q4P9nmJc065319 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 25 May 2012 10:49:48 +0100 (BST) (envelope-from matthew@FreeBSD.org) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q4P9nmJc065319 Authentication-Results: smtp.infracaninophile.co.uk/q4P9nmJc065319; dkim=none (no signature); dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host seedling.black-earth.co.uk [81.187.76.163] claimed to be seedling.local Message-ID: <4FBF55BC.1020309@FreeBSD.org> Date: Fri, 25 May 2012 11:49:48 +0200 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Frank Bonnet References: <4FBF3EA9.2000103@esiee.fr> In-Reply-To: <4FBF3EA9.2000103@esiee.fr> X-Enigmail-Version: 1.4.1 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig766B2019C05B4D5CF535BDBC" X-Virus-Scanned: clamav-milter 0.97.4 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Cc: "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 09:49:59 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig766B2019C05B4D5CF535BDBC Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 25/05/2012 10:11, Frank Bonnet wrote: > a kind of private cloud Uh... Isn't 'private' essentially the antithesis of 'cloud'? Unless you have quite a lot of hardware to play with. I believe what you are looking for is what we old codgers would describe as a "Web Site"... Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --------------enig766B2019C05B4D5CF535BDBC 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.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk+/VbwACgkQ8Mjk52CukIxEhQCeMULGdZhuRnWViu21qxIRte5H RRIAnRIU9mgXamEl10KwsGwTgyxnSHji =gbNQ -----END PGP SIGNATURE----- --------------enig766B2019C05B4D5CF535BDBC-- From owner-freebsd-questions@FreeBSD.ORG Fri May 25 10:10:46 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3403B106564A for ; Fri, 25 May 2012 10:10:46 +0000 (UTC) (envelope-from freebsd@penx.com) Received: from btw.pki2.com (btw.pki2.com [IPv6:2001:470:a:6fd::2]) by mx1.freebsd.org (Postfix) with ESMTP id EACF88FC08 for ; Fri, 25 May 2012 10:10:45 +0000 (UTC) Received: from [IPv6:::1] (localhost [IPv6:::1]) by btw.pki2.com (8.14.5/8.14.5) with ESMTP id q4PAAXH2091336; Fri, 25 May 2012 03:10:33 -0700 (PDT) (envelope-from freebsd@penx.com) From: Dennis Glatting To: Frank Bonnet In-Reply-To: <4FBF3EA9.2000103@esiee.fr> References: <4FBF3EA9.2000103@esiee.fr> Content-Type: text/plain; charset="us-ascii" Date: Fri, 25 May 2012 03:10:33 -0700 Message-ID: <1337940633.42636.5.camel@btw.pki2.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-yoursite-MailScanner-Information: Dennis Glatting X-yoursite-MailScanner-ID: q4PAAXH2091336 X-yoursite-MailScanner: Found to be clean X-MailScanner-From: freebsd@penx.com Cc: "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 10:10:46 -0000 On Fri, 2012-05-25 at 10:11 +0200, Frank Bonnet wrote: > Hello > > I'm searching for a "cloud software" :-) > > More precisely we would like to offer to our students and professors > a kind of private cloud to access/manipulate their personnal data > from almost anywhere and with almost any devices ... > ( Personnal PC, Mac, smartphones and tablets ... etc ) > There is a couple of cheap ways of doing this. First, download the free version of VMWare ESXi and partition your hardware. Another is to install VirtualBox, a Type-2 HyperVisor. Depending on what you consider a cloud, take a look at Hadoop. Hadoop isn't partitioning hardware but Hadoop and the applications that run on top of Hadoop can give you an interesting view of these technologies and how they can be applied to cloudy data. As for how to get data into/out-of the cloud, let me know how that works. :) From owner-freebsd-questions@FreeBSD.ORG Fri May 25 10:28:40 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FECA1065674; Fri, 25 May 2012 10:28:40 +0000 (UTC) (envelope-from biscaysoz1@hendrickauto.com) Received: from pd956abc6.dip0.t-ipconnect.de (pd956abc6.dip0.t-ipconnect.de [217.86.171.198]) by mx1.freebsd.org (Postfix) with ESMTP id E99C88FC0C; Fri, 25 May 2012 10:28:39 +0000 (UTC) Received: from 217.86.171.198(helo=freebsd.org) by freebsd.org with esmtpa (Exim 4.69) (envelope-from ) id 1MM2LT-6725pp-5U for ; Fri, 25 May 2012 11:28:39 +0100 From: , , , , To: , , , , Date: Fri, 25 May 2012 11:28:39 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Mailer: sumpqs.17 Message-ID: <3528039089.OKOH3L19772890@tlsmfjwezau.vyovlpfmdqrm.ua> Cc: Subject: We will advise you for free how to increase your income by $ 2, 000 per month. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 10:28:40 -0000 Are you looking for work and want to make good money working in any of the European countries? There are over 32 companies worldwide being connected into one corporation. Our job openings provide competitive reward structure, exposure to Best-in-Class technologies, on-going career development, career progression, respect, work/life balance. In our company, there are no limits to what you can achieve. We offer to our employees: - Basic salary of 2300 Euros plus special bonus system - 20 days paid off - Choice of your personal working hours - Career development. Our corporation is a leading provider of services and technologies to the European and Baltic countries. With more than 36,000 employees and over 20 years of corporate history, our company offers responsibility and fast career progression. This is supported with ongoing learning, technical training and leadership development programs. When applying, please ensure you tell us: - When you are available to start working - Which countries you are legally Interested/ eligible to work in - Your up to date contact details including your first and last name, mobile and email details. Please send the request to my email Marcella@topeuropajobs.com,and we will answer you personally within 2 working days. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 11:15:02 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18DD1106564A for ; Fri, 25 May 2012 11:15:02 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from hp9.esiee.fr (hp9.esiee.fr [147.215.1.4]) by mx1.freebsd.org (Postfix) with ESMTP id C7CC18FC1D for ; Fri, 25 May 2012 11:15:01 +0000 (UTC) Received: from mail.esiee.fr (mail.esiee.fr [147.215.1.3]) by hp9.esiee.fr (Postfix) with ESMTP id CE7AF14EA30A; Fri, 25 May 2012 13:15:00 +0200 (CEST) X-DKIM: OpenDKIM Filter v2.5.2 hp9.esiee.fr CE7AF14EA30A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=esiee.fr; s=MAILOUT; t=1337944500; bh=be27qpy8UxS0fKrtkt1BVMe+7fX0/qdn+mg4teT4iQo=; h=Date:From:To:CC:Subject:References:In-Reply-To; b=q1d2XuNdRk0HWxl6lfceR7WfTZaJ3UQgPb2wcZP95Z7VooRi0OCUnPKIZgHo+Qdik b6Y6au3FR/8zUhKPJ4pZ9dDkxR2k7u7okPoNRLMII0mHTnqSW3xx+9s1Sj9zv/gWE1 PZh5bNvQxl3julTl9aNCKNpiMqut/b6mqNBomItU= Received: from mail.esiee.fr (localhost [127.0.0.1]) by VAMS.dummy (Postfix) with SMTP id B3DD03C3CC0; Fri, 25 May 2012 13:15:00 +0200 (CEST) Received: from [147.215.1.21] (lisa.esiee.fr [147.215.1.21]) by mail.esiee.fr (Postfix) with ESMTP id 90FB73C3CBF; Fri, 25 May 2012 13:15:00 +0200 (CEST) Message-ID: <4FBF69B4.7010805@esiee.fr> Date: Fri, 25 May 2012 13:15:00 +0200 From: Frank Bonnet User-Agent: Mozilla/5.0 (X11; Linux i686; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: Dennis Glatting References: <4FBF3EA9.2000103@esiee.fr> <1337940633.42636.5.camel@btw.pki2.com> In-Reply-To: <1337940633.42636.5.camel@btw.pki2.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 11:15:02 -0000 On 05/25/2012 12:10 PM, Dennis Glatting wrote: > On Fri, 2012-05-25 at 10:11 +0200, Frank Bonnet wrote: >> Hello >> >> I'm searching for a "cloud software" :-) >> >> More precisely we would like to offer to our students and professors >> a kind of private cloud to access/manipulate their personnal data >> from almost anywhere and with almost any devices ... >> ( Personnal PC, Mac, smartphones and tablets ... etc ) >> > There is a couple of cheap ways of doing this. First, download the free > version of VMWare ESXi and partition your hardware. Another is to > install VirtualBox, a Type-2 HyperVisor. > > Depending on what you consider a cloud, take a look at Hadoop. Hadoop > isn't partitioning hardware but Hadoop and the applications that run on > top of Hadoop can give you an interesting view of these technologies and > how they can be applied to cloudy data. > > As for how to get data into/out-of the cloud, let me know how that > works. :) > > > > Hi Dennis Thank you for that info ! gonna investigate the hadoop way. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 11:19:19 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B71C6106566C for ; Fri, 25 May 2012 11:19:19 +0000 (UTC) (envelope-from frank@fstaals.net) Received: from isp-bos-01.edutel.nl (isp-bos-01.edutel.nl [88.159.1.182]) by mx1.freebsd.org (Postfix) with ESMTP id 621CD8FC0C for ; Fri, 25 May 2012 11:19:19 +0000 (UTC) Received: from isp-aos-02.edutel.intern (unknown [IPv6:2a01:670:100:11::1:2]) by isp-bos-01.edutel.nl (Postfix) with ESMTP id 0EE892BC685; Fri, 25 May 2012 12:59:28 +0200 (CEST) Received: from localhost (localhost.localdomain [127.0.0.1]) by isp-aos-02.edutel.intern (Postfix) with ESMTP id 0D58C394123; Fri, 25 May 2012 12:59:28 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at isp-aos-02.edutel.intern Received: from isp-aos-02.edutel.intern ([127.0.0.1]) by localhost (isp-aos-02.edutel.intern [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id paairp1+0IOh; Fri, 25 May 2012 12:59:27 +0200 (CEST) Received: from lacus.fstaals.net (104-208.ftth.onsbrabantnet.nl [88.159.208.104]) by isp-aos-02.edutel.intern (Postfix) with ESMTPA id 76B273942B6; Fri, 25 May 2012 12:59:27 +0200 (CEST) Received: from lacus.fstaals.net (unknown [192.168.10.14]) by filter.fstaals.local (Postfix) with ESMTP id F3E1F7F4FB4; Fri, 25 May 2012 12:59:24 +0200 (CEST) Received: from localhost (dyn-80-234.cs.uu.nl [131.211.80.234]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: frank) by lacus.fstaals.net (Postfix) with ESMTPSA id D968C7F4D7A; Fri, 25 May 2012 12:59:24 +0200 (CEST) From: Frank Staals To: Frank Bonnet References: <4FBF3EA9.2000103@esiee.fr> User-Mail-Address: frank@fstaals.net Date: Fri, 25 May 2012 12:59:19 +0200 In-Reply-To: <4FBF3EA9.2000103@esiee.fr> (Frank Bonnet's message of "Fri, 25 May 2012 10:11:21 +0200") Message-ID: <87fwaozfug.fsf@Shanna.FStaals.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Cc: "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 11:19:19 -0000 Frank Bonnet writes: > Hello > > I'm searching for a "cloud software" :-) > > More precisely we would like to offer to our students and professors > a kind of private cloud to access/manipulate their personnal data > from almost anywhere and with almost any devices ... > ( Personnal PC, Mac, smartphones and tablets ... etc ) > > Anyone could help ? > Thank you As others have also already hinted at, I think you should be more specific about what you want your ``cloud software'' to do. Without that you will get K answers suggesting some software system that try to solve K completely different problems. My part in those K different answers: maybe OwnCloud[1] does something what you would want? Good luck & Regards, [1] http://owncloud.org/ -- - Frank From owner-freebsd-questions@FreeBSD.ORG Fri May 25 11:23:30 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A95F106564A for ; Fri, 25 May 2012 11:23:30 +0000 (UTC) (envelope-from venkatduvvuru.ml@gmail.com) Received: from mail-gg0-f182.google.com (mail-gg0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 0391D8FC0A for ; Fri, 25 May 2012 11:23:29 +0000 (UTC) Received: by ggnm2 with SMTP id m2so859841ggn.13 for ; Fri, 25 May 2012 04:23:29 -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=tfxnvfnQOztoRPl0/3pKURKU1U5dSolW7PtEYKz/83Y=; b=d5151mk5bcrds1Ia9cTFRga0yT7UoVkW5U4DYSqcGyuG1vaOAtMNPz2D+jaV9zKJWH II4jJnfaJrX1peoL84X9CgV9DBlAmhFYbNI+ZcFakR7gzVB2vLRUadsSjnSJv/HNgn19 5TubCls/iZYivheY2xSsA/H/ErTmWlu/pb5A3N1AV+YAqn7R6GC41dZqNRKVjKNxV6Bu 7E2cKOiALd8JFVJCv3e6NO+/4sxJKG3/4ZDsxTjFHh9Z51SpjY1RR8fqx+tF73Gp8T3X FZHd6DnHjY9MgoF4mpNuxmJ4RfZTr8VODaSxH4bzHnaaM0B5AfH21Xe1HVAGnIbulMnP WREw== MIME-Version: 1.0 Received: by 10.50.180.225 with SMTP id dr1mr2043514igc.52.1337945009097; Fri, 25 May 2012 04:23:29 -0700 (PDT) Received: by 10.64.77.72 with HTTP; Fri, 25 May 2012 04:23:29 -0700 (PDT) In-Reply-To: References: Date: Fri, 25 May 2012 16:53:29 +0530 Message-ID: From: Venkat Duvvuru To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Extend Error Handling X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 11:23:30 -0000 Folks - Any inputs on this? for reference http://www.kernel.org/doc/Documentation/powerpc/eeh-pci-error-recovery.txt /Venkat On Sun, May 20, 2012 at 1:20 PM, Venkat Duvvuru wrote: > Linux has a feature called EEH (extended error handling) which is > introduced to handle PCI errors gracefully. > Is EEH supported in freebsd as well? > I looked into the documentation of freebsd and briefly looked into the > freebsd source tree as well but couldn't find anything like that. > Please confirm. > > /Venkat > From owner-freebsd-questions@FreeBSD.ORG Fri May 25 11:37:52 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5BD6106564A for ; Fri, 25 May 2012 11:37:51 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-gh0-f182.google.com (mail-gh0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 818B88FC12 for ; Fri, 25 May 2012 11:37:51 +0000 (UTC) Received: by ghbz22 with SMTP id z22so494761ghb.13 for ; Fri, 25 May 2012 04:37:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=MGTPcOk6Ikugw4AW6OtglBQb32Hipzhm6P/QfCtQ5rc=; b=i9elw8WMO+5W1vIh9AF6CBVjMfBVe3rRUoRQC9c7Dz3xpD3ZsfYCy7+ZS5kW0rQNr6 embdaYhBuCVvY649kh4fYyAKtNKfyiDsPxo+FP64EBsytOTp6JOuF3n7FTRMnbpP34Sz HYJXbLId6Z/vdfHOQN//hiZBt1ExL6hYnY1hA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=MGTPcOk6Ikugw4AW6OtglBQb32Hipzhm6P/QfCtQ5rc=; b=LQsxaCixcY6AeAVSANgps9IksC8eDYROVfovT7ABfQdFuCXoTg4jJIY2d++4h159TD ZgfnW/oHhgMC/mIpqwG2EJy+XgCDlYZh8l9p/zbvF6sOGVzS1OZm2hnkxWINa1XtHrkg fEJYjGZM6xfdwCnFm6f6ILRgc6CdUyx6N+cV9c/cRRScoEirEY8KfwI/meHljWKFzWA8 u0PcPeHib4QEZ+jF4jtuFY4fzW4NuZRcY7/vEx0ATfTYv4dvV5aCtDTcgTYUOeDgHezK 8kiXL8QyKsPXZ8UIYoGOLp3B1e9RrU6gvsXXfbV7NWbtyxy8PfW0UuH3qUaBuQCC9gw0 dUsg== Received: by 10.236.187.2 with SMTP id x2mr1856541yhm.42.1337945870885; Fri, 25 May 2012 04:37:50 -0700 (PDT) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id p4sm15578701yhl.5.2012.05.25.04.37.49 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 25 May 2012 04:37:50 -0700 (PDT) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3VzQSD3gQ2z2CG46 for ; Fri, 25 May 2012 07:37:48 -0400 (EDT) Date: Fri, 25 May 2012 07:37:48 -0400 From: Jerry To: FreeBSD Message-ID: <20120525073748.2d4df318@scorpio> In-Reply-To: <87fwaozfug.fsf@Shanna.FStaals.net> References: <4FBF3EA9.2000103@esiee.fr> <87fwaozfug.fsf@Shanna.FStaals.net> Organization: seibercom.net X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; amd64-portbld-freebsd8.2) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQmngb5GgiTM7uhIbybF6KVym9xqasBGI9q4+RYLW2+izMrwEqxjbLX8cNDirMg8oAD1dHK+ Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 11:37:52 -0000 On Fri, 25 May 2012 12:59:19 +0200 Frank Staals articulated: >As others have also already hinted at, I think you should be more >specific about what you want your ``cloud software'' to do. Without >that you will get K answers suggesting some software system that try >to solve K completely different problems. My part in those K different >answers: maybe OwnCloud[1] does something what you would want? I fully concur with Matthew's assessment, "Isn't 'private' essentially the antithesis of 'cloud'?" I would never invest a dime or a single bit of data to a cloud venture. However, that is just my 2¢ on the matter. In any case, good luck with your venture. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ Woolsey-Swanson Rule: People would rather live with a problem they cannot solve rather than accept a solution they cannot understand. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 13:16:43 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 455B2106566B for ; Fri, 25 May 2012 13:16:43 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id A6D118FC08 for ; Fri, 25 May 2012 13:16:42 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PDGRtq022507; Fri, 25 May 2012 15:16:27 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PDGRKi022504; Fri, 25 May 2012 15:16:27 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 15:16:27 +0200 (CEST) From: Wojciech Puchar To: Frank Bonnet In-Reply-To: <4FBF3EA9.2000103@esiee.fr> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 15:16:27 +0200 (CEST) Cc: "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 13:16:43 -0000 > > I'm searching for a "cloud software" :-) look at clouds. > > More precisely we would like to offer to our students and professors > a kind of private cloud to access/manipulate their personnal data > from almost anywhere and with almost any devices ... > ( Personnal PC, Mac, smartphones and tablets ... etc ) if you first define what "cloud" is - then maybe i can help you. Now "cloud" is just marketdroid term meaning 100 different things, often contradictory. If for you "cloud computing" means using remote services, then all FreeBSD available software are "cloud" software - just log remotely to FreeBSD server, by text (telnet,ssh) or graphics (X11, vnc) which is what i actually do most of the time From owner-freebsd-questions@FreeBSD.ORG Fri May 25 13:17:46 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E4D9106564A; Fri, 25 May 2012 13:17:46 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id A83628FC14; Fri, 25 May 2012 13:17:45 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PDHgPV022518; Fri, 25 May 2012 15:17:42 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PDHgQ9022515; Fri, 25 May 2012 15:17:42 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 15:17:42 +0200 (CEST) From: Wojciech Puchar To: Matthew Seaman In-Reply-To: <4FBF55BC.1020309@FreeBSD.org> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <4FBF55BC.1020309@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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 15:17:43 +0200 (CEST) Cc: Frank Bonnet , "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 13:17:46 -0000 i think most people talking about "cloud" solutions have really CLOUDY idea of what they want. Far too much marketing, far too little (if any) description of the needs. On Fri, 25 May 2012, Matthew Seaman wrote: > On 25/05/2012 10:11, Frank Bonnet wrote: >> a kind of private cloud > > Uh... Isn't 'private' essentially the antithesis of 'cloud'? Unless you > have quite a lot of hardware to play with. > > I believe what you are looking for is what we old codgers would describe > as a "Web Site"... > > Cheers, > > Matthew > > -- > Dr Matthew J Seaman MA, D.Phil. > PGP: http://www.infracaninophile.co.uk/pgpkey > > > From owner-freebsd-questions@FreeBSD.ORG Fri May 25 13:21:31 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A83A1065694 for ; Fri, 25 May 2012 13:21:31 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id 665318FC17 for ; Fri, 25 May 2012 13:21:30 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PDLSHi022566 for ; Fri, 25 May 2012 15:21:29 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PDLSGT022563 for ; Fri, 25 May 2012 15:21:28 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 15:21:28 +0200 (CEST) From: Wojciech Puchar To: freebsd-questions@freebsd.org 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 15:21:29 +0200 (CEST) Subject: question about milter software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 13:21:31 -0000 Does anyone know milter software (or maybe anything else) to add to sendmail that can rewrite outgoing mail and add HTML footer automatically? Please do not tell me about how stupid HTML mail is at all - i know it, it is not my idea. thanks From owner-freebsd-questions@FreeBSD.ORG Fri May 25 13:29:32 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BEF55106564A for ; Fri, 25 May 2012 13:29:32 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id EDBEA8FC0A for ; Fri, 25 May 2012 13:29:31 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PDTUFw022691 for ; Fri, 25 May 2012 15:29:30 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PDTUJi022688 for ; Fri, 25 May 2012 15:29:30 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 15:29:29 +0200 (CEST) From: Wojciech Puchar To: FreeBSD In-Reply-To: <20120525073748.2d4df318@scorpio> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <87fwaozfug.fsf@Shanna.FStaals.net> <20120525073748.2d4df318@scorpio> 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 15:29:30 +0200 (CEST) Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 13:29:32 -0000 > the antithesis of 'cloud'?" I would never invest a dime or a single bit > of data to a cloud venture. how one can invest of something that isn't even defined clearly. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 13:55:22 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21634106564A for ; Fri, 25 May 2012 13:55:22 +0000 (UTC) (envelope-from freebsd@qeng-ho.org) Received: from fileserver.home.qeng-ho.org (blue.qeng-ho.org [217.155.128.241]) by mx1.freebsd.org (Postfix) with ESMTP id 9A9AF8FC14 for ; Fri, 25 May 2012 13:55:21 +0000 (UTC) Received: from fileserver.home.qeng-ho.org (localhost [127.0.0.1]) by fileserver.home.qeng-ho.org (8.14.5/8.14.5) with ESMTP id q4PDt4es075267 for ; Fri, 25 May 2012 14:55:04 +0100 (BST) (envelope-from freebsd@qeng-ho.org) Message-ID: <4FBF8F38.9070300@qeng-ho.org> Date: Fri, 25 May 2012 14:55:04 +0100 From: Arthur Chance User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120425 Thunderbird/12.0 MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" References: <4FBF3EA9.2000103@esiee.fr> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 13:55:22 -0000 On 05/25/12 14:16, Wojciech Puchar wrote: >> >> I'm searching for a "cloud software" :-) > > look at clouds. > >> >> More precisely we would like to offer to our students and professors >> a kind of private cloud to access/manipulate their personnal data >> from almost anywhere and with almost any devices ... >> ( Personnal PC, Mac, smartphones and tablets ... etc ) > > if you first define what "cloud" is - then maybe i can help you. > > Now "cloud" is just marketdroid term meaning 100 different things, often > contradictory. With apologies to Joni Mitchell: I've looked at clouds from both sides now, From up and down, and still somehow, It's cloud illusions I recall, I really don't know clouds, at all. Well, someone had to say it. :-) It summarises the marketing hype perfectly. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 14:04:57 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9D8D106566C for ; Fri, 25 May 2012 14:04:57 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id C6C0C8FC19 for ; Fri, 25 May 2012 14:04:33 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PE4VjW022863; Fri, 25 May 2012 16:04:31 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PE4VWm022860; Fri, 25 May 2012 16:04:31 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 16:04:31 +0200 (CEST) From: Wojciech Puchar To: Arthur Chance In-Reply-To: <4FBF8F38.9070300@qeng-ho.org> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 16:04:32 +0200 (CEST) Cc: "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 14:04:57 -0000 > > With apologies to Joni Mitchell: > > I've looked at clouds from both sides now, > From up and down, and still somehow, > It's cloud illusions I recall, > I really don't know clouds, at all. > > Well, someone had to say it. :-) It summarises the marketing hype perfectly. fashion is quite often deciding factor not just in clothes. Actually it works just the same in IT. What is funny with "cloud computing" (new fashion trend) is that isn't defined at all. most probably marketing people found out that it is not needed to define anything to make people buy....ANYTHING. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 14:12:39 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B127D106564A for ; Fri, 25 May 2012 14:12:39 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from hp9.esiee.fr (hp9.esiee.fr [147.215.1.4]) by mx1.freebsd.org (Postfix) with ESMTP id 692CE8FC08 for ; Fri, 25 May 2012 14:12:39 +0000 (UTC) Received: from mail.esiee.fr (mail.esiee.fr [147.215.1.3]) by hp9.esiee.fr (Postfix) with ESMTP id 7FFFD14EA37A for ; Fri, 25 May 2012 16:12:38 +0200 (CEST) X-DKIM: OpenDKIM Filter v2.5.2 hp9.esiee.fr 7FFFD14EA37A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=esiee.fr; s=MAILOUT; t=1337955158; bh=dSrk4pKchHjfXysWp4IScaMRmuokrIcGGvDwoEtDNO4=; h=Date:From:To:Subject:References:In-Reply-To; b=ueZoI9qZTk/Rz7bTh7AOBdKfb5stEJSv1Sok1x+6ux76lgeku66SHzhpmN0xZPxlz IDILfGyJwrsUAVbEc8euqO+8Ayp3LeyJzOMPYhqaERd9FKpRUvSEf71fydjGwSPoUr qFP1vgVfnqE+sHu/aGgP4/8gZ9ho/wtqRyjuUUHU= Received: from mail.esiee.fr (localhost [127.0.0.1]) by VAMS.dummy (Postfix) with SMTP id 6597B3C3CC0 for ; Fri, 25 May 2012 16:12:38 +0200 (CEST) Received: from [147.215.1.21] (lisa.esiee.fr [147.215.1.21]) by mail.esiee.fr (Postfix) with ESMTP id 3BE233C3CBF for ; Fri, 25 May 2012 16:12:38 +0200 (CEST) Message-ID: <4FBF9356.7040504@esiee.fr> Date: Fri, 25 May 2012 16:12:38 +0200 From: Frank Bonnet User-Agent: Mozilla/5.0 (X11; Linux i686; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 14:12:39 -0000 On 05/25/2012 04:04 PM, Wojciech Puchar wrote: >> >> With apologies to Joni Mitchell: >> >> I've looked at clouds from both sides now, >> From up and down, and still somehow, >> It's cloud illusions I recall, >> I really don't know clouds, at all. >> >> Well, someone had to say it. :-) It summarises the marketing hype >> perfectly. > > fashion is quite often deciding factor not just in clothes. Actually > it works just the same in IT. What is funny with "cloud computing" > (new fashion trend) is that isn't defined at all. most probably > marketing people found out that it is not needed to define anything to > make people buy....ANYTHING. Well ... My goal was NOT to start a flame war around the "cloud" term ... next time I'll choose better words :-) From owner-freebsd-questions@FreeBSD.ORG Fri May 25 14:37:25 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40AB3106566B for ; Fri, 25 May 2012 14:37:25 +0000 (UTC) (envelope-from bsd4michelle@tamay-dogan.net) Received: from mail.tamay-dogan.net (mail.tamay-dogan.net [78.47.247.21]) by mx1.freebsd.org (Postfix) with ESMTP id DF6EA8FC0A for ; Fri, 25 May 2012 14:37:24 +0000 (UTC) Received: from storage000.tdcloud.net (router.intranet2.tamay-dogan.net [::ffff:85.182.220.41]) (AUTH: PLAIN michelle.konzack, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by mail.tamay-dogan.net with esmtp; Fri, 25 May 2012 16:32:17 +0200 id 00001F45.4FBF97F1.00001102 Received: from work1.intranet1.tamay-dogan.net (work1.intranet1.tamay-dogan.net [::ffff:192.168.0.13]) by storage000.tdcloud.net with esmtp; Fri, 25 May 2012 16:24:14 +0200 id 00036F56.4FBF960E.0000057E Received: by work1.intranet1.tamay-dogan.net (sSMTP sendmail emulation); Fri, 25 May 2012 16:42:49 +0200 Date: Fri, 25 May 2012 16:42:49 +0200 From: Michelle Konzack To: freebsd-questions@freebsd.org Message-ID: <20120525144249.GK18092@work1> References: <4FBF3EA9.2000103@esiee.fr> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=_storage000-1406-1337955855-0001-2" Content-Disposition: inline In-Reply-To: <4FBF3EA9.2000103@esiee.fr> X-Message-Flag: Improper configuration of Outlook is a breeding ground for viruses. Please take care your Client is configured correctly. Greetings Michelle. X-Disclaimer-DE: Eine weitere Verwendung oder die Veroeffentlichung dieser Mail oder dieser Mailadresse ist nur mit der Einwilligung des Autors gestattet. X-Disclaimer-EN: What are you looking here? X-Disclaimer-FR: Quest ce tu regarder ici? Organization: Tamay Dogan Network X-Operating-System: Linux work1 2.6.32-5-686 X-Homepage: http://www.itsystems.tamay-dogan.net/ User-Agent: Mutt/1.5.20 (2009-06-14) Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 14:37:25 -0000 This is a MIME-formatted message. If you see this text it means that your E-mail software does not support MIME-formatted messages. --=_storage000-1406-1337955855-0001-2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello Frank, Am 2012-05-25 10:11:21, hacktest Du folgendes herunter: > Hello >=20 > I'm searching for a "cloud software" :-) LOL :-P :-D > More precisely we would like to offer to our students and professors > a kind of private cloud to access/manipulate their personnal data > from almost anywhere and with almost any devices ... > ( Personnal PC, Mac, smartphones and tablets ... etc ) I do storage and database services since 1999 and run currently more then 400 servers in 6 locations. When some years ago peoples startinfg talking about "cloud computing" I was puzzeling arround what they mean with it... Realy, - I understood nothing. What they have defined as "Cloud Computing" I have used already for more then 10 years. Or do they mean with "cloud computing" adding new interfaces to a huge storage server with an "office webinterface" ? What I am adding to my service is an access for smartphones and tablets. Something like image galleries (private, groups, public, shared, ACLs), Video Interface (works like YouTube or even private streaming) is already since several years... Yeah, what I am missing is a Web-Version of OpenOffice or LibreOffice, which let users read, create and edit documents... But there is already work in progress. So, what does "Cloud Computing" realy mean? Something like a clustered hyperspeedy calculator? Yes you can get if =66rom me. The system use unused capacities of my 400 servers plus a self made BladeServer with 256 CPUs (currently only 64 inserted because they are quiet expensive) > Anyone could help ? Not realy ;-) becaue it depends, what you undertsnd under Cloud Systems / Cloud Computing / Cloud Networking=20 > Thank you Thanks, Greetings and nice Day/Evening Michelle Konzack --=20 ##################### Debian GNU/Linux Consultant ###################### Development of Intranet and Embedded Systems with Debian GNU/Linux Internet Service Provider, Cloud Computing itsystems@tdnet Jabber linux4michelle@jabber.ccc.de Owner Michelle Konzack Gewerbe Strasse 3 Tel office: +49-176-86004575 77694 Kehl Tel mobil: +49-177-9351947 Germany Tel mobil: +33-6-61925193 (France) USt-ID: DE 278 049 239 Linux-User #280138 with the Linux Counter, http://counter.li.org/ --=_storage000-1406-1337955855-0001-2 Content-Type: application/pgp-signature; name="signature.pgp" Content-Transfer-Encoding: 7bit Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iD8DBQFPv5ppC0FPBMSS+BIRAgoKAJ46BJ7nPTrbhKQtgsuPnhN/LOheYQCfSdeA hFjlKLJXRxnLjKV0lxWTJ4A= =2ELt -----END PGP SIGNATURE----- --=_storage000-1406-1337955855-0001-2-- From owner-freebsd-questions@FreeBSD.ORG Fri May 25 14:49:12 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B190B1065672 for ; Fri, 25 May 2012 14:49:12 +0000 (UTC) (envelope-from freebsd@qeng-ho.org) Received: from fileserver.home.qeng-ho.org (blue.qeng-ho.org [217.155.128.241]) by mx1.freebsd.org (Postfix) with ESMTP id 3A58C8FC17 for ; Fri, 25 May 2012 14:49:11 +0000 (UTC) Received: from fileserver.home.qeng-ho.org (localhost [127.0.0.1]) by fileserver.home.qeng-ho.org (8.14.5/8.14.5) with ESMTP id q4PEn3PI075404; Fri, 25 May 2012 15:49:04 +0100 (BST) (envelope-from freebsd@qeng-ho.org) Message-ID: <4FBF9BDF.4020208@qeng-ho.org> Date: Fri, 25 May 2012 15:49:03 +0100 From: Arthur Chance User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120425 Thunderbird/12.0 MIME-Version: 1.0 To: Frank Bonnet References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> In-Reply-To: <4FBF9356.7040504@esiee.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 14:49:12 -0000 On 05/25/12 15:12, Frank Bonnet wrote: > On 05/25/2012 04:04 PM, Wojciech Puchar wrote: >>> >>> With apologies to Joni Mitchell: >>> >>> I've looked at clouds from both sides now, >>> From up and down, and still somehow, >>> It's cloud illusions I recall, >>> I really don't know clouds, at all. >>> >>> Well, someone had to say it. :-) It summarises the marketing hype >>> perfectly. >> >> fashion is quite often deciding factor not just in clothes. Actually >> it works just the same in IT. What is funny with "cloud computing" >> (new fashion trend) is that isn't defined at all. most probably >> marketing people found out that it is not needed to define anything to >> make people buy....ANYTHING. > > Well ... My goal was NOT to start a flame war around the "cloud" term ... I wasn't flaming, just remarking on the fact that the meaning of "cloud" depends on the company that is trying to sell you cloud related products. > next time I'll choose better words :-) A bit more specific would be useful. > we would like to offer to our students and professors > a kind of private cloud to access/manipulate their personnal data > from almost anywhere and with almost any devices could be taken to mean anything from WebDAV/Dropbox functionality to Hadoop type processing or data mining. What sort of and how much "manipulation" is needed? If you answer that it would let us help you more. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 15:13:00 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E27C7106566C for ; Fri, 25 May 2012 15:13:00 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from hp9.esiee.fr (hp9.esiee.fr [147.215.1.4]) by mx1.freebsd.org (Postfix) with ESMTP id 972358FC08 for ; Fri, 25 May 2012 15:13:00 +0000 (UTC) Received: from mail.esiee.fr (mail.esiee.fr [147.215.1.3]) by hp9.esiee.fr (Postfix) with ESMTP id CE7D214EA510; Fri, 25 May 2012 17:12:58 +0200 (CEST) X-DKIM: OpenDKIM Filter v2.5.2 hp9.esiee.fr CE7D214EA510 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=esiee.fr; s=MAILOUT; t=1337958778; bh=tmAPklaay8/BKeY++4GVg+dj9CtdqPBGRShC/mg0Ons=; h=Date:From:To:CC:Subject:References:In-Reply-To; b=bRuDW6KLZhKHHLJlfVLGdqEtpWI7f3TMwxTOcoV7hPMJ3B5IzyLslFrx0SBcM2Qmt ZqBvPb/C/OkFRi3vHKqAkqwzMQ108zxfNIM5It56V6E0DFaErFKhQ8msTOHRHOO0Rt YTacM1nG1i1ouL11NrSlL7137Sb+L07Ux35/vkHY= Received: from mail.esiee.fr (localhost [127.0.0.1]) by VAMS.dummy (Postfix) with SMTP id B33533C4F27; Fri, 25 May 2012 17:12:58 +0200 (CEST) Received: from [147.215.1.21] (lisa.esiee.fr [147.215.1.21]) by mail.esiee.fr (Postfix) with ESMTP id 8D77C3C4F16; Fri, 25 May 2012 17:12:58 +0200 (CEST) Message-ID: <4FBFA17A.7010906@esiee.fr> Date: Fri, 25 May 2012 17:12:58 +0200 From: Frank Bonnet User-Agent: Mozilla/5.0 (X11; Linux i686; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: Arthur Chance References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> In-Reply-To: <4FBF9BDF.4020208@qeng-ho.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 15:13:01 -0000 On 05/25/2012 04:49 PM, Arthur Chance wrote: > On 05/25/12 15:12, Frank Bonnet wrote: >> On 05/25/2012 04:04 PM, Wojciech Puchar wrote: >>>> >>>> With apologies to Joni Mitchell: >>>> >>>> I've looked at clouds from both sides now, >>>> From up and down, and still somehow, >>>> It's cloud illusions I recall, >>>> I really don't know clouds, at all. >>>> >>>> Well, someone had to say it. :-) It summarises the marketing hype >>>> perfectly. >>> >>> fashion is quite often deciding factor not just in clothes. Actually >>> it works just the same in IT. What is funny with "cloud computing" >>> (new fashion trend) is that isn't defined at all. most probably >>> marketing people found out that it is not needed to define anything to >>> make people buy....ANYTHING. >> >> Well ... My goal was NOT to start a flame war around the "cloud" term >> ... > > I wasn't flaming, just remarking on the fact that the meaning of > "cloud" depends on the company that is trying to sell you cloud > related products. > >> next time I'll choose better words :-) > > A bit more specific would be useful. > >> we would like to offer to our students and professors >> a kind of private cloud to access/manipulate their personnal data >> from almost anywhere and with almost any devices > > could be taken to mean anything from WebDAV/Dropbox functionality to > Hadoop type processing or data mining. What sort of and how much > "manipulation" is needed? If you answer that it would let us help you > more. Well ... in short I need to let our users ( students + profs ) access and share their data ( living in their UNIX home directories ) The access must be easy and possible from as much devices as possible. Am I clear enough ? ( sorry English is not my native language ...) From owner-freebsd-questions@FreeBSD.ORG Fri May 25 15:22:54 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F6AB106566C for ; Fri, 25 May 2012 15:22:54 +0000 (UTC) (envelope-from phxanthos@wanadoo.fr) Received: from out.smtpout.orange.fr (out02.smtpout.orange.fr [193.252.22.211]) by mx1.freebsd.org (Postfix) with ESMTP id 2002C8FC08 for ; Fri, 25 May 2012 15:22:53 +0000 (UTC) Received: from Bureau ([86.214.23.70]) by mwinf5d58 with ME id EFNn1j0051WkHbJ03FNniH; Fri, 25 May 2012 17:22:47 +0200 Message-ID: <5637E8FA3F944F679A04F18F79CA772C@Bureau> From: "Philippe Combier" To: Date: Fri, 25 May 2012 17:22:52 +0200 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal Importance: Normal X-Mailer: Microsoft Windows Live Mail 15.4.3555.308 X-MimeOLE: Produced By Microsoft MimeOLE V15.4.3555.308 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: compatibility X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 15:22:54 -0000 Hello ! I have a Samsung portable with an Intel Atom cpu N450 . In = http://www.freebsd.org/fr/where.html , you specify =E2=80=9Cversions & = platform =E2=80=9C and I cannot locate the type of processor of my = Samsung .What choice do I do ?=20 Thank you very much for the answer From owner-freebsd-questions@FreeBSD.ORG Fri May 25 15:44:36 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AE23106564A for ; Fri, 25 May 2012 15:44:36 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id CCEAA8FC08 for ; Fri, 25 May 2012 15:44:35 +0000 (UTC) Received: by obcni5 with SMTP id ni5so1815978obc.13 for ; Fri, 25 May 2012 08:44:35 -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=q1eCNaMLvHA/GRJVSE9YnVweUj1sFHJia+P6LihjvAQ=; b=fVX/RRgs+3WPTTAc0dZAyd6Dyftm9f80L9FaOLwMbTzT1Wdqts5kQoerGYZ3RRyOkJ jeBBaGlEf3BNH65fHI0a2mK2HxC4jFA4tDHYxYGsBhsSseYHpkdiwUCuscMeeB8Pg574 PFz8xs/2YcMJsAt0XHyeO2d1V4k0ikQ1JVa1FvBVumnCI2TIk66hkN1zghS3tMdZfJiA wqHE0Kveg7rv1DTsNNLFKI2kKGfTizNuE0fe4Uk5Lhm6IbHvlH+Pr9ucjHBAxKucc6Ls YZlnDPANe/FkrmlHeRpwyMyUGQ8VjBNjh1MpTKuU2UwFCjrxbiBBqc7tPg61rG+E7LAG FC9A== MIME-Version: 1.0 Received: by 10.182.31.102 with SMTP id z6mr3574405obh.78.1337960675092; Fri, 25 May 2012 08:44:35 -0700 (PDT) Received: by 10.182.53.1 with HTTP; Fri, 25 May 2012 08:44:34 -0700 (PDT) In-Reply-To: <4FBFA17A.7010906@esiee.fr> References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> Date: Fri, 25 May 2012 08:44:34 -0700 Message-ID: From: Mehmet Erol Sanliturk To: Frank Bonnet Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Arthur Chance , freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 15:44:36 -0000 On Fri, May 25, 2012 at 8:12 AM, Frank Bonnet wrote: > On 05/25/2012 04:49 PM, Arthur Chance wrote: > >> On 05/25/12 15:12, Frank Bonnet wrote: >> >>> On 05/25/2012 04:04 PM, Wojciech Puchar wrote: >>> >>>> >>>>> With apologies to Joni Mitchell: >>>>> >>>>> I've looked at clouds from both sides now, >>>>> From up and down, and still somehow, >>>>> It's cloud illusions I recall, >>>>> I really don't know clouds, at all. >>>>> >>>>> Well, someone had to say it. :-) It summarises the marketing hype >>>>> perfectly. >>>>> >>>> >>>> fashion is quite often deciding factor not just in clothes. Actually >>>> it works just the same in IT. What is funny with "cloud computing" >>>> (new fashion trend) is that isn't defined at all. most probably >>>> marketing people found out that it is not needed to define anything to >>>> make people buy....ANYTHING. >>>> >>> >>> Well ... My goal was NOT to start a flame war around the "cloud" term .= .. >>> >> >> I wasn't flaming, just remarking on the fact that the meaning of "cloud" >> depends on the company that is trying to sell you cloud related products= . >> >> next time I'll choose better words :-) >>> >> >> A bit more specific would be useful. >> >> we would like to offer to our students and professors >>> a kind of private cloud to access/manipulate their personnal data >>> from almost anywhere and with almost any devices >>> >> >> could be taken to mean anything from WebDAV/Dropbox functionality to >> Hadoop type processing or data mining. What sort of and how much >> "manipulation" is needed? If you answer that it would let us help you mo= re. >> > > > Well ... in short I need to let our users ( students + profs ) access and > share their data ( living in their UNIX home directories ) > The access must be easy and possible from as much devices as possible. > Am I clear enough ? ( sorry English is not my native language ...) > > > > > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-servers.h= tml http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-nfs.html 30.3 Network File System (NFS) Use NFS : Define each computer as both "Server" to serve to other users(s) and "Client" .to see the other server(s) . If there are Windows computers , you may also use SAMBA : http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-samba.htm= l 30.9 File and Print Services for Microsoft=C2=AE Windows=C2=AE Clients (Sam= ba) Windows 7 may see NFS , but previous editions , personally I do NOT know any possibility . http://pic.dhe.ibm.com/infocenter/sonasic/sonas1ic/index.jsp?topic=3D%2Fcom= .ibm.sonas.doc%2Fusgr_cnnctng_via_nfs_frm_wndws.html Enabling the NFS client on a Windows 7 system: 1. Select Control Panel. 2. Select Programs. 3. Select Programs and Features. 4. Select Turn Windows Features on or off. 5. Select Services for NFS. 6. Select the check box Client for NFS and click OK. Thank you very much . Mehmet Erol Sanliturk From owner-freebsd-questions@FreeBSD.ORG Fri May 25 15:55:09 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2ED8A1065675 for ; Fri, 25 May 2012 15:55:09 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id DD0FE8FC1A for ; Fri, 25 May 2012 15:55:08 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4PFt74Z021288 for ; Fri, 25 May 2012 09:55:08 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBFAB5B.6010405@dreamchaser.org> Date: Fri, 25 May 2012 09:55:07 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Fri, 25 May 2012 09:55:08 -0600 (MDT) Subject: ghostscript build problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 15:55:09 -0000 My build of gnome2-lite failed building ghostscript. Went to ports/ghostscript and did make clean make install and I still get the same error. After make install attempt, work/ghostscript-9.05/epag-3.09 exists and has files with original dates, except ert.c gdevpag.c were freshly created. however, there is no .o or executable. In addition, the directory epag-3.09 has owner and group set to 1000, which as nearly as I can tell are both non-existent owner and group on this system. output of make -v install: ... => SHA256 Checksum OK for ghostscript/ghostscript-9.05.tar.bz2. => SHA256 Checksum OK for ghostscript/epag-3.09.tar.gz. /usr/bin/tar -C /usr/ports/print/ghostscript9/work/ghostscript-9.05 -xzf /usr/ports/distfiles/ghostscript/epag-3.09.tar.gz /bin/ln -s -f epag-3.09 /usr/ports/print/ghostscript9/work/ghostscript-9.05/epag install -o root -g wheel -m 444 /usr/ports/print/ghostscript9/files/epag.contrib.mak /usr/ports/print/ghostscript9/work/ghostscript -9.05/base/epag.contrib.mak ... ===> Building for ghostscript9-9.05_3 /bin/ln -s -f /usr/ports/print/ghostscript9/work/ghostscript-9.05/epag-3.09/gdevepag.c /usr/ports/print/ghostscript9/work/ghostscrip t-9.05/base /bin/mkdir -p /usr/ports/print/ghostscript9/work/ghostscript-9.05/contrib/epag install -o root -g wheel -m 444 /usr/ports/print/ghostscript9/work/ghostscript-9.05/epag-3.09/* /usr/ports/print/ghostscript9/work/ ghostscript-9.05/contrib/epag /bin/mkdir -p /usr/ports/print/ghostscript9/work/ghostscript-9.05/obj /bin/mkdir -p /usr/ports/print/ghostscript9/work/ghostscript-9.05/bin GNU Make 3.82 Built for amd64-portbld-freebsd9.0 ... cd /usr/ports/print/ghostscript9/work/ghostscript-9.05/epag-3.09 && /usr/bin/env CFLAGS_STANDARD="-O2 -pipe -fno-strict-aliasing" XCFLAGS="" XLDFLAGS="-pthread" EXTRALIBS="-liconv" SOC_LOADER="dxmainc.c" FT_BRIDGE=1 SHELL=/bin/sh NO_LINT=YES AUTOCONF=/usr/loc al/bin/autoconf-2.69 AUTOCONF_DIR=/usr/local/share/autoconf-2.69 AUTOHEADER=/usr/local/bin/autoheader-2.69 AUTOIFNAMES=/usr/local /bin/ifnames-2.69 AUTOM4TE=/usr/local/bin/autom4te-2.69 AUTORECONF=/usr/local/bin/autoreconf-2.69 AUTOSCAN=/usr/local/bin/autosca n-2.69 AUTOUPDATE=/usr/local/bin/autoupdate-2.69 AUTOCONF_VERSION=2.69 PREFIX=/usr/local LOCALBASE=/usr/local MOTIFLIB="-L/usr/ local/lib -lXm -lXp" LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fno-strict-aliasing" CPP="cpp" CPPFLAGS="-DUPD_SIGNAL=0 -I. -I/ usr/ports/print/ghostscript9/work/ghostscript-9.05/lcms/include -I/usr/local/include/libpng -I/usr/ports/print/ghostscript9/work/g hostscript-9.05/openjpeg/libopenjpeg -I/usr/ports/print/ghostscript9/work/ghostscript-9.05/openjpeg -I/usr/local/include" LDFLAGS =" -L/usr/local/lib" CXX="c++" CXXFLAGS="-O2 -pipe -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s - o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555 " BSD_INSTALL_DATA="install -o root -g wheel -m 444" BSD_INSTALL_MAN="install -o root -g wheel -m 444" make -f Makefile cc -O2 -pipe -fno-strict-aliasing -c /usr/ports/print/ghostscript9/work/ghostscript-9.05/epag-3.09/ert.c cc -o ert ert.o cd /usr/ports/print/ghostscript9/work/ghostscript-9.05 && cc -O2 -pipe -fno-strict-aliasing -I./obj -I./soobj -I./base -I./contrib /pcl3/eprn -o bin/pcl3opts contrib/pcl3/src/pcl3opts.c contrib/pcl3/src/pclscan.c contrib/pcl3/eprn/mediasize.c contrib/pcl3/src/p clsize.c test: -eq: unexpected operator In file included from contrib/pcl3/eprn/mediasize.c:26: ./base/std.h:23:18: error: arch.h: No such file or directory *** Error code 1 Stop in /usr/ports/print/ghostscript9. Anyone else have this problem or can suggest a fix? Thanks, Gary From owner-freebsd-questions@FreeBSD.ORG Fri May 25 16:01:45 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85D8B1065674 for ; Fri, 25 May 2012 16:01:45 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from ozzie.tundraware.com (ozzie.tundraware.com [75.145.138.73]) by mx1.freebsd.org (Postfix) with ESMTP id 462BA8FC12 for ; Fri, 25 May 2012 16:01:45 +0000 (UTC) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by ozzie.tundraware.com (8.14.5/8.14.5) with ESMTP id q4PFxCPj077025 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Fri, 25 May 2012 10:59:13 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <4FBFAC50.8090604@tundraware.com> Date: Fri, 25 May 2012 10:59:12 -0500 From: Tim Daneliuk User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: FreeBSD Mailing List Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (ozzie.tundraware.com [192.168.0.1]); Fri, 25 May 2012 10:59:13 -0500 (CDT) X-TundraWare-MailScanner-Information: Please contact the ISP for more information X-TundraWare-MailScanner-ID: q4PFxCPj077025 X-TundraWare-MailScanner: Found to be clean X-TundraWare-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Subject: Somewhat OT: CVS Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 16:01:45 -0000 Forgive the OT nature of this, but FBSD tends to be a big CVS user, so I am hoping someone has an answer for this. Feel free to reply privately if you do not wish to inflict your answer up on the whole list... Is there a way to checkout a project from a CVS repo *into the current directory*? If I do this: cvs co -d . foo Or this: cvs co -d ./ foo I get this: cvs checkout: existing repository /usr/cvs/... does not match /usr/cvs/.../foo cvs checkout: ignoring module waccess Ideas? -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Fri May 25 16:07:52 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9AE0410657A4 for ; Fri, 25 May 2012 16:07:52 +0000 (UTC) (envelope-from ulrich@pukruppa.de) Received: from pukruppa.de (pd95cabe3.dip0.t-ipconnect.de [217.92.171.227]) by mx1.freebsd.org (Postfix) with ESMTP id 078DC8FC15 for ; Fri, 25 May 2012 16:07:51 +0000 (UTC) Received: from pukruppa.de (localhost [127.0.0.1]) by pukruppa.de (8.14.5/8.14.5) with ESMTP id q4PFj4kh081193 for ; Fri, 25 May 2012 17:45:05 +0200 (CEST) (envelope-from ulrich@pukruppa.de) Message-ID: <4FBFA900.50709@pukruppa.de> Date: Fri, 25 May 2012 17:45:04 +0200 From: Peter Ulrich Kruppa User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120509 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> In-Reply-To: <4FBFA17A.7010906@esiee.fr> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 16:07:52 -0000 Hi! On 25.05.2012 17:12, Frank Bonnet wrote: > On 05/25/2012 04:49 PM, Arthur Chance wrote: >> On 05/25/12 15:12, Frank Bonnet wrote: >>> On 05/25/2012 04:04 PM, Wojciech Puchar wrote: >>>>> >>>>> With apologies to Joni Mitchell: >>>>> >>>>> I've looked at clouds from both sides now, >>>>> From up and down, and still somehow, >>>>> It's cloud illusions I recall, >>>>> I really don't know clouds, at all. >>>>> >>>>> Well, someone had to say it. :-) It summarises the marketing hype >>>>> perfectly. >>>> >>>> fashion is quite often deciding factor not just in clothes. Actually >>>> it works just the same in IT. What is funny with "cloud computing" >>>> (new fashion trend) is that isn't defined at all. most probably >>>> marketing people found out that it is not needed to define anything to >>>> make people buy....ANYTHING. >>> >>> Well ... My goal was NOT to start a flame war around the "cloud" term >>> ... >> >> I wasn't flaming, just remarking on the fact that the meaning of >> "cloud" depends on the company that is trying to sell you cloud >> related products. >> >>> next time I'll choose better words :-) >> >> A bit more specific would be useful. >> >>> we would like to offer to our students and professors >>> a kind of private cloud to access/manipulate their personnal data >>> from almost anywhere and with almost any devices >> >> could be taken to mean anything from WebDAV/Dropbox functionality to >> Hadoop type processing or data mining. What sort of and how much >> "manipulation" is needed? If you answer that it would let us help you >> more. > > > Well ... in short I need to let our users ( students + profs ) access > and share their data ( living in their UNIX home directories ) > The access must be easy and possible from as much devices as possible. > Am I clear enough ? ( sorry English is not my native language ...) Well, this should reduce the cloud to an sftp-server or - if their stuff isn't security sensitive to an ftp-server. Greetings Uli. > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Fri May 25 16:10:39 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9140C106564A for ; Fri, 25 May 2012 16:10:39 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 593D88FC0A for ; Fri, 25 May 2012 16:10:38 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4PGAcB7021339 for ; Fri, 25 May 2012 10:10:38 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBFAEFE.6040700@dreamchaser.org> Date: Fri, 25 May 2012 10:10:38 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBF1EF2.5020400@dreamchaser.org> In-Reply-To: <4FBF1EF2.5020400@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Fri, 25 May 2012 10:10:38 -0600 (MDT) Subject: portupgrade ... doesn't X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 16:10:39 -0000 Has to be something stupid: 347 /usr/ports#pkg_version -v | grep updating p5-XML-Twig-3.39 < needs updating (port has 3.40) 348 /usr/ports#portupgrade -Rv P5-XML-Twig ---> Session started at: Fri, 25 May 2012 10:03:54 -0600 [Exclude up-to-date packages done] ** None has been installed or upgraded. ---> Session ended at: Fri, 25 May 2012 10:03:54 -0600 (consumed 00:00:00) 350 /usr/ports#pkg_info | grep p5-XML-Twig p5-XML-Twig-3.39 Process huge XML documents by chunks via a tree interface hints? From owner-freebsd-questions@FreeBSD.ORG Fri May 25 16:28:06 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D0E7106564A for ; Fri, 25 May 2012 16:28:06 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by mx1.freebsd.org (Postfix) with ESMTP id DD2F98FC0C for ; Fri, 25 May 2012 16:28:05 +0000 (UTC) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.14.4/8.14.4) with ESMTP id q4PGS4xp039301; Fri, 25 May 2012 12:28:04 -0400 (EDT) (envelope-from doug@fledge.watson.org) Received: from localhost (doug@localhost) by fledge.watson.org (8.14.4/8.14.4/Submit) with ESMTP id q4PGS4XN039295; Fri, 25 May 2012 12:28:04 -0400 (EDT) (envelope-from doug@fledge.watson.org) Date: Fri, 25 May 2012 12:28:04 -0400 (EDT) From: doug To: Philippe Combier In-Reply-To: <5637E8FA3F944F679A04F18F79CA772C@Bureau> Message-ID: References: <5637E8FA3F944F679A04F18F79CA772C@Bureau> 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.2.3 (fledge.watson.org [127.0.0.1]); Fri, 25 May 2012 12:28:04 -0400 (EDT) Cc: freebsd-questions@FreeBSD.org Subject: Re: compatibility X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: doug@safeport.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 16:28:06 -0000 On Fri, 25 May 2012, Philippe Combier wrote: > Hello ! > I have a Samsung portable with an Intel Atom cpu N450 . In http://www.freebsd.org/fr/where.html , you specify ?versions & platform ? and I cannot locate the type of processor of my Samsung .What choice do I do ? > Thank you very much for the answer http://ark.intel.com/products/42503 = amd64 From owner-freebsd-questions@FreeBSD.ORG Fri May 25 16:40:10 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2431106564A for ; Fri, 25 May 2012 16:40:10 +0000 (UTC) (envelope-from freebsd@qeng-ho.org) Received: from fileserver.home.qeng-ho.org (blue.qeng-ho.org [217.155.128.241]) by mx1.freebsd.org (Postfix) with ESMTP id 4A3DC8FC14 for ; Fri, 25 May 2012 16:40:10 +0000 (UTC) Received: from fileserver.home.qeng-ho.org (localhost [127.0.0.1]) by fileserver.home.qeng-ho.org (8.14.5/8.14.5) with ESMTP id q4PGe7cb075679; Fri, 25 May 2012 17:40:08 +0100 (BST) (envelope-from freebsd@qeng-ho.org) Message-ID: <4FBFB5E7.1050005@qeng-ho.org> Date: Fri, 25 May 2012 17:40:07 +0100 From: Arthur Chance User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120425 Thunderbird/12.0 MIME-Version: 1.0 To: Frank Bonnet References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> In-Reply-To: <4FBFA17A.7010906@esiee.fr> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 16:40:11 -0000 On 05/25/12 16:12, Frank Bonnet wrote: [big snip] > Well ... in short I need to let our users ( students + profs ) access > and share their data ( living in their UNIX home directories ) > The access must be easy and possible from as much devices as possible. > Am I clear enough ? ( sorry English is not my native language ...) That's fine. OK, so you're after basic file system visibility everywhere. You should look at Mehmet Erol Sanliturk's reply as well, he gives useful links. As he said in his post, NFS is the first place to start. It's available on FreeBSD, Linux, Mac OS, other Unix derived systems, and Windows 7. The one thing to be careful of is that it works best when you have all home directories on central servers and all access is on client machines. It is possible to cross mount NFS that machines act as both servers and clients but it has many problems and one server crashing can cause everything to lock up. (Been there, done that, cursed repeatedly.) For earlier (< 7) Windows boxes, one possibility is running Samba on the Unix servers. This would seem most natural to a Windows user as they merely have to browse the network to find the shared file systems. However, another possibility is running a WebDAV server that makes the home directories visible. Windows (>= XP) can connect drive letters to WebDAV servers, and there are also Android and iPhone apps that can access WebDAV. This would let smartphone and tablet users get to the shared data, if that's useful. Please note that I use Android but not iOS, so any IOS suggestions are from a quick Google search, not experience. It also seems that you have to pay for the relevant iOS apps. Maybe an iPhone/iPad user can improve on this? I hope this is of some help. Possibly useful links: The handbook chapter on network servers. This covers NFS, Samba and Apache which can be used for WebDAV. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/book.html#NETWORK-SERVERS Wikipedia on WebDAV. This links onwards to all sorts of related resources. http://en.wikipedia.org/wiki/WebDAV An Android app that can access WebDAV (and much more besides). This is one I use, but please note that I haven't used it specifically for WebDAV. You may be able to find others but this is well rated. It's got free and paid for versions. https://play.google.com/store/apps/details?id=xcxin.filexpert A (paid for) iPhone WebDAV app. Apparently iWork for iOS can also handle WebDAV, but I know nothing about it or its suitability. http://greenbytes.de/dav-e.html From owner-freebsd-questions@FreeBSD.ORG Fri May 25 17:05:13 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B16891065672 for ; Fri, 25 May 2012 17:05:13 +0000 (UTC) (envelope-from sterling@camdensoftware.com) Received: from wh1.interactivevillages.com (ca.2e.7bae.static.theplanet.com [174.123.46.202]) by mx1.freebsd.org (Postfix) with ESMTP id 723548FC08 for ; Fri, 25 May 2012 17:05:13 +0000 (UTC) Received: from 184-78-197-203.war.clearwire-wmx.net ([184.78.197.203]:10002 helo=_HOSTNAME_) by wh1.interactivevillages.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.77) (envelope-from ) id 1SXxfg-00031e-7s for freebsd-questions@freebsd.org; Fri, 25 May 2012 09:47:01 -0700 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Fri, 25 May 2012 09:47:24 -0700 Date: Fri, 25 May 2012 09:47:24 -0700 From: Chip Camden To: "freebsd-questions@freebsd.org" Message-ID: <20120525164723.GA81931@libertas.local.camdensoftware.com> Mail-Followup-To: "freebsd-questions@freebsd.org" References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="wRRV7LY7NUeQGEoC" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Company: Camden Software Consulting URL: http://camdensoftware.com X-PGP-Key: http://pgp.mit.edu:11371/pks/lookup?search=0xD6DBAF91 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - wh1.interactivevillages.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - camdensoftware.com X-Source: X-Source-Args: X-Source-Dir: Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 17:05:13 -0000 --wRRV7LY7NUeQGEoC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Quoth Wojciech Puchar on Friday, 25 May 2012: > > > >With apologies to Joni Mitchell: > > > >I've looked at clouds from both sides now, > >From up and down, and still somehow, > >It's cloud illusions I recall, > >I really don't know clouds, at all. > > > >Well, someone had to say it. :-) It summarises the marketing hype=20 > >perfectly. >=20 > fashion is quite often deciding factor not just in clothes. Actually it= =20 > works just the same in IT. What is funny with "cloud computing" (new=20 > fashion trend) is that isn't defined at all. most probably marketing=20 > people found out that it is not needed to define anything to make people= =20 > buy....ANYTHING. $ man -k cloud http://dilbert.com/strips/comic/2012-05-25 --=20 =2EO. | Sterling (Chip) Camden | http://camdensoftware.com =2E.O | sterling@camdensoftware.com | http://chipsquips.com OOO | 2048R/D6DBAF91 | http://chipstips.com --wRRV7LY7NUeQGEoC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (FreeBSD) iQEcBAEBAgAGBQJPv7ebAAoJEIpckszW26+Rq44IALm34Vh9VXkZeEsBKNHy5vQ9 qmpuJIaAGia9IOqPQYzqtfJu3ihcx4lnOkAIxZXO95wQOZrxP0GejuikFeGdVGl0 6srTaRNqCKGOTjcWspnGvsKzUdRkh50+aQ84Wnc6S08WyUh/hxZGZ+8HhGnfCOoC HfEHJTr4qkSXVCt50xjnj0+7F+WXjpDI3W6dkvgCEKPeyiUslBfGKdQ6HbGzdve3 WKN6iCh1yGCOjcqn4sPfk5eOsXP6UqHoDZZArHegBGjKtkkhSf/jev2crz0J6CHN e0UgdN4xT57ymlRxrArM4+M/8riJbhAQTix7NTTFzJtsb5Dz2MkA9sl67LoXJqM= =ylkV -----END PGP SIGNATURE----- --wRRV7LY7NUeQGEoC-- From owner-freebsd-questions@FreeBSD.ORG Fri May 25 17:11:32 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 70E011065750 for ; Fri, 25 May 2012 17:11:32 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (mail1.sourcehosting.net [74.205.51.45]) by mx1.freebsd.org (Postfix) with ESMTP id 42FAF8FC12 for ; Fri, 25 May 2012 17:11:32 +0000 (UTC) Received: from 24-181-237-39.dhcp.oxfr.ma.charter.com ([24.181.237.39] helo=Gregory-Larkins-iMac.local) by mail1.sourcehosting.net with esmtp (Exim 4.73 (FreeBSD)) (envelope-from ) id 1SXy2u-0000F5-5R; Fri, 25 May 2012 13:11:26 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) by Gregory-Larkins-iMac.local (Postfix) with ESMTP id C22CC128A4C4; Fri, 25 May 2012 13:11:22 -0400 (EDT) Message-ID: <4FBFBD3A.4060804@FreeBSD.org> Date: Fri, 25 May 2012 13:11:22 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Tim Daneliuk References: <4FBFAC50.8090604@tundraware.com> In-Reply-To: <4FBFAC50.8090604@tundraware.com> X-Enigmail-Version: 1.4.1 X-SA-Exim-Connect-IP: 24.181.237.39 X-SA-Exim-Mail-From: glarkin@FreeBSD.org X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail1.sourcehosting.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=AWL, BAYES_00, RCVD_IN_RP_RNBL, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-SA-Exim-Version: 4.2 X-SA-Exim-Scanned: Yes (on mail1.sourcehosting.net) Cc: FreeBSD Mailing List Subject: Re: Somewhat OT: CVS Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 17:11:32 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 5/25/12 11:59 AM, Tim Daneliuk wrote: > Forgive the OT nature of this, but FBSD tends to be a big CVS user, > so I am hoping someone has an answer for this. Feel free to reply > privately if you do not wish to inflict your answer up on the whole > list... > > Is there a way to checkout a project from a CVS repo *into the > current directory*? If I do this: > > cvs co -d . foo > > Or this: > > cvs co -d ./ foo > > I get this: > > cvs checkout: existing repository /usr/cvs/... does not match > /usr/cvs/.../foo cvs checkout: ignoring module waccess > > Ideas? Hi Tim, Yes, that's possible, and I do it with the ports tree on my development machine when I only want to work on a small portion of the tree, e.g.: mkdir ~/FreeBSD cd ~/FreeBSD cvs co -l -d . ports cd ports cvs co -l -d . ports/www cd www cvs co -d . ports/www/zend-framework [or just zend-framework because of the alias in CVSROOT/modules] The error you're receiving makes me thing something is wrong with your CVSROOT setting. Can you show it, as well as the full command line? The "module waccess" message doesn't make sense with the command line you provided. Thank you, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. http://twitter.com/cpucycle/ - Follow you, follow me -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk+/vToACgkQ0sRouByUApDqLQCgxwuLL9PveIzGkT6B9lXcO2iM Z6gAoIgO0BIfMW9AR+tGfe3n75wTOsJl =DK17 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Fri May 25 17:31:32 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 092C51065672 for ; Fri, 25 May 2012 17:31:32 +0000 (UTC) (envelope-from gibblertron@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 9135E8FC0A for ; Fri, 25 May 2012 17:31:31 +0000 (UTC) Received: by werg1 with SMTP id g1so962050wer.13 for ; Fri, 25 May 2012 10:31:25 -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=/R88xQQim/8yWoopH7mc01JpBHt2RFV1/o7psGtGZ/M=; b=StjCFsLzK2d2fQMxdWUtpxGWzk6jGROD/C60K/EAvQs0/vLLmWS5PHF9TtreBA64uB gqhRN+cjjad/WiD8aJmJhHwj2YRu5eSBANWoG78IuQF1xKYn7Ce12WJHXsdx6j1sgNDZ FEj5ljBUYaYHMgegIJ3QN3vm2kQNvNBM7bXhTJuTXDYMD4zh5erLwlZE3ktouse2gHRI cYAhT8PMAfT4LrRaIEkAdMInKNOHdphECnJIbASWzj+G/wvSB/pa0Q1+y1eu+67PRDfg 5K0dw4K4ziC+xlqzLOBYVvoVd66gKfOOWIKlHjzcNB4HKRz2bzx9UcsxFOjFDOqaZ4C2 x5kw== MIME-Version: 1.0 Received: by 10.180.93.38 with SMTP id cr6mr8736916wib.16.1337967084948; Fri, 25 May 2012 10:31:24 -0700 (PDT) Received: by 10.180.85.163 with HTTP; Fri, 25 May 2012 10:31:24 -0700 (PDT) In-Reply-To: References: Date: Fri, 25 May 2012 10:31:24 -0700 Message-ID: From: Patrick To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-questions@freebsd.org Subject: Re: question about milter software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 17:31:32 -0000 I think you'll find Postfix to be much more modern and easy to work with for that kind of message rewriting. But what you're looking for is pretty complicated when you start having to deal with multipart messages; the messages have to be completely processed and separated into respective parts, and then once the rich part is found, you've got to parse the HTML and insert the footer into the right spot, and then recompile the message. And if the message is plain text only, you can't insert HTML and have it be displayed as such. In short, I doubt you'll have much success in doing this well. It would be better to configure this in the email client and lock that down somehow. Patrick On Fri, May 25, 2012 at 6:21 AM, Wojciech Puchar wrote: > Does anyone know milter software (or maybe anything else) to add to sendmail > that can rewrite outgoing mail and add HTML footer automatically? > > Please do not tell me about how stupid HTML mail is at all - i know it, it > is not my idea. > > thanks > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Fri May 25 17:33:31 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22DDF106564A for ; Fri, 25 May 2012 17:33:31 +0000 (UTC) (envelope-from samjones1986@gmail.com) Received: from mail-wg0-f42.google.com (mail-wg0-f42.google.com [74.125.82.42]) by mx1.freebsd.org (Postfix) with ESMTP id ADABF8FC0C for ; Fri, 25 May 2012 17:33:30 +0000 (UTC) Received: by wgbds11 with SMTP id ds11so6856123wgb.1 for ; Fri, 25 May 2012 10:33: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=HmVQ3C8UPw6q/cttRflTlutL3gsDFlISxvF90G4lV40=; b=RnGOsEg/0qVv/ME036XYvwCsZItCJJtUkXQnA+orHHZ3DVOh4WDlzKm9Rr8TQiQvZo XnBo1WyNpwabw1Q3RgW+JknD+m7PHK2MzVj83Vk5fP9kC2pZ6MOp82pEYLvANBkiGp63 9ek92lrods7hA5fuY/8vfhECvCwYwV6ybSJbAKy+SIV3yb2rwOpE13DcvP2JBlTIjQso XgXTI8i1pl87FVAqCEtv/FAw44tyxbDbHahKxkvUNwiLyBIHXMXWGMGe4RU4MaRQgtuj YS1srzoCdDco2CSdLrVIqldFb3Def5JdI2Fdxb0HF36394o57gDY5/hvCXkLX7UmQ9Gh MJAw== MIME-Version: 1.0 Received: by 10.180.83.196 with SMTP id s4mr8766851wiy.15.1337967209546; Fri, 25 May 2012 10:33:29 -0700 (PDT) Received: by 10.216.132.93 with HTTP; Fri, 25 May 2012 10:33:29 -0700 (PDT) Date: Fri, 25 May 2012 13:33:29 -0400 Message-ID: From: Sam Jones To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: Ports-Related Commands Hanging After 9.0 Upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 17:33:31 -0000 Hi all, Forgive me if this is a repeat topic. I'd appreciate it if somebody could point me to the answer. I recently upgraded to 9.0 on my server, but since then a lot of ports-related commands (portupgrade, pkg_version, portsnap, etc.) just hang when I try to execute them. I'm not even really sure where to begin troubleshooting. Has anybody else seen this behavior? -- Sam Jones samjones1986@gmail.com From owner-freebsd-questions@FreeBSD.ORG Fri May 25 18:11:52 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41FB2106566C for ; Fri, 25 May 2012 18:11:52 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id EF6038FC0C for ; Fri, 25 May 2012 18:11:51 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q4PIBhBO062214; Fri, 25 May 2012 12:11:43 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q4PIBhdx062211; Fri, 25 May 2012 12:11:43 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Fri, 25 May 2012 12:11:43 -0600 (MDT) From: Warren Block To: Frank Bonnet In-Reply-To: <4FBFA17A.7010906@esiee.fr> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> 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.2.7 (wonkity.com [127.0.0.1]); Fri, 25 May 2012 12:11:43 -0600 (MDT) Cc: Arthur Chance , freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 18:11:52 -0000 On Fri, 25 May 2012, Frank Bonnet wrote: > > Well ... in short I need to let our users ( students + profs ) access and > share their data ( living in their UNIX home directories ) > The access must be easy and possible from as much devices as possible. > Am I clear enough ? ( sorry English is not my native language ...) "Access" is still a bit vague, but security/openvpn may be part of the answer: http://openvpn.net/index.php/open-source.html From owner-freebsd-questions@FreeBSD.ORG Fri May 25 18:15:47 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D02FF106564A for ; Fri, 25 May 2012 18:15:47 +0000 (UTC) (envelope-from kes-kes@yandex.ru) Received: from forward12.mail.yandex.net (forward12.mail.yandex.net [IPv6:2a02:6b8:0:801::2]) by mx1.freebsd.org (Postfix) with ESMTP id A4ADF8FC1B for ; Fri, 25 May 2012 18:15:46 +0000 (UTC) Received: from smtp14.mail.yandex.net (smtp14.mail.yandex.net [95.108.131.192]) by forward12.mail.yandex.net (Yandex) with ESMTP id 51EA2C2239C for ; Fri, 25 May 2012 22:15:45 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1337969745; bh=sFZchrTrNn/fgZwypybhOW4/9MYAsRXYirCQSg40H1Y=; h=Date:From:Reply-To:Message-ID:To:Subject:MIME-Version: Content-Type:Content-Transfer-Encoding; b=TgIUWiRK6US8ejS7zh9dcvUvByRKhI+PpX3jd2g0eDzn2wCBSKVchv2LuWfGawd4J RCVaXmSykjc5B+87c4YaFJUSULD2LdYqQQ23GhgqkCwuvquqrGpUDKx7wdiNgYXvif S4aWz1q1+bV6PA3vVvdoev+Z66OkY7EI4ofNQiAA= Received: from smtp14.mail.yandex.net (localhost [127.0.0.1]) by smtp14.mail.yandex.net (Yandex) with ESMTP id 4004F1B6064A for ; Fri, 25 May 2012 22:15:45 +0400 (MSK) Received: from unknown (unknown [77.93.52.4]) by smtp14.mail.yandex.net (nwsmtp/Yandex) with ESMTP id FeAiMh2g-FiAucEGc; Fri, 25 May 2012 22:15:44 +0400 X-Yandex-Rcpt-Suid: freebsd-questions@freebsd.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1337969745; bh=sFZchrTrNn/fgZwypybhOW4/9MYAsRXYirCQSg40H1Y=; h=X-Nat-Received:Date:From:X-Mailer:Reply-To:Organization: X-Priority:Message-ID:Return-Receipt-To:To:Subject:MIME-Version: Content-Type:Content-Transfer-Encoding; b=qJhvRJ9iOebTcVQvJrHnR4O/PKFnBVGibQ/t3uqityPC0NqwEdmCcGEMmRJruRDxY 8X7kZQ+cULGwWItst8usUZTLRniVe0JTh1+reykgvNgGZhueNNtUTjldt/nGltrtEy TTIlRbDf9070kTnMis55aO4sH81dy01GuPRr6Eko= X-Nat-Received: from [192.168.9.13]:4647 [ident-empty] by SPAM FILTER: with TPROXY id 1337976491.49750 abuse-to kes-kes@yandex.ru Date: Fri, 25 May 2012 21:15:44 +0300 From: Eugen Konkov X-Mailer: The Bat! (v4.0.24) Professional Organization: ISP FreeLine X-Priority: 3 (Normal) Message-ID: <1634481831.20120525211544@yandex.ru> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1251 Content-Transfer-Encoding: 8bit Subject: re0 take 100% CPU X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eugen Konkov List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 18:15:48 -0000 How to look what re0 is doing?? And how to debug that? last pid: 74164; load averages: 17.97, 13.81, 14.40 up 47+09:31:54 21:50:58 110 processes: 9 running, 87 sleeping, 14 waiting CPU: 0.5% user, 0.0% nice, 1.6% system, 97.9% interrupt, 0.0% idle Mem: 194M Active, 449M Inact, 204M Wired, 20K Cache, 112M Buf, 1143M Free Swap: 512M Total, 512M Free PID USERNAME PRI NICE SIZE RES STATE TIME WCPU COMMAND 12 root -76 - 0K 112K WAIT 65.3H 100.00% {irq256: re0} 65795 root 39 0 13420K 5804K select 19:58 0.63% snmpd 2664 root 36 0 14608K 6812K RUN 75:49 0.54% bgpd 0 root -76 0 0K 80K - 31.6H 0.44% {dummynet} 7758 bind 36 0 75268K 62880K RUN 178:21 0.24% {named} 12 root -44 - 0K 112K WAIT 29.4H 0.10% {swi4: clock} # systat -v 2 users Load 13.61 12.24 13.96 May 24 21:49 Mem:KB REAL VIRTUAL VN PAGER SWAP PAGER Tot Share Tot Share Free in out in out Act 256100 6368 626872 8116 1171172 count All 353960 9500 2792812 26356 pages Proc: Interrupts r p d s w Csw Trp Sys Int Sof Flt 3 cow 4404 total 12 32 2207 106 4216 4404 3983 48 28 zfod 1 ata0 14 ozfod 4119 hpet0 20 4.1%Sys 93.4%Intr 2.6%User 0.0%Nice 0.0%Idle %ozfod uhci0 ehci | | | | | | | | | | | daefr 284 re0 256 ==+++++++++++++++++++++++++++++++++++++++++++++++> 7 prcfr 40 dtbuf 44 totfr Namei Name-cache Dir-cache 111725 desvn react Calls hits % hits % 64097 numvn pdwak 3177 3177 100 27926 frevn pdpgs intrn Disks ad1 da0 pass0 209000 wire KB/t 14.85 0.00 0.00 198616 act tps 1 0 0 459200 inact MB/s 0.01 0.00 0.00 20 cache %busy 2 0 0 1169956 free # vmstat -i interrupt total rate irq14: ata0 5946124 1 irq20: hpet0 3979660990 971 irq23: uhci0 ehci0 85 0 irq256: re0 3847013663 939 Total 7832620862 1912 # uptime 9:44PM up 47 days, 9:25, 2 users, load averages: 9.05, 14.17, 15.61 #bwm-ng -I re0 bwm-ng v0.6 (probing every 0.500s), press 'h' for help input: getifaddrs type: rate - iface Rx Tx Total ============================================================================== re0: 13.32 Mb/s 12.42 Mb/s 25.74 Mb/s ------------------------------------------------------------------------------ total: 14.95 Mb/s 13.94 Mb/s 28.89 Mb/s # vmstat -z ITEM SIZE LIMIT USED FREE REQ FAIL SLEEP UMA Kegs: 128, 0, 92, 28, 92, 0, 0 UMA Zones: 224, 0, 92, 10, 92, 0, 0 UMA Slabs: 284, 0, 1158, 4, 29780, 0, 0 UMA RCntSlabs: 544, 0, 919, 5, 919, 0, 0 UMA Hash: 128, 0, 2, 28, 3, 0, 0 16 Bucket: 76, 0, 36, 14, 36, 0, 0 32 Bucket: 140, 0, 43, 13, 44, 0, 0 64 Bucket: 268, 0, 59, 11, 67, 90, 0 128 Bucket: 524, 0, 895, 1, 27120, 585, 0 VM OBJECT: 136, 0, 37976, 130,40520105, 0, 0 MAP: 140, 0, 7, 49, 7, 0, 0 KMAP ENTRY: 72, 57505, 32, 127, 79899, 0, 0 MAP ENTRY: 72, 0, 2094, 1192,100480394, 0, 0 DP fakepg: 72, 0, 0, 0, 0, 0, 0 SG fakepg: 72, 0, 0, 0, 0, 0, 0 mt_zone: 2060, 0, 268, 11, 268, 0, 0 16: 16, 0, 5106, 375,251057215, 0, 0 32: 32, 0, 26924, 196,1931894354, 0, 0 64: 64, 0, 6372, 413,172309547, 0, 0 128: 128, 0, 23931, 41019,195195229, 0, 0 256: 256, 0, 2786, 289,2302309652, 0, 0 512: 512, 0, 638, 58, 4189195, 0, 0 1024: 1024, 0, 533, 15, 1586826, 0, 0 2048: 2048, 0, 251, 59, 17903, 0, 0 4096: 4096, 0, 154, 29, 2738963, 0, 0 Files: 56, 0, 180, 289,224690270, 0, 0 TURNSTILE: 72, 0, 156, 24, 156, 0, 0 umtx pi: 52, 0, 0, 0, 0, 0, 0 MAC labels: 20, 0, 0, 0, 0, 0, 0 PROC: 688, 0, 57, 23, 1272718, 0, 0 THREAD: 728, 0, 124, 31, 206859, 0, 0 SLEEPQUEUE: 44, 0, 156, 80, 156, 0, 0 VMSPACE: 232, 0, 38, 30, 1272743, 0, 0 cpuset: 40, 0, 2, 182, 2, 0, 0 audit_record: 816, 0, 0, 0, 0, 0, 0 mbuf_packet: 256, 0, 256, 1536,5400971809, 0, 0 mbuf: 256, 0, 6, 1412,9019029846, 0, 0 mbuf_cluster: 2048, 25600, 1792, 6, 1792, 0, 0 mbuf_jumbo_page: 4096, 12800, 0, 20, 828696, 0, 0 mbuf_jumbo_9k: 9216, 6400, 0, 0, 0, 0, 0 mbuf_jumbo_16k: 16384, 3200, 0, 0, 0, 0, 0 mbuf_ext_refcnt: 4, 0, 0, 0, 0, 0, 0 NetGraph items: 36, 4130, 2, 175,1535407748, 0, 0 NetGraph data items: 36, 531, 0, 531,3322859915,26160, 0 g_bio: 140, 0, 0, 4144,23787066, 0, 0 ttyinq: 152, 0, 300, 12, 675, 0, 0 ttyoutq: 256, 0, 157, 8, 353, 0, 0 ata_request: 204, 0, 0, 1045, 5946685, 0, 0 ata_composite: 180, 0, 0, 0, 0, 0, 0 VNODE: 272, 0, 64112, 134, 7873012, 0, 0 VNODEPOLL: 60, 0, 0, 0, 0, 0, 0 S VFS Cache: 72, 0, 66367, 466, 8051562, 0, 0 L VFS Cache: 292, 0, 595, 198, 109305, 0, 0 NAMEI: 1024, 0, 0, 12,171046456, 0, 0 NFSMOUNT: 532, 0, 0, 0, 0, 0, 0 NFSNODE: 460, 0, 0, 0, 0, 0, 0 DIRHASH: 1024, 0, 485, 11, 497, 0, 0 pipe: 392, 0, 10, 30, 784482, 0, 0 Mountpoints: 648, 0, 6, 6, 6, 0, 0 ksiginfo: 80, 0, 66, 990, 210783, 0, 0 itimer: 220, 0, 0, 0, 0, 0, 0 KNOTE: 72, 0, 8, 310,92381338, 0, 0 socket: 416, 25605, 73, 242,131092823, 0, 0 unpcb: 172, 25622, 26, 43, 3331350, 0, 0 ipq: 32, 904, 0, 226, 8756, 0, 0 udp_inpcb: 220, 25614, 7, 245,127020097, 0, 0 udpcb: 8, 25781, 7, 399,127020097, 0, 0 tcp_inpcb: 220, 25614, 33, 57, 644727, 0, 0 tcpcb: 692, 25600, 26, 39, 644727, 0, 0 tcptw: 52, 5184, 7, 137, 92058, 0, 0 syncache: 112, 15365, 0, 70, 360404, 0, 0 hostcache: 76, 15400, 30, 70, 3515, 0, 0 tcpreass: 20, 1690, 0, 169, 1927, 0, 0 sackhole: 20, 0, 0, 169, 620, 0, 0 sctp_ep: 880, 25600, 0, 0, 0, 0, 0 sctp_asoc: 1524, 40000, 0, 0, 0, 0, 0 sctp_laddr: 24, 80040, 0, 145, 45, 0, 0 sctp_raddr: 464, 80000, 0, 0, 0, 0, 0 sctp_chunk: 96, 400000, 0, 0, 0, 0, 0 sctp_readq: 76, 400000, 0, 0, 0, 0, 0 sctp_stream_msg_out: 72, 400044, 0, 0, 0, 0, 0 sctp_asconf: 24, 400055, 0, 0, 0, 0, 0 sctp_asconf_ack: 24, 400055, 0, 0, 0, 0, 0 ripcb: 220, 25614, 6, 48, 78019, 0, 0 rtentry: 108, 0, 24066, 18, 288480, 0, 0 IPFW dynamic rule: 108, 0, 0, 0, 0, 0, 0 divcb: 220, 25614, 0, 0, 0, 0, 0 selfd: 28, 0, 158, 223,1786944834, 0, 0 ip4flow: 40, 25668, 680, 24160,36376221, 0, 0 ip6flow: 64, 25636, 0, 174, 20, 0, 0 SWAPMETA: 276, 121576, 0, 0, 0, 0, 0 FFS inode: 116, 0, 64073, 46, 7872685, 0, 0 FFS1 dinode: 128, 0, 0, 0, 0, 0, 0 FFS2 dinode: 256, 0, 64073, 22, 7872685, 0, 0 # uname -a FreeBSD bor 9.0-CURRENT FreeBSD 9.0-CURRENT #1: Wed Feb 23 09:39:22 UTC 2011 @:/usr/obj/usr/src/sys/KES_KERN_v9 i386 #tail /var/log/messages May 24 21:58:57 bor kernel: Limiting icmp unreach response from 273 to 200 packets/sec May 24 21:58:58 bor kernel: Limiting icmp unreach response from 223 to 200 packets/sec May 24 21:58:59 bor kernel: Limiting icmp unreach response from 235 to 200 packets/sec May 24 21:59:00 bor kernel: Limiting icmp unreach response from 278 to 200 packets/sec May 24 21:59:01 bor kernel: Limiting icmp unreach response from 283 to 200 packets/sec May 24 21:59:02 bor kernel: Limiting icmp unreach response from 255 to 200 packets/sec May 24 21:59:03 bor kernel: Limiting icmp unreach response from 269 to 200 packets/sec May 24 21:59:04 bor kernel: Limiting icmp unreach response from 286 to 200 packets/sec May 24 21:59:05 bor kernel: Limiting icmp unreach response from 225 to 200 packets/sec May 24 21:59:06 bor kernel: Limiting icmp unreach response from 328 to 200 packets/sec May 24 21:59:07 bor kernel: Limiting icmp unreach response from 285 to 200 packets/sec May 24 21:59:08 bor kernel: Limiting icmp unreach response from 286 to 200 packets/sec May 24 21:59:09 bor kernel: Limiting icmp unreach response from 304 to 200 packets/sec May 24 21:59:10 bor kernel: Limiting icmp unreach response from 304 to 200 packets/sec May 24 21:59:11 bor kernel: Limiting icmp unreach response from 311 to 200 packets/sec Thank you. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 18:16:02 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF5BB1065676 for ; Fri, 25 May 2012 18:16:02 +0000 (UTC) (envelope-from garya@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 591F58FC14 for ; Fri, 25 May 2012 18:16:02 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4PIG1eD021717 for ; Fri, 25 May 2012 12:16:01 -0600 (MDT) (envelope-from garya@dreamchaser.org) Message-ID: <4FBFCC61.2010504@dreamchaser.org> Date: Fri, 25 May 2012 12:16:01 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> In-Reply-To: <4FBFAB5B.6010405@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Fri, 25 May 2012 12:16:01 -0600 (MDT) Subject: ports build and synchronization issues X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 18:16:02 -0000 I've had a number of failures attempting to build things, but on several occasions builds have failed with what looks like may be threading / subprocess synchronization issues. I'm running 9.0-RELEASE on a 4-processor amd64 system w/ 16GB. For example, an attempt to build openoffice-3 failed building package textproc/redland when a dependent package build couldn't find some doc pages. It was trying to build textproc/rasqal and looking for what I think was the open-motif library and couldn't find it because the (open-motif?) install failed because of the doc pages issue. Rerunning "make install" at the openoffice-3 level still failed at the same point. Going to the dependent text package and doing a make install claimed the package was already installed. "make deinstall" and "make clean install" solved the issue. I'm a little fuzzy on the details because I don't have the build output, and used two different windows, one to build and another to check status using pkg_info, etc. Backing up in the command history I have this, which resulted in a complete build: cd openoffice-3 make original failure due to missing doc files make -v install repeated the same failure cd ../../textproc/redland attempt to build dependent pkg redland make clean make -v install failed on dependent pkg rasqal cd ../rasqal make deinstall begin of successful build of rasqal make clean make install cd ../../textproc/redland make install begin of successful build of redland cd ../../editors/openoffice-3 make install resume & successful build of openoffice-3 The original error seems like a synchronization problem between the subprocesses doing the builds. Is anyone else seeing this kind of behavior? Gary From owner-freebsd-questions@FreeBSD.ORG Fri May 25 18:47:55 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1ADB01065677 for ; Fri, 25 May 2012 18:47:55 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id C9D978FC17 for ; Fri, 25 May 2012 18:47:54 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx01.qsc.de (Postfix) with ESMTP id 67CF63CD58; Fri, 25 May 2012 20:47:48 +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 q4PIllfx002030; Fri, 25 May 2012 20:47:47 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 25 May 2012 20:47:47 +0200 From: Polytropon To: Warren Block Message-Id: <20120525204747.e18e57c6.freebsd@edvax.de> In-Reply-To: References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> 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: Frank Bonnet , freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 18:47:55 -0000 On Fri, 25 May 2012 12:11:43 -0600 (MDT), Warren Block wrote: > On Fri, 25 May 2012, Frank Bonnet wrote: > > > > Well ... in short I need to let our users ( students + profs ) access and > > share their data ( living in their UNIX home directories ) > > The access must be easy and possible from as much devices as possible. > > Am I clear enough ? ( sorry English is not my native language ...) > > "Access" is still a bit vague, but security/openvpn may be part of the > answer: http://openvpn.net/index.php/open-source.html Some months ago, I read about an in-browser implementation of VNC (if I remember correctly), but I didn't store the link. Maybe that is an inspiration? Simple solution for simple people: People love web browsers, and the web is everywhere. So why deal with OS-specific access methods when all they need is a web browser, which is a solution they'll prefer anyway? There are also SSH clients written in Java or JavaScript. Together with webmail, web-based collaboration services and web-based storage concepts, why not add this to the mix? I know, attack vector, security hole, slow, unhandy and accessibility very limited to what the browser can do (both on input and output), but isn't that what people believe in? Don't disturb their circles, just give them what they pray for, a cloud... a shiny foggy cloud... :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri May 25 18:54:09 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B6A481065670 for ; Fri, 25 May 2012 18:54:09 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 72D648FC14 for ; Fri, 25 May 2012 18:54:09 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx01.qsc.de (Postfix) with ESMTP id 864EE3CF47; Fri, 25 May 2012 20:54:08 +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 q4PIs8CW002038; Fri, 25 May 2012 20:54:08 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 25 May 2012 20:54:08 +0200 From: Polytropon To: Chip Camden Message-Id: <20120525205408.065f03f8.freebsd@edvax.de> In-Reply-To: <20120525164723.GA81931@libertas.local.camdensoftware.com> References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <20120525164723.GA81931@libertas.local.camdensoftware.com> 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-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 18:54:09 -0000 On Fri, 25 May 2012 09:47:24 -0700, Chip Camden wrote: > $ man -k cloud > http://dilbert.com/strips/comic/2012-05-25 Very nice, but please compare: http://xkcd.com/908/ :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri May 25 19:33:45 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 556D5106566B for ; Fri, 25 May 2012 19:33:45 +0000 (UTC) (envelope-from jens_jahnke@gmx.net) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id A1DF58FC0C for ; Fri, 25 May 2012 19:33:44 +0000 (UTC) Received: (qmail 10226 invoked by uid 0); 25 May 2012 19:33:37 -0000 Received: from 88.74.62.194 by www043.gmx.net with HTTP; Fri, 25 May 2012 21:33:37 +0200 (CEST) Content-Type: text/plain; charset="utf-8" Date: Fri, 25 May 2012 21:33:37 +0200 From: "Jens Jahnke" Message-ID: <20120525193337.181230@gmx.net> MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" X-Authenticated: #1545395 X-Flags: 0001 X-Mailer: WWW-Mail 6100 (Global Message Exchange) X-Priority: 3 X-Provags-ID: V01U2FsdGVkX1/szYx6ZADsHQEXg99CXmCWoAs5I+EjnARJcSm9B1 MH6ZM5I+0OlQUac2tYUNzZdtVK5fvXbK/4Jw== Content-Transfer-Encoding: 8bit X-GMX-UID: xrvNb68neSEqbdL3fHQhGxt+IGRvb0Aw Subject: Kernel Panic any help? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 19:33:45 -0000 Hi, as a happy freebsd user since about 2 years I have experienced my first kernel panic and have no idea what to do. My main machine crashed an hour ago and since then I can't get it to boot. The panic message: panic: ffs_clusteralloc: map mismatch cpuid = 0 KDB: stack backtrace #0 0xffffffff8063dcbe at kdb_backtrace+0x5e #1 0xffffffff8060aed7 at panic+0x187 #2 0xffffffff8082c1df at ffs_clusteralloc+0x4cf #3 0xffffffff80828448 at ffs_hashalloc+0x28 #4 0xffffffff80829a31 at ffs_reallocblks+0x421 #5 0xffffffff8068accf at cluster_write+0x4df #6 0xffffffff8084a1cf at ffs_write+0x58f #7 0xffffffff8097e6a2 at VOP_WRITE_APV+0xb2 #8 0xffffffff806a9f23 at vn_write+0x373 #9 0xffffffff8064dceb at dofilewrite+0x8b #10 0xffffffff8064e000 at kern_writev+0x60 #11 0xffffffff8064e085 at write+0x55 #12 0xffffffff809000c4 at amd64_syscall+0x1f4 #13 0xffffffff808e8a6c at Xfast_syscall+0xfc System setup: FreeBSD 8.3, up to date some file system ufs + soft updates root fs ufs without soft updates home encrypted via geli Regards, Jens -- Jens Jahnke Infos, Projekte, Themes und Downloads (http://www.jan0sch.de) From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:02:08 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6DE0B106564A for ; Fri, 25 May 2012 20:02:08 +0000 (UTC) (envelope-from johnl@iecc.com) Received: from leila.iecc.com (leila6.iecc.com [IPv6:2001:470:1f07:1126:0:4c:6569:6c61]) by mx1.freebsd.org (Postfix) with ESMTP id 9FE318FC16 for ; Fri, 25 May 2012 20:02:07 +0000 (UTC) Received: (qmail 39940 invoked from network); 25 May 2012 20:02:06 -0000 Received: from leila.iecc.com (64.57.183.34) by mail1.iecc.com with QMQP; 25 May 2012 20:02:06 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=iecc.com; h=date:message-id:from:to:cc:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:vbr-info; s=4fbfe53e.xn--9vv.k1205; i=johnl@user.iecc.com; bh=HkZr6gkVo2KemfN82qnPcnldRjYbNoh8/66tDXZTEsg=; b=hyQ9U1vfYVPoI3wJ2eZ8eJMCo3vxU5v0fgyjC+gEvxPj/A0UJs+WKcViSKrCW5xlb4I8sZAJ2I0e+lSl6ToQFeiX1bIJwsTjOY+16kbMfDmZki9Bn272H66YIFZS3cz84UO2bGMERova0VQs3i9YEjyuqy+j9YE6dPz18gEmKMM= VBR-Info: md=iecc.com; mc=all; mv=dwl.spamhaus.org Date: 25 May 2012 20:01:44 -0000 Message-ID: <20120525200144.78239.qmail@joyce.lan> From: "John Levine" To: freebsd-questions@freebsd.org In-Reply-To: <20120525193337.181230@gmx.net> Organization: X-Headerized: yes Mime-Version: 1.0 Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 7bit Cc: jens_jahnke@gmx.net Subject: Re: Kernel Panic any help? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:02:08 -0000 >panic: ffs_clusteralloc: map mismatch Something's fairly badly screwed up on your disk. My advice would be to boot from a CD or USB key and run fsck to try to repair it. R's, John From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:04:52 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47496106566B for ; Fri, 25 May 2012 20:04:52 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 0C8DF8FC18 for ; Fri, 25 May 2012 20:04:51 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4PK4oqV022020 for ; Fri, 25 May 2012 14:04:51 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBFE5E2.6070305@dreamchaser.org> Date: Fri, 25 May 2012 14:04:50 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> In-Reply-To: <4FBFCC61.2010504@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Fri, 25 May 2012 14:04:51 -0600 (MDT) Subject: removing /var/empty on a non-system disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:04:52 -0000 something I'm not seeing I've got a disk previously used as a sys disk I'm trying to clean up. What's the key to removing /var/empty? 280 /hd1/var#sysctl kern.securelevel kern.securelevel: -1 281 /hd1/var#ls -l total 4 dr-xr-xr-x 2 root wheel 512 Jan 3 00:55 empty 282 /hd1/var#chflags noschg empty 283 /hd1/var#chmod 777 empty chmod: empty: Operation not permitted 284 /hd1/var#rmdir empty rmdir: empty: Operation not permitted From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:16:59 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42290106566B for ; Fri, 25 May 2012 20:16:59 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id 01A228FC16 for ; Fri, 25 May 2012 20:16:58 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4PKInWs068662 for freebsd-questions@freebsd.org; Fri, 25 May 2012 15:18:49 -0500 (CDT) Date: Fri, 25 May 2012 15:18:49 -0500 (CDT) From: Robert Bonomi Message-Id: <201205252018.q4PKInWs068662@mail.r-bonomi.com> To: freebsd-questions@freebsd.org In-Reply-To: <5637E8FA3F944F679A04F18F79CA772C@Bureau> Subject: Re: compatibility X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:16:59 -0000 > From owner-freebsd-questions@freebsd.org Fri May 25 10:25:21 2012 > From: "Philippe Combier" > To: > Date: Fri, 25 May 2012 17:22:52 +0200 > Cc: > Subject: compatibility > > Hello ! > I have a Samsung portable with an Intel Atom cpu N450 . In http://www > .freebsd.org/fr/where.html , you specify a?oeversions & platform a?oe a > nd I cannot locate the type of processor of my Samsung .What choice d > o I do ? You can select from three choices: 1) Pick an O/S where your choice of hardware is supported. 2) Pick hardware that is supported by your choice of O/S. 3) 'Port' your O/S of choice to your choice of hardware yourself, or if you lack the skills to do it yourself, pay someone to do it for your. The choice between 1 vs 2 depends on which is 'more important', the hardware, or the software. 3 describes what is necessary if you are not willing to compromise on -either- hardware or software. Being 'unable'/'unwilling' to compromise is expensive. Your choice. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:21:29 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C51B106566B for ; Fri, 25 May 2012 20:21:29 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 37AED8FC15 for ; Fri, 25 May 2012 20:21:29 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx01.qsc.de (Postfix) with ESMTP id 2B3863CFED; Fri, 25 May 2012 22:21:26 +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 q4PKLP6Z002296; Fri, 25 May 2012 22:21:25 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 25 May 2012 22:21:23 +0200 From: Polytropon To: freebsd@dreamchaser.org Message-Id: <20120525222123.474401eb.freebsd@edvax.de> In-Reply-To: <4FBFE5E2.6070305@dreamchaser.org> References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> <4FBFE5E2.6070305@dreamchaser.org> 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-questions@freebsd.org Subject: Re: removing /var/empty on a non-system disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:21:29 -0000 On Fri, 25 May 2012 14:04:50 -0600, Gary Aitken wrote: > something I'm not seeing > > I've got a disk previously used as a sys disk I'm trying to clean up. > What's the key to removing /var/empty? > > 280 /hd1/var#sysctl kern.securelevel > kern.securelevel: -1 > 281 /hd1/var#ls -l > total 4 > dr-xr-xr-x 2 root wheel 512 Jan 3 00:55 empty > 282 /hd1/var#chflags noschg empty > 283 /hd1/var#chmod 777 empty > chmod: empty: Operation not permitted > 284 /hd1/var#rmdir empty > rmdir: empty: Operation not permitted Interesting, I just tried this on my home system (FreeBSD 8.2-STABLE) and it worked as intended. I did use the exact commands, same securelevel. Use the -o option for ls (ls -lo) to check on the effect of chflags and chmod. Without eexamining this behaviour in more detail, how about this approach? Unmount the former system disk and newfs it? That should "solve" the problem. :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:21:53 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E51F7106568D for ; Fri, 25 May 2012 20:21:53 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id 4B30E8FC08 for ; Fri, 25 May 2012 20:21:52 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PKLpgk031197; Fri, 25 May 2012 22:21:51 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PKLoYl031194; Fri, 25 May 2012 22:21:51 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 22:21:50 +0200 (CEST) From: Wojciech Puchar To: Patrick 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 22:21:51 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: question about milter software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:21:54 -0000 > I think you'll find Postfix to be much more modern and easy to work > with for that kind of message rewriting. you are actually wrong in that statement. In spite of hype that postscript started with, i am still using sendmail because it is actually easiest if you learn it. > > But what you're looking for is pretty complicated when you start > having to deal with multipart messages; the messages have to be this is unfortunately true, because i could quickly do myself a filter that would trivially append footer, but it will not work. That's the reason of my question - IF such (quite complex) software is already written. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:24:28 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FBCB106566B for ; Fri, 25 May 2012 20:24:28 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id B0DA88FC14 for ; Fri, 25 May 2012 20:24:27 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PKOPhe031225; Fri, 25 May 2012 22:24:25 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PKOPm6031222; Fri, 25 May 2012 22:24:25 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 22:24:25 +0200 (CEST) From: Wojciech Puchar To: Frank Bonnet In-Reply-To: <4FBF9356.7040504@esiee.fr> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 22:24:25 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:24:28 -0000 > > Well ... My goal was NOT to start a flame war around the "cloud" term ... > you didn't. You just started a flame of requests to be more precise and go down from the clouds to earth. So finally write down what you need, and we most probably can help you. But... if you want to just sell some solution, make anything and just promote it enough calling it cloud computing and it would probably sell ;) until this bubble (just like bubbles before) would crash From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:28:13 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DA1B1065674 for ; Fri, 25 May 2012 20:28:13 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id ED2A28FC16 for ; Fri, 25 May 2012 20:28:12 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PKSABO031256; Fri, 25 May 2012 22:28:10 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PKSAcl031253; Fri, 25 May 2012 22:28:10 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 22:28:10 +0200 (CEST) From: Wojciech Puchar To: Frank Bonnet In-Reply-To: <4FBFA17A.7010906@esiee.fr> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 22:28:11 +0200 (CEST) Cc: Arthur Chance , freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:28:13 -0000 > > Well ... in short I need to let our users ( students + profs ) access and > share their data ( living in their UNIX home directories ) > The access must be easy and possible from as much devices as possible. > Am I clear enough ? ( sorry English is not my native language ...) yes NOW IT IS CLEAR. Couldn't you start that way. There are many solutions and it depends of what you need. On large scale maybe something like AFS? Or maybe far more trivial methods would be enough. It all depends. fell free to mail me privately. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:29:20 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E4EF106568D for ; Fri, 25 May 2012 20:29:20 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id 9C8178FC0C for ; Fri, 25 May 2012 20:29:19 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PKTHvp031262; Fri, 25 May 2012 22:29:17 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PKTHaD031259; Fri, 25 May 2012 22:29:17 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 22:29:17 +0200 (CEST) From: Wojciech Puchar To: Mehmet Erol Sanliturk In-Reply-To: Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 22:29:18 +0200 (CEST) Cc: Frank Bonnet , Arthur Chance , freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:29:20 -0000 > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-nfs.html > 30.3 Network File System (NFS) > > > Use NFS : > Define each computer as both "Server" to serve to other users(s) and > "Client" .to see the other server(s) . > > > > If there are Windows computers , you may also use SAMBA : > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-samba.html all are great and heavily used be me but i think it may not fit on distributed environment with where network is far slower than 100Mbit/s inbetween. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:31:59 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAAFD1065673 for ; Fri, 25 May 2012 20:31:59 +0000 (UTC) (envelope-from derek@computinginnovations.com) Received: from betty.computinginnovations.com (mail.computinginnovations.com [64.81.227.250]) by mx1.freebsd.org (Postfix) with ESMTP id 61BAD8FC16 for ; Fri, 25 May 2012 20:31:59 +0000 (UTC) Received: from i7-quad-PC.computinginnovations.com (dhcp-10-20-30-142.computinginnovations.com [10.20.30.142]) by betty.computinginnovations.com (8.14.5/8.14.3) with ESMTP id q4PKVdFs093739; Fri, 25 May 2012 15:31:39 -0500 (CDT) (envelope-from derek@computinginnovations.com) Message-Id: <6.0.0.22.2.20120525152822.05eb62f0@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Fri, 25 May 2012 15:31:27 -0500 To: Frank Bonnet , "freebsd-questions@freebsd.org" From: Derek Ragona In-Reply-To: <4FBF3EA9.2000103@esiee.fr> References: <4FBF3EA9.2000103@esiee.fr> Mime-Version: 1.0 X-Antivirus: avast! (VPS 120525-0, 05/25/2012), Outbound message X-Antivirus-Status: Clean X-yoursite-MailScanner-Information: Please contact the ISP for more information X-yoursite-MailScanner-ID: q4PKVdFs093739 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: derek@computinginnovations.com X-Spam-Status: No Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:31:59 -0000 At 03:11 AM 5/25/2012, Frank Bonnet wrote: >Hello > >I'm searching for a "cloud software" :-) > >More precisely we would like to offer to our students and professors >a kind of private cloud to access/manipulate their personnal data >from almost anywhere and with almost any devices ... >( Personnal PC, Mac, smartphones and tablets ... etc ) > >Anyone could help ? >Thank you Take a look at OpenStack http://openstack.org/ The latest release which is Essex, includes a web based dashboard. This is OpenSource, and definitely a work in progress but the Essex release should provide most of the "cloud" functionality. -Derek -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:33:30 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 25065106567C for ; Fri, 25 May 2012 20:33:30 +0000 (UTC) (envelope-from derek@computinginnovations.com) Received: from betty.computinginnovations.com (mail.computinginnovations.com [64.81.227.250]) by mx1.freebsd.org (Postfix) with ESMTP id CB3308FC14 for ; Fri, 25 May 2012 20:33:29 +0000 (UTC) Received: from i7-quad-PC.computinginnovations.com (dhcp-10-20-30-142.computinginnovations.com [10.20.30.142]) by betty.computinginnovations.com (8.14.5/8.14.3) with ESMTP id q4PKXPU9093766; Fri, 25 May 2012 15:33:25 -0500 (CDT) (envelope-from derek@computinginnovations.com) Message-Id: <6.0.0.22.2.20120525153150.05eb6fc0@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Fri, 25 May 2012 15:33:13 -0500 To: Wojciech Puchar , freebsd-questions@freebsd.org From: Derek Ragona In-Reply-To: References: Mime-Version: 1.0 X-Antivirus: avast! (VPS 120525-0, 05/25/2012), Outbound message X-Antivirus-Status: Clean X-yoursite-MailScanner-Information: Please contact the ISP for more information X-yoursite-MailScanner-ID: q4PKXPU9093766 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: derek@computinginnovations.com X-Spam-Status: No Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: question about milter software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:33:30 -0000 At 08:21 AM 5/25/2012, Wojciech Puchar wrote: >Does anyone know milter software (or maybe anything else) to add to >sendmail that can rewrite outgoing mail and add HTML footer automatically? > >Please do not tell me about how stupid HTML mail is at all - i know it, it >is not my idea. > >thanks I have used milter with sendmail. You can add an outgoing email footer. If you need more information, email me directly. -Derek -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:44:38 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3DFAA106566C for ; Fri, 25 May 2012 20:44:38 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 973B48FC15 for ; Fri, 25 May 2012 20:44:37 +0000 (UTC) Received: from seedling.local (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q4PKiTFx017710 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 25 May 2012 21:44:29 +0100 (BST) (envelope-from matthew@FreeBSD.org) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q4PKiTFx017710 Authentication-Results: smtp.infracaninophile.co.uk/q4PKiTFx017710; dkim=none (no signature); dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host seedling.black-earth.co.uk [81.187.76.163] claimed to be seedling.local Message-ID: <4FBFEF2C.2080003@FreeBSD.org> Date: Fri, 25 May 2012 22:44:28 +0200 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd@dreamchaser.org References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> <4FBFE5E2.6070305@dreamchaser.org> In-Reply-To: <4FBFE5E2.6070305@dreamchaser.org> X-Enigmail-Version: 1.4.1 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig733857241B4F47DDA7555538" X-Virus-Scanned: clamav-milter 0.97.4 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Cc: freebsd-questions@FreeBSD.org Subject: Re: removing /var/empty on a non-system disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:44:38 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig733857241B4F47DDA7555538 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 25/05/2012 22:04, Gary Aitken wrote: > I've got a disk previously used as a sys disk I'm trying to clean up. > What's the key to removing /var/empty? # chflags 0 /var/empty # rm -rf /var/empty is the usual idiom. Cheers, Matthew=09 --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --------------enig733857241B4F47DDA7555538 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.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk+/7y0ACgkQ8Mjk52CukIzuTACfcIwEWRHEZDBsIQ4sZRQKIXnP nFAAn1kMz+Z2ovD7x2JHfQmgI2HxT5FY =/HiG -----END PGP SIGNATURE----- --------------enig733857241B4F47DDA7555538-- From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:49:24 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 85628106566C for ; Fri, 25 May 2012 20:49:24 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id E32618FC22 for ; Fri, 25 May 2012 20:49:23 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PKnMCE031415; Fri, 25 May 2012 22:49:22 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PKWt3v031283; Fri, 25 May 2012 22:32:55 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 22:32:55 +0200 (CEST) From: Wojciech Puchar To: Peter Ulrich Kruppa In-Reply-To: <4FBFA900.50709@pukruppa.de> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> <4FBFA900.50709@pukruppa.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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 22:49:23 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:49:24 -0000 >> The access must be easy and possible from as much devices as possible. >> Am I clear enough ? ( sorry English is not my native language ...) > > Well, this should reduce the cloud to an sftp-server or - if their stuff > isn't security sensitive to an ftp-server. depends on connectivity. If you just want to access small files sometimes then right. or have high speed connections, then SAMBA and NFS is right tool. if you want 1000 users to have their "home" directories always on their computers but with copy kept centrally, then it would be best to keep it locally and run rsync (for unix users) or syncback under windoze to just synchronize it every day after work. If you need some shared directories but where one person changes data and other reads - then still that solution is great. But if you don't have fast links, operate on directories shared between users where more than one have to write, then something more complex is needed. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:49:24 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7CD11065677 for ; Fri, 25 May 2012 20:49:24 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id EDBF28FC23 for ; Fri, 25 May 2012 20:49:23 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PKnMCG031415; Fri, 25 May 2012 22:49:23 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PKajXH031304; Fri, 25 May 2012 22:36:45 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 22:36:45 +0200 (CEST) From: Wojciech Puchar To: Eugen Konkov In-Reply-To: <1634481831.20120525211544@yandex.ru> Message-ID: References: <1634481831.20120525211544@yandex.ru> 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 22:49:23 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: re0 take 100% CPU X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:49:24 -0000 broken device or motherboard, or conflict. check if irq is not shared. re0 are not great network cards but really not that bad. something is badly broken with hardware On Fri, 25 May 2012, Eugen Konkov wrote: > How to look what re0 is doing?? And how to debug that? > > last pid: 74164; load averages: 17.97, 13.81, 14.40 up 47+09:31:54 21:50:58 > 110 processes: 9 running, 87 sleeping, 14 waiting > CPU: 0.5% user, 0.0% nice, 1.6% system, 97.9% interrupt, 0.0% idle > Mem: 194M Active, 449M Inact, 204M Wired, 20K Cache, 112M Buf, 1143M Free > Swap: 512M Total, 512M Free > > PID USERNAME PRI NICE SIZE RES STATE TIME WCPU COMMAND > 12 root -76 - 0K 112K WAIT 65.3H 100.00% {irq256: re0} > 65795 root 39 0 13420K 5804K select 19:58 0.63% snmpd > 2664 root 36 0 14608K 6812K RUN 75:49 0.54% bgpd > 0 root -76 0 0K 80K - 31.6H 0.44% {dummynet} > 7758 bind 36 0 75268K 62880K RUN 178:21 0.24% {named} > 12 root -44 - 0K 112K WAIT 29.4H 0.10% {swi4: clock} > > # systat -v > 2 users Load 13.61 12.24 13.96 May 24 21:49 > > Mem:KB REAL VIRTUAL VN PAGER SWAP PAGER > Tot Share Tot Share Free in out in out > Act 256100 6368 626872 8116 1171172 count > All 353960 9500 2792812 26356 pages > Proc: Interrupts > r p d s w Csw Trp Sys Int Sof Flt 3 cow 4404 total > 12 32 2207 106 4216 4404 3983 48 28 zfod 1 ata0 14 > ozfod 4119 hpet0 20 > 4.1%Sys 93.4%Intr 2.6%User 0.0%Nice 0.0%Idle %ozfod uhci0 ehci > | | | | | | | | | | | daefr 284 re0 256 > ==+++++++++++++++++++++++++++++++++++++++++++++++> 7 prcfr > 40 dtbuf 44 totfr > Namei Name-cache Dir-cache 111725 desvn react > Calls hits % hits % 64097 numvn pdwak > 3177 3177 100 27926 frevn pdpgs > intrn > Disks ad1 da0 pass0 209000 wire > KB/t 14.85 0.00 0.00 198616 act > tps 1 0 0 459200 inact > MB/s 0.01 0.00 0.00 20 cache > %busy 2 0 0 1169956 free > > # vmstat -i > interrupt total rate > irq14: ata0 5946124 1 > irq20: hpet0 3979660990 971 > irq23: uhci0 ehci0 85 0 > irq256: re0 3847013663 939 > Total 7832620862 1912 > # uptime > 9:44PM up 47 days, 9:25, 2 users, load averages: 9.05, 14.17, 15.61 > > #bwm-ng -I re0 > bwm-ng v0.6 (probing every 0.500s), press 'h' for help > input: getifaddrs type: rate > - iface Rx Tx Total > ============================================================================== > re0: 13.32 Mb/s 12.42 Mb/s 25.74 Mb/s > ------------------------------------------------------------------------------ > total: 14.95 Mb/s 13.94 Mb/s 28.89 Mb/s > # vmstat -z > ITEM SIZE LIMIT USED FREE REQ FAIL SLEEP > > UMA Kegs: 128, 0, 92, 28, 92, 0, 0 > UMA Zones: 224, 0, 92, 10, 92, 0, 0 > UMA Slabs: 284, 0, 1158, 4, 29780, 0, 0 > UMA RCntSlabs: 544, 0, 919, 5, 919, 0, 0 > UMA Hash: 128, 0, 2, 28, 3, 0, 0 > 16 Bucket: 76, 0, 36, 14, 36, 0, 0 > 32 Bucket: 140, 0, 43, 13, 44, 0, 0 > 64 Bucket: 268, 0, 59, 11, 67, 90, 0 > 128 Bucket: 524, 0, 895, 1, 27120, 585, 0 > VM OBJECT: 136, 0, 37976, 130,40520105, 0, 0 > MAP: 140, 0, 7, 49, 7, 0, 0 > KMAP ENTRY: 72, 57505, 32, 127, 79899, 0, 0 > MAP ENTRY: 72, 0, 2094, 1192,100480394, 0, 0 > DP fakepg: 72, 0, 0, 0, 0, 0, 0 > SG fakepg: 72, 0, 0, 0, 0, 0, 0 > mt_zone: 2060, 0, 268, 11, 268, 0, 0 > 16: 16, 0, 5106, 375,251057215, 0, 0 > 32: 32, 0, 26924, 196,1931894354, 0, 0 > 64: 64, 0, 6372, 413,172309547, 0, 0 > 128: 128, 0, 23931, 41019,195195229, 0, 0 > 256: 256, 0, 2786, 289,2302309652, 0, 0 > 512: 512, 0, 638, 58, 4189195, 0, 0 > 1024: 1024, 0, 533, 15, 1586826, 0, 0 > 2048: 2048, 0, 251, 59, 17903, 0, 0 > 4096: 4096, 0, 154, 29, 2738963, 0, 0 > Files: 56, 0, 180, 289,224690270, 0, 0 > TURNSTILE: 72, 0, 156, 24, 156, 0, 0 > umtx pi: 52, 0, 0, 0, 0, 0, 0 > MAC labels: 20, 0, 0, 0, 0, 0, 0 > PROC: 688, 0, 57, 23, 1272718, 0, 0 > THREAD: 728, 0, 124, 31, 206859, 0, 0 > SLEEPQUEUE: 44, 0, 156, 80, 156, 0, 0 > VMSPACE: 232, 0, 38, 30, 1272743, 0, 0 > cpuset: 40, 0, 2, 182, 2, 0, 0 > audit_record: 816, 0, 0, 0, 0, 0, 0 > mbuf_packet: 256, 0, 256, 1536,5400971809, 0, 0 > mbuf: 256, 0, 6, 1412,9019029846, 0, 0 > mbuf_cluster: 2048, 25600, 1792, 6, 1792, 0, 0 > mbuf_jumbo_page: 4096, 12800, 0, 20, 828696, 0, 0 > mbuf_jumbo_9k: 9216, 6400, 0, 0, 0, 0, 0 > mbuf_jumbo_16k: 16384, 3200, 0, 0, 0, 0, 0 > mbuf_ext_refcnt: 4, 0, 0, 0, 0, 0, 0 > NetGraph items: 36, 4130, 2, 175,1535407748, 0, 0 > NetGraph data items: 36, 531, 0, 531,3322859915,26160, 0 > g_bio: 140, 0, 0, 4144,23787066, 0, 0 > ttyinq: 152, 0, 300, 12, 675, 0, 0 > ttyoutq: 256, 0, 157, 8, 353, 0, 0 > ata_request: 204, 0, 0, 1045, 5946685, 0, 0 > ata_composite: 180, 0, 0, 0, 0, 0, 0 > VNODE: 272, 0, 64112, 134, 7873012, 0, 0 > VNODEPOLL: 60, 0, 0, 0, 0, 0, 0 > S VFS Cache: 72, 0, 66367, 466, 8051562, 0, 0 > L VFS Cache: 292, 0, 595, 198, 109305, 0, 0 > NAMEI: 1024, 0, 0, 12,171046456, 0, 0 > NFSMOUNT: 532, 0, 0, 0, 0, 0, 0 > NFSNODE: 460, 0, 0, 0, 0, 0, 0 > DIRHASH: 1024, 0, 485, 11, 497, 0, 0 > pipe: 392, 0, 10, 30, 784482, 0, 0 > Mountpoints: 648, 0, 6, 6, 6, 0, 0 > ksiginfo: 80, 0, 66, 990, 210783, 0, 0 > itimer: 220, 0, 0, 0, 0, 0, 0 > KNOTE: 72, 0, 8, 310,92381338, 0, 0 > socket: 416, 25605, 73, 242,131092823, 0, 0 > unpcb: 172, 25622, 26, 43, 3331350, 0, 0 > ipq: 32, 904, 0, 226, 8756, 0, 0 > udp_inpcb: 220, 25614, 7, 245,127020097, 0, 0 > udpcb: 8, 25781, 7, 399,127020097, 0, 0 > tcp_inpcb: 220, 25614, 33, 57, 644727, 0, 0 > tcpcb: 692, 25600, 26, 39, 644727, 0, 0 > tcptw: 52, 5184, 7, 137, 92058, 0, 0 > syncache: 112, 15365, 0, 70, 360404, 0, 0 > hostcache: 76, 15400, 30, 70, 3515, 0, 0 > tcpreass: 20, 1690, 0, 169, 1927, 0, 0 > sackhole: 20, 0, 0, 169, 620, 0, 0 > sctp_ep: 880, 25600, 0, 0, 0, 0, 0 > sctp_asoc: 1524, 40000, 0, 0, 0, 0, 0 > sctp_laddr: 24, 80040, 0, 145, 45, 0, 0 > sctp_raddr: 464, 80000, 0, 0, 0, 0, 0 > sctp_chunk: 96, 400000, 0, 0, 0, 0, 0 > sctp_readq: 76, 400000, 0, 0, 0, 0, 0 > sctp_stream_msg_out: 72, 400044, 0, 0, 0, 0, 0 > sctp_asconf: 24, 400055, 0, 0, 0, 0, 0 > sctp_asconf_ack: 24, 400055, 0, 0, 0, 0, 0 > ripcb: 220, 25614, 6, 48, 78019, 0, 0 > rtentry: 108, 0, 24066, 18, 288480, 0, 0 > IPFW dynamic rule: 108, 0, 0, 0, 0, 0, 0 > divcb: 220, 25614, 0, 0, 0, 0, 0 > selfd: 28, 0, 158, 223,1786944834, 0, 0 > ip4flow: 40, 25668, 680, 24160,36376221, 0, 0 > ip6flow: 64, 25636, 0, 174, 20, 0, 0 > SWAPMETA: 276, 121576, 0, 0, 0, 0, 0 > FFS inode: 116, 0, 64073, 46, 7872685, 0, 0 > FFS1 dinode: 128, 0, 0, 0, 0, 0, 0 > FFS2 dinode: 256, 0, 64073, 22, 7872685, 0, 0 > > # uname -a > FreeBSD bor 9.0-CURRENT FreeBSD 9.0-CURRENT #1: Wed Feb 23 09:39:22 UTC 2011 @:/usr/obj/usr/src/sys/KES_KERN_v9 i386 > > #tail /var/log/messages > May 24 21:58:57 bor kernel: Limiting icmp unreach response from 273 to 200 packets/sec > May 24 21:58:58 bor kernel: Limiting icmp unreach response from 223 to 200 packets/sec > May 24 21:58:59 bor kernel: Limiting icmp unreach response from 235 to 200 packets/sec > May 24 21:59:00 bor kernel: Limiting icmp unreach response from 278 to 200 packets/sec > May 24 21:59:01 bor kernel: Limiting icmp unreach response from 283 to 200 packets/sec > May 24 21:59:02 bor kernel: Limiting icmp unreach response from 255 to 200 packets/sec > May 24 21:59:03 bor kernel: Limiting icmp unreach response from 269 to 200 packets/sec > May 24 21:59:04 bor kernel: Limiting icmp unreach response from 286 to 200 packets/sec > May 24 21:59:05 bor kernel: Limiting icmp unreach response from 225 to 200 packets/sec > May 24 21:59:06 bor kernel: Limiting icmp unreach response from 328 to 200 packets/sec > May 24 21:59:07 bor kernel: Limiting icmp unreach response from 285 to 200 packets/sec > May 24 21:59:08 bor kernel: Limiting icmp unreach response from 286 to 200 packets/sec > May 24 21:59:09 bor kernel: Limiting icmp unreach response from 304 to 200 packets/sec > May 24 21:59:10 bor kernel: Limiting icmp unreach response from 304 to 200 packets/sec > May 24 21:59:11 bor kernel: Limiting icmp unreach response from 311 to 200 packets/sec > > Thank you. > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:49:25 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDCDA1065673 for ; Fri, 25 May 2012 20:49:25 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id 3EE198FC19 for ; Fri, 25 May 2012 20:49:25 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PKnMCI031415; Fri, 25 May 2012 22:49:23 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PKZe5h031303; Fri, 25 May 2012 22:35:40 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 22:35:40 +0200 (CEST) From: Wojciech Puchar To: Arthur Chance In-Reply-To: <4FBFB5E7.1050005@qeng-ho.org> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> <4FBFB5E7.1050005@qeng-ho.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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 22:49:23 +0200 (CEST) Cc: Frank Bonnet , freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:49:25 -0000 > > As he said in his post, NFS is the first place to start. It's available on > FreeBSD, Linux, Mac OS, other Unix derived systems, and Windows 7. The one > thing to be careful of is that it works best when you have all home > directories on central servers and all access is on client machines. It is i would strongly recommend serving windows clients with windows protocol (samba), it is just simple and works great > For earlier (< 7) Windows boxes, one possibility is running Samba on the Unix > servers. This would seem most natural to a Windows user as they merely have > to browse the network to find the shared file systems. With windows 7 samba still is far better. And with NFS you will not be able to enforce security without making separate filesystem for each user. > However, another possibility is running a WebDAV server that makes the home > directories visible. Windows (>= XP) can connect drive letters to WebDAV > servers, and there are also Android and iPhone apps that can access WebDAV. if really someone needs HTTP based file access (IMHO stupid) because phones require this i would rather set it up parallel to SAMBA and/or NFS > > From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:49:27 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D2B6B1065679 for ; Fri, 25 May 2012 20:49:27 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id 3F3E28FC1B for ; Fri, 25 May 2012 20:49:27 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PKnMCK031415; Fri, 25 May 2012 22:49:23 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PKcVDt031305; Fri, 25 May 2012 22:38:31 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 22:38:31 +0200 (CEST) From: Wojciech Puchar To: Polytropon In-Reply-To: <20120525204747.e18e57c6.freebsd@edvax.de> Message-ID: References: <4FBF3EA9.2000103@esiee.fr> <4FBF8F38.9070300@qeng-ho.org> <4FBF9356.7040504@esiee.fr> <4FBF9BDF.4020208@qeng-ho.org> <4FBFA17A.7010906@esiee.fr> <20120525204747.e18e57c6.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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 22:49:24 +0200 (CEST) Cc: Frank Bonnet , freebsd-questions@freebsd.org Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:49:27 -0000 >>> Am I clear enough ? ( sorry English is not my native language ...) >> >> "Access" is still a bit vague, but security/openvpn may be part of the >> answer: http://openvpn.net/index.php/open-source.html for windows users i would recommend mpd - it provides VPN in windows standard, just use windows "add connection", select "VPN connection to work" and go on. > > Some months ago, I read about an in-browser implementation of > VNC (if I remember correctly), but I didn't store the link. > Maybe that is an inspiration? Simple solution for simple people: > People love web browsers, and the web is everywhere. So why > deal with OS-specific access methods when all they need is > a web browser, which is a solution they'll prefer anyway? > There are also SSH clients written in Java or JavaScript. if you can make people use unix-only software, this is fine. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:49:46 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CB6610658CE for ; Fri, 25 May 2012 20:49:46 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id DA2BF8FC12 for ; Fri, 25 May 2012 20:49:45 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PKcr1n031344; Fri, 25 May 2012 22:38:53 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PKcqGR031341; Fri, 25 May 2012 22:38:52 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 22:38:52 +0200 (CEST) From: Wojciech Puchar To: Gary Aitken In-Reply-To: <4FBFE5E2.6070305@dreamchaser.org> Message-ID: References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> <4FBFE5E2.6070305@dreamchaser.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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 22:38:53 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: removing /var/empty on a non-system disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:49:46 -0000 chflags noschg is your friend. On Fri, 25 May 2012, Gary Aitken wrote: > something I'm not seeing > > I've got a disk previously used as a sys disk I'm trying to clean up. > What's the key to removing /var/empty? > > 280 /hd1/var#sysctl kern.securelevel > kern.securelevel: -1 > 281 /hd1/var#ls -l > total 4 > dr-xr-xr-x 2 root wheel 512 Jan 3 00:55 empty > 282 /hd1/var#chflags noschg empty > 283 /hd1/var#chmod 777 empty > chmod: empty: Operation not permitted > 284 /hd1/var#rmdir empty > rmdir: empty: Operation not permitted > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-questions@FreeBSD.ORG Fri May 25 20:54:31 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E5C51065675 for ; Fri, 25 May 2012 20:54:31 +0000 (UTC) (envelope-from gibblertron@gmail.com) Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by mx1.freebsd.org (Postfix) with ESMTP id 3073C8FC0C for ; Fri, 25 May 2012 20:54:31 +0000 (UTC) Received: by wibhn6 with SMTP id hn6so1060289wib.13 for ; Fri, 25 May 2012 13:54:30 -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=62hKK+aTdXnUbzcHqdf9E7XVrLbQtnLn6YATnfbsz7A=; b=XFV9/G8j5KGkTljdRZ8wOii3nWpljS0N7yYC1KCHMVpSbgksiPJmjFcqMVgx9iuclL 7Uust/EffG/Ep5CuCdUpXPjxPn+wZpE6FqCBO9BL1GsVEz1yda5202nCcY24AJdsMBMh fwF1X9pztfoNbU+QyZjJ8l3h/tar1Kx6qPb/efm30jdaUW7mqFIoIXUZ23I5Q3QRmDSu 8KHj8NQnfb2APDgmiiel/spitRqSccq7b3a88mczZ0pjdQdWCcmwoTIFrfSWOLcteUyZ geuLoI2IozCVOYctyuPiHsyQTHcKSTM2c1t8ke1YzfmFs4uW74zwvDisiWr5Y8PYoWgV UfgA== MIME-Version: 1.0 Received: by 10.180.102.36 with SMTP id fl4mr671459wib.2.1337979270228; Fri, 25 May 2012 13:54:30 -0700 (PDT) Received: by 10.180.85.163 with HTTP; Fri, 25 May 2012 13:54:30 -0700 (PDT) In-Reply-To: References: Date: Fri, 25 May 2012 13:54:30 -0700 Message-ID: From: Patrick To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-questions@freebsd.org Subject: Re: question about milter software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 20:54:31 -0000 On Fri, May 25, 2012 at 1:21 PM, Wojciech Puchar wrote: >> I think you'll find Postfix to be much more modern and easy to work >> with for that kind of message rewriting. > > > you are actually wrong in that statement. In spite of hype that postscript > started with, i am still using sendmail because it is actually easiest if > you learn it. I guess it's pretty subjective, which is how I should have originally prefaced my statement. I used sendmail for a long time, and always hated working with m4 or direct sendmail configuration files. For me, Postfix is so much easier, but to each his own. For your immediate need, I'd look at http://www.ledge.co.za/software/disclaimermilter/ or MIMEDefang (http://www.mimedefang.org/) which appears to be able to add disclaimers. Patrick From owner-freebsd-questions@FreeBSD.ORG Fri May 25 21:03:39 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01519106564A for ; Fri, 25 May 2012 21:03:39 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id 5D3FF8FC0A for ; Fri, 25 May 2012 21:03:37 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4PL3aRq031580; Fri, 25 May 2012 23:03:36 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4PL3ag5031577; Fri, 25 May 2012 23:03:36 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 25 May 2012 23:03:36 +0200 (CEST) From: Wojciech Puchar To: Patrick 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Fri, 25 May 2012 23:03:36 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: question about milter software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 21:03:39 -0000 > I guess it's pretty subjective, which is how I should have originally > prefaced my statement. I used sendmail for a long time, and always > hated working with m4 or direct sendmail configuration files. well i just used README file and sometimes google. > For me, > Postfix is so much easier, but to each his own. it's mostly personal preferences. both are rather configurable, just different way. From owner-freebsd-questions@FreeBSD.ORG Fri May 25 21:04:59 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FE9F106566B for ; Fri, 25 May 2012 21:04:59 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id C51878FC0A for ; Fri, 25 May 2012 21:04:58 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4PL4oj7022230; Fri, 25 May 2012 15:04:50 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBFF3F2.60501@dreamchaser.org> Date: Fri, 25 May 2012 15:04:50 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: Polytropon References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> <4FBFE5E2.6070305@dreamchaser.org> <20120525222123.474401eb.freebsd@edvax.de> In-Reply-To: <20120525222123.474401eb.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Fri, 25 May 2012 15:04:51 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: removing /var/empty on a non-system disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 21:04:59 -0000 On 05/25/12 14:21, Polytropon wrote: > On Fri, 25 May 2012 14:04:50 -0600, Gary Aitken wrote: >> something I'm not seeing >> >> I've got a disk previously used as a sys disk I'm trying to clean up. >> What's the key to removing /var/empty? >> >> 280 /hd1/var#sysctl kern.securelevel >> kern.securelevel: -1 >> 281 /hd1/var#ls -l >> total 4 >> dr-xr-xr-x 2 root wheel 512 Jan 3 00:55 empty >> 282 /hd1/var#chflags noschg empty >> 283 /hd1/var#chmod 777 empty >> chmod: empty: Operation not permitted >> 284 /hd1/var#rmdir empty >> rmdir: empty: Operation not permitted > > Interesting, I just tried this on my home system (FreeBSD 8.2-STABLE) > and it worked as intended. I did use the exact commands, > same securelevel. > > Use the -o option for ls (ls -lo) to check on the effect > of chflags and chmod. Just found it, something I forgot about a long time ago... I was running under su logged in as my normal user. Had to back all the way out and log in as root. > Without eexamining this behaviour in more detail, how about > this approach? Unmount the former system disk and newfs it? > That should "solve" the problem. :-) Thought about that, but I wanted to understand what was going on. Ignorance is never a good excuse. :-) Gary From owner-freebsd-questions@FreeBSD.ORG Fri May 25 21:05:06 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 199DF1065678 for ; Fri, 25 May 2012 21:05:06 +0000 (UTC) (envelope-from cjr@cruwe.de) Received: from cruwe.de (cruwe.de [188.40.164.98]) by mx1.freebsd.org (Postfix) with ESMTP id C868A8FC12 for ; Fri, 25 May 2012 21:05:05 +0000 (UTC) Received: from cruwe.de (unknown [127.0.0.4]) by cruwe.de (Postfix) with ESMTP id 3E168D409 for ; Fri, 25 May 2012 21:04:59 +0000 (UTC) Received: by cruwe.de (Postfix, from userid 65534) id 25228D408; Fri, 25 May 2012 21:04:59 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.cruwe.de X-Spam-Level: X-Spam-Status: No, score=-1.0 required=4.0 tests=ALL_TRUSTED autolearn=unavailable version=3.3.2 Received: from dijkstra.cruwe.de (p5B37B3D2.dip.t-dialin.net [91.55.179.210]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by cruwe.de (Postfix) with ESMTPSA id 18C1BD406 for ; Fri, 25 May 2012 21:04:57 +0000 (UTC) Date: Fri, 25 May 2012 23:04:55 +0200 From: "Christopher J. Ruwe" To: Message-ID: <20120525230455.3f55afcb@dijkstra.cruwe.de> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV on mail.cruwe.de using ClamSMTP Subject: xorg crashes after ports-wide update, fontconfig the culprit? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 21:05:06 -0000 Having done a portmaster -a rendered my system virtually unusable, Xorg kept crashing when opening claws-mail, firefox and thunderbird, opera kept chrashing in a random fashion, too. Quod googelet "x11 crash site:freebsd.org" and narrowing down the results for to the last week, I found two references, i.e., 1) http://forums.freebsd.org/showthread.php?p=178234 and 2) http://forums.freebsd.org/showthread.php?p=178014. Having implemented 2) via portdowngrade to fontconfig-2.8.0_2,1 seems to have solved the crashing issues for opera and claws, firefox and thunderbird are waiting to be compiled. Has anyone observed similar issues, can anyone back my suspicion about fontconfig or show me how to prove it and wouldn't a note on UPDATING be in order? Thanks for your comments, cheers and have a nice weekend, -- Christopher TZ GMT +2 From owner-freebsd-questions@FreeBSD.ORG Fri May 25 21:07:11 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21301106566C for ; Fri, 25 May 2012 21:07:10 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 99C308FC17 for ; Fri, 25 May 2012 21:07:10 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4PL79HL022239; Fri, 25 May 2012 15:07:09 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FBFF47D.9040803@dreamchaser.org> Date: Fri, 25 May 2012 15:07:09 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: Wojciech Puchar References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> <4FBFE5E2.6070305@dreamchaser.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Fri, 25 May 2012 15:07:09 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: removing /var/empty on a non-system disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 21:07:11 -0000 On 05/25/12 14:38, Wojciech Puchar wrote: > chflags noschg is your friend. Not in this case. If you look at the commands attempted, that was already tried (line 282) Topmost login had to be as root. > On Fri, 25 May 2012, Gary Aitken wrote: > >> something I'm not seeing >> >> I've got a disk previously used as a sys disk I'm trying to clean up. >> What's the key to removing /var/empty? >> >> 280 /hd1/var#sysctl kern.securelevel >> kern.securelevel: -1 >> 281 /hd1/var#ls -l >> total 4 >> dr-xr-xr-x 2 root wheel 512 Jan 3 00:55 empty >> 282 /hd1/var#chflags noschg empty >> 283 /hd1/var#chmod 777 empty >> chmod: empty: Operation not permitted >> 284 /hd1/var#rmdir empty >> rmdir: empty: Operation not permitted From owner-freebsd-questions@FreeBSD.ORG Fri May 25 21:13:48 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3257910656D6 for ; Fri, 25 May 2012 21:13:48 +0000 (UTC) (envelope-from cjr@cruwe.de) Received: from cruwe.de (cruwe.de [188.40.164.98]) by mx1.freebsd.org (Postfix) with ESMTP id DF9898FC08 for ; Fri, 25 May 2012 21:13:47 +0000 (UTC) Received: from cruwe.de (unknown [127.0.0.4]) by cruwe.de (Postfix) with ESMTP id 1E351D45D for ; Fri, 25 May 2012 21:13:47 +0000 (UTC) Received: by cruwe.de (Postfix, from userid 65534) id F407BD45C; Fri, 25 May 2012 21:13:46 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.cruwe.de X-Spam-Level: X-Spam-Status: No, score=-1.0 required=4.0 tests=ALL_TRUSTED autolearn=unavailable version=3.3.2 Received: from dijkstra.cruwe.de (p5B37B3D2.dip.t-dialin.net [91.55.179.210]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by cruwe.de (Postfix) with ESMTPSA id E697DD45A for ; Fri, 25 May 2012 21:13:44 +0000 (UTC) Date: Fri, 25 May 2012 23:13:43 +0200 From: "Christopher J. Ruwe" To: freebsd-questions@freebsd.org Message-ID: <20120525231343.0a6c5086@dijkstra.cruwe.de> In-Reply-To: References: X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV on mail.cruwe.de using ClamSMTP Subject: Re: Ports-Related Commands Hanging After 9.0 Upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 21:13:48 -0000 On Fri, 25 May 2012 13:33:29 -0400 Sam Jones wrote: > Hi all, > > Forgive me if this is a repeat topic. I'd appreciate it if somebody > could point me to the answer. > > I recently upgraded to 9.0 on my server, but since then a lot of > ports-related commands (portupgrade, pkg_version, portsnap, etc.) just > hang when I try to execute them. I'm not even really sure where to > begin troubleshooting. Has anybody else seen this behavior? > Upgrading world leads to many system libs being updated, too. When ports are dependant on these, a recompile of these ports might help. If you need/want to be sure, sysutils/bsdadminscripts is supposed to contain a script to check for broken shared libs system-wide and a ldd(1) on the binary you are trying to run will spit out some libraries you can the try to find(1). Hope to have been of some help, cheers, Christopher From owner-freebsd-questions@FreeBSD.ORG Fri May 25 22:01:27 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4DAC5106566C for ; Fri, 25 May 2012 22:01:27 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 081048FC08 for ; Fri, 25 May 2012 22:01:27 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx01.qsc.de (Postfix) with ESMTP id A05953CD05; Sat, 26 May 2012 00:01:24 +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 q4PM1OXa002573; Sat, 26 May 2012 00:01:24 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Sat, 26 May 2012 00:01:23 +0200 From: Polytropon To: freebsd@dreamchaser.org Message-Id: <20120526000123.cf1a67f8.freebsd@edvax.de> In-Reply-To: <4FBFF3F2.60501@dreamchaser.org> References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> <4FBFE5E2.6070305@dreamchaser.org> <20120525222123.474401eb.freebsd@edvax.de> <4FBFF3F2.60501@dreamchaser.org> 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-questions@freebsd.org Subject: Re: removing /var/empty on a non-system disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 22:01:27 -0000 On Fri, 25 May 2012 15:04:50 -0600, Gary Aitken wrote: > On 05/25/12 14:21, Polytropon wrote: > > On Fri, 25 May 2012 14:04:50 -0600, Gary Aitken wrote: > >> something I'm not seeing > >> > >> I've got a disk previously used as a sys disk I'm trying to clean up. > >> What's the key to removing /var/empty? > >> > >> 280 /hd1/var#sysctl kern.securelevel > >> kern.securelevel: -1 > >> 281 /hd1/var#ls -l > >> total 4 > >> dr-xr-xr-x 2 root wheel 512 Jan 3 00:55 empty > >> 282 /hd1/var#chflags noschg empty > >> 283 /hd1/var#chmod 777 empty > >> chmod: empty: Operation not permitted > >> 284 /hd1/var#rmdir empty > >> rmdir: empty: Operation not permitted > > > > Interesting, I just tried this on my home system (FreeBSD 8.2-STABLE) > > and it worked as intended. I did use the exact commands, > > same securelevel. > > > > Use the -o option for ls (ls -lo) to check on the effect > > of chflags and chmod. > > Just found it, something I forgot about a long time ago... > I was running under su logged in as my normal user. > Had to back all the way out and log in as root. I should have mentioned that I did the (successful) test logging in as root (real console login). If you use "su -" or "su root", the effect should be the same. You can always check the success of your operation with the "ls -lo" command. > > Without eexamining this behaviour in more detail, how about > > this approach? Unmount the former system disk and newfs it? > > That should "solve" the problem. :-) > > Thought about that, but I wanted to understand what was going on. > Ignorance is never a good excuse. :-) True: IGNORANCE IS STRENGTH. :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri May 25 23:41:35 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83FB21065782 for ; Fri, 25 May 2012 23:41:35 +0000 (UTC) (envelope-from derek@computinginnovations.com) Received: from betty.computinginnovations.com (mail.computinginnovations.com [64.81.227.250]) by mx1.freebsd.org (Postfix) with ESMTP id 394C38FC08 for ; Fri, 25 May 2012 23:41:34 +0000 (UTC) Received: from i7-quad-PC.computinginnovations.com (dhcp-10-20-30-142.computinginnovations.com [10.20.30.142]) by betty.computinginnovations.com (8.14.5/8.14.3) with ESMTP id q4PNfO8S095631; Fri, 25 May 2012 18:41:25 -0500 (CDT) (envelope-from derek@computinginnovations.com) Message-Id: <6.0.0.22.2.20120525184026.05eb8440@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Fri, 25 May 2012 18:41:12 -0500 To: Frank Bonnet , Dennis Glatting From: Derek Ragona In-Reply-To: <4FBF69B4.7010805@esiee.fr> References: <4FBF3EA9.2000103@esiee.fr> <1337940633.42636.5.camel@btw.pki2.com> <4FBF69B4.7010805@esiee.fr> Mime-Version: 1.0 X-Antivirus: avast! (VPS 120525-1, 05/25/2012), Outbound message X-Antivirus-Status: Clean X-yoursite-MailScanner-Information: Please contact the ISP for more information X-yoursite-MailScanner-ID: q4PNfO8S095631 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: derek@computinginnovations.com X-Spam-Status: No Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "freebsd-questions@freebsd.org" Subject: Re: "Cloud" software ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 23:41:35 -0000 At 06:15 AM 5/25/2012, Frank Bonnet wrote: >On 05/25/2012 12:10 PM, Dennis Glatting wrote: >>On Fri, 2012-05-25 at 10:11 +0200, Frank Bonnet wrote: >>>Hello >>> >>>I'm searching for a "cloud software" :-) >>> >>>More precisely we would like to offer to our students and professors >>>a kind of private cloud to access/manipulate their personnal data >>>from almost anywhere and with almost any devices ... >>>( Personnal PC, Mac, smartphones and tablets ... etc ) >>There is a couple of cheap ways of doing this. First, download the free >>version of VMWare ESXi and partition your hardware. Another is to >>install VirtualBox, a Type-2 HyperVisor. >> >>Depending on what you consider a cloud, take a look at Hadoop. Hadoop >>isn't partitioning hardware but Hadoop and the applications that run on >>top of Hadoop can give you an interesting view of these technologies and >>how they can be applied to cloudy data. >> >>As for how to get data into/out-of the cloud, let me know how that >>works. :) >> >> >> > >Hi Dennis > >Thank you for that info ! >gonna investigate the hadoop way. > I have built and managed a couple large hadoop clusters. Contact me directly for more information. -Derek -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From owner-freebsd-questions@FreeBSD.ORG Sat May 26 01:12:40 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 95BBE106566B; Sat, 26 May 2012 01:12:40 +0000 (UTC) (envelope-from lumiwa@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 402878FC19; Sat, 26 May 2012 01:12:40 +0000 (UTC) Received: by obcni5 with SMTP id ni5so2520942obc.13 for ; Fri, 25 May 2012 18:12:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:user-agent:mime-version:content-type :content-transfer-encoding:message-id; bh=Kts0w3/+Bgx++2FRMiz/fuctM3r2SQcJagrJhUvlpFs=; b=GLtlggaPdrBlkxh/TcHs2KTvOlJAwIr8ZY/qX/4olxBe37qaFHPMDrxAEAMb5OQE8u WzWLqACsGIEHrAEydbNw53MJPguZ3ZCAFJI+iFXmQuw9EdqGD4ZctmQquQID9sclKZ9p i5/pjEIizPgn+s/Usa3z8Le0O87hxR/MpyEM3GYIf58bXSiMSEqbjpQIw0fpGJtl3r4G WtrXToM7SSba5pI3mv6SXFKvc/ERTKn440nf1UZuiscq5V8K9iYTkkO1PVUGcxSVqtjW LIUmCM/YVKEcbYp3Zki6exafUbZWYLfkfCjleG/x20wzVG2c0GHhVzkC3SDMsdqHwfFm vegg== Received: by 10.50.168.100 with SMTP id zv4mr85963igb.4.1337994759473; Fri, 25 May 2012 18:12:39 -0700 (PDT) Received: from luna.wi.rr.com (cpe-184-58-138-79.wi.res.rr.com. [184.58.138.79]) by mx.google.com with ESMTPS id ch5sm267133igb.0.2012.05.25.18.12.38 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 25 May 2012 18:12:39 -0700 (PDT) From: ajtiM To: "kde-list freebsd" , freebsd-questions@freebsd.org Date: Fri, 25 May 2012 20:12:07 -0500 User-Agent: KMail/1.13.7 (FreeBSD/9.0-RELEASE; KDE/4.7.4; i386; ; ) MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201205252012.07799.lumiwa@gmail.com> Cc: Subject: why I am upset X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 01:12:40 -0000 Why I am upset but not just me? I am running KDE 4.8 from January on my Linux computer. Now is almost June and we got KDE 4.8 on FreeBSD too. 5 months testing and it works? No. The modern OS for the desktop computer doesn;t works. O.K. OS works but installatoon of 5 months testing of KDE doesn;t. And help? Read /usr/ports/UOPDATING!! I red before I start inastallation but I am not sure if helpers did! Thank you for wasting my time. Mitja -------- http://jpgmag.com/people/lumiwa From owner-freebsd-questions@FreeBSD.ORG Sat May 26 01:45:19 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06B921065670 for ; Sat, 26 May 2012 01:45:19 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id BBC138FC0A for ; Sat, 26 May 2012 01:45:18 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id 890ED28398 for ; Sat, 26 May 2012 03:45:16 +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 q4Q1jFmv004543 for ; Sat, 26 May 2012 03:45:16 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Sat, 26 May 2012 03:45:15 +0200 From: Polytropon To: FreeBSD Questions Message-Id: <20120526034515.38c6191b.freebsd@edvax.de> 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 Subject: Terminology: wheel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 01:45:19 -0000 What inspiration (or maybe logical thought) is behind the _naming_ of the "wheel" group? I could find many explainations of what "wheel" is, what it is for and how it is used (basic knowledge, I know), but I couldn't find anything that states why this name has been chosen. From other UNIX systems I know that there are groups performing similar functions, but having different names (such as "sysadmin" on Solaris prior to RBAC). This question definitely shows my age. :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sat May 26 01:52:13 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6547E106566B for ; Sat, 26 May 2012 01:52:13 +0000 (UTC) (envelope-from matthewstory@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 28BBB8FC16 for ; Sat, 26 May 2012 01:52:12 +0000 (UTC) Received: by obcni5 with SMTP id ni5so2567395obc.13 for ; Fri, 25 May 2012 18:52:12 -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=/ZiXSipx1rdoVbVxyWfupXltUUNGqh4KX2mT5GlqTcc=; b=hVWxR/hQMhCkNvG0jrEkXca4vqljMwGij0QX5ofsRlu9kAjQxsOERQCao27aUenhj7 vu9GUzXnD2tDkWK2dlU2Dq+EOM2vQtdzRCuyeoVPARtehpmVd96ScHM9G87PKCVeXVEE LbG/IxhmrbnwUIzpLaWj1eS0nU66cjkjWQl8CJK9WycTLPPLoJ7v1YZ3NuhjYlL9v1XE PNWmMv1ghlZK0FAP5Am9LQw8xJ7axcB8cDfGgfeBCHgGwuBMnmHf+PUHe8gPEvyJ/wGQ w0G7xATK9bQBp1BsuQYUIuxTDvChKXJzt+fgEsqsvc5o68025bIPWArkPvudiWxpm3V3 uqyw== MIME-Version: 1.0 Received: by 10.60.21.38 with SMTP id s6mr848008oee.53.1337997132551; Fri, 25 May 2012 18:52:12 -0700 (PDT) Received: by 10.76.116.68 with HTTP; Fri, 25 May 2012 18:52:12 -0700 (PDT) Received: by 10.76.116.68 with HTTP; Fri, 25 May 2012 18:52:12 -0700 (PDT) In-Reply-To: <20120526034515.38c6191b.freebsd@edvax.de> References: <20120526034515.38c6191b.freebsd@edvax.de> Date: Fri, 25 May 2012 21:52:12 -0400 Message-ID: From: Matthew Story To: Polytropon Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: FreeBSD Questions Subject: Re: Terminology: wheel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 01:52:13 -0000 On May 25, 2012 9:46 PM, "Polytropon" wrote: > > What inspiration (or maybe logical thought) is behind the > _naming_ of the "wheel" group? > > I could find many explainations of what "wheel" is, what it > is for and how it is used (basic knowledge, I know), but I > couldn't find anything that states why this name has been > chosen. From other UNIX systems I know that there are groups > performing similar functions, but having different names > (such as "sysadmin" on Solaris prior to RBAC). > > This question definitely shows my age. :-) > > > > -- > Polytropon > Magdeburg, Germany > Happy FreeBSD user since 4.0 > Andra moi ennepe, Mousa, ... > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " freebsd-questions-unsubscribe@freebsd.org" http://en.m.wikipedia.org/wiki/Wheel_(Unix_term) From owner-freebsd-questions@FreeBSD.ORG Sat May 26 01:59:36 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0488106564A for ; Sat, 26 May 2012 01:59:36 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 732ED8FC08 for ; Sat, 26 May 2012 01:59:36 +0000 (UTC) Received: from r56.edvax.de (port-92-195-20-192.dynamic.qsc.de [92.195.20.192]) by mx02.qsc.de (Postfix) with ESMTP id 1870E27DE8; Sat, 26 May 2012 03:59:30 +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 q4Q1xTma004582; Sat, 26 May 2012 03:59:29 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Sat, 26 May 2012 03:59:29 +0200 From: Polytropon To: Matthew Story Message-Id: <20120526035929.ecd5134f.freebsd@edvax.de> In-Reply-To: References: <20120526034515.38c6191b.freebsd@edvax.de> 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 Questions Subject: Re: Terminology: wheel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 01:59:37 -0000 On Fri, 25 May 2012 21:52:12 -0400, Matthew Story wrote: > http://en.m.wikipedia.org/wiki/Wheel_(Unix_term) Ah, thanks! I hoped there was a more... technical explaination than just "wheel" being a slang term derivate. :-) big wheel (idiomatic) A person with a great deal of power or influence, especially a high-ranking person in an organization. slang "big wheel" -> wheel bit -> wheel group -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sat May 26 02:05:54 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A68B71065670 for ; Sat, 26 May 2012 02:05:54 +0000 (UTC) (envelope-from jherman@dichotomia.fr) Received: from mail.dichotomia.fr (hydrogen.dichotomia.net [91.121.82.228]) by mx1.freebsd.org (Postfix) with ESMTP id 6B15B8FC15 for ; Sat, 26 May 2012 02:05:54 +0000 (UTC) Received: from [192.168.2.11] (unknown [109.190.13.180]) (Authenticated sender: kha@dichotomia.fr) by sslmail.dichotomia.fr (Postfix) with ESMTPSA id 92DFA3DD098; Sat, 26 May 2012 03:56:45 +0200 (CEST) Message-ID: <4FC03896.6090901@dichotomia.fr> Date: Sat, 26 May 2012 03:57:42 +0200 From: Jerome Herman User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Polytropon , FreeBSD References: <20120526034515.38c6191b.freebsd@edvax.de> In-Reply-To: <20120526034515.38c6191b.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: Terminology: wheel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 02:05:54 -0000 On 26/05/2012 03:45, Polytropon wrote: > What inspiration (or maybe logical thought) is behind the > _naming_ of the "wheel" group? > > I could find many explainations of what "wheel" is, what it > is for and how it is used (basic knowledge, I know), but I > couldn't find anything that states why this name has been > chosen. From other UNIX systems I know that there are groups > performing similar functions, but having different names > (such as "sysadmin" on Solaris prior to RBAC). > > This question definitely shows my age. :-) > > > Legend as ti it was first used as a joke on Xerox system. There was a special bit that indicated that some operations could be accomplished, basically it was the ancestor of kernel space on old time sharing system, invented on TENEX. When it came to naming the bit it was turned into a pun : the bit wheel. The big wheel being a slang term meaning "powerful person in charge". So basically it was bit wheel for the powerful process in charge. I do not know if it is accurate though, I wasn't at Xerox at the time and I never even saw a Tenex in all my life, but it seems the official explanation (at least the one all over the Internet). If someone can confirm/infirm... From owner-freebsd-questions@FreeBSD.ORG Sat May 26 02:36:07 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4066106564A for ; Sat, 26 May 2012 02:36:07 +0000 (UTC) (envelope-from bluethundr@gmail.com) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 588458FC08 for ; Sat, 26 May 2012 02:36:07 +0000 (UTC) Received: by vcbfy7 with SMTP id fy7so985198vcb.13 for ; Fri, 25 May 2012 19:36:01 -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=VVqDxNtl1mFCdD1S+6hz8BKBsgDoVHEfYstLk9YFcmQ=; b=G8AkCbT04YP+26AiQz/7MxwWlNF9tW8cXETtjfInDWj4ep7qZ7KOicjCsjsmwGT14R St6qzki+cTPZXzTcLz8eYCKT7m33L/yWPAyEsa+DZ0ctEHWl4NTr6c7feWFZ3FJ4QhhI RbamstkldOFHb/RmDX4N78EcetOCQMrO40hxa8NGk6wWbvVL32Lu+47tkAmYSzw0ZhS/ Pr6voWGO0xPFXEq6POtCe3b4ST4o4oE8DRMaFIsUgYtJDHnqRyOkyjf3Vly0e5lkIODb 3gP4foPFWVjqzmKxPbt2YWbXkCgEPL/tDq7+Nil/POKzbY0/pVGXmpm4EovSajMpG/lD qEHA== MIME-Version: 1.0 Received: by 10.52.67.205 with SMTP id p13mr980168vdt.33.1337999761363; Fri, 25 May 2012 19:36:01 -0700 (PDT) Received: by 10.52.172.103 with HTTP; Fri, 25 May 2012 19:36:01 -0700 (PDT) Date: Fri, 25 May 2012 22:36:01 -0400 Message-ID: From: Tim Dunphy To: freebsd-questions Content-Type: text/plain; charset=ISO-8859-1 Subject: pam_start(): system error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 02:36:08 -0000 Hello list, My freebsd 8.2 box has a new, interesting error. When I go to change any user password I see the message passwd: pam_start(): system error as in : [root@LBSD2:/etc/pam.d] #passwd Changing local password for root passwd: pam_start(): system error passwd is able to see it's libraries: [root@LBSD2:/etc/pam.d] #ldd /usr/bin/passwd /usr/bin/passwd: libpam.so.5 => /usr/lib/libpam.so.5 (0x2808e000) libc.so.7 => /lib/libc.so.7 (0x28096000) Here are my libraries: [root@LBSD2:/etc/pam.d] #ls /lib geom libcrypt.so.5 libncursesw.so.8 libalias.so.7 libcrypto.so.6 libnvpair.so.2 libalias_cuseeme.so libctf.so.2 libpcap.so.7 libalias_dummy.so libdevstat.so.7 libreadline.so.8 libalias_ftp.so libdtrace.so.2 libsbuf.so.5 libalias_irc.so libedit.so.7 libssp.so.0 libalias_nbt.so libgcc_s.so.1 libthr.so.3 libalias_pptp.so libgeom.so.5 libufs.so.5 libalias_skinny.so libipsec.so.4 libumem.so.2 libalias_smedia.so libipx.so.5 libutil.so.8 libavl.so.2 libjail.so.1 libuutil.so.2 libbegemot.so.4 libkiconv.so.4 libz.so.5 libbsdxml.so.4 libkvm.so.5 libzfs.so.2 libbsnmp.so.5 libm.so.5 libzpool.so.2 libc.so.7 libmd.so.5 libcam.so.5 libncurses.so.8 I was wondering if there was a way to resintall pam under freebsd? This machine is an 8.2 release FreeBSD LBSD2.summitnjhome.com 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 thanks tim -- GPG me!! gpg --keyserver pool.sks-keyservers.net --recv-keys F186197B From owner-freebsd-questions@FreeBSD.ORG Sat May 26 03:57:01 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D06B51065673 for ; Sat, 26 May 2012 03:57:01 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id 8F7FE8FC0C for ; Sat, 26 May 2012 03:57:01 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4Q3wvel072365 for freebsd-questions@freebsd.org; Fri, 25 May 2012 22:58:57 -0500 (CDT) Date: Fri, 25 May 2012 22:58:57 -0500 (CDT) From: Robert Bonomi Message-Id: <201205260358.q4Q3wvel072365@mail.r-bonomi.com> To: freebsd-questions@freebsd.org In-Reply-To: <20120526035929.ecd5134f.freebsd@edvax.de> Subject: Re: Terminology: wheel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 03:57:01 -0000 > From: Polytropon > > On Fri, 25 May 2012 21:52:12 -0400, Matthew Story wrote: > > http://en.m.wikipedia.org/wiki/Wheel_(Unix_term) > > Ah, thanks! I hoped there was a more... technical explaination > than just "wheel" being a slang term derivate. :-) > > big wheel (idiomatic) > A person with a great deal of power or influence, > especially a high-ranking person in an organization. > > slang "big wheel" -> wheel bit -> wheel group There are numerous 'wheel' related terms in the 'casual English' lexicon. See 'wheeler dealer', for example. Those 'at the wheel' are those who are in charge -- in immediate control of steering the ship. See also 'wheel horse'. which has a secondary meaning of 'a diligent, dependble worker' -- one who can be trusted to 'do things right' (defined as 'the way the boss wants it done' :) Derived from a position in a team of horses used to pull wagons, coaches, etc. Some horses do *not* work well in a team at all, others are intractable if they are not in a 'lead' position, A 'wheel horse' will work behind others. They will, _without_complaint_, follow the "horse's ass" in the lead. The parallel to computer operations staff (the wheel group) is obvious. *GRIN* From owner-freebsd-questions@FreeBSD.ORG Sat May 26 05:50:50 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA53E1065679 for ; Sat, 26 May 2012 05:50:50 +0000 (UTC) (envelope-from garya@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 807BF8FC0C for ; Sat, 26 May 2012 05:50:50 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4Q5oifq023692 for ; Fri, 25 May 2012 23:50:44 -0600 (MDT) (envelope-from garya@dreamchaser.org) Message-ID: <4FC06F34.8050107@dreamchaser.org> Date: Fri, 25 May 2012 23:50:44 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> In-Reply-To: <4FBFCC61.2010504@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Fri, 25 May 2012 23:50:44 -0600 (MDT) Subject: Re: ports build and synchronization issues X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 05:50:50 -0000 This was the result of a conflict with building another port at the same time, and is a known issue. See: http://wiki.freebsd.org/IdeasPage#Parallelization_in_the_Ports_Collection On 05/25/12 12:16, Gary Aitken wrote: > I've had a number of failures attempting to build things, > but on several occasions builds have failed with what looks like may be > threading / subprocess synchronization issues. > I'm running 9.0-RELEASE on a 4-processor amd64 system w/ 16GB. > > For example, an attempt to build openoffice-3 failed building package > textproc/redland when a dependent package build couldn't find some doc pages. > It was trying to build textproc/rasqal and looking for what I think was > the open-motif library and couldn't find it because > the (open-motif?) install failed because of the doc pages issue. > Rerunning "make install" at the openoffice-3 level still failed at the same point. > Going to the dependent text package and doing a make install claimed the > package was already installed. > "make deinstall" and "make clean install" solved the issue. > > I'm a little fuzzy on the details because I don't have the build output, > and used two different windows, one to build and another to check status > using pkg_info, etc. > Backing up in the command history I have this, > which resulted in a complete build: > > cd openoffice-3 > make original failure due to missing doc files > make -v install repeated the same failure > cd ../../textproc/redland attempt to build dependent pkg redland > make clean > make -v install failed on dependent pkg rasqal > cd ../rasqal > make deinstall begin of successful build of rasqal > make clean > make install > cd ../../textproc/redland > make install begin of successful build of redland > cd ../../editors/openoffice-3 > make install resume& successful build of openoffice-3 > > The original error seems like a synchronization problem > between the subprocesses doing the builds. > Is anyone else seeing this kind of behavior? > > Gary > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-questions@FreeBSD.ORG Sat May 26 06:04:35 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 296BA106566B for ; Sat, 26 May 2012 06:04:35 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id 8CF298FC0C for ; Sat, 26 May 2012 06:04:34 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4Q64SEq033957; Sat, 26 May 2012 08:04:28 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4Q64RLi033954; Sat, 26 May 2012 08:04:27 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sat, 26 May 2012 08:04:27 +0200 (CEST) From: Wojciech Puchar To: Gary Aitken In-Reply-To: <4FBFF47D.9040803@dreamchaser.org> Message-ID: References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> <4FBFE5E2.6070305@dreamchaser.org> <4FBFF47D.9040803@dreamchaser.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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sat, 26 May 2012 08:04:28 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: removing /var/empty on a non-system disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 06:04:35 -0000 what ls -lod empty says? On Fri, 25 May 2012, Gary Aitken wrote: > On 05/25/12 14:38, Wojciech Puchar wrote: >> chflags noschg is your friend. > > Not in this case. > If you look at the commands attempted, that was already tried (line 282) > Topmost login had to be as root. > >> On Fri, 25 May 2012, Gary Aitken wrote: >> >>> something I'm not seeing >>> >>> I've got a disk previously used as a sys disk I'm trying to clean up. >>> What's the key to removing /var/empty? >>> >>> 280 /hd1/var#sysctl kern.securelevel >>> kern.securelevel: -1 >>> 281 /hd1/var#ls -l >>> total 4 >>> dr-xr-xr-x 2 root wheel 512 Jan 3 00:55 empty >>> 282 /hd1/var#chflags noschg empty >>> 283 /hd1/var#chmod 777 empty >>> chmod: empty: Operation not permitted >>> 284 /hd1/var#rmdir empty >>> rmdir: empty: Operation not permitted > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-questions@FreeBSD.ORG Sat May 26 06:11:21 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F33F91065675 for ; Sat, 26 May 2012 06:11:21 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id 5BC198FC0A for ; Sat, 26 May 2012 06:11:21 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4Q6BLvd033989; Sat, 26 May 2012 08:11:21 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4Q6BL2h033986; Sat, 26 May 2012 08:11:21 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sat, 26 May 2012 08:11:20 +0200 (CEST) From: Wojciech Puchar To: ajtiM In-Reply-To: <201205252012.07799.lumiwa@gmail.com> Message-ID: References: <201205252012.07799.lumiwa@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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sat, 26 May 2012 08:11:21 +0200 (CEST) Cc: kde-list freebsd , freebsd-questions@freebsd.org Subject: Re: why I am upset X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 06:11:22 -0000 > I am running KDE 4.8 from January on my Linux computer. Now is almost June and > we got KDE 4.8 on FreeBSD too. 5 months testing and it works? No. The modern > OS for the desktop computer doesn;t works. O.K. OS works but installatoon of 5 > months testing of KDE doesn;t. so stop using trendy "desktop" and just start to do actual work and you will not be upset any more but happy. "Desktop environments" offer exactly zero value and do nothing. Just use fvwm2, maybe icewm, tune it to your needs and start working. use xterm as your "start button" by starting program you need from command like. configure fvwm2 to have multiple "virtual desktop" switchable by keystrokes so you will have something like standard text console just in X11 with ability to run X11 programs. in most cases - run one program on one virtual desktop. Multiple windows on screen is only fashionable but useless in practice. After a while you will end in removing every unneeded things that are only fashionable but just wastes time and monitor space. For example window frames and titles. "Desktop environments" are required so average winuser will not protest too much when i do X11 terminal based configuration. but i use gnome2 this case with gdm as it is far faster (==less slow) than KDE, and as well as KDE gives nothing but looks more windows-like. From owner-freebsd-questions@FreeBSD.ORG Sat May 26 07:03:55 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0318A1065670 for ; Sat, 26 May 2012 07:03:55 +0000 (UTC) (envelope-from henrixd@gmail.com) Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by mx1.freebsd.org (Postfix) with ESMTP id 89FF18FC12 for ; Sat, 26 May 2012 07:03:54 +0000 (UTC) Received: by wibhj8 with SMTP id hj8so135377wib.13 for ; Sat, 26 May 2012 00:03:47 -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=ceu8aWs31k/L0O1ko0StY0bsvGv2Keh/RJ1xrgnkFOM=; b=hW0q9uxH8De10K03l//szKP49iZbA8foLYx51XDW/nWCuuzTlnmSH3kxXh/l4dYMWL rjKwMAZAJBY+KsYEF6QehLnv/gP9iZtVPeYzQ3kqmxIZR1SKLjX/GH9tlUu1mI+sQwJz iVRX4NX/A1vZhKIt923Zrir325ptLZsEXLzwIoaGlP1pejWaVBvP1RYNtvjFO0+K74TQ pvwnDZu+WF/n5GbNxQbpIWyqs+xkrZsRSDyEhQr328hNCCETaI/SCmakaarJATiAQcsU 1+nbL/bvGDu71LPfxUcuYyaeUXRmYiUQftCIEpO3JYQQsBJE4Zx15jrlDIXwLUdHQxzi sg0w== MIME-Version: 1.0 Received: by 10.180.7.133 with SMTP id j5mr1698952wia.14.1338015457939; Fri, 25 May 2012 23:57:37 -0700 (PDT) Received: by 10.227.57.85 with HTTP; Fri, 25 May 2012 23:57:37 -0700 (PDT) Date: Sat, 26 May 2012 09:57:37 +0300 Message-ID: From: Henri Reinikainen To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: ports tree X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 07:03:55 -0000 Hi Would it be stupid idea to have publicly available, mountable (nfs) partition, with full port tree(s)? I think it would be good for systems with low storage space. I know hd space is cheap, but I run over and over to this problem. I don't know how easily it could be done, but some kind of session based temporary write permissions would be good too. To be able to make && make install directly from mounted partition. I don't think very many people would need to have local personal copy of ports tree then. So, is this just stupid? From owner-freebsd-questions@FreeBSD.ORG Sat May 26 08:44:31 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A5B9106566B for ; Sat, 26 May 2012 08:44:31 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 03F448FC0A for ; Sat, 26 May 2012 08:44:30 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q4Q8iQSv062596 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sat, 26 May 2012 09:44:27 +0100 (BST) (envelope-from matthew@FreeBSD.org) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q4Q8iQSv062596 Authentication-Results: smtp.infracaninophile.co.uk/q4Q8iQSv062596; dkim=none (no signature); dkim-adsp=none Message-ID: <4FC097E3.3080705@FreeBSD.org> Date: Sat, 26 May 2012 09:44:19 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Henri Reinikainen References: In-Reply-To: X-Enigmail-Version: 1.4.1 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig8BF8EA0D6B5B26C56EF67B62" X-Virus-Scanned: clamav-milter 0.97.4 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Cc: freebsd-questions@FreeBSD.org Subject: Re: ports tree X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 08:44:31 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig8BF8EA0D6B5B26C56EF67B62 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 26/05/2012 07:57, Henri Reinikainen wrote: > Would it be stupid idea to have publicly available, mountable (nfs) > partition, with full port tree(s)? I think it would be good for > systems with low storage space. I know hd space is cheap, but I run > over and over to this problem. >=20 > I don't know how easily it could be done, but some kind of session > based temporary write permissions would be good too. To be able to > make && make install directly from mounted partition. >=20 > I don't think very many people would need to have local personal copy > of ports tree then. >=20 > So, is this just stupid? Not stupid, but certainly impracticable. Remote mounting filesystems over the internet is not going to be anything like scalable, and the bandwidth requirements would be horrid. As an end-user, performance would suck -- inescapably, as you'ld be hit hard by latency. Basically, if you could afford the sort of network connectivity that would make such a setup feasible, then you could easily afford sufficient local storage that you wouldn't want to use a remote mount. Also, forget the idea of *writing* to any such share disk space. The security problems with that just don't bear thinking about. NFS mounting /usr/ports within a local network -- now, that's a completely different kettle of fish. You do need to tweak WRKDIRPREFIX if you're going to have several systems building from the same tree simultaneously, and it's probably going to be more effective for you to use one machine as a central package build server and just install from packages on your limited systems. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --------------enig8BF8EA0D6B5B26C56EF67B62 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.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk/Al+kACgkQ8Mjk52CukIx1bACdHA1rtmSHdvZnyJa5ARztU8J7 WwIAnAti3m0XlO12GzA8lWRkVivSIu+8 =n/59 -----END PGP SIGNATURE----- --------------enig8BF8EA0D6B5B26C56EF67B62-- From owner-freebsd-questions@FreeBSD.ORG Sat May 26 08:58:47 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8BB51065672 for ; Sat, 26 May 2012 08:58:47 +0000 (UTC) (envelope-from mueller23@insightbb.com) Received: from mail.insightbb.com (smtp.insight.synacor.com [208.47.185.22]) by mx1.freebsd.org (Postfix) with ESMTP id 9D2798FC12 for ; Sat, 26 May 2012 08:58:47 +0000 (UTC) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.1 cv=kol2auSkmlqV0r4kL7/YmMwsenhHO5EF6+5SE0y3xX4= c=1 sm=0 a=jLN7EqiLvroA:10 a=pGLkceISAAAA:8 a=6I5d2MoRAAAA:8 a=7blUbMKY6g5oYZ64WFoA:9 a=MSl-tDqOz04A:10 a=SV7veod9ZcQA:10 a=Q/oqmR4JO1zR3vNQamCQeQ==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp01.insight.synacor.com smtp.mail=mueller23@insightbb.com; spf=softfail; sender-id=softfail Authentication-Results: smtp01.insight.synacor.com header.from=mueller23@insightbb.com; sender-id=softfail Received-SPF: softfail (smtp01.insight.synacor.com: transitional domain insightbb.com does not designate 74.134.26.53 as permitted sender) Received: from [74.134.26.53] ([74.134.26.53:37417] helo=localhost) by mail.insightbb.com (envelope-from ) (ecelerity 2.2.2.40 r(29895/29896)) with ESMTP id 8C/7E-17253-04B90CF4; Sat, 26 May 2012 04:58:40 -0400 Date: Sat, 26 May 2012 04:58:40 -0400 Message-ID: <8C.7E.17253.04B90CF4@smtp01.insight.synacor.com> From: "Thomas Mueller" To: freebsd-questions@freebsd.org Cc: Henri Reinikainen Subject: Re: ports tree X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 08:58:47 -0000 from Henri Reinikainen : > Would it be stupid idea to have publicly available, mountable (nfs) > partition, with full port tree(s)? I think it would be good for > systems with low storage space. I know hd space is cheap, but I run > over and over to this problem. > I don't know how easily it could be done, but some kind of session > based temporary write permissions would be good too. To be able to > make && make install directly from mounted partition. > I don't think very many people would need to have local personal copy > of ports tree then. > So, is this just stupid? What happens if the port a remote user is trying to build and install is updated in the middle of this remote activity? Users of ports tree then must deal with a moving target. Files from two different versions might get mixed together. I think maybe this thread should go to ports@freebsd.org list? Tom From owner-freebsd-questions@FreeBSD.ORG Sat May 26 10:29:49 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F73B106564A for ; Sat, 26 May 2012 10:29:49 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1EE4D8FC19 for ; Sat, 26 May 2012 10:29:48 +0000 (UTC) Received: by lbon10 with SMTP id n10so1564784lbo.13 for ; Sat, 26 May 2012 03:29:47 -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=XWeCdH7y5YHWzDp5+G/APX5dGd5uiqyZ2O4NvbZUY6s=; b=hdveKBdSzYgeJSlKu74tzTZ+uGqCsUsNmzJxKIWahFEvME3qoSsQs2QpqLpTW8c6ej Vjx0ND7GkSPVH9qMaUJzgxcXn69cop3Ogy4TlpPqLULzg6dxUhDwUc9t7Bre2UAhJwnh 2oxETiidT1okIEPy/tgUI6yzFl1PTradrkZ/fNEFQLCsXUbglbMjjm0dJky/RsXGDlio ++pORgEXIozgh/a2U+QnDMLoZPT4uNOVyFJQq8hor8coO+EMXa7+6S2fZD6z9J6mJDId oUkLnIAlOcojYCbFDMkdEXqxXnlljD9ZEv5ieqXz3ZSuN2Kaz9UjxHEkgGbw9T6+2dsw OKdw== MIME-Version: 1.0 Received: by 10.112.29.166 with SMTP id l6mr881846lbh.68.1338028187705; Sat, 26 May 2012 03:29:47 -0700 (PDT) Received: by 10.152.24.131 with HTTP; Sat, 26 May 2012 03:29:47 -0700 (PDT) Received: by 10.152.24.131 with HTTP; Sat, 26 May 2012 03:29:47 -0700 (PDT) In-Reply-To: <201205252012.07799.lumiwa@gmail.com> References: <201205252012.07799.lumiwa@gmail.com> Date: Sat, 26 May 2012 12:29:47 +0200 Message-ID: From: =?ISO-8859-1?Q?Fernando_Apestegu=EDa?= To: ajtiM Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: kde-list freebsd , freebsd-questions@freebsd.org Subject: Re: why I am upset X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 10:29:49 -0000 El 26/05/2012 03:13, "ajtiM" escribi=F3: > > Why I am upset but not just me? > > I am running KDE 4.8 from January on my Linux computer. Now is almost June and > we got KDE 4.8 on FreeBSD too. 5 months testing and it works? No. The modern > OS for the desktop computer doesn;t works. O.K. OS works but installatoon of 5 > months testing of KDE doesn;t. > And help? Read /usr/ports/UOPDATING!! I red before I start inastallation but I > am not sure if helpers did! Thank you for wasting my time. You're welcome :) Just serious now. I see you are frustrated, but it woul help if you gave the list a hint of what the actual problem is. You complained a lot, but you didn't specify the problem! > > Mitja > -------- > http://jpgmag.com/people/lumiwa > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Sat May 26 11:02:29 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F878106566B for ; Sat, 26 May 2012 11:02:29 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 0965A8FC08 for ; Sat, 26 May 2012 11:02:29 +0000 (UTC) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id B3C335094E for ; Sat, 26 May 2012 13:01:22 +0200 (CEST) Received: from [10.10.10.41] (zeus.webrz.net [10.10.10.41]) by webrz.xs4all.nl (Postfix) with ESMTPA id 7528550905 for ; Sat, 26 May 2012 13:01:22 +0200 (CEST) Message-ID: <4FC0B834.1020604@webrz.net> Date: Sat, 26 May 2012 13:02:12 +0200 From: Jos Chrispijn User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: Subject: NewSysLog | Crontab X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 11:02:29 -0000 Dear list, I have this issue with bzip2 and the generation of backup logfiles. This is the error I get: --- cut --- bzip2: I/O or other error, bailing out. Possible reason follows. bzip2: No such file or directory Input file = /var/log/all.log.0, output file = /var/log/all.log.0.bz2 newsyslog: `bzip2 -f /var/log/all.log.0' terminated with a non-zero status (1) bzip2: Can't open input file /var/log/maillog.0: No such file or directory. newsyslog: `bzip2 -f /var/log/maillog.0' terminated with a non-zero status (1) --- cut --- Can you tell me what goes wrong here and how to solve this? thanks in advance, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Sat May 26 11:03:08 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DFDF106566C for ; Sat, 26 May 2012 11:03:08 +0000 (UTC) (envelope-from kernel@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 49A0A8FC1B for ; Sat, 26 May 2012 11:03:08 +0000 (UTC) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 5A6AC5094E for ; Sat, 26 May 2012 13:02:08 +0200 (CEST) Received: from [10.10.10.41] (zeus.webrz.net [10.10.10.41]) by webrz.xs4all.nl (Postfix) with ESMTPA id 0886250905 for ; Sat, 26 May 2012 13:02:08 +0200 (CEST) Message-ID: <4FC0B862.80306@webrz.net> Date: Sat, 26 May 2012 13:02:58 +0200 From: Jos Chrispijn User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: Subject: NewSysLog | Crontab X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 11:03:08 -0000 Dear list, I have this issue with bzip2 and the generation of backup logfiles. This is the error I get: --- cut --- bzip2: I/O or other error, bailing out. Possible reason follows. bzip2: No such file or directory Input file = /var/log/all.log.0, output file = /var/log/all.log.0.bz2 newsyslog: `bzip2 -f /var/log/all.log.0' terminated with a non-zero status (1) bzip2: Can't open input file /var/log/maillog.0: No such file or directory. newsyslog: `bzip2 -f /var/log/maillog.0' terminated with a non-zero status (1) --- cut --- Can you tell me what goes wrong here and how to solve this? thanks in advance, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Sat May 26 11:44:36 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6660F106564A for ; Sat, 26 May 2012 11:44:36 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id C57998FC17 for ; Sat, 26 May 2012 11:44:35 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q4QBiUmj065467 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Sat, 26 May 2012 12:44:30 +0100 (BST) (envelope-from matthew@FreeBSD.org) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q4QBiUmj065467 Authentication-Results: smtp.infracaninophile.co.uk/q4QBiUmj065467; dkim=none (no signature); dkim-adsp=none Message-ID: <4FC0C217.6050600@FreeBSD.org> Date: Sat, 26 May 2012 12:44:23 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org References: <4FC0B862.80306@webrz.net> In-Reply-To: <4FC0B862.80306@webrz.net> X-Enigmail-Version: 1.4.1 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig9CAFABCE2921DD28153C7475" X-Virus-Scanned: clamav-milter 0.97.4 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Cc: Subject: Re: NewSysLog | Crontab X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 11:44:36 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig9CAFABCE2921DD28153C7475 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 26/05/2012 12:02, Jos Chrispijn wrote: > I have this issue with bzip2 and the generation of backup logfiles. > This is the error I get: >=20 > --- cut --- >=20 > bzip2: I/O or other error, bailing out. Possible reason follows. > bzip2: No such file or directory > Input file =3D /var/log/all.log.0, output file =3D /var/log/all.log= =2E0.bz2 > newsyslog: `bzip2 -f /var/log/all.log.0' terminated with a non-zero > status (1) > bzip2: Can't open input file /var/log/maillog.0: No such file or direct= ory. > newsyslog: `bzip2 -f /var/log/maillog.0' terminated with a non-zero > status (1) >=20 > --- cut --- >=20 > Can you tell me what goes wrong here and how to solve this? The underlying problem seems to be problems writing to /var/log. Is the partition (/var probably) full up or out of inodes? df -ih /var/log Also, look at the console to see if anything has been logged there. If it isn't running out of space, then check that the directory hasn't got weird flags settings: ls -laoR /var/log Having something like noschg set on the directory would cause the observed symptoms, but I am at a loss to understand how on earth anything like that could come about. There are a couple of other things it might be, but it's quite unlikely you wouldn't get crashes, coredumps and other signs of the end-times should any of those be the case. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --------------enig9CAFABCE2921DD28153C7475 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.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk/Awh4ACgkQ8Mjk52CukIx9cwCgkfuZqHwub88Aa8gi+ilqGUhf +w4An2PzByzxFpSGBbSigHPloKmcIhsq =IgL5 -----END PGP SIGNATURE----- --------------enig9CAFABCE2921DD28153C7475-- From owner-freebsd-questions@FreeBSD.ORG Sat May 26 11:54:03 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A2FE106566B for ; Sat, 26 May 2012 11:54:03 +0000 (UTC) (envelope-from mailinglists@martinlaabs.de) Received: from relay02.alfahosting-server.de (relay02.alfahosting-server.de [80.86.191.77]) by mx1.freebsd.org (Postfix) with ESMTP id 53A938FC08 for ; Sat, 26 May 2012 11:54:03 +0000 (UTC) Received: by relay02.alfahosting-server.de (Postfix, from userid 1001) id D9E9D32C0149; Sat, 26 May 2012 13:41:08 +0200 (CEST) X-Spam-DCC: : X-Spam-Level: X-Spam-Status: No, score=0.0 required=7.0 tests=BAYES_50 autolearn=disabled version=3.2.5 Received: from alfa3018.alfahosting-server.de (alfa3018.alfahosting-server.de [109.237.140.30]) by relay02.alfahosting-server.de (Postfix) with ESMTP id 5C4DA32C00A8 for ; Sat, 26 May 2012 13:41:07 +0200 (CEST) Received: from pc.martinlaabs.de (p54B327F8.dip.t-dialin.net [84.179.39.248]) by alfa3018.alfahosting-server.de (Postfix) with ESMTPSA id 2F1D2515D47A for ; Sat, 26 May 2012 13:41:07 +0200 (CEST) Message-ID: <4FC0C151.2050808@martinlaabs.de> Date: Sat, 26 May 2012 13:41:05 +0200 From: Martin Laabs User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.3) Gecko/20120329 Thunderbird/10.0.3 MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Status: No X-Virus-Checker-Version: clamassassin 1.2.4 with ClamAV 0.97.3/14966/Sat May 26 00:26:52 2012 Cc: Subject: kldxref: /boot/kernel/kernel: too many sections X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 11:54:03 -0000 Hello, while updating my system I got the following error message while make installworld: ===> syscons/green (install) install -o root -g wheel -m 555 green_saver.ko /boot/kernel install -o root -g wheel -m 555 green_saver.ko.symbols /boot/kernel kldxref /boot/kernel kldxref: /boot/kernel/kernel: too many sections kldxref: error while reading /boot/kernel/kernel: Bad address su:/usr/src$ I tried to remove the /usr/obj and remake the kernel by make buildkernel again but the error remains. I use 8.2-STABLE with a freshly updated RELENG_8 src. I do not build all kernel modules so I have the following in my make.conf MODULES_OVERRIDE = nfsserver linux linprocfs geom/geom_bde syscons/green However - I don't think this explains the misbehavior of kldxref. Can anybody give me a hint where to search for the bug? Best regards, Martin Laabs From owner-freebsd-questions@FreeBSD.ORG Sat May 26 13:46:31 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83DC7106564A for ; Sat, 26 May 2012 13:46:31 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id E7A078FC17 for ; Sat, 26 May 2012 13:46:30 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4QDkOss070214; Sat, 26 May 2012 15:46:24 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4QDkOJw070211; Sat, 26 May 2012 15:46:24 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sat, 26 May 2012 15:46:24 +0200 (CEST) From: Wojciech Puchar To: Martin Laabs In-Reply-To: <4FC0C151.2050808@martinlaabs.de> Message-ID: References: <4FC0C151.2050808@martinlaabs.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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sat, 26 May 2012 15:46:24 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: kldxref: /boot/kernel/kernel: too many sections X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 13:46:31 -0000 > install -o root -g wheel -m 555 green_saver.ko /boot/kernel > install -o root -g wheel -m 555 green_saver.ko.symbols /boot/kernel > kldxref /boot/kernel > kldxref: /boot/kernel/kernel: too many sections > kldxref: error while reading /boot/kernel/kernel: Bad address > su:/usr/src$ > > I tried to remove the /usr/obj and remake the kernel by make buildkernel > again but the error remains. > I use 8.2-STABLE with a freshly updated RELENG_8 src. > > I do not build all kernel modules so I have the following in my make.conf > MODULES_OVERRIDE = nfsserver linux linprocfs geom/geom_bde syscons/green > is it i386/amd64? strange didn't you set -j option to make when doing install? From owner-freebsd-questions@FreeBSD.ORG Sat May 26 13:48:10 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5AE67106566C for ; Sat, 26 May 2012 13:48:10 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id BD9D78FC16 for ; Sat, 26 May 2012 13:48:09 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4QDmAHU070255; Sat, 26 May 2012 15:48:10 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4QDm9w8070252; Sat, 26 May 2012 15:48:10 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sat, 26 May 2012 15:48:09 +0200 (CEST) From: Wojciech Puchar To: Henri Reinikainen 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 passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sat, 26 May 2012 15:48:10 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: ports tree X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 13:48:10 -0000 > Would it be stupid idea to have publicly available, mountable (nfs) > partition, with full port tree(s)? I think it would be good for > systems with low storage space. I know hd space is cheap, but I run > over and over to this problem. read only or read write? public read write isn't smart. > I don't know how easily it could be done, but some kind of session > based temporary write permissions would be good too. To be able to > make && make install directly from mounted partition. man mount_unionfs > I don't think very many people would need to have local personal copy > of ports tree then. > > So, is this just stupid? no. From owner-freebsd-questions@FreeBSD.ORG Sat May 26 14:03:14 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 391BE1065673 for ; Sat, 26 May 2012 14:03:14 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id B43138FC17 for ; Sat, 26 May 2012 14:02:50 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SYHLH-0003SC-LO for freebsd-questions@freebsd.org; Sat, 26 May 2012 15:47:39 +0200 Received: from pool-173-79-82-23.washdc.fios.verizon.net ([173.79.82.23]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 26 May 2012 15:47:39 +0200 Received: from nightrecon by pool-173-79-82-23.washdc.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 26 May 2012 15:47:39 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Sat, 26 May 2012 09:47:37 -0400 Lines: 13 Message-ID: References: <201205252012.07799.lumiwa@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8Bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: pool-173-79-82-23.washdc.fios.verizon.net Subject: Re: why I am upset X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@hotmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 14:03:14 -0000 Fernando Apesteguía wrote: [snip] > > Just serious now. I see you are frustrated, but it woul help if you gave > the list a hint of what the actual problem is. You complained a lot, but > you didn't specify the problem! He didn't because it is so extremely obvious a case of pure PEBKAC. From owner-freebsd-questions@FreeBSD.ORG Sat May 26 14:16:02 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE2F11065670 for ; Sat, 26 May 2012 14:16:02 +0000 (UTC) (envelope-from mailinglists@martinlaabs.de) Received: from relay03.alfahosting-server.de (relay03.alfahosting-server.de [80.86.191.79]) by mx1.freebsd.org (Postfix) with ESMTP id 74CD18FC14 for ; Sat, 26 May 2012 14:16:02 +0000 (UTC) Received: by relay03.alfahosting-server.de (Postfix, from userid 1001) id A3DAC32C08DF; Sat, 26 May 2012 16:04:44 +0200 (CEST) X-Spam-DCC: : X-Spam-Level: X-Spam-Status: No, score=0.0 required=7.0 tests=BAYES_50 autolearn=disabled version=3.2.5 Received: from alfa3018.alfahosting-server.de (alfa3018.alfahosting-server.de [109.237.140.30]) by relay03.alfahosting-server.de (Postfix) with ESMTP id 7A50632C08E5 for ; Sat, 26 May 2012 16:04:42 +0200 (CEST) Received: from pc.martinlaabs.de (p54B327F8.dip.t-dialin.net [84.179.39.248]) by alfa3018.alfahosting-server.de (Postfix) with ESMTPSA id 385C7515C2AF for ; Sat, 26 May 2012 16:04:42 +0200 (CEST) Message-ID: <4FC0E2F8.1090102@martinlaabs.de> Date: Sat, 26 May 2012 16:04:40 +0200 From: Martin Laabs User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.3) Gecko/20120329 Thunderbird/10.0.3 MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org References: <4FC0C151.2050808@martinlaabs.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Status: No X-Virus-Checker-Version: clamassassin 1.2.4 with ClamAV 0.97.3/14966/Sat May 26 00:26:52 2012 Cc: Subject: Re: kldxref: /boot/kernel/kernel: too many sections X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 14:16:02 -0000 Hi, On 05/26/12 15:46, Wojciech Puchar wrote: [...] >> I do not build all kernel modules so I have the following in my make.conf >> MODULES_OVERRIDE = nfsserver linux linprocfs geom/geom_bde syscons/green >> > is it i386/amd64? strange > didn't you set -j option to make when doing install? Sorry - it is an i386 kernel and I didn't either use -j for make nor I have such an entry in my make.conf. The kernel configuration I used also worked for at least two years (the time, the machine is up) Best regards, Martin From owner-freebsd-questions@FreeBSD.ORG Sat May 26 14:27:11 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EE8CB106564A for ; Sat, 26 May 2012 14:27:11 +0000 (UTC) (envelope-from henrixd@gmail.com) Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by mx1.freebsd.org (Postfix) with ESMTP id 746D18FC15 for ; Sat, 26 May 2012 14:27:11 +0000 (UTC) Received: by wibhj8 with SMTP id hj8so310928wib.13 for ; Sat, 26 May 2012 07:27:10 -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=acw9BruGMoF8hhkMEago2iQOtlbVDMZ5mBINUvEkIG8=; b=tckZsMCrumqfldxksJ2amV99mIVe0NX8COcf0u4QZIdGFwqb6SE8LMJ/wIcjPnChXT Paoqv5tH2vqRwBh5ZOsI26NeJgJ8r6LNUrRTeE2wLvLpDxKQof4zjF3Zl/eVxAhPGNBW goenWrbbECadHTwFvYpvc6m+ojD+cuFVcVp+bC0GscTwJyOb6+oLKVPhv9SbMVqJtp2Z TT+nM1XM2Oe9vk2JLGoVQundH9gXCxXga/9GPCCjE1v5e6LlAamLit3MoDkkN3avSHxC CHYnmseeDDVSf0MaaxymBNSXUsrTWKLCKrCYZOfUOmpC9jzZELJ/WTJYyZeYzgF0v+wA M54Q== MIME-Version: 1.0 Received: by 10.180.104.231 with SMTP id gh7mr3872094wib.10.1338042430361; Sat, 26 May 2012 07:27:10 -0700 (PDT) Received: by 10.227.57.85 with HTTP; Sat, 26 May 2012 07:27:10 -0700 (PDT) In-Reply-To: References: Date: Sat, 26 May 2012 17:27:10 +0300 Message-ID: From: Henri Reinikainen To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: wojtek@wojtek.tensor.gdynia.pl Subject: Re: ports tree X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 14:27:12 -0000 On Sat, May 26, 2012 at 4:48 PM, Wojciech Puchar < wojtek@wojtek.tensor.gdynia.pl> wrote: > Would it be stupid idea to have publicly available, mountable (nfs) >> partition, with full port tree(s)? I think it would be good for >> systems with low storage space. I know hd space is cheap, but I run >> over and over to this problem. >> > > read only or read write? > public read write isn't smart. > I was thinking unionfs kind of temporary layer which keeps physical content separated. Only write changes to memory file system or so.. session end will throw everything into bits heaven (/dev/null). :) > > I don't know how easily it could be done, but some kind of session >> based temporary write permissions would be good too. To be able to >> make && make install directly from mounted partition. >> > > man mount_unionfs > > This was good to know. > > > I don't think very many people would need to have local personal copy >> of ports tree then. >> >> So, is this just stupid? >> > > no. > Is there such environment variables that can be pointed to writeable partition? That sources download and compiles on different partition. Then there is no bandwidth problem since only Makefile kind of files get readed from the server. Well, maybe this idea wont fly. I'm going to buy new hd anyways. :) Thanks anyways! From owner-freebsd-questions@FreeBSD.ORG Sat May 26 14:36:21 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B83C106566C for ; Sat, 26 May 2012 14:36:21 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [89.206.35.99]) by mx1.freebsd.org (Postfix) with ESMTP id F03B78FC08 for ; Sat, 26 May 2012 14:36:20 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5) with ESMTP id q4QEaLiZ070555; Sat, 26 May 2012 16:36:21 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.5/8.14.5/Submit) with ESMTP id q4QEaLQg070552; Sat, 26 May 2012 16:36:21 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sat, 26 May 2012 16:36:21 +0200 (CEST) From: Wojciech Puchar To: Henri Reinikainen 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 Content-ID: X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sat, 26 May 2012 16:36:21 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: ports tree X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 14:36:21 -0000 > > > This was good to know. as others told there is smarter way to do this set WRKDIRPREFIX to somewhere else. > no. > > > Is there such environment variables that can be pointed to writeable partition? That sources download and compiles on different > partition. Then there is no bandwidth problem since only Makefile kind of files get readed from the server. WRKDIRPREFIX solves work directory. if you properly regulate access rights and YOU administer that machines, i would do NFS mounted read-write /usr/ports/distfiles. From owner-freebsd-questions@FreeBSD.ORG Sat May 26 15:35:08 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F15FA106564A for ; Sat, 26 May 2012 15:35:08 +0000 (UTC) (envelope-from mailinglists@martinlaabs.de) Received: from relay02.alfahosting-server.de (relay02.alfahosting-server.de [80.86.191.77]) by mx1.freebsd.org (Postfix) with ESMTP id 9E43F8FC08 for ; Sat, 26 May 2012 15:35:08 +0000 (UTC) Received: by relay02.alfahosting-server.de (Postfix, from userid 1001) id D2B9932C0078; Sat, 26 May 2012 17:35:06 +0200 (CEST) X-Spam-DCC: : X-Spam-Level: X-Spam-Status: No, score=0.0 required=7.0 tests=BAYES_50 autolearn=disabled version=3.2.5 Received: from alfa3018.alfahosting-server.de (alfa3018.alfahosting-server.de [109.237.140.30]) by relay02.alfahosting-server.de (Postfix) with ESMTP id E1EF432C0167; Sat, 26 May 2012 17:35:04 +0200 (CEST) Received: from pc.martinlaabs.de (p54B327F8.dip.t-dialin.net [84.179.39.248]) by alfa3018.alfahosting-server.de (Postfix) with ESMTPSA id 9802A515C2AF; Sat, 26 May 2012 17:35:04 +0200 (CEST) Message-ID: <4FC0F826.9090107@martinlaabs.de> Date: Sat, 26 May 2012 17:35:02 +0200 From: Martin Laabs User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.3) Gecko/20120329 Thunderbird/10.0.3 MIME-Version: 1.0 To: Wojciech Puchar References: <4FC0C151.2050808@martinlaabs.de> <4FC0E2CE.5080907@martinlaabs.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Status: No X-Virus-Checker-Version: clamassassin 1.2.4 with ClamAV 0.97.3/14966/Sat May 26 00:26:52 2012 Cc: freebsd-questions@FreeBSD.org Subject: Re: kldxref: /boot/kernel/kernel: too many sections X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 15:35:09 -0000 Hello, On 05/26/12 16:33, Wojciech Puchar wrote: > how do you compile kernel cd /usr/src/sys/i386/conf ee SERVER_KERNEL cd /usr/src make buildkernel make installkernel with the following line in make.conf: KERNCONF=SERVER_KERNEL > something much get f...d up. what version of FreeBSD is it. i can try it > myself FreeBSD server.martinlaabs.de 8.2-STABLE FreeBSD 8.2-STABLE #3: Sat Dec 24 01:21:34 CET 2011 martin@server.martinlaabs.de:/usr/obj/usr/src/sys/SERVER_KERNEL i386 You can find my kernel config at http://www.martinlaabs.de/tmp/SERVER_KERNEL Thank you, Martin Laabs From owner-freebsd-questions@FreeBSD.ORG Sat May 26 17:41:53 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8543D10657AA; Sat, 26 May 2012 17:41:53 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 39A028FC08; Sat, 26 May 2012 17:41:53 +0000 (UTC) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 120315094E; Sat, 26 May 2012 19:40:53 +0200 (CEST) Received: from [10.10.10.41] (zeus.webrz.net [10.10.10.41]) by webrz.xs4all.nl (Postfix) with ESMTPA id D349A50905; Sat, 26 May 2012 19:40:51 +0200 (CEST) Message-ID: <4FC115D5.7000502@webrz.net> Date: Sat, 26 May 2012 19:41:41 +0200 From: Jos Chrispijn User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Matthew Seaman References: <4FC0B862.80306@webrz.net> <4FC0C217.6050600@FreeBSD.org> In-Reply-To: <4FC0C217.6050600@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: freebsd-questions@FreeBSD.org Subject: Re: NewSysLog | Crontab X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 17:41:53 -0000 Hi Matthew, Thanks, will investigate this... best regards, Jos Matthew Seaman: > On 26/05/2012 12:02, Jos Chrispijn wrote: >> I have this issue with bzip2 and the generation of backup logfiles. >> This is the error I get: >> >> --- cut --- >> >> bzip2: I/O or other error, bailing out. Possible reason follows. >> bzip2: No such file or directory >> Input file = /var/log/all.log.0, output file = /var/log/all.log.0.bz2 >> newsyslog: `bzip2 -f /var/log/all.log.0' terminated with a non-zero >> status (1) >> bzip2: Can't open input file /var/log/maillog.0: No such file or directory. >> newsyslog: `bzip2 -f /var/log/maillog.0' terminated with a non-zero >> status (1) >> >> --- cut --- >> >> Can you tell me what goes wrong here and how to solve this? > The underlying problem seems to be problems writing to /var/log. > Is the partition (/var probably) full up or out of inodes? > > df -ih /var/log > > Also, look at the console to see if anything has been logged there. > > If it isn't running out of space, then check that the directory hasn't > got weird flags settings: > > ls -laoR /var/log > > Having something like noschg set on the directory would cause the > observed symptoms, but I am at a loss to understand how on earth > anything like that could come about. > > There are a couple of other things it might be, but it's quite unlikely > you wouldn't get crashes, coredumps and other signs of the end-times > should any of those be the case. > > Cheers, > > Matthew > From owner-freebsd-questions@FreeBSD.ORG Sat May 26 17:54:43 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C2B11065674 for ; Sat, 26 May 2012 17:54:43 +0000 (UTC) (envelope-from cn2i-solaire@e-mailink.fr) Received: from smtp.e-mailink.fr (smtp.e-mailink.fr [82.97.20.66]) by mx1.freebsd.org (Postfix) with ESMTP id 2CC818FC1B for ; Sat, 26 May 2012 17:54:43 +0000 (UTC) Received: from smtp.e-mailink.fr (localhost [127.0.0.1]) by smtp.e-mailink.fr (Postfix) with ESMTP id E91941F6811 for ; Sat, 26 May 2012 19:33:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=e-mailink.fr; h= mime-version:content-type:content-transfer-encoding:date:to:from :reply-to:subject:message-id; s=smtp1; bh=6TpByxdmMlYSjQF3iNdz8k I2ry8=; b=fPs1hx5I/7JPJt2ZsrtXlWuz0a+VoQqOTx2uYdZNpjlg5mqavtxLTk 7gp6yiGviDYN4jQQnisWohRLszFERkaswadS9I+FMM2340soDknMjQHI6p1suEFT MNljMrcdj4+fwXSLetpDkq5fMRKgOnIpag3KxqQMhnLk8XVKiQvyg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=e-mailink.fr; h=mime-version :content-type:content-transfer-encoding:date:to:from:reply-to :subject:message-id; q=dns; s=smtp1; b=qWA0avRbFq8SqCyw9mjk+v/uo Ee4y7moqApaG7KhfifmNkrFfwIz74/ySFhepn9zv8OVGN28xGlFRbxxeX4GBR6pB aNuQpZv/qJGhtPA2Tpc750C0RMUngWrtt/Ll1j27w7eogXscAjWL7CT//hFe02mW ZAUXS2ruCf2tT1RIXM= Received: from [192.168.1.16] (AToulouse-754-1-17-120.w90-55.abo.wanadoo.fr [90.55.176.120]) by smtp.e-mailink.fr (Postfix) with ESMTPA id 951BC1F63C0 for ; Sat, 26 May 2012 19:33:38 +0200 (CEST) Content-Transfer-Encoding: quoted-printable Date: Sat, 26 May 2012 19:54:42 +0200 To: freebsd-questions@freebsd.org From: CN2i SOLAIRE 9% Rendement Sud FRANCE X-Emailink: Ref=Elk-5088121-23080 X-Mailer: eMailink 4 Message-Id: <20120526173338.951BC1F63C0@smtp.e-mailink.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: INVESTISSEMENT SOLAIRE 9% Securite EDF et REVENTE a 6 ans MP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cn2i@live.fr List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 17:54:43 -0000 Pour afficher correctem= ent la page [1]Cliquez-ici Pour = Devenir Partenaire [2]Cliq= uez-ici [3]3D"PV4_NEWSLETTER_SOLAIRE_PV4_CAVAILLON_CN2i_DEVELOPPEMENT_MARS_20= Pour Dev= enir Partenaire [4]Cliq= uez-ici Michael FRAYSSE =AB&n= bsp;Direction =BB CN2i DEVELOPPEMENT Site Web : [5]www.cn2i.fr &n= bsp; &nb= sp; Skype :=A0michael.frayss= e Accueil : 05 . 61 . 214 . 942 = ; Mobile de Permanence : 06 . 60 . 168 . 528 Fax =AB Back Office =BB : = ; 08 . 21 . 896 . 859 _____________________________________________________________________ = ______ =A9CN2i D=E9veloppement =AB Promoteur National en Investissement Photovolta=EFque =BB =AB Plate-forme de Commercialisation Centrales Solaires Photovolta=EFq= ues =BB Rcs : 502 083 652 .NAF : 66 19 B Capital Social : 50.000 =80 = &nb= sp; = &nb= sp; Si=E8ge Social : 10 Ter Avenue des PYRENEES 31120 LACROIX FALGARDE ______________________________________________________________________ _____= Michael Tv Piano YouTube : [6]http://www.youtube.com/user/MichaelMusicPiano/videos Michael Tv Piano Dailymotion : [7]http://www.dailymotion.com/Michael_Fraysse?fbc=3D503 [8]DESINSCRIPTION : CLIQUEZ-ICI = References 1. 3D"http://www.cn2i.fr/NEWSLETTER/PV4_NEWSLETTER_SOLAIRE_PV4_CAVAILL= 2. 3D"http://www.cn2i.fr/devenir_partenaire.php" 3. 3D"http://www.cn2i.fr/Projet-d-Investissement-Centrale-Photovoltaiq= 4. 3D"http://www.cn2i.fr/devenir_partenaire.php" 5. 3D"http://www.cn2i.fr"/ 6. 3D"http://www.youtube.com/user/MichaelMusicPiano/videos" 7. 3D"http://www.dailymotion.com/Michael_Fraysse?fbc=3D503" 8. 3D"mailto:desabo-solaire@e-mailink.fr?Subject=3DRef_Desabo=3DElk-50= From owner-freebsd-questions@FreeBSD.ORG Sat May 26 18:03:55 2012 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5FABD106566C for ; Sat, 26 May 2012 18:03:55 +0000 (UTC) (envelope-from cn2i-solaire@e-mailink.fr) Received: from smtp.e-mailink.fr (smtp.e-mailink.fr [82.97.20.66]) by mx1.freebsd.org (Postfix) with ESMTP id E3C418FC0A for ; Sat, 26 May 2012 18:03:54 +0000 (UTC) Received: from smtp.e-mailink.fr (localhost [127.0.0.1]) by smtp.e-mailink.fr (Postfix) with ESMTP id 57A211F6771 for ; Sat, 26 May 2012 19:33:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=e-mailink.fr; h= mime-version:content-type:content-transfer-encoding:date:to:from :reply-to:subject:message-id; s=smtp1; bh=Bf4C6PBnc0NrUTz7wFRqHx 6aD+k=; b=OF7pT0FSmOShODY6Mbz8VwBV2fl2mvzSloFUy56e2o+A3tv8ycS1O+ xlGsJ8JzmgK8HU1z+JrRlzJwz0WFkEn3Xv3QtL5gVwtMWdbanl4kPimfcVEy1Kvg KIkrsLV6FDHoAGh6A8RSir/rnkQ40ImQ72KOggnbhaOH0+6KMv/io= DomainKey-Signature: a=rsa-sha1; c=nofws; d=e-mailink.fr; h=mime-version :content-type:content-transfer-encoding:date:to:from:reply-to :subject:message-id; q=dns; s=smtp1; b=wnII6XB9ZijoSET4htpZR4lHw HF5KmLOaTTDWZmUCP54hGPz3cP/4MmBwX8s/EYKXmQmHGLP0lDoQBGccgdwhR/8m aXc8YHXEbGRvdZnYQq4j9++i4K2lhHlQ9DHWp8z09zw1ZS6GOuzSdeWwsfSifeBf pq2KdWdZSpZP3xE/1A= Received: from [192.168.1.16] (AToulouse-754-1-17-120.w90-55.abo.wanadoo.fr [90.55.176.120]) by smtp.e-mailink.fr (Postfix) with ESMTPA id 09EED1F63C0 for ; Sat, 26 May 2012 19:33:01 +0200 (CEST) Content-Transfer-Encoding: quoted-printable Date: Sat, 26 May 2012 19:54:05 +0200 To: questions@freebsd.org From: CN2i SOLAIRE 9% Rendement Sud FRANCE X-Emailink: Ref=Elk-5088147-16110 X-Mailer: eMailink 4 Message-Id: <20120526173302.09EED1F63C0@smtp.e-mailink.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: INVESTISSEMENT SOLAIRE 9% Securite EDF et REVENTE a 6 ans MP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cn2i@live.fr List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 18:03:55 -0000 Pour afficher correctem= ent la page [1]Cliquez-ici Pour = Devenir Partenaire [2]Cliq= uez-ici [3]3D"PV4_NEWSLETTER_SOLAIRE_PV4_CAVAILLON_CN2i_DEVELOPPEMENT_MARS_20= Pour Dev= enir Partenaire [4]Cliq= uez-ici Michael FRAYSSE =AB&n= bsp;Direction =BB CN2i DEVELOPPEMENT Site Web : [5]www.cn2i.fr &n= bsp; &nb= sp; Skype :=A0michael.frayss= e Accueil : 05 . 61 . 214 . 942 = ; Mobile de Permanence : 06 . 60 . 168 . 528 Fax =AB Back Office =BB : = ; 08 . 21 . 896 . 859 _____________________________________________________________________ = ______ =A9CN2i D=E9veloppement =AB Promoteur National en Investissement Photovolta=EFque =BB =AB Plate-forme de Commercialisation Centrales Solaires Photovolta=EFq= ues =BB Rcs : 502 083 652 .NAF : 66 19 B Capital Social : 50.000 =80 = &nb= sp; = &nb= sp; Si=E8ge Social : 10 Ter Avenue des PYRENEES 31120 LACROIX FALGARDE ______________________________________________________________________ _____= Michael Tv Piano YouTube : [6]http://www.youtube.com/user/MichaelMusicPiano/videos Michael Tv Piano Dailymotion : [7]http://www.dailymotion.com/Michael_Fraysse?fbc=3D503 [8]DESINSCRIPTION : CLIQUEZ-ICI = References 1. 3D"http://www.cn2i.fr/NEWSLETTER/PV4_NEWSLETTER_SOLAIRE_PV4_CAVAILL= 2. 3D"http://www.cn2i.fr/devenir_partenaire.php" 3. 3D"http://www.cn2i.fr/Projet-d-Investissement-Centrale-Photovoltaiq= 4. 3D"http://www.cn2i.fr/devenir_partenaire.php" 5. 3D"http://www.cn2i.fr"/ 6. 3D"http://www.youtube.com/user/MichaelMusicPiano/videos" 7. 3D"http://www.dailymotion.com/Michael_Fraysse?fbc=3D503" 8. 3D"mailto:desabo-solaire@e-mailink.fr?Subject=3DRef_Desabo=3DElk-50= From owner-freebsd-questions@FreeBSD.ORG Sat May 26 20:03:28 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C9EF106564A for ; Sat, 26 May 2012 20:03:28 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 0182D8FC0A for ; Sat, 26 May 2012 20:03:27 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4QK3QSK026397 for ; Sat, 26 May 2012 14:03:26 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FC1370E.8090302@dreamchaser.org> Date: Sat, 26 May 2012 14:03:26 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Sat, 26 May 2012 14:03:26 -0600 (MDT) Subject: [ports] why no libXXX after make install of libXXX? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 20:03:28 -0000 I'm trying to install audacious, which depends on libmowgli. The port fails to build because of a missing library. Shouldn't the build of a library result in the library being placed in /usr/local/lib? cd multimedia/audacious make -v install results in: ... ===> libmcs-0.7.2_1 depends on shared library: mowgli.2 - not found ===> Verifying install for mowgli.2 in /usr/ports/devel/libmowgli ===> License check disabled, port has not defined LICENSE => libmowgli-1.0.0.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch http://distfiles.atheme.org/libmowgli-1.0.0.tar.bz2 libmowgli-1.0.0.tar.bz2 100% of 103 kB 128 kBps ===> Extracting for libmowgli-1.0.0 => SHA256 Checksum OK for libmowgli-1.0.0.tar.bz2. ===> Patching for libmowgli-1.0.0 ... ===> Building for libmowgli-1.0.0 ... ===> Installing for libmowgli-1.0.0 ===> Generating temporary packing list ===> Checking if devel/libmowgli already installed .., ===> Running ldconfig /sbin/ldconfig -m /usr/local/lib ===> Registering installation for libmowgli-1.0.0 ===> Returning to build of libmcs-0.7.2_1 Error: shared library "mowgli.2" does not exist Background: I had originally installed some packages, including gnome. I thought I had removed all of them before building ports. When the above error first occurred, there was a libmowgli.so libmowgli.so.2 in /usr/local/lib. In trying to fix things, a make deinstall removed them, and no subsequent make install has put them back. I'm guessing they were left-over from a package install. From owner-freebsd-questions@FreeBSD.ORG Sat May 26 20:51:51 2012 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC3F5106564A for ; Sat, 26 May 2012 20:51:51 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 4B25F8FC0A for ; Sat, 26 May 2012 20:51:51 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q4QKpkAu073938 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sat, 26 May 2012 21:51:47 +0100 (BST) (envelope-from matthew@FreeBSD.org) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q4QKpkAu073938 Authentication-Results: smtp.infracaninophile.co.uk/q4QKpkAu073938; dkim=none (no signature); dkim-adsp=none Message-ID: <4FC14259.4020904@FreeBSD.org> Date: Sat, 26 May 2012 21:51:37 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Jos Chrispijn References: <4FC0B862.80306@webrz.net> <4FC0C217.6050600@FreeBSD.org> <4FC115D5.7000502@webrz.net> In-Reply-To: <4FC115D5.7000502@webrz.net> X-Enigmail-Version: 1.4.1 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig317C34A597EEA984CD1F471E" X-Virus-Scanned: clamav-milter 0.97.4 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Cc: freebsd-questions@FreeBSD.org Subject: Re: NewSysLog | Crontab X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 20:51:52 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig317C34A597EEA984CD1F471E Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 26/05/2012 18:41, Jos Chrispijn wrote: > Thanks, will investigate this... Keeping the list in the loop... > % df -ih /var/log >=20 > Filesystem Size Used Avail Capacity iused ifree %iused Mounted on > /dev/ada0p2 453G 5.8G 411G 1% 468k 29M 2% / One big partition for the whole OS? > % ls -laoR /var/log >=20 > total 448 > drwxr-xr-x 5 root wheel - 1024 May 26 00:00 . > drwxr-xr-x 23 root wheel - 512 May 17 19:57 .. > drwx------ 2 root wheel - 512 May 22 23:30 .spamassassin > -rw-r--r-- 1 root wheel - 1 May 23 16:04 Minimalist.log > -rw------- 1 root wheel - 60 May 26 00:00 all.log > -rw------- 1 root wheel - 14 May 26 00:00 all.log.0.bz2 > -rw------- 1 root wheel - 14 May 25 00:00 all.log.2.bz2 > -rw------- 1 root wheel - 14 May 24 00:00 all.log.4.bz2 > -rw------- 1 root wheel - 14 May 23 00:00 all.log.6.bz2 Oooh, fun. None of the obvious ideas were right, and this is looking really quite mysterious. You've only got even numbered versions of all.log backups, but they are spaced 1 day apart, which is the usual recycle timing for all.log. However, there's not much in your all.log at all. It should get at least a message every 5 minutes assuming it's configured. Did you turn on the all.log in /etc/syslogd.conf at all? Or do those 60 bytes in all.log just say something very much like this: # cat /var/log/all.log May 26 00:00:00 lucid-nonsense newsyslog[23677]: logfile turned over (obviously, with your hostname instead and a different PID for newsyslog, and maybe a different date.) In which case, you're not actually logging anything to all.log at all, and you could just make the whole thing go away by: # cd /var/log # rm all.log* But that's no fun at all, and doesn't go anywhere towards explaining why you only get even numbered backups. Can we check a few things please? * Have you modified /etc/newsyslog.conf at all? Or /etc/syslogd.conf ? What does this command return for you? % grep all.log /etc/syslog.conf /etc/newsyslog.conf * What happens when you run the following sequence of commands: # cd /var/log # echo test > foo # bzip2 -f foo || echo $? # ls -la foo* (using script(1) to capture a console transcript would be a good thing here.) Assuming you end up with a foo.bz2 file 45 bytes long, then you should also be able to do this: # bzcat foo.bz2=09 test * What version of FreeBSD is this, how did you install it and have you applied any patches or made any unusual configuration choices or modifications to the system? Is there anything out of the ordinary with your hardware or the setup on the machine that you think might be relevant? Does it have any history of problems? Did anything about the system change recently? Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --------------enig317C34A597EEA984CD1F471E 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.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk/BQmEACgkQ8Mjk52CukIzNNgCfSgtacZmh/RfpniemAX+KufOg LpoAoId5YMklmHERevEBVYmQcdRDbeet =osQV -----END PGP SIGNATURE----- --------------enig317C34A597EEA984CD1F471E-- From owner-freebsd-questions@FreeBSD.ORG Sat May 26 21:40:53 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8262106566C for ; Sat, 26 May 2012 21:40:53 +0000 (UTC) (envelope-from lumiwa@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 974898FC0A for ; Sat, 26 May 2012 21:40:53 +0000 (UTC) Received: by obcni5 with SMTP id ni5so4124759obc.13 for ; Sat, 26 May 2012 14:40:53 -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=YGfWDKG95+JX2HY8bNNyy3ncBxERuorWEkoUHWzHh9A=; b=aT+Ys5B7sU0L2jlEMWO5FQtcw7j+7fuFVR7nFiWEeTLhtTAgYjkYNbDUHDDyydX7Z0 ybt+D/HYhYk0664q5mGS7e50D3d6AaLDE7hgxX0dMuelY/mSuk5qQx5+iqs6bsI7Qoan 6eb/hyCBjqbAc5AXmQE3ygGRH0M3mIYoZuSs9Ivt40x9kAJaSgB2kX5gIbufBGVa7vc2 5qZNX2A5MrLtDoy94Je56ZQNVtrlSEYMG4gPC7Kmo7lm6wowYosu/tjxhALxoCZI0TRF wxcWMcNqufBOEOeLcxkajioTW4hLmhfg9TyPDJ8xgZD2LJUyWxpANU7Iy1yVHzuTUMNp qoxg== MIME-Version: 1.0 Received: by 10.60.172.195 with SMTP id be3mr3355744oec.48.1338068452892; Sat, 26 May 2012 14:40:52 -0700 (PDT) Received: by 10.182.73.104 with HTTP; Sat, 26 May 2012 14:40:52 -0700 (PDT) In-Reply-To: References: <201205252012.07799.lumiwa@gmail.com> Date: Sat, 26 May 2012 16:40:52 -0500 Message-ID: From: Franci Nabalanci To: nightrecon@hotmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: why I am upset X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 21:40:54 -0000 I did use portmaster for KDE 4.8 update and it stopped: The devel/kdebindings4-python port has been deleted: kdebindings ports have been refactored. Update aborted. And I don't know how to save a problem. On Sat, May 26, 2012 at 8:47 AM, Michael Powell wro= te: > Fernando Apestegu=EDa wrote: > > [snip] > > > > Just serious now. I see you are frustrated, but it woul help if you gav= e > > the list a hint of what the actual problem is. You complained a lot, bu= t > > you didn't specify the problem! > > He didn't because it is so extremely obvious a case of pure PEBKAC. > > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sat May 26 22:24:59 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0EF2106566B for ; Sat, 26 May 2012 22:24:59 +0000 (UTC) (envelope-from christer.solskogen@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 775DA8FC0C for ; Sat, 26 May 2012 22:24:59 +0000 (UTC) Received: by obcni5 with SMTP id ni5so4181144obc.13 for ; Sat, 26 May 2012 15:24:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=iXtJd1Us/PDbfr1v0yaOuJx9EhaFII+t+NSNNpTJZRg=; b=MNnGtEmFqCuAnZYDQEOzye6GYmo+tdKlm9K7zUQAduxOFGqVq0djp7pEyebVCAPPC2 C0stMsF0UaHuECuANV2lgYbLhmypj3UWZfujphxAEefOx5nKAIvQNkGCK5pVwD9gqe6L h3nK0ioF67zWtDkGPnix88DzyscJxCXFM/Spl/PaGWcIvulpZj4ijsJ+kcb63msvfKhL yNS9014DQxBx7Fzf0rwuqRSknAyxgWNjPcJKTJ3WSYLmSyp/XdnNByWWPbBVvOexRT8q 7MQRtPpdbppSW70oUoAHiPvkSVtJKwAogZGQ4EvREIOXkiO4GqBI6O5fSS4ffR8X3Cer d34A== Received: by 10.50.76.163 with SMTP id l3mr1626972igw.55.1338071098891; Sat, 26 May 2012 15:24:58 -0700 (PDT) MIME-Version: 1.0 Received: by 10.64.67.233 with HTTP; Sat, 26 May 2012 15:24:38 -0700 (PDT) In-Reply-To: <201205252012.07799.lumiwa@gmail.com> References: <201205252012.07799.lumiwa@gmail.com> From: Christer Solskogen Date: Sun, 27 May 2012 00:24:38 +0200 Message-ID: To: ajtiM Content-Type: text/plain; charset=UTF-8 Cc: kde-list freebsd , freebsd-questions@freebsd.org Subject: Re: why I am upset X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 22:24:59 -0000 On Sat, May 26, 2012 at 3:12 AM, ajtiM wrote: > Why I am upset but not just me? > I have no idea. Please, tell me again how much you paid for this? -- chs, From owner-freebsd-questions@FreeBSD.ORG Sat May 26 22:59:16 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 001BA106564A; Sat, 26 May 2012 22:59:15 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id AE2108FC12; Sat, 26 May 2012 22:59:15 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4QN17U0083826; Sat, 26 May 2012 18:01:07 -0500 (CDT) Date: Sat, 26 May 2012 18:01:07 -0500 (CDT) From: Robert Bonomi Message-Id: <201205262301.q4QN17U0083826@mail.r-bonomi.com> To: jos@webrz.net, matthew@freebsd.org In-Reply-To: <4FC14259.4020904@FreeBSD.org> Cc: freebsd-questions@freebsd.org Subject: Re: NewSysLog | Crontab X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 22:59:16 -0000 > From owner-freebsd-questions@freebsd.org Sat May 26 15:55:21 2012 > Date: Sat, 26 May 2012 21:51:37 +0100 > From: Matthew Seaman > To: Jos Chrispijn > Cc: freebsd-questions@freebsd.org > Subject: Re: NewSysLog | Crontab > > On 26/05/2012 18:41, Jos Chrispijn wrote: > > Thanks, will investigate this... > > Keeping the list in the loop... > > > % df -ih /var/log > > > > Filesystem Size Used Avail Capacity iused ifree %iused Mounted on > > /dev/ada0p2 453G 5.8G 411G 1% 468k 29M 2% / > > One big partition for the whole OS? > > > % ls -laoR /var/log > > > > total 448 > > drwxr-xr-x 5 root wheel - 1024 May 26 00:00 . > > drwxr-xr-x 23 root wheel - 512 May 17 19:57 .. > > drwx------ 2 root wheel - 512 May 22 23:30 .spamassassin > > -rw-r--r-- 1 root wheel - 1 May 23 16:04 Minimalist.log > > -rw------- 1 root wheel - 60 May 26 00:00 all.log > > -rw------- 1 root wheel - 14 May 26 00:00 all.log.0.bz2 > > -rw------- 1 root wheel - 14 May 25 00:00 all.log.2.bz2 > > -rw------- 1 root wheel - 14 May 24 00:00 all.log.4.bz2 > > -rw------- 1 root wheel - 14 May 23 00:00 all.log.6.bz2 > > Oooh, fun. None of the obvious ideas were right, and this is looking > really quite mysterious. You've only got even numbered versions of > all.log backups, but they are spaced 1 day apart, which is the usual > recycle timing for all.log. This is a clear-cut indication of _two_ processes running that rotate the logfiles. The first process to run works, and the second one bitches and moans, and -quits- (with the error shown about not being able to find the file original file to compress) *after* having rened the 1st back-up to the 2nd name. From owner-freebsd-questions@FreeBSD.ORG Sat May 26 23:17:12 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0CC3106564A for ; Sat, 26 May 2012 23:17:12 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 88E168FC08 for ; Sat, 26 May 2012 23:17:12 +0000 (UTC) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [12.32.36.73]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4QNHB2m026924 for ; Sat, 26 May 2012 17:17:11 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FC16477.8090802@dreamchaser.org> Date: Sat, 26 May 2012 17:17:11 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:12.0) Gecko/20120524 Thunderbird/12.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FC1370E.8090302@dreamchaser.org> In-Reply-To: <4FC1370E.8090302@dreamchaser.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Sat, 26 May 2012 17:17:11 -0600 (MDT) Subject: Re: [ports] why no libXXX after make install of libXXX? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 23:17:12 -0000 On 05/26/12 14:03, Gary Aitken wrote: > I'm trying to install audacious, which depends on libmowgli. > The port fails to build because of a missing library. > Shouldn't the build of a library result in the library being placed in /usr/local/lib? I notice that /var/db/pkg/libmowgli-1.0.0/+CONTENTS and similar files for a few other packages shows files which don't exist: @comment PKG_FORMAT_REVISION:1.1 @name libmowgli-1.0.0 @comment ORIGIN:devel/libmowgli @cwd /usr/local ... lib/libmowgli.so lib/libmowgli.so.2 lib/libmowgli.so.2.0.0 I think this is a screwed up situation; there are no libmowgli files in /usr/local/lib What's the best way to recover from it if so? Thanks