From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 00:07:49 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 709A96D1 for ; Sun, 10 Mar 2013 00:07:49 +0000 (UTC) (envelope-from tamino@wolfhut.org) Received: from pendor.wolfhut.org (pendor.wolfhut.org [173.228.91.225]) by mx1.freebsd.org (Postfix) with ESMTP id 5F4611E9 for ; Sun, 10 Mar 2013 00:07:49 +0000 (UTC) Received: from [192.168.42.100] (173-228-91-224.static.sonic.net [173.228.91.224]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by pendor.wolfhut.org (Postfix) with ESMTPSA id 547B3DBB1A; Sat, 9 Mar 2013 16:07:43 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: how to forbid a process to use swap? From: Ben Cottrell In-Reply-To: <201303092355.r29NtRX4015510@mech-cluster241.men.bris.ac.uk> Date: Sat, 9 Mar 2013 16:07:41 -0800 Content-Transfer-Encoding: 7bit Message-Id: <4E64D344-5552-444B-B915-A0773A848379@wolfhut.org> References: <201303092355.r29NtRX4015510@mech-cluster241.men.bris.ac.uk> To: mexas@bristol.ac.uk X-Mailer: Apple Mail (2.1499) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 00:07:49 -0000 On Mar 9, 2013, at 15:55, Anton Shterenlikht wrote: > I run a program that uses large arrays. > I don't want it to use swap, because it's > too slow. I want the program to fail when > there's not enough RAM, rather than using > swap. How to do this? If it were me I would start with mlockall() and work from there... do you have source code to the program in question? You could also play with resource limits, just from the shell (ulimit in sh, limit in csh) -- but that's less of an exact science, since you don't *know* for sure how much memory the process will be able to use before swap starts being used. ~Ben From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 00:18:24 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CBB609DC for ; Sun, 10 Mar 2013 00:18:24 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-ve0-f172.google.com (mail-ve0-f172.google.com [209.85.128.172]) by mx1.freebsd.org (Postfix) with ESMTP id 88D7722F for ; Sun, 10 Mar 2013 00:18:24 +0000 (UTC) Received: by mail-ve0-f172.google.com with SMTP id cz11so2053618veb.3 for ; Sat, 09 Mar 2013 16:18:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=Kt8YEi6RKACkBwaKRSnHBcShCJ8IPJv+sqM9DD21tZs=; b=lABp/ca//dbzUkQFXXWigfhokQNFidFTG/Ex/TxLavu3cM4HTPqgma7vbPigDO1Otf mdy01EZucp1RWfu5IAfhQXozUkjog2Kqn9aH6U+YDE9soT9yLeryv+td62FCHz0eTv+3 MZ0iE8EBlDvtinAH6riar9LwQBV76qwc7S09qOHHkSRc/0V0DDbf4X1KfPodq7kZjrh4 3BnbVT8WVfYrInlB8tISUwwIlVAOKcykL3zSnm4zopx8ooLnlPnElX+QAzWYHyT5vx+I n2zsBK6qy/WtmsQWqfhr3HXoBCkII4ZPz8ML2Qdq7DLoxVOa6iaInaepo1kOSJpbK9pN xd/Q== MIME-Version: 1.0 X-Received: by 10.220.40.9 with SMTP id i9mr2919594vce.23.1362874703667; Sat, 09 Mar 2013 16:18:23 -0800 (PST) Received: by 10.58.220.33 with HTTP; Sat, 9 Mar 2013 16:18:23 -0800 (PST) In-Reply-To: <201303092355.r29NtRX4015510@mech-cluster241.men.bris.ac.uk> References: <201303092355.r29NtRX4015510@mech-cluster241.men.bris.ac.uk> Date: Sat, 9 Mar 2013 16:18:23 -0800 Message-ID: Subject: Re: how to forbid a process to use swap? From: Mehmet Erol Sanliturk To: mexas@bristol.ac.uk Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 00:18:24 -0000 On Sat, Mar 9, 2013 at 3:55 PM, Anton Shterenlikht wrote: > I run a program that uses large arrays. > I don't want it to use swap, because it's > too slow. I want the program to fail when > there's not enough RAM, rather than using > swap. How to do this? > > Is it something to do with these kernel > variables: > > kern.dfldsiz: 34359738368 > kern.dflssiz: 8388608 > > kern.maxdsiz: 34359738368 > kern.maxssiz: 536870912 > kern.maxtsiz: 134217728 > > Many thanks > > Anton > If you have program source , you may do the following : Define a constant : Maximum_Allocatable_Memory = ? Define a variable : Total_Allocated_Memory = 0 Before allocating a memory of size M , check whether Total_Allocated_Memory + M < Maximum_Allocatable_Memory If yes : Allocate memory ; Add M to Total_Allocated_Memory . If no : Return an error and gracefully stop your program instead of a crash which will loose data . Thank you very much . Mehmet Erol Sanliturk From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 00:30:56 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 20CC9BD2 for ; Sun, 10 Mar 2013 00:30:56 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id BDB3127A for ; Sun, 10 Mar 2013 00:30:55 +0000 (UTC) Received: from irix.bris.ac.uk ([137.222.10.39] helo=ncs.bris.ac.uk) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1UEUA8-0007MD-2o; Sun, 10 Mar 2013 00:30:54 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1UEUA7-0001j5-Pq; Sun, 10 Mar 2013 00:30:51 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6) with ESMTP id r2A0Uj95058403; Sun, 10 Mar 2013 00:30:45 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6/Submit) id r2A0UjoS058395; Sun, 10 Mar 2013 00:30:45 GMT (envelope-from mexas) Date: Sun, 10 Mar 2013 00:30:45 GMT From: Anton Shterenlikht Message-Id: <201303100030.r2A0UjoS058395@mech-cluster241.men.bris.ac.uk> To: m.e.sanliturk@gmail.com, mexas@bristol.ac.uk Subject: Re: how to forbid a process to use swap? In-Reply-To: X-Spam-Score: -3.8 X-Spam-Level: --- Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 00:30:56 -0000 From m.e.sanliturk@gmail.com Sun Mar 10 00:25:27 2013 On Sat, Mar 9, 2013 at 3:55 PM, Anton Shterenlikht wrote: > I run a program that uses large arrays. > I don't want it to use swap, because it's > too slow. I want the program to fail when > there's not enough RAM, rather than using > swap. How to do this? > > Is it something to do with these kernel > variables: > > kern.dfldsiz: 34359738368 > kern.dflssiz: 8388608 > > kern.maxdsiz: 34359738368 > kern.maxssiz: 536870912 > kern.maxtsiz: 134217728 > > Many thanks > > Anton > If you have program source , you may do the following : Define a constant : Maximum_Allocatable_Memory = ? Define a variable : Total_Allocated_Memory = 0 Before allocating a memory of size M , check whether Total_Allocated_Memory + M < Maximum_Allocatable_Memory If yes : Allocate memory ; Add M to Total_Allocated_Memory . If no : Return an error and gracefully stop your program instead of a crash which will loose data . It's a fortran program. I'm not very stong in C. Ideally I'd just use the OS (shell) means, but I need to understand better which resourse limit controls what. For example, with sh limits(1), I see: $ limits Resource limits (current): cputime infinity secs filesize infinity kB datasize 524168 kB stacksize 524168 kB coredumpsize infinity kB memoryuse infinity kB memorylocked 64 kB maxprocesses 12200 openfiles 117594 sbsize infinity bytes vmemoryuse infinity kB pseudo-terminals infinity swapuse infinity kB $ Which of these are relevant to my case? Finally, the actual problem is on linux, but I hope if I'm able to understand how things work on FreeBSD, then I could do it on linux too, especially if it's just a sh command. Thanks Anton From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 00:45:50 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C421F1AE for ; Sun, 10 Mar 2013 00:45:50 +0000 (UTC) (envelope-from feenberg@nber.org) Received: from mail2.nber.org (mail2.nber.org [66.251.72.79]) by mx1.freebsd.org (Postfix) with ESMTP id 8513B2E0 for ; Sun, 10 Mar 2013 00:45:49 +0000 (UTC) Received: from nber7.nber.org (nber7.nber.org [66.251.72.41]) by mail2.nber.org (8.14.4/8.14.4) with ESMTP id r2A0aW7Q082908 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 9 Mar 2013 19:36:33 -0500 (EST) (envelope-from feenberg@nber.org) Date: Sat, 9 Mar 2013 19:36:32 -0500 (EST) From: Daniel Feenberg To: Modulok Subject: Re: Revoke a DHCP lease early? In-Reply-To: Message-ID: References: User-Agent: Alpine 2.02 (LRH 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Anti-Virus: Kaspersky Anti-Virus for Linux Mail Server 5.6.39/RELEASE, bases: 20130310 #9670857, check: 20130310 clean Cc: "questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 00:45:50 -0000 On Sat, 9 Mar 2013, Modulok wrote: > List, > > I'm running isc-dhcpd to serve leases to clients. Is there a way to expire a > lease before it normally would, i.e. force a client to re-negotiate a lease > early? Perhaps some shell command akin to the following (which would be nice, > but obviously doesn't work):: > > dhcpd --revoke 192.168.1.24 I am pretty sure there is no message the dhcp server can send to a client to request it give up its IP address unless the client has asked for an address or renewal. dhcpd is a server, it doesn't initiate commands. I expect that if you modified the entry in the dhcpd.conf file and restarted dhcpd that the client would be assigned (and use) a new address the next time it tried to renew (which is typically when half the lease has been used up). My view tends to be confirmed here - http://www.cites.illinois.edu/ipam/leases.html daniel feenberg > > How do you revoke a client's lease prematurely? > > Thanks. > -Modulok- > _______________________________________________ > 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 Sun Mar 10 01:19:31 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4C0A0714 for ; Sun, 10 Mar 2013 01:19:31 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-vc0-f169.google.com (mail-vc0-f169.google.com [209.85.220.169]) by mx1.freebsd.org (Postfix) with ESMTP id 0DFDE3CA for ; Sun, 10 Mar 2013 01:19:30 +0000 (UTC) Received: by mail-vc0-f169.google.com with SMTP id n10so1513291vcn.14 for ; Sat, 09 Mar 2013 17:19:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=9clUjg6C70ih2GJdiaVIiJGnPFSeeM6jYUzvDn6Q2cs=; b=oQDu41Bz5MohT0enkZEx1C9d7bSobEmDNb3/q9tL389Yb46VrKPIovBQl1ugoMGAV+ bzXMu00UgjzftpJQvl5LnitNDUsOsKJm21bAKZKw00VaUMICSW7YN4NyNEvnms0Pmr/z Lr4SOXMdRyMqjlRxmInvZI3QoQNqmp3FMLkWo05VBabVEFxXiGvsnQp4APpfgT9+CwYk fCEuS/GeLBChwQN3gAR34PGie3VPO7MpnGWpeKZ5JhHdpcHTrtVQfgG1Q9qtATTh4Hju Zfb3NWqXJPA9stt0y0P4VZntDQ8GQy3hOFPOfOng6Urdlwph1+Lb4sis+gQxzbxwr9ZD C6EQ== MIME-Version: 1.0 X-Received: by 10.52.68.116 with SMTP id v20mr2545883vdt.126.1362878370114; Sat, 09 Mar 2013 17:19:30 -0800 (PST) Received: by 10.58.220.33 with HTTP; Sat, 9 Mar 2013 17:19:29 -0800 (PST) In-Reply-To: <201303100030.r2A0UjoS058395@mech-cluster241.men.bris.ac.uk> References: <201303100030.r2A0UjoS058395@mech-cluster241.men.bris.ac.uk> Date: Sat, 9 Mar 2013 17:19:29 -0800 Message-ID: Subject: Re: how to forbid a process to use swap? From: Mehmet Erol Sanliturk To: mexas@bristol.ac.uk Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 01:19:31 -0000 On Sat, Mar 9, 2013 at 4:30 PM, Anton Shterenlikht wrote: > From m.e.sanliturk@gmail.com Sun Mar 10 00:25:27 2013 > > On Sat, Mar 9, 2013 at 3:55 PM, Anton Shterenlikht < > mexas@bristol.ac.uk>wrote: > > > I run a program that uses large arrays. > > I don't want it to use swap, because it's > > too slow. I want the program to fail when > > there's not enough RAM, rather than using > > swap. How to do this? > > > > Is it something to do with these kernel > > variables: > > > > kern.dfldsiz: 34359738368 > > kern.dflssiz: 8388608 > > > > kern.maxdsiz: 34359738368 > > kern.maxssiz: 536870912 > > kern.maxtsiz: 134217728 > > > > Many thanks > > > > Anton > > > > > > If you have program source , you may do the following : > > > > Define a constant : Maximum_Allocatable_Memory = ? > > > Define a variable : Total_Allocated_Memory = 0 > > > > Before allocating a memory of size M , > check whether Total_Allocated_Memory + M < > Maximum_Allocatable_Memory > > If yes : Allocate memory ; > Add M to Total_Allocated_Memory . > > If no : > > Return an error and gracefully stop your program instead of a > crash which > will loose data . > > It's a fortran program. I'm not very stong in C. > Ideally I'd just use the OS (shell) means, > but I need to understand better which resourse > limit controls what. > > For example, with sh limits(1), I see: > > $ limits > Resource limits (current): > cputime infinity secs > filesize infinity kB > datasize 524168 kB > stacksize 524168 kB > coredumpsize infinity kB > memoryuse infinity kB > memorylocked 64 kB > maxprocesses 12200 > openfiles 117594 > sbsize infinity bytes > vmemoryuse infinity kB > pseudo-terminals infinity > swapuse infinity kB > $ > > Which of these are relevant to my case? > > Finally, the actual problem is on linux, > but I hope if I'm able to understand how > things work on FreeBSD, then I could do > it on linux too, especially if it's just > a sh command. > > Thanks > > Anton > It is not necessary to know C for the above steps . If you have source and if it is compilable by Fortran 90 or later standard , it may use allocation . ( Please see ALLOCATABLE , ALLOCATE , DEALLOCATE in a Fortran >= 90 manual ). I am compiling Fortran 77 programs with respect to 2003 standart by specifying lines as "fixed" by G95 which it is available in FreeBSD also ( www.g95.org ) . It may be necessary to convert Hollerith format specifiers to apostrophes . Personally I do not any idea about the above parameters . You may use "System Monitor" or "top" to see memory usage . If there is no sufficient memory , you may not start your program , or it starts to swap you may kill suitable programs , etc. . Thank you very much . Mehmet Erol Sanliturk From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 01:54:17 2013 Return-Path: Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BB921A3B for ; Sun, 10 Mar 2013 01:54:17 +0000 (UTC) (envelope-from doug@safeport.com) Received: from oceanpt.safeport.com (oceanpt.safeport.com [65.122.17.3]) by mx1.freebsd.org (Postfix) with ESMTP id 6F56A647 for ; Sun, 10 Mar 2013 01:54:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by oceanpt.safeport.com (8.14.2/8.14.2) with ESMTP id r2A1ns8u020899 for ; Sat, 9 Mar 2013 20:49:54 -0500 (EST) (envelope-from doug@safeport.com) Date: Sat, 9 Mar 2013 20:49:54 -0500 (EST) From: doug@safeport.com To: freebsd-questions@FreeBSD.ORG Subject: vlan routing Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0 (oceanpt.safeport.com [127.0.0.1]); Sat, 09 Mar 2013 20:49:54 -0500 (EST) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 01:54:17 -0000 I am trying set this up. First I munged the IP addresses. Not to worry if I hit yours. I did the following commands: ifconfig vlan0 create ifconfig vlan0 vlan 95 vlandev fxp0 ifconfig vlan0 inet 134.217.128.117 netmask 255.255.255.0 ifconfig fxp0 add 134.217.128.117 netmask 255.255.255.0 route add -inet 134.217.128.117 134.217.128.1 ifconfig shows: fxp0: flags=8843 metric 0 mtu 1500 options=8 ether 00:d0:b7:56:cf:ab inet 45.22.17.3 netmask 0xfffffc00 broadcast 45.22.19.255 inet 45.22.17.17 netmask 0xffffffff broadcast 45.22.17.17 inet 134.217.128.117 netmask 0xffffff00 broadcast 134.217.128.255 media: Ethernet autoselect (100baseTX ) status: active bge0: flags=8802 metric 0 mtu 1500 options=9b ether 00:09:5b:60:e4:1f media: Ethernet autoselect (none) status: no carrier vlan0: flags=8843 metric 0 mtu 1500 ether 00:d0:b7:56:cf:ab inet 134.217.128.117 netmask 0xffffff00 broadcast 134.217.128.255 media: Ethernet autoselect (100baseTX ) status: active vlan: 95 parent interface: fxp0 Needless to say it does not work. The switch is programmed correctly (I am told). My questions are (1) it seems like the option got applied to the wrong interface; (2) what did I miss?? I also tried booting the system with IP of 134.217.128.117 but I did not get the rc.conf macros correctly. I do know I can not route through the switch without going the vlan commands. _____ Douglas Denault http://www.safeport.com doug@safeport.com Voice: 301-217-9220 Fax: 301-217-9277 From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 01:58:59 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 608BABF9 for ; Sun, 10 Mar 2013 01:58:59 +0000 (UTC) (envelope-from lfsxs0@gmail.com) Received: from mail-ye0-f169.google.com (mail-ye0-f169.google.com [209.85.213.169]) by mx1.freebsd.org (Postfix) with ESMTP id 17FFE683 for ; Sun, 10 Mar 2013 01:58:58 +0000 (UTC) Received: by mail-ye0-f169.google.com with SMTP id r10so468440yen.28 for ; Sat, 09 Mar 2013 17:58:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:date:from:to:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=ZS1X6lKKMi12r5qlRBjTALklYfgSXBi9XeNiYCPDRrU=; b=oB04Q1ylZO/+aE2mMfrihXjTE9eO9KzbaT7VpQsdECRs1Y+ee+8p9vElMYqMMuzoMf yaVXWJrymmOf7t8b7n0lN3xV2CBtqZ4CSpAVwnwOpkMtpEGCUelpnm6g9U0bVmZvBYky aQq7LdN5+MJSq9Qy7T01N5/kO/FekSp6j39jthWZtxuSOZdvx8tMr4BbE2eR9/YD38BL y+3P3jEBIFxRRfrDrvBRW1mKi9OuPIF5YjNhj+zf9zV0RoXxFzFYavjIKVX+Jb8dJi3L qaS8W3jPNIYKaTXryyFLKJdRSpJ9uH67RFYBgCZZYmu1dqwldWhh8gBtmRhO71Z3iAZM xLZA== X-Received: by 10.236.71.228 with SMTP id r64mr2235450yhd.56.1362880380897; Sat, 09 Mar 2013 17:53:00 -0800 (PST) Received: from localhost ([189.101.219.171]) by mx.google.com with ESMTPS id q26sm16438626yhl.22.2013.03.09.17.52.57 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 09 Mar 2013 17:53:00 -0800 (PST) Sender: =?UTF-8?Q?Lu=C3=ADs_Fernando_Schultz_Xavier_da_Silveira?= Date: Sat, 9 Mar 2013 22:52:47 -0300 From: =?iso-8859-1?Q?Lu=EDs?= Fernando Schultz Xavier da Silveira To: freebsd-questions@freebsd.org Subject: Re: How to know % of read file in cat? Message-ID: <20130310015247.GA2681@g470> References: <20130309105400.b181e12aa222502974715a1b@yahoo.es> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130309105400.b181e12aa222502974715a1b@yahoo.es> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 01:58:59 -0000 You might want to try the sysutils/pv port, which is a small program that works like cat, but provides a progress bar. On Sat, Mar 09, 2013 at 10:54:00AM +0100, Eduardo Morras wrote: > > Hello, > > I use cat to read a file and pass it to another app, the command is this: > > camibar% cat file.git | fossil import --git file.fossil > > It takes a lot of time, file.git is 12GB, and i want to know if there's some 'magic' trick can I use to show me how many bytes or the % of the file.git cat sent to the other app. > > Maybe cat isn't the correct tool? > > Thanks. > > > --- --- > Eduardo Morras > _______________________________________________ > 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 Sun Mar 10 03:04:45 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 026B1443 for ; Sun, 10 Mar 2013 03:04:45 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp.rcn.com (smtp.rcn.com [69.168.97.78]) by mx1.freebsd.org (Postfix) with ESMTP id BACC091F for ; Sun, 10 Mar 2013 03:04:44 +0000 (UTC) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=2.0 cv=BZlaI8R2 c=1 sm=0 a=0NJkuBbZY5VCdgJ+v5fl0w==:17 a=AaUjGI9IrlcA:10 a=kj9zAlcOel0A:10 a=OA2lqS22AAAA:8 a=sIt-5M63AAAA:8 a=FFR-pPgmxnkA:10 a=bUD2sdHmLawWzeAAPOcA:9 a=CjuIK1q_8ugA:10 a=0NJkuBbZY5VCdgJ+v5fl0w==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp01.rcn.cmh.synacor.com smtp.mail=roberthuff@rcn.com; spf=neutral; sender-id=neutral Authentication-Results: smtp01.rcn.cmh.synacor.com header.from=roberthuff@rcn.com; sender-id=neutral Received-SPF: neutral (smtp01.rcn.cmh.synacor.com: 209.6.84.183 is neither permitted nor denied by domain of rcn.com) Received: from [209.6.84.183] ([209.6.84.183:56992] helo=jerusalem.litteratus.org.litteratus.org) by smtp.rcn.com (envelope-from ) (ecelerity 2.2.3.49 r(42060/42061)) with ESMTP id BF/02-32301-548FB315; Sat, 09 Mar 2013 22:04:38 -0500 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <20795.63556.581627.956239@jerusalem.litteratus.org> Date: Sat, 9 Mar 2013 22:04:36 -0500 To: Giorgos Keramidas Subject: Re: svn & new pkg system In-Reply-To: <87ppz8ceje.fsf@kobe.laptop> References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> X-Mailer: VM 7.17 under 21.4 (patch 22) "Instant Classic" XEmacs Lucid Cc: Fbsd8 , FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 03:04:45 -0000 Giorgos Keramidas writes: > > Is svn going to become part of the base system in 9.2-RELEASE? > > No. [good reasons for not including subversion ellided] On the other hand ... The traditional - and I believe still canonical - way of updating the system is to recompile from source. I know I am not alone in feeling the system is substantially incomplete if it does not come with all the tools necessary to do that. (Not slighting freebsd-update (don't know enough about it to have an opinion); just pointing out it has limitations.) Respectfully, Robert Huff From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 03:29:50 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C4BF9A3A for ; Sun, 10 Mar 2013 03:29:50 +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 7B7179BD for ; Sun, 10 Mar 2013 03:29:50 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UEWxY-00070H-8E for freebsd-questions@freebsd.org; Sun, 10 Mar 2013 04:30:04 +0100 Received: from dragon.genyosha.net ([108.86.149.92]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 10 Mar 2013 04:30:04 +0100 Received: from sr by dragon.genyosha.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 10 Mar 2013 04:30:04 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: sr@genyosha.net (Steve Rikli) Subject: periodic security always sends output mail Date: Sun, 10 Mar 2013 03:26:35 +0000 (UTC) Organization: none Lines: 39 Message-ID: X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: dragon.genyosha.net X-Newsreader: trn 4.0-test77 (Sep 1, 2010) Originator: sr@genyosha.net (Steve Rikli) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 03:29:50 -0000 I would like to configure periodic on my FreeBSD servers to only send daily/weekly/monthly/security mails (or logs) when there is something "important" to report. I'm close, but periodic security seems to _always_ send mail, even when there is nothing to report. My periodic.conf.local has these pertinent lines (ignore weekly and monthly for now): daily_show_success="NO" security_show_success="NO" daily_show_info="NO" security_show_info="NO" This has the desired effect on daily -- no mail unless something has happened. And it _almost_ works for security, but it still sends a nearly-empty report with only this: Security check: -- End of daily output -- That behavior is the same whether security is a separate report or included into daily using daily_status_security_inline="YES". I think the reason is /etc/periodic/daily/450.status-security sets "rc=3" after running 'periodic security', and so there's no way to mask the output. Is there some other (preferably supported) means of achieving the goal of no mail or log unless there's something to report? Thanks, sr. -- || Steve Rikli ||| Well, we've stared at it... that oughta || || Systems Administrator ||| fix it! Let's get outta here. || || Genyosha Networks ||| || || sr@genyosha.net ||| - Crow, MST3K || From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 04:08:29 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A21BC313 for ; Sun, 10 Mar 2013 04:08:29 +0000 (UTC) (envelope-from nomadlogic@gmail.com) Received: from mail-oa0-f54.google.com (mail-oa0-f54.google.com [209.85.219.54]) by mx1.freebsd.org (Postfix) with ESMTP id 5046AA87 for ; Sun, 10 Mar 2013 04:08:28 +0000 (UTC) Received: by mail-oa0-f54.google.com with SMTP id n12so3482965oag.13 for ; Sat, 09 Mar 2013 20:08:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=dDjsMxkJUZwcnOT7NEOhN7tA248QX8Uct+wbF117VOE=; b=LEcWGjsD5/du8o8k6OktSugO+TE9J5FjuH8FUp+SHz4SLn/drPx4TaPXxGnsXQq+tA o4F2SToGd56Q8AsZrLDf19ObCEPSiee2gmBVgU37DaaIWpanbYq4d9N+B0P1GNw6oiLU Q8QFPIGyxx+fCv5GPA0nTH28XtbVmHm3b09oF1V14EIzIHfCEg97APO5+IpR5Ca3YIVZ 0hwY5Rh1xuOon2QlDPMHfkzkfQREKrdjlZ9N0SlMjpz2hqO/vaoaAp68h/T2K4ZUca9f O/6cuvoMQNd4fMM1m9K4b4BhpnF+xS1iLDnSvHTKPiQIC0O8EKXzNXjV/HsKH0W7bXd9 s1YA== MIME-Version: 1.0 X-Received: by 10.60.19.161 with SMTP id g1mr5537958oee.101.1362888508292; Sat, 09 Mar 2013 20:08:28 -0800 (PST) Received: by 10.76.7.99 with HTTP; Sat, 9 Mar 2013 20:08:28 -0800 (PST) In-Reply-To: <513BC4E2.4040708@a1poweruser.com> References: <513BC4E2.4040708@a1poweruser.com> Date: Sat, 9 Mar 2013 20:08:28 -0800 Message-ID: Subject: Re: svn & new pkg system From: pete wright To: Fbsd8 Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 04:08:29 -0000 On Sat, Mar 9, 2013 at 3:25 PM, Fbsd8 wrote: > Is svn going to become part of the base system in 9.2-RELEASE? > not sure about svn, but this port has recently been commited: http://www.freshports.org/net/svnup/ it is a csup replacement. -pete -- pete wright www.nycbug.org @nomadlogicLA From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 06:17:25 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E516C1DC for ; Sun, 10 Mar 2013 06:17:25 +0000 (UTC) (envelope-from corebug@corebug.net) Received: from mail-ob0-x230.google.com (mail-ob0-x230.google.com [IPv6:2607:f8b0:4003:c01::230]) by mx1.freebsd.org (Postfix) with ESMTP id 8AAA1E4E for ; Sun, 10 Mar 2013 06:17:24 +0000 (UTC) Received: by mail-ob0-f176.google.com with SMTP id v19so2423320obq.21 for ; Sat, 09 Mar 2013 22:17:24 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:mime-version:x-originating-ip:in-reply-to:references :from:date:message-id:subject:to:cc:content-type:x-gm-message-state; bh=umq6I3KKu+gfA8QSOntUMOT4BeyR/CDuAWmkCZx5Kz4=; b=oG4MmL5/EgEq4Ud4G7RKc7TzbZuZD1VudSztHgzU4hmoMtO4w60x5K3Qf2jvLsFpxi BMEZuEjDDQr6ZjUpQMeio4m8MMbAkyOMuUr8/KJNdXDn3y4dJVup5ZkOLGcknt7XeyQe 3Xdp+a7F2m3kQR/4PhRvXCESxgH2XQzmkvzThalRuv3kAfzgpU+6K6leTfT86wVzmjLT rhH7TUlPNyBLFKIi/ykhIJV4dNmHwG8iWVd8dWznfmc4IEYzB0cv1r6Pd7A2FE390udt S/SIfDr1eKOECf5IJA5NhKvjEx9opyjirkXt7VeKkFP/vMjXFMEwem2y4tGazMoSptfI /DPA== X-Received: by 10.60.169.212 with SMTP id ag20mr5673915oec.102.1362896244096; Sat, 09 Mar 2013 22:17:24 -0800 (PST) MIME-Version: 1.0 Received: by 10.76.74.104 with HTTP; Sat, 9 Mar 2013 22:17:04 -0800 (PST) X-Originating-IP: [176.113.162.13] In-Reply-To: References: From: =?UTF-8?B?0JLQuNGC0LDQu9C40Lkg0KLRg9GA0L7QstC10YY=?= Date: Sun, 10 Mar 2013 08:17:04 +0200 Message-ID: Subject: Re: vlan routing To: doug@safeport.com Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQknVByIvY8sNUblOyLdujJIiivvmM8zrS4gMJEsocoeFTneCZOW/OrN3Ogcm88gxWWtLtSJ Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 06:17:26 -0000 2013/3/10 : > I am trying set this up. First I munged the IP addresses. Not to worry if I > hit yours. I did the following commands: > > ifconfig vlan0 create > ifconfig vlan0 vlan 95 vlandev fxp0 > ifconfig vlan0 inet 134.217.128.117 netmask 255.255.255.0 > ifconfig fxp0 add 134.217.128.117 netmask 255.255.255.0 > route add -inet 134.217.128.117 134.217.128.1 > > ifconfig shows: > > fxp0: flags=8843 metric 0 mtu 1500 > options=8 > ether 00:d0:b7:56:cf:ab > inet 45.22.17.3 netmask 0xfffffc00 broadcast 45.22.19.255 > inet 45.22.17.17 netmask 0xffffffff broadcast 45.22.17.17 > inet 134.217.128.117 netmask 0xffffff00 broadcast 134.217.128.255 > media: Ethernet autoselect (100baseTX ) > status: active > bge0: flags=8802 metric 0 mtu 1500 > options=9b > ether 00:09:5b:60:e4:1f > media: Ethernet autoselect (none) > status: no carrier > vlan0: flags=8843 metric 0 mtu 1500 > ether 00:d0:b7:56:cf:ab > inet 134.217.128.117 netmask 0xffffff00 broadcast 134.217.128.255 > media: Ethernet autoselect (100baseTX ) > status: active > vlan: 95 parent interface: fxp0 > > Needless to say it does not work. The switch is programmed correctly (I am > told). My questions are (1) it seems like the option got applied to the > wrong interface; (2) what did I miss?? > > I also tried booting the system with IP of 134.217.128.117 but I did not get > the rc.conf macros correctly. I do know I can not route through the switch > without going the vlan commands. > > _____ > Douglas Denault > http://www.safeport.com > doug@safeport.com > Voice: 301-217-9220 > Fax: 301-217-9277 > _______________________________________________ > 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 guess you shouldn't put the same IP address on two interfaces (vlan and fxp0), you need to decide wherther you need tagged or untagged vlan frames there and, depending on this decision put the IP address on VLAN interface (tagged variant) or fxp0 (untagged one). If i understand your task correctly, then this line is faulty from your configuration: > ifconfig fxp0 add 134.217.128.117 netmask 255.255.255.0 You don't need it. > route add -inet 134.217.128.117 134.217.128.1 This is smth absoulutely wrong:) Basically, if you only need a vlan interface that could be used for routing, you need these commands only: ifconfig vlan95 create ifconfig vlan95 inet 134.217.128.117/24 vlan 95 vlandev fxp0 and in /etc/rc.conf you should put such strings: cloned_interfaces="vlan95" ifconfig_vlan95="inet 134.217.128.117/24 vlan 95 vlandev fxp0" for the interface to be created on reboot. Hope this helps. -- ~~~ WBR, Vitaliy Turovets NOC Lead @TV-Net ISP NOC Lead @Service Outsourcing company +38(093)265-70-55 VITU-RIPE X-NCC-RegID: ua.tv From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 10:43:14 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 01352F3F; Sun, 10 Mar 2013 10:43:13 +0000 (UTC) (envelope-from FreeBSD@shaneware.biz) Received: from ipmail06.adl6.internode.on.net (ipmail06.adl6.internode.on.net [IPv6:2001:44b8:8060:ff02:300:1:6:6]) by mx1.freebsd.org (Postfix) with ESMTP id 633DD755; Sun, 10 Mar 2013 10:43:12 +0000 (UTC) Received: from ppp247-71.static.internode.on.net (HELO leader.local) ([203.122.247.71]) by ipmail06.adl6.internode.on.net with ESMTP; 10 Mar 2013 21:13:11 +1030 Message-ID: <513C63BE.6020808@ShaneWare.Biz> Date: Sun, 10 Mar 2013 21:13:10 +1030 From: Shane Ambler User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: FreeBSD Subject: Re: fbsdmon error message References: <20130309065404.45bece21@scorpio> In-Reply-To: <20130309065404.45bece21@scorpio> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Jerry , gblach@FreeBSD.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 10:43:14 -0000 On 09/03/2013 22:24, Jerry wrote: > After working fine for over a year, the "ports-mgmt/fbsdmon" port has > started spitting out errors once a week for the past month. > > ********************************************************************** > Rebuilding locate database: > > Rebuilding whatis database: > makewhatis: /usr/local/man/man3/EVP_PKEY_verifyrecover_init.3.gz: No such file or directory > > Sending statistic to fbsdmon.org > > -- End of weekly output -- > ********************************************************************* The error isn't from fbsdmon, the message is from the weekly periodic run which has fbsdmon on it's list of tasks. The error is from the task before fbsdmon - rebuilding the whatis database. While I know the error originates from an openssl item being renamed from EVP_PKEY_verifyrecover_init to EVP_PKEY_verify_recover_init I'm not sure why it still tries to find the old man page. From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 12:43:59 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 229851F4 for ; Sun, 10 Mar 2013 12:43:59 +0000 (UTC) (envelope-from freebsd@qeng-ho.org) Received: from blue.qeng-ho.org (blue.qeng-ho.org [217.155.128.241]) by mx1.freebsd.org (Postfix) with ESMTP id 86686AFC for ; Sun, 10 Mar 2013 12:43:58 +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 r2AChsuq007749; Sun, 10 Mar 2013 12:43:56 GMT (envelope-from freebsd@qeng-ho.org) Message-ID: <513C800A.2030605@qeng-ho.org> Date: Sun, 10 Mar 2013 12:43:54 +0000 From: Arthur Chance User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: Steve Rikli Subject: Re: periodic security always sends output mail References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 12:43:59 -0000 On 03/10/13 03:26, Steve Rikli wrote: > I would like to configure periodic on my FreeBSD servers to only send > daily/weekly/monthly/security mails (or logs) when there is something > "important" to report. > > I'm close, but periodic security seems to _always_ send mail, even > when there is nothing to report. I suspect the logic is that by always sending a mail, even if it contains nothing important, it means that when you don't get mail you should check to see what happened. Otherwise an attacker could simply prevent periodic security checks to cover up any changes made and you'd just think there was nothing important to report. From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 12:57:56 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A7B6D48B for ; Sun, 10 Mar 2013 12:57:56 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-yh0-x22b.google.com (mail-yh0-x22b.google.com [IPv6:2607:f8b0:4002:c01::22b]) by mx1.freebsd.org (Postfix) with ESMTP id 35C91B5C for ; Sun, 10 Mar 2013 12:57:55 +0000 (UTC) Received: by mail-yh0-f43.google.com with SMTP id z6so485935yhz.30 for ; Sun, 10 Mar 2013 05:57:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=dDOukC6U1ZTklAetxljGCfBKtU4n9fZdMhUfbKhRsdM=; b=MpJdB2edGic84syfVlEB4xOESYbmks5PIwfEPOZHHoXpA3n3ZJomdfvz/eU7cmeK63 PgyTgZkksbWUesdAFV0Sb0MkcA5i8LuVNa72AvevR6Wdoqk84H3oQIcBIXer0bhaNQxX Pj7OFwjA1Q8XhYq/Chp1HJukTWpnwPGvA/yYg= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received: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=dDOukC6U1ZTklAetxljGCfBKtU4n9fZdMhUfbKhRsdM=; b=MT/RS+J95kuF38mSSE/3pVM8JTiGSrqAdGVwO3Cvx6LNkp4BqbO2Lts2TjOei1SHXx U90H/IEVHfRSG4B8jQq2lXDhsCrHBnydnj2agRIAvBwjsdMkbuqqbsRfhMrE1Mv5tuxs GNIXTTEt7YiEviuQsY7Ip+mSg2dbw3PcNrWtSOnD/iXyOsk+lGqCj/VXXHajqUgmC1Aa jY+e5o5oG5djsjVpkpAPUlxBLrRg4pmayG7MwkdB8aWQXoyVdXOaV1yit+t5hHXLlSlt qc1aVpv/ZHMfWgrmOTrTTibZZHCyNc0djsJKaVKAxZ3r9tpYHYMz0R6KOdQeDpFsLzp2 7jNQ== X-Received: by 10.236.162.194 with SMTP id y42mr6599355yhk.197.1362920275551; Sun, 10 Mar 2013 05:57:55 -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 q26sm18385313yhl.22.2013.03.10.05.57.54 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Mar 2013 05:57:54 -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 3ZP2YF4Nppz2CG4F for ; Sun, 10 Mar 2013 08:57:53 -0400 (EDT) Date: Sun, 10 Mar 2013 08:57:53 -0400 From: Jerry To: FreeBSD Subject: Re: fbsdmon error message Message-ID: <20130310085753.4ff814b6@scorpio> In-Reply-To: <513C63BE.6020808@ShaneWare.Biz> References: <20130309065404.45bece21@scorpio> <513C63BE.6020808@ShaneWare.Biz> Organization: seibercom.net X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.17; amd64-portbld-freebsd8.3) 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: ALoCoQkb5oJdJJVuF5R+XVldCDbaZCdQvmzyW7wIE3CVjaFCo9EWd82u4M0Rxhfznhx8l7OtLHDN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: FreeBSD List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 12:57:56 -0000 On Sun, 10 Mar 2013 21:13:10 +1030 Shane Ambler articulated: > On 09/03/2013 22:24, Jerry wrote: > > After working fine for over a year, the "ports-mgmt/fbsdmon" port > > has started spitting out errors once a week for the past month. > > > > ********************************************************************** > > Rebuilding locate database: > > > > Rebuilding whatis database: > > makewhatis: /usr/local/man/man3/EVP_PKEY_verifyrecover_init.3.gz: > > No such file or directory > > > > Sending statistic to fbsdmon.org > > > > -- End of weekly output -- > > ********************************************************************* > > The error isn't from fbsdmon, the message is from the weekly periodic > run which has fbsdmon on it's list of tasks. The error is from the > task before fbsdmon - rebuilding the whatis database. > > While I know the error originates from an openssl item being renamed > from EVP_PKEY_verifyrecover_init to EVP_PKEY_verify_recover_init I'm > not sure why it still tries to find the old man page. Should a PR be filed against this or has one all ready been filed? I didn't find any. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 15:08:35 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7920FB6A for ; Sun, 10 Mar 2013 15:08:35 +0000 (UTC) (envelope-from gkeramidas@gmail.com) Received: from mail-ee0-f47.google.com (mail-ee0-f47.google.com [74.125.83.47]) by mx1.freebsd.org (Postfix) with ESMTP id F06B4FC0 for ; Sun, 10 Mar 2013 15:08:34 +0000 (UTC) Received: by mail-ee0-f47.google.com with SMTP id e52so1769138eek.34 for ; Sun, 10 Mar 2013 08:08:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:date:from:to:cc:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to; bh=WQIa0o9ibkFSO221XZUv1I0a8di+nEvnwFVa3xEN084=; b=tonFbP5c4uhy3SdybhCEFLsD9H+iO2u5+qoBFOtKzt83SvRzEP9WkYqGMnDAAuYRZ2 oQEU9ge8LxLi83iEWRqpyQNnVf5YG8t1qdevRvuEaCtGF70DsWUwuUCxKkLfCjx5SICf jXWny59ozwI8UAI3pptExzcn3CwG/StAHhhTmohz6Z0C7HphTG24j5K0omd+hkUhPf4f gaumSrrbGZHDyjOw15VPiUlrUexzNqowShJZgPxovuFlpt3fnzat92jdimNtVjotoOah 5FVVIaoh3pjb3AwVjO7HDS1PWSVGIxNzsN9GQogFm35hLsCtZhJkzQG06qR3oenbukQ9 AShQ== X-Received: by 10.14.219.7 with SMTP id l7mr17782999eep.12.1362928107927; Sun, 10 Mar 2013 08:08:27 -0700 (PDT) Received: from saturn (217-162-217-29.dynamic.hispeed.ch. [217.162.217.29]) by mx.google.com with ESMTPS id a1sm18628478eep.2.2013.03.10.08.08.25 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 10 Mar 2013 08:08:26 -0700 (PDT) Sender: Giorgos Keramidas Date: Sun, 10 Mar 2013 16:08:22 +0100 From: Giorgos Keramidas To: Robert Huff Subject: Re: svn & new pkg system Message-ID: <20130310150820.GA20819@saturn> References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> <20795.63556.581627.956239@jerusalem.litteratus.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20795.63556.581627.956239@jerusalem.litteratus.org> Cc: Fbsd8 , FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 15:08:35 -0000 On 2013-03-09 22:04, Robert Huff wrote: > Giorgos Keramidas writes: > > > Is svn going to become part of the base system in 9.2-RELEASE? > > > > No. > > [good reasons for not including subversion ellided] > > On the other hand ... > > The traditional - and I believe still canonical - way of updating the > system is to recompile from source. > > I know I am not alone in feeling the system is substantially > incomplete if it does not come with all the tools necessary to do > that. > > (Not slighting freebsd-update (don't know enough about it to have an > opinion); just pointing out it has limitations.) This has been traditionally true with CVS, which was also a complex piece of software, but still merged periodically into FreeBSD src. I think it's always a small annoyance when things break away from 'tradition', but on the other hand tradition shouldn't be able to put a stop to moving along or act as an impediment for doing our 'real' work. And the real work of the team is to develop FreeBSD, not to develop a version control system. There's a lot of know-how and development happening in the main Subversion development process; a lof of experience that we do not necessarily need to duplicate in our own team to do what we like best: that is, develop FreeBSD. It's understandable that having to install a package to check-out the sources is a diversion from previous practice, and it may be somewhat annoying -- like every change is annoying at first. But the package is not going to go away and it won't stop working, at least as long as we are using it ourselves to develop the system. So other than the difference that now the sources of the VCS used for development are not part of src/, conceptually there isn't a lot of difference from before. The previous state of things was: FreeBSD developers use CVS to check out the sources, and develop the system itself. CVS is available [as part of the base system] to everyone else who wants to grab a copy of the source tree. WHat happens now is quite similar, except for the bracketed text: FreeBSD developers use SVN to check out the sources, and develop the system itself. SVN is available [as part of the official packages] to everyone else who wants to grab a copy of the source tree. From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 15:52:05 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 26AF838D for ; Sun, 10 Mar 2013 15:52:05 +0000 (UTC) (envelope-from sr@genyosha.net) Received: from ns1.genyosha.net (ns1.genyosha.net [108.86.149.91]) by mx1.freebsd.org (Postfix) with ESMTP id E0A432DA for ; Sun, 10 Mar 2013 15:52:04 +0000 (UTC) Received: from dragon.genyosha.home (dragon.genyosha.net [108.86.149.92]) by ns1.genyosha.net (8.14.6/8.14.4) with ESMTP id r2AFfoDr004646 for ; Sun, 10 Mar 2013 08:41:51 -0700 (PDT) (envelope-from sr@genyosha.net) Received: from dragon.genyosha.home (localhost.localdomain [127.0.0.1]) by dragon.genyosha.home (8.14.4/8.14.4) with ESMTP id r2AFfjHW013159 for ; Sun, 10 Mar 2013 08:41:45 -0700 Received: (from sr@localhost) by dragon.genyosha.home (8.14.4/8.14.4/Submit) id r2AFfjw2013158 for freebsd-questions@freebsd.org; Sun, 10 Mar 2013 08:41:45 -0700 Date: Sun, 10 Mar 2013 08:41:45 -0700 From: Steve Rikli To: freebsd-questions@freebsd.org Subject: Re: periodic security always sends output mail Message-ID: <20130310154145.GA13034@dragon.genyosha.home> References: <513C800A.2030605@qeng-ho.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <513C800A.2030605@qeng-ho.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (ns1.genyosha.net [108.86.149.91]); Sun, 10 Mar 2013 08:41:51 -0700 (PDT) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 15:52:05 -0000 On Sun, Mar 10, 2013 at 12:43:54PM +0000, Arthur Chance wrote: > On 03/10/13 03:26, Steve Rikli wrote: > >I would like to configure periodic on my FreeBSD servers to only send > >daily/weekly/monthly/security mails (or logs) when there is something > >"important" to report. > > > >I'm close, but periodic security seems to _always_ send mail, even > >when there is nothing to report. > > I suspect the logic is that by always sending a mail, even if it > contains nothing important, it means that when you don't get mail > you should check to see what happened. Otherwise an attacker could > simply prevent periodic security checks to cover up any changes made > and you'd just think there was nothing important to report. You may be correct. It may also be nothing more complicated than "security is important", which is hard to argue with. :-) However it appears the logic has changed somewhat in FreeBSD-9 (my 1st example was from an 8.3 server), where the 450.status-security script now sets and resets rc= conditionally, and it seems to behave more closely to my desired behavior, though I need to test a bit. One undesireable thing in the FreeBSD-9 scripts is it appears that if you have daily_status_security_inline enabled, and mask away the daily success & info results, the security results are also masked away regardless of security success,info settings. E.g. this config on a FreeBSD 9.1 system: daily_show_success="NO" security_show_success="NO" daily_show_info="NO" security_show_info="YES" daily_status_security_inline="YES" apparently won't include security info events either, though I'm not sure why not. I'm still tuning and testing to get it set the way I want. Cheers, sr. From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 17:18:09 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 695C6509 for ; Sun, 10 Mar 2013 17:18:09 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 574717CB for ; Sun, 10 Mar 2013 17:18:08 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Sun, 10 Mar 2013 10:18:09 -0700 Message-ID: <513CC04C.3020403@a1poweruser.com> Date: Sun, 10 Mar 2013 13:18:04 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Giorgos Keramidas Subject: Re: svn & new pkg system References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> <20795.63556.581627.956239@jerusalem.litteratus.org> <20130310150820.GA20819@saturn> In-Reply-To: <20130310150820.GA20819@saturn> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 10 Mar 2013 17:18:09.0876 (UTC) FILETIME=[3CEBC940:01CE1DB3] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: Robert Huff , FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 17:18:09 -0000 Giorgos Keramidas wrote: > On 2013-03-09 22:04, Robert Huff wrote: >> Giorgos Keramidas writes: >>> > Is svn going to become part of the base system in 9.2-RELEASE? >>> >>> No. >> [good reasons for not including subversion ellided] >> >> On the other hand ... >> >> The traditional - and I believe still canonical - way of updating the >> system is to recompile from source. >> >> I know I am not alone in feeling the system is substantially >> incomplete if it does not come with all the tools necessary to do >> that. >> >> (Not slighting freebsd-update (don't know enough about it to have an >> opinion); just pointing out it has limitations.) > > This has been traditionally true with CVS, which was also a complex > piece of software, but still merged periodically into FreeBSD src. > > I think it's always a small annoyance when things break away from > 'tradition', but on the other hand tradition shouldn't be able to put > a stop to moving along or act as an impediment for doing our 'real' > work. And the real work of the team is to develop FreeBSD, not to > develop a version control system. There's a lot of know-how and > development happening in the main Subversion development process; > a lof of experience that we do not necessarily need to duplicate > in our own team to do what we like best: that is, develop FreeBSD. > > It's understandable that having to install a package to check-out > the sources is a diversion from previous practice, and it may be > somewhat annoying -- like every change is annoying at first. But > the package is not going to go away and it won't stop working, at > least as long as we are using it ourselves to develop the system. > > So other than the difference that now the sources of the VCS used > for development are not part of src/, conceptually there isn't a > lot of difference from before. The previous state of things was: > > FreeBSD developers use CVS to check out the sources, and > develop the system itself. CVS is available [as part of the > base system] to everyone else who wants to grab a copy of > the source tree. > > WHat happens now is quite similar, except for the bracketed text: > > FreeBSD developers use SVN to check out the sources, and > develop the system itself. SVN is available [as part of the > official packages] to everyone else who wants to grab a copy of > the source tree. > > Your thinking is way to narrow. Besides source, svn can also grab a copy to the ports tree or just a single port. This a much quicker and a more flexible approach than using portsnap. No body has made a case for NOT including svn in the base system. If it can be a port there is no reason why it can not be included in the base system. Just because developers us it is no reason to make life difficult of those who are not devolopers and have other uses for it. From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 17:32:47 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1967088A for ; Sun, 10 Mar 2013 17:32:47 +0000 (UTC) (envelope-from steve@sohara.org) Received: from uk1rly2283.eechost.net (relay01a.mail.uk1.eechost.net [217.69.40.75]) by mx1.freebsd.org (Postfix) with ESMTP id C8FD7856 for ; Sun, 10 Mar 2013 17:32:46 +0000 (UTC) Received: from [31.186.37.179] (helo=smtp.marelmo.com) by uk1rly2283.eechost.net with esmtpa (Exim 4.72) (envelope-from ) id 1UEk72-0002m9-4z; Sun, 10 Mar 2013 17:32:44 +0000 Received: from [192.168.63.1] (helo=steve.marelmo.com) by smtp.marelmo.com with smtp (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1UEk6s-000GeF-8T; Sun, 10 Mar 2013 17:32:34 +0000 Date: Sun, 10 Mar 2013 17:31:48 +0000 From: Steve O'Hara-Smith To: Fbsd8 Subject: Re: svn & new pkg system Message-Id: <20130310173148.02bd958efa4538938992dc97@sohara.org> In-Reply-To: <513CC04C.3020403@a1poweruser.com> References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> <20795.63556.581627.956239@jerusalem.litteratus.org> <20130310150820.GA20819@saturn> <513CC04C.3020403@a1poweruser.com> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Auth-Info: 15567@permanet.ie (plain) Cc: Giorgos Keramidas , Robert Huff , FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 17:32:47 -0000 On Sun, 10 Mar 2013 13:18:04 -0400 Fbsd8 wrote: > No body has made a case for NOT including svn in the base system. If it > can be a port there is no reason why it can not be included in the base > system. Giorgos did when he said "Subversion is a large system, with a ton of dependencies" which translates to a lot of work to keep it up to date in the base system, and all sorts of fun and games when other things using those dependencies need a newer version. -- Steve O'Hara-Smith From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 17:37:09 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D64F7B88 for ; Sun, 10 Mar 2013 17:37:09 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id BAB73881 for ; Sun, 10 Mar 2013 17:37:09 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Sun, 10 Mar 2013 10:37:10 -0700 Message-ID: <513CC4C4.8080405@a1poweruser.com> Date: Sun, 10 Mar 2013 13:37:08 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: FreeBSD questions Subject: day light saving time happened today Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 10 Mar 2013 17:37:10.0765 (UTC) FILETIME=[E4F1A1D0:01CE1DB5] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 17:37:09 -0000 day light saving time happened early sunday morning and the time shown by the date command is still one hour behind. I just did a clean 9.1 install from cdrom and selected the correct time zone for my location. I don't see any entry for daylight saving time in tzsetup I though the EDT had daylight saving time built in. How do I configure time for auto daylight saving time corrections? From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 17:39:51 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5869EC41 for ; Sun, 10 Mar 2013 17:39:51 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 29D178A0 for ; Sun, 10 Mar 2013 17:39:50 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Sun, 10 Mar 2013 10:39:52 -0700 Message-ID: <513CC566.9050104@a1poweruser.com> Date: Sun, 10 Mar 2013 13:39:50 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Steve O'Hara-Smith Subject: Re: svn & new pkg system References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> <20795.63556.581627.956239@jerusalem.litteratus.org> <20130310150820.GA20819@saturn> <513CC04C.3020403@a1poweruser.com> <20130310173148.02bd958efa4538938992dc97@sohara.org> In-Reply-To: <20130310173148.02bd958efa4538938992dc97@sohara.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 10 Mar 2013 17:39:52.0607 (UTC) FILETIME=[4568C2F0:01CE1DB6] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: Giorgos Keramidas , Robert Huff , FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 17:39:51 -0000 Steve O'Hara-Smith wrote: > On Sun, 10 Mar 2013 13:18:04 -0400 > Fbsd8 wrote: > >> No body has made a case for NOT including svn in the base system. If it >> can be a port there is no reason why it can not be included in the base >> system. > > Giorgos did when he said "Subversion is a large system, with a ton > of dependencies" which translates to a lot of work to keep it up to date in > the base system, and all sorts of fun and games when other things using > those dependencies need a newer version. > And how is that any different from any other package or pkgng situation. From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 17:46:07 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B91BFE46 for ; Sun, 10 Mar 2013 17:46:07 +0000 (UTC) (envelope-from gkeramidas@gmail.com) Received: from mail-ea0-x230.google.com (mail-ea0-x230.google.com [IPv6:2a00:1450:4013:c01::230]) by mx1.freebsd.org (Postfix) with ESMTP id 460138E7 for ; Sun, 10 Mar 2013 17:46:07 +0000 (UTC) Received: by mail-ea0-f176.google.com with SMTP id h10so825008eaj.7 for ; Sun, 10 Mar 2013 10:46:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-type; bh=nBGGDdVUe/70+o8epg/A4GoApfyKiAflG9qK8nq1Jl4=; b=gWiP/CHlYj77hkc+FhM6rW2vclhGQG/EJeSPX/7E9y4Fq9uZcIfbYVZXem+D7KJsFp +uTbJr8d2/mn0ukeLh/quO7HpXMYAzIcwOY4k0caqiNoMJOB85fYgaj+oIcVqScy6ooq zrqWiGv1M8CuENknseO8kFLgsIobC9mkEIRdHijPALfzKoDDi5pdo2KuzCEYKJzWPHJr Ek0vq6VIVNKF4tdfyia7qb133mc/fY7SAk+CbJpMWYqk5KDgC43CotGf3P/k2GfiAmjB N2Cha5Tm1IjWje6waewzV+PJBM01khd+2BEj7FLYZGsNhOTeY3Vh96hT602SOotw5Rmi x2Gg== X-Received: by 10.14.218.71 with SMTP id j47mr27902422eep.28.1362937565520; Sun, 10 Mar 2013 10:46:05 -0700 (PDT) Received: from saturn.gmail.com (217-162-217-29.dynamic.hispeed.ch. [217.162.217.29]) by mx.google.com with ESMTPS id s3sm19192266eem.4.2013.03.10.10.46.02 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 10 Mar 2013 10:46:04 -0700 (PDT) Sender: Giorgos Keramidas From: Giorgos Keramidas To: Fbsd8 Subject: Re: svn & new pkg system References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> <20795.63556.581627.956239@jerusalem.litteratus.org> <20130310150820.GA20819@saturn> <513CC04C.3020403@a1poweruser.com> <20130310173148.02bd958efa4538938992dc97@sohara.org> <513CC566.9050104@a1poweruser.com> Date: Sun, 10 Mar 2013 18:45:59 +0100 In-Reply-To: <513CC566.9050104@a1poweruser.com> (fbsd8@a1poweruser.com's message of "Sun, 10 Mar 2013 13:39:50 -0400") Message-ID: <87fw03ywq0.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Cc: Steve O'Hara-Smith , Robert Huff , FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 17:46:07 -0000 On Sun, 10 Mar 2013 13:39:50 -0400, Fbsd8 wrote: > Steve O'Hara-Smith wrote: >> On Sun, 10 Mar 2013 13:18:04 -0400 >> Fbsd8 wrote: >> >>> No body has made a case for NOT including svn in the base system. If >>> it can be a port there is no reason why it can not be included in the >>> base system. >> >> Giorgos did when he said "Subversion is a large system, with a ton of >> dependencies" which translates to a lot of work to keep it up to date >> in the base system, and all sorts of fun and games when other things >> using those dependencies need a newer version. > > And how is that any different from any other package or pkgng situation. Imagine what happens when library libfoo is a dependency of subversion, and they are both imported into the base system. At the same time there are 2-3 incompatible versions of libfoo in the ports. When libfoo is part of the base system we have to: a) Make sure that it works for the base system version of subversion. b) Other programs from ports do not accidentally link with the wrong version of the library from base. c) All programs that subversion uses (possibly plugins and extensions that are now part of base, but part of the packages) use the right 'mix' of libraries. This gets fairly complicated and a brittle _very_ very fast. On the other hand, the inconvenience of having to install subversion from ports is offset by the fact that _everything_ it depends on and everything that depends on _subversion_ itself, is now handled in an homogeneous manner, with exactly the same amount of effort that we would have to spend anyway to maintain it in the ports. From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 19:26:49 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 185CC5F9 for ; Sun, 10 Mar 2013 19:26:49 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ia0-x235.google.com (mail-ia0-x235.google.com [IPv6:2607:f8b0:4001:c02::235]) by mx1.freebsd.org (Postfix) with ESMTP id B8ADFC28 for ; Sun, 10 Mar 2013 19:26:48 +0000 (UTC) Received: by mail-ia0-f181.google.com with SMTP id w33so2945267iag.26 for ; Sun, 10 Mar 2013 12:26:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Ou6fbCiLqa+VRL3Ah4jzCQvHL6EZ10JQwvapwiNyaDg=; b=yVAvKeWUNCuVMNgBl/ykmTzS8KZY2JBRnvspyGwzW9TbxKzTcrpeNVivqHNdFipWaB ibBy2ApSDLQWGmZcA7a7GX2/r8e+nObBhKFdPAaAjq+tMxSOoLFuEaLEX9GG1RIxC3RL tE3mAPNpc18bYUJLT60I2NmGkWqnZk0GmwJqfwJZQCZgL6acsbtitf9RlQpfLPvGufFQ VuVbf2IRT0AJgUeF+6wDk0MrQpf3HaHxoRLjzEmJlGimtp66R+yTr9EdPzK9HyHrrDbT ewtIp42bg4rPWu1DaccAbC1GhZPAEmePRyBpsy7mbKpzkNM9jdPgyGB6reFwE3FjKhoF GAhA== X-Received: by 10.50.51.131 with SMTP id k3mr5146185igo.54.1362943608371; Sun, 10 Mar 2013 12:26:48 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id ip2sm8802946igc.5.2013.03.10.12.26.45 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Mar 2013 12:26:47 -0700 (PDT) Message-ID: <513CDE73.4010505@gmail.com> Date: Sun, 10 Mar 2013 14:26:43 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Matthias Apitz Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> In-Reply-To: <20130306054701.GA2295@tinyCurrent> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: c.petrik.sosa@gmail.com, jmc-freebsd2@milibyte.co.uk, "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 19:26:49 -0000 On 03/05/13 23:47, Matthias Apitz wrote: > El día Tuesday, March 05, 2013 a las 03:42:15PM -0600, Joseph A. Nagy, Jr escribió: > >>> then the test is >>> >>> $ date | lpr -PPIXMA >>> >>> matthias >>> >> >> I figured that out, sent the test, it queud the job and stuck there. >> When I get home I'm going to clear the cups logs and start over again. > > Does the CUPS' test page works from the web interface? If not, try to > configure the printer as Generic Postscript first. > > matthias > w/o using the web interface (I don't particularly care for it, honestly, I find it confusing) I deleted the old logs, restarted the cupsd service, and sent # date | lpr -PPIXMA less access_log localhost - - [10/Mar/2013:14:08:23 -0500] "POST /printers/PIXMA HTTP/1.1" 200 302 Create-Job successful-ok localhost - - [10/Mar/2013:14:08:23 -0500] "POST /printers/PIXMA HTTP/1.1" 200 261 Send-Document successful-ok Nothing in error_log or page_log Trying the web interface now. Added the printer via the web interface using usual drivers, logs show the following: # less access_log localhost - - [10/Mar/2013:14:14:53 -0500] "POST /admin/ HTTP/1.1" 200 66 - - localhost - - [10/Mar/2013:14:14:53 -0500] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok localhost - - [10/Mar/2013:14:14:53 -0500] "POST /admin/ HTTP/1.1" 200 1864 - - localhost - - [10/Mar/2013:14:14:58 -0500] "POST /admin/ HTTP/1.1" 200 60 - - localhost - - [10/Mar/2013:14:14:58 -0500] "POST / HTTP/1.1" 401 91 CUPS-Get-Devices successful-ok localhost - - [10/Mar/2013:14:14:58 -0500] "POST /admin/ HTTP/1.1" 401 60 - - localhost - - [10/Mar/2013:14:14:58 -0500] "POST /admin/ HTTP/1.1" 200 60 - - localhost - root [10/Mar/2013:14:15:07 -0500] "POST /admin/ HTTP/1.1" 200 60 - - localhost - - [10/Mar/2013:14:15:07 -0500] "POST / HTTP/1.1" 401 91 CUPS-Get-Devices successful-ok localhost - root [10/Mar/2013:14:15:07 -0500] "POST / HTTP/1.1" 200 1565 CUPS-Get-Devices - localhost - root [10/Mar/2013:14:15:07 -0500] "POST /admin/ HTTP/1.1" 200 3062 - - localhost - - [10/Mar/2013:14:15:24 -0500] "POST /admin HTTP/1.1" 200 92 - - localhost - - [10/Mar/2013:14:15:24 -0500] "POST /admin HTTP/1.1" 200 3148 - - localhost - - [10/Mar/2013:14:15:39 -0500] "POST /admin HTTP/1.1" 200 212 - - localhost - - [10/Mar/2013:14:15:39 -0500] "POST / HTTP/1.1" 200 1581 CUPS-Get-PPDs - localhost - - [10/Mar/2013:14:15:39 -0500] "POST /admin HTTP/1.1" 200 5514 - - localhost - - [10/Mar/2013:14:15:59 -0500] "POST /admin HTTP/1.1" 200 1932 - - localhost - - [10/Mar/2013:14:15:59 -0500] "POST / HTTP/1.1" 200 493199 CUPS-Get-PPDs - localhost - - [10/Mar/2013:14:15:59 -0500] "POST /admin HTTP/1.1" 200 206446 - - localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" 200 1951 - - localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin/ HTTP/1.1" 401 352 CUPS-Add-Modify-Printer successful-ok localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" 401 1951 - - localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" 200 1951 - - localhost - root [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" 200 1951 - - localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin/ HTTP/1.1" 401 352 CUPS-Add-Modify-Printer successful-ok localhost - root [10/Mar/2013:14:16:59 -0500] "POST /admin/ HTTP/1.1" 200 352 CUPS-Add-Modify-Printer successful-ok localhost - root [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" 200 70230 - - localhost - root [10/Mar/2013:14:17:29 -0500] "POST /admin HTTP/1.1" 200 2063 - - localhost - - [10/Mar/2013:14:17:29 -0500] "POST /admin/ HTTP/1.1" 401 522723 CUPS-Add-Modify-Printer successful-ok localhost - root [10/Mar/2013:14:17:29 -0500] "POST /admin/ HTTP/1.1" 200 522723 CUPS-Add-Modify-Printer successful-ok localhost - root [10/Mar/2013:14:17:29 -0500] "POST /admin HTTP/1.1" 200 4015 - - localhost - - [10/Mar/2013:14:18:04 -0500] "POST /printers/PIXMA HTTP/1.1" 200 302 Create-Job successful-ok localhost - - [10/Mar/2013:14:18:04 -0500] "POST /printers/PIXMA HTTP/1.1" 200 261 Send-Document successful-ok # less error_log W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz! W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz! W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz! W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz! W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz! W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz! W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz! W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz! W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz! W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz! E [10/Mar/2013:14:15:40 -0500] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! E [10/Mar/2013:14:15:40 -0500] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/kyocera_ppd_8.2.txt"! W [10/Mar/2013:14:15:59 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz! W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz! W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz! W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz! W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz! W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz! W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz! W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz! W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz! W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz! E [10/Mar/2013:14:16:00 -0500] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! E [10/Mar/2013:14:16:00 -0500] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/kyocera_ppd_8.2.txt"! E [10/Mar/2013:14:18:04 -0500] [Job 12] Job stopped due to filter errors; please consult the error_log file for details. D [10/Mar/2013:14:18:04 -0500] [Job 12] The following messages were recorded from 14:18:04 to 14:18:04 D [10/Mar/2013:14:18:04 -0500] [Job 12] Adding start banner page "none". D [10/Mar/2013:14:18:04 -0500] [Job 12] Queued on "PIXMA" by "root". D [10/Mar/2013:14:18:04 -0500] [Job 12] Auto-typing file... D [10/Mar/2013:14:18:04 -0500] [Job 12] Request file type is text/plain. D [10/Mar/2013:14:18:04 -0500] [Job 12] File of type text/plain queued by "root". D [10/Mar/2013:14:18:04 -0500] [Job 12] Adding end banner page "none". D [10/Mar/2013:14:18:04 -0500] [Job 12] job-sheets=none,none D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[0]="PIXMA" D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[1]="12" D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[2]="root" D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[3]="(stdin)" D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[4]="1" D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[5]="finishings=3 number-up=1 job-uuid=urn:uuid:580bc5de-6ae0-3db1-7a65-e048e3412ee3 job-originating-host-name=localhost time-at-creation=1362943084 time-at-processing=1362943084" D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[6]="/var/spool/cups/d00012-001" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[0]="CUPS_CACHEDIR=/var/db/cups" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[1]="CUPS_DATADIR=/usr/local/share/cups" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[2]="CUPS_DOCROOT=/usr/local/share/doc/cups" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[3]="CUPS_FONTPATH=/usr/local/share/cups/fonts" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[4]="CUPS_REQUESTROOT=/var/spool/cups" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[5]="CUPS_SERVERBIN=/usr/local/libexec/cups" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[6]="CUPS_SERVERROOT=/usr/local/etc/cups" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[7]="CUPS_STATEDIR=/var/run/cups" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[8]="HOME=/var/spool/cups/tmp" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[9]="PATH=/usr/local/libexec/cups/filter:/usr/local/bin:/usr/local/sbin:/bin:/usr/bin" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[10]="SERVER_ADMIN=root@alex-laptop" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[11]="SOFTWARE=CUPS/1.5.4" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[12]="TMPDIR=/var/spool/cups/tmp" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[13]="USER=root" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[14]="CUPS_MAX_MESSAGE=2047" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[15]="CUPS_SERVER=/var/run/cups.sock" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[16]="CUPS_ENCRYPTION=IfRequested" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[17]="IPP_PORT=631" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[18]="CHARSET=utf-8" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[19]="LANG=en_US.UTF-8" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[20]="PPD=/usr/local/etc/cups/ppd/PIXMA.ppd" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[21]="RIP_MAX_CACHE=128m" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[22]="CONTENT_TYPE=text/plain" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[23]="DEVICE_URI=usb:/dev/ulpt0" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[24]="PRINTER_INFO=Pixma MP-210" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[25]="PRINTER_LOCATION=office" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[26]="PRINTER=PIXMA" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[27]="PRINTER_STATE_REASONS=none" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[28]="CUPS_FILETYPE=document" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[29]="FINAL_CONTENT_TYPE=printer/PIXMA" D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[30]="AUTH_I****" D [10/Mar/2013:14:18:04 -0500] [Job 12] Started filter /usr/local/libexec/cups/filter/texttops (PID 26709) D [10/Mar/2013:14:18:04 -0500] [Job 12] Started filter /usr/local/libexec/cups/filter/pstops (PID 26710) D [10/Mar/2013:14:18:04 -0500] [Job 12] Started filter /usr/local/libexec/cups/filter/pstoraster (PID 26711) D [10/Mar/2013:14:18:04 -0500] [Job 12] Started filter /usr/local/libexec/cups/filter/rastertogutenprint.5.2 (PID 26712) D [10/Mar/2013:14:18:04 -0500] [Job 12] Started backend /usr/local/libexec/cups/backend/usb (PID 26713) D [10/Mar/2013:14:18:04 -0500] [Job 12] STATE: +connecting-to-device D [10/Mar/2013:14:18:04 -0500] [Job 12] Starting GNU/GPL Ghostscript... D [10/Mar/2013:14:18:04 -0500] [Job 12] Set job-printer-state-message to "Starting GNU/GPL Ghostscript...", current level=INFO D [10/Mar/2013:14:18:04 -0500] [Job 12] Running /usr/local/bin/espgs -dQUIET -dDEBUG -dPARANOIDSAFER -dNOPAUSE -dBATCH -dNOMEDIAATTRS -sDEVICE=cups -sstdout=%stderr -sOUTPUTFILE=%stdout -c - D [10/Mar/2013:14:18:04 -0500] [Job 12] STATE: -connecting-to-device D [10/Mar/2013:14:18:04 -0500] [Job 12] backendRunLoop(print_fd=0, device_fd=5, snmp_fd=-1, addr=0x0, use_bc=0, side_cb=0x4021f0) D [10/Mar/2013:14:18:04 -0500] [Job 12] Page = 612x792; 0,0 to 612,792 D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->num_fonts = 35 D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[0] = AvantGarde-Book D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[1] = AvantGarde-BookOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[2] = AvantGarde-Demi D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[3] = AvantGarde-DemiOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[4] = Bookman-Demi D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[5] = Bookman-DemiItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[6] = Bookman-Light D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[7] = Bookman-LightItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[8] = Courier D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[9] = Courier-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[10] = Courier-BoldOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[11] = Courier-Oblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[12] = Helvetica D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[13] = Helvetica-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[14] = Helvetica-BoldOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[15] = Helvetica-Narrow D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[16] = Helvetica-Narrow-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[17] = Helvetica-Narrow-BoldOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[18] = Helvetica-Narrow-Oblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[19] = Helvetica-Oblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[20] = NewCenturySchlbk-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[21] = NewCenturySchlbk-BoldItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[22] = NewCenturySchlbk-Italic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[23] = NewCenturySchlbk-Roman D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[24] = Palatino-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[25] = Palatino-BoldItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[26] = Palatino-Italic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[27] = Palatino-Roman D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[28] = Symbol D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[29] = Times-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[30] = Times-BoldItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[31] = Times-Italic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[32] = Times-Roman D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[33] = ZapfChancery-MediumItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[34] = ZapfDingbats D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->num_fonts = 35 D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[0] = AvantGarde-Book D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[1] = AvantGarde-BookOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[2] = AvantGarde-Demi D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[3] = AvantGarde-DemiOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[4] = Bookman-Demi D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[5] = Bookman-DemiItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[6] = Bookman-Light D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[7] = Bookman-LightItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[8] = Courier D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[9] = Courier-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[10] = Courier-BoldOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[11] = Courier-Oblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[12] = Helvetica D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[13] = Helvetica-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[14] = Helvetica-BoldOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[15] = Helvetica-Narrow D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[16] = Helvetica-Narrow-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[17] = Helvetica-Narrow-BoldOblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[18] = Helvetica-Narrow-Oblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[19] = Helvetica-Oblique D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[20] = NewCenturySchlbk-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[21] = NewCenturySchlbk-BoldItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[22] = NewCenturySchlbk-Italic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[23] = NewCenturySchlbk-Roman D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[24] = Palatino-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[25] = Palatino-BoldItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[26] = Palatino-Italic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[27] = Palatino-Roman D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[28] = Symbol D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[29] = Times-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[30] = Times-BoldItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[31] = Times-Italic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[32] = Times-Roman D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[33] = ZapfChancery-MediumItalic D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[34] = ZapfDingbats D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object "libgnutls.so.47" not found, required by "rastertogutenprint.5.2" D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object "libgnutls.so.47" not found, required by "espgs" D [10/Mar/2013:14:18:04 -0500] [Job 12] Page = 612x792; 0,0 to 612,792 D [10/Mar/2013:14:18:04 -0500] [Job 12] slow_collate=0, slow_duplex=0, slow_order=0 D [10/Mar/2013:14:18:04 -0500] [Job 12] Before copy_comments - %!PS-Adobe-3.0 D [10/Mar/2013:14:18:04 -0500] [Job 12] %!PS-Adobe-3.0 D [10/Mar/2013:14:18:04 -0500] [Job 12] %%BoundingBox: 0 0 612 792 D [10/Mar/2013:14:18:04 -0500] [Job 12] %cupsRotation: 0 D [10/Mar/2013:14:18:04 -0500] [Job 12] %%Creator: texttops/CUPS v1.5.4 D [10/Mar/2013:14:18:04 -0500] [Job 12] %%CreationDate: Sun Mar 10 14:18:04 2013 D [10/Mar/2013:14:18:04 -0500] [Job 12] %%Title: ((stdin)) D [10/Mar/2013:14:18:04 -0500] [Job 12] %%For: (root) D [10/Mar/2013:14:18:04 -0500] [Job 12] %%Pages: (atend) D [10/Mar/2013:14:18:04 -0500] [Job 12] %%DocumentNeededResources: font Monospace-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] %%+ font Monospace D [10/Mar/2013:14:18:04 -0500] [Job 12] %%DocumentSuppliedResources: procset texttops 1.1 0 D [10/Mar/2013:14:18:04 -0500] [Job 12] %%+ font Monospace-Bold D [10/Mar/2013:14:18:04 -0500] [Job 12] %%+ font Monospace D [10/Mar/2013:14:18:04 -0500] [Job 12] %%EndComments D [10/Mar/2013:14:18:04 -0500] [Job 12] Before copy_prolog - %%BeginProlog D [10/Mar/2013:14:18:04 -0500] [Job 12] Before copy_setup - %%Page: 1 1 D [10/Mar/2013:14:18:04 -0500] [Job 12] Before page loop - %%Page: 1 1 D [10/Mar/2013:14:18:04 -0500] [Job 12] Copying page 1... D [10/Mar/2013:14:18:04 -0500] [Job 12] pagew = 612.0, pagel = 792.0 D [10/Mar/2013:14:18:04 -0500] [Job 12] bboxx = 0, bboxy = 0, bboxw = 612, bboxl = 792 D [10/Mar/2013:14:18:04 -0500] [Job 12] PageLeft = 0.0, PageRight = 612.0 D [10/Mar/2013:14:18:04 -0500] [Job 12] PageTop = 792.0, PageBottom = 0.0 D [10/Mar/2013:14:18:04 -0500] [Job 12] PageWidth = 612.0, PageLength = 792.0 D [10/Mar/2013:14:18:04 -0500] [Job 12] Wrote 1 pages... D [10/Mar/2013:14:18:04 -0500] [Job 12] End of messages D [10/Mar/2013:14:18:04 -0500] [Job 12] printer-state=3(idle) D [10/Mar/2013:14:18:04 -0500] [Job 12] printer-state-message="/usr/local/libexec/cups/filter/rastertogutenprint.5.2 failed" D [10/Mar/2013:14:18:04 -0500] [Job 12] printer-state-reasons=none # less page_log has no entries now trying through web interface as generic printer, resetting all logs, too. sending command: # date | lpr -PPIXMA returns w/o error, logs show: # less access_log localhost - root [10/Mar/2013:14:22:56 -0500] "POST /admin/ HTTP/1.1" 200 60 - - localhost - - [10/Mar/2013:14:22:56 -0500] "POST / HTTP/1.1" 401 91 CUPS-Get-Devices successful-ok localhost - root [10/Mar/2013:14:22:56 -0500] "POST / HTTP/1.1" 200 1565 CUPS-Get-Devices - localhost - root [10/Mar/2013:14:22:56 -0500] "POST /admin/ HTTP/1.1" 200 3062 - - localhost - root [10/Mar/2013:14:23:02 -0500] "POST /admin HTTP/1.1" 200 92 - - localhost - root [10/Mar/2013:14:23:02 -0500] "POST /admin HTTP/1.1" 200 3148 - - localhost - root [10/Mar/2013:14:23:18 -0500] "POST /admin HTTP/1.1" 200 191 - - localhost - - [10/Mar/2013:14:23:18 -0500] "POST / HTTP/1.1" 200 1581 CUPS-Get-PPDs - localhost - root [10/Mar/2013:14:23:18 -0500] "POST /admin HTTP/1.1" 200 5497 - - localhost - root [10/Mar/2013:14:23:38 -0500] "POST /admin HTTP/1.1" 200 1900 - - localhost - - [10/Mar/2013:14:23:38 -0500] "POST / HTTP/1.1" 200 26055 CUPS-Get-PPDs - localhost - root [10/Mar/2013:14:23:38 -0500] "POST /admin HTTP/1.1" 200 15717 - - localhost - root [10/Mar/2013:14:24:10 -0500] "POST /admin HTTP/1.1" 200 1938 - - localhost - - [10/Mar/2013:14:24:10 -0500] "POST /admin/ HTTP/1.1" 401 325 CUPS-Add-Modify-Printer successful-ok localhost - root [10/Mar/2013:14:24:10 -0500] "POST /admin/ HTTP/1.1" 200 325 CUPS-Add-Modify-Printer successful-ok localhost - root [10/Mar/2013:14:24:10 -0500] "POST /admin HTTP/1.1" 200 8976 - - localhost - root [10/Mar/2013:14:24:14 -0500] "POST /admin HTTP/1.1" 200 249 - - localhost - - [10/Mar/2013:14:24:14 -0500] "POST /admin/ HTTP/1.1" 401 8108 CUPS-Add-Modify-Printer successful-ok localhost - root [10/Mar/2013:14:24:14 -0500] "POST /admin/ HTTP/1.1" 200 8108 CUPS-Add-Modify-Printer successful-ok localhost - root [10/Mar/2013:14:24:14 -0500] "POST /admin HTTP/1.1" 200 2201 - - localhost - - [10/Mar/2013:14:24:37 -0500] "POST /printers/PIXMA HTTP/1.1" 200 302 Create-Job successful-ok localhost - - [10/Mar/2013:14:24:37 -0500] "POST /printers/PIXMA HTTP/1.1" 200 261 Send-Document successful-ok # less error_log W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz! W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz! W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz! W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz! W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz! W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz! W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz! W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz! W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz! W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz! E [10/Mar/2013:14:23:19 -0500] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! E [10/Mar/2013:14:23:19 -0500] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/kyocera_ppd_8.2.txt"! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz! W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in /usr/local/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz! E [10/Mar/2013:14:23:39 -0500] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! E [10/Mar/2013:14:23:39 -0500] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/kyocera_ppd_8.2.txt"! less page_log PIXMA root 13 [10/Mar/2013:14:24:37 -0500] 1 1 - localhost (stdin) - - Still no printing going on. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 19:31:43 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D591A781 for ; Sun, 10 Mar 2013 19:31:43 +0000 (UTC) (envelope-from doug@safeport.com) Received: from oceanpt.safeport.com (oceanpt.safeport.com [65.122.17.3]) by mx1.freebsd.org (Postfix) with ESMTP id 216A9CC3 for ; Sun, 10 Mar 2013 19:31:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by oceanpt.safeport.com (8.14.2/8.14.2) with ESMTP id r2AJVfT8037154 for ; Sun, 10 Mar 2013 15:31:41 -0400 (EDT) (envelope-from doug@safeport.com) Date: Sun, 10 Mar 2013 15:31:41 -0400 (EDT) From: doug@safeport.com To: freebsd-questions@freebsd.org Subject: Re: vlan routing In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0 (oceanpt.safeport.com [127.0.0.1]); Sun, 10 Mar 2013 15:31:41 -0400 (EDT) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 19:31:43 -0000 On Sun, 10 Mar 2013, ??????? ??????? wrote: > 2013/3/10 : >> I am trying set this up. First I munged the IP addresses. Not to worry if I >> hit yours. I did the following commands: >> >> ifconfig vlan0 create >> ifconfig vlan0 vlan 95 vlandev fxp0 >> ifconfig vlan0 inet 134.217.128.117 netmask 255.255.255.0 >> ifconfig fxp0 add 134.217.128.117 netmask 255.255.255.0 >> route add -inet 134.217.128.117 134.217.128.1 >> >> ifconfig shows: >> >> fxp0: flags=8843 metric 0 mtu 1500 >> options=8 >> ether 00:d0:b7:56:cf:ab >> inet 45.22.17.3 netmask 0xfffffc00 broadcast 45.22.19.255 >> inet 45.22.17.17 netmask 0xffffffff broadcast 45.22.17.17 >> inet 134.217.128.117 netmask 0xffffff00 broadcast 134.217.128.255 >> media: Ethernet autoselect (100baseTX ) >> status: active >> bge0: flags=8802 metric 0 mtu 1500 >> options=9b >> ether 00:09:5b:60:e4:1f >> media: Ethernet autoselect (none) >> status: no carrier >> vlan0: flags=8843 metric 0 mtu 1500 >> ether 00:d0:b7:56:cf:ab >> inet 134.217.128.117 netmask 0xffffff00 broadcast 134.217.128.255 >> media: Ethernet autoselect (100baseTX ) >> status: active >> vlan: 95 parent interface: fxp0 >> >> Needless to say it does not work. The switch is programmed correctly (I am >> told). My questions are (1) it seems like the option got applied to the >> wrong interface; (2) what did I miss?? >> >> I also tried booting the system with IP of 134.217.128.117 but I did not get >> the rc.conf macros correctly. I do know I can not route through the switch >> without going the vlan commands. >> >> _____ >> Douglas Denault >> http://www.safeport.com >> doug@safeport.com >> Voice: 301-217-9220 >> Fax: 301-217-9277 >> _______________________________________________ >> 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 guess you shouldn't put the same IP address on two interfaces (vlan > and fxp0), you need to decide wherther you need tagged or untagged > vlan frames there and, depending on this decision put the IP address > on VLAN interface (tagged variant) or fxp0 (untagged one). > > If i understand your task correctly, then this line is faulty from > your configuration: >> ifconfig fxp0 add 134.217.128.117 netmask 255.255.255.0 > You don't need it. > >> route add -inet 134.217.128.117 134.217.128.1 > This is smth absoulutely wrong:) > > Basically, if you only need a vlan interface that could be used for > routing, you need these commands only: > > ifconfig vlan95 create > ifconfig vlan95 inet 134.217.128.117/24 vlan 95 vlandev fxp0 > > and in /etc/rc.conf you should put such strings: > > cloned_interfaces="vlan95" > ifconfig_vlan95="inet 134.217.128.117/24 vlan 95 vlandev fxp0" > > for the interface to be created on reboot. > Hope this helps. Thanks I will try _____ Douglas Denault http://www.safeport.com doug@safeport.com Voice: 301-217-9220 Fax: 301-217-9277 From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 20:07:38 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E8634E89 for ; Sun, 10 Mar 2013 20:07:38 +0000 (UTC) (envelope-from tomek.cedro@gmail.com) Received: from mail-qe0-f51.google.com (mail-qe0-f51.google.com [209.85.128.51]) by mx1.freebsd.org (Postfix) with ESMTP id AF3B0DDB for ; Sun, 10 Mar 2013 20:07:38 +0000 (UTC) Received: by mail-qe0-f51.google.com with SMTP id nd7so1928978qeb.38 for ; Sun, 10 Mar 2013 13:07:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:date:x-google-sender-auth:message-id :subject:from:to:content-type:content-transfer-encoding; bh=7sDTq+xiO0jc4x7YqmL7sMUR5pbgtEVYJA8ji41zcwA=; b=g13pPVi2gvKt32payihTCESy+ARLLO5sdoFA11NW+GtMhiLdcEx5dVdefp1HImTHW5 8X5n64a6Sap580bOC+StteOcXnShNvtAVyYzUYbYUI520XozayFN+YJWxGqI47BcD30q awD24uIUnnFyFHvXfWdJktUBeaFlNkaOF8q9KviEmAP89Su30Fm7nvA3MaqpbIyURbQC Zc5z2Lu9beUdwxL1KjWpQZ86t8IhBlfBnPgDHfcly0+qULcj2z4Md7OagMo0rk+zptII EvQQY2DAJ8QRPG61AeuJevX8c/IExPdOWGGvKn3XTCVc2FaqiVJTOSQ4JpmtDpqdN1m4 sI5A== MIME-Version: 1.0 X-Received: by 10.224.32.9 with SMTP id a9mr13885659qad.87.1362946051820; Sun, 10 Mar 2013 13:07:31 -0700 (PDT) Sender: tomek.cedro@gmail.com Received: by 10.49.120.7 with HTTP; Sun, 10 Mar 2013 13:07:31 -0700 (PDT) Date: Sun, 10 Mar 2013 21:07:31 +0100 X-Google-Sender-Auth: jwlzDFHmOu1UXRsFehTdv2PtWrA Message-ID: Subject: growisofs does not burn folders correctly all files are flat on the disk no folders From: CeDeROM To: FreeBSD Questions Mailing List Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 20:07:39 -0000 Hey :-) I have problem with growisofs - I get all files flat on the disk there are no directories as on the source drive :-( I had this once with BD and once with DVD disk on my new 9.1-RELEASE machine. growisofs -Z/dev/cd2 -dvd-compat -R -J -iso-level 3 -udf * % growisofs --version * growisofs by , version 7.1, front-ending to mkisofs: mkisofs 3.00 (amd64-unknown-freebsd9.1) Copyright (C) 1993-1997 Eric Youngdale (C) 1997-2010 J=EF=BF=BDrg Schilling Any hints welcome :-) Tomek --=20 CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 20:41:26 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CE435483 for ; Sun, 10 Mar 2013 20:41:26 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ia0-x22e.google.com (mail-ia0-x22e.google.com [IPv6:2607:f8b0:4001:c02::22e]) by mx1.freebsd.org (Postfix) with ESMTP id 9470EEEE for ; Sun, 10 Mar 2013 20:41:26 +0000 (UTC) Received: by mail-ia0-f174.google.com with SMTP id k38so1340544iah.33 for ; Sun, 10 Mar 2013 13:41:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=172xYfpMooYO0eoitMSjr3gOhx68Po96RqQ8Fb2QZAs=; b=A+45/oUpgmzkOCqwnBnEESAp0D0fFKs+EY2UvfakeNaZ5+NhJ1RAU9eWUM1WywrRSA R347y33uW4r2egnL7y25Yld3DVUjnjhEwn0MxvgnpRDt9svugR2IHH/a+wD92SfGWOjC 6TniipGQHsZ0d3w1ijK5Hbiz9omY/OugM14OpmA2y205pEhxn3ymoZCVma0IuBRxIfWW fuJGEHGwEd43DOp0mizXHZzok4Wmw2G3YzrJNEDqm+Sx3ZXVuUhqCnLIlv08NiFijoJ2 vZoyjGFDPxepLApjDsbLP+YtsyGswUggtWurs7d07DukDaGftjER4LOlr8R7YhVk/7I8 ay3Q== X-Received: by 10.50.184.132 with SMTP id eu4mr5335338igc.19.1362948086253; Sun, 10 Mar 2013 13:41:26 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id i10sm8985647igz.9.2013.03.10.13.41.24 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Mar 2013 13:41:25 -0700 (PDT) Message-ID: <513CEFF1.2090102@gmail.com> Date: Sun, 10 Mar 2013 15:41:21 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Chris Petrik Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <513CED38.3020405@sdf.org> In-Reply-To: <513CED38.3020405@sdf.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: c.petrik.sosa@gmail.com, jmc-freebsd2@milibyte.co.uk, Matthias Apitz , "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 20:41:26 -0000 On 03/10/13 15:29, Chris Petrik wrote: > Are you using /usr/local/bin/lpr or /usr/bin/lpr also did you specify to > rename cups stuff to be installed as system wide ? I don't know? make.conf: WITH_CUPS=YES CUPS_OVERWRITE_BASE=YES WITHOUT_LPR=YES And, as per earlier in this thread: ls -la /usr/bin/lpr ---------- 1 root daemon 37104 Dec 4 03:34 /usr/bin/lpr > Also you dont specify which printer is it > Sorry, I thought I brought in the maintainer on my first email, saw s/he wasn't in later emails and added. Canon Pixma MP210 -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 20:57:18 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 400CB7D6 for ; Sun, 10 Mar 2013 20:57:18 +0000 (UTC) (envelope-from cpet@sdf.org) Received: from sdf.lonestar.org (mx.sdf.org [192.94.73.19]) by mx1.freebsd.org (Postfix) with ESMTP id E5565F80 for ; Sun, 10 Mar 2013 20:57:17 +0000 (UTC) Received: from [192.168.1.64] (dsl-187-150-28-161-dyn.prod-infinitum.com.mx [187.150.28.161] (may be forged)) (authenticated (0 bits)) by sdf.lonestar.org (8.14.5/8.14.5) with ESMTP id r2AKTit5012040; Sun, 10 Mar 2013 20:29:45 GMT Message-ID: <513CED38.3020405@sdf.org> Date: Sun, 10 Mar 2013 14:29:44 -0600 From: Chris Petrik User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Joseph A. Nagy, Jr" Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> In-Reply-To: <513CDE73.4010505@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: c.petrik.sosa@gmail.com, jmc-freebsd2@milibyte.co.uk, Matthias Apitz , "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 20:57:18 -0000 On 03/10/2013 01:26 PM, Joseph A. Nagy, Jr wrote: > On 03/05/13 23:47, Matthias Apitz wrote: >> El día Tuesday, March 05, 2013 a las 03:42:15PM -0600, Joseph A. >> Nagy, Jr escribió: >> >>>> then the test is >>>> >>>> $ date | lpr -PPIXMA >>>> >>>> matthias >>>> >>> >>> I figured that out, sent the test, it queud the job and stuck there. >>> When I get home I'm going to clear the cups logs and start over again. >> >> Does the CUPS' test page works from the web interface? If not, try to >> configure the printer as Generic Postscript first. >> >> matthias >> > w/o using the web interface (I don't particularly care for it, > honestly, I find it confusing) I deleted the old logs, restarted the > cupsd service, and sent > > # date | lpr -PPIXMA > less access_log > localhost - - [10/Mar/2013:14:08:23 -0500] "POST /printers/PIXMA > HTTP/1.1" 200 302 Create-Job successful-ok > localhost - - [10/Mar/2013:14:08:23 -0500] "POST /printers/PIXMA > HTTP/1.1" 200 261 Send-Document successful-ok > > Nothing in error_log or page_log > > Trying the web interface now. > > Added the printer via the web interface using usual drivers, logs show > the following: > # less access_log > localhost - - [10/Mar/2013:14:14:53 -0500] "POST /admin/ HTTP/1.1" 200 > 66 - - > localhost - - [10/Mar/2013:14:14:53 -0500] "POST / HTTP/1.1" 401 75 > CUPS-Get-Devices successful-ok > localhost - - [10/Mar/2013:14:14:53 -0500] "POST /admin/ HTTP/1.1" 200 > 1864 - - > localhost - - [10/Mar/2013:14:14:58 -0500] "POST /admin/ HTTP/1.1" 200 > 60 - - > localhost - - [10/Mar/2013:14:14:58 -0500] "POST / HTTP/1.1" 401 91 > CUPS-Get-Devices successful-ok > localhost - - [10/Mar/2013:14:14:58 -0500] "POST /admin/ HTTP/1.1" 401 > 60 - - > localhost - - [10/Mar/2013:14:14:58 -0500] "POST /admin/ HTTP/1.1" 200 > 60 - - > localhost - root [10/Mar/2013:14:15:07 -0500] "POST /admin/ HTTP/1.1" > 200 60 - - > localhost - - [10/Mar/2013:14:15:07 -0500] "POST / HTTP/1.1" 401 91 > CUPS-Get-Devices successful-ok > localhost - root [10/Mar/2013:14:15:07 -0500] "POST / HTTP/1.1" 200 > 1565 CUPS-Get-Devices - > localhost - root [10/Mar/2013:14:15:07 -0500] "POST /admin/ HTTP/1.1" > 200 3062 - - > localhost - - [10/Mar/2013:14:15:24 -0500] "POST /admin HTTP/1.1" 200 > 92 - - > localhost - - [10/Mar/2013:14:15:24 -0500] "POST /admin HTTP/1.1" 200 > 3148 - - > localhost - - [10/Mar/2013:14:15:39 -0500] "POST /admin HTTP/1.1" 200 > 212 - - > localhost - - [10/Mar/2013:14:15:39 -0500] "POST / HTTP/1.1" 200 1581 > CUPS-Get-PPDs - > localhost - - [10/Mar/2013:14:15:39 -0500] "POST /admin HTTP/1.1" 200 > 5514 - - > localhost - - [10/Mar/2013:14:15:59 -0500] "POST /admin HTTP/1.1" 200 > 1932 - - > localhost - - [10/Mar/2013:14:15:59 -0500] "POST / HTTP/1.1" 200 > 493199 CUPS-Get-PPDs - > localhost - - [10/Mar/2013:14:15:59 -0500] "POST /admin HTTP/1.1" 200 > 206446 - - > localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" 200 > 1951 - - > localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin/ HTTP/1.1" 401 > 352 CUPS-Add-Modify-Printer successful-ok > localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" 401 > 1951 - - > localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" 200 > 1951 - - > localhost - root [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" > 200 1951 - - > localhost - - [10/Mar/2013:14:16:59 -0500] "POST /admin/ HTTP/1.1" 401 > 352 CUPS-Add-Modify-Printer successful-ok > localhost - root [10/Mar/2013:14:16:59 -0500] "POST /admin/ HTTP/1.1" > 200 352 CUPS-Add-Modify-Printer successful-ok > localhost - root [10/Mar/2013:14:16:59 -0500] "POST /admin HTTP/1.1" > 200 70230 - - > localhost - root [10/Mar/2013:14:17:29 -0500] "POST /admin HTTP/1.1" > 200 2063 - - > localhost - - [10/Mar/2013:14:17:29 -0500] "POST /admin/ HTTP/1.1" 401 > 522723 CUPS-Add-Modify-Printer successful-ok > localhost - root [10/Mar/2013:14:17:29 -0500] "POST /admin/ HTTP/1.1" > 200 522723 CUPS-Add-Modify-Printer successful-ok > localhost - root [10/Mar/2013:14:17:29 -0500] "POST /admin HTTP/1.1" > 200 4015 - - > localhost - - [10/Mar/2013:14:18:04 -0500] "POST /printers/PIXMA > HTTP/1.1" 200 302 Create-Job successful-ok > localhost - - [10/Mar/2013:14:18:04 -0500] "POST /printers/PIXMA > HTTP/1.1" 200 261 Send-Document successful-ok > > # less error_log > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz! > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz! > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz! > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz! > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz! > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz! > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz! > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz! > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz! > W [10/Mar/2013:14:15:40 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz! > E [10/Mar/2013:14:15:40 -0500] [cups-driverd] Bad driver information > file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! > E [10/Mar/2013:14:15:40 -0500] [cups-driverd] Bad driver information > file > "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/kyocera_ppd_8.2.txt"! > W [10/Mar/2013:14:15:59 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz! > W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz! > W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz! > W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz! > W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz! > W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz! > W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz! > W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz! > W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz! > W [10/Mar/2013:14:16:00 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz! > E [10/Mar/2013:14:16:00 -0500] [cups-driverd] Bad driver information > file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! > E [10/Mar/2013:14:16:00 -0500] [cups-driverd] Bad driver information > file > "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/kyocera_ppd_8.2.txt"! > E [10/Mar/2013:14:18:04 -0500] [Job 12] Job stopped due to filter > errors; please consult the error_log file for details. > D [10/Mar/2013:14:18:04 -0500] [Job 12] The following messages were > recorded from 14:18:04 to 14:18:04 > D [10/Mar/2013:14:18:04 -0500] [Job 12] Adding start banner page "none". > D [10/Mar/2013:14:18:04 -0500] [Job 12] Queued on "PIXMA" by "root". > D [10/Mar/2013:14:18:04 -0500] [Job 12] Auto-typing file... > D [10/Mar/2013:14:18:04 -0500] [Job 12] Request file type is text/plain. > D [10/Mar/2013:14:18:04 -0500] [Job 12] File of type text/plain queued > by "root". > D [10/Mar/2013:14:18:04 -0500] [Job 12] Adding end banner page "none". > D [10/Mar/2013:14:18:04 -0500] [Job 12] job-sheets=none,none > D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[0]="PIXMA" > D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[1]="12" > D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[2]="root" > D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[3]="(stdin)" > D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[4]="1" > D [10/Mar/2013:14:18:04 -0500] [Job 12] argv[5]="finishings=3 > number-up=1 job-uuid=urn:uuid:580bc5de-6ae0-3db1-7a65-e048e3412ee3 > job-originating-host-name=localhost time-at-creation=1362943084 > time-at-processing=1362943084" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > argv[6]="/var/spool/cups/d00012-001" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[0]="CUPS_CACHEDIR=/var/db/cups" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[1]="CUPS_DATADIR=/usr/local/share/cups" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[2]="CUPS_DOCROOT=/usr/local/share/doc/cups" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[3]="CUPS_FONTPATH=/usr/local/share/cups/fonts" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[4]="CUPS_REQUESTROOT=/var/spool/cups" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[5]="CUPS_SERVERBIN=/usr/local/libexec/cups" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[6]="CUPS_SERVERROOT=/usr/local/etc/cups" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[7]="CUPS_STATEDIR=/var/run/cups" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[8]="HOME=/var/spool/cups/tmp" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[9]="PATH=/usr/local/libexec/cups/filter:/usr/local/bin:/usr/local/sbin:/bin:/usr/bin" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[10]="SERVER_ADMIN=root@alex-laptop" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[11]="SOFTWARE=CUPS/1.5.4" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[12]="TMPDIR=/var/spool/cups/tmp" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[13]="USER=root" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[14]="CUPS_MAX_MESSAGE=2047" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[15]="CUPS_SERVER=/var/run/cups.sock" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[16]="CUPS_ENCRYPTION=IfRequested" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[17]="IPP_PORT=631" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[18]="CHARSET=utf-8" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[19]="LANG=en_US.UTF-8" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[20]="PPD=/usr/local/etc/cups/ppd/PIXMA.ppd" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[21]="RIP_MAX_CACHE=128m" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[22]="CONTENT_TYPE=text/plain" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[23]="DEVICE_URI=usb:/dev/ulpt0" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[24]="PRINTER_INFO=Pixma > MP-210" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[25]="PRINTER_LOCATION=office" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[26]="PRINTER=PIXMA" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[27]="PRINTER_STATE_REASONS=none" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[28]="CUPS_FILETYPE=document" > D [10/Mar/2013:14:18:04 -0500] [Job 12] > envp[29]="FINAL_CONTENT_TYPE=printer/PIXMA" > D [10/Mar/2013:14:18:04 -0500] [Job 12] envp[30]="AUTH_I****" > D [10/Mar/2013:14:18:04 -0500] [Job 12] Started filter > /usr/local/libexec/cups/filter/texttops (PID 26709) > D [10/Mar/2013:14:18:04 -0500] [Job 12] Started filter > /usr/local/libexec/cups/filter/pstops (PID 26710) > D [10/Mar/2013:14:18:04 -0500] [Job 12] Started filter > /usr/local/libexec/cups/filter/pstoraster (PID 26711) > D [10/Mar/2013:14:18:04 -0500] [Job 12] Started filter > /usr/local/libexec/cups/filter/rastertogutenprint.5.2 (PID 26712) > D [10/Mar/2013:14:18:04 -0500] [Job 12] Started backend > /usr/local/libexec/cups/backend/usb (PID 26713) > D [10/Mar/2013:14:18:04 -0500] [Job 12] STATE: +connecting-to-device > D [10/Mar/2013:14:18:04 -0500] [Job 12] Starting GNU/GPL Ghostscript... > D [10/Mar/2013:14:18:04 -0500] [Job 12] Set job-printer-state-message > to "Starting GNU/GPL Ghostscript...", current level=INFO > D [10/Mar/2013:14:18:04 -0500] [Job 12] Running /usr/local/bin/espgs > -dQUIET -dDEBUG -dPARANOIDSAFER -dNOPAUSE -dBATCH -dNOMEDIAATTRS > -sDEVICE=cups -sstdout=%stderr -sOUTPUTFILE=%stdout -c - > D [10/Mar/2013:14:18:04 -0500] [Job 12] STATE: -connecting-to-device > D [10/Mar/2013:14:18:04 -0500] [Job 12] backendRunLoop(print_fd=0, > device_fd=5, snmp_fd=-1, addr=0x0, use_bc=0, side_cb=0x4021f0) > D [10/Mar/2013:14:18:04 -0500] [Job 12] Page = 612x792; 0,0 to 612,792 > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->num_fonts = 35 > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[0] = AvantGarde-Book > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[1] = > AvantGarde-BookOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[2] = AvantGarde-Demi > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[3] = > AvantGarde-DemiOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[4] = Bookman-Demi > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[5] = > Bookman-DemiItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[6] = Bookman-Light > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[7] = > Bookman-LightItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[8] = Courier > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[9] = Courier-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[10] = > Courier-BoldOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[11] = Courier-Oblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[12] = Helvetica > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[13] = Helvetica-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[14] = > Helvetica-BoldOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[15] = Helvetica-Narrow > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[16] = > Helvetica-Narrow-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[17] = > Helvetica-Narrow-BoldOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[18] = > Helvetica-Narrow-Oblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[19] = > Helvetica-Oblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[20] = > NewCenturySchlbk-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[21] = > NewCenturySchlbk-BoldItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[22] = > NewCenturySchlbk-Italic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[23] = > NewCenturySchlbk-Roman > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[24] = Palatino-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[25] = > Palatino-BoldItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[26] = Palatino-Italic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[27] = Palatino-Roman > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[28] = Symbol > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[29] = Times-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[30] = Times-BoldItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[31] = Times-Italic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[32] = Times-Roman > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[33] = > ZapfChancery-MediumItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[34] = ZapfDingbats > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->num_fonts = 35 > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[0] = AvantGarde-Book > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[1] = > AvantGarde-BookOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[2] = AvantGarde-Demi > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[3] = > AvantGarde-DemiOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[4] = Bookman-Demi > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[5] = > Bookman-DemiItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[6] = Bookman-Light > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[7] = > Bookman-LightItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[8] = Courier > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[9] = Courier-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[10] = > Courier-BoldOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[11] = Courier-Oblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[12] = Helvetica > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[13] = Helvetica-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[14] = > Helvetica-BoldOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[15] = Helvetica-Narrow > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[16] = > Helvetica-Narrow-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[17] = > Helvetica-Narrow-BoldOblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[18] = > Helvetica-Narrow-Oblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[19] = > Helvetica-Oblique > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[20] = > NewCenturySchlbk-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[21] = > NewCenturySchlbk-BoldItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[22] = > NewCenturySchlbk-Italic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[23] = > NewCenturySchlbk-Roman > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[24] = Palatino-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[25] = > Palatino-BoldItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[26] = Palatino-Italic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[27] = Palatino-Roman > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[28] = Symbol > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[29] = Times-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[30] = Times-BoldItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[31] = Times-Italic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[32] = Times-Roman > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[33] = > ZapfChancery-MediumItalic > D [10/Mar/2013:14:18:04 -0500] [Job 12] ppd->fonts[34] = ZapfDingbats > D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object > "libgnutls.so.47" not found, required by "rastertogutenprint.5.2" > D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object > "libgnutls.so.47" not found, required by "espgs" > D [10/Mar/2013:14:18:04 -0500] [Job 12] Page = 612x792; 0,0 to 612,792 > D [10/Mar/2013:14:18:04 -0500] [Job 12] slow_collate=0, slow_duplex=0, > slow_order=0 > D [10/Mar/2013:14:18:04 -0500] [Job 12] Before copy_comments - > %!PS-Adobe-3.0 > D [10/Mar/2013:14:18:04 -0500] [Job 12] %!PS-Adobe-3.0 > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%BoundingBox: 0 0 612 792 > D [10/Mar/2013:14:18:04 -0500] [Job 12] %cupsRotation: 0 > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%Creator: texttops/CUPS v1.5.4 > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%CreationDate: Sun Mar 10 > 14:18:04 2013 > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%Title: ((stdin)) > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%For: (root) > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%Pages: (atend) > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%DocumentNeededResources: > font Monospace-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%+ font Monospace > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%DocumentSuppliedResources: > procset texttops 1.1 0 > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%+ font Monospace-Bold > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%+ font Monospace > D [10/Mar/2013:14:18:04 -0500] [Job 12] %%EndComments > D [10/Mar/2013:14:18:04 -0500] [Job 12] Before copy_prolog - > %%BeginProlog > D [10/Mar/2013:14:18:04 -0500] [Job 12] Before copy_setup - %%Page: 1 1 > D [10/Mar/2013:14:18:04 -0500] [Job 12] Before page loop - %%Page: 1 1 > D [10/Mar/2013:14:18:04 -0500] [Job 12] Copying page 1... > D [10/Mar/2013:14:18:04 -0500] [Job 12] pagew = 612.0, pagel = 792.0 > D [10/Mar/2013:14:18:04 -0500] [Job 12] bboxx = 0, bboxy = 0, bboxw = > 612, bboxl = 792 > D [10/Mar/2013:14:18:04 -0500] [Job 12] PageLeft = 0.0, PageRight = 612.0 > D [10/Mar/2013:14:18:04 -0500] [Job 12] PageTop = 792.0, PageBottom = 0.0 > D [10/Mar/2013:14:18:04 -0500] [Job 12] PageWidth = 612.0, PageLength > = 792.0 > D [10/Mar/2013:14:18:04 -0500] [Job 12] Wrote 1 pages... > D [10/Mar/2013:14:18:04 -0500] [Job 12] End of messages > D [10/Mar/2013:14:18:04 -0500] [Job 12] printer-state=3(idle) > D [10/Mar/2013:14:18:04 -0500] [Job 12] > printer-state-message="/usr/local/libexec/cups/filter/rastertogutenprint.5.2 > failed" > D [10/Mar/2013:14:18:04 -0500] [Job 12] printer-state-reasons=none > > # less page_log > has no entries > > now trying through web interface as generic printer, resetting all > logs, too. > > sending command: > # date | lpr -PPIXMA > > returns w/o error, logs show: > > # less access_log > localhost - root [10/Mar/2013:14:22:56 -0500] "POST /admin/ HTTP/1.1" > 200 60 - - > localhost - - [10/Mar/2013:14:22:56 -0500] "POST / HTTP/1.1" 401 91 > CUPS-Get-Devices successful-ok > localhost - root [10/Mar/2013:14:22:56 -0500] "POST / HTTP/1.1" 200 > 1565 CUPS-Get-Devices - > localhost - root [10/Mar/2013:14:22:56 -0500] "POST /admin/ HTTP/1.1" > 200 3062 - - > localhost - root [10/Mar/2013:14:23:02 -0500] "POST /admin HTTP/1.1" > 200 92 - - > localhost - root [10/Mar/2013:14:23:02 -0500] "POST /admin HTTP/1.1" > 200 3148 - - > localhost - root [10/Mar/2013:14:23:18 -0500] "POST /admin HTTP/1.1" > 200 191 - - > localhost - - [10/Mar/2013:14:23:18 -0500] "POST / HTTP/1.1" 200 1581 > CUPS-Get-PPDs - > localhost - root [10/Mar/2013:14:23:18 -0500] "POST /admin HTTP/1.1" > 200 5497 - - > localhost - root [10/Mar/2013:14:23:38 -0500] "POST /admin HTTP/1.1" > 200 1900 - - > localhost - - [10/Mar/2013:14:23:38 -0500] "POST / HTTP/1.1" 200 26055 > CUPS-Get-PPDs - > localhost - root [10/Mar/2013:14:23:38 -0500] "POST /admin HTTP/1.1" > 200 15717 - - > localhost - root [10/Mar/2013:14:24:10 -0500] "POST /admin HTTP/1.1" > 200 1938 - - > localhost - - [10/Mar/2013:14:24:10 -0500] "POST /admin/ HTTP/1.1" 401 > 325 CUPS-Add-Modify-Printer successful-ok > localhost - root [10/Mar/2013:14:24:10 -0500] "POST /admin/ HTTP/1.1" > 200 325 CUPS-Add-Modify-Printer successful-ok > localhost - root [10/Mar/2013:14:24:10 -0500] "POST /admin HTTP/1.1" > 200 8976 - - > localhost - root [10/Mar/2013:14:24:14 -0500] "POST /admin HTTP/1.1" > 200 249 - - > localhost - - [10/Mar/2013:14:24:14 -0500] "POST /admin/ HTTP/1.1" 401 > 8108 CUPS-Add-Modify-Printer successful-ok > localhost - root [10/Mar/2013:14:24:14 -0500] "POST /admin/ HTTP/1.1" > 200 8108 CUPS-Add-Modify-Printer successful-ok > localhost - root [10/Mar/2013:14:24:14 -0500] "POST /admin HTTP/1.1" > 200 2201 - - > localhost - - [10/Mar/2013:14:24:37 -0500] "POST /printers/PIXMA > HTTP/1.1" 200 302 Create-Job successful-ok > localhost - - [10/Mar/2013:14:24:37 -0500] "POST /printers/PIXMA > HTTP/1.1" 200 261 Send-Document successful-ok > > # less error_log > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz! > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz! > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz! > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz! > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz! > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz! > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz! > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz! > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz! > W [10/Mar/2013:14:23:19 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz! > E [10/Mar/2013:14:23:19 -0500] [cups-driverd] Bad driver information > file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! > E [10/Mar/2013:14:23:19 -0500] [cups-driverd] Bad driver information > file > "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/kyocera_ppd_8.2.txt"! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz! > W [10/Mar/2013:14:23:38 -0500] [CGI] Missing NickName and ModelName in > /usr/local/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz! > E [10/Mar/2013:14:23:39 -0500] [cups-driverd] Bad driver information > file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! > E [10/Mar/2013:14:23:39 -0500] [cups-driverd] Bad driver information > file > "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/kyocera_ppd_8.2.txt"! > > less page_log > PIXMA root 13 [10/Mar/2013:14:24:37 -0500] 1 1 - localhost (stdin) - - > > Still no printing going on. Are you using /usr/local/bin/lpr or /usr/bin/lpr also did you specify to rename cups stuff to be installed as system wide ? Also you dont specify which printer is it From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 21:06:41 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DE6AC9E7 for ; Sun, 10 Mar 2013 21:06:41 +0000 (UTC) (envelope-from tamino@wolfhut.org) Received: from pendor.wolfhut.org (pendor.wolfhut.org [173.228.91.225]) by mx1.freebsd.org (Postfix) with ESMTP id B37E7FCF for ; Sun, 10 Mar 2013 21:06:41 +0000 (UTC) Received: from [192.168.42.100] (173-228-91-224.static.sonic.net [173.228.91.224]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by pendor.wolfhut.org (Postfix) with ESMTPSA id 0D34ADBB1F; Sun, 10 Mar 2013 14:06:41 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: day light saving time happened today From: Ben Cottrell In-Reply-To: <513CC4C4.8080405@a1poweruser.com> Date: Sun, 10 Mar 2013 14:06:40 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: References: <513CC4C4.8080405@a1poweruser.com> To: Fbsd8 X-Mailer: Apple Mail (2.1499) Cc: FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 21:06:41 -0000 On Mar 10, 2013, at 10:37, Fbsd8 wrote: > day light saving time happened early sunday morning and the time shown = by the date command is still one hour behind. I just did a clean 9.1 = install from cdrom and selected the correct time zone for my location. The DST change worked fine for me...! I'm curious what it prints if you run the command: find /usr/share/zoneinfo -type f -print | xargs md5 | grep `md5 -q = /etc/localtime` It used to be that /etc/localtime was, by convention if nothing else, a symlink so you could easily see what it pointed to, but not anymore... the above is the easiest way I can think of to figure out what time zone your system is *really* set to. Yes, it should have happened automatically. There's no special setting you have to enable. It should have "just worked". So my suspicion is that your /etc/localtime isn't pointing to what you think it's pointing to... ~Ben= From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 21:15:11 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 31112CDD for ; Sun, 10 Mar 2013 21:15:11 +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 AF1E9B9 for ; Sun, 10 Mar 2013 21:15:10 +0000 (UTC) Received: (qmail 48991 invoked from network); 10 Mar 2013 21:15:10 -0000 Received: from leila.iecc.com (64.57.183.34) by mail1.iecc.com with QMQP; 10 Mar 2013 21:15:10 -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=513cf7de.xn--9vv.k1303; i=johnl@user.iecc.com; bh=dFpH13qjLBtM/WN+xUCA16kdn0CoWYOUtwJj/DFgkO0=; b=KLobOxRRgtVXhb937bFUoBsCKYxEd9fTZIY0nEMEQcW04rBM6+ohvd2G+r1+7i+X8niC0mUN3lQMiJymCCDFJcVwHjlBtpofmzHRwd/zt3xloMnb7recxT8429PBd3wUrvahbJzaUp4QtfKfHdLbCq/h8mH1P1RLMXOWmzbOItk= VBR-Info: md=iecc.com; mc=all; mv=dwl.spamhaus.org Date: 10 Mar 2013 21:14:47 -0000 Message-ID: <20130310211447.58408.qmail@joyce.lan> From: "John Levine" To: freebsd-questions@freebsd.org Subject: Re: day light saving time happened today In-Reply-To: <513CC4C4.8080405@a1poweruser.com> Organization: X-Headerized: yes Mime-Version: 1.0 Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 7bit Cc: fbsd8@a1poweruser.com X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 21:15:11 -0000 >day light saving time happened early sunday morning and the time shown >by the date command is still one hour behind. I just did a clean 9.1 >install from cdrom and selected the correct time zone for my location. > >I don't see any entry for daylight saving time in tzsetup > >I though the EDT had daylight saving time built in. It does. Any chance your computer's clock got reset an hour slow? My 8.3 and 9.1 systems handled the daylight switch just like they were supposed to. -- Regards, John Levine, johnl@iecc.com, Primary Perpetrator of "The Internet for Dummies", Please consider the environment before reading this e-mail. http://jl.ly From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 21:19:27 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E6AB9E70 for ; Sun, 10 Mar 2013 21:19:27 +0000 (UTC) (envelope-from cpet@sdf.org) Received: from sdf.lonestar.org (mx.sdf.org [192.94.73.19]) by mx1.freebsd.org (Postfix) with ESMTP id C95C3DC for ; Sun, 10 Mar 2013 21:19:27 +0000 (UTC) Received: from [192.168.1.64] (dsl-187-150-28-161-dyn.prod-infinitum.com.mx [187.150.28.161] (may be forged)) (authenticated (0 bits)) by sdf.lonestar.org (8.14.5/8.14.5) with ESMTP id r2ALJM9U029785; Sun, 10 Mar 2013 21:19:23 GMT Message-ID: <513CF8DA.8050600@sdf.org> Date: Sun, 10 Mar 2013 15:19:22 -0600 From: Chris Petrik User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Joseph A. Nagy, Jr" Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <513CED38.3020405@sdf.org> <513CEFF1.2090102@gmail.com> In-Reply-To: <513CEFF1.2090102@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: c.petrik.sosa@gmail.com, jmc-freebsd2@milibyte.co.uk, Matthias Apitz , "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 21:19:28 -0000 On 03/10/2013 02:41 PM, Joseph A. Nagy, Jr wrote: > On 03/10/13 15:29, Chris Petrik wrote: > >> Are you using /usr/local/bin/lpr or /usr/bin/lpr also did you specify to >> rename cups stuff to be installed as system wide ? > > I don't know? make.conf: > > WITH_CUPS=YES > CUPS_OVERWRITE_BASE=YES > WITHOUT_LPR=YES > > And, as per earlier in this thread: > ls -la /usr/bin/lpr > ---------- 1 root daemon 37104 Dec 4 03:34 /usr/bin/lpr > >> Also you dont specify which printer is it >> > > Sorry, I thought I brought in the maintainer on my first email, saw > s/he wasn't in later emails and added. > > Canon Pixma MP210 > I am the maintainer I just don't use the other email in ML's From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 21:40:07 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 45C805E7 for ; Sun, 10 Mar 2013 21:40:07 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ia0-x230.google.com (mail-ia0-x230.google.com [IPv6:2607:f8b0:4001:c02::230]) by mx1.freebsd.org (Postfix) with ESMTP id 16813181 for ; Sun, 10 Mar 2013 21:40:07 +0000 (UTC) Received: by mail-ia0-f176.google.com with SMTP id i18so2972127iac.7 for ; Sun, 10 Mar 2013 14:40:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Z7d/a80/umWWdA4MZVvSD4T+1vtgms8e/mk9X9naEtw=; b=Ge4B62qosr7YjmdjUZvygxT8vVcZ/EO/6CA5VG9etjvyU74H7ZhErxuwDAVny3fd2k XbYZcn9YBsPGTOH9uk0kifDod/S7Otqea0ta+JhOwiFfupvT+ELepMQK7r8PNa/AJvWh 1Ffm8sz+DJbG7gDx4vRQB7xGZTXWie5a5y185q6lCdVl2iW166wTDatY61w+eYSb0Tco WoTtL0TTGRnudUI0MLOtazR7WepTsxEUZ3D2xG+0W9yAa+4Muv6Oz//lgC84kjfEBQUP l03x9Z+VfF4zGfSh2nB+rvx4xeR5jCKRCTzUSVlkoPPMWWCs9yOSCAHz1v3EkZCAwOVk 6XdQ== X-Received: by 10.50.178.73 with SMTP id cw9mr5387027igc.22.1362951606737; Sun, 10 Mar 2013 14:40:06 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id qn10sm9198913igc.6.2013.03.10.14.40.04 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Mar 2013 14:40:05 -0700 (PDT) Message-ID: <513CFDB1.2050800@gmail.com> Date: Sun, 10 Mar 2013 16:40:01 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Chris Petrik Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <513CED38.3020405@sdf.org> <513CEFF1.2090102@gmail.com> <513CF8DA.8050600@sdf.org> In-Reply-To: <513CF8DA.8050600@sdf.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: jmc-freebsd2@milibyte.co.uk, Matthias Apitz , "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 21:40:07 -0000 On 03/10/13 16:19, Chris Petrik wrote: > On 03/10/2013 02:41 PM, Joseph A. Nagy, Jr wrote: >> On 03/10/13 15:29, Chris Petrik wrote: >> >>> Are you using /usr/local/bin/lpr or /usr/bin/lpr also did you specify to >>> rename cups stuff to be installed as system wide ? >> >> I don't know? make.conf: >> >> WITH_CUPS=YES >> CUPS_OVERWRITE_BASE=YES >> WITHOUT_LPR=YES >> >> And, as per earlier in this thread: >> ls -la /usr/bin/lpr >> ---------- 1 root daemon 37104 Dec 4 03:34 /usr/bin/lpr >> >>> Also you dont specify which printer is it >>> >> >> Sorry, I thought I brought in the maintainer on my first email, saw >> s/he wasn't in later emails and added. >> >> Canon Pixma MP210 >> > I am the maintainer I just don't use the other email in ML's Well...that's your choice. Again, I thought I brought you in on the first email (or a earlier followup) but I didn't. My bad on that. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 21:45:39 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1A519882 for ; Sun, 10 Mar 2013 21:45:39 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ie0-x22d.google.com (mail-ie0-x22d.google.com [IPv6:2607:f8b0:4001:c03::22d]) by mx1.freebsd.org (Postfix) with ESMTP id D22181B3 for ; Sun, 10 Mar 2013 21:45:38 +0000 (UTC) Received: by mail-ie0-f173.google.com with SMTP id 9so4011211iec.4 for ; Sun, 10 Mar 2013 14:45:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=VanQG16F2yLmirH0lzAdU4xAy0oGEz74DYqL6XAo/nc=; b=s82eVDVO0OwDcrSfU0xk9dVCwxr41m/Eab3tEzLta5TDbXC7tvFVOZkFYHYmGtZUiV 4rp1a2VAMfQ8uzRu12USn//7BZM/bGhTeoyRPWrVwBdHmmm+XcDAIGvQikkGNnCZrNO0 Qg9PK2tQ60Fi7Odh2B8XKqz1YmaYNPW0DDDSdhAuld/jHOeyxycXUSJw56qART04I9Lv FU2bdPdMYxEP0IttAFIQfjnteJAupcYWEXfRm+zLYLKcVj3v8lcSaeUGc7O6vr10Onte 4dw5DYh5+ZzjKQTM+GA3vbX+sEv6gNO3x2BsTVCrpSssVFFahXab9T88KsyM/AMzViMs xNTw== X-Received: by 10.50.216.164 with SMTP id or4mr5581126igc.38.1362951938486; Sun, 10 Mar 2013 14:45:38 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id g6sm9239694ign.4.2013.03.10.14.45.36 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Mar 2013 14:45:37 -0700 (PDT) Message-ID: <513CFEFB.5070903@gmail.com> Date: Sun, 10 Mar 2013 16:45:31 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Questions @ FreeBSD" Subject: While Updating doxygen Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 21:45:39 -0000 (./install.tex [5] [6] [7] [8] Overfull \hbox (127.39917pt too wide) in paragraph at lines 231--232 []\T1/phv/m/n/10 Note that com-pil-ing Doxy-wiz-ard cur-rently re-quires Qt ver -sion 4 (see [][]\T1/pcr/m/n/10 http-://qt.-nokia.-com/products/platform/qt-for -windows[][]\T1/phv/m/n/10 ). [9]) [10] Chapter 3. (./starting.tex ! LaTeX Error: File `infoflow' not found. See the LaTeX manual or LaTeX Companion for explanation. Type H for immediate help. ... l.9 \includegraphics[width=14cm]{infoflow} ? and that is where I am sitting right now, unsure what to do. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 21:50:31 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 03FF89BB for ; Sun, 10 Mar 2013 21:50:31 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id E75061E1 for ; Sun, 10 Mar 2013 21:50:30 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Sun, 10 Mar 2013 14:50:32 -0700 Message-ID: <513D0026.6030109@a1poweruser.com> Date: Sun, 10 Mar 2013 17:50:30 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Ben Cottrell Subject: Re: day light saving time happened today References: <513CC4C4.8080405@a1poweruser.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 10 Mar 2013 21:50:32.0148 (UTC) FILETIME=[49AC9940:01CE1DD9] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 21:50:31 -0000 Ben Cottrell wrote: > On Mar 10, 2013, at 10:37, Fbsd8 wrote: >> day light saving time happened early sunday morning and the time shown by the date command is still one hour behind. I just did a clean 9.1 install from cdrom and selected the correct time zone for my location. > > The DST change worked fine for me...! > > I'm curious what it prints if you run the command: > > find /usr/share/zoneinfo -type f -print | xargs md5 | grep `md5 -q /etc/localtime` > > It used to be that /etc/localtime was, by convention if > nothing else, a symlink so you could easily see what it pointed > to, but not anymore... the above is the easiest way I can think > of to figure out what time zone your system is *really* set to. > > Yes, it should have happened automatically. There's no special > setting you have to enable. It should have "just worked". So > my suspicion is that your /etc/localtime isn't pointing to > what you think it's pointing to... > > ~Ben This is what that find produced # /root >find /usr/share/zoneinfo -type f -print | xargs md5 | grep `md5 -q /etc /localtime` MD5 (/usr/share/zoneinfo/America/New_York) = e4ca381035a34b7a852184cc0dd89baa MD5 (/usr/share/zoneinfo/posixrules) = e4ca381035a34b7a852184cc0dd89baa echo $TZ undefined variable From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 21:59:16 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 76AB9F06 for ; Sun, 10 Mar 2013 21:59:16 +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 3E80D226 for ; Sun, 10 Mar 2013 21:59:16 +0000 (UTC) Received: from r56.edvax.de (port-92-195-102-36.dynamic.qsc.de [92.195.102.36]) by mx01.qsc.de (Postfix) with ESMTP id DF72D3D09A; Sun, 10 Mar 2013 22:59:08 +0100 (CET) Received: from r56.edvax.de (localhost [127.0.0.1]) by r56.edvax.de (8.14.5/8.14.5) with SMTP id r2ALx8PL005548; Sun, 10 Mar 2013 22:59:08 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Sun, 10 Mar 2013 22:59:08 +0100 From: Polytropon To: "Joseph A. Nagy, Jr" Subject: Re: While Updating doxygen Message-Id: <20130310225908.1821d063.freebsd@edvax.de> In-Reply-To: <513CFEFB.5070903@gmail.com> References: <513CFEFB.5070903@gmail.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: "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 21:59:16 -0000 On Sun, 10 Mar 2013 16:45:31 -0500, Joseph A. Nagy, Jr wrote: > (./install.tex [5] [6] [7] [8] > Overfull \hbox (127.39917pt too wide) in paragraph at lines 231--232 > []\T1/phv/m/n/10 Note that com-pil-ing Doxy-wiz-ard cur-rently re-quires > Qt ver > -sion 4 (see [][]\T1/pcr/m/n/10 > http-://qt.-nokia.-com/products/platform/qt-for > -windows[][]\T1/phv/m/n/10 ). > [9]) [10] > Chapter 3. > (./starting.tex > > ! LaTeX Error: File `infoflow' not found. > > See the LaTeX manual or LaTeX Companion for explanation. > Type H for immediate help. > ... > > l.9 \includegraphics[width=14cm]{infoflow} > > ? > > and that is where I am sitting right now, unsure what to do. Enter the "q" command. This will end the LaTeX processor. It seems that your LaTeX installation (TeXLive or teTeX) is missing a file required for building the documentation. Is the file /usr/local/share/doc/doxygen/html/infoflow.gif present on your system? -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 22:01:01 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CF93BFD6 for ; Sun, 10 Mar 2013 22:01:01 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ia0-x22e.google.com (mail-ia0-x22e.google.com [IPv6:2607:f8b0:4001:c02::22e]) by mx1.freebsd.org (Postfix) with ESMTP id A438A24C for ; Sun, 10 Mar 2013 22:01:01 +0000 (UTC) Received: by mail-ia0-f174.google.com with SMTP id k38so1373296iah.33 for ; Sun, 10 Mar 2013 15:01:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=fCkueloKnu5SO5M2hGg7eF/w5zgoXjvrJAZgEqwnOzw=; b=kpJQQwGLY7MeiTyppJMGTeTJIJbp3Kl6RRtJixcQU4umNt7nnHMY9uI68jxVyHdJkL 1urBr7Wwdd+dDL4dR6BS2rN3t+X+U2/OQIZZXfca0kkxbT3PUCirbEDYflBct/T45jxR 8/xUjVFOs6khe9yh5iO9+jOx9e9jFaqZYF4BLozAuoZ62zeeq3ONsyK20USps+70Kyjg iTICFMtxVmtMb2tBN8JdoC7LXo+ot/W6jd4BPE3DhjcxM6SWyC/bpUSSkg0/H+sRMNJW FKztSBezyncwT0ni7HMSO3n/LuJYGHsQP35PKVBllzuBQmoVxr3A0f+egKb5aRBCr5PI KRLQ== X-Received: by 10.50.216.164 with SMTP id or4mr5599802igc.38.1362952861236; Sun, 10 Mar 2013 15:01:01 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id i10sm9249773igz.9.2013.03.10.15.00.59 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Mar 2013 15:01:00 -0700 (PDT) Message-ID: <513D0299.2030501@gmail.com> Date: Sun, 10 Mar 2013 17:00:57 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Polytropon Subject: Re: While Updating doxygen References: <513CFEFB.5070903@gmail.com> <20130310225908.1821d063.freebsd@edvax.de> In-Reply-To: <20130310225908.1821d063.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 22:01:01 -0000 On 03/10/13 16:59, Polytropon wrote: > On Sun, 10 Mar 2013 16:45:31 -0500, Joseph A. Nagy, Jr wrote: >> (./install.tex [5] [6] [7] [8] >> Overfull \hbox (127.39917pt too wide) in paragraph at lines 231--232 >> []\T1/phv/m/n/10 Note that com-pil-ing Doxy-wiz-ard cur-rently re-quires >> Qt ver >> -sion 4 (see [][]\T1/pcr/m/n/10 >> http-://qt.-nokia.-com/products/platform/qt-for >> -windows[][]\T1/phv/m/n/10 ). >> [9]) [10] >> Chapter 3. >> (./starting.tex >> >> ! LaTeX Error: File `infoflow' not found. >> >> See the LaTeX manual or LaTeX Companion for explanation. >> Type H for immediate help. >> ... >> >> l.9 \includegraphics[width=14cm]{infoflow} >> >> ? >> >> and that is where I am sitting right now, unsure what to do. > > Enter the "q" command. This will end the LaTeX processor. > > It seems that your LaTeX installation (TeXLive or teTeX) > is missing a file required for building the documentation. doh > Is the file /usr/local/share/doc/doxygen/html/infoflow.gif > present on your system? > > > nope, but I do have: ls in index.html infoflow.png install.html -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 22:04:39 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E14B6128 for ; Sun, 10 Mar 2013 22:04:39 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ie0-x231.google.com (mail-ie0-x231.google.com [IPv6:2607:f8b0:4001:c03::231]) by mx1.freebsd.org (Postfix) with ESMTP id AC5AE26C for ; Sun, 10 Mar 2013 22:04:39 +0000 (UTC) Received: by mail-ie0-f177.google.com with SMTP id 16so4011599iea.22 for ; Sun, 10 Mar 2013 15:04:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=naHBBbA5O19+mBwTEL/2+LVOFTFNpteyvbyZycwdLIU=; b=bYcSf9qyOeWcRyHMXID3CCsgkUlxYApiT/SEhszjMfU15RsTETE9Kf/1rMYcNlebob K5WeYvkRBYXAbKQ//SsDfIqqUxARxNT9wrwaCd60aUASqPFM3kXPoZN+XxHMyKUkA5pr yeQAs+ZDlvxIDJstAkn4NjX7KW9FJUQ4M+ehMRfSXwbaK6qUhOQalKNUu+Ym/NWQ6RRe lWyMXT1XM4DfO8VKqRwYKGkElDy6zbwGTgvbD5f5+8NQ9j86yVWEbr19XJFgY+BcNjSv R9pminb/FOpgU+XhxVEM/Qic33Yva3SFe6/qR0SsU9fxyvTmh7AHH8ZnhHglU+t2fiUz 8fxQ== X-Received: by 10.50.45.136 with SMTP id n8mr5586433igm.34.1362953078724; Sun, 10 Mar 2013 15:04:38 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id xf4sm9276921igb.8.2013.03.10.15.04.36 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Mar 2013 15:04:37 -0700 (PDT) Message-ID: <513D0372.9070909@gmail.com> Date: Sun, 10 Mar 2013 17:04:34 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Polytropon Subject: Re: While Updating doxygen References: <513CFEFB.5070903@gmail.com> <20130310225908.1821d063.freebsd@edvax.de> In-Reply-To: <20130310225908.1821d063.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 22:04:39 -0000 On 03/10/13 16:59, Polytropon wrote: > On Sun, 10 Mar 2013 16:45:31 -0500, Joseph A. Nagy, Jr wrote: >> (./install.tex [5] [6] [7] [8] >> Overfull \hbox (127.39917pt too wide) in paragraph at lines 231--232 >> []\T1/phv/m/n/10 Note that com-pil-ing Doxy-wiz-ard cur-rently re-quires >> Qt ver >> -sion 4 (see [][]\T1/pcr/m/n/10 >> http-://qt.-nokia.-com/products/platform/qt-for >> -windows[][]\T1/phv/m/n/10 ). >> [9]) [10] >> Chapter 3. >> (./starting.tex >> >> ! LaTeX Error: File `infoflow' not found. >> >> See the LaTeX manual or LaTeX Companion for explanation. >> Type H for immediate help. >> ... >> >> l.9 \includegraphics[width=14cm]{infoflow} >> >> ? >> >> and that is where I am sitting right now, unsure what to do. > > Enter the "q" command. This will end the LaTeX processor. > > It seems that your LaTeX installation (TeXLive or teTeX) > is missing a file required for building the documentation. > > Is the file /usr/local/share/doc/doxygen/html/infoflow.gif > present on your system? > > > Sent that last email too early. Update terminated. c'est la vie. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 22:06:47 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 70C0D1EF for ; Sun, 10 Mar 2013 22:06:47 +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 33C9627F for ; Sun, 10 Mar 2013 22:06:47 +0000 (UTC) Received: from r56.edvax.de (port-92-195-102-36.dynamic.qsc.de [92.195.102.36]) by mx01.qsc.de (Postfix) with ESMTP id 7C3C53CF49; Sun, 10 Mar 2013 23:06:46 +0100 (CET) Received: from r56.edvax.de (localhost [127.0.0.1]) by r56.edvax.de (8.14.5/8.14.5) with SMTP id r2AM6pou005589; Sun, 10 Mar 2013 23:06:51 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Sun, 10 Mar 2013 23:06:51 +0100 From: Polytropon To: "Joseph A. Nagy, Jr" Subject: Re: While Updating doxygen Message-Id: <20130310230651.ac7b1699.freebsd@edvax.de> In-Reply-To: <513D0299.2030501@gmail.com> References: <513CFEFB.5070903@gmail.com> <20130310225908.1821d063.freebsd@edvax.de> <513D0299.2030501@gmail.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: "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 22:06:47 -0000 On Sun, 10 Mar 2013 17:00:57 -0500, Joseph A. Nagy, Jr wrote: > On 03/10/13 16:59, Polytropon wrote: > > On Sun, 10 Mar 2013 16:45:31 -0500, Joseph A. Nagy, Jr wrote: > >> (./install.tex [5] [6] [7] [8] > >> Overfull \hbox (127.39917pt too wide) in paragraph at lines 231--232 > >> []\T1/phv/m/n/10 Note that com-pil-ing Doxy-wiz-ard cur-rently re-quires > >> Qt ver > >> -sion 4 (see [][]\T1/pcr/m/n/10 > >> http-://qt.-nokia.-com/products/platform/qt-for > >> -windows[][]\T1/phv/m/n/10 ). > >> [9]) [10] > >> Chapter 3. > >> (./starting.tex > >> > >> ! LaTeX Error: File `infoflow' not found. > >> > >> See the LaTeX manual or LaTeX Companion for explanation. > >> Type H for immediate help. > >> ... > >> > >> l.9 \includegraphics[width=14cm]{infoflow} > >> > >> ? > >> > >> and that is where I am sitting right now, unsure what to do. > > > > Enter the "q" command. This will end the LaTeX processor. > > > > It seems that your LaTeX installation (TeXLive or teTeX) > > is missing a file required for building the documentation. > > doh Not your fault. :-) > > Is the file /usr/local/share/doc/doxygen/html/infoflow.gif > > present on your system? > > > > > > > nope, but I do have: > ls in > index.html infoflow.png install.html That looks valid (I'm on a much older system here, so things might have changed). What directory are those in? Somewhere in the port's working directory? Try "make clean" and rebuild. >From the source file, you've quoted the following line: \includegraphics[width=14cm]{infoflow} This means the graphicx package will obtain the required file automatically, that could be in a different format (PNG is supported by pdflatex, EPS is common for "normal" latex). If a conversion is required, the port should have done this prior to running LaTeX (be it from teTeX or TeXLive which is "today's preferred LaTeX distribution"). -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 22:10:03 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 57F72338 for ; Sun, 10 Mar 2013 22:10:03 +0000 (UTC) (envelope-from tamino@wolfhut.org) Received: from pendor.wolfhut.org (pendor.wolfhut.org [173.228.91.225]) by mx1.freebsd.org (Postfix) with ESMTP id 41B132AA for ; Sun, 10 Mar 2013 22:10:03 +0000 (UTC) Received: from [192.168.42.100] (173-228-91-224.static.sonic.net [173.228.91.224]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by pendor.wolfhut.org (Postfix) with ESMTPSA id BFF6DDBB1F; Sun, 10 Mar 2013 15:10:02 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: day light saving time happened today From: Ben Cottrell In-Reply-To: <513D0026.6030109@a1poweruser.com> Date: Sun, 10 Mar 2013 15:10:02 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> To: Fbsd8 X-Mailer: Apple Mail (2.1499) Cc: FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 22:10:03 -0000 On Mar 10, 2013, at 14:50, Fbsd8 wrote: > # /root >find /usr/share/zoneinfo -type f -print | xargs md5 | grep = `md5 -q /etc /localtime` > MD5 (/usr/share/zoneinfo/America/New_York) =3D = e4ca381035a34b7a852184cc0dd89baa That's really, really odd. I'm confused. If you run "date" does it show the time zone as EST or EDT? If you have python installed, you might also try: python -c 'import time; print time.localtime().tm_isdst' (it should be 1) Is the year correct? I mean, could it be thinking it's some different year, where the time zone rules are different? Now *I'm* curious. :-) I've honestly never seen a system do that before. If you figure it out, I hope you'll let either me, or the list, know what it was! ~Ben= From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 22:12:04 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E40444EE for ; Sun, 10 Mar 2013 22:12:04 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ia0-x22b.google.com (mail-ia0-x22b.google.com [IPv6:2607:f8b0:4001:c02::22b]) by mx1.freebsd.org (Postfix) with ESMTP id B81EA2D2 for ; Sun, 10 Mar 2013 22:12:04 +0000 (UTC) Received: by mail-ia0-f171.google.com with SMTP id z13so3053405iaz.16 for ; Sun, 10 Mar 2013 15:12:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=1XCuCk5BgdWA6AopKUrfBiSdAa5gIuOkASrwkNx1f1k=; b=ej5PHfNbjIowkAe45N/haP7sqbmcQiDkoi5UCopO3pWobqnWvwW0+1uwQQK5JKl9SX /7rR86CEVJw1XvUbj1YNS0HWhXxoI7ZW1P7AYjD0yogyQaeyeTK84mivYCqip6AJ2Rn8 H235YpIMiYAH1m/YW6YH0RGZ/3dPSo+R1e1wVQbEUe6mzvpMBztZwN8peKpv2Vq/JwUz d9jnWuPwkgOnJX+PLGpMxcun+t/ryOTf2BBjciotNbvm6Eo+qYU1ayT9p9LJqOA7oV91 4XyTfOBuyLeUtD9HVZaICm0lyxbFb6+RhLaMTqf/NFYmPr4Ov7k5NNj9R65skU1w7Vj5 1BTg== X-Received: by 10.50.185.234 with SMTP id ff10mr5598468igc.25.1362953524350; Sun, 10 Mar 2013 15:12:04 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id g6sm9325064ign.4.2013.03.10.15.12.02 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Mar 2013 15:12:03 -0700 (PDT) Message-ID: <513D052F.1050102@gmail.com> Date: Sun, 10 Mar 2013 17:11:59 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Polytropon Subject: Re: While Updating doxygen References: <513CFEFB.5070903@gmail.com> <20130310225908.1821d063.freebsd@edvax.de> <513D0299.2030501@gmail.com> <20130310230651.ac7b1699.freebsd@edvax.de> In-Reply-To: <20130310230651.ac7b1699.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 22:12:05 -0000 On 03/10/13 17:06, Polytropon wrote: > On Sun, 10 Mar 2013 17:00:57 -0500, Joseph A. Nagy, Jr wrote: >>> Is the file /usr/local/share/doc/doxygen/html/infoflow.gif >>> present on your system? >>> >>> >>> >> nope, but I do have: >> ls in >> index.html infoflow.png install.html > > That looks valid (I'm on a much older system here, so things > might have changed). > > What directory are those in? Somewhere in the port's working > directory? Try "make clean" and rebuild. Nope, from /usr/local/share/doc/doxygen/html/ I'll do that once the other updates are run through (a bunch of them to be sure). > > From the source file, you've quoted the following line: > > \includegraphics[width=14cm]{infoflow} > > This means the graphicx package will obtain the required > file automatically, that could be in a different format > (PNG is supported by pdflatex, EPS is common for "normal" > latex). If a conversion is required, the port should have > done this prior to running LaTeX (be it from teTeX or > TeXLive which is "today's preferred LaTeX distribution"). > > > I think it's teTex, but I'm not sure. Whatever one got pulled in for Scribus and the other programs that dep on it. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 22:21:58 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9F538874 for ; Sun, 10 Mar 2013 22:21:58 +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 67248326 for ; Sun, 10 Mar 2013 22:21:57 +0000 (UTC) Received: from r56.edvax.de (port-92-195-102-36.dynamic.qsc.de [92.195.102.36]) by mx01.qsc.de (Postfix) with ESMTP id 2D4A33CFC5; Sun, 10 Mar 2013 23:21:57 +0100 (CET) Received: from r56.edvax.de (localhost [127.0.0.1]) by r56.edvax.de (8.14.5/8.14.5) with SMTP id r2AMM2HY005663; Sun, 10 Mar 2013 23:22:02 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Sun, 10 Mar 2013 23:22:01 +0100 From: Polytropon To: "Joseph A. Nagy, Jr" Subject: Re: While Updating doxygen Message-Id: <20130310232201.0bd509a5.freebsd@edvax.de> In-Reply-To: <513D052F.1050102@gmail.com> References: <513CFEFB.5070903@gmail.com> <20130310225908.1821d063.freebsd@edvax.de> <513D0299.2030501@gmail.com> <20130310230651.ac7b1699.freebsd@edvax.de> <513D052F.1050102@gmail.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: "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 22:21:58 -0000 On Sun, 10 Mar 2013 17:11:59 -0500, Joseph A. Nagy, Jr wrote: > On 03/10/13 17:06, Polytropon wrote: > > On Sun, 10 Mar 2013 17:00:57 -0500, Joseph A. Nagy, Jr wrote: > > >>> Is the file /usr/local/share/doc/doxygen/html/infoflow.gif > >>> present on your system? > >>> > >>> > >>> > >> nope, but I do have: > >> ls in > >> index.html infoflow.png install.html > > > > That looks valid (I'm on a much older system here, so things > > might have changed). > > > > What directory are those in? Somewhere in the port's working > > directory? Try "make clean" and rebuild. > > Nope, from /usr/local/share/doc/doxygen/html/ I have different files there, but as I said, that could be normal given the fact that my system here is rather old. % ls in* index.hhc index.html installdox_usage.html index.hhk infoflow.gif index.hhp install.html Still any format conversion that is required (because the file name is not explicitely named in the LaTeX source, so some default or fall-through list would apply) should be done by the port when building. > I'll do that once the other updates are run through (a bunch of them to > be sure). You should make sure all the required stuff for the port is there. I would _guess_ that building takes place in the working directory of the port, and all source files should be in _there_, but I could be wrong, as "modern" software tends to be unpredictable. :-) A "make clean; make fetch; make" run should satisfy all needs. > > From the source file, you've quoted the following line: > > > > \includegraphics[width=14cm]{infoflow} > > > > This means the graphicx package will obtain the required > > file automatically, that could be in a different format > > (PNG is supported by pdflatex, EPS is common for "normal" > > latex). If a conversion is required, the port should have > > done this prior to running LaTeX (be it from teTeX or > > TeXLive which is "today's preferred LaTeX distribution"). > > > > > > > > I think it's teTex, but I'm not sure. Simple (and stupid, but working) way to find out: % ls /var/db/pkg/ | grep TeX teTeX-3.0_5/ teTeX-base-3.0_22/ teTeX-texmf-3.0_8/ In this case, it's teTeX, _not_ TeXlive. > Whatever one got pulled in for > Scribus and the other programs that dep on it. I think teTeX is still the default LaTeX dependency, even though it's considered outdated, obsolete and such. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 22:56:58 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9226F1B8 for ; Sun, 10 Mar 2013 22:56:58 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 799B564C for ; Sun, 10 Mar 2013 22:56:58 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Sun, 10 Mar 2013 15:56:59 -0700 Message-ID: <513D0FBA.1070303@a1poweruser.com> Date: Sun, 10 Mar 2013 18:56:58 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Ben Cottrell Subject: Re: day light saving time happened today References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> In-Reply-To: <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 10 Mar 2013 22:56:59.0365 (UTC) FILETIME=[923DA150:01CE1DE2] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 22:56:58 -0000 Ben Cottrell wrote: > On Mar 10, 2013, at 14:50, Fbsd8 wrote: >> # /root >find /usr/share/zoneinfo -type f -print | xargs md5 | grep `md5 -q /etc /localtime` >> MD5 (/usr/share/zoneinfo/America/New_York) = e4ca381035a34b7a852184cc0dd89baa > > That's really, really odd. I'm confused. > > If you run "date" does it show the time zone as EST or EDT? If you > have python installed, you might also try: > > python -c 'import time; print time.localtime().tm_isdst' > (it should be 1) > > Is the year correct? I mean, could it be thinking it's some different > year, where the time zone rules are different? > > Now *I'm* curious. :-) I've honestly never seen a system do that > before. If you figure it out, I hope you'll let either me, or the > list, know what it was! > > ~Ben > date command shows Sun Mar 10 16:50:33 EDT 2013 No python on my system. The real question is does New York State have day light saving time? From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 23:31:39 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E15BB894 for ; Sun, 10 Mar 2013 23:31:39 +0000 (UTC) (envelope-from chris@monochrome.org) Received: from mail.monochrome.org (b4.ebbed1.client.atlantech.net [209.190.235.180]) by mx1.freebsd.org (Postfix) with ESMTP id 71202739 for ; Sun, 10 Mar 2013 23:31:38 +0000 (UTC) Received: from [192.168.1.11] ([192.168.1.11]) by mail.monochrome.org (8.14.3/8.14.3) with ESMTP id r2ANJaZD071254; Sun, 10 Mar 2013 19:19:36 -0400 (EDT) (envelope-from chris@monochrome.org) Date: Sun, 10 Mar 2013 19:19:36 -0400 (EDT) From: Chris Hill To: Fbsd8 Subject: Re: day light saving time happened today In-Reply-To: <513D0FBA.1070303@a1poweruser.com> Message-ID: References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.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 , Ben Cottrell X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 23:31:39 -0000 On Sun, 10 Mar 2013, Fbsd8 wrote: > date command shows > Sun Mar 10 16:50:33 EDT 2013 Very odd that your clock would be off by *two* hours. > The real question is does New York State have day light saving time? Yes, it does. I lived there for many years. -- Chris Hill chris@monochrome.org ** [ Busy Expunging ] From owner-freebsd-questions@FreeBSD.ORG Sun Mar 10 23:44:43 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6697D9E3 for ; Sun, 10 Mar 2013 23:44:43 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 31591795 for ; Sun, 10 Mar 2013 23:44:43 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id 1695233C1D; Sun, 10 Mar 2013 19:44:37 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id D08783983C; Sun, 10 Mar 2013 19:44:34 -0400 (EDT) From: Lowell Gilbert To: Fbsd8 , FreeBSD questions , Ben Cottrell Subject: Re: day light saving time happened today References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> Date: Sun, 10 Mar 2013 19:44:34 -0400 In-Reply-To: (Chris Hill's message of "Sun, 10 Mar 2013 19:19:36 -0400 (EDT)") Message-ID: <44fw02lt0d.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 23:44:43 -0000 Chris Hill writes: > On Sun, 10 Mar 2013, Fbsd8 wrote: > >> date command shows >> Sun Mar 10 16:50:33 EDT 2013 > > Very odd that your clock would be off by *two* hours. Yep. The next test is to check the clock in GMT. I expect it to be off, which means that the timezone rules are not the problem. If this is not the case, the diagnosis gets more interesting. >> The real question is does New York State have day light saving time? > > Yes, it does. I lived there for many years. He's not making this up, folks. [On the other hand, the rules have changed multiple times since he left there.] From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 01:42:53 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4460133D for ; Mon, 11 Mar 2013 01:42:53 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 301BFCD0 for ; Mon, 11 Mar 2013 01:42:52 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Sun, 10 Mar 2013 18:42:54 -0700 Message-ID: <513D369C.8080907@a1poweruser.com> Date: Sun, 10 Mar 2013 21:42:52 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Lowell Gilbert Subject: Re: day light saving time happened today References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> In-Reply-To: <44fw02lt0d.fsf@lowell-desk.lan> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 11 Mar 2013 01:42:54.0596 (UTC) FILETIME=[C0055440:01CE1DF9] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: FreeBSD questions , Ben Cottrell X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 01:42:53 -0000 Lowell Gilbert wrote: > > The next test is to check the clock in GMT. > I expect it to be off, which means that the timezone rules are not the > problem. If this is not the case, the diagnosis gets more interesting. > > And how do you purpose I check the clock in GMT? From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 01:56:40 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3A1B77CA for ; Mon, 11 Mar 2013 01:56:40 +0000 (UTC) (envelope-from mike.jeays@rogers.com) Received: from nm22.access.bullet.mail.mud.yahoo.com (nm22.access.bullet.mail.mud.yahoo.com [66.94.237.223]) by mx1.freebsd.org (Postfix) with ESMTP id D4A5CD59 for ; Mon, 11 Mar 2013 01:56:39 +0000 (UTC) Received: from [66.94.237.196] by nm22.access.bullet.mail.mud.yahoo.com with NNFMP; 11 Mar 2013 01:56:33 -0000 Received: from [98.139.221.69] by tm7.access.bullet.mail.mud.yahoo.com with NNFMP; 11 Mar 2013 01:56:33 -0000 Received: from [127.0.0.1] by smtp106.rog.mail.bf1.yahoo.com with NNFMP; 11 Mar 2013 01:56:33 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rogers.com; s=s1024; t=1362966993; bh=F8arc+SlNMj12fKtXJdzAF1+Pma6/DpZ6AMjz29neGI=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Date:From:To:Subject:Message-ID:In-Reply-To:References:X-Mailer:Mime-Version:Content-Type:Content-Transfer-Encoding; b=jDW5Ih+6UuzFjgjo2VCrWrdzNuPrYxDl6ISAQjnmLXBlp6T9E5p/+0rcudlJXI2zFPdTjtasYD9Qcmbn7VIxiu85Qpskr/RSvBKqmXatG8VV/4ZYkA4XP7Qibq4FaB6/f0iVLZ9hRdPwOC1mE4/Ksc9DQinvyfXz4K9Nm3bmhuc= X-Yahoo-Newman-Id: 595291.69413.bm@smtp106.rog.mail.bf1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: KIkgLuYVM1mx3guYUiplhK49ISdMMEtBggHv9_s.A.Be0hU VqvwYFk6x1CzfhSEdxmftafqOVMlbyTJ1Y3XiMMZcM5hnNF8zohduvCWb6yj 8u9hehOmX0TiSShQUNWaQX0gHpW4LDFf9Ah6lbqujih.lSP47IbV47w7SmA5 bO39FI7oelcrG2misfmYm4YMMBjn9WaVPnMLOXvIrUrfOii5m9WmytXOv64O swjmRTCAf8cy8_5yYmn_IrxlNLGnHGbUJS5tzN1WXTt7TAOxDpvbK8XvAgyT nrRRQO3Sraz4Z.sMTlRgJZiHM8c2rOELOuLVUhuhaUSWMT1sqyzUcGfTZdjp NjrkpAqMGyasdRt1bu9WVAHGyEIiSxUtBWiNK1lwhT3hsBNwraySM_90kGCa OeTSo_axR0TlrlrXSxo82G4xpDDSn550iQueSU8LhSz4YW0NMmhLthTPb0K0 wdvYsw.NMx4O3xVgig5YHNY3guRJxiw-- X-Yahoo-SMTP: N82WFx6swBBjwcHWPFR2CGt6udzA8RPrA.xm0enFFXaK2g-- Received: from europa (mike.jeays@173.33.93.170 with login) by smtp106.rog.mail.bf1.yahoo.com with SMTP; 10 Mar 2013 18:56:33 -0700 PDT Date: Sun, 10 Mar 2013 21:56:32 -0400 From: Mike Jeays To: freebsd-questions@freebsd.org Subject: Re: [Bulk] Re: day light saving time happened today Message-ID: <20130310215632.3c0344f2@europa> In-Reply-To: <513D369C.8080907@a1poweruser.com> References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> <513D369C.8080907@a1poweruser.com> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.13; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 01:56:40 -0000 On Sun, 10 Mar 2013 21:42:52 -0400 Fbsd8 wrote: > Lowell Gilbert wrote: > > > > The next test is to check the clock in GMT. > > I expect it to be off, which means that the timezone rules are not the > > problem. If this is not the case, the diagnosis gets more interesting. > > > > > > And how do you purpose I check the clock in GMT? > > _______________________________________________ > 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" date -u should do it. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 02:18:23 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0BBE7CC9 for ; Mon, 11 Mar 2013 02:18:23 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id E45B2E47 for ; Mon, 11 Mar 2013 02:18:22 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Sun, 10 Mar 2013 19:18:24 -0700 Message-ID: <513D3EEB.3020201@a1poweruser.com> Date: Sun, 10 Mar 2013 22:18:19 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Mike Jeays Subject: Re: [Bulk] Re: day light saving time happened today References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> <513D369C.8080907@a1poweruser.com> <20130310215632.3c0344f2@europa> In-Reply-To: <20130310215632.3c0344f2@europa> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 11 Mar 2013 02:18:24.0220 (UTC) FILETIME=[B56029C0:01CE1DFE] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 02:18:23 -0000 Mike Jeays wrote: > On Sun, 10 Mar 2013 21:42:52 -0400 > Fbsd8 wrote: > >> Lowell Gilbert wrote: >>> The next test is to check the clock in GMT. >>> I expect it to be off, which means that the timezone rules are not the >>> problem. If this is not the case, the diagnosis gets more interesting. >>> >>> >> And how do you purpose I check the clock in GMT? >> > > date -u should do it. > > date -u shows Mon Mar 11 01:08:39 UTC 2013 date shows Sun Mar 10 01:08:47 EDT 2013 In tzsetup I selected north America, EDT. It's the first one on the list. What is really needed is for the tzsetup program to state which east coast selections have day light saving included. Maybe a pr is in order. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 02:49:55 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 550EE3F8 for ; Mon, 11 Mar 2013 02:49:55 +0000 (UTC) (envelope-from tamino@wolfhut.org) Received: from pendor.wolfhut.org (pendor.wolfhut.org [173.228.91.225]) by mx1.freebsd.org (Postfix) with ESMTP id 36E0FF32 for ; Mon, 11 Mar 2013 02:49:55 +0000 (UTC) Received: from [192.168.42.100] (173-228-91-224.static.sonic.net [173.228.91.224]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by pendor.wolfhut.org (Postfix) with ESMTPSA id 9A13ADBB1F; Sun, 10 Mar 2013 19:49:49 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: [Bulk] Re: day light saving time happened today From: Ben Cottrell In-Reply-To: <513D3EEB.3020201@a1poweruser.com> Date: Sun, 10 Mar 2013 19:49:49 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <57B1D1B8-5DBC-41C9-AB76-55687AB45359@wolfhut.org> References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> <513D369C.8080907@a1poweruser.com> <20130310215632.3c0344f2@europa> <513D3EEB.3020201@a1poweruser.com> To: Fbsd8 X-Mailer: Apple Mail (2.1499) Cc: Mike Jeays , freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 02:49:55 -0000 On Mar 10, 2013, at 19:18, Fbsd8 wrote: > What is really needed is for the tzsetup program to state which east = coast selections have day light saving included. Maybe a pr is in order. Nope, you pretty conclusively proved that you're using the right time zone setting. Trust me. :-) That md5 you posted is the exact same md5 that's on my own system. My own America/New_York is doing just fine, thank you. ;-) Something else is going on. *What*, I don't know. But you chose the right time zone in tzsetup and that time zone description file definitely does have DST rules in it. I never use the wall_cmos_clock setting, because I don't trust it -- at least with the traditional behavior (wall_cmos_clock=3D0) I know *exactly* what's going on. I really don't know what is happening under the hood when that's turned on, so I have no idea if it could be related or not. But I'm curious what it shows if you run: sysctl machdep.wall_cmos_clock ~Ben= From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 04:31:50 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 87A51344 for ; Mon, 11 Mar 2013 04:31:50 +0000 (UTC) (envelope-from FreeBSD@shaneware.biz) Received: from ipmail07.adl2.internode.on.net (ipmail07.adl2.internode.on.net [IPv6:2001:44b8:8060:ff02:300:1:2:7]) by mx1.freebsd.org (Postfix) with ESMTP id 15E0A35C for ; Mon, 11 Mar 2013 04:31:49 +0000 (UTC) Received: from ppp247-71.static.internode.on.net (HELO leader.local) ([203.122.247.71]) by ipmail07.adl2.internode.on.net with ESMTP; 11 Mar 2013 15:01:20 +1030 Message-ID: <513D5E18.2060602@ShaneWare.Biz> Date: Mon, 11 Mar 2013 15:01:20 +1030 From: Shane Ambler User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: FreeBSD Subject: Re: fbsdmon error message References: <20130309065404.45bece21@scorpio> <513C63BE.6020808@ShaneWare.Biz> <20130310085753.4ff814b6@scorpio> In-Reply-To: <20130310085753.4ff814b6@scorpio> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 04:31:50 -0000 On 10/03/2013 23:27, Jerry wrote: > On Sun, 10 Mar 2013 21:13:10 +1030 > Shane Ambler articulated: >> While I know the error originates from an openssl item being renamed >> from EVP_PKEY_verifyrecover_init to EVP_PKEY_verify_recover_init I'm >> not sure why it still tries to find the old man page. > > Should a PR be filed against this or has one all ready been filed? I > didn't find any. > A pr should probably be submitted, I haven't. While the fix may be to clear a cache file, there should be a way to stop makewhatis always searching for non-existent man files. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 04:53:01 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BDBD74A6 for ; Mon, 11 Mar 2013 04:53:01 +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 4410D3ED for ; Mon, 11 Mar 2013 04:53:00 +0000 (UTC) Received: from kw.news4all.se (usenet4all.se [82.182.32.53]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id r2B4qoKC001253; Mon, 11 Mar 2013 05:52:52 +0100 (CET) (envelope-from bah@bananmonarki.se) Message-ID: <513D6306.3050300@bananmonarki.se> Date: Mon, 11 Mar 2013 05:52:22 +0100 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130301 Thunderbird/17.0.3 MIME-Version: 1.0 To: CeDeROM Subject: Re: growisofs does not burn folders correctly all files are flat on the disk no folders References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: FreeBSD Questions Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 04:53:01 -0000 2013-03-10 21:07, CeDeROM skrev: > Hey :-) > > I have problem with growisofs - I get all files flat on the disk there > are no directories as on the source drive :-( I had this once with BD > and once with DVD disk on my new 9.1-RELEASE machine. > > growisofs -Z/dev/cd2 -dvd-compat -R -J -iso-level 3 -udf * > > % growisofs --version > * growisofs by , version 7.1, > front-ending to mkisofs: mkisofs 3.00 (amd64-unknown-freebsd9.1) > Copyright (C) 1993-1997 Eric Youngdale (C) 1997-2010 J�rg Schilling > > Any hints welcome :-) > Tomek > Make an ISO file first, then burn. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 05:27:24 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 38EBE7F6 for ; Mon, 11 Mar 2013 05:27:24 +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 A13986DA for ; Mon, 11 Mar 2013 05:27:22 +0000 (UTC) Received: from kw.news4all.se (usenet4all.se [82.182.32.53]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id r2B5RJ3s002321; Mon, 11 Mar 2013 06:27:21 +0100 (CET) (envelope-from bah@bananmonarki.se) Message-ID: <513D6B1C.5020005@bananmonarki.se> Date: Mon, 11 Mar 2013 06:26:52 +0100 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130301 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Joseph A. Nagy, Jr" Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> In-Reply-To: <513CDE73.4010505@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: c.petrik.sosa@gmail.com, jmc-freebsd2@milibyte.co.uk, Matthias Apitz , "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 05:27:24 -0000 2013-03-10 20:26, Joseph A. Nagy, Jr skrev: > D [10/Mar/2013:14:18:04 -0500] [Job 12] Running /usr/local/bin/espgs > -dQUIET -dDEBUG -dPARANOIDSAFER -dNOPAUSE -dBATCH -dNOMEDIAATTRS > -sDEVICE=cups -sstdout=%stderr -sOUTPUTFILE=%stdout -c - What happens when you run this from a prompt. > D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object "libgnutls.so.47" > not found, required by "rastertogutenprint.5.2" > D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object "libgnutls.so.47" > not found, required by "espgs" > printer-state-message="/usr/local/libexec/cups/filter/rastertogutenprint.5.2 > failed" > D [10/Mar/2013:14:18:04 -0500] [Job 12] printer-state-reasons=none This doesn't look right. Do you have gnutls installed? > Still no printing going on. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 06:18:13 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 29ED514C for ; Mon, 11 Mar 2013 06:18:13 +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 904AD856 for ; Mon, 11 Mar 2013 06:18:10 +0000 (UTC) Received: from kw.news4all.se (usenet4all.se [82.182.32.53]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id r2B6I4mb003797; Mon, 11 Mar 2013 07:18:07 +0100 (CET) (envelope-from bah@bananmonarki.se) Message-ID: <513D7701.7000605@bananmonarki.se> Date: Mon, 11 Mar 2013 07:17:37 +0100 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130301 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Joseph A. Nagy, Jr" Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> In-Reply-To: <5135A88B.1000100@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 06:18:13 -0000 2013-03-05 09:10, Joseph A. Nagy, Jr skrev: > Cups is setup so I should be able to print: > http://www.joseph-a-nagy-jr.us/images/problems/cups-printer.png > > My pdf reader sees the printer: > http://www.joseph-a-nagy-jr.us/images/problems/printer-there.png > > yet it won't print and delivers this dialog: > http://www.joseph-a-nagy-jr.us/images/problems/print-error.png > > any ideas on how to correct this? http://www.openprinting.org/printer/Canon/Canon-PIXMA_MP210 From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 10:11:05 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 03872283 for ; Mon, 11 Mar 2013 10:11:05 +0000 (UTC) (envelope-from tomek.cedro@gmail.com) Received: from mail-qe0-f52.google.com (mail-qe0-f52.google.com [209.85.128.52]) by mx1.freebsd.org (Postfix) with ESMTP id BFF6329A for ; Mon, 11 Mar 2013 10:11:04 +0000 (UTC) Received: by mail-qe0-f52.google.com with SMTP id s14so2128414qeb.25 for ; Mon, 11 Mar 2013 03:10:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=8J5Ahw8U4SKg5ENkRwMvoCCcBjcXAzQrESy+WqW61qc=; b=K4OA/6SnsIF9kJDxNvi3e6M6FLDS89WrzjEEZXNNPlsYOohGBvIq2aosYbK2OfhEjX EY67GdrPmtvSvEw3supPJQvcABDeTwdMX1QRY/OME78sGseCXR8X8GEpa5dOzd7071qR g/2bOrjL6Glq2MqyeCT7IJFLTW3FaTpFAn86jzQpqsnaf7FXC5B7YcY2z0H6j33+QpAc eVftmxWA7WCK9pL05AbNtQKuc1261ejv3CHWG49e/z5e+FjNbTE/bJ3MmXOaE+3XuAbu OUFoa9g2dXtcf/scVMT9ubYJ8lEtCrFENhfBuXA8Vpo8ilInIeN7YOQHANeNPG3c/jV3 jQxQ== MIME-Version: 1.0 X-Received: by 10.224.58.147 with SMTP id g19mr16218168qah.22.1362996658546; Mon, 11 Mar 2013 03:10:58 -0700 (PDT) Sender: tomek.cedro@gmail.com Received: by 10.49.120.7 with HTTP; Mon, 11 Mar 2013 03:10:58 -0700 (PDT) In-Reply-To: <513D6306.3050300@bananmonarki.se> References: <513D6306.3050300@bananmonarki.se> Date: Mon, 11 Mar 2013 11:10:58 +0100 X-Google-Sender-Auth: SzciW2jJimKqYYDG5y34DJ21LP4 Message-ID: Subject: Re: growisofs does not burn folders correctly all files are flat on the disk no folders From: CeDeROM To: Bernt Hansson Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD Questions Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 10:11:05 -0000 On Mon, Mar 11, 2013 at 5:52 AM, Bernt Hansson wrote: > 2013-03-10 21:07, CeDeROM skrev: >> I have problem with growisofs - I get all files flat on the disk there >> are no directories as on the source drive :-( I had this once with BD >> and once with DVD disk on my new 9.1-RELEASE machine. > Make an ISO file first, then burn. Yea I will try that way to see what is wrong, but I hoped maybe someone had this problem also and found the solution :-) Best regards :-) Tomek -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 11:35:25 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C5BD1CF1 for ; Mon, 11 Mar 2013 11:35:25 +0000 (UTC) (envelope-from freebsd-listen@fabiankeil.de) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.29.23]) by mx1.freebsd.org (Postfix) with ESMTP id 8A346AAF for ; Mon, 11 Mar 2013 11:35:25 +0000 (UTC) Received: from [78.35.155.238] (helo=fabiankeil.de) by smtprelay01.ispgateway.de with esmtpsa (SSLv3:AES128-SHA:128) (Exim 4.68) (envelope-from ) id 1UF0lZ-0001ZP-2q for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 12:19:41 +0100 Date: Mon, 11 Mar 2013 12:19:34 +0100 From: Fabian Keil Cc: FreeBSD Questions Mailing List Subject: Re: growisofs does not burn folders correctly all files are flat on the disk no folders Message-ID: <20130311121934.5cd981f6@fabiankeil.de> In-Reply-To: References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/r0CS6qs_/9C9u6N=PtQO0rI"; protocol="application/pgp-signature" X-Df-Sender: Nzc1MDY3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 11:35:25 -0000 --Sig_/r0CS6qs_/9C9u6N=PtQO0rI Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable CeDeROM wrote: > I have problem with growisofs - I get all files flat on the disk there > are no directories as on the source drive :-( I had this once with BD > and once with DVD disk on my new 9.1-RELEASE machine. >=20 > growisofs -Z/dev/cd2 -dvd-compat -R -J -iso-level 3 -udf * >=20 > % growisofs --version > * growisofs by , version 7.1, > front-ending to mkisofs: mkisofs 3.00 (amd64-unknown-freebsd9.1) > Copyright (C) 1993-1997 Eric Youngdale (C) 1997-2010 J=EF=BF=BDrg Schilli= ng >=20 > Any hints welcome :-) I've never used growisofs, but given that it's a mkisofs front-end I suspect that you may want to change the pathspec from "*" to the path to the directory that contains the directory structure you want on the disc. For example ".", if it's also the current working directory. For details see mkisofs(8). Fabian --Sig_/r0CS6qs_/9C9u6N=PtQO0rI Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlE9vckACgkQBYqIVf93VJ2opwCgkP9MnA2mn/pdICwVLISS3yZk z0kAn201r6yYMtHO3kk7MiOIaFtj7sei =Jh+D -----END PGP SIGNATURE----- --Sig_/r0CS6qs_/9C9u6N=PtQO0rI-- From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 12:17:29 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BF99CE9E for ; Mon, 11 Mar 2013 12:17:29 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ia0-x236.google.com (mail-ia0-x236.google.com [IPv6:2607:f8b0:4001:c02::236]) by mx1.freebsd.org (Postfix) with ESMTP id 90901D90 for ; Mon, 11 Mar 2013 12:17:29 +0000 (UTC) Received: by mail-ia0-f182.google.com with SMTP id b35so1804918iac.13 for ; Mon, 11 Mar 2013 05:17:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=l9Fmwft01crXisCBCUqpdbnCTnUE7lH3skf5E7rXdkU=; b=KY9m0oooTQ1NuvKAyZeIhoeZVQKVMT0xNllXOQvMRyeNiHoNLwb7wcSFPmxNBP4H/r flQ2/dDFSIaXH6GJ4f1Oby3kpAHe3xcenuqXJRgV3YMZa5FIue3rZM2SV+XlgPK1MrzD 4JHkUK5q381IwVKhlY/P0ElSBVmBnYFsaAPuHxg7yXvimR3WAzj8cAH4BJOqfKRkm3vb a63sms6iSU3J5uXTW8S2R2qVrfPZFfla7MDKaIhauweaw0t13CvkE+6e8bfToJlaPoxy xAZLQKGdSj4RfbRjmUYPUUv142joYvvwBrSYyAHsAhVwXKySEc+O7iy54Ti3WMMo+GDQ bk5A== X-Received: by 10.50.151.179 with SMTP id ur19mr6983503igb.79.1363004249239; Mon, 11 Mar 2013 05:17:29 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id ew5sm13982578igc.2.2013.03.11.05.17.26 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Mar 2013 05:17:28 -0700 (PDT) Message-ID: <513DCB54.3070609@gmail.com> Date: Mon, 11 Mar 2013 07:17:24 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Bernt Hansson Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <513D6B1C.5020005@bananmonarki.se> In-Reply-To: <513D6B1C.5020005@bananmonarki.se> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: c.petrik.sosa@gmail.com, jmc-freebsd2@milibyte.co.uk, Matthias Apitz , "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 12:17:29 -0000 On 03/11/13 00:26, Bernt Hansson wrote: > 2013-03-10 20:26, Joseph A. Nagy, Jr skrev: > >> D [10/Mar/2013:14:18:04 -0500] [Job 12] Running /usr/local/bin/espgs >> -dQUIET -dDEBUG -dPARANOIDSAFER -dNOPAUSE -dBATCH -dNOMEDIAATTRS >> -sDEVICE=cups -sstdout=%stderr -sOUTPUTFILE=%stdout -c - > > What happens when you run this from a prompt. > > >> D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object "libgnutls.so.47" >> not found, required by "rastertogutenprint.5.2" >> D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object "libgnutls.so.47" >> not found, required by "espgs" >> printer-state-message="/usr/local/libexec/cups/filter/rastertogutenprint.5.2 >> >> failed" >> D [10/Mar/2013:14:18:04 -0500] [Job 12] printer-state-reasons=none > > This doesn't look right. Do you have gnutls installed? > >> Still no printing going on. # /usr/local/bin/espgs -dQUIET -dDEBUG -dPARANOIDSAFER -dNOPAUSE -dBATCH -dNOMEDIAATTRS -sDEVICE=cups -sstdout=%stderr -sOUTPUTFILE=%stdout -c - Shared object "libgnutls.so.47" not found, required by "espgs" I thought at one point I did, but apparently not. Will re-install after I finish running the updates currently going on. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 12:49:48 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 65129D32 for ; Mon, 11 Mar 2013 12:49:48 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 3B9E9ED4 for ; Mon, 11 Mar 2013 12:49:47 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Mon, 11 Mar 2013 05:49:49 -0700 Message-ID: <513DD2E9.2040700@a1poweruser.com> Date: Mon, 11 Mar 2013 08:49:45 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Ben Cottrell Subject: Re: day light saving time happened today References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> <513D369C.8080907@a1poweruser.com> <20130310215632.3c0344f2@europa> <513D3EEB.3020201@a1poweruser.com> <57B1D1B8-5DBC-41C9-AB76-55687AB45359@wolfhut.org> In-Reply-To: <57B1D1B8-5DBC-41C9-AB76-55687AB45359@wolfhut.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 11 Mar 2013 12:49:49.0235 (UTC) FILETIME=[EA9AB030:01CE1E56] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: Mike Jeays , freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 12:49:48 -0000 Ben Cottrell wrote: > On Mar 10, 2013, at 19:18, Fbsd8 wrote: >> What is really needed is for the tzsetup program to state which east coast selections have day light saving included. Maybe a pr is in order. > > Nope, you pretty conclusively proved that you're using the right > time zone setting. Trust me. :-) That md5 you posted is the exact > same md5 that's on my own system. My own America/New_York is > doing just fine, thank you. ;-) > > Something else is going on. *What*, I don't know. But you chose > the right time zone in tzsetup and that time zone description > file definitely does have DST rules in it. > > I never use the wall_cmos_clock setting, because I don't trust > it -- at least with the traditional behavior (wall_cmos_clock=0) > I know *exactly* what's going on. I really don't know what is > happening under the hood when that's turned on, so I have no > idea if it could be related or not. But I'm curious what > it shows if you run: > > sysctl machdep.wall_cmos_clock > > ~Ben > sysctl machdep.wall_cmos_clock returned 0 Ran this little test. Last night before turning off my system I used the date command to set the date to 3/9 with the correct DST. This morning when I turned on my system the time had advanced by one hour. So this proves that the time zone setting does have DST in it and every thing worked as expected. Even though the system is now on DST the date command still displays EDT. Does the date command ever show DST? Now about the question of why did the time not jump forward on the date it was suppose to? It all boils down to this, On 3/9 I did not check the time. I just expected it to be correct. Even though the date and time is displayed every morning when I boot my system, I have never in 20 years taken the time to verify if its correct on any of the many PCs I have used. It is totally possible that the system time was incorrect and I was just not aware of it before DST went into effect, after which I checked the time as I did with all the other clocks in the house. So for now, thats how I am leaving things. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 12:51:04 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 01978EA4 for ; Mon, 11 Mar 2013 12:51:04 +0000 (UTC) (envelope-from emorrasg@yahoo.es) Received: from nm9.bullet.mail.ird.yahoo.com (nm9.bullet.mail.ird.yahoo.com [77.238.189.35]) by mx1.freebsd.org (Postfix) with SMTP id 3AB85EE5 for ; Mon, 11 Mar 2013 12:51:01 +0000 (UTC) Received: from [212.82.105.246] by nm9.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 12:50:53 -0000 Received: from [46.228.39.43] by tm18.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 12:50:53 -0000 Received: from [127.0.0.1] by smtp176.mail.ir2.yahoo.com with NNFMP; 11 Mar 2013 12:50:53 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.es; s=s1024; t=1363006253; bh=AaRDNzeM8ftrFqPZrTpXZihycwdN/o7ZHRtQ1TEHLyI=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Date:From:To:Subject:Message-Id:In-Reply-To:References:X-Mailer:Mime-Version:Content-Type:Content-Transfer-Encoding; b=gzcXEaegnrkXS58b4ZD0V5YDNh/oqS8QmumMAKqrtH5dz6OTdeAFvHnFP8k3Q/1GOxlXLJrJHhgBnSUwbdTvIy1La7wmpZIWYF4ZFA28efKt429AW50Vcq7Au8UGuxf/iDWxYos9Ri6Gu2Nam7QWXKGBEVNNztyzBY9uA3m/Upg= X-Yahoo-Newman-Id: 819897.42096.bm@smtp176.mail.ir2.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: 041lrHwVM1mkYPn1lECyaiNlSxSobqeO77PJVEI9roFOQVI tSIQa8pb3zItd74AcJjpfXUtBphfOgANdy8nOS99sSwYaQaoIevSvs3e_zTA J6s9qEdKlDjyEXPhaEYhSRhOu42rGgkPPMhgOVGi8l96bMEie3WMCN9D0CtW 73ymkiTkusilUfQjxCNxS8YJ6VuAt._7kLr_PCkSTrW70ZGnYeN4cdcX5g5h bIHoNcQXe0WDteuqNwBdFAuCGdlswSvDBY9TI7Q8g2wECfR9JJxwXJujjKoh 6LRP0RShWoTbLzF.dYlGADQ3zusVEfVB6UZtcqA3hut8akNC_t_osbh_rfLa 6DJKbbuPuHzPBLRXOTljBLfnSN1FQlUBOip.TGtN1aGWHXMcL9SImX40kXFB qTHFJ2DAyIlUdc_ig X-Yahoo-SMTP: mX392iiswBAeJNdO_s.EW62LZDJR Received: from camibar.emorras.eu (emorrasg@85.219.45.252 with plain) by smtp176.mail.ir2.yahoo.com with SMTP; 11 Mar 2013 12:50:53 +0000 UTC Date: Mon, 11 Mar 2013 13:51:10 +0100 From: Eduardo Morras To: freebsd-questions@freebsd.org Subject: Re: FreeBSD 9 and Windows XP Message-Id: <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> In-Reply-To: <20130309120741.DED57767@ms5.mc.surewest.net> References: <20130309120741.DED57767@ms5.mc.surewest.net> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 12:51:04 -0000 On Sat, 9 Mar 2013 12:07:41 -0800 (PST) wrote: > Good afternoon, FreeBSD enthusiasts. Can FreeBSD 9.1 be installed on a computer on which Windows XP currently resides? If so, how can this installation be >done? In particular, is there a way to install 9.1 so that it can be booted from the traditional master boot record? It is important that, when I am done, I can >still boot to Windows XP, as I must run some applications not available on FreeBSD. If the idea I am proposing is not feasible with version 9.1, will it work with >8.3? Any comments are appreciated. If this question has already been asked many times before, please just let me know where to look to find the answer. Thanks. >Newbie502 As an addon to other answers, you can install VirtualBox, create a minimal hard disk with MBR boot menu that points to the WindowsXP partition. This way you don't need to restart in WinXP. The same can be done from WinXP side, a minimal hd with MBR boot menu to startup the FreeBSD. --- --- Eduardo Morras From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 13:14:08 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AF04857B for ; Mon, 11 Mar 2013 13:14:08 +0000 (UTC) (envelope-from ralf.mardorf@rocketmail.com) Received: from nm5.bullet.mail.ird.yahoo.com (nm5.bullet.mail.ird.yahoo.com [77.238.189.62]) by mx1.freebsd.org (Postfix) with SMTP id E6332122 for ; Mon, 11 Mar 2013 13:14:07 +0000 (UTC) Received: from [77.238.189.231] by nm5.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 13:14:06 -0000 Received: from [46.228.39.100] by tm12.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 13:14:06 -0000 Received: from [127.0.0.1] by smtp137.mail.ir2.yahoo.com with NNFMP; 11 Mar 2013 13:14:06 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rocketmail.com; s=s1024; t=1363007646; bh=r/vTvoM7XxuhHgHitHADT2KV6cUkbRFfZeR09Jk1mdk=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Message-ID:Subject:From:To:Date:In-Reply-To:References:Content-Type:X-Mailer:Mime-Version:Content-Transfer-Encoding; b=p9nmrpVNsFllToyGcX1bFQNG0GpfP2g8NfDuqBShmP5TxUCj2DaNdYaNWKpvTiORFcqQm4WtIg3ZXNajf7ozmPOlWQGmSGijq7mPEbdLSESiXbQ6cxGqSX7ZqM/NTXlQysLPNvXLmbZ/34qXKPOAp0NLut63mbl6B8tZbDZzivY= X-Yahoo-Newman-Id: 797896.39305.bm@smtp137.mail.ir2.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: .O4caucVM1kqUPE3F_zXQFwbqNwlnmvcLi_E3E94cQpoM34 rdYoCaAivx.Wx_QBilbiQbkME2Cjf.3JXXudPQOPT6dlktfN31tZhVKkH9m0 oj0enEAPSJFWjp0RM0aD5PjzTYwLuK7pAfKJ5HglmjRLnM2DC_7.AdvQ1Dwd ADKPyzK3NJuSOonwcSX.m1GJ9.Zxk5qXKWIv3hhmMs2ksWc59pWyKFRshBKr feMjkS1Rkb_jlAtUFOGJLj9TZloM6mBsxfvgnij7na6UEWvb_AsP6e.EZYcD Cf2170YNQZ_nWoUnMJOOpOO6nxjFnAEzPifrNlG0oHUD2NWUJKsBhhQjGqII 6bbqCWOmVFopixjkQHLLe.fCIGALYTJnwvbmnBQgrvhcxjf.L7cuIWajwPLd 6ndUrvR_PZeAOPK0hEJxg6qpBWlLlrvMbb14KJ._SuSkC X-Yahoo-SMTP: BeMCPs2swBABTJ3kAeEiC_hE0mz8jRexLddJfD8pI2j32fOacjBmXg-- Received: from [85.182.23.225] (ralf.mardorf@85.182.23.225 with login) by smtp137.mail.ir2.yahoo.com with SMTP; 11 Mar 2013 13:14:06 +0000 UTC Message-ID: <1363007645.631.43.camel@archlinux> Subject: Re: FreeBSD 9 and Windows XP From: Ralf Mardorf To: freebsd-questions@freebsd.org Date: Mon, 11 Mar 2013 14:14:05 +0100 In-Reply-To: <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> References: <20130309120741.DED57767@ms5.mc.surewest.net> <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 13:14:08 -0000 On Mon, 2013-03-11 at 13:51 +0100, Eduardo Morras wrote: > As an addon to other answers, you can install VirtualBox, create a > minimal hard disk with MBR boot menu that points to the WindowsXP > partition. This way you don't need to restart in WinXP. The same can > be done from WinXP side, a minimal hd with MBR boot menu to startup > the FreeBSD. This does work? I've got XP as VBox's vdi and just a folder to share content with *nix. It would be possible to install XP bootable without VBox to a ntfs partition, to boot it directly and if wanted, to use it also as guest in VBox? I only use VBox to get applications for an iPad and to copy PDFs to an iPad, since ad-hoc networks until now never worked for me, but I also would like to test hardware sometimes, impossible with VBox, so sometimes it would be nice to have a real Windows install. If this should work, will it become impossible to use snapshots made by VBox? Will there be no confusion regarding to different drivers for the XP booted as VBox guest and booted directly? Regards, Ralf From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 13:25:44 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 383E7A4E for ; Mon, 11 Mar 2013 13:25:44 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ia0-x22f.google.com (mail-ia0-x22f.google.com [IPv6:2607:f8b0:4001:c02::22f]) by mx1.freebsd.org (Postfix) with ESMTP id 078721C3 for ; Mon, 11 Mar 2013 13:25:43 +0000 (UTC) Received: by mail-ia0-f175.google.com with SMTP id e16so1910363iaa.6 for ; Mon, 11 Mar 2013 06:25:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=FHJt/Lyf/Z/vThwQKEGQ+ecMay4jU1RwB7P3T2CBLbM=; b=BVUdO7HXIaDcj757yYRf/VNU7d0tXBHbV6Th4owECC6rMXLojhAXXnbTyGj/qBKOuj H3oia3Zd9iT2NwLLvz20EH6fqqLfDLwr5HnrMhufuWcOSKPGsSSxLAuaFy4PnR/kujLU Xcln4Vv4fO8lx+nbq2pBsur4gPXp8YW+XTMuph0k4mK/9BCNugAHCiu+TDwzMzSXMlPW Zx6lVVD8NIZxIbG132YaVmdVgSnJwtk8n0uLu9/CLjzyxnod7FdUL4a/7tdBmdPXGQge QtZcpk+kp4/yGxfW6/ScvqqqftfnanTdPqvR2lBaHtL37AEuHwj/2Bb5e03lz5edGx7h VL+Q== X-Received: by 10.43.4.74 with SMTP id ob10mr8616588icb.28.1363008343713; Mon, 11 Mar 2013 06:25:43 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id qn10sm12955178igc.6.2013.03.11.06.25.40 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Mar 2013 06:25:42 -0700 (PDT) Message-ID: <513DDB52.7060903@gmail.com> Date: Mon, 11 Mar 2013 08:25:38 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Bernt Hansson Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <513D6B1C.5020005@bananmonarki.se> In-Reply-To: <513D6B1C.5020005@bananmonarki.se> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: c.petrik.sosa@gmail.com, jmc-freebsd2@milibyte.co.uk, Matthias Apitz , "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 13:25:44 -0000 On 03/11/13 00:26, Bernt Hansson wrote: > 2013-03-10 20:26, Joseph A. Nagy, Jr skrev: > >> D [10/Mar/2013:14:18:04 -0500] [Job 12] Running /usr/local/bin/espgs >> -dQUIET -dDEBUG -dPARANOIDSAFER -dNOPAUSE -dBATCH -dNOMEDIAATTRS >> -sDEVICE=cups -sstdout=%stderr -sOUTPUTFILE=%stdout -c - > > What happens when you run this from a prompt. > > >> D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object "libgnutls.so.47" >> not found, required by "rastertogutenprint.5.2" >> D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object "libgnutls.so.47" >> not found, required by "espgs" >> printer-state-message="/usr/local/libexec/cups/filter/rastertogutenprint.5.2 >> >> failed" >> D [10/Mar/2013:14:18:04 -0500] [Job 12] printer-state-reasons=none > > This doesn't look right. Do you have gnutls installed? I did indeed have it installed, just reinstalled (which updated another port), but apparently not the right version? -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 13:31:06 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EFE11D14 for ; Mon, 11 Mar 2013 13:31:05 +0000 (UTC) (envelope-from emorrasg@yahoo.es) Received: from nm7-vm0.bullet.mail.ird.yahoo.com (nm7-vm0.bullet.mail.ird.yahoo.com [77.238.189.222]) by mx1.freebsd.org (Postfix) with SMTP id 4B2D9217 for ; Mon, 11 Mar 2013 13:31:04 +0000 (UTC) Received: from [77.238.189.50] by nm7.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 13:30:57 -0000 Received: from [217.146.189.67] by tm3.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 13:30:57 -0000 Received: from [127.0.0.1] by smtp147.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 13:30:57 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.es; s=s1024; t=1363008657; bh=e21LIsx+W2j18NvShTV7FWdH9pxw9t2kOCiwkRavYgs=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Date:From:To:Subject:Message-Id:In-Reply-To:References:X-Mailer:Mime-Version:Content-Type:Content-Transfer-Encoding; b=C1a9FwVjSpB1YEQ+Z3h/I8kbu33TIoKNaqnp1v/c2hNru+2U2Etqqxa27yoEJhdjlHFZEUsOwPaxbSVwHmYd+8UCAzPHmgO0Hzcf6SC+xY8+h2LR5RbXHlO+A24YyplDOCOVOxtaC1PBXyIk0WMLcGTLUiL8kzGCpwD+lcS6ZKI= X-Yahoo-Newman-Id: 702522.50974.bm@smtp147.mail.ird.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: iZs1txsVM1mCl4Pm3gPvWN19wJNvKMUw12Z0sYFoK9LmoxM REE6FdkpQSML.70dbvThsBAP5F7p.OanXrSJzGa3ppRUD_jhDDhEs10JdxCK qepXL6_Ygd5CPvNWf28GW9DpUajZWWEvjN6I1c15TrqfCDaFSghNLJoF7E1j Dkz87xBYnG27_PV9Q1bt.U.VWCmT1BmcS6u4k1KeAshCGSi.3Si6aBBtNapK HSIyE2UfRNcU5GZiLN_eFg3uZBeVQvYyVrJRO3ZZtEIgmfZaEbQpqJHAmMGZ 8MvgOAU.kfRO1yHUpIM65owobPOkXMmACsUBt5sHM0eRB5MkAeRNxZ_ohvDL GHB3mCYaC6s4EJGEG6rPk8_0eMXLDYHKXA4xLXDXX8kOj3CcpXt8gD.TnKea ssBKyDoi.uE.EluLQrT5qxvGue4TDSYp91TkKdtgH3IoE7qE60lOtW1Rb4Zx wMIijj9yNoML67UngfBy4yFxNSYwJYpBb7dsx18hnME4SYC75utzM6sUCer3 2sZ4YuE5AEfVyybZgKXWIsWHBPc3mXCcuUpA- X-Yahoo-SMTP: mX392iiswBAeJNdO_s.EW62LZDJR Received: from camibar.emorras.eu (emorrasg@85.219.45.252 with plain) by smtp147.mail.ird.yahoo.com with SMTP; 11 Mar 2013 06:30:57 -0700 PDT Date: Mon, 11 Mar 2013 14:31:13 +0100 From: Eduardo Morras To: freebsd-questions@freebsd.org Subject: Re: FreeBSD 9 and Windows XP Message-Id: <20130311143113.d87dc3181183a4d8059a0810@yahoo.es> In-Reply-To: <1363007645.631.43.camel@archlinux> References: <20130309120741.DED57767@ms5.mc.surewest.net> <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> <1363007645.631.43.camel@archlinux> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 13:31:06 -0000 On Mon, 11 Mar 2013 14:14:05 +0100 Ralf Mardorf wrote: > On Mon, 2013-03-11 at 13:51 +0100, Eduardo Morras wrote: > > As an addon to other answers, you can install VirtualBox, create a > > minimal hard disk with MBR boot menu that points to the WindowsXP > > partition. This way you don't need to restart in WinXP. The same can > > be done from WinXP side, a minimal hd with MBR boot menu to startup > > the FreeBSD. > > This does work? I followed the instructions (only once) from this page http://geekery.amhill.net/2010/01/27/virtualbox-with-existing-windows-partition/ and it works under FreeBSD 8.3 and WinXP. > I've got XP as VBox's vdi and just a folder to share content with *nix. > It would be possible to install XP bootable without VBox to a ntfs > partition, to boot it directly and if wanted, to use it also as guest in > VBox? I use it that way, my set up is 2 primary mbr partitions, one with XP ntfs, the other with FreeBSD ufs2+su. VBox installed on both. > > I only use VBox to get applications for an iPad and to copy PDFs to an > iPad, since ad-hoc networks until now never worked for me, but I also > would like to test hardware sometimes, impossible with VBox, so > sometimes it would be nice to have a real Windows install. > > If this should work, will it become impossible to use snapshots made by > VBox? Will there be no confusion regarding to different drivers for the > XP booted as VBox guest and booted directly? Don't know if VBox snapshots are usable, never tried. There's no confusion, WinXP access directly to the XP partition and FreeBSD to FreeBSD partition. If you don't play with VBox internal commands you are safe. I got a dirty fs on FreeBSD when WinXP crashed once. HTH > Regards, > Ralf --- --- Eduardo Morras From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 13:38:47 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7CABF33F for ; Mon, 11 Mar 2013 13:38:47 +0000 (UTC) (envelope-from ralf.mardorf@rocketmail.com) Received: from nm12.bullet.mail.ird.yahoo.com (nm12.bullet.mail.ird.yahoo.com [77.238.189.65]) by mx1.freebsd.org (Postfix) with SMTP id CEE44270 for ; Mon, 11 Mar 2013 13:38:46 +0000 (UTC) Received: from [212.82.105.246] by nm12.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 13:38:40 -0000 Received: from [217.146.188.168] by tm18.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 13:38:40 -0000 Received: from [127.0.0.1] by smtp136.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 13:38:40 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rocketmail.com; s=s1024; t=1363009120; bh=x9qTiuh0H2cLf7J633xbjgOkcVCTjw9UD3fuGeMkpiM=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Message-ID:Subject:From:To:Date:In-Reply-To:References:Content-Type:X-Mailer:Mime-Version:Content-Transfer-Encoding; b=F9phRvHOodoYV3rjz5cEOc/wDeqD7cuB+JYvkRP8IUQq/7QnodSZ8Se6mABNoC3reBZumutOo+s4i+JRtA/aBuCZ3Au58bH3zDFKfEDlRmtm8dBzkGgPCcZB6uR1pRiqYm+z17zgAP4595BQB2LksFvfCrG8xvYP2pGNFxChjOU= X-Yahoo-Newman-Id: 455939.70376.bm@smtp136.mail.ird.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: gvSxi.MVM1lsOOMEaDbwVJuPmN0oXRuRNYiGCkOhtDFyH1v LQMkazQeyH2a6qY1o604kJ4BEfTr5k9rWYdj8CZDj6wjwYkfSrOIlxXpOI9A zlCFQdm2NqQm2oLIuV.M6UN5NoUzvGz2GRGpdDftde8s5We5OAz1fRJ7MdNX T6CbICzENhXw8epZIYUThr2i_N4wHzgcT3pqRCJ1o4zKMZruMBApOtLT0g03 QXaxDfX4R2NJRhDJ9YrIjzdpl9a9ztWSxysa_v.bfeMhrpE_DNsBzmifZylt HYnq5C5Fo0Y.dovcgbFP4bQzh7kLaoje78qi9DIA1CCbXrgmqwwSoegNIue_ rH0S5LcjQVxY0Q2M9IvTSDxt1qdwVxvNk40tNHjLT79_7io0MWe2qrjPlcJp yEybgadDD_R1dOj59LFqVEZlQi6aku6KsO4ksxQ3ZvJ64.rWgXCaBSlcbnqg 0Mw5C581ezYFI5DbIZv78aAu2xPgBJoynQrwph85nW39LZr0N.5AamBf1YE. DeB0hV6JigUIccoJ71Z_IV8EGfy9syfSO7P.kY7Dd2oz5Yb7CjNea4CMzYbv x X-Yahoo-SMTP: BeMCPs2swBABTJ3kAeEiC_hE0mz8jRexLddJfD8pI2j32fOacjBmXg-- Received: from [85.182.23.225] (ralf.mardorf@85.182.23.225 with login) by smtp136.mail.ird.yahoo.com with SMTP; 11 Mar 2013 06:38:40 -0700 PDT Message-ID: <1363009119.631.58.camel@archlinux> Subject: Re: FreeBSD 9 and Windows XP From: Ralf Mardorf To: freebsd-questions@freebsd.org Date: Mon, 11 Mar 2013 14:38:39 +0100 In-Reply-To: <20130311143113.d87dc3181183a4d8059a0810@yahoo.es> References: <20130309120741.DED57767@ms5.mc.surewest.net> <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> <1363007645.631.43.camel@archlinux> <20130311143113.d87dc3181183a4d8059a0810@yahoo.es> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 13:38:47 -0000 On Mon, 2013-03-11 at 14:31 +0100, Eduardo Morras wrote: > On Mon, 11 Mar 2013 14:14:05 +0100 > Ralf Mardorf wrote: > > > On Mon, 2013-03-11 at 13:51 +0100, Eduardo Morras wrote: > > > As an addon to other answers, you can install VirtualBox, create a > > > minimal hard disk with MBR boot menu that points to the WindowsXP > > > partition. This way you don't need to restart in WinXP. The same > can > > > be done from WinXP side, a minimal hd with MBR boot menu to > startup > > > the FreeBSD. > > > > This does work? > > I followed the instructions (only once) from this page > http://geekery.amhill.net/2010/01/27/virtualbox-with-existing-windows-partition/ and it works under FreeBSD 8.3 and WinXP. > > > I've got XP as VBox's vdi and just a folder to share content with > *nix. > > It would be possible to install XP bootable without VBox to a ntfs > > partition, to boot it directly and if wanted, to use it also as > guest in > > VBox? > > I use it that way, my set up is 2 primary mbr partitions, one with XP > ntfs, the other with FreeBSD ufs2+su. VBox installed on both. > > > > > I only use VBox to get applications for an iPad and to copy PDFs to > an > > iPad, since ad-hoc networks until now never worked for me, but I > also > > would like to test hardware sometimes, impossible with VBox, so > > sometimes it would be nice to have a real Windows install. > > > > If this should work, will it become impossible to use snapshots made > by > > VBox? Will there be no confusion regarding to different drivers for > the > > XP booted as VBox guest and booted directly? > > Don't know if VBox snapshots are usable, never tried. > > There's no confusion, WinXP access directly to the XP partition and > FreeBSD to FreeBSD partition. If you don't play with VBox internal > commands you are safe. I got a dirty fs on FreeBSD when WinXP crashed > once. Thank you :) I'll flag your reply as "useful information", perhaps I come back to that later. Regards, Ralf From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 14:05:10 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1C706FE for ; Mon, 11 Mar 2013 14:05:10 +0000 (UTC) (envelope-from richard@inf.ed.ac.uk) Received: from treacle.ucs.ed.ac.uk (treacle.ucs.ed.ac.uk [129.215.16.102]) by mx1.freebsd.org (Postfix) with ESMTP id A78C23E7 for ; Mon, 11 Mar 2013 14:05:09 +0000 (UTC) Received: from nutty.inf.ed.ac.uk (nutty.inf.ed.ac.uk [129.215.33.33]) by treacle.ucs.ed.ac.uk (8.13.8/8.13.4) with ESMTP id r2BDQwtO010985; Mon, 11 Mar 2013 13:26:58 GMT Received: from macavity.inf.ed.ac.uk (macavity.inf.ed.ac.uk [129.215.197.221]) by nutty.inf.ed.ac.uk (8.13.8/8.13.8) with ESMTP id r2BDQvAA017651; Mon, 11 Mar 2013 13:26:57 GMT Received: by macavity.inf.ed.ac.uk (Postfix, from userid 26013) id ECD016D0DB9; Mon, 11 Mar 2013 13:26:57 +0000 (GMT) From: Richard Tobin Subject: Re: How to know % of read file in cat? To: Eduardo Morras , freebsd-questions@freebsd.org In-Reply-To: Eduardo Morras's message of Sat, 9 Mar 2013 10:54:00 +0100 X-Mailer: Ream 5.1.51-richard-mac Message-Id: <20130311132657.ECD016D0DB9@macavity.inf.ed.ac.uk> Date: Mon, 11 Mar 2013 13:26:57 +0000 (GMT) X-Edinburgh-Scanned: at treacle.ucs.ed.ac.uk with MIMEDefang 2.60, Sophie, Sophos Anti-Virus, Clam AntiVirus Content-Type: text/plain MIME-Version: 1.0 Content-Disposition: inline X-Scanned-By: MIMEDefang 2.60 on 129.215.16.102 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 14:05:10 -0000 > I use cat to read a file and pass it to another app, the command is this: > > camibar% cat file.git | fossil import --git file.fossil > > It takes a lot of time, file.git is 12GB, and i want to know if > there's some 'magic' trick can I use to show me how many bytes or > the % of the file.git cat sent to the other app. Use dd (see man page) instead of cat, and control-T will show you how much it has transferred. -- Richard -- The University of Edinburgh is a charitable body, registered in Scotland, with registration number SC005336. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 14:18:32 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id AAAC17E6 for ; Mon, 11 Mar 2013 14:18:32 +0000 (UTC) (envelope-from noeldude@gmail.com) Received: from mail-ve0-f177.google.com (mail-ve0-f177.google.com [209.85.128.177]) by mx1.freebsd.org (Postfix) with ESMTP id 672FB6A8 for ; Mon, 11 Mar 2013 14:18:32 +0000 (UTC) Received: by mail-ve0-f177.google.com with SMTP id m1so2676558ves.22 for ; Mon, 11 Mar 2013 07:18:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=UpDBSK/l1TofuP4r/DF58uX0+t65t/2N1R4/OGt+zv4=; b=X75j/4TdhfOr+dDg6naUGBBGTXes2G4s49l1Tx+dvQ/E/sOI3TdqcjNxEBoO7s0P7Z FKEzBRNuZn90Z413GhIruDpHSWSxZX+q4WFsxvyogq2qDnUMjZCK0bw8PjKbFWF7pOJb pYP0c0iO0yjFp7omSt4nS0M88QLJZVODj+35QZhBnsE49uhRhFhJ8ZSOGlm3u9lPqqtx FIUfobFl4DGkCDoFqff50pDzbmXHRXzxyrqVCPRXnMpofp3FFXRomCXc2QftGwlk+cuy W0QR7wIR33IGDk01vX5rmyhx0OKVw3wwdU6mFIX5PRAYYt038zAUdBGdGMvAUPYHp5VG ZbrQ== X-Received: by 10.220.153.2 with SMTP id i2mr4627492vcw.53.1363011505955; Mon, 11 Mar 2013 07:18:25 -0700 (PDT) Received: from [192.168.70.117] (50-200-12-132-static.hfc.comcastbusiness.net. [50.200.12.132]) by mx.google.com with ESMTPS id kf8sm3109025vec.4.2013.03.11.07.18.24 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Mar 2013 07:18:25 -0700 (PDT) Message-ID: <513DE7AF.6090509@gmail.com> Date: Mon, 11 Mar 2013 09:18:23 -0500 From: Noel User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: day light saving time happened today References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> <513D369C.8080907@a1poweruser.com> <20130310215632.3c0344f2@europa> <513D3EEB.3020201@a1poweruser.com> <57B1D1B8-5DBC-41C9-AB76-55687AB45359@wolfhut.org> <513DD2E9.2040700@a1poweruser.com> In-Reply-To: <513DD2E9.2040700@a1poweruser.com> X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 14:18:32 -0000 On 3/11/2013 7:49 AM, Fbsd8 wrote: > > Even though the system is now on DST the date command still > displays EDT. Does the date command ever show DST? EDT = Eastern Daylight Time timezone not to be confused with EST = Eastern Standard Time timezone not to be confused with DST = daylight savings time, not a timezone, never shown on a computer. Your system correctly switched to daylight savings time, as verified by the EDT timezone indicator. Most likely the clock was already an hour slow before the time change. -- Noel Jones From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 14:19:32 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9748B8B3 for ; Mon, 11 Mar 2013 14:19:32 +0000 (UTC) (envelope-from pgiessel@mac.com) Received: from nk11p04mm-asmtp002.mac.com (nk11p04mm-asmtpout002.mac.com [17.158.236.237]) by mx1.freebsd.org (Postfix) with ESMTP id 7F4D96D1 for ; Mon, 11 Mar 2013 14:19:32 +0000 (UTC) Received: from [192.168.0.194] ([24.237.133.115]) by nk11p04mm-asmtp002.mac.com (Oracle Communications Messaging Server 7u4-26.01(7.0.4.26.0) 64bit (built Jul 13 2012)) with ESMTPSA id <0MJH00M13ZO1SS20@nk11p04mm-asmtp002.mac.com> for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 13:19:14 +0000 (GMT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.9.8327,1.0.431,0.0.0000 definitions=2013-03-11_01:2013-03-08,2013-03-11,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-1302030000 definitions=main-1303110081 Subject: Re: day light saving time happened today MIME-version: 1.0 (Apple Message framework v1283) Content-type: text/plain; charset=us-ascii From: "Peter A. Giessel" In-reply-to: <513DD2E9.2040700@a1poweruser.com> Date: Mon, 11 Mar 2013 05:19:12 -0800 Content-transfer-encoding: quoted-printable Message-id: References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> <513D369C.8080907@a1poweruser.com> <20130310215632.3c0344f2@europa> <513D3EEB.3020201@a1poweruser.com> <57B1D1B8-5DBC-41C9-AB76-55687AB45359@wolfhut.org> <513DD2E9.2040700@a1poweruser.com> To: Fbsd8 X-Mailer: Apple Mail (2.1283) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 14:19:32 -0000 On 2013, Mar 11, at 4:49, Fbsd8 wrote: > Even though the system is now on DST the date command still displays = EDT. Does the date command ever show DST? EST =3D Eastern Standard Time EDT =3D Eastern Daylight Savings Time EDT =3D Daylight Savings. Your date command is showing DST.= From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 14:45:10 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8CC5566F for ; Mon, 11 Mar 2013 14:45:10 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-ye0-f179.google.com (mail-ye0-f179.google.com [209.85.213.179]) by mx1.freebsd.org (Postfix) with ESMTP id 15E66867 for ; Mon, 11 Mar 2013 14:45:09 +0000 (UTC) Received: by mail-ye0-f179.google.com with SMTP id r1so610588yen.38 for ; Mon, 11 Mar 2013 07:45:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=GZE8wZcntimlksX01i5YW7C1OSg0vzU3uAWlTcs9Xbo=; b=T9DBq2c24dy71rw5OGBhX+/fimTpVmM+hJ0eAtfoIQRr3wmJ9aiPSzv6oWOsh58iWw ft7rZtIM5pM9M0xSjGq9aDlBF6xLq42G3c6cv06K9R00Q3AS5yTLIJgQR6SET6RfYZ81 jJmWt0+x4z5BJpUl/DL80Ai/lltBglnXwFS4U= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received: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=GZE8wZcntimlksX01i5YW7C1OSg0vzU3uAWlTcs9Xbo=; b=Px5tvXgg5+0Hdl5AhvA95oX0LCkqZiqS/c1wPxqneNZhyE3Nvw/tQmiewbqVTd27eH KxrxN/CCwlQw9jdFp0Kc6zLBaH4mFveigRHko+35bPPo5oHhfhU69UmAqlXb+K2OM1hk tsLt1+h6u3g27ZaVensa5YthmmR/h8s11nuJ+V7fpF2dxm9YnyhDGWx73qDqt3A6ujGY 5CIZUYHt+hn1sMoK2GIqd0Xac18Z0TFvseEG8ZfFOnTF8tIlna4FBxBex+MnXv3UyB5X 1RG9HLBIwlqdTI0k6rbarb9QC7AB+EJcBs9BqWIBGB8Z34YOQNI2SxY1DDj84t7EXWyp 6xRQ== X-Received: by 10.236.183.200 with SMTP id q48mr9126415yhm.21.1363012634766; Mon, 11 Mar 2013 07:37:14 -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 g27sm24020694yhm.21.2013.03.11.07.37.13 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Mar 2013 07:37:14 -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 3ZPhjN4q83z2CG4F for ; Mon, 11 Mar 2013 10:37:12 -0400 (EDT) Date: Mon, 11 Mar 2013 10:37:12 -0400 From: Jerry To: FreeBSD Subject: Re: day light saving time happened today Message-ID: <20130311103712.79287cb9@scorpio> In-Reply-To: <513DE7AF.6090509@gmail.com> References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> <513D369C.8080907@a1poweruser.com> <20130310215632.3c0344f2@europa> <513D3EEB.3020201@a1poweruser.com> <57B1D1B8-5DBC-41C9-AB76-55687AB45359@wolfhut.org> <513DD2E9.2040700@a1poweruser.com> <513DE7AF.6090509@gmail.com> Organization: seibercom.net X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.17; amd64-portbld-freebsd8.3) 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: ALoCoQlviAdP5K/bhcvbYxU9pMyukkre12aox5qyo4CjuAptawCcEy0E7E+slrotHufhk2DKuc3x X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: FreeBSD List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 14:45:10 -0000 On Mon, 11 Mar 2013 09:18:23 -0500 Noel articulated: > On 3/11/2013 7:49 AM, Fbsd8 wrote: > > > > Even though the system is now on DST the date command still > > displays EDT. Does the date command ever show DST? > > EDT = Eastern Daylight Time timezone > not to be confused with > EST = Eastern Standard Time timezone > not to be confused with > DST = daylight savings time, not a timezone, never shown on a > computer. > > Your system correctly switched to daylight savings time, as verified > by the EDT timezone indicator. Most likely the clock was already an > hour slow before the time change. Just wondering, but do you have NTP running to keep the time accurate? -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 16:05:42 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 550743C9 for ; Mon, 11 Mar 2013 16:05:42 +0000 (UTC) (envelope-from carlj@peak.org) Received: from mail-ie0-x243.google.com (mail-ie0-x243.google.com [IPv6:2607:f8b0:4001:c03::243]) by mx1.freebsd.org (Postfix) with ESMTP id 22E44C3D for ; Mon, 11 Mar 2013 16:05:42 +0000 (UTC) Received: by mail-ie0-f195.google.com with SMTP id c11so1959686ieb.10 for ; Mon, 11 Mar 2013 09:05:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-authentication-warning:from:to:subject:references :mail-followup-to:date:in-reply-to:message-id:user-agent :mime-version:content-type:x-gm-message-state; bh=At0uBCGnb5iQGazI87EWL5E7XxIuAyW2pFdiEnGCZmU=; b=XkaToiIQXmzFcUuhQgoFatrbat42zJdj3EYXgvXkKX/BvqiT5YiJLBLexx4KPeHNW5 zH/RypQUuzVI0rrrlj3BWbGIdaomWnthmrJ8M1zUnXYsZrBKebRhDh2+DZfqVZOXZoK9 oFYQRJhvr+MjojKn497X9Pd2r4MWaKX7AbYW8j3QLCaDlBR3Ssr9GaO4QQ1qCvWKw0zN +M0Y4KQB9AvVB1/f74sGqp7qJ7FPLIX0ARUkLSH7Aqqfj0KyYlZQWCXiBXsm5GdPnMiG a0Bpv0wxNmZwOOnzRh9jGnWMje3tNsj7LA8S7ba0L+j5vaUOZHf6Kdu9x5qdtX9q28c8 iYww== X-Received: by 10.50.170.102 with SMTP id al6mr7583026igc.81.1363017941680; Mon, 11 Mar 2013 09:05:41 -0700 (PDT) Received: from bonsai.localnet ([207.55.107.62]) by mx.google.com with ESMTPS id qn10sm13594215igc.6.2013.03.11.09.05.40 (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 11 Mar 2013 09:05:40 -0700 (PDT) Received: from oak.localnet (oak.localnet [192.168.193.34]) by bonsai.localnet (Postfix) with ESMTP id 7088D3D5C1 for ; Mon, 11 Mar 2013 09:05:38 -0700 (PDT) Received: from oak.localnet (localhost.localnet [127.0.0.1]) by oak.localnet (Postfix) with ESMTP id 3C746D2FB for ; Mon, 11 Mar 2013 09:05:38 -0700 (PDT) Received: (from carlj@localhost) by oak.localnet (8.14.5/8.14.5/Submit) id r2BG5cl9067389; Mon, 11 Mar 2013 09:05:38 -0700 (PDT) (envelope-from carlj@peak.org) X-Authentication-Warning: oak.localnet: carlj set sender to carlj@peak.org using -f From: Carl Johnson To: freebsd-questions@freebsd.org Subject: Re: FreeBSD 9 and Windows XP References: <20130309120741.DED57767@ms5.mc.surewest.net> <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> Mail-Followup-To: freebsd-questions@freebsd.org Date: Mon, 11 Mar 2013 09:05:38 -0700 In-Reply-To: <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> (Eduardo Morras's message of "Mon, 11 Mar 2013 13:51:10 +0100") Message-ID: <87a9q9udkd.fsf@oak.localnet> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Gm-Message-State: ALoCoQm7rHmwZGFBO+VSRb5AD3duJg3iX4HZp9xay3kksJNyQi9R059cxL25WNACf5gqjThJc2xE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 16:05:42 -0000 Eduardo Morras writes: > On Sat, 9 Mar 2013 12:07:41 -0800 (PST) > wrote: > >> Good afternoon, FreeBSD enthusiasts. Can FreeBSD 9.1 be installed on >> a computer on which Windows XP currently resides? If so, how can >> this installation be >done? In particular, is there a way to install >> 9.1 so that it can be booted from the traditional master boot record? >> It is important that, when I am done, I can >still boot to Windows >> XP, as I must run some applications not available on FreeBSD. If the >> idea I am proposing is not feasible with version 9.1, will it work >> with >8.3? Any comments are appreciated. If this question has >> already been asked many times before, please just let me know where >> to look to find the answer. Thanks. >Newbie502 > > > As an addon to other answers, you can install VirtualBox, create a > minimal hard disk with MBR boot menu that points to the WindowsXP > partition. This way you don't need to restart in WinXP. The same can > be done from WinXP side, a minimal hd with MBR boot menu to startup > the FreeBSD. It is my understanding that FreeBSD doesn't allow using part of a disk, but grabs the entire disk. That means that VirtualBox can't use partitions on a disk that any other partitions are being used by anything else, including FreeBSD itself. Am I wrong about this? I use VirtualBox using vdmk for an entire disk, but I have never been able to share with anything else. -- Carl Johnson carlj@peak.org From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 16:40:14 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8AF59284 for ; Mon, 11 Mar 2013 16:40:14 +0000 (UTC) (envelope-from ralf.mardorf@rocketmail.com) Received: from nm10.bullet.mail.ird.yahoo.com (nm10.bullet.mail.ird.yahoo.com [77.238.189.39]) by mx1.freebsd.org (Postfix) with SMTP id A928CEF5 for ; Mon, 11 Mar 2013 16:40:13 +0000 (UTC) Received: from [77.238.189.233] by nm10.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 16:40:12 -0000 Received: from [46.228.39.56] by tm14.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 16:40:12 -0000 Received: from [127.0.0.1] by smtp189.mail.ir2.yahoo.com with NNFMP; 11 Mar 2013 16:40:12 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rocketmail.com; s=s1024; t=1363020012; bh=tRiG37GZsikppQXvbFAB5Y+F11UXKVRVAZqSG0zBu9U=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Message-ID:Subject:From:To:Date:In-Reply-To:References:Content-Type:X-Mailer:Mime-Version:Content-Transfer-Encoding; b=H5CdmWHu1uSajnBxyMBippQREPDvHtnxc2AhxYLoylCDKvRZkusneQ3o31WOW5eiXABiRigFLbKXNB9j275iOeztK3uJDmmgerMVRd2vlUHwHFLl7GJEYcNBwAHAijj59XDAvb1j55CGt5NhdwxR0lnsEZF6FCA4XHArf5fyA+s= X-Yahoo-Newman-Id: 590118.37805.bm@smtp189.mail.ir2.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: J___gjwVM1kMJLjQCahN86To0CWSPU3Bojm4hMP6Xm3n0iw bBYvEQn0ONulGkTiYkchj7BkPd9b6sepgdII5cD1y7psd8H_TSgpEeAm0PeT Sgq2JVhSGlLEVW731ssrZvBm_WA1743TxwRgN1N7MAeWd.LS.z8lRXBuF7eY ZoDBLrRNyIORR72qLDv5sOCaj.AObF3fRojnBNXR4jKE4riPC2KuVLnlqFZT 2PT5z9_RcDX_xYS8C.sDiF_aTTMe5OYEpIXUGHiXMO82dalLYO9LYitaG8wr bhsVr.MSCTxxfHtBAyhEXLaoVTzIIFccPEzK9H0K.7JVu1NuVAx1CETdhdAO DvKKIz5xLYjOhWrWO32fGQX8TrRJYBBBkHstwZAHsGXANU7cw7ikdQFn3MO_ QFaT3kmYvv7NxIHdSX9B3avPuCIWpU8nWlzILdweAdomd X-Yahoo-SMTP: BeMCPs2swBABTJ3kAeEiC_hE0mz8jRexLddJfD8pI2j32fOacjBmXg-- Received: from [85.182.23.225] (ralf.mardorf@85.182.23.225 with login) by smtp189.mail.ir2.yahoo.com with SMTP; 11 Mar 2013 16:40:12 +0000 UTC Message-ID: <1363020011.631.80.camel@archlinux> Subject: Re: FreeBSD 9 and Windows XP From: Ralf Mardorf To: freebsd-questions@freebsd.org Date: Mon, 11 Mar 2013 17:40:11 +0100 In-Reply-To: <87a9q9udkd.fsf@oak.localnet> References: <20130309120741.DED57767@ms5.mc.surewest.net> <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> <87a9q9udkd.fsf@oak.localnet> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 16:40:14 -0000 On Mon, 2013-03-11 at 09:05 -0700, Carl Johnson wrote: > It is my understanding that FreeBSD doesn't allow using part of a disk, > but grabs the entire disk. That means that VirtualBox can't use > partitions on a disk that any other partitions are being used by > anything else, including FreeBSD itself. Am I wrong about this? I use > VirtualBox using vdmk for an entire disk, but I have never been able to > share with anything else. No, this is a misunderstanding. The primary below [1] is the ufs including my FreeBSD, it's just that Linux's parted doesn't show it (gparted does show) and I can't access BSD by my Linux installs. And no, the ntfs isn't Windows. FWIW my old drives have only one primary and a extended + tons of logical partitions, but I started to partition new drives with 3 primary and one extended including as much logical partitions as needed [2]. To have one partition that can be accessed by the BIOS I format one with fat32, since it can't access ntfs partitions. Most Linux use ext4 by default, I've got ext3 and ext4, because FreeBSD can share ext3 partitions without issues with Linux. I'm using GRUB2 from Linux to boot FreeBSD [3], it's sharing a drive with several Linux installs, more installs anybody does need ;). I'm not maintaining all installs. Regards, Ralf [1] [rocketmouse@archlinux ~]$ sudo parted /dev/sda print Model: ATA SAMSUNG HD321KJ (scsi) Disk /dev/sda: 320GB Sector size (logical/physical): 512B/512B Partition Table: msdos Disk Flags: Number Start End Size Type File system Flags 1 32.3kB 62.1GB 62.1GB primary boot 2 62.1GB 320GB 258GB extended 5 62.1GB 94.1GB 32.0GB logical ntfs 6 94.1GB 126GB 32.1GB logical ext3 7 126GB 158GB 32.2GB logical ext3 8 158GB 185GB 27.0GB logical ext3 9 185GB 223GB 37.7GB logical ext3 10 223GB 225GB 2328MB logical linux-swap(v1) 11 225GB 288GB 62.3GB logical ext3 12 288GB 291GB 3759MB logical ext3 13 291GB 315GB 23.7GB logical ext3 14 315GB 320GB 4927MB logical ext3 [2] [rocketmouse@archlinux ~]$ sudo parted /dev/sdc print Model: WD Ext HDD 1021 (scsi) Disk /dev/sdc: 2000GB Sector size (logical/physical): 512B/512B Partition Table: msdos Disk Flags: Number Start End Size Type File system Flags 1 1049kB 68.0GB 68.0GB primary ext3 2 68.0GB 138GB 69.6GB primary ext4 3 138GB 413GB 276GB primary ext4 4 413GB 2000GB 1587GB extended [snip] [3] [rocketmouse@archlinux ~]$ cat /run/media/rocketmouse/q/boot/grub/grub.cfg set timeout=8 set default='0'; if [ x"$default" = xsaved ]; then load_env; set default="$saved_entry"; fi set color_normal='light-blue/black'; set color_highlight='light-cyan/blue' menuentry "FreeBSD"{ set root=(hd0,msdos1) chainloader +1 } menuentry 'Ubuntu Quantal, kernel 3.6.5-rt14' { set root='(hd1,9)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.6.5-rt14' '/boot/vmlinuz-3.6.5-rt14' 'root=/dev/sdb9' 'ro' 'quiet' '' legacy_initrd '/boot/initrd.img-3.6.5-rt14' '/boot/initrd.img-3.6.5-rt14' } menuentry 'Ubuntu Quantal, kernel 3.5.0-18-lowlatency threadirqs' { set root='(hd1,9)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.5.0-18-lowlatency' '/boot/vmlinuz-3.5.0-18-lowlatency' 'root=/dev/sdb9' 'ro' 'quiet' 'threadirqs' legacy_initrd '/boot/initrd.img-3.5.0-18-lowlatency' '/boot/initrd.img-3.5.0-18-lowlatency' } menuentry 'Ubuntu Quantal, kernel 3.5.0-18-lowlatency (recovery mode)' { set root='(hd1,9)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.5.0-18-lowlatency' '/boot/vmlinuz-3.5.0-18-lowlatency' 'root=/dev/sdb9' 'ro' 'single' legacy_initrd '/boot/initrd.img-3.5.0-18-lowlatency' '/boot/initrd.img-3.5.0-18-lowlatency' } menuentry 'Ubuntu Studio Quantal, Kernel 3.6.5-rt14' { set root='(hd1,13)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.6.5-rt14' '/boot/vmlinuz-3.6.5-rt14' 'root=/dev/sdb13' 'ro' 'quiet' legacy_initrd '/boot/initrd.img-3.6.5-rt14' '/boot/initrd.img-3.6.5-rt14' } menuentry 'Ubuntu Studio Quantal, Kernel 3.5.0-18-lowlatency threadirqs' { set root='(hd1,13)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.5.0-18-lowlatency' '/boot/vmlinuz-3.5.0-18-lowlatency' 'root=/dev/sdb13' 'ro' 'quiet' 'threadirqs' legacy_initrd '/boot/initrd.img-3.5.0-18-lowlatency' '/boot/initrd.img-3.5.0-18-lowlatency' } menuentry 'Ubuntu Studio Precise, Kernel 3.0.30 threadirqs' { set root='(hd1,1)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.0.30' '/boot/vmlinuz-3.0.30' 'root=UUID=338316fb-364e-4a43-8deb-738127f878ce' 'ro' 'quiet' 'threadirqs' legacy_initrd '/boot/initrd.img-3.0.30' '/boot/initrd.img-3.0.30' } menuentry 'Ubuntu Studio Precise, Kernel 3.2.0-23-lowlatency threadirqs' { set root='(hd1,1)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.2.0-23-lowlatency' '/boot/vmlinuz-3.2.0-23-lowlatency' 'root=UUID=338316fb-364e-4a43-8deb-738127f878ce' 'ro' 'quiet' 'threadirqs' legacy_initrd '/boot/initrd.img-3.2.0-23-lowlatency' '/boot/initrd.img-3.2.0-23-lowlatency' } menuentry 'AVlinux 5.0.3, Kernel 3.0.23-rt40' { set root='(hd1,11)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.0.23-rt40' '/boot/vmlinuz-3.0.23-rt40' 'root=/dev/sdb11' 'ro' 'quiet' legacy_initrd '/boot/initrd.img-3.0.23-rt40' '/boot/initrd.img-3.0.23-rt40' } menuentry 'AVlinux 5.0.3, Kernel 3.0.23-avl-7-pae threadirqs' { set root='(hd1,11)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.0.23-avl-7-pae' '/boot/vmlinuz-3.0.23-avl-7-pae' 'root=/dev/sdb11' 'ro' 'threadirqs' 'quiet' legacy_initrd '/boot/initrd.img-3.0.23-avl-7-pae' '/boot/initrd.img-3.0.23-avl-7-pae' } menuentry 'Edubuntu 10.10, Kernel 2.6.33.9-rt31' { set root='(hd1,8)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-2.6.33.9-rt31' '/boot/vmlinuz-2.6.33.9-rt31' 'root=UUID=ded93dfb-37ae-48cf-a3a3-b613aa5704fd' 'ro' legacy_initrd '/boot/initrd.img-2.6.33.9-rt31' '/boot/initrd.img-2.6.33.9-rt31' } menuentry 'Ubuntu Studio Oz, Kernel 3.0.0-17-generic' { set root='(hd1,6)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.0.0-17-generic' '/boot/vmlinuz-3.0.0-17-generic' 'root=UUID=0241b2ac-a0ab-44de-8d73-0ed084e152e6' legacy_initrd '/boot/initrd.img-3.0.0-17-generic' '/boot/initrd.img-3.0.0-17-generic' } menuentry 'Ubuntu Studio Oz, Kernel 3.0.0-20-generic' { set root='(hd1,6)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-3.0.0-20-generic' '/boot/vmlinuz-3.0.0-20-generic' 'root=UUID=0241b2ac-a0ab-44de-8d73-0ed084e152e6' legacy_initrd '/boot/initrd.img-3.0.0-20-generic' '/boot/initrd.img-3.0.0-20-generic' } menuentry 'Arch Linux Rt' { set root='(hd0,9)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-linux-rt' '/boot/vmlinuz-linux-rt' 'root=/dev/sda9' 'ro' legacy_initrd '/boot/initramfs-linux-rt.img' '/boot/initramfs-linux-rt.img' } menuentry 'Arch Linux' { set root='(hd0,9)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-linux' '/boot/vmlinuz-linux' 'root=/dev/sda9' 'ro' legacy_initrd '/boot/initramfs-linux.img' '/boot/initramfs-linux.img' } menuentry 'Arch Linux Fallback' { set root='(hd0,9)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-linux' '/boot/vmlinuz-linux' 'root=/dev/sda9' 'ro' legacy_initrd '/boot/initramfs-linux-fallback.img' '/boot/initramfs-linux-fallback.img' } menuentry 'openSUSE 11.2, Kernel 2.6.31.6-rt19' { set root='(hd0,7)'; set legacy_hdbias='0' legacy_kernel '/boot/vmlinuz-2.6.31.6-rt19' '/boot/vmlinuz-2.6.31.6-rt19' 'root=/dev/sda7' legacy_initrd '/boot/initrd-2.6.31.6-rt19' '/boot/initrd-2.6.31.6-rt19' } From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 16:59:35 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2E480B75 for ; Mon, 11 Mar 2013 16:59:35 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mout.gmx.net (mout.gmx.net [74.208.4.201]) by mx1.freebsd.org (Postfix) with ESMTP id F2774FF8 for ; Mon, 11 Mar 2013 16:59:34 +0000 (UTC) Received: from mailout-us.mail.com ([172.19.198.94]) by mrigmx.server.lan (mrigmxus002) with ESMTP (Nemesis) id 0Lhdy9-1UbYht0sK1-00mqKp for ; Mon, 11 Mar 2013 17:59:28 +0100 Received: (qmail invoked by alias); 11 Mar 2013 16:59:27 -0000 Received: from unknown (EHLO dc.sinhro.lv) [87.246.164.215] by mail.gmx.com (mp-us011) with SMTP; 11 Mar 2013 12:59:27 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX1/0iNIlWiv0uGB2cskpuUhWukkjIr9pIg8C7Y74jc zy/Csx8TpU8SYP Message-ID: <513E0D6D.10503@mail.com> Date: Mon, 11 Mar 2013 18:59:25 +0200 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Error: shared library "mysqlclient.18" does not exist Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 16:59:35 -0000 Hi, I'm trying to set up security/maia, and this is the error message I get: Error: shared library "mysqlclient.18" does not exist Of course, the library does exist :( # ls /usr/local/lib/mysql/ libmysqlclient.a libmysqlclient_r.a libmysqld.a libmysqlclient.so libmysqlclient_r.so libmysqlservices.a libmysqlclient.so.18 libmysqlclient_r.so.18 plugin I googled about this, and I found 3 things to try but none of that was helpful here: 1. make a link: ln -s /usr/local/lib/mysql/libmysqlclient.so.18 /usr/local/lib/libmysqlclient.so.18 2. Check the root's umask and the directory permissions if they are correct, and they are: # umask 22 #ll /usr/local/lib |grep mysql lrwxr-xr-x 1 root wheel 41 Mar 11 16:25 libmysqlclient.so.18@ -> /usr/local/lib/mysql/libmysqlclient.so.18 drwxr-xr-x 3 root wheel 512 Mar 11 16:22 mysql/ # ll /usr/local/lib/mysql/ total 27276 -rw-r--r-- 1 root wheel 4844270 Mar 11 16:17 libmysqlclient.a lrwxr-xr-x 1 root wheel 20 Mar 11 16:22 libmysqlclient.so@ -> libmysqlclient.so.18 -rwxr-xr-x 1 root wheel 3364688 Mar 11 16:22 libmysqlclient.so.18* lrwxr-xr-x 1 root wheel 16 Mar 11 16:22 libmysqlclient_r.a@ -> libmysqlclient.a lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 libmysqlclient_r.so@ -> libmysqlclient.so lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 libmysqlclient_r.so.18@ -> libmysqlclient.so -rw-r--r-- 1 root wheel 20019340 Mar 7 15:08 libmysqld.a -rw-r--r-- 1 root wheel 4598 Mar 11 16:17 libmysqlservices.a drwxr-xr-x 2 root wheel 512 Mar 8 19:01 plugin/ 3. Update the ports tree. Ports tree is up to date. Could someone, please, suggest what I could try to solve this? Thanks, Jeff From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 17:52:22 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D9B2570F for ; Mon, 11 Mar 2013 17:52:22 +0000 (UTC) (envelope-from lokadamus@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.17.22]) by mx1.freebsd.org (Postfix) with ESMTP id 60CF934A for ; Mon, 11 Mar 2013 17:52:21 +0000 (UTC) Received: from mailout-de.gmx.net ([10.1.76.1]) by mrigmx.server.lan (mrigmx002) with ESMTP (Nemesis) id 0MM1JK-1U7OC32QRw-007kNC for ; Mon, 11 Mar 2013 18:52:15 +0100 Received: (qmail invoked by alias); 11 Mar 2013 17:52:15 -0000 Received: from 31-18-8-110-dynip.superkabel.de (EHLO [192.168.0.144]) [31.18.8.110] by mail.gmx.net (mp001) with SMTP; 11 Mar 2013 18:52:15 +0100 X-Authenticated: #3333826 X-Provags-ID: V01U2FsdGVkX1/zZIMGOmvzzMOplpgG+Mw92qPUabOuLOqxsBznMn b41NuqOvdhaqdG Message-ID: <513E19D5.1060004@gmx.de> Date: Mon, 11 Mar 2013 18:52:21 +0100 From: "lokadamus@gmx.de" User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120909 Thunderbird/15.0 MIME-Version: 1.0 To: Brent Clark Subject: Re: OpenVPN vm cant connect to other VM's References: <51371C8A.8050205@gmail.com> In-Reply-To: <51371C8A.8050205@gmail.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 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 17:52:22 -0000 On 06.03.2013 11:38, Brent Clark wrote: > Hi guys > > Im struggling with a freebsd vm, that I have that I use for a VPN > connection too, from my workstation to my home LAN. And I was > wondering if someone could peer review me and my problem. > > OpenVPN is working beautifully. I.e. I can connect to some services > (apache etc) that I run directly on my FreeBSD / openvpn vm. > > What im now trying to achieve is that I can connect to other VMs / > machines on my home LAN. > > Im using tun for my VPN, and my pf.conf looks like so (please see the > nat on ...) > > [root@freebsd /usr/home/bclark]# cat /etc/pf.conf > ext_if="re0" > vpn_if="tun0" > int_net="10.0.0.0/24" > vpn_net="192.168.200.0/24" > set skip on lo0 > set optimization normal > #set block-policy drop > set limit { states 20000, frags 10000, src-nodes 20000 } > # Normalization: reassemble fragments and resolve or reduce traffic > ambiguities. > scrub in all > # Translation: specify how addresses are to be mapped or redirected. > # NAT rules > # enabling NAT currently breaks policy based routing > #nat on $ext_if from { $int_net, $vpn_net } to any -> ($ext_if) > #nat on tun0 from { 192.168.200.0/24 } to any -> (re0) > nat on re0 from { 192.168.200.0/24 } to any -> (re0) > > table persist > block in quick on re0 proto tcp from to any port ssh label > "ssh brute" > > What am I missing? > > If anyone could assist, it would be appreciated. > > Kind Regards > Brent Clark > > > _______________________________________________ > 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" > Is "sysctl net.inet.ip.forwarding=1" ? http://www.freebsd.org/doc/handbook/network-natd.html Have you set your route for 10.8.x.x- subnet to your vpn-host? Else all your traffic will go to your default gateway and when there is no route, it will go ins internet. Make a test with tcpdump and ping to see, where your traffic is going. Regards From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 18:10:09 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B8FEC528 for ; Mon, 11 Mar 2013 18:10:08 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mout.gmx.net (mout.gmx.net [74.208.4.201]) by mx1.freebsd.org (Postfix) with ESMTP id DF42D67E for ; Mon, 11 Mar 2013 18:10:05 +0000 (UTC) Received: from mailout-us.mail.com ([172.19.198.50]) by mrigmx.server.lan (mrigmxus001) with ESMTP (Nemesis) id 0MYg3q-1UJ3Hy2wlu-00VSDa for ; Mon, 11 Mar 2013 19:10:04 +0100 Received: (qmail invoked by alias); 11 Mar 2013 18:10:04 -0000 Received: from unknown (EHLO dc.sinhro.lv) [87.246.164.215] by mail.gmx.com (mp-us010) with SMTP; 11 Mar 2013 14:10:04 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX18AXtcXC2sAWgB62+9ARTJNzSJdON26HxzLe0PBzo pPBBU20wspFSRT Message-ID: <513E1DF8.3020408@mail.com> Date: Mon, 11 Mar 2013 20:10:00 +0200 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Error: shared library "mysqlclient.18" does not exist References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> In-Reply-To: <513E1BC9.6040207@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 18:10:09 -0000 On 03/11/2013 20:00, Greg Larkin wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 3/11/13 12:59 PM, Jeff Tipton wrote: >> Hi, >> >> I'm trying to set up security/maia, and this is the error message I >> get: >> >> Error: shared library "mysqlclient.18" does not exist >> >> Of course, the library does exist :( >> >> # ls /usr/local/lib/mysql/ libmysqlclient.a >> libmysqlclient_r.a libmysqld.a libmysqlclient.so >> libmysqlclient_r.so libmysqlservices.a libmysqlclient.so.18 >> libmysqlclient_r.so.18 plugin >> >> I googled about this, and I found 3 things to try but none of that >> was helpful here: >> >> 1. make a link: ln -s /usr/local/lib/mysql/libmysqlclient.so.18 >> /usr/local/lib/libmysqlclient.so.18 >> >> 2. Check the root's umask and the directory permissions if they >> are correct, and they are: # umask 22 #ll /usr/local/lib |grep >> mysql lrwxr-xr-x 1 root wheel 41 Mar 11 16:25 >> libmysqlclient.so.18@ -> /usr/local/lib/mysql/libmysqlclient.so.18 >> drwxr-xr-x 3 root wheel 512 Mar 11 16:22 mysql/ >> >> # ll /usr/local/lib/mysql/ total 27276 -rw-r--r-- 1 root wheel >> 4844270 Mar 11 16:17 libmysqlclient.a lrwxr-xr-x 1 root wheel >> 20 Mar 11 16:22 libmysqlclient.so@ -> libmysqlclient.so.18 >> -rwxr-xr-x 1 root wheel 3364688 Mar 11 16:22 >> libmysqlclient.so.18* lrwxr-xr-x 1 root wheel 16 Mar 11 >> 16:22 libmysqlclient_r.a@ -> libmysqlclient.a lrwxr-xr-x 1 root >> wheel 17 Mar 11 16:22 libmysqlclient_r.so@ -> >> libmysqlclient.so lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 >> libmysqlclient_r.so.18@ -> libmysqlclient.so -rw-r--r-- 1 root >> wheel 20019340 Mar 7 15:08 libmysqld.a -rw-r--r-- 1 root wheel >> 4598 Mar 11 16:17 libmysqlservices.a drwxr-xr-x 2 root wheel >> 512 Mar 8 19:01 plugin/ >> >> 3. Update the ports tree. Ports tree is up to date. >> >> Could someone, please, suggest what I could try to solve this? >> >> Thanks, Jeff > Hi Jeff, > > At what point do you receive the error message? Is it when you > attempt to run the executable built by the port? If so, please run > the ldd command against the executable and post the output back here. > > 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.13 (Darwin) > Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ > > iEYEARECAAYFAlE+G8kACgkQ0sRouByUApCnLgCgwKZvBM7v60BXemWpG5v3k+IL > A2sAn2+xMhPf4x5bnqt02b+hds1inMUj > =nI5p > -----END PGP SIGNATURE----- Thank you, Greg, for the reply. I get the error message while compiling security/maia port. mysql client itself is working ok, I can connect to my database server. ldd output: # ldd /usr/local/bin/mysql /usr/local/bin/mysql: libreadline.so.8 => /lib/libreadline.so.8 (0x800ab5000) libz.so.6 => /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x800f09000) libm.so.5 => /lib/libm.so.5 (0x801219000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x80143a000) libthr.so.3 => /lib/libthr.so.3 (0x801647000) libc.so.7 => /lib/libc.so.7 (0x801869000) libncurses.so.8 => /lib/libncurses.so.8 (0x801bbc000) From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 18:25:45 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2547CB45 for ; Mon, 11 Mar 2013 18:25:45 +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 C558376C for ; Mon, 11 Mar 2013 18:25:44 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.6/8.14.6) with ESMTP id r2BIPbMt022076; Mon, 11 Mar 2013 12:25:37 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.6/8.14.6/Submit) with ESMTP id r2BIPb0e022073; Mon, 11 Mar 2013 12:25:37 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Mon, 11 Mar 2013 12:25:37 -0600 (MDT) From: Warren Block To: Carl Johnson Subject: Re: FreeBSD 9 and Windows XP In-Reply-To: <87a9q9udkd.fsf@oak.localnet> Message-ID: References: <20130309120741.DED57767@ms5.mc.surewest.net> <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> <87a9q9udkd.fsf@oak.localnet> 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]); Mon, 11 Mar 2013 12:25:37 -0600 (MDT) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 18:25:45 -0000 On Mon, 11 Mar 2013, Carl Johnson wrote: > Eduardo Morras writes: > >> On Sat, 9 Mar 2013 12:07:41 -0800 (PST) >> wrote: >> >>> Good afternoon, FreeBSD enthusiasts. Can FreeBSD 9.1 be installed on >>> a computer on which Windows XP currently resides? If so, how can >>> this installation be >done? In particular, is there a way to install >>> 9.1 so that it can be booted from the traditional master boot record? >>> It is important that, when I am done, I can >still boot to Windows >>> XP, as I must run some applications not available on FreeBSD. If the >>> idea I am proposing is not feasible with version 9.1, will it work >>> with >8.3? Any comments are appreciated. If this question has >>> already been asked many times before, please just let me know where >>> to look to find the answer. Thanks. >Newbie502 >> >> >> As an addon to other answers, you can install VirtualBox, create a >> minimal hard disk with MBR boot menu that points to the WindowsXP >> partition. This way you don't need to restart in WinXP. The same can >> be done from WinXP side, a minimal hd with MBR boot menu to startup >> the FreeBSD. > > It is my understanding that FreeBSD doesn't allow using part of a disk, > but grabs the entire disk. That means that VirtualBox can't use > partitions on a disk that any other partitions are being used by > anything else, including FreeBSD itself. Am I wrong about this? I use > VirtualBox using vdmk for an entire disk, but I have never been able to > share with anything else. It's very hard to tell what situation is being described here. If the VMDK is a pointer to a whole physical disk, that would probably make the disk only usable by one VM. It should be possible to make the VMDK point to just one partition on the disk. Then other VMs or a physical machine could use those other partitions while the FreeBSD VM was running. Booting the same Windows install alternately in a VM and then on real hardware may trigger the "Genuine Advantage" annoyance. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 18:29:07 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 868E1C0C for ; Mon, 11 Mar 2013 18:29:07 +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 5136F796 for ; Mon, 11 Mar 2013 18:29:07 +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 1UF71e-000N6x-Bq; Mon, 11 Mar 2013 14:00:46 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by Gregory-Larkins-iMac.local (Postfix) with ESMTPS id DFE9A1B4993F; Mon, 11 Mar 2013 14:00:41 -0400 (EDT) Message-ID: <513E1BC9.6040207@FreeBSD.org> Date: Mon, 11 Mar 2013 14:00:41 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130216 Thunderbird/17.0.3 MIME-Version: 1.0 To: Jeff Tipton References: <513E0D6D.10503@mail.com> In-Reply-To: <513E0D6D.10503@mail.com> X-Enigmail-Version: 1.5.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=-1.1 required=5.0 tests=AWL,BAYES_00, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Subject: Re: Error: shared library "mysqlclient.18" does not exist 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-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 11 Mar 2013 18:29:07 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 3/11/13 12:59 PM, Jeff Tipton wrote: > Hi, > > I'm trying to set up security/maia, and this is the error message I > get: > > Error: shared library "mysqlclient.18" does not exist > > Of course, the library does exist :( > > # ls /usr/local/lib/mysql/ libmysqlclient.a > libmysqlclient_r.a libmysqld.a libmysqlclient.so > libmysqlclient_r.so libmysqlservices.a libmysqlclient.so.18 > libmysqlclient_r.so.18 plugin > > I googled about this, and I found 3 things to try but none of that > was helpful here: > > 1. make a link: ln -s /usr/local/lib/mysql/libmysqlclient.so.18 > /usr/local/lib/libmysqlclient.so.18 > > 2. Check the root's umask and the directory permissions if they > are correct, and they are: # umask 22 #ll /usr/local/lib |grep > mysql lrwxr-xr-x 1 root wheel 41 Mar 11 16:25 > libmysqlclient.so.18@ -> /usr/local/lib/mysql/libmysqlclient.so.18 > drwxr-xr-x 3 root wheel 512 Mar 11 16:22 mysql/ > > # ll /usr/local/lib/mysql/ total 27276 -rw-r--r-- 1 root wheel > 4844270 Mar 11 16:17 libmysqlclient.a lrwxr-xr-x 1 root wheel > 20 Mar 11 16:22 libmysqlclient.so@ -> libmysqlclient.so.18 > -rwxr-xr-x 1 root wheel 3364688 Mar 11 16:22 > libmysqlclient.so.18* lrwxr-xr-x 1 root wheel 16 Mar 11 > 16:22 libmysqlclient_r.a@ -> libmysqlclient.a lrwxr-xr-x 1 root > wheel 17 Mar 11 16:22 libmysqlclient_r.so@ -> > libmysqlclient.so lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 > libmysqlclient_r.so.18@ -> libmysqlclient.so -rw-r--r-- 1 root > wheel 20019340 Mar 7 15:08 libmysqld.a -rw-r--r-- 1 root wheel > 4598 Mar 11 16:17 libmysqlservices.a drwxr-xr-x 2 root wheel > 512 Mar 8 19:01 plugin/ > > 3. Update the ports tree. Ports tree is up to date. > > Could someone, please, suggest what I could try to solve this? > > Thanks, Jeff Hi Jeff, At what point do you receive the error message? Is it when you attempt to run the executable built by the port? If so, please run the ldd command against the executable and post the output back here. 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.13 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlE+G8kACgkQ0sRouByUApCnLgCgwKZvBM7v60BXemWpG5v3k+IL A2sAn2+xMhPf4x5bnqt02b+hds1inMUj =nI5p -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 18:32:05 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4CD76CDF for ; Mon, 11 Mar 2013 18:32:05 +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 274187C3 for ; Mon, 11 Mar 2013 18:32:04 +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 1UF7Vs-000NGi-6n; Mon, 11 Mar 2013 14:32:04 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by Gregory-Larkins-iMac.local (Postfix) with ESMTPS id 391291B49C13; Mon, 11 Mar 2013 14:31:55 -0400 (EDT) Message-ID: <513E231A.90105@FreeBSD.org> Date: Mon, 11 Mar 2013 14:31:54 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130216 Thunderbird/17.0.3 MIME-Version: 1.0 To: Jeff Tipton References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> In-Reply-To: <513E1DF8.3020408@mail.com> X-Enigmail-Version: 1.5.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=-1.1 required=5.0 tests=AWL,BAYES_00, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Subject: Re: Error: shared library "mysqlclient.18" does not exist 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-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 11 Mar 2013 18:32:05 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 3/11/13 2:10 PM, Jeff Tipton wrote: > On 03/11/2013 20:00, Greg Larkin wrote: On 3/11/13 12:59 PM, Jeff > Tipton wrote: >>>> Hi, >>>> >>>> I'm trying to set up security/maia, and this is the error >>>> message I get: >>>> >>>> Error: shared library "mysqlclient.18" does not exist >>>> >>>> Of course, the library does exist :( >>>> >>>> # ls /usr/local/lib/mysql/ libmysqlclient.a >>>> libmysqlclient_r.a libmysqld.a libmysqlclient.so >>>> libmysqlclient_r.so libmysqlservices.a >>>> libmysqlclient.so.18 libmysqlclient_r.so.18 plugin >>>> >>>> I googled about this, and I found 3 things to try but none of >>>> that was helpful here: >>>> >>>> 1. make a link: ln -s >>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>> /usr/local/lib/libmysqlclient.so.18 >>>> >>>> 2. Check the root's umask and the directory permissions if >>>> they are correct, and they are: # umask 22 #ll /usr/local/lib >>>> |grep mysql lrwxr-xr-x 1 root wheel 41 Mar 11 >>>> 16:25 libmysqlclient.so.18@ -> >>>> /usr/local/lib/mysql/libmysqlclient.so.18 drwxr-xr-x 3 root >>>> wheel 512 Mar 11 16:22 mysql/ >>>> >>>> # ll /usr/local/lib/mysql/ total 27276 -rw-r--r-- 1 root >>>> wheel 4844270 Mar 11 16:17 libmysqlclient.a lrwxr-xr-x 1 >>>> root wheel 20 Mar 11 16:22 libmysqlclient.so@ -> >>>> libmysqlclient.so.18 -rwxr-xr-x 1 root wheel 3364688 Mar >>>> 11 16:22 libmysqlclient.so.18* lrwxr-xr-x 1 root wheel >>>> 16 Mar 11 16:22 libmysqlclient_r.a@ -> libmysqlclient.a >>>> lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 >>>> libmysqlclient_r.so@ -> libmysqlclient.so lrwxr-xr-x 1 root >>>> wheel 17 Mar 11 16:22 libmysqlclient_r.so.18@ -> >>>> libmysqlclient.so -rw-r--r-- 1 root wheel 20019340 Mar 7 >>>> 15:08 libmysqld.a -rw-r--r-- 1 root wheel 4598 Mar 11 16:17 >>>> libmysqlservices.a drwxr-xr-x 2 root wheel 512 Mar 8 19:01 >>>> plugin/ >>>> >>>> 3. Update the ports tree. Ports tree is up to date. >>>> >>>> Could someone, please, suggest what I could try to solve >>>> this? >>>> >>>> Thanks, Jeff > Hi Jeff, > > At what point do you receive the error message? Is it when you > attempt to run the executable built by the port? If so, please > run the ldd command against the executable and post the output back > here. > > 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 Thank > you, Greg, for the reply. I get the error message while compiling > security/maia port. mysql client itself is working ok, I can > connect to my database server. > > ldd output: # ldd /usr/local/bin/mysql /usr/local/bin/mysql: > libreadline.so.8 => /lib/libreadline.so.8 (0x800ab5000) libz.so.6 > => /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 => > /usr/lib/libstdc++.so.6 (0x800f09000) libm.so.5 => /lib/libm.so.5 > (0x801219000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x80143a000) > libthr.so.3 => /lib/libthr.so.3 (0x801647000) libc.so.7 => > /lib/libc.so.7 (0x801869000) libncurses.so.8 => > /lib/libncurses.so.8 (0x801bbc000) > Hi Jeff, Can you post the relevant bits of build output where the error message shows up? If it happens during the configure phase of the port build, you'll also want to post the end of the config.log file found in the port work directory. 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.13 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlE+IxoACgkQ0sRouByUApB5XQCfcFo9nRCtFzuWJB/yg7tB6W6O h5MAnAqKEtOUuCwqlf0+HM5GSifo6PAk =drjz -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 18:47:41 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2C20C123 for ; Mon, 11 Mar 2013 18:47:41 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mout.gmx.net (mout.gmx.net [74.208.4.200]) by mx1.freebsd.org (Postfix) with ESMTP id DF44386F for ; Mon, 11 Mar 2013 18:47:40 +0000 (UTC) Received: from mailout-us.mail.com ([172.19.198.94]) by mrigmx.server.lan (mrigmxus001) with ESMTP (Nemesis) id 0MMBi5-1U7iq8334n-007ze8 for ; Mon, 11 Mar 2013 19:47:33 +0100 Received: (qmail invoked by alias); 11 Mar 2013 18:47:33 -0000 Received: from unknown (EHLO dc.sinhro.lv) [87.246.164.215] by mail.gmx.com (mp-us011) with SMTP; 11 Mar 2013 14:47:33 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX1+fWkEKKD2fKt591v2iibAaUeYdCAOmCOlDO5dXPs 3QPzHkKqzbR6ub Message-ID: <513E26C2.9040601@mail.com> Date: Mon, 11 Mar 2013 20:47:30 +0200 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Error: shared library "mysqlclient.18" does not exist References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> In-Reply-To: <513E231A.90105@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 18:47:41 -0000 On 03/11/2013 20:31, Greg Larkin wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 3/11/13 2:10 PM, Jeff Tipton wrote: >> On 03/11/2013 20:00, Greg Larkin wrote: On 3/11/13 12:59 PM, Jeff >> Tipton wrote: >>>>> Hi, >>>>> >>>>> I'm trying to set up security/maia, and this is the error >>>>> message I get: >>>>> >>>>> Error: shared library "mysqlclient.18" does not exist >>>>> >>>>> Of course, the library does exist :( >>>>> >>>>> # ls /usr/local/lib/mysql/ libmysqlclient.a >>>>> libmysqlclient_r.a libmysqld.a libmysqlclient.so >>>>> libmysqlclient_r.so libmysqlservices.a >>>>> libmysqlclient.so.18 libmysqlclient_r.so.18 plugin >>>>> >>>>> I googled about this, and I found 3 things to try but none of >>>>> that was helpful here: >>>>> >>>>> 1. make a link: ln -s >>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>> /usr/local/lib/libmysqlclient.so.18 >>>>> >>>>> 2. Check the root's umask and the directory permissions if >>>>> they are correct, and they are: # umask 22 #ll /usr/local/lib >>>>> |grep mysql lrwxr-xr-x 1 root wheel 41 Mar 11 >>>>> 16:25 libmysqlclient.so.18@ -> >>>>> /usr/local/lib/mysql/libmysqlclient.so.18 drwxr-xr-x 3 root >>>>> wheel 512 Mar 11 16:22 mysql/ >>>>> >>>>> # ll /usr/local/lib/mysql/ total 27276 -rw-r--r-- 1 root >>>>> wheel 4844270 Mar 11 16:17 libmysqlclient.a lrwxr-xr-x 1 >>>>> root wheel 20 Mar 11 16:22 libmysqlclient.so@ -> >>>>> libmysqlclient.so.18 -rwxr-xr-x 1 root wheel 3364688 Mar >>>>> 11 16:22 libmysqlclient.so.18* lrwxr-xr-x 1 root wheel >>>>> 16 Mar 11 16:22 libmysqlclient_r.a@ -> libmysqlclient.a >>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 >>>>> libmysqlclient_r.so@ -> libmysqlclient.so lrwxr-xr-x 1 root >>>>> wheel 17 Mar 11 16:22 libmysqlclient_r.so.18@ -> >>>>> libmysqlclient.so -rw-r--r-- 1 root wheel 20019340 Mar 7 >>>>> 15:08 libmysqld.a -rw-r--r-- 1 root wheel 4598 Mar 11 16:17 >>>>> libmysqlservices.a drwxr-xr-x 2 root wheel 512 Mar 8 19:01 >>>>> plugin/ >>>>> >>>>> 3. Update the ports tree. Ports tree is up to date. >>>>> >>>>> Could someone, please, suggest what I could try to solve >>>>> this? >>>>> >>>>> Thanks, Jeff >> Hi Jeff, >> >> At what point do you receive the error message? Is it when you >> attempt to run the executable built by the port? If so, please >> run the ldd command against the executable and post the output back >> here. >> >> 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 Thank >> you, Greg, for the reply. I get the error message while compiling >> security/maia port. mysql client itself is working ok, I can >> connect to my database server. >> >> ldd output: # ldd /usr/local/bin/mysql /usr/local/bin/mysql: >> libreadline.so.8 => /lib/libreadline.so.8 (0x800ab5000) libz.so.6 >> => /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 => >> /usr/lib/libstdc++.so.6 (0x800f09000) libm.so.5 => /lib/libm.so.5 >> (0x801219000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x80143a000) >> libthr.so.3 => /lib/libthr.so.3 (0x801647000) libc.so.7 => >> /lib/libc.so.7 (0x801869000) libncurses.so.8 => >> /lib/libncurses.so.8 (0x801bbc000) >> > Hi Jeff, > > Can you post the relevant bits of build output where the error message > shows up? If it happens during the configure phase of the port build, > you'll also want to post the end of the config.log file found in the > port work directory. > > 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.13 (Darwin) > Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ > > iEYEARECAAYFAlE+IxoACgkQ0sRouByUApB5XQCfcFo9nRCtFzuWJB/yg7tB6W6O > h5MAnAqKEtOUuCwqlf0+HM5GSifo6PAk > =drjz > -----END PGP SIGNATURE----- > _______________________________________________ > 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 tried to run "make" several times, and previously some build depends were compiled. But now the "work" directory doesn't even get created, and the process stops immediately: /usr/ports/security/maia# make install clean ===> maia-1.0.3.r1575_3 depends on shared library: mysqlclient.18 - not found ===> Verifying install for mysqlclient.18 in /usr/ports/databases/mysql55-client ===> Returning to build of maia-1.0.3.r1575_3 Error: shared library "mysqlclient.18" does not exist *** [lib-depends] Error code 1 Stop in /basejail/usr/ports/security/maia. /usr/ports/security/maia# From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 18:54:47 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2F72146C for ; Mon, 11 Mar 2013 18:54:47 +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 A791B8D3 for ; Mon, 11 Mar 2013 18:54:46 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.6/8.14.6) with ESMTP id r2BIsdTJ072009 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Mon, 11 Mar 2013 18:54:39 GMT (envelope-from matthew@FreeBSD.org) DKIM-Filter: OpenDKIM Filter v2.8.0 smtp.infracaninophile.co.uk r2BIsdTJ072009 Authentication-Results: smtp.infracaninophile.co.uk/r2BIsdTJ072009; dkim=none reason="no signature"; dkim-adsp=none (unprotected policy) Message-ID: <513E2860.9000907@FreeBSD.org> Date: Mon, 11 Mar 2013 18:54:24 +0000 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:17.0) Gecko/20130216 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Error: shared library "mysqlclient.18" does not exist References: <513E0D6D.10503@mail.com> In-Reply-To: <513E0D6D.10503@mail.com> X-Enigmail-Version: 1.5 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="----enig2RNUMIWMDJLTFSFUWHKIH" X-Virus-Scanned: clamav-milter 0.97.6 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00,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 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 18:54:47 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) ------enig2RNUMIWMDJLTFSFUWHKIH Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 11/03/2013 16:59, Jeff Tipton wrote: > I'm trying to set up security/maia, and this is the error message I get= : >=20 > Error: shared library "mysqlclient.18" does not exist >=20 > Of course, the library does exist :( >=20 > # ls /usr/local/lib/mysql/ > libmysqlclient.a libmysqlclient_r.a libmysqld.a > libmysqlclient.so libmysqlclient_r.so libmysqlservices.a > libmysqlclient.so.18 libmysqlclient_r.so.18 plugin >=20 > I googled about this, and I found 3 things to try but none of that was > helpful here: One other thing to try: examine the output of 'ldconfig -r' -- you should see -libmysqlclient.18 somewhere in the listing. The default location the ports will install that library is /usr/local/lib/mysql/libmysqlclient.so.18 which, you'll notice is in a subdirectory of /usr/local/lib -- not on the default shared library search path. If it's been correctly installed however you should see /usr/local/lib/mysql amongst the search directories around the 2nd line of the ldconfig -r output. If not, you can run this: ldconfig -m /usr/local/lib/mysql You only need to do that once, and the system should remember it. Installing from the port or packages (old or pkgng style) should do that automatically. How did you install mysql-client? Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey ------enig2RNUMIWMDJLTFSFUWHKIH 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 Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlE+KG4ACgkQ8Mjk52CukIyU2gCfT5B9nV2NlSqJ+O/dPkkHgofS 0E8AoI/ZE6hyhwPz0d1eaKywQEg/+b0r =9V6P -----END PGP SIGNATURE----- ------enig2RNUMIWMDJLTFSFUWHKIH-- From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 19:00:43 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 97ADF6AB for ; Mon, 11 Mar 2013 19:00:43 +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 710E3931 for ; Mon, 11 Mar 2013 19:00:42 +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 1UF7xa-000NR4-MA; Mon, 11 Mar 2013 15:00:42 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by Gregory-Larkins-iMac.local (Postfix) with ESMTPS id 5F7561B49F2E; Mon, 11 Mar 2013 15:00:34 -0400 (EDT) Message-ID: <513E29D1.8030709@FreeBSD.org> Date: Mon, 11 Mar 2013 15:00:33 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130216 Thunderbird/17.0.3 MIME-Version: 1.0 To: Jeff Tipton References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> In-Reply-To: <513E26C2.9040601@mail.com> X-Enigmail-Version: 1.5.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=-1.1 required=5.0 tests=AWL,BAYES_00, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Subject: Re: Error: shared library "mysqlclient.18" does not exist 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-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 11 Mar 2013 19:00:43 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 3/11/13 2:47 PM, Jeff Tipton wrote: > On 03/11/2013 20:31, Greg Larkin wrote: On 3/11/13 2:10 PM, Jeff > Tipton wrote: >>>> On 03/11/2013 20:00, Greg Larkin wrote: On 3/11/13 12:59 PM, >>>> Jeff Tipton wrote: >>>>>>> Hi, >>>>>>> >>>>>>> I'm trying to set up security/maia, and this is the >>>>>>> error message I get: >>>>>>> >>>>>>> Error: shared library "mysqlclient.18" does not exist >>>>>>> >>>>>>> Of course, the library does exist :( >>>>>>> >>>>>>> # ls /usr/local/lib/mysql/ libmysqlclient.a >>>>>>> libmysqlclient_r.a libmysqld.a libmysqlclient.so >>>>>>> libmysqlclient_r.so libmysqlservices.a >>>>>>> libmysqlclient.so.18 libmysqlclient_r.so.18 plugin >>>>>>> >>>>>>> I googled about this, and I found 3 things to try but >>>>>>> none of that was helpful here: >>>>>>> >>>>>>> 1. make a link: ln -s >>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>> /usr/local/lib/libmysqlclient.so.18 >>>>>>> >>>>>>> 2. Check the root's umask and the directory permissions >>>>>>> if they are correct, and they are: # umask 22 #ll >>>>>>> /usr/local/lib |grep mysql lrwxr-xr-x 1 root wheel >>>>>>> 41 Mar 11 16:25 libmysqlclient.so.18@ -> >>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 drwxr-xr-x >>>>>>> 3 root wheel 512 Mar 11 16:22 mysql/ >>>>>>> >>>>>>> # ll /usr/local/lib/mysql/ total 27276 -rw-r--r-- 1 >>>>>>> root wheel 4844270 Mar 11 16:17 libmysqlclient.a >>>>>>> lrwxr-xr-x 1 root wheel 20 Mar 11 16:22 >>>>>>> libmysqlclient.so@ -> libmysqlclient.so.18 -rwxr-xr-x >>>>>>> 1 root wheel 3364688 Mar 11 16:22 >>>>>>> libmysqlclient.so.18* lrwxr-xr-x 1 root wheel 16 Mar >>>>>>> 11 16:22 libmysqlclient_r.a@ -> libmysqlclient.a >>>>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 >>>>>>> libmysqlclient_r.so@ -> libmysqlclient.so lrwxr-xr-x 1 >>>>>>> root wheel 17 Mar 11 16:22 >>>>>>> libmysqlclient_r.so.18@ -> libmysqlclient.so -rw-r--r-- >>>>>>> 1 root wheel 20019340 Mar 7 15:08 libmysqld.a >>>>>>> -rw-r--r-- 1 root wheel 4598 Mar 11 16:17 >>>>>>> libmysqlservices.a drwxr-xr-x 2 root wheel 512 Mar 8 >>>>>>> 19:01 plugin/ >>>>>>> >>>>>>> 3. Update the ports tree. Ports tree is up to date. >>>>>>> >>>>>>> Could someone, please, suggest what I could try to >>>>>>> solve this? >>>>>>> >>>>>>> Thanks, Jeff >>>> Hi Jeff, >>>> >>>> At what point do you receive the error message? Is it when >>>> you attempt to run the executable built by the port? If so, >>>> please run the ldd command against the executable and post >>>> the output back here. >>>> >>>> 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 >>>> Thank you, Greg, for the reply. I get the error message while >>>> compiling security/maia port. mysql client itself is working >>>> ok, I can connect to my database server. >>>> >>>> ldd output: # ldd /usr/local/bin/mysql /usr/local/bin/mysql: >>>> libreadline.so.8 => /lib/libreadline.so.8 (0x800ab5000) >>>> libz.so.6 => /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 => >>>> /usr/lib/libstdc++.so.6 (0x800f09000) libm.so.5 => >>>> /lib/libm.so.5 (0x801219000) libgcc_s.so.1 => >>>> /lib/libgcc_s.so.1 (0x80143a000) libthr.so.3 => >>>> /lib/libthr.so.3 (0x801647000) libc.so.7 => /lib/libc.so.7 >>>> (0x801869000) libncurses.so.8 => /lib/libncurses.so.8 >>>> (0x801bbc000) >>>> > Hi Jeff, > > Can you post the relevant bits of build output where the error > message shows up? If it happens during the configure phase of the > port build, you'll also want to post the end of the config.log file > found in the port work directory. > > Thank you, Greg > > > I tried to run "make" several times, and previously some build > depends were compiled. But now the "work" directory doesn't even > get created, and the process stops immediately: > > /usr/ports/security/maia# make install clean ===> > maia-1.0.3.r1575_3 depends on shared library: mysqlclient.18 - not > found ===> Verifying install for mysqlclient.18 in > /usr/ports/databases/mysql55-client ===> Returning to build of > maia-1.0.3.r1575_3 Error: shared library "mysqlclient.18" does not > exist *** [lib-depends] Error code 1 > > Stop in /basejail/usr/ports/security/maia. > /usr/ports/security/maia# > > Ok, it looks like something is messed up with your ldconfig search path. To confirm that, please run this command and post results back here: ldconfig -r| grep mysql Thank you, Greg -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.13 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlE+KdEACgkQ0sRouByUApBP3gCfalFeDTMflaCy+vnF3FMoTht8 +8sAn0oZBRgUlryNk21zzYZ0KMJYsGER =3LRY -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 19:13:38 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 189DBAAB for ; Mon, 11 Mar 2013 19:13:38 +0000 (UTC) (envelope-from kudzu@tenebras.com) Received: from mail-oa0-f41.google.com (mail-oa0-f41.google.com [209.85.219.41]) by mx1.freebsd.org (Postfix) with ESMTP id CBBD99E3 for ; Mon, 11 Mar 2013 19:13:37 +0000 (UTC) Received: by mail-oa0-f41.google.com with SMTP id i10so4884105oag.28 for ; Mon, 11 Mar 2013 12:13:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:x-gm-message-state; bh=oTwfOUCuEyCqANuHRWME31XLLMa3hsubDPQVWTU3Yrs=; b=lTxIGz1YjolGI4lPF4fqx+kSsQbTONqXWpCKByBQ7bJ8LFLLwINoDfzO7j+r3wkxKy WMyBOCrTMk5iSbZVzYI4rso5BHk9n8hIIY2R4hJujqwa2BjGyxZNGyV+imDdg3cvrAlQ 64FXK4lw7hJFjkIuhfi/kz7Sg6n1KMKLW7aA+yBM3zLltOvY4cmwMH32cFrmEVcqPdRo IVh5RkvUNsrXN2M1El9qgahfpz2Q7Z5nnhNj48NMUR2YvjkDQ1qg7lx7KDqq7wDKEzsG 8hfanxbAKEnTy0VkbJeb9jR2rI28US7iVqyX5jjLAXSvSGLCSrQQc41TTlpyk2NdsG5o ZIkw== MIME-Version: 1.0 X-Received: by 10.60.20.225 with SMTP id q1mr9735952oee.31.1363029216905; Mon, 11 Mar 2013 12:13:36 -0700 (PDT) Received: by 10.60.20.34 with HTTP; Mon, 11 Mar 2013 12:13:36 -0700 (PDT) In-Reply-To: <51371C8A.8050205@gmail.com> References: <51371C8A.8050205@gmail.com> Date: Mon, 11 Mar 2013 12:13:36 -0700 Message-ID: Subject: Re: OpenVPN vm cant connect to other VM's From: Michael Sierchio To: Brent Clark Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQmqQ5UwCmohGyJIJwVPYKPMtaIDr2+VlkiEeVZVleZNvgV89s/va0xjvXg/Cga4iVkVadoq Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 19:13:38 -0000 Are you pushing routes in your server.conf file? (hint - show, don't tell) - M On Wed, Mar 6, 2013 at 2:38 AM, Brent Clark wrote: > Hi guys > > Im struggling with a freebsd vm, that I have that I use for a VPN connection > too, from my workstation to my home LAN. And I was wondering if someone > could peer review me and my problem. > > OpenVPN is working beautifully. I.e. I can connect to some services (apache > etc) that I run directly on my FreeBSD / openvpn vm. > > What im now trying to achieve is that I can connect to other VMs / machines > on my home LAN. > > Im using tun for my VPN, and my pf.conf looks like so (please see the nat on > ...) > > [root@freebsd /usr/home/bclark]# cat /etc/pf.conf > ext_if="re0" > vpn_if="tun0" > int_net="10.0.0.0/24" > vpn_net="192.168.200.0/24" > set skip on lo0 > set optimization normal > #set block-policy drop > set limit { states 20000, frags 10000, src-nodes 20000 } > # Normalization: reassemble fragments and resolve or reduce traffic > ambiguities. > scrub in all > # Translation: specify how addresses are to be mapped or redirected. > # NAT rules > # enabling NAT currently breaks policy based routing > #nat on $ext_if from { $int_net, $vpn_net } to any -> ($ext_if) > #nat on tun0 from { 192.168.200.0/24 } to any -> (re0) > nat on re0 from { 192.168.200.0/24 } to any -> (re0) > > table persist > block in quick on re0 proto tcp from to any port ssh label "ssh > brute" > > What am I missing? > > If anyone could assist, it would be appreciated. > > Kind Regards > Brent Clark > > > _______________________________________________ > 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 Mar 11 19:22:40 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2D6B6E56 for ; Mon, 11 Mar 2013 19:22:40 +0000 (UTC) (envelope-from ralf.mardorf@rocketmail.com) Received: from nm23-vm5.bullet.mail.ird.yahoo.com (nm23-vm5.bullet.mail.ird.yahoo.com [212.82.109.234]) by mx1.freebsd.org (Postfix) with SMTP id 7AFBAA60 for ; Mon, 11 Mar 2013 19:22:39 +0000 (UTC) Received: from [77.238.189.231] by nm23.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 19:20:53 -0000 Received: from [217.146.188.152] by tm12.bullet.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 19:20:53 -0000 Received: from [127.0.0.1] by smtp110.mail.ird.yahoo.com with NNFMP; 11 Mar 2013 19:20:53 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rocketmail.com; s=s1024; t=1363029653; bh=sPro008D4eBKB1kC8fPmVjnK2UH4gHQ3cD8IyRPh3/M=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Message-ID:Subject:From:To:Date:In-Reply-To:References:Content-Type:X-Mailer:Mime-Version:Content-Transfer-Encoding; b=LUY9EZ5S52gWd3uqpipX4fU0SHqG5oyr+ibSdqpGEDnd2tW1JAAjJH9NRumO+PmeTFRO1WIxCZLA8YPy9yG44JKKLI1YzASuL3tGVju6EbCaDoCLtfFJwDGJUfC+LVO1rUXm67SJK9nXdEOVR2t/JWvPLMeeEaARWid9EFmh0wg= X-Yahoo-Newman-Id: 407056.37728.bm@smtp110.mail.ird.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: Te29dQcVM1mAxkanXkLI15p2MHHPCchqSTpTCIxaQcC4cyg aK3eIN6TWlzdpl25OlBafbhLoXq7BDYWm8K4eNxjxVuQ_29RFKj0t8xFmcSi vrzu0ZhydFbpLP7H77MzDhst2zsM9I5qXFX_I4rhAZP2mKncDoNQmCjcrofL H0Q4eDYuryzW1JQlhZ56MYaKNLrKalC5aF1c11xPdRjKu5MYGpJ1es5jg9ua 2s0PKgt9bkwz9Ict2LbolSSlgqsAseAEIRbzVrT4nEeTWdA3ZOYZ4VFk_oJV Sl0OhpjDqHXLhcWrM_1GikwJ36U0aBMExKhZdQxOmdLkbtHXPpUbegCEkqDc vBT5ReV5Mu4qiTAti7KpDtdMBubKASKUHFZWuOLWVAdJaLWNp5JvdNmRu2U6 WArsAjGBmbtUZi_3wPK67VxijhRUxRyf3amN4gHAiTuPB X-Yahoo-SMTP: BeMCPs2swBABTJ3kAeEiC_hE0mz8jRexLddJfD8pI2j32fOacjBmXg-- Received: from [85.182.23.225] (ralf.mardorf@85.182.23.225 with login) by smtp110.mail.ird.yahoo.com with SMTP; 11 Mar 2013 12:20:53 -0700 PDT Message-ID: <1363029652.631.123.camel@archlinux> Subject: Re: FreeBSD 9 and Windows XP From: Ralf Mardorf To: freebsd-questions@freebsd.org Date: Mon, 11 Mar 2013 20:20:52 +0100 In-Reply-To: References: <20130309120741.DED57767@ms5.mc.surewest.net> <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> <87a9q9udkd.fsf@oak.localnet> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 19:22:40 -0000 On Mon, 2013-03-11 at 12:25 -0600, Warren Block wrote: > Booting the same Windows install alternately in a VM and then on real > hardware may trigger the "Genuine Advantage" annoyance. This is true, but for some exceptional cases perhaps untrue. I wasn't aware about this possibility, but it does sound interesting to me. I run Windows in VBox only to use an iPad I won and to transfer documents from my *nix to the iPad. So my exceptional cases is, that I've got something useful I didn't buy myself. This thing, the iPad, has a lot of disadvantages, I don't pay for apps etc., but it's useful as a reader and for some other tasks. I don't need and I don't use Windows, with this exception (to use the "reader"/iPad). It's a XP without admin account and service pack 2 only, I don't give a damn about the state of this Windows or the state of the "reader". Ok, I made some snapshots, I use this advantage, but I could live without snapshots. I'm a *nix only user, the iPad and regarding to this, Windows XP too, fall into my lap. iPad and Windows aren't important for me, I don't need the security advantages of the virtual machine. I chose it, to avoid issues with installing Windows to a real partition, no primary was free and fixing the boot loader is work and I wish to access iTunes from my *nix ... however, since *nix tend to be problematic regarding to hardware, it can't harm to have a Windows to test hardware that does cause issues with *nix, to ensure that the hardware isn't broken. In my very exceptional, individual case it might be really interesting to share a "real" Windows install, directly booted and booted as guest in VBox. I'm thinking of making a backup of the virtual partition and to restore it on a real, primary ntfs partition or something similar, perhaps I can copy just the iTunes data and make a new Windows install ... OTOH I didn't use a Windows install before, disk space isn't expensive, so I'm uncertain, if I really want a real Windows install and if I should wish to have one, it's not to share it with VBox, but keep a separated version in VBox. I'm not sure that it's really easy to test hardware when booting it directly and to have completely different _virtual_ hardware by VBox. What would happen, if for the _virtual_ boot of XP, the professional audio card is missing? The setups might be that different, that it perhaps can't switch between a _real_ and a _virtual_ boot without much editing. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 19:34:20 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 130604E5 for ; Mon, 11 Mar 2013 19:34:20 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mout.gmx.net (mout.gmx.net [74.208.4.201]) by mx1.freebsd.org (Postfix) with ESMTP id E4756AF9 for ; Mon, 11 Mar 2013 19:34:19 +0000 (UTC) Received: from mailout-us.mail.com ([172.19.198.94]) by mrigmx.server.lan (mrigmxus002) with ESMTP (Nemesis) id 0MSrNB-1UN9FH40ZB-00RuGp for ; Mon, 11 Mar 2013 20:34:18 +0100 Received: (qmail invoked by alias); 11 Mar 2013 19:34:18 -0000 Received: from unknown (EHLO dc.sinhro.lv) [87.246.164.215] by mail.gmx.com (mp-us011) with SMTP; 11 Mar 2013 15:34:18 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX19T8O8nYehTDASOGK30lQWOye3qpytOqFMsw009c/ ou/WZt3iPxrytC Message-ID: <513E31B8.2020509@mail.com> Date: Mon, 11 Mar 2013 21:34:16 +0200 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Error: shared library "mysqlclient.18" does not exist References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> In-Reply-To: <513E29D1.8030709@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 19:34:20 -0000 On 03/11/2013 21:00, Greg Larkin wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 3/11/13 2:47 PM, Jeff Tipton wrote: >> On 03/11/2013 20:31, Greg Larkin wrote: On 3/11/13 2:10 PM, Jeff >> Tipton wrote: >>>>> On 03/11/2013 20:00, Greg Larkin wrote: On 3/11/13 12:59 PM, >>>>> Jeff Tipton wrote: >>>>>>>> Hi, >>>>>>>> >>>>>>>> I'm trying to set up security/maia, and this is the >>>>>>>> error message I get: >>>>>>>> >>>>>>>> Error: shared library "mysqlclient.18" does not exist >>>>>>>> >>>>>>>> Of course, the library does exist :( >>>>>>>> >>>>>>>> # ls /usr/local/lib/mysql/ libmysqlclient.a >>>>>>>> libmysqlclient_r.a libmysqld.a libmysqlclient.so >>>>>>>> libmysqlclient_r.so libmysqlservices.a >>>>>>>> libmysqlclient.so.18 libmysqlclient_r.so.18 plugin >>>>>>>> >>>>>>>> I googled about this, and I found 3 things to try but >>>>>>>> none of that was helpful here: >>>>>>>> >>>>>>>> 1. make a link: ln -s >>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>> /usr/local/lib/libmysqlclient.so.18 >>>>>>>> >>>>>>>> 2. Check the root's umask and the directory permissions >>>>>>>> if they are correct, and they are: # umask 22 #ll >>>>>>>> /usr/local/lib |grep mysql lrwxr-xr-x 1 root wheel >>>>>>>> 41 Mar 11 16:25 libmysqlclient.so.18@ -> >>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 drwxr-xr-x >>>>>>>> 3 root wheel 512 Mar 11 16:22 mysql/ >>>>>>>> >>>>>>>> # ll /usr/local/lib/mysql/ total 27276 -rw-r--r-- 1 >>>>>>>> root wheel 4844270 Mar 11 16:17 libmysqlclient.a >>>>>>>> lrwxr-xr-x 1 root wheel 20 Mar 11 16:22 >>>>>>>> libmysqlclient.so@ -> libmysqlclient.so.18 -rwxr-xr-x >>>>>>>> 1 root wheel 3364688 Mar 11 16:22 >>>>>>>> libmysqlclient.so.18* lrwxr-xr-x 1 root wheel 16 Mar >>>>>>>> 11 16:22 libmysqlclient_r.a@ -> libmysqlclient.a >>>>>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 >>>>>>>> libmysqlclient_r.so@ -> libmysqlclient.so lrwxr-xr-x 1 >>>>>>>> root wheel 17 Mar 11 16:22 >>>>>>>> libmysqlclient_r.so.18@ -> libmysqlclient.so -rw-r--r-- >>>>>>>> 1 root wheel 20019340 Mar 7 15:08 libmysqld.a >>>>>>>> -rw-r--r-- 1 root wheel 4598 Mar 11 16:17 >>>>>>>> libmysqlservices.a drwxr-xr-x 2 root wheel 512 Mar 8 >>>>>>>> 19:01 plugin/ >>>>>>>> >>>>>>>> 3. Update the ports tree. Ports tree is up to date. >>>>>>>> >>>>>>>> Could someone, please, suggest what I could try to >>>>>>>> solve this? >>>>>>>> >>>>>>>> Thanks, Jeff >>>>> Hi Jeff, >>>>> >>>>> At what point do you receive the error message? Is it when >>>>> you attempt to run the executable built by the port? If so, >>>>> please run the ldd command against the executable and post >>>>> the output back here. >>>>> >>>>> 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 >>>>> Thank you, Greg, for the reply. I get the error message while >>>>> compiling security/maia port. mysql client itself is working >>>>> ok, I can connect to my database server. >>>>> >>>>> ldd output: # ldd /usr/local/bin/mysql /usr/local/bin/mysql: >>>>> libreadline.so.8 => /lib/libreadline.so.8 (0x800ab5000) >>>>> libz.so.6 => /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 => >>>>> /usr/lib/libstdc++.so.6 (0x800f09000) libm.so.5 => >>>>> /lib/libm.so.5 (0x801219000) libgcc_s.so.1 => >>>>> /lib/libgcc_s.so.1 (0x80143a000) libthr.so.3 => >>>>> /lib/libthr.so.3 (0x801647000) libc.so.7 => /lib/libc.so.7 >>>>> (0x801869000) libncurses.so.8 => /lib/libncurses.so.8 >>>>> (0x801bbc000) >>>>> >> Hi Jeff, >> >> Can you post the relevant bits of build output where the error >> message shows up? If it happens during the configure phase of the >> port build, you'll also want to post the end of the config.log file >> found in the port work directory. >> >> Thank you, Greg >> >> >> I tried to run "make" several times, and previously some build >> depends were compiled. But now the "work" directory doesn't even >> get created, and the process stops immediately: >> >> /usr/ports/security/maia# make install clean ===> >> maia-1.0.3.r1575_3 depends on shared library: mysqlclient.18 - not >> found ===> Verifying install for mysqlclient.18 in >> /usr/ports/databases/mysql55-client ===> Returning to build of >> maia-1.0.3.r1575_3 Error: shared library "mysqlclient.18" does not >> exist *** [lib-depends] Error code 1 >> >> Stop in /basejail/usr/ports/security/maia. >> /usr/ports/security/maia# >> >> > Ok, it looks like something is messed up with your ldconfig search > path. To confirm that, please run this command and post results back > here: > > ldconfig -r| grep mysql > > Thank you, > Greg > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.13 (Darwin) > Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ > > iEYEARECAAYFAlE+KdEACgkQ0sRouByUApBP3gCfalFeDTMflaCy+vnF3FMoTht8 > +8sAn0oZBRgUlryNk21zzYZ0KMJYsGER > =3LRY > -----END PGP SIGNATURE----- > _______________________________________________ > 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" # ldconfig -r| grep mysql search directories: /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/local/lib/dovecot:/usr/local/lib/mysql:/usr/local/lib/pth 218:-lmysqlclient.18 => /usr/local/lib/libmysqlclient.so.18 219:-lmysqlclient.18 => /usr/local/lib/mysql/libmysqlclient.so.18 220:-lmysqlclient_r.18 => /usr/local/lib/mysql/libmysqlclient_r.so.18 I installed both mysql client and server from ports. The versions are: mysql-client-5.5.30 mysql-server-5.5.30 From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 19:49:33 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1446AC87 for ; Mon, 11 Mar 2013 19:49:33 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ob0-x22f.google.com (mail-ob0-x22f.google.com [IPv6:2607:f8b0:4003:c01::22f]) by mx1.freebsd.org (Postfix) with ESMTP id D5B3BC17 for ; Mon, 11 Mar 2013 19:49:32 +0000 (UTC) Received: by mail-ob0-f175.google.com with SMTP id uz6so3669268obc.20 for ; Mon, 11 Mar 2013 12:49:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=sbp9qJMqtYzLfiulHaeh+EUcPs+iYmXFE+QvR0Y35Sw=; b=ATpSqOA99tX10DW9hPJvn16RO736PT2Z09YjjihCPp529s0phox2wBHDRf4wMcx1ua S9q7eEI8r7O60d5UKbFcX5aPwvRV8hlcASqR5eoQGKsxkB1To1LNsSNyJGNLfQopcoRy 361UCDHqj/AD22AZZPa5y/sykrRLlVm+hjoRHlVwHf0i7xbyF9Dln4RtlLdqGfHaCD0Z rLMoSXsWmnQnkoo/Y28FXAxJf3QGRihzCIusEpYnvrlcyl5446W65kC3X9u3QTe3/Rnu dqVx0SaK8cf5ctXGS7omHGEuXCC0M4wiVjioBbs9++1D2C5/QpdLJKtz62POBxNCW2Nq dmlQ== X-Received: by 10.60.19.161 with SMTP id g1mr9810351oee.101.1363031372290; Mon, 11 Mar 2013 12:49:32 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id ka6sm18375245obb.3.2013.03.11.12.49.28 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Mar 2013 12:49:31 -0700 (PDT) Message-ID: <513E3544.6080208@gmail.com> Date: Mon, 11 Mar 2013 14:49:24 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Bernt Hansson Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> In-Reply-To: <513D7701.7000605@bananmonarki.se> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 19:49:33 -0000 On 03/11/13 01:17, Bernt Hansson wrote: > 2013-03-05 09:10, Joseph A. Nagy, Jr skrev: >> Cups is setup so I should be able to print: >> http://www.joseph-a-nagy-jr.us/images/problems/cups-printer.png >> >> My pdf reader sees the printer: >> http://www.joseph-a-nagy-jr.us/images/problems/printer-there.png >> >> yet it won't print and delivers this dialog: >> http://www.joseph-a-nagy-jr.us/images/problems/print-error.png >> >> any ideas on how to correct this? > > http://www.openprinting.org/printer/Canon/Canon-PIXMA_MP210 http://www.joseph-a-nagy-jr.us/images/problems/still-no-luck_cups.png -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 20:08:51 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8E90BDA8 for ; Mon, 11 Mar 2013 20:08:51 +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 AC407D87 for ; Mon, 11 Mar 2013 20:08:50 +0000 (UTC) Received: from [89.204.130.101] (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 1UF91W-00056h-CA for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 21:08:42 +0100 Received: from tiny.Sisis.de (localhost [127.0.0.1]) by tiny.Sisis.de (8.14.5/8.14.3) with ESMTP id r2BK8eqL001391 for ; Mon, 11 Mar 2013 21:08:40 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by tiny.Sisis.de (8.14.5/8.14.3/Submit) id r2BK8dLq001390 for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 21:08:39 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: tiny.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Mon, 11 Mar 2013 21:08:39 +0100 From: Matthias Apitz To: freebsd-questions@freebsd.org Subject: Re: Problems Printing Message-ID: <20130311200838.GA1348@tiny.Sisis.de> References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> <513E3544.6080208@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <513E3544.6080208@gmail.com> 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: 89.204.130.101 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 20:08:51 -0000 El día Monday, March 11, 2013 a las 02:49:24PM -0500, Joseph A. Nagy, Jr escribió: > On 03/11/13 01:17, Bernt Hansson wrote: > > 2013-03-05 09:10, Joseph A. Nagy, Jr skrev: > >> Cups is setup so I should be able to print: > >> http://www.joseph-a-nagy-jr.us/images/problems/cups-printer.png What kind of software does this scree shows? And why do you think with this that CUPS is setup as it should? > >> > >> My pdf reader sees the printer: > >> http://www.joseph-a-nagy-jr.us/images/problems/printer-there.png yes it sees some printer with this name 'PIXMA...', nothing more; > >> > >> yet it won't print and delivers this dialog: > >> http://www.joseph-a-nagy-jr.us/images/problems/print-error.png this shows that the software is using the lpr(1) command from base system, but not the lpr command of CUPS; > >> > >> any ideas on how to correct this? > > > > http://www.openprinting.org/printer/Canon/Canon-PIXMA_MP210 > > http://www.joseph-a-nagy-jr.us/images/problems/still-no-luck_cups.png it shows that you have NOT configured the printer PIXMA as a Generic Postscript printer (as I said)! Please, drop all sofisticated PPD stuff, use Generic (generated) Postscript PPD and ensure first that the CUPS test page comes out (from the web interface) and after this, test from lpr-command line from shell. I think, I'm repeating me matthias -- Sent from my FreeBSD netbook Matthias Apitz | - No system with backdoors like Apple/Android E-mail: guru@unixarea.de | - Never being an iSlave WWW: http://www.unixarea.de/ | - No proprietary attachments, no HTML/RTF in E-mail phone: +49-170-4527211 | - Respect for open standards From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 20:16:58 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 76036F64 for ; Mon, 11 Mar 2013 20:16:58 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ie0-x22e.google.com (mail-ie0-x22e.google.com [IPv6:2607:f8b0:4001:c03::22e]) by mx1.freebsd.org (Postfix) with ESMTP id 476D9DEB for ; Mon, 11 Mar 2013 20:16:58 +0000 (UTC) Received: by mail-ie0-f174.google.com with SMTP id k10so5361328iea.33 for ; Mon, 11 Mar 2013 13:16:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Iau7pyVZqu5aHlyX13YfCaFZg6COrvcioVRW+cZ0PYI=; b=Cec8YTRJlslRO1zFCYu+3tS2eLZOLsL4OGKeIo7v1H+dBzDr+zOo4jVvU1tZdYimeF hwWrmg7vvRl4IAah6tyZrvO9tcFM+hcUwh7Ur9sIDiu2uLMHz592p6YP7JfVQ5LUvxm2 P4SXwdKRKzfeBl+D8AwWRuTYICUEZmOj5mWiJWGaDZlPVohwSXimWaoD+yWFMVRDgKAe 3jflMd6iU6nOc6XkIvPA3KRgEcLuer49bCeccj153s3KECGVltY0LvCuDn/Yw2PaxbaF TyEq+ph5zkRIeO9VqctXIO9AKKL5aE6lYhwIRtJDBeN7rJbXI74n3lhly6ZEPPVTt6z2 5Dpw== X-Received: by 10.50.41.200 with SMTP id h8mr1552249igl.14.1363033017955; Mon, 11 Mar 2013 13:16:57 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id i10sm14706635igz.9.2013.03.11.13.16.55 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Mar 2013 13:16:56 -0700 (PDT) Message-ID: <513E3BB4.305@gmail.com> Date: Mon, 11 Mar 2013 15:16:52 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Matthias Apitz Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> <513E3544.6080208@gmail.com> <20130311200838.GA1348@tiny.Sisis.de> In-Reply-To: <20130311200838.GA1348@tiny.Sisis.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 20:16:58 -0000 On 03/11/13 15:08, Matthias Apitz wrote: > El día Monday, March 11, 2013 a las 02:49:24PM -0500, Joseph A. Nagy, Jr escribió: > >> On 03/11/13 01:17, Bernt Hansson wrote: >>> 2013-03-05 09:10, Joseph A. Nagy, Jr skrev: >>>> Cups is setup so I should be able to print: >>>> http://www.joseph-a-nagy-jr.us/images/problems/cups-printer.png > > What kind of software does this scree shows? And why do you think with > this that CUPS is setup as it should? > >>>> >>>> My pdf reader sees the printer: >>>> http://www.joseph-a-nagy-jr.us/images/problems/printer-there.png > > yes it sees some printer with this name 'PIXMA...', nothing more; > >>>> >>>> yet it won't print and delivers this dialog: >>>> http://www.joseph-a-nagy-jr.us/images/problems/print-error.png > > this shows that the software is using the lpr(1) command from base > system, but not the lpr command of CUPS; > >>>> >>>> any ideas on how to correct this? >>> >>> http://www.openprinting.org/printer/Canon/Canon-PIXMA_MP210 >> >> http://www.joseph-a-nagy-jr.us/images/problems/still-no-luck_cups.png > > it shows that you have NOT configured the printer PIXMA as a Generic > Postscript printer (as I said)! Please, drop all sofisticated PPD stuff, use Generic > (generated) Postscript PPD and ensure first that the CUPS test page > comes out (from the web interface) and after this, test from lpr-command > line from shell. > > I think, I'm repeating me > > matthias > You're only repeating yourself because you missed the post where I ALREADY DID THAT. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 20:26:33 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D57FF460 for ; Mon, 11 Mar 2013 20:26: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 990A7ECB for ; Mon, 11 Mar 2013 20:26:33 +0000 (UTC) Received: from [89.204.130.101] (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 1UF9Il-0001eN-MW for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 21:26:32 +0100 Received: from tiny.Sisis.de (localhost [127.0.0.1]) by tiny.Sisis.de (8.14.5/8.14.3) with ESMTP id r2BKQTQL001435 for ; Mon, 11 Mar 2013 21:26:29 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by tiny.Sisis.de (8.14.5/8.14.3/Submit) id r2BKQSca001434 for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 21:26:28 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: tiny.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Mon, 11 Mar 2013 21:26:28 +0100 From: Matthias Apitz To: freebsd-questions@freebsd.org Subject: Re: Problems Printing Message-ID: <20130311202628.GA1413@tiny.Sisis.de> References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> <513E3544.6080208@gmail.com> <20130311200838.GA1348@tiny.Sisis.de> <513E3BB4.305@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <513E3BB4.305@gmail.com> 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: 89.204.130.101 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 20:26:33 -0000 El día Monday, March 11, 2013 a las 03:16:52PM -0500, Joseph A. Nagy, Jr escribió: > >> http://www.joseph-a-nagy-jr.us/images/problems/still-no-luck_cups.png > > > > it shows that you have NOT configured the printer PIXMA as a Generic > > Postscript printer (as I said)! Please, drop all sofisticated PPD stuff, use Generic > > (generated) Postscript PPD and ensure first that the CUPS test page > > comes out (from the web interface) and after this, test from lpr-command > > line from shell. > > > > I think, I'm repeating me > > > > matthias > > > > You're only repeating yourself because you missed the post where I > ALREADY DID THAT. Please show a screen of the CUPS' web interface (or the lines of the printers.conf file) where the printer is configured as a Generic Postscript. And, I have read all your postings in detail, which do not show a structured way to nail down a problem. matthias -- Sent from my FreeBSD netbook Matthias Apitz | - No system with backdoors like Apple/Android E-mail: guru@unixarea.de | - Never being an iSlave WWW: http://www.unixarea.de/ | - No proprietary attachments, no HTML/RTF in E-mail phone: +49-170-4527211 | - Respect for open standards From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 20:34:11 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7AF8B5EF for ; Mon, 11 Mar 2013 20:34:11 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ob0-x230.google.com (mail-ob0-x230.google.com [IPv6:2607:f8b0:4003:c01::230]) by mx1.freebsd.org (Postfix) with ESMTP id 2DE85F2C for ; Mon, 11 Mar 2013 20:34:11 +0000 (UTC) Received: by mail-ob0-f176.google.com with SMTP id v19so3763754obq.21 for ; Mon, 11 Mar 2013 13:34:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=5MbJJ3UHV+5Yra4Y4qBZ6VGF8qtbaouLp5KxrZfMaOc=; b=wSmEaHI503RUoG3rxYabbu1If/EyPhJGo7ZkkQJjXshjO4YNagM6UGCwHfsszmzFEF zSFQM4LgSf/JwiQ25xKn2XTp4vQNNsgCVHkfgJhF0DTqWQaHNd4oMPRjJeiLd/nT8ify 3IE8yBI1KVBTLoDQvbm4PBqx7DI78oqfENv1qZHBo38yOTAdRuviXRIlfR6WbfctTiVW k8rAjHyZphjpjjm4Z8nIx5N82pDoBlUGwR+FM033fh9w1qL/nzKMm71lwfme3PJlo0ss Y2oJmXC79q47Mk7BGprMx6F05kIMWOk7vxbTKiYorQ1sKoGyEBwe/XceEBmxV6Zzjxvr l0Ow== X-Received: by 10.60.10.3 with SMTP id e3mr10163659oeb.51.1363034050622; Mon, 11 Mar 2013 13:34:10 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id ek4sm18523178obc.6.2013.03.11.13.34.08 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Mar 2013 13:34:09 -0700 (PDT) Message-ID: <513E3FBD.5000302@gmail.com> Date: Mon, 11 Mar 2013 15:34:05 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Matthias Apitz Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> <513E3544.6080208@gmail.com> <20130311200838.GA1348@tiny.Sisis.de> <513E3BB4.305@gmail.com> <20130311202628.GA1413@tiny.Sisis.de> In-Reply-To: <20130311202628.GA1413@tiny.Sisis.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: Chris Petrik , freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 20:34:11 -0000 On 03/11/13 15:26, Matthias Apitz wrote: > El día Monday, March 11, 2013 a las 03:16:52PM -0500, Joseph A. Nagy, Jr escribió: > >>>> http://www.joseph-a-nagy-jr.us/images/problems/still-no-luck_cups.png >>> >>> it shows that you have NOT configured the printer PIXMA as a Generic >>> Postscript printer (as I said)! Please, drop all sofisticated PPD stuff, use Generic >>> (generated) Postscript PPD and ensure first that the CUPS test page >>> comes out (from the web interface) and after this, test from lpr-command >>> line from shell. >>> >>> I think, I'm repeating me >>> >>> matthias >>> >> >> You're only repeating yourself because you missed the post where I >> ALREADY DID THAT. > > Please show a screen of the CUPS' web interface (or the lines of the > printers.conf file) where the printer is configured as a Generic > Postscript. If you do not believe I've configured it as you suggested/requested, that's your problem. If you want it redone, contact me off-list and I'll provide my mailing address so you can come do it yourself. > And, I have read all your postings in detail, which do not show a > structured way to nail down a problem. > > matthias > As for not showing a structured way to nail down the problem, I'm not sure what else to do. I've provided the logs in their entirety. I've shown where I used gnome-cups-manager to try and configure it, I - in a very lengthy (mostly due to log file entries) post - went step by step trying to do it several ways (including using the web interface). What more do you want? I even reinstalled gnutls to no avail. The next step is to rebuild all the cups related ports with gnutls disabled. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 20:43:56 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EB787756 for ; Mon, 11 Mar 2013 20:43:56 +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 64105F8C for ; Mon, 11 Mar 2013 20:43:56 +0000 (UTC) Received: from [89.204.130.101] (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 1UF9Za-0006Lk-H1 for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 21:43:54 +0100 Received: from tiny.Sisis.de (localhost [127.0.0.1]) by tiny.Sisis.de (8.14.5/8.14.3) with ESMTP id r2BKhq6I001497 for ; Mon, 11 Mar 2013 21:43:52 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by tiny.Sisis.de (8.14.5/8.14.3/Submit) id r2BKhpKq001496 for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 21:43:51 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: tiny.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Mon, 11 Mar 2013 21:43:51 +0100 From: Matthias Apitz To: freebsd-questions@freebsd.org Subject: Re: Problems Printing Message-ID: <20130311204351.GA1485@tiny.Sisis.de> References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> <513E3544.6080208@gmail.com> <20130311200838.GA1348@tiny.Sisis.de> <513E3BB4.305@gmail.com> <20130311202628.GA1413@tiny.Sisis.de> <513E3FBD.5000302@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <513E3FBD.5000302@gmail.com> 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: 89.204.130.101 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 20:43:57 -0000 El día Monday, March 11, 2013 a las 03:34:05PM -0500, Joseph A. Nagy, Jr escribió: > > Please show a screen of the CUPS' web interface (or the lines of the > > printers.conf file) where the printer is configured as a Generic > > Postscript. > > If you do not believe I've configured it as you suggested/requested, > that's your problem. If you want it redone, contact me off-list and I'll > provide my mailing address so you can come do it yourself. We are not in church here and it has nothing to do with believe... The long logs you provided never have shown the printer as Generic PS. > > And, I have read all your postings in detail, which do not show a > > structured way to nail down a problem. > > > > matthias > > > > As for not showing a structured way to nail down the problem, I'm not > sure what else to do. I've provided the logs in their entirety. I've > shown where I used gnome-cups-manager to try and configure it, I - in a > very lengthy (mostly due to log file entries) post - went step by step > trying to do it several ways (including using the web interface). What > more do you want? Just configure a Generic PS in addition pointing to the same device, show the screen of the web interface or the printers.conf file and do a test print from CUPS. > > I even reinstalled gnutls to no avail. The next step is to rebuild all > the cups related ports with gnutls disabled. This is unrelated to the problem. matthias -- Sent from my FreeBSD netbook Matthias Apitz | - No system with backdoors like Apple/Android E-mail: guru@unixarea.de | - Never being an iSlave WWW: http://www.unixarea.de/ | - No proprietary attachments, no HTML/RTF in E-mail phone: +49-170-4527211 | - Respect for open standards From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 21:01:42 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B912CC2A for ; Mon, 11 Mar 2013 21:01:42 +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 94E09112 for ; Mon, 11 Mar 2013 21:01:42 +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 1UF9qh-000O7Y-MC; Mon, 11 Mar 2013 17:01:41 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by Gregory-Larkins-iMac.local (Postfix) with ESMTPS id 40F661B4B21D; Mon, 11 Mar 2013 17:01:35 -0400 (EDT) Message-ID: <513E462E.7080809@FreeBSD.org> Date: Mon, 11 Mar 2013 17:01:34 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130216 Thunderbird/17.0.3 MIME-Version: 1.0 To: Jeff Tipton References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> <513E31B8.2020509@mail.com> In-Reply-To: <513E31B8.2020509@mail.com> X-Enigmail-Version: 1.5.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=-1.1 required=5.0 tests=AWL,BAYES_00, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Subject: Re: Error: shared library "mysqlclient.18" does not exist 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-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 11 Mar 2013 21:01:42 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 3/11/13 3:34 PM, Jeff Tipton wrote: > On 03/11/2013 21:00, Greg Larkin wrote: On 3/11/13 2:47 PM, Jeff > Tipton wrote: >>>> On 03/11/2013 20:31, Greg Larkin wrote: On 3/11/13 2:10 PM, >>>> Jeff Tipton wrote: >>>>>>> On 03/11/2013 20:00, Greg Larkin wrote: On 3/11/13 >>>>>>> 12:59 PM, Jeff Tipton wrote: >>>>>>>>>> Hi, >>>>>>>>>> >>>>>>>>>> I'm trying to set up security/maia, and this is >>>>>>>>>> the error message I get: >>>>>>>>>> >>>>>>>>>> Error: shared library "mysqlclient.18" does not >>>>>>>>>> exist >>>>>>>>>> >>>>>>>>>> Of course, the library does exist :( >>>>>>>>>> >>>>>>>>>> # ls /usr/local/lib/mysql/ libmysqlclient.a >>>>>>>>>> libmysqlclient_r.a libmysqld.a >>>>>>>>>> libmysqlclient.so libmysqlclient_r.so >>>>>>>>>> libmysqlservices.a libmysqlclient.so.18 >>>>>>>>>> libmysqlclient_r.so.18 plugin >>>>>>>>>> >>>>>>>>>> I googled about this, and I found 3 things to try >>>>>>>>>> but none of that was helpful here: >>>>>>>>>> >>>>>>>>>> 1. make a link: ln -s >>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>> /usr/local/lib/libmysqlclient.so.18 >>>>>>>>>> >>>>>>>>>> 2. Check the root's umask and the directory >>>>>>>>>> permissions if they are correct, and they are: # >>>>>>>>>> umask 22 #ll /usr/local/lib |grep mysql >>>>>>>>>> lrwxr-xr-x 1 root wheel 41 Mar 11 16:25 >>>>>>>>>> libmysqlclient.so.18@ -> >>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>> drwxr-xr-x 3 root wheel 512 Mar 11 16:22 >>>>>>>>>> mysql/ >>>>>>>>>> >>>>>>>>>> # ll /usr/local/lib/mysql/ total 27276 -rw-r--r-- >>>>>>>>>> 1 root wheel 4844270 Mar 11 16:17 >>>>>>>>>> libmysqlclient.a lrwxr-xr-x 1 root wheel 20 Mar >>>>>>>>>> 11 16:22 libmysqlclient.so@ -> >>>>>>>>>> libmysqlclient.so.18 -rwxr-xr-x 1 root wheel >>>>>>>>>> 3364688 Mar 11 16:22 libmysqlclient.so.18* >>>>>>>>>> lrwxr-xr-x 1 root wheel 16 Mar 11 16:22 >>>>>>>>>> libmysqlclient_r.a@ -> libmysqlclient.a >>>>>>>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 >>>>>>>>>> libmysqlclient_r.so@ -> libmysqlclient.so >>>>>>>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 >>>>>>>>>> libmysqlclient_r.so.18@ -> libmysqlclient.so >>>>>>>>>> -rw-r--r-- 1 root wheel 20019340 Mar 7 15:08 >>>>>>>>>> libmysqld.a -rw-r--r-- 1 root wheel 4598 Mar 11 >>>>>>>>>> 16:17 libmysqlservices.a drwxr-xr-x 2 root >>>>>>>>>> wheel 512 Mar 8 19:01 plugin/ >>>>>>>>>> >>>>>>>>>> 3. Update the ports tree. Ports tree is up to >>>>>>>>>> date. >>>>>>>>>> >>>>>>>>>> Could someone, please, suggest what I could try >>>>>>>>>> to solve this? >>>>>>>>>> >>>>>>>>>> Thanks, Jeff >>>>>>> Hi Jeff, >>>>>>> >>>>>>> At what point do you receive the error message? Is it >>>>>>> when you attempt to run the executable built by the >>>>>>> port? If so, please run the ldd command against the >>>>>>> executable and post the output back here. >>>>>>> >>>>>>> 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 Thank you, Greg, for the reply. I get the error >>>>>>> message while compiling security/maia port. mysql >>>>>>> client itself is working ok, I can connect to my >>>>>>> database server. >>>>>>> >>>>>>> ldd output: # ldd /usr/local/bin/mysql >>>>>>> /usr/local/bin/mysql: libreadline.so.8 => >>>>>>> /lib/libreadline.so.8 (0x800ab5000) libz.so.6 => >>>>>>> /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 => >>>>>>> /usr/lib/libstdc++.so.6 (0x800f09000) libm.so.5 => >>>>>>> /lib/libm.so.5 (0x801219000) libgcc_s.so.1 => >>>>>>> /lib/libgcc_s.so.1 (0x80143a000) libthr.so.3 => >>>>>>> /lib/libthr.so.3 (0x801647000) libc.so.7 => >>>>>>> /lib/libc.so.7 (0x801869000) libncurses.so.8 => >>>>>>> /lib/libncurses.so.8 (0x801bbc000) >>>>>>> >>>> Hi Jeff, >>>> >>>> Can you post the relevant bits of build output where the >>>> error message shows up? If it happens during the configure >>>> phase of the port build, you'll also want to post the end of >>>> the config.log file found in the port work directory. >>>> >>>> Thank you, Greg >>>> >>>> >>>> I tried to run "make" several times, and previously some >>>> build depends were compiled. But now the "work" directory >>>> doesn't even get created, and the process stops immediately: >>>> >>>> /usr/ports/security/maia# make install clean ===> >>>> maia-1.0.3.r1575_3 depends on shared library: mysqlclient.18 >>>> - not found ===> Verifying install for mysqlclient.18 in >>>> /usr/ports/databases/mysql55-client ===> Returning to build >>>> of maia-1.0.3.r1575_3 Error: shared library "mysqlclient.18" >>>> does not exist *** [lib-depends] Error code 1 >>>> >>>> Stop in /basejail/usr/ports/security/maia. >>>> /usr/ports/security/maia# >>>> >>>> > Ok, it looks like something is messed up with your ldconfig search > path. To confirm that, please run this command and post results > back here: > > ldconfig -r| grep mysql > > Thank you, Greg >> _______________________________________________ >> 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" > # ldconfig -r| grep mysql search directories: > /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/local/lib/dovecot:/usr/local/lib/mysql:/usr/local/lib/pth > > 218:-lmysqlclient.18 => /usr/local/lib/libmysqlclient.so.18 > 219:-lmysqlclient.18 => /usr/local/lib/mysql/libmysqlclient.so.18 > 220:-lmysqlclient_r.18 => > /usr/local/lib/mysql/libmysqlclient_r.so.18 > > I installed both mysql client and server from ports. The versions > are: mysql-client-5.5.30 mysql-server-5.5.30 > Ok, here's a last ditch attempt to see exactly why the code in bsd.port.mk is failing to find that shlib on your machine. Run these commands: cd /usr/ports/security/maia make clean make -n lib-depends | sh -x Post the output of the make command, and that should help troubleshoot this further. Regards, Greg -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.13 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlE+Ri0ACgkQ0sRouByUApA2nwCdHpyPY6av8IvaBqTM0eurZl9r KFsAn38Ey2ZEVdcnpRzDHKe3Ncxec3gB =BrF3 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 21:06:46 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0A8E7FDF for ; Mon, 11 Mar 2013 21:06:46 +0000 (UTC) (envelope-from lokadamus@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.15.19]) by mx1.freebsd.org (Postfix) with ESMTP id 1B4A2189 for ; Mon, 11 Mar 2013 21:06:44 +0000 (UTC) Received: from mailout-de.gmx.net ([10.1.76.32]) by mrigmx.server.lan (mrigmx001) with ESMTP (Nemesis) id 0M94oF-1U3N9S1ugf-00CPzB for ; Mon, 11 Mar 2013 22:06:43 +0100 Received: (qmail invoked by alias); 11 Mar 2013 21:06:43 -0000 Received: from 31-18-8-110-dynip.superkabel.de (EHLO [192.168.0.143]) [31.18.8.110] by mail.gmx.net (mp032) with SMTP; 11 Mar 2013 22:06:43 +0100 X-Authenticated: #3333826 X-Provags-ID: V01U2FsdGVkX1/Q+28t3lTQL5ni8FV34WKpDFyImnKJwM+8lY17/S 1nSpKP1OXgJlek Message-ID: <513E4768.7020309@gmx.de> Date: Mon, 11 Mar 2013 22:06:48 +0100 From: "lokadamus@gmx.de" User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120909 Thunderbird/15.0 MIME-Version: 1.0 To: Michael Sierchio Subject: Re: OpenVPN vm cant connect to other VM's References: <51371C8A.8050205@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: Brent Clark , freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 21:06:46 -0000 On 11.03.2013 20:13, Michael Sierchio wrote: > Are you pushing routes in your server.conf file? > > (hint - show, don't tell) > > - M > > On Wed, Mar 6, 2013 at 2:38 AM, Brent Clark wrote: >> Hi guys >> >> Im struggling with a freebsd vm, that I have that I use for a VPN connection >> too, from my workstation to my home LAN. And I was wondering if someone >> could peer review me and my problem. >> >> OpenVPN is working beautifully. I.e. I can connect to some services (apache >> etc) that I run directly on my FreeBSD / openvpn vm. >> >> What im now trying to achieve is that I can connect to other VMs / machines >> on my home LAN. >> >> Im using tun for my VPN, and my pf.conf looks like so (please see the nat on >> ...) >> >> [root@freebsd /usr/home/bclark]# cat /etc/pf.conf >> ext_if="re0" >> vpn_if="tun0" >> int_net="10.0.0.0/24" >> vpn_net="192.168.200.0/24" >> set skip on lo0 >> set optimization normal >> #set block-policy drop >> set limit { states 20000, frags 10000, src-nodes 20000 } >> # Normalization: reassemble fragments and resolve or reduce traffic >> ambiguities. >> scrub in all >> # Translation: specify how addresses are to be mapped or redirected. >> # NAT rules >> # enabling NAT currently breaks policy based routing >> #nat on $ext_if from { $int_net, $vpn_net } to any -> ($ext_if) >> #nat on tun0 from { 192.168.200.0/24 } to any -> (re0) >> nat on re0 from { 192.168.200.0/24 } to any -> (re0) >> >> table persist >> block in quick on re0 proto tcp from to any port ssh label "ssh >> brute" >> >> What am I missing? >> >> If anyone could assist, it would be appreciated. >> >> Kind Regards >> Brent Clark >> >> >> _______________________________________________ >> 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.org" > For your own network yes. You must route all your traffic, which is for your other lan/ subnet. Every VPN connect must be corrected routed, equal which vpn is used. Else every traffic will go loose through internet traffic. I connect some subnets with OpenVPN and every subnet must configured with "ccd" (its a subfolder with a filename of certificate- name and content with "iroute subnet" to tell, when client xyz is connect, subnet is there) and in server.conf. Else this subnets won't routed correct. You can add this route manuell through its OpenVPN- Gateway. Show: server.conf: look for "client-config-dir /usr/local/.../ccd" in server.conf and insert your subnet: route 192.168.x.x 255.255.255.0 create a file with certificate-name under "/usr/local/etc/openvpn/config/"your connect-name"/ccd/ and insert: iroute 192.168.x.x 255.255.255.0 Look in /var/log/openvpn.log for the right certificate-name. Everytime this certificat/ client is connect the subnet- traffic will be routed through him. Don't forget to restart openvpn. ;) *Sorry, my english is not so good* Regards From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 21:08:39 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2956F12C for ; Mon, 11 Mar 2013 21:08:39 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ob0-x235.google.com (mail-ob0-x235.google.com [IPv6:2607:f8b0:4003:c01::235]) by mx1.freebsd.org (Postfix) with ESMTP id EA6E21A9 for ; Mon, 11 Mar 2013 21:08:38 +0000 (UTC) Received: by mail-ob0-f181.google.com with SMTP id ni5so3779569obc.26 for ; Mon, 11 Mar 2013 14:08:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=VceFZJgAYd1pDLf2TbiJU7X9YEm9+jMC0bIxFJ/DA0c=; b=taG/wNrzVMePAfR+uSeFkVQzP2t0VlJ9dqar3VMHG6SBHxxgPtNe7kjB/goFzyzbhG jLyUYcTQBFrjwK+qwUcRLtE6QP5J0cpB+gkmhX3RgCsfi0ryb5H7PKMB0aEHYxa9tRP4 B2aC2Lg9CVR9OEP3MWUomUdPPQWfC8t/ulTv4NA56bWwvpVy2s/iPEU/M7NjmOorlVTG WMu6Kyi4/huGDAfEPrnp3NXvrLWYQuhdUEdzqmfZ7F/goFeY83xsP+Yj3ueXoJwZLyG4 yUM5022zVTe1b5Dax8WgkE2kYxJad5GnFTjTP8iRmcZSM7Kgbba3+ekujkqMHAoh4fiK 0Tkw== X-Received: by 10.60.20.129 with SMTP id n1mr10543390oee.39.1363036118577; Mon, 11 Mar 2013 14:08:38 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id m7sm18650938obk.2.2013.03.11.14.08.36 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Mar 2013 14:08:37 -0700 (PDT) Message-ID: <513E47D1.2030403@gmail.com> Date: Mon, 11 Mar 2013 16:08:33 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> <513E3544.6080208@gmail.com> <20130311200838.GA1348@tiny.Sisis.de> <513E3BB4.305@gmail.com> <20130311202628.GA1413@tiny.Sisis.de> <513E3FBD.5000302@gmail.com> <20130311204351.GA1485@tiny.Sisis.de> In-Reply-To: <20130311204351.GA1485@tiny.Sisis.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 21:08:39 -0000 Thank you all for all your help, this is apparently an unsolvable problem. Seems I wasted your time as well as mine trying to get yet another piece of hardware working under FreeBSD. I've done everything asked of me, several times over, and this ends with someone deciding I'm a liar. Have a nice day. I'll just find another way to do my printing. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 21:14:05 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EA184419 for ; Mon, 11 Mar 2013 21:14:05 +0000 (UTC) (envelope-from iamatt@gmail.com) Received: from mail-wi0-x22b.google.com (mail-wi0-x22b.google.com [IPv6:2a00:1450:400c:c05::22b]) by mx1.freebsd.org (Postfix) with ESMTP id 86F891F8 for ; Mon, 11 Mar 2013 21:14:05 +0000 (UTC) Received: by mail-wi0-f171.google.com with SMTP id hn17so1333597wib.16 for ; Mon, 11 Mar 2013 14:14:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=wbb1HDnEcrJDrH01iyQRQA5PgzWoeig2R2tGKUBJlWw=; b=MrnTkEOnlCi8Ei20e3yeAqyZmcHqHQAj8ITSefwX0Bda3tOU16GWNNjstvnMdswii7 cMJGfToezRU0lUIIQuEpJG4yOintWBWscWbTrpbDcMqQ2Ul9ZRkTonJmvy+KKH1GWxjW 2FSJRKuPHUSxxDLT3vtcqJkC4v7rV22jIRoX/CPqS84/fGOvjNmR6q1BZphXHcw1ePau noobvnufi0ZpOAMHw4AVGwjKLFnRGawaK9WqYcewX4R2UfdrNyIkPDl8CyQVVTz/QojK G3QLjdR6mityoxWzJW05/6OTFIR563DxDH7P8vKT/h2OGDRulIsHzKoIOiIMNuib+TAZ gjtQ== MIME-Version: 1.0 X-Received: by 10.181.11.198 with SMTP id ek6mr20840224wid.1.1363036444684; Mon, 11 Mar 2013 14:14:04 -0700 (PDT) Received: by 10.216.33.129 with HTTP; Mon, 11 Mar 2013 14:14:04 -0700 (PDT) Received: by 10.216.33.129 with HTTP; Mon, 11 Mar 2013 14:14:04 -0700 (PDT) In-Reply-To: <513E47D1.2030403@gmail.com> References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> <513E3544.6080208@gmail.com> <20130311200838.GA1348@tiny.Sisis.de> <513E3BB4.305@gmail.com> <20130311202628.GA1413@tiny.Sisis.de> <513E3FBD.5000302@gmail.com> <20130311204351.GA1485@tiny.Sisis.de> <513E47D1.2030403@gmail.com> Date: Mon, 11 Mar 2013 16:14:04 -0500 Message-ID: Subject: Re: Problems Printing From: iamatt To: "Joseph A. Nagy, Jr" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 21:14:06 -0000 Everything but your due diligence. 34+ thread on printing, some crap you probably don't even need to print, Jesus. Never had an issue printing from freebsd. HP jet direct with postscript are cheap(the old ones being the good ones). I print from winblows if I need to do real printing. On Mar 11, 2013 4:08 PM, "Joseph A. Nagy, Jr" wrote: > Thank you all for all your help, this is apparently an unsolvable problem. > > Seems I wasted your time as well as mine trying to get yet another piece > of hardware working under FreeBSD. I've done everything asked of me, > several times over, and this ends with someone deciding I'm a liar. > > Have a nice day. I'll just find another way to do my printing. > > -- > Yours in Christ, > > Joseph A Nagy Jr > "Whoever loves instruction loves knowledge, But he who hates correction > is stupid." -- Proverbs 12:1 > Emails are not formal business letters, whatever businesses may want. > Original content CopyFree (F) under the OWL http://copyfree.org/licenses/* > *owl/license.txt > ______________________________**_________________ > 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 Mar 11 21:14:45 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 84AB84C1 for ; Mon, 11 Mar 2013 21:14:45 +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 4670120F for ; Mon, 11 Mar 2013 21:14:45 +0000 (UTC) Received: from [89.204.130.101] (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 1UFA3N-0006QI-47 for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 22:14:41 +0100 Received: from tiny.Sisis.de (localhost [127.0.0.1]) by tiny.Sisis.de (8.14.5/8.14.3) with ESMTP id r2BLEc85001607 for ; Mon, 11 Mar 2013 22:14:39 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by tiny.Sisis.de (8.14.5/8.14.3/Submit) id r2BLEcZw001606 for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 22:14:38 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: tiny.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Mon, 11 Mar 2013 22:14:38 +0100 From: Matthias Apitz To: freebsd-questions@freebsd.org Subject: Re: Problems Printing Message-ID: <20130311211437.GA1575@tiny.Sisis.de> References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> <513E3544.6080208@gmail.com> <20130311200838.GA1348@tiny.Sisis.de> <513E3BB4.305@gmail.com> <20130311202628.GA1413@tiny.Sisis.de> <513E3FBD.5000302@gmail.com> <20130311204351.GA1485@tiny.Sisis.de> <513E47D1.2030403@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <513E47D1.2030403@gmail.com> 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: 89.204.130.101 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 21:14:45 -0000 El día Monday, March 11, 2013 a las 04:08:33PM -0500, Joseph A. Nagy, Jr escribió: > Thank you all for all your help, this is apparently an unsolvable problem. I don't think so that this is an unsolvable problem. > Seems I wasted your time as well as mine trying to get yet another piece > of hardware working under FreeBSD. I've done everything asked of me, > several times over, and this ends with someone deciding I'm a liar. Nobody says that you are a liar. Just follow the hints given, do it with calm and do not test several changes at the same time. matthias -- Sent from my FreeBSD netbook Matthias Apitz | - No system with backdoors like Apple/Android E-mail: guru@unixarea.de | - Never being an iSlave WWW: http://www.unixarea.de/ | - No proprietary attachments, no HTML/RTF in E-mail phone: +49-170-4527211 | - Respect for open standards From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 21:25:51 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 148B0AA2 for ; Mon, 11 Mar 2013 21:25:51 +0000 (UTC) (envelope-from clarkp@mtmary.edu) Received: from va3outboundpool.messaging.microsoft.com (va3ehsobe001.messaging.microsoft.com [216.32.180.11]) by mx1.freebsd.org (Postfix) with ESMTP id AD58E2D1 for ; Mon, 11 Mar 2013 21:25:49 +0000 (UTC) Received: from mail61-va3-R.bigfish.com (10.7.14.230) by VA3EHSOBE004.bigfish.com (10.7.40.24) with Microsoft SMTP Server id 14.1.225.23; Mon, 11 Mar 2013 21:25:48 +0000 Received: from mail61-va3 (localhost [127.0.0.1]) by mail61-va3-R.bigfish.com (Postfix) with ESMTP id 27BAD3601D8 for ; Mon, 11 Mar 2013 21:25:48 +0000 (UTC) X-Forefront-Antispam-Report: CIP:157.56.234.5; KIP:(null); UIP:(null); IPV:NLI; H:SN2PRD0310HT004.namprd03.prod.outlook.com; RD:none; EFVD:NLI X-SpamScore: 1 X-BigFish: PS1(zzc85fhzz1f42h1d77h1ee6h1de0h1202h1e76h1d1ah1d2ahzz17326ah8275dh18c673h8275bhz2fh2a8h668h839hd25hf0ah1288h12a5h12bdh137ah1441h1504h1537h153bh15d0h162dh1631h1758h18e1h1946h19b5h19ceh1ad9h1b0ah1b1bi1155h) Received-SPF: pass (mail61-va3: domain of mtmary.edu designates 157.56.234.5 as permitted sender) client-ip=157.56.234.5; envelope-from=clarkp@mtmary.edu; helo=SN2PRD0310HT004.namprd03.prod.outlook.com ; .outlook.com ; Received: from mail61-va3 (localhost.localdomain [127.0.0.1]) by mail61-va3 (MessageSwitch) id 1363037145895652_10479; Mon, 11 Mar 2013 21:25:45 +0000 (UTC) Received: from VA3EHSMHS010.bigfish.com (unknown [10.7.14.230]) by mail61-va3.bigfish.com (Postfix) with ESMTP id D61A01600A9 for ; Mon, 11 Mar 2013 21:25:45 +0000 (UTC) Received: from SN2PRD0310HT004.namprd03.prod.outlook.com (157.56.234.5) by VA3EHSMHS010.bigfish.com (10.7.99.20) with Microsoft SMTP Server (TLS) id 14.1.225.23; Mon, 11 Mar 2013 21:25:44 +0000 Received: from SN2PRD0310MB395.namprd03.prod.outlook.com ([169.254.2.51]) by SN2PRD0310HT004.namprd03.prod.outlook.com ([10.255.112.39]) with mapi id 14.16.0275.005; Mon, 11 Mar 2013 21:25:44 +0000 From: Peter Clark To: "freebsd-questions@freebsd.org" Subject: pkg_updating -d Thread-Topic: pkg_updating -d Thread-Index: Ac4ehRy8wZuTIkKKR4O+Y1gPIXa+BQ== Date: Mon, 11 Mar 2013 21:25:43 +0000 Message-ID: <7DDC772D24706440BB39D4EF481473C7979D1790@SN2PRD0310MB395.namprd03.prod.outlook.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [208.24.226.200] MIME-Version: 1.0 X-OriginatorOrg: mtmary.edu Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 21:25:51 -0000 Hello, I am new to using pkg_updating -d to look at new entries in /usr/ports/UPDA= TING. From what I have read I should be able to just use: # pkg_updating -d 20130301 (for example) And that should give me everything in /usr/ports/UPDATING newer than that d= ate. When I run that command I get: root@monitor:/ # pkg_updating -d 20130301 root@monitor:/ # When I try # pkg_updating -d 20130201 root@monitor:/ # pkg_updating -d 20130201 root@monitor:/ # When I try # pkg_updating -d 20130101 root@monitor:/ # pkg_updating -d 20130101 root@monitor:/ # When I try # pkg_updating -d 20121201 root@monitor:/ # pkg_updating -d 20121201 20121211: AFFECTS: users of devel/pcre AUTHOR: bdrewery@FreeBSD.org The pcre library has been updated to version 8.32. Please rebuild all ports that depend on it. If you use portmaster: portmaster -w -r pcre If you use portupgrade: portupgrade -fr devel/pcre If you use pkgng with binary packages: pkg install -fR devel/pcre root@monitor:/ # Now that confuses me even more, it only returned one of the 2 advisories on= 12/11/2012. I am running: 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 = root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 I have "portsnap fetch update" today. Any ideas on how I can correct this behavior? Thank you, Peter From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 21:42:20 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 825FCE4 for ; Mon, 11 Mar 2013 21:42:20 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mout.gmx.net (mout.gmx.net [74.208.4.201]) by mx1.freebsd.org (Postfix) with ESMTP id 5E6F6396 for ; Mon, 11 Mar 2013 21:42:19 +0000 (UTC) Received: from mailout-us.mail.com ([172.19.198.94]) by mrigmx.server.lan (mrigmxus002) with ESMTP (Nemesis) id 0LtnbV-1UwRCQ1AFZ-011EDX for ; Mon, 11 Mar 2013 22:42:19 +0100 Received: (qmail invoked by alias); 11 Mar 2013 21:42:18 -0000 Received: from unknown (EHLO dc.sinhro.lv) [78.84.97.244] by mail.gmx.com (mp-us011) with SMTP; 11 Mar 2013 17:42:18 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX19xUOh6YR5xyNnhKHmWMiClYFT6JPQtrNYuVI+Dr9 NdeUeq6+823oqN Message-ID: <513E4FB8.2060506@mail.com> Date: Mon, 11 Mar 2013 23:42:16 +0200 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Error: shared library "mysqlclient.18" does not exist References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> <513E31B8.2020509@mail.com> In-Reply-To: <513E31B8.2020509@mail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 21:42:20 -0000 On 03/11/2013 21:34, Jeff Tipton wrote: > On 03/11/2013 21:00, Greg Larkin wrote: >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> On 3/11/13 2:47 PM, Jeff Tipton wrote: >>> On 03/11/2013 20:31, Greg Larkin wrote: On 3/11/13 2:10 PM, Jeff >>> Tipton wrote: >>>>>> On 03/11/2013 20:00, Greg Larkin wrote: On 3/11/13 12:59 PM, >>>>>> Jeff Tipton wrote: >>>>>>>>> Hi, >>>>>>>>> >>>>>>>>> I'm trying to set up security/maia, and this is the >>>>>>>>> error message I get: >>>>>>>>> >>>>>>>>> Error: shared library "mysqlclient.18" does not exist >>>>>>>>> >>>>>>>>> Of course, the library does exist :( >>>>>>>>> >>>>>>>>> # ls /usr/local/lib/mysql/ libmysqlclient.a >>>>>>>>> libmysqlclient_r.a libmysqld.a libmysqlclient.so >>>>>>>>> libmysqlclient_r.so libmysqlservices.a >>>>>>>>> libmysqlclient.so.18 libmysqlclient_r.so.18 plugin >>>>>>>>> >>>>>>>>> I googled about this, and I found 3 things to try but >>>>>>>>> none of that was helpful here: >>>>>>>>> >>>>>>>>> 1. make a link: ln -s >>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>> /usr/local/lib/libmysqlclient.so.18 >>>>>>>>> >>>>>>>>> 2. Check the root's umask and the directory permissions >>>>>>>>> if they are correct, and they are: # umask 22 #ll >>>>>>>>> /usr/local/lib |grep mysql lrwxr-xr-x 1 root wheel >>>>>>>>> 41 Mar 11 16:25 libmysqlclient.so.18@ -> >>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 drwxr-xr-x >>>>>>>>> 3 root wheel 512 Mar 11 16:22 mysql/ >>>>>>>>> >>>>>>>>> # ll /usr/local/lib/mysql/ total 27276 -rw-r--r-- 1 >>>>>>>>> root wheel 4844270 Mar 11 16:17 libmysqlclient.a >>>>>>>>> lrwxr-xr-x 1 root wheel 20 Mar 11 16:22 >>>>>>>>> libmysqlclient.so@ -> libmysqlclient.so.18 -rwxr-xr-x >>>>>>>>> 1 root wheel 3364688 Mar 11 16:22 >>>>>>>>> libmysqlclient.so.18* lrwxr-xr-x 1 root wheel 16 Mar >>>>>>>>> 11 16:22 libmysqlclient_r.a@ -> libmysqlclient.a >>>>>>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 16:22 >>>>>>>>> libmysqlclient_r.so@ -> libmysqlclient.so lrwxr-xr-x 1 >>>>>>>>> root wheel 17 Mar 11 16:22 >>>>>>>>> libmysqlclient_r.so.18@ -> libmysqlclient.so -rw-r--r-- >>>>>>>>> 1 root wheel 20019340 Mar 7 15:08 libmysqld.a >>>>>>>>> -rw-r--r-- 1 root wheel 4598 Mar 11 16:17 >>>>>>>>> libmysqlservices.a drwxr-xr-x 2 root wheel 512 Mar 8 >>>>>>>>> 19:01 plugin/ >>>>>>>>> >>>>>>>>> 3. Update the ports tree. Ports tree is up to date. >>>>>>>>> >>>>>>>>> Could someone, please, suggest what I could try to >>>>>>>>> solve this? >>>>>>>>> >>>>>>>>> Thanks, Jeff >>>>>> Hi Jeff, >>>>>> >>>>>> At what point do you receive the error message? Is it when >>>>>> you attempt to run the executable built by the port? If so, >>>>>> please run the ldd command against the executable and post >>>>>> the output back here. >>>>>> >>>>>> 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 >>>>>> Thank you, Greg, for the reply. I get the error message while >>>>>> compiling security/maia port. mysql client itself is working >>>>>> ok, I can connect to my database server. >>>>>> >>>>>> ldd output: # ldd /usr/local/bin/mysql /usr/local/bin/mysql: >>>>>> libreadline.so.8 => /lib/libreadline.so.8 (0x800ab5000) >>>>>> libz.so.6 => /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 => >>>>>> /usr/lib/libstdc++.so.6 (0x800f09000) libm.so.5 => >>>>>> /lib/libm.so.5 (0x801219000) libgcc_s.so.1 => >>>>>> /lib/libgcc_s.so.1 (0x80143a000) libthr.so.3 => >>>>>> /lib/libthr.so.3 (0x801647000) libc.so.7 => /lib/libc.so.7 >>>>>> (0x801869000) libncurses.so.8 => /lib/libncurses.so.8 >>>>>> (0x801bbc000) >>>>>> >>> Hi Jeff, >>> >>> Can you post the relevant bits of build output where the error >>> message shows up? If it happens during the configure phase of the >>> port build, you'll also want to post the end of the config.log file >>> found in the port work directory. >>> >>> Thank you, Greg >>> >>> >>> I tried to run "make" several times, and previously some build >>> depends were compiled. But now the "work" directory doesn't even >>> get created, and the process stops immediately: >>> >>> /usr/ports/security/maia# make install clean ===> >>> maia-1.0.3.r1575_3 depends on shared library: mysqlclient.18 - not >>> found ===> Verifying install for mysqlclient.18 in >>> /usr/ports/databases/mysql55-client ===> Returning to build of >>> maia-1.0.3.r1575_3 Error: shared library "mysqlclient.18" does not >>> exist *** [lib-depends] Error code 1 >>> >>> Stop in /basejail/usr/ports/security/maia. >>> /usr/ports/security/maia# >>> >>> >> Ok, it looks like something is messed up with your ldconfig search >> path. To confirm that, please run this command and post results back >> here: >> >> ldconfig -r| grep mysql >> >> Thank you, >> Greg >> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.13 (Darwin) >> Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ >> >> iEYEARECAAYFAlE+KdEACgkQ0sRouByUApBP3gCfalFeDTMflaCy+vnF3FMoTht8 >> +8sAn0oZBRgUlryNk21zzYZ0KMJYsGER >> =3LRY >> -----END PGP SIGNATURE----- >> _______________________________________________ >> 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" > # ldconfig -r| grep mysql > search directories: > /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/local/lib/dovecot:/usr/local/lib/mysql:/usr/local/lib/pth > 218:-lmysqlclient.18 => /usr/local/lib/libmysqlclient.so.18 > 219:-lmysqlclient.18 => /usr/local/lib/mysql/libmysqlclient.so.18 > 220:-lmysqlclient_r.18 => /usr/local/lib/mysql/libmysqlclient_r.so.18 > > I installed both mysql client and server from ports. The versions are: > mysql-client-5.5.30 > mysql-server-5.5.30 > > _______________________________________________ > 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" Thank you, Greg. As a result, databases/mysql55-client got rebuilt, so I lost the beginning of the log. The end is this: [100%] Built target mysqlshow Linking CXX executable mysqlslap cd /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/client && /usr/local/bin/cmake -E cmake_link_script CMakeFiles/mysqlslap.dir/link.txt --verbose=1 /usr/bin/c++ -O2 -pipe -fno-strict-aliasing -Wall -Wno-unused-parameter -fno-implicit-templates -fno-exceptions -fno-rtti -O2 -pipe -fno-strict-aliasing -DDBUG_OFF CMakeFiles/mysqlslap.dir/mysqlslap.c.o -o mysqlslap -pthread ../libmysql/libmysqlclient.a -pthread -lz -lm /usr/local/bin/cmake -E cmake_progress_report /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles [100%] Built target mysqlslap /usr/local/bin/cmake -E cmake_progress_start /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles 0 ===> Installing for mysql-client-5.5.30 ===> Generating temporary packing list ===> Checking if databases/mysql55-client already installed ===> mysql-client-5.5.30 is already installed You may wish to ``make deinstall'' and install this port again by ``make reinstall'' to upgrade it properly. If you really wish to overwrite the old port of databases/mysql55-client without deleting it first, set the variable "FORCE_PKG_REGISTER" in your environment or the "make install" command line. *** [check-already-installed] Error code 1 Stop in /basejail/usr/ports/databases/mysql55-client. + echo '===> Returning to build of maia-1.0.3.r1575_3' ===> Returning to build of maia-1.0.3.r1575_3 + /sbin/ldconfig -32 -r + /usr/bin/grep -vwF -e /usr/local/lib/compat/pkg + /usr/bin/grep -qwE -e '-lmysqlclient\.18' + echo 'Error: shared library "mysqlclient.18" does not exist' Error: shared library "mysqlclient.18" does not exist + false /usr/ports/security/maia# From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 22:07:36 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A7A26B5E for ; Mon, 11 Mar 2013 22:07:36 +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 8207D6B7 for ; Mon, 11 Mar 2013 22:07:36 +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 1UFAsU-000OTS-1o; Mon, 11 Mar 2013 18:07:35 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by Gregory-Larkins-iMac.local (Postfix) with ESMTPS id 890F61B4BBD2; Mon, 11 Mar 2013 18:07:29 -0400 (EDT) Message-ID: <513E55A0.7030109@FreeBSD.org> Date: Mon, 11 Mar 2013 18:07:28 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130216 Thunderbird/17.0.3 MIME-Version: 1.0 To: Jeff Tipton References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> <513E31B8.2020509@mail.com> <513E4FB8.2060506@mail.com> In-Reply-To: <513E4FB8.2060506@mail.com> X-Enigmail-Version: 1.5.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=-1.1 required=5.0 tests=AWL,BAYES_00, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Subject: Re: Error: shared library "mysqlclient.18" does not exist 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-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 11 Mar 2013 22:07:36 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 3/11/13 5:42 PM, Jeff Tipton wrote: > On 03/11/2013 21:34, Jeff Tipton wrote: >> On 03/11/2013 21:00, Greg Larkin wrote: > On 3/11/13 2:47 PM, Jeff Tipton wrote: >>>>> On 03/11/2013 20:31, Greg Larkin wrote: On 3/11/13 2:10 PM, >>>>> Jeff Tipton wrote: >>>>>>>> On 03/11/2013 20:00, Greg Larkin wrote: On 3/11/13 >>>>>>>> 12:59 PM, Jeff Tipton wrote: >>>>>>>>>>> Hi, >>>>>>>>>>> >>>>>>>>>>> I'm trying to set up security/maia, and this is >>>>>>>>>>> the error message I get: >>>>>>>>>>> >>>>>>>>>>> Error: shared library "mysqlclient.18" does not >>>>>>>>>>> exist >>>>>>>>>>> >>>>>>>>>>> Of course, the library does exist :( >>>>>>>>>>> >>>>>>>>>>> # ls /usr/local/lib/mysql/ libmysqlclient.a >>>>>>>>>>> libmysqlclient_r.a libmysqld.a >>>>>>>>>>> libmysqlclient.so libmysqlclient_r.so >>>>>>>>>>> libmysqlservices.a libmysqlclient.so.18 >>>>>>>>>>> libmysqlclient_r.so.18 plugin >>>>>>>>>>> >>>>>>>>>>> I googled about this, and I found 3 things to >>>>>>>>>>> try but none of that was helpful here: >>>>>>>>>>> >>>>>>>>>>> 1. make a link: ln -s >>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>> /usr/local/lib/libmysqlclient.so.18 >>>>>>>>>>> >>>>>>>>>>> 2. Check the root's umask and the directory >>>>>>>>>>> permissions if they are correct, and they are: >>>>>>>>>>> # umask 22 #ll /usr/local/lib |grep mysql >>>>>>>>>>> lrwxr-xr-x 1 root wheel 41 Mar 11 16:25 >>>>>>>>>>> libmysqlclient.so.18@ -> >>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>> drwxr-xr-x 3 root wheel 512 Mar 11 16:22 >>>>>>>>>>> mysql/ >>>>>>>>>>> >>>>>>>>>>> # ll /usr/local/lib/mysql/ total 27276 >>>>>>>>>>> -rw-r--r-- 1 root wheel 4844270 Mar 11 16:17 >>>>>>>>>>> libmysqlclient.a lrwxr-xr-x 1 root wheel 20 >>>>>>>>>>> Mar 11 16:22 libmysqlclient.so@ -> >>>>>>>>>>> libmysqlclient.so.18 -rwxr-xr-x 1 root wheel >>>>>>>>>>> 3364688 Mar 11 16:22 libmysqlclient.so.18* >>>>>>>>>>> lrwxr-xr-x 1 root wheel 16 Mar 11 16:22 >>>>>>>>>>> libmysqlclient_r.a@ -> libmysqlclient.a >>>>>>>>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 >>>>>>>>>>> 16:22 libmysqlclient_r.so@ -> libmysqlclient.so >>>>>>>>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 >>>>>>>>>>> 16:22 libmysqlclient_r.so.18@ -> >>>>>>>>>>> libmysqlclient.so -rw-r--r-- 1 root wheel >>>>>>>>>>> 20019340 Mar 7 15:08 libmysqld.a -rw-r--r-- 1 >>>>>>>>>>> root wheel 4598 Mar 11 16:17 >>>>>>>>>>> libmysqlservices.a drwxr-xr-x 2 root wheel >>>>>>>>>>> 512 Mar 8 19:01 plugin/ >>>>>>>>>>> >>>>>>>>>>> 3. Update the ports tree. Ports tree is up to >>>>>>>>>>> date. >>>>>>>>>>> >>>>>>>>>>> Could someone, please, suggest what I could try >>>>>>>>>>> to solve this? >>>>>>>>>>> >>>>>>>>>>> Thanks, Jeff >>>>>>>> Hi Jeff, >>>>>>>> >>>>>>>> At what point do you receive the error message? Is >>>>>>>> it when you attempt to run the executable built by >>>>>>>> the port? If so, please run the ldd command against >>>>>>>> the executable and post the output back here. >>>>>>>> >>>>>>>> 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 Thank you, Greg, for the reply. I get the >>>>>>>> error message while compiling security/maia port. >>>>>>>> mysql client itself is working ok, I can connect to >>>>>>>> my database server. >>>>>>>> >>>>>>>> ldd output: # ldd /usr/local/bin/mysql >>>>>>>> /usr/local/bin/mysql: libreadline.so.8 => >>>>>>>> /lib/libreadline.so.8 (0x800ab5000) libz.so.6 => >>>>>>>> /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 => >>>>>>>> /usr/lib/libstdc++.so.6 (0x800f09000) libm.so.5 => >>>>>>>> /lib/libm.so.5 (0x801219000) libgcc_s.so.1 => >>>>>>>> /lib/libgcc_s.so.1 (0x80143a000) libthr.so.3 => >>>>>>>> /lib/libthr.so.3 (0x801647000) libc.so.7 => >>>>>>>> /lib/libc.so.7 (0x801869000) libncurses.so.8 => >>>>>>>> /lib/libncurses.so.8 (0x801bbc000) >>>>>>>> >>>>> Hi Jeff, >>>>> >>>>> Can you post the relevant bits of build output where the >>>>> error message shows up? If it happens during the configure >>>>> phase of the port build, you'll also want to post the end >>>>> of the config.log file found in the port work directory. >>>>> >>>>> Thank you, Greg >>>>> >>>>> >>>>> I tried to run "make" several times, and previously some >>>>> build depends were compiled. But now the "work" directory >>>>> doesn't even get created, and the process stops >>>>> immediately: >>>>> >>>>> /usr/ports/security/maia# make install clean ===> >>>>> maia-1.0.3.r1575_3 depends on shared library: >>>>> mysqlclient.18 - not found ===> Verifying install for >>>>> mysqlclient.18 in /usr/ports/databases/mysql55-client ===> >>>>> Returning to build of maia-1.0.3.r1575_3 Error: shared >>>>> library "mysqlclient.18" does not exist *** [lib-depends] >>>>> Error code 1 >>>>> >>>>> Stop in /basejail/usr/ports/security/maia. >>>>> /usr/ports/security/maia# >>>>> >>>>> > Ok, it looks like something is messed up with your ldconfig search > path. To confirm that, please run this command and post results > back here: > > ldconfig -r| grep mysql > > Thank you, Greg >>> _______________________________________________ >>> 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" >> # ldconfig -r| grep mysql search directories: >> /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/local/lib/dovecot:/usr/local/lib/mysql:/usr/local/lib/pth >> >> >> 218:-lmysqlclient.18 => /usr/local/lib/libmysqlclient.so.18 >> 219:-lmysqlclient.18 => >> /usr/local/lib/mysql/libmysqlclient.so.18 220:-lmysqlclient_r.18 >> => /usr/local/lib/mysql/libmysqlclient_r.so.18 >> >> I installed both mysql client and server from ports. The versions >> are: mysql-client-5.5.30 mysql-server-5.5.30 >> >> _______________________________________________ >> 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" > Thank you, Greg. As a result, databases/mysql55-client got rebuilt, > so I lost the beginning of the log. The end is this: > > [100%] Built target mysqlshow Linking CXX executable mysqlslap cd > /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/client > > && /usr/local/bin/cmake -E cmake_link_script > CMakeFiles/mysqlslap.dir/link.txt --verbose=1 /usr/bin/c++ -O2 > -pipe -fno-strict-aliasing -Wall -Wno-unused-parameter > -fno-implicit-templates -fno-exceptions -fno-rtti -O2 -pipe > -fno-strict-aliasing -DDBUG_OFF > CMakeFiles/mysqlslap.dir/mysqlslap.c.o -o mysqlslap -pthread > ../libmysql/libmysqlclient.a -pthread -lz -lm /usr/local/bin/cmake > -E cmake_progress_report > /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles > > [100%] Built target mysqlslap /usr/local/bin/cmake -E > cmake_progress_start > /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles > > 0 > ===> Installing for mysql-client-5.5.30 ===> Generating > temporary packing list ===> Checking if databases/mysql55-client > already installed ===> mysql-client-5.5.30 is already installed > You may wish to ``make deinstall'' and install this port again by > ``make reinstall'' to upgrade it properly. If you really wish to > overwrite the old port of databases/mysql55-client without deleting > it first, set the variable "FORCE_PKG_REGISTER" in your environment > or the "make install" command line. *** [check-already-installed] > Error code 1 > > Stop in /basejail/usr/ports/databases/mysql55-client. + echo '===> > Returning to build of maia-1.0.3.r1575_3' ===> Returning to build > of maia-1.0.3.r1575_3 + /sbin/ldconfig -32 -r + /usr/bin/grep -vwF > -e /usr/local/lib/compat/pkg + /usr/bin/grep -qwE -e > '-lmysqlclient\.18' + echo 'Error: shared library "mysqlclient.18" > does not exist' Error: shared library "mysqlclient.18" does not > exist + false /usr/ports/security/maia# Try one more test for me - deselect the "RAR" option in the maia port, run "make clean build" and let me know what happens. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.13 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlE+VaAACgkQ0sRouByUApBczQCfRAln8yQ0nBHNF5Ks3TePgAhv DdEAoIFeWmRzuN2soCxzkUHnMjDYhHtu =W5RR -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 22:21:10 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id AE81494 for ; Mon, 11 Mar 2013 22:21:10 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mout.gmx.net (mout.gmx.net [74.208.4.200]) by mx1.freebsd.org (Postfix) with ESMTP id 834A2737 for ; Mon, 11 Mar 2013 22:21:10 +0000 (UTC) Received: from mailout-us.mail.com ([172.19.198.50]) by mrigmx.server.lan (mrigmxus001) with ESMTP (Nemesis) id 0MDhGc-1Ty8zr1wYY-00H6Eu for ; Mon, 11 Mar 2013 23:21:09 +0100 Received: (qmail invoked by alias); 11 Mar 2013 22:21:08 -0000 Received: from unknown (EHLO dc.sinhro.lv) [78.84.97.244] by mail.gmx.com (mp-us010) with SMTP; 11 Mar 2013 18:21:08 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX1/YGEhpw6XYQMdoUucHLcIp6gqGhW8AJDto13MpNl MfYyoksJ7pMc0s Message-ID: <513E58D2.8000503@mail.com> Date: Tue, 12 Mar 2013 00:21:06 +0200 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Error: shared library "mysqlclient.18" does not exist References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> <513E31B8.2020509@mail.com> <513E4FB8.2060506@mail.com> <513E55A0.7030109@FreeBSD.org> In-Reply-To: <513E55A0.7030109@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 22:21:10 -0000 On 03/12/2013 00:07, Greg Larkin wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 3/11/13 5:42 PM, Jeff Tipton wrote: >> On 03/11/2013 21:34, Jeff Tipton wrote: >>> On 03/11/2013 21:00, Greg Larkin wrote: >> On 3/11/13 2:47 PM, Jeff Tipton wrote: >>>>>> On 03/11/2013 20:31, Greg Larkin wrote: On 3/11/13 2:10 PM, >>>>>> Jeff Tipton wrote: >>>>>>>>> On 03/11/2013 20:00, Greg Larkin wrote: On 3/11/13 >>>>>>>>> 12:59 PM, Jeff Tipton wrote: >>>>>>>>>>>> Hi, >>>>>>>>>>>> >>>>>>>>>>>> I'm trying to set up security/maia, and this is >>>>>>>>>>>> the error message I get: >>>>>>>>>>>> >>>>>>>>>>>> Error: shared library "mysqlclient.18" does not >>>>>>>>>>>> exist >>>>>>>>>>>> >>>>>>>>>>>> Of course, the library does exist :( >>>>>>>>>>>> >>>>>>>>>>>> # ls /usr/local/lib/mysql/ libmysqlclient.a >>>>>>>>>>>> libmysqlclient_r.a libmysqld.a >>>>>>>>>>>> libmysqlclient.so libmysqlclient_r.so >>>>>>>>>>>> libmysqlservices.a libmysqlclient.so.18 >>>>>>>>>>>> libmysqlclient_r.so.18 plugin >>>>>>>>>>>> >>>>>>>>>>>> I googled about this, and I found 3 things to >>>>>>>>>>>> try but none of that was helpful here: >>>>>>>>>>>> >>>>>>>>>>>> 1. make a link: ln -s >>>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>>> /usr/local/lib/libmysqlclient.so.18 >>>>>>>>>>>> >>>>>>>>>>>> 2. Check the root's umask and the directory >>>>>>>>>>>> permissions if they are correct, and they are: >>>>>>>>>>>> # umask 22 #ll /usr/local/lib |grep mysql >>>>>>>>>>>> lrwxr-xr-x 1 root wheel 41 Mar 11 16:25 >>>>>>>>>>>> libmysqlclient.so.18@ -> >>>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>>> drwxr-xr-x 3 root wheel 512 Mar 11 16:22 >>>>>>>>>>>> mysql/ >>>>>>>>>>>> >>>>>>>>>>>> # ll /usr/local/lib/mysql/ total 27276 >>>>>>>>>>>> -rw-r--r-- 1 root wheel 4844270 Mar 11 16:17 >>>>>>>>>>>> libmysqlclient.a lrwxr-xr-x 1 root wheel 20 >>>>>>>>>>>> Mar 11 16:22 libmysqlclient.so@ -> >>>>>>>>>>>> libmysqlclient.so.18 -rwxr-xr-x 1 root wheel >>>>>>>>>>>> 3364688 Mar 11 16:22 libmysqlclient.so.18* >>>>>>>>>>>> lrwxr-xr-x 1 root wheel 16 Mar 11 16:22 >>>>>>>>>>>> libmysqlclient_r.a@ -> libmysqlclient.a >>>>>>>>>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 >>>>>>>>>>>> 16:22 libmysqlclient_r.so@ -> libmysqlclient.so >>>>>>>>>>>> lrwxr-xr-x 1 root wheel 17 Mar 11 >>>>>>>>>>>> 16:22 libmysqlclient_r.so.18@ -> >>>>>>>>>>>> libmysqlclient.so -rw-r--r-- 1 root wheel >>>>>>>>>>>> 20019340 Mar 7 15:08 libmysqld.a -rw-r--r-- 1 >>>>>>>>>>>> root wheel 4598 Mar 11 16:17 >>>>>>>>>>>> libmysqlservices.a drwxr-xr-x 2 root wheel >>>>>>>>>>>> 512 Mar 8 19:01 plugin/ >>>>>>>>>>>> >>>>>>>>>>>> 3. Update the ports tree. Ports tree is up to >>>>>>>>>>>> date. >>>>>>>>>>>> >>>>>>>>>>>> Could someone, please, suggest what I could try >>>>>>>>>>>> to solve this? >>>>>>>>>>>> >>>>>>>>>>>> Thanks, Jeff >>>>>>>>> Hi Jeff, >>>>>>>>> >>>>>>>>> At what point do you receive the error message? Is >>>>>>>>> it when you attempt to run the executable built by >>>>>>>>> the port? If so, please run the ldd command against >>>>>>>>> the executable and post the output back here. >>>>>>>>> >>>>>>>>> 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 Thank you, Greg, for the reply. I get the >>>>>>>>> error message while compiling security/maia port. >>>>>>>>> mysql client itself is working ok, I can connect to >>>>>>>>> my database server. >>>>>>>>> >>>>>>>>> ldd output: # ldd /usr/local/bin/mysql >>>>>>>>> /usr/local/bin/mysql: libreadline.so.8 => >>>>>>>>> /lib/libreadline.so.8 (0x800ab5000) libz.so.6 => >>>>>>>>> /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 => >>>>>>>>> /usr/lib/libstdc++.so.6 (0x800f09000) libm.so.5 => >>>>>>>>> /lib/libm.so.5 (0x801219000) libgcc_s.so.1 => >>>>>>>>> /lib/libgcc_s.so.1 (0x80143a000) libthr.so.3 => >>>>>>>>> /lib/libthr.so.3 (0x801647000) libc.so.7 => >>>>>>>>> /lib/libc.so.7 (0x801869000) libncurses.so.8 => >>>>>>>>> /lib/libncurses.so.8 (0x801bbc000) >>>>>>>>> >>>>>> Hi Jeff, >>>>>> >>>>>> Can you post the relevant bits of build output where the >>>>>> error message shows up? If it happens during the configure >>>>>> phase of the port build, you'll also want to post the end >>>>>> of the config.log file found in the port work directory. >>>>>> >>>>>> Thank you, Greg >>>>>> >>>>>> >>>>>> I tried to run "make" several times, and previously some >>>>>> build depends were compiled. But now the "work" directory >>>>>> doesn't even get created, and the process stops >>>>>> immediately: >>>>>> >>>>>> /usr/ports/security/maia# make install clean ===> >>>>>> maia-1.0.3.r1575_3 depends on shared library: >>>>>> mysqlclient.18 - not found ===> Verifying install for >>>>>> mysqlclient.18 in /usr/ports/databases/mysql55-client ===> >>>>>> Returning to build of maia-1.0.3.r1575_3 Error: shared >>>>>> library "mysqlclient.18" does not exist *** [lib-depends] >>>>>> Error code 1 >>>>>> >>>>>> Stop in /basejail/usr/ports/security/maia. >>>>>> /usr/ports/security/maia# >>>>>> >>>>>> >> Ok, it looks like something is messed up with your ldconfig search >> path. To confirm that, please run this command and post results >> back here: >> >> ldconfig -r| grep mysql >> >> Thank you, Greg >>>> _______________________________________________ >>>> 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" >>> # ldconfig -r| grep mysql search directories: >>> /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/local/lib/dovecot:/usr/local/lib/mysql:/usr/local/lib/pth >>> >>> >>> > 218:-lmysqlclient.18 => /usr/local/lib/libmysqlclient.so.18 >>> 219:-lmysqlclient.18 => >>> /usr/local/lib/mysql/libmysqlclient.so.18 220:-lmysqlclient_r.18 >>> => /usr/local/lib/mysql/libmysqlclient_r.so.18 >>> >>> I installed both mysql client and server from ports. The versions >>> are: mysql-client-5.5.30 mysql-server-5.5.30 >>> >>> _______________________________________________ >>> 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" >> Thank you, Greg. As a result, databases/mysql55-client got rebuilt, >> so I lost the beginning of the log. The end is this: >> >> [100%] Built target mysqlshow Linking CXX executable mysqlslap cd >> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/client >> >> > && /usr/local/bin/cmake -E cmake_link_script >> CMakeFiles/mysqlslap.dir/link.txt --verbose=1 /usr/bin/c++ -O2 >> -pipe -fno-strict-aliasing -Wall -Wno-unused-parameter >> -fno-implicit-templates -fno-exceptions -fno-rtti -O2 -pipe >> -fno-strict-aliasing -DDBUG_OFF >> CMakeFiles/mysqlslap.dir/mysqlslap.c.o -o mysqlslap -pthread >> ../libmysql/libmysqlclient.a -pthread -lz -lm /usr/local/bin/cmake >> -E cmake_progress_report >> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles >> >> [100%] Built target mysqlslap /usr/local/bin/cmake -E >> cmake_progress_start >> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles >> >> > 0 >> ===> Installing for mysql-client-5.5.30 ===> Generating >> temporary packing list ===> Checking if databases/mysql55-client >> already installed ===> mysql-client-5.5.30 is already installed >> You may wish to ``make deinstall'' and install this port again by >> ``make reinstall'' to upgrade it properly. If you really wish to >> overwrite the old port of databases/mysql55-client without deleting >> it first, set the variable "FORCE_PKG_REGISTER" in your environment >> or the "make install" command line. *** [check-already-installed] >> Error code 1 >> >> Stop in /basejail/usr/ports/databases/mysql55-client. + echo '===> >> Returning to build of maia-1.0.3.r1575_3' ===> Returning to build >> of maia-1.0.3.r1575_3 + /sbin/ldconfig -32 -r + /usr/bin/grep -vwF >> -e /usr/local/lib/compat/pkg + /usr/bin/grep -qwE -e >> '-lmysqlclient\.18' + echo 'Error: shared library "mysqlclient.18" >> does not exist' Error: shared library "mysqlclient.18" does not >> exist + false /usr/ports/security/maia# > Try one more test for me - deselect the "RAR" option in the maia port, > run "make clean build" and let me know what happens. > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.13 (Darwin) > Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ > > iEYEARECAAYFAlE+VaAACgkQ0sRouByUApBczQCfRAln8yQ0nBHNF5Ks3TePgAhv > DdEAoIFeWmRzuN2soCxzkUHnMjDYhHtu > =W5RR > -----END PGP SIGNATURE----- > _______________________________________________ > 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" Ok, deselected RAR. Output: /usr/ports/security/maia# make clean build ===> Cleaning for maia-1.0.3.r1575_3 ===> Found saved configuration for maia-1.0.3.r1575_3 ===> Extracting for maia-1.0.3.r1575_3 => SHA256 Checksum OK for maia-1.0.3-r1575.tar.gz. ===> Patching for maia-1.0.3.r1575_3 ===> maia-1.0.3.r1575_3 depends on shared library: mysqlclient.18 - found ===> Configuring for maia-1.0.3.r1575_3 /usr/ports/security/maia# From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 22:36:58 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 209712FD for ; Mon, 11 Mar 2013 22:36:58 +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 E4FD37CE for ; Mon, 11 Mar 2013 22:36:57 +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 1UFBKu-000Ofh-Bn; Mon, 11 Mar 2013 18:36:57 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by Gregory-Larkins-iMac.local (Postfix) with ESMTPS id E57ED1B4C3F7; Mon, 11 Mar 2013 18:36:51 -0400 (EDT) Message-ID: <513E5C83.7040802@FreeBSD.org> Date: Mon, 11 Mar 2013 18:36:51 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130216 Thunderbird/17.0.3 MIME-Version: 1.0 To: Jeff Tipton References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> <513E31B8.2020509@mail.com> <513E4FB8.2060506@mail.com> <513E55A0.7030109@FreeBSD.org> <513E58D2.8000503@mail.com> In-Reply-To: <513E58D2.8000503@mail.com> X-Enigmail-Version: 1.5.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=-1.1 required=5.0 tests=AWL,BAYES_00, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Subject: Re: Error: shared library "mysqlclient.18" does not exist 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-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 11 Mar 2013 22:36:58 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 3/11/13 6:21 PM, Jeff Tipton wrote: > On 03/12/2013 00:07, Greg Larkin wrote: On 3/11/13 5:42 PM, Jeff > Tipton wrote: >>>> On 03/11/2013 21:34, Jeff Tipton wrote: >>>>> On 03/11/2013 21:00, Greg Larkin wrote: >>>> On 3/11/13 2:47 PM, Jeff Tipton wrote: >>>>>>>> On 03/11/2013 20:31, Greg Larkin wrote: On 3/11/13 >>>>>>>> 2:10 PM, Jeff Tipton wrote: >>>>>>>>>>> On 03/11/2013 20:00, Greg Larkin wrote: On >>>>>>>>>>> 3/11/13 12:59 PM, Jeff Tipton wrote: >>>>>>>>>>>>>> Hi, >>>>>>>>>>>>>> >>>>>>>>>>>>>> I'm trying to set up security/maia, and >>>>>>>>>>>>>> this is the error message I get: >>>>>>>>>>>>>> >>>>>>>>>>>>>> Error: shared library "mysqlclient.18" >>>>>>>>>>>>>> does not exist >>>>>>>>>>>>>> >>>>>>>>>>>>>> Of course, the library does exist :( >>>>>>>>>>>>>> >>>>>>>>>>>>>> # ls /usr/local/lib/mysql/ >>>>>>>>>>>>>> libmysqlclient.a libmysqlclient_r.a >>>>>>>>>>>>>> libmysqld.a libmysqlclient.so >>>>>>>>>>>>>> libmysqlclient_r.so libmysqlservices.a >>>>>>>>>>>>>> libmysqlclient.so.18 >>>>>>>>>>>>>> libmysqlclient_r.so.18 plugin >>>>>>>>>>>>>> >>>>>>>>>>>>>> I googled about this, and I found 3 >>>>>>>>>>>>>> things to try but none of that was >>>>>>>>>>>>>> helpful here: >>>>>>>>>>>>>> >>>>>>>>>>>>>> 1. make a link: ln -s >>>>>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>>>>> >>>>>>>>>>>>>> /usr/local/lib/libmysqlclient.so.18 >>>>>>>>>>>>>> >>>>>>>>>>>>>> 2. Check the root's umask and the >>>>>>>>>>>>>> directory permissions if they are >>>>>>>>>>>>>> correct, and they are: # umask 22 #ll >>>>>>>>>>>>>> /usr/local/lib |grep mysql lrwxr-xr-x 1 >>>>>>>>>>>>>> root wheel 41 Mar 11 16:25 >>>>>>>>>>>>>> libmysqlclient.so.18@ -> >>>>>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>>>>> >>>>>>>>>>>>>> drwxr-xr-x 3 root wheel 512 Mar 11 16:22 >>>>>>>>>>>>>> mysql/ >>>>>>>>>>>>>> >>>>>>>>>>>>>> # ll /usr/local/lib/mysql/ total 27276 >>>>>>>>>>>>>> -rw-r--r-- 1 root wheel 4844270 Mar 11 >>>>>>>>>>>>>> 16:17 libmysqlclient.a lrwxr-xr-x 1 root >>>>>>>>>>>>>> wheel 20 Mar 11 16:22 libmysqlclient.so@ >>>>>>>>>>>>>> -> libmysqlclient.so.18 -rwxr-xr-x 1 root >>>>>>>>>>>>>> wheel 3364688 Mar 11 16:22 >>>>>>>>>>>>>> libmysqlclient.so.18* lrwxr-xr-x 1 root >>>>>>>>>>>>>> wheel 16 Mar 11 16:22 libmysqlclient_r.a@ >>>>>>>>>>>>>> -> libmysqlclient.a lrwxr-xr-x 1 root >>>>>>>>>>>>>> wheel 17 Mar 11 16:22 >>>>>>>>>>>>>> libmysqlclient_r.so@ -> >>>>>>>>>>>>>> libmysqlclient.so lrwxr-xr-x 1 root >>>>>>>>>>>>>> wheel 17 Mar 11 16:22 >>>>>>>>>>>>>> libmysqlclient_r.so.18@ -> >>>>>>>>>>>>>> libmysqlclient.so -rw-r--r-- 1 root >>>>>>>>>>>>>> wheel 20019340 Mar 7 15:08 libmysqld.a >>>>>>>>>>>>>> -rw-r--r-- 1 root wheel 4598 Mar 11 >>>>>>>>>>>>>> 16:17 libmysqlservices.a drwxr-xr-x 2 >>>>>>>>>>>>>> root wheel 512 Mar 8 19:01 plugin/ >>>>>>>>>>>>>> >>>>>>>>>>>>>> 3. Update the ports tree. Ports tree is >>>>>>>>>>>>>> up to date. >>>>>>>>>>>>>> >>>>>>>>>>>>>> Could someone, please, suggest what I >>>>>>>>>>>>>> could try to solve this? >>>>>>>>>>>>>> >>>>>>>>>>>>>> Thanks, Jeff >>>>>>>>>>> Hi Jeff, >>>>>>>>>>> >>>>>>>>>>> At what point do you receive the error message? >>>>>>>>>>> Is it when you attempt to run the executable >>>>>>>>>>> built by the port? If so, please run the ldd >>>>>>>>>>> command against the executable and post the >>>>>>>>>>> output back here. >>>>>>>>>>> >>>>>>>>>>> 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 Thank you, Greg, for >>>>>>>>>>> the reply. I get the error message while >>>>>>>>>>> compiling security/maia port. mysql client >>>>>>>>>>> itself is working ok, I can connect to my >>>>>>>>>>> database server. >>>>>>>>>>> >>>>>>>>>>> ldd output: # ldd /usr/local/bin/mysql >>>>>>>>>>> /usr/local/bin/mysql: libreadline.so.8 => >>>>>>>>>>> /lib/libreadline.so.8 (0x800ab5000) libz.so.6 >>>>>>>>>>> => /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 >>>>>>>>>>> => /usr/lib/libstdc++.so.6 (0x800f09000) >>>>>>>>>>> libm.so.5 => /lib/libm.so.5 (0x801219000) >>>>>>>>>>> libgcc_s.so.1 => /lib/libgcc_s.so.1 >>>>>>>>>>> (0x80143a000) libthr.so.3 => /lib/libthr.so.3 >>>>>>>>>>> (0x801647000) libc.so.7 => /lib/libc.so.7 >>>>>>>>>>> (0x801869000) libncurses.so.8 => >>>>>>>>>>> /lib/libncurses.so.8 (0x801bbc000) >>>>>>>>>>> >>>>>>>> Hi Jeff, >>>>>>>> >>>>>>>> Can you post the relevant bits of build output where >>>>>>>> the error message shows up? If it happens during the >>>>>>>> configure phase of the port build, you'll also want >>>>>>>> to post the end of the config.log file found in the >>>>>>>> port work directory. >>>>>>>> >>>>>>>> Thank you, Greg >>>>>>>> >>>>>>>> >>>>>>>> I tried to run "make" several times, and previously >>>>>>>> some build depends were compiled. But now the "work" >>>>>>>> directory doesn't even get created, and the process >>>>>>>> stops immediately: >>>>>>>> >>>>>>>> /usr/ports/security/maia# make install clean ===> >>>>>>>> maia-1.0.3.r1575_3 depends on shared library: >>>>>>>> mysqlclient.18 - not found ===> Verifying install >>>>>>>> for mysqlclient.18 in >>>>>>>> /usr/ports/databases/mysql55-client ===> Returning to >>>>>>>> build of maia-1.0.3.r1575_3 Error: shared library >>>>>>>> "mysqlclient.18" does not exist *** [lib-depends] >>>>>>>> Error code 1 >>>>>>>> >>>>>>>> Stop in /basejail/usr/ports/security/maia. >>>>>>>> /usr/ports/security/maia# >>>>>>>> >>>>>>>> >>>> Ok, it looks like something is messed up with your ldconfig >>>> search path. To confirm that, please run this command and >>>> post results back here: >>>> >>>> ldconfig -r| grep mysql >>>> >>>> Thank you, Greg >>>>>> _______________________________________________ >>>>>> 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" >>>>> # ldconfig -r| grep mysql search directories: >>>>> /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/local/lib/dovecot:/usr/local/lib/mysql:/usr/local/lib/pth >>>>> >>>>> >>>>> >>>>> > >>>>> 218:-lmysqlclient.18 => /usr/local/lib/libmysqlclient.so.18 >>>>> 219:-lmysqlclient.18 => >>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>> 220:-lmysqlclient_r.18 => >>>>> /usr/local/lib/mysql/libmysqlclient_r.so.18 >>>>> >>>>> I installed both mysql client and server from ports. The >>>>> versions are: mysql-client-5.5.30 mysql-server-5.5.30 >>>>> >>>>> _______________________________________________ >>>>> 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" >>>> Thank you, Greg. As a result, databases/mysql55-client got >>>> rebuilt, so I lost the beginning of the log. The end is >>>> this: >>>> >>>> [100%] Built target mysqlshow Linking CXX executable >>>> mysqlslap cd >>>> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/client >>>> >>>> >>>> > >>>> && /usr/local/bin/cmake -E cmake_link_script >>>> CMakeFiles/mysqlslap.dir/link.txt --verbose=1 /usr/bin/c++ >>>> -O2 -pipe -fno-strict-aliasing -Wall -Wno-unused-parameter >>>> -fno-implicit-templates -fno-exceptions -fno-rtti -O2 -pipe >>>> -fno-strict-aliasing -DDBUG_OFF >>>> CMakeFiles/mysqlslap.dir/mysqlslap.c.o -o mysqlslap >>>> -pthread ../libmysql/libmysqlclient.a -pthread -lz -lm >>>> /usr/local/bin/cmake -E cmake_progress_report >>>> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles >>>> >>>> >>>> >>>> [100%] Built target mysqlslap /usr/local/bin/cmake -E >>>> cmake_progress_start >>>> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles >>>> >>>> >>>> > >>>> 0 >>>> ===> Installing for mysql-client-5.5.30 ===> Generating >>>> temporary packing list ===> Checking if >>>> databases/mysql55-client already installed ===> >>>> mysql-client-5.5.30 is already installed You may wish to >>>> ``make deinstall'' and install this port again by ``make >>>> reinstall'' to upgrade it properly. If you really wish to >>>> overwrite the old port of databases/mysql55-client without >>>> deleting it first, set the variable "FORCE_PKG_REGISTER" in >>>> your environment or the "make install" command line. *** >>>> [check-already-installed] Error code 1 >>>> >>>> Stop in /basejail/usr/ports/databases/mysql55-client. + echo >>>> '===> Returning to build of maia-1.0.3.r1575_3' ===> >>>> Returning to build of maia-1.0.3.r1575_3 + /sbin/ldconfig -32 >>>> -r + /usr/bin/grep -vwF -e /usr/local/lib/compat/pkg + >>>> /usr/bin/grep -qwE -e '-lmysqlclient\.18' + echo 'Error: >>>> shared library "mysqlclient.18" does not exist' Error: shared >>>> library "mysqlclient.18" does not exist + false >>>> /usr/ports/security/maia# > Try one more test for me - deselect the "RAR" option in the maia > port, run "make clean build" and let me know what happens. >> _______________________________________________ >> 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" > Ok, deselected RAR. Output: > > /usr/ports/security/maia# make clean build ===> Cleaning for > maia-1.0.3.r1575_3 ===> Found saved configuration for > maia-1.0.3.r1575_3 ===> Extracting for maia-1.0.3.r1575_3 => > SHA256 Checksum OK for maia-1.0.3-r1575.tar.gz. ===> Patching for > maia-1.0.3.r1575_3 ===> maia-1.0.3.r1575_3 depends on shared > library: mysqlclient.18 - found ===> Configuring for > maia-1.0.3.r1575_3 /usr/ports/security/maia# > Ok, that means you can go and run "make install" if you don't actually need the RAR option. If you do need that option, then I need to look into what the port is trying to do and then file a PR to fix it. Regards, 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.13 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlE+XIIACgkQ0sRouByUApBWswCfQo3THzdOo0APka+7fcANmYS2 5DYAni4eCxa4D/+HDlF9TX7zH9bIng0M =94VX -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 22:51:49 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9EA24673 for ; Mon, 11 Mar 2013 22:51:49 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mout.gmx.net (mout.gmx.net [74.208.4.201]) by mx1.freebsd.org (Postfix) with ESMTP id 7AABE85D for ; Mon, 11 Mar 2013 22:51:49 +0000 (UTC) Received: from mailout-us.mail.com ([172.19.198.49]) by mrigmx.server.lan (mrigmxus001) with ESMTP (Nemesis) id 0LwrPA-1Uqe0y2ZdA-016SbJ for ; Mon, 11 Mar 2013 23:51:48 +0100 Received: (qmail invoked by alias); 11 Mar 2013 22:51:47 -0000 Received: from unknown (EHLO dc.sinhro.lv) [78.84.97.244] by mail.gmx.com (mp-us009) with SMTP; 11 Mar 2013 18:51:47 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX18XZBBi/j0XSD+neoCeJP8ONeNdw/HT7nLoyfgu4k wWBeC194m1vgDo Message-ID: <513E6001.9040206@mail.com> Date: Tue, 12 Mar 2013 00:51:45 +0200 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Error: shared library "mysqlclient.18" does not exist References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> <513E31B8.2020509@mail.com> <513E4FB8.2060506@mail.com> <513E55A0.7030109@FreeBSD.org> <513E58D2.8000503@mail.com> <513E5C83.7040802@FreeBSD.org> In-Reply-To: <513E5C83.7040802@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 22:51:49 -0000 On 03/12/2013 00:36, Greg Larkin wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 3/11/13 6:21 PM, Jeff Tipton wrote: >> On 03/12/2013 00:07, Greg Larkin wrote: On 3/11/13 5:42 PM, Jeff >> Tipton wrote: >>>>> On 03/11/2013 21:34, Jeff Tipton wrote: >>>>>> On 03/11/2013 21:00, Greg Larkin wrote: >>>>> On 3/11/13 2:47 PM, Jeff Tipton wrote: >>>>>>>>> On 03/11/2013 20:31, Greg Larkin wrote: On 3/11/13 >>>>>>>>> 2:10 PM, Jeff Tipton wrote: >>>>>>>>>>>> On 03/11/2013 20:00, Greg Larkin wrote: On >>>>>>>>>>>> 3/11/13 12:59 PM, Jeff Tipton wrote: >>>>>>>>>>>>>>> Hi, >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> I'm trying to set up security/maia, and >>>>>>>>>>>>>>> this is the error message I get: >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> Error: shared library "mysqlclient.18" >>>>>>>>>>>>>>> does not exist >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> Of course, the library does exist :( >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> # ls /usr/local/lib/mysql/ >>>>>>>>>>>>>>> libmysqlclient.a libmysqlclient_r.a >>>>>>>>>>>>>>> libmysqld.a libmysqlclient.so >>>>>>>>>>>>>>> libmysqlclient_r.so libmysqlservices.a >>>>>>>>>>>>>>> libmysqlclient.so.18 >>>>>>>>>>>>>>> libmysqlclient_r.so.18 plugin >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> I googled about this, and I found 3 >>>>>>>>>>>>>>> things to try but none of that was >>>>>>>>>>>>>>> helpful here: >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> 1. make a link: ln -s >>>>>>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> > /usr/local/lib/libmysqlclient.so.18 >>>>>>>>>>>>>>> 2. Check the root's umask and the >>>>>>>>>>>>>>> directory permissions if they are >>>>>>>>>>>>>>> correct, and they are: # umask 22 #ll >>>>>>>>>>>>>>> /usr/local/lib |grep mysql lrwxr-xr-x 1 >>>>>>>>>>>>>>> root wheel 41 Mar 11 16:25 >>>>>>>>>>>>>>> libmysqlclient.so.18@ -> >>>>>>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> > drwxr-xr-x 3 root wheel 512 Mar 11 16:22 >>>>>>>>>>>>>>> mysql/ >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> # ll /usr/local/lib/mysql/ total 27276 >>>>>>>>>>>>>>> -rw-r--r-- 1 root wheel 4844270 Mar 11 >>>>>>>>>>>>>>> 16:17 libmysqlclient.a lrwxr-xr-x 1 root >>>>>>>>>>>>>>> wheel 20 Mar 11 16:22 libmysqlclient.so@ >>>>>>>>>>>>>>> -> libmysqlclient.so.18 -rwxr-xr-x 1 root >>>>>>>>>>>>>>> wheel 3364688 Mar 11 16:22 >>>>>>>>>>>>>>> libmysqlclient.so.18* lrwxr-xr-x 1 root >>>>>>>>>>>>>>> wheel 16 Mar 11 16:22 libmysqlclient_r.a@ >>>>>>>>>>>>>>> -> libmysqlclient.a lrwxr-xr-x 1 root >>>>>>>>>>>>>>> wheel 17 Mar 11 16:22 >>>>>>>>>>>>>>> libmysqlclient_r.so@ -> >>>>>>>>>>>>>>> libmysqlclient.so lrwxr-xr-x 1 root >>>>>>>>>>>>>>> wheel 17 Mar 11 16:22 >>>>>>>>>>>>>>> libmysqlclient_r.so.18@ -> >>>>>>>>>>>>>>> libmysqlclient.so -rw-r--r-- 1 root >>>>>>>>>>>>>>> wheel 20019340 Mar 7 15:08 libmysqld.a >>>>>>>>>>>>>>> -rw-r--r-- 1 root wheel 4598 Mar 11 >>>>>>>>>>>>>>> 16:17 libmysqlservices.a drwxr-xr-x 2 >>>>>>>>>>>>>>> root wheel 512 Mar 8 19:01 plugin/ >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> 3. Update the ports tree. Ports tree is >>>>>>>>>>>>>>> up to date. >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> Could someone, please, suggest what I >>>>>>>>>>>>>>> could try to solve this? >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> Thanks, Jeff >>>>>>>>>>>> Hi Jeff, >>>>>>>>>>>> >>>>>>>>>>>> At what point do you receive the error message? >>>>>>>>>>>> Is it when you attempt to run the executable >>>>>>>>>>>> built by the port? If so, please run the ldd >>>>>>>>>>>> command against the executable and post the >>>>>>>>>>>> output back here. >>>>>>>>>>>> >>>>>>>>>>>> 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 Thank you, Greg, for >>>>>>>>>>>> the reply. I get the error message while >>>>>>>>>>>> compiling security/maia port. mysql client >>>>>>>>>>>> itself is working ok, I can connect to my >>>>>>>>>>>> database server. >>>>>>>>>>>> >>>>>>>>>>>> ldd output: # ldd /usr/local/bin/mysql >>>>>>>>>>>> /usr/local/bin/mysql: libreadline.so.8 => >>>>>>>>>>>> /lib/libreadline.so.8 (0x800ab5000) libz.so.6 >>>>>>>>>>>> => /lib/libz.so.6 (0x800cf5000) libstdc++.so.6 >>>>>>>>>>>> => /usr/lib/libstdc++.so.6 (0x800f09000) >>>>>>>>>>>> libm.so.5 => /lib/libm.so.5 (0x801219000) >>>>>>>>>>>> libgcc_s.so.1 => /lib/libgcc_s.so.1 >>>>>>>>>>>> (0x80143a000) libthr.so.3 => /lib/libthr.so.3 >>>>>>>>>>>> (0x801647000) libc.so.7 => /lib/libc.so.7 >>>>>>>>>>>> (0x801869000) libncurses.so.8 => >>>>>>>>>>>> /lib/libncurses.so.8 (0x801bbc000) >>>>>>>>>>>> >>>>>>>>> Hi Jeff, >>>>>>>>> >>>>>>>>> Can you post the relevant bits of build output where >>>>>>>>> the error message shows up? If it happens during the >>>>>>>>> configure phase of the port build, you'll also want >>>>>>>>> to post the end of the config.log file found in the >>>>>>>>> port work directory. >>>>>>>>> >>>>>>>>> Thank you, Greg >>>>>>>>> >>>>>>>>> >>>>>>>>> I tried to run "make" several times, and previously >>>>>>>>> some build depends were compiled. But now the "work" >>>>>>>>> directory doesn't even get created, and the process >>>>>>>>> stops immediately: >>>>>>>>> >>>>>>>>> /usr/ports/security/maia# make install clean ===> >>>>>>>>> maia-1.0.3.r1575_3 depends on shared library: >>>>>>>>> mysqlclient.18 - not found ===> Verifying install >>>>>>>>> for mysqlclient.18 in >>>>>>>>> /usr/ports/databases/mysql55-client ===> Returning to >>>>>>>>> build of maia-1.0.3.r1575_3 Error: shared library >>>>>>>>> "mysqlclient.18" does not exist *** [lib-depends] >>>>>>>>> Error code 1 >>>>>>>>> >>>>>>>>> Stop in /basejail/usr/ports/security/maia. >>>>>>>>> /usr/ports/security/maia# >>>>>>>>> >>>>>>>>> >>>>> Ok, it looks like something is messed up with your ldconfig >>>>> search path. To confirm that, please run this command and >>>>> post results back here: >>>>> >>>>> ldconfig -r| grep mysql >>>>> >>>>> Thank you, Greg >>>>>>> _______________________________________________ >>>>>>> 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" >>>>>> # ldconfig -r| grep mysql search directories: >>>>>> /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/local/lib/dovecot:/usr/local/lib/mysql:/usr/local/lib/pth >>>>>> >>>>>> >>>>>> >>>>>> > 218:-lmysqlclient.18 => /usr/local/lib/libmysqlclient.so.18 >>>>>> 219:-lmysqlclient.18 => >>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>> 220:-lmysqlclient_r.18 => >>>>>> /usr/local/lib/mysql/libmysqlclient_r.so.18 >>>>>> >>>>>> I installed both mysql client and server from ports. The >>>>>> versions are: mysql-client-5.5.30 mysql-server-5.5.30 >>>>>> >>>>>> _______________________________________________ >>>>>> 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" >>>>> Thank you, Greg. As a result, databases/mysql55-client got >>>>> rebuilt, so I lost the beginning of the log. The end is >>>>> this: >>>>> >>>>> [100%] Built target mysqlshow Linking CXX executable >>>>> mysqlslap cd >>>>> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/client >>>>> >>>>> >>>>> > && /usr/local/bin/cmake -E cmake_link_script >>>>> CMakeFiles/mysqlslap.dir/link.txt --verbose=1 /usr/bin/c++ >>>>> -O2 -pipe -fno-strict-aliasing -Wall -Wno-unused-parameter >>>>> -fno-implicit-templates -fno-exceptions -fno-rtti -O2 -pipe >>>>> -fno-strict-aliasing -DDBUG_OFF >>>>> CMakeFiles/mysqlslap.dir/mysqlslap.c.o -o mysqlslap >>>>> -pthread ../libmysql/libmysqlclient.a -pthread -lz -lm >>>>> /usr/local/bin/cmake -E cmake_progress_report >>>>> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles >>>>> >>>>> >>>>> >>>>> > [100%] Built target mysqlslap /usr/local/bin/cmake -E >>>>> cmake_progress_start >>>>> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles >>>>> >>>>> >>>>> > 0 >>>>> ===> Installing for mysql-client-5.5.30 ===> Generating >>>>> temporary packing list ===> Checking if >>>>> databases/mysql55-client already installed ===> >>>>> mysql-client-5.5.30 is already installed You may wish to >>>>> ``make deinstall'' and install this port again by ``make >>>>> reinstall'' to upgrade it properly. If you really wish to >>>>> overwrite the old port of databases/mysql55-client without >>>>> deleting it first, set the variable "FORCE_PKG_REGISTER" in >>>>> your environment or the "make install" command line. *** >>>>> [check-already-installed] Error code 1 >>>>> >>>>> Stop in /basejail/usr/ports/databases/mysql55-client. + echo >>>>> '===> Returning to build of maia-1.0.3.r1575_3' ===> >>>>> Returning to build of maia-1.0.3.r1575_3 + /sbin/ldconfig -32 >>>>> -r + /usr/bin/grep -vwF -e /usr/local/lib/compat/pkg + >>>>> /usr/bin/grep -qwE -e '-lmysqlclient\.18' + echo 'Error: >>>>> shared library "mysqlclient.18" does not exist' Error: shared >>>>> library "mysqlclient.18" does not exist + false >>>>> /usr/ports/security/maia# >> Try one more test for me - deselect the "RAR" option in the maia >> port, run "make clean build" and let me know what happens. >>> _______________________________________________ >>> 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" >> Ok, deselected RAR. Output: >> >> /usr/ports/security/maia# make clean build ===> Cleaning for >> maia-1.0.3.r1575_3 ===> Found saved configuration for >> maia-1.0.3.r1575_3 ===> Extracting for maia-1.0.3.r1575_3 => >> SHA256 Checksum OK for maia-1.0.3-r1575.tar.gz. ===> Patching for >> maia-1.0.3.r1575_3 ===> maia-1.0.3.r1575_3 depends on shared >> library: mysqlclient.18 - found ===> Configuring for >> maia-1.0.3.r1575_3 /usr/ports/security/maia# >> > Ok, that means you can go and run "make install" if you don't actually > need the RAR option. If you do need that option, then I need to look > into what the port is trying to do and then file a PR to fix it. > > Regards, > 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.13 (Darwin) > Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ > > iEYEARECAAYFAlE+XIIACgkQ0sRouByUApBWswCfQo3THzdOo0APka+7fcANmYS2 > 5DYAni4eCxa4D/+HDlF9TX7zH9bIng0M > =94VX > -----END PGP SIGNATURE----- > _______________________________________________ > 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" Yes, it starts building. Thank you! I'm not sure, though, what exactly I am losing. I tought RAR is for scanning RARed attatchments (which is important), but then there's also UNRAR which I left selected. From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 23:02:40 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B13F893A for ; Mon, 11 Mar 2013 23:02:40 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from oproxy7-pub.bluehost.com (oproxy7-pub.bluehost.com [67.222.55.9]) by mx1.freebsd.org (Postfix) with SMTP id 85D6D8C6 for ; Mon, 11 Mar 2013 23:02:40 +0000 (UTC) Received: (qmail 12034 invoked by uid 0); 11 Mar 2013 23:02:17 -0000 Received: from unknown (HELO box543.bluehost.com) (74.220.219.143) by oproxy7.bluehost.com with SMTP; 11 Mar 2013 23:02:17 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=apotheon.com; s=default; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID:Subject:To:From:Date; bh=dXXtY/GxMSmtBY6rEZqeUH0kKMrk7PeSPQunjkK/vL4=; b=Vy1IbbL7pDQ3hoCJXJH478B5WL3NKOYbwCPLEk+oLdMIxk06QtsLepzheC+AwqUCciEbJ9Iz7EAyiztIe526C0OkE20dDOuw0iZljGUiQqLIQNj5XLGDPlXM1pm4Rh17; Received: from [24.9.112.144] (port=61500 helo=localhost) by box543.bluehost.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.80) (envelope-from ) id 1UFBjV-0004sB-LG for freebsd-questions@freebsd.org; Mon, 11 Mar 2013 17:02:17 -0600 Date: Mon, 11 Mar 2013 17:02:18 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Subject: Re: day light saving time happened today Message-ID: <20130311230218.GA2234@glaze.hydra> References: <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> <513D369C.8080907@a1poweruser.com> <20130310215632.3c0344f2@europa> <513D3EEB.3020201@a1poweruser.com> <57B1D1B8-5DBC-41C9-AB76-55687AB45359@wolfhut.org> <513DD2E9.2040700@a1poweruser.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <513DD2E9.2040700@a1poweruser.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Identified-User: {2737:box543.bluehost.com:apotheon:apotheon.com} {sentby:smtp auth 24.9.112.144 authed with perrin@apotheon.com} X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 23:02:40 -0000 On Mon, Mar 11, 2013 at 08:49:45AM -0400, Fbsd8 wrote: > > > Ran this little test. > Last night before turning off my system I used the date command to set > the date to 3/9 with the correct DST. This morning when I turned on my > system the time had advanced by one hour. So this proves that the time > zone setting does have DST in it and every thing worked as expected. > > Even though the system is now on DST the date command still displays > EDT. Does the date command ever show DST? As noted by others, "EDT" is "Eastern Daylight Time", which is what should be showing during DST in the Eastern (US) time zone. When it's not DST, what should be showing in the Eastern time zone is "EST" instead. From what you said, though, it seems you had set it to "EDT" when it was not yet daylight saving time. I wonder if this might be the cause of the actual problem. -- Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ] From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 23:16:33 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0977AF05 for ; Mon, 11 Mar 2013 23:16:33 +0000 (UTC) (envelope-from fortezza@mechanicalism.net) Received: from mail.mechanicalism.net (alderaan.mechanicalism.net [69.56.179.130]) by mx1.freebsd.org (Postfix) with ESMTP id E7BE8957 for ; Mon, 11 Mar 2013 23:16:32 +0000 (UTC) Received: by mail.mechanicalism.net (Postfix, from userid 1001) id 577B51C081E; Mon, 11 Mar 2013 18:07:46 -0500 (CDT) Date: Mon, 11 Mar 2013 18:07:46 -0500 From: Jason Fortezzo To: Erik N?rgaard Subject: Re: What is your favorite board for a micro system? Message-ID: <20130311230746.GA20819@alderaan.mechanicalism.net> References: <513A79F7.8030203@locolomo.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <513A79F7.8030203@locolomo.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 23:16:33 -0000 On Sat, Mar 09, 2013 at 12:53:27AM +0100, Erik N?rgaard wrote: > What is your favorite mini/micro/nano/pico-itx platform for home projects? > > I currently run a home server on an Intel mini-itx board but was > looking around for something fun to play with with the following > specs: > > - mini-itx or smaller, low profile > - fanless > - low power 12V external PSU > - 1 LAN, preferably 2 > - 2 USB2/3 > - Flash bootable, but with option for hdd boot > - GPIO would be fun > - hdmi out would be nice I'm using the Intel DQ77KB Thin Mini ITX board and it almost meets all of your criteria. The heatsink has a fan but it is silent (even after 12 hours of Prime95). This board has AMT so when used with a vPro capable CPU (I'm using an i7-3770S), you get all sorts of nifty OOB features. I'm using ESXi 5.1 right now but I'm pretty sure it would boot FreeBSD fine. -- Jason Fortezzo fortezza@mechanicalism.net From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 23:42:01 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 77DEF3F3 for ; Mon, 11 Mar 2013 23:42:01 +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 3A3B0A1F for ; Mon, 11 Mar 2013 23:42:00 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UFCMG-0000LZ-6u for freebsd-questions@freebsd.org; Tue, 12 Mar 2013 00:42:20 +0100 Received: from cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com ([86.21.186.149]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Mar 2013 00:42:20 +0100 Received: from walterhurry by cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Mar 2013 00:42:20 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Walter Hurry Subject: Pan-0.139 won't compile Date: Mon, 11 Mar 2013 23:41:41 +0000 (UTC) Lines: 23 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com User-Agent: Pan/0.135 (Tomorrow I'll Wake Up and Scald Myself with Tea; GIT 30dc37b master) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 23:42:01 -0000 Trying to upgrade /usr/ports/news/pan I get this: ___________________________________________________________________ mime-utils.cc: In function 'char* pan::__g_mime_iconv_strndup(void*, const char*, size_t, const char*)': mime-utils.cc:80: error: invalid conversion from 'char**' to 'const char**' mime-utils.cc:80: error: initializing argument 2 of 'size_t libiconv (void*, const char**, size_t*, char**, size_t*)' gmake[3]: *** [mime-utils.o] Error 1 gmake[3]: Leaving directory `/usr/ports/news/pan/work/pan-0.139/pan/ usenet-utils' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/news/pan/work/pan-0.139/pan' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/news/pan/work/pan-0.139' gmake: *** [all] Error 2 *** [do-build] Error code 1 Stop in /usr/ports/news/pan. *** [build] Error code 1 ___________________________________________________________________ What should I do next? From owner-freebsd-questions@FreeBSD.ORG Mon Mar 11 23:42:07 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E78E340B for ; Mon, 11 Mar 2013 23:42:07 +0000 (UTC) (envelope-from carlj@peak.org) Received: from mail-ie0-x243.google.com (mail-ie0-x243.google.com [IPv6:2607:f8b0:4001:c03::243]) by mx1.freebsd.org (Postfix) with ESMTP id B13F3A22 for ; Mon, 11 Mar 2013 23:42:07 +0000 (UTC) Received: by mail-ie0-f195.google.com with SMTP id c11so2154756ieb.10 for ; Mon, 11 Mar 2013 16:42:07 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-authentication-warning:from:to:subject:references :mail-followup-to:date:in-reply-to:message-id:user-agent :mime-version:content-type:x-gm-message-state; bh=btKxgwPj7UR+PE/eNO/UzSGwYH2I+1zOrnDR2NLUI3o=; b=oJAbjAWk3RU3XfQTNrWfKUg2WImTDZUdicb0n/d16de0MbRsgNQ3yCXIDzh6CbMbbx U7nG3CsVc/hoJNqD3/dzA6n7l75ETHZtbaSZrOSZat4llZNgMk50HBV1I4rfMWt9iN9s vTmnhLWT1rYnVYpWsjHs9vWK4gnUSXe2HK7bsBv3loJRYJdDvhziKm7KpJoACb8sM5+4 Fpft6lOWI2n3gE+0hR0T4tk4Pa08yXDEBJmu2OGTht7qLTZyLhn5DjyjwIzKs87nCvIR h0G87GvSbV5QB7Wbaw6oAaNfaJQ9H+YBc6NNS6edmL94LAuFvOZiir2Szayf/a1yqM85 7P0w== X-Received: by 10.42.50.71 with SMTP id z7mr10247012icf.39.1363045327365; Mon, 11 Mar 2013 16:42:07 -0700 (PDT) Received: from bonsai.localnet ([207.55.107.62]) by mx.google.com with ESMTPS id vb15sm17184308igb.9.2013.03.11.16.42.05 (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 11 Mar 2013 16:42:06 -0700 (PDT) Received: from oak.localnet (oak.localnet [192.168.193.34]) by bonsai.localnet (Postfix) with ESMTP id 5F9DE3D5C1 for ; Mon, 11 Mar 2013 16:42:04 -0700 (PDT) Received: from oak.localnet (localhost.localnet [127.0.0.1]) by oak.localnet (Postfix) with ESMTP id 24298D4C2 for ; Mon, 11 Mar 2013 16:42:04 -0700 (PDT) Received: (from carlj@localhost) by oak.localnet (8.14.5/8.14.5/Submit) id r2BNg3vI070338; Mon, 11 Mar 2013 16:42:03 -0700 (PDT) (envelope-from carlj@peak.org) X-Authentication-Warning: oak.localnet: carlj set sender to carlj@peak.org using -f From: Carl Johnson To: freebsd-questions@freebsd.org Subject: Re: FreeBSD 9 and Windows XP References: <20130309120741.DED57767@ms5.mc.surewest.net> <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> <87a9q9udkd.fsf@oak.localnet> Mail-Followup-To: freebsd-questions@freebsd.org Date: Mon, 11 Mar 2013 16:42:03 -0700 In-Reply-To: (Warren Block's message of "Mon, 11 Mar 2013 12:25:37 -0600 (MDT)") Message-ID: <87620xtsfo.fsf@oak.localnet> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Gm-Message-State: ALoCoQlaaNsxnx3uUfsNcBnu6nnZFcLKmVoC/9qQ1oi1vGGveBzQevWmjUlqhoRRbU9tt+wqn3q0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 23:42:08 -0000 Warren Block writes: > On Mon, 11 Mar 2013, Carl Johnson wrote: > >> It is my understanding that FreeBSD doesn't allow using part of a disk, >> but grabs the entire disk. That means that VirtualBox can't use >> partitions on a disk that any other partitions are being used by >> anything else, including FreeBSD itself. Am I wrong about this? I use >> VirtualBox using vdmk for an entire disk, but I have never been able to >> share with anything else. > > It's very hard to tell what situation is being described here. If the > VMDK is a pointer to a whole physical disk, that would probably make > the disk only usable by one VM. It should be possible to make the > VMDK point to just one partition on the disk. Then other VMs or a > physical machine could use those other partitions while the FreeBSD VM > was running. I was thinking of the case where I tried to allow direct access by a virtual machine to a slice on the same disk that I was running FreeBSD off of. I just looked further into that and discovered that it is possible, but not allowed by geom by default. It can be done by setting 'sysctl kern.geom.debugflags=0x10'. I am sure that you are aware of the dangers, but for anybody else reading this check out the warning in the geom(4) manpage. They refer to this option as 'allow foot shooting' for a reason. -- Carl Johnson carlj@peak.org From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 00:45:22 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0EB08EB2 for ; Tue, 12 Mar 2013 00:45:22 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 98AD5D0B for ; Tue, 12 Mar 2013 00:45:21 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Mon, 11 Mar 2013 17:45:18 -0700 Message-ID: <513E7A9B.9050705@a1poweruser.com> Date: Mon, 11 Mar 2013 20:45:15 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: FreeBSD Subject: Re: day light saving time happened today References: <513CC4C4.8080405@a1poweruser.com> <513D0026.6030109@a1poweruser.com> <5C91A731-BF1E-4FD2-AB26-5348F0685967@wolfhut.org> <513D0FBA.1070303@a1poweruser.com> <44fw02lt0d.fsf@lowell-desk.lan> <513D369C.8080907@a1poweruser.com> <20130310215632.3c0344f2@europa> <513D3EEB.3020201@a1poweruser.com> <57B1D1B8-5DBC-41C9-AB76-55687AB45359@wolfhut.org> <513DD2E9.2040700@a1poweruser.com> <513DE7AF.6090509@gmail.com> <20130311103712.79287cb9@scorpio> In-Reply-To: <20130311103712.79287cb9@scorpio> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 12 Mar 2013 00:45:18.0695 (UTC) FILETIME=[DE8E6F70:01CE1EBA] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 00:45:22 -0000 Jerry wrote: > On Mon, 11 Mar 2013 09:18:23 -0500 > Noel articulated: > >> On 3/11/2013 7:49 AM, Fbsd8 wrote: >>> Even though the system is now on DST the date command still >>> displays EDT. Does the date command ever show DST? >> EDT = Eastern Daylight Time timezone >> not to be confused with >> EST = Eastern Standard Time timezone >> not to be confused with >> DST = daylight savings time, not a timezone, never shown on a >> computer. >> >> Your system correctly switched to daylight savings time, as verified >> by the EDT timezone indicator. Most likely the clock was already an >> hour slow before the time change. > > Just wondering, but do you have NTP running to keep the time accurate? > no but I do run ntpd -q a few times a year to keep the tine accurate. From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 01:17:21 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 61E14201 for ; Tue, 12 Mar 2013 01:17:21 +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 056CAE00 for ; Tue, 12 Mar 2013 01:17:20 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.6/8.14.6) with ESMTP id r2C1HKwa053347; Mon, 11 Mar 2013 19:17:20 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.6/8.14.6/Submit) with ESMTP id r2C1HJdR053344; Mon, 11 Mar 2013 19:17:20 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Mon, 11 Mar 2013 19:17:19 -0600 (MDT) From: Warren Block To: Carl Johnson Subject: Re: FreeBSD 9 and Windows XP In-Reply-To: <87620xtsfo.fsf@oak.localnet> Message-ID: References: <20130309120741.DED57767@ms5.mc.surewest.net> <20130311135110.9da99d99cfe968f2d904acd0@yahoo.es> <87a9q9udkd.fsf@oak.localnet> <87620xtsfo.fsf@oak.localnet> 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]); Mon, 11 Mar 2013 19:17:20 -0600 (MDT) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 01:17:21 -0000 On Mon, 11 Mar 2013, Carl Johnson wrote: > Warren Block writes: > >> On Mon, 11 Mar 2013, Carl Johnson wrote: >> >>> It is my understanding that FreeBSD doesn't allow using part of a disk, >>> but grabs the entire disk. That means that VirtualBox can't use >>> partitions on a disk that any other partitions are being used by >>> anything else, including FreeBSD itself. Am I wrong about this? I use >>> VirtualBox using vdmk for an entire disk, but I have never been able to >>> share with anything else. >> >> It's very hard to tell what situation is being described here. If the >> VMDK is a pointer to a whole physical disk, that would probably make >> the disk only usable by one VM. It should be possible to make the >> VMDK point to just one partition on the disk. Then other VMs or a >> physical machine could use those other partitions while the FreeBSD VM >> was running. > > I was thinking of the case where I tried to allow direct access by a > virtual machine to a slice on the same disk that I was running FreeBSD > off of. I just looked further into that and discovered that it is > possible, but not allowed by geom by default. It can be done by setting > 'sysctl kern.geom.debugflags=0x10'. I am sure that you are aware of the > dangers, but for anybody else reading this check out the warning in the > geom(4) manpage. They refer to this option as 'allow foot shooting' for > a reason. That's kind of what I was saying. If you can get the VMDK to refer to just the one slice/partition that the VM needs, it won't lock the whole disk. For example, ada0s2a rather than ada0s2. Of course, it would be bad to share the same partition between more than one VM or physical machine at the same time unless it is mounted read-only by all of them. From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 05:49:16 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6EAC6749 for ; Tue, 12 Mar 2013 05:49:16 +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 E799092E for ; Tue, 12 Mar 2013 05:49:15 +0000 (UTC) Received: from [93.104.25.109] (helo=localhost.my.domain) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1UFI5J-0007Ly-KC for freebsd-questions@freebsd.org; Tue, 12 Mar 2013 06:49:13 +0100 Received: from localhost.my.domain (localhost [127.0.0.1]) by localhost.my.domain (8.14.4/8.14.3) with ESMTP id r2C5nCRr002310 for ; Tue, 12 Mar 2013 06:49:12 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.14.4/8.14.3/Submit) id r2C5nCko002309 for freebsd-questions@freebsd.org; Tue, 12 Mar 2013 06:49:12 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Tue, 12 Mar 2013 06:49:11 +0100 From: Matthias Apitz To: freebsd-questions@freebsd.org Subject: Re: Problems Printing Message-ID: <20130312054911.GA2298@tinyCurrent> References: <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <513CDE73.4010505@gmail.com> X-Operating-System: FreeBSD 9.0-CURRENT r214444 (i386) User-Agent: Mutt/1.5.21 (2010-09-15) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 93.104.25.109 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 05:49:16 -0000 El día Sunday, March 10, 2013 a las 02:26:43PM -0500, Joseph A. Nagy, Jr escribió: > On 03/05/13 23:47, Matthias Apitz wrote: > > El día Tuesday, March 05, 2013 a las 03:42:15PM -0600, Joseph A. Nagy, Jr escribió: > > > >>> then the test is > >>> > >>> $ date | lpr -PPIXMA > >>> > >>> matthias > >>> > >> > >> I figured that out, sent the test, it queud the job and stuck there. > >> When I get home I'm going to clear the cups logs and start over again. > > > > Does the CUPS' test page works from the web interface? If not, try to > > configure the printer as Generic Postscript first. > > > > matthias > > > w/o using the web interface (I don't particularly care for it, honestly, > I find it confusing) I deleted the old logs, restarted the cupsd > service, and sent > > # date | lpr -PPIXMA Please show the config of the printer, either as screen shoot of CUPS web or from printers.conf file; matthias -- Matthias Apitz | /"\ ASCII Ribbon Campaign: www.asciiribbon.org E-mail: guru@unixarea.de | \ / - No HTML/RTF in E-mail WWW: http://www.unixarea.de/ | X - No proprietary attachments phone: +49-170-4527211 | / \ - Respect for open standards From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 12:07:20 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B9FA67AD for ; Tue, 12 Mar 2013 12:07:20 +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 54440C6 for ; Tue, 12 Mar 2013 12:07:20 +0000 (UTC) Received: from [82.113.121.204] (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 1UFNzC-0007m9-4N for freebsd-questions@freebsd.org; Tue, 12 Mar 2013 13:07:18 +0100 Received: from tiny.Sisis.de (localhost [127.0.0.1]) by tiny.Sisis.de (8.14.5/8.14.3) with ESMTP id r2CC7GIi001861 for ; Tue, 12 Mar 2013 13:07:16 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by tiny.Sisis.de (8.14.5/8.14.3/Submit) id r2CC7Fa8001860 for freebsd-questions@freebsd.org; Tue, 12 Mar 2013 13:07:15 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: tiny.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Tue, 12 Mar 2013 13:07:15 +0100 From: Matthias Apitz To: freebsd-questions@freebsd.org Subject: Re: Problems Printing Message-ID: <20130312120715.GA1827@tiny.Sisis.de> References: <5135A88B.1000100@gmail.com> <513D7701.7000605@bananmonarki.se> <513E3544.6080208@gmail.com> <20130311200838.GA1348@tiny.Sisis.de> <513E3BB4.305@gmail.com> <20130311202628.GA1413@tiny.Sisis.de> <513E3FBD.5000302@gmail.com> <20130311204351.GA1485@tiny.Sisis.de> <513E47D1.2030403@gmail.com> <20130311211437.GA1575@tiny.Sisis.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130311211437.GA1575@tiny.Sisis.de> 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.204 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 12:07:20 -0000 I have checked your logs of last night and I have a few questions: Can you please show the file /usr/local/etc/cups/ppd/PIXMA.ppd when the printer PIXMA is configured as Generic PS printer? The log says, that CUPS is starting a filter chain of: testtops-->pstops-->pstoraster-->rastertogutenprint-->backend/usb Why it is using pstoraster and rastertogutenprint if the printer should be a Generic PS one? It should just handover the PS output of testtops to the backend/usb? Is this visible in the above PPD file? The chain is failing in: > "libgnutls.so.47" not found, required by "rastertogutenprint.5.2" > D [10/Mar/2013:14:18:04 -0500] [Job 12] Shared object > "libgnutls.so.47" not found, required by "espgs" that's why it does not print anything, this is clear. But why it wants to use this? matthias -- Sent from my FreeBSD netbook Matthias Apitz | - No system with backdoors like Apple/Android E-mail: guru@unixarea.de | - Never being an iSlave WWW: http://www.unixarea.de/ | - No proprietary attachments, no HTML/RTF in E-mail phone: +49-170-4527211 | - Respect for open standards From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 13:40:54 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C5CF821B; Tue, 12 Mar 2013 13:40:54 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 836709EF; Tue, 12 Mar 2013 13:40:54 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id 163C133C1D; Tue, 12 Mar 2013 09:40:43 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id 0E5733983C; Tue, 12 Mar 2013 09:40:40 -0400 (EDT) From: Lowell Gilbert To: Walter Hurry Subject: Re: Pan-0.139 won't compile References: Date: Tue, 12 Mar 2013 09:40:40 -0400 In-Reply-To: (Walter Hurry's message of "Mon, 11 Mar 2013 23:41:41 +0000 (UTC)") Message-ID: <44zjy8lorr.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: gnome@freebsd.org, kwm@freebsd.org, freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 13:40:54 -0000 Walter Hurry writes: > Trying to upgrade /usr/ports/news/pan I get this: > ___________________________________________________________________ > mime-utils.cc: In function 'char* pan::__g_mime_iconv_strndup(void*, > const char*, size_t, const char*)': > mime-utils.cc:80: error: invalid conversion from 'char**' to 'const > char**' > mime-utils.cc:80: error: initializing argument 2 of 'size_t libiconv > (void*, const char**, size_t*, char**, size_t*)' > gmake[3]: *** [mime-utils.o] Error 1 > gmake[3]: Leaving directory `/usr/ports/news/pan/work/pan-0.139/pan/ > usenet-utils' > gmake[2]: *** [all-recursive] Error 1 > gmake[2]: Leaving directory `/usr/ports/news/pan/work/pan-0.139/pan' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/usr/ports/news/pan/work/pan-0.139' > gmake: *** [all] Error 2 > *** [do-build] Error code 1 > > Stop in /usr/ports/news/pan. > *** [build] Error code 1 > ___________________________________________________________________ > > What should I do next? Hmm. Interesting; looks like a compiler issue (the error strikes me as likely bogus). What compiler were you using? From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 13:56:00 2013 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 13C996EB for ; Tue, 12 Mar 2013 13:56:00 +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 C3DADAA3 for ; Tue, 12 Mar 2013 13:55:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=feld.me; s=blargle; h=Message-Id:From:Mime-Version:Date:Subject:To:Content-Type; bh=ECylLrpeUu3TfnaCUpcA0mWRs++QO4Prdu3mR3vto34=; b=QWxXVTFfBnD9iOBZIXim3un3Ko3T3PijblzCkEGrjz9UGHEoWX6V+tsXl8qq5Lttj+3gvQMvYZWki+0KdMhY/K61QKBA297xC0yWER3hWnBgZ7uStJv1BvaNlyZOOFwE; Received: from localhost ([127.0.0.1] helo=mwi1.coffeenet.org) by feld.me with esmtp (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1UFPgK-000Dc6-E1 for freebsd-questions@FreeBSD.org; Tue, 12 Mar 2013 08:55:57 -0500 Received: from feld@feld.me by mwi1.coffeenet.org (Archiveopteryx 3.1.4) with esmtpsa id 1363096549-14095-61116/5/1; Tue, 12 Mar 2013 13:55:49 +0000 Content-Type: text/plain; format=flowed; delsp=yes To: freebsd-questions@FreeBSD.org Subject: snd_hda and front headphones jack Date: Tue, 12 Mar 2013 08:55:49 -0500 Mime-Version: 1.0 From: Mark Felder Message-Id: User-Agent: Opera Mail/12.14 (FreeBSD) X-SA-Report: ALL_TRUSTED=-1 X-SA-Score: -1.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 13:56:00 -0000 Hi guys, I seem to be having problems getting my front headphones jack to work. I've read the snd_hda man page and perhaps I'm doing this wrong, but here's my setup: dev.hdaa.4.%desc: Conexant CX20641 Audio Function Group dev.hdaa.0.nid5_original: 0x18560010 as=1 seq=0 device=Digital-out conn=Jack ctype=Digital loc=0x18 color=Unknown misc=0 dev.hdaa.1.nid5_original: 0x18560010 as=1 seq=0 device=Digital-out conn=Jack ctype=Digital loc=0x18 color=Unknown misc=0 dev.hdaa.2.nid5_original: 0x18560010 as=1 seq=0 device=Digital-out conn=Jack ctype=Digital loc=0x18 color=Unknown misc=0 dev.hdaa.3.nid5_original: 0x18560010 as=1 seq=0 device=Digital-out conn=Jack ctype=Digital loc=0x18 color=Unknown misc=0 dev.hdaa.4.nid24_original: 0x40f001f0 as=15 seq=0 device=Other conn=None ctype=Unknown loc=0x00 color=Unknown misc=1 dev.hdaa.4.nid25_original: 0x02214040 as=4 seq=0 device=Headphones conn=Jack ctype=1/8 loc=Front color=Green misc=0 dev.hdaa.4.nid26_original: 0x02a19020 as=2 seq=0 device=Mic conn=Jack ctype=1/8 loc=Front color=Pink misc=0 dev.hdaa.4.nid27_original: 0x01a1903e as=3 seq=14 device=Mic conn=Jack ctype=1/8 loc=Rear color=Pink misc=0 dev.hdaa.4.nid28_original: 0x01014010 as=1 seq=0 device=Line-out conn=Jack ctype=1/8 loc=Rear color=Green misc=0 dev.hdaa.4.nid29_original: 0x01813030 as=3 seq=0 device=Line-in conn=Jack ctype=1/8 loc=Rear color=Blue misc=0 dev.hdaa.4.nid30_original: 0x40f001f0 as=15 seq=0 device=Other conn=None ctype=Unknown loc=0x00 color=Unknown misc=1 dev.hdaa.4.nid31_original: 0x9217011f as=1 seq=15 device=Speaker conn=Fixed ctype=Analog loc=0x12 color=Unknown misc=1 dev.hdaa.4.nid32_original: 0x40f001f0 as=15 seq=0 device=Other conn=None ctype=Unknown loc=0x00 color=Unknown misc=1 dev.hdaa.4.nid33_original: 0x40f001f0 as=15 seq=0 device=Other conn=None ctype=Unknown loc=0x00 color=Unknown misc=1 dev.hdaa.4.nid38_original: 0x40f001ff as=15 seq=15 device=Other conn=None ctype=Unknown loc=0x00 color=Unknown misc=1 If I am looking at this right I believe I need to set nid25 to as=1 which matches the nid31 Speaker and probably also set seq=15. However, this doesn't seem to be working. Am I overlooking something obvious? Thanks From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 14:07:03 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D39EBA39 for ; Tue, 12 Mar 2013 14:07:03 +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 92142B23 for ; Tue, 12 Mar 2013 14:07:03 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UFPrK-00061I-6S for freebsd-questions@freebsd.org; Tue, 12 Mar 2013 15:07:18 +0100 Received: from cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com ([86.21.186.149]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Mar 2013 15:07:18 +0100 Received: from walterhurry by cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Mar 2013 15:07:18 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Walter Hurry Subject: Re: Pan-0.139 won't compile Date: Tue, 12 Mar 2013 14:06:35 +0000 (UTC) Lines: 31 Message-ID: References: <44zjy8lorr.fsf@lowell-desk.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com User-Agent: Pan/0.135 (Tomorrow I'll Wake Up and Scald Myself with Tea; GIT 30dc37b master) Cc: freebsd-gnome@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 14:07:03 -0000 On Tue, 12 Mar 2013 09:40:40 -0400, Lowell Gilbert wrote: > Walter Hurry writes: > >> Trying to upgrade /usr/ports/news/pan I get this: >> ___________________________________________________________________ >> mime-utils.cc: In function 'char* pan::__g_mime_iconv_strndup(void*, >> const char*, size_t, const char*)': >> mime-utils.cc:80: error: invalid conversion from 'char**' to 'const >> char**' >> mime-utils.cc:80: error: initializing argument 2 of 'size_t libiconv >> (void*, const char**, size_t*, char**, size_t*)' >> gmake[3]: *** [mime-utils.o] Error 1 gmake[3]: Leaving directory >> `/usr/ports/news/pan/work/pan-0.139/pan/ usenet-utils' >> gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory >> `/usr/ports/news/pan/work/pan-0.139/pan' gmake[1]: *** [all-recursive] >> Error 1 gmake[1]: Leaving directory >> `/usr/ports/news/pan/work/pan-0.139' gmake: *** [all] Error 2 *** >> [do-build] Error code 1 >> >> Stop in /usr/ports/news/pan. >> *** [build] Error code 1 >> ___________________________________________________________________ >> >> What should I do next? > > Hmm. Interesting; looks like a compiler issue (the error strikes me as > likely bogus). What compiler were you using? Well, this is 9.1-RELEASE on amd64, and I'm using the default, which I believe is the cc1plus in gcc-4.2.1 From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 15:03:55 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 07C4FACA for ; Tue, 12 Mar 2013 15:03:55 +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 BF481E8D for ; Tue, 12 Mar 2013 15:03:54 +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 1UFQjz-00053M-HW; Tue, 12 Mar 2013 11:03:53 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by Gregory-Larkins-iMac.local (Postfix) with ESMTPS id C3A661B51AE3; Tue, 12 Mar 2013 11:03:44 -0400 (EDT) Message-ID: <513F43CA.1070204@FreeBSD.org> Date: Tue, 12 Mar 2013 11:03:38 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130216 Thunderbird/17.0.3 MIME-Version: 1.0 To: Jeff Tipton References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> <513E31B8.2020509@mail.com> <513E4FB8.2060506@mail.com> <513E55A0.7030109@FreeBSD.org> <513E58D2.8000503@mail.com> <513E5C83.7040802@FreeBSD.org> <513E6001.9040206@mail.com> In-Reply-To: <513E6001.9040206@mail.com> X-Enigmail-Version: 1.5.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=-1.1 required=5.0 tests=AWL,BAYES_00, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Subject: Re: Error: shared library "mysqlclient.18" does not exist Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SA-Exim-Version: 4.2 X-SA-Exim-Scanned: Yes (on mail1.sourcehosting.net) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 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: Tue, 12 Mar 2013 15:03:55 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 3/11/13 6:51 PM, Jeff Tipton wrote: > On 03/12/2013 00:36, Greg Larkin wrote: On 3/11/13 6:21 PM, Jeff > Tipton wrote: >>>> On 03/12/2013 00:07, Greg Larkin wrote: On 3/11/13 5:42 PM, >>>> Jeff Tipton wrote: >>>>>>> On 03/11/2013 21:34, Jeff Tipton wrote: >>>>>>>> On 03/11/2013 21:00, Greg Larkin wrote: >>>>>>> On 3/11/13 2:47 PM, Jeff Tipton wrote: >>>>>>>>>>> On 03/11/2013 20:31, Greg Larkin wrote: On >>>>>>>>>>> 3/11/13 2:10 PM, Jeff Tipton wrote: >>>>>>>>>>>>>> On 03/11/2013 20:00, Greg Larkin wrote: >>>>>>>>>>>>>> On 3/11/13 12:59 PM, Jeff Tipton wrote: >>>>>>>>>>>>>>>>> Hi, >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> I'm trying to set up security/maia, >>>>>>>>>>>>>>>>> and this is the error message I >>>>>>>>>>>>>>>>> get: >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> Error: shared library >>>>>>>>>>>>>>>>> "mysqlclient.18" does not exist >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> Of course, the library does exist >>>>>>>>>>>>>>>>> :( >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> # ls /usr/local/lib/mysql/ >>>>>>>>>>>>>>>>> libmysqlclient.a >>>>>>>>>>>>>>>>> libmysqlclient_r.a libmysqld.a >>>>>>>>>>>>>>>>> libmysqlclient.so >>>>>>>>>>>>>>>>> libmysqlclient_r.so >>>>>>>>>>>>>>>>> libmysqlservices.a >>>>>>>>>>>>>>>>> libmysqlclient.so.18 >>>>>>>>>>>>>>>>> libmysqlclient_r.so.18 plugin >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> I googled about this, and I found >>>>>>>>>>>>>>>>> 3 things to try but none of that >>>>>>>>>>>>>>>>> was helpful here: >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> 1. make a link: ln -s >>>>>>>>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> > >>>>>>>>>>>>>>>>> /usr/local/lib/libmysqlclient.so.18 >>>>>>>>>>>>>>>>> 2. Check the root's umask and the >>>>>>>>>>>>>>>>> directory permissions if they are >>>>>>>>>>>>>>>>> correct, and they are: # umask 22 >>>>>>>>>>>>>>>>> #ll /usr/local/lib |grep mysql >>>>>>>>>>>>>>>>> lrwxr-xr-x 1 root wheel 41 Mar 11 >>>>>>>>>>>>>>>>> 16:25 libmysqlclient.so.18@ -> >>>>>>>>>>>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> > >>>>>>>>>>>>>>>>> drwxr-xr-x 3 root wheel 512 Mar 11 16:22 >>>>>>>>>>>>>>>>> mysql/ >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> # ll /usr/local/lib/mysql/ total >>>>>>>>>>>>>>>>> 27276 -rw-r--r-- 1 root wheel >>>>>>>>>>>>>>>>> 4844270 Mar 11 16:17 >>>>>>>>>>>>>>>>> libmysqlclient.a lrwxr-xr-x 1 >>>>>>>>>>>>>>>>> root wheel 20 Mar 11 16:22 >>>>>>>>>>>>>>>>> libmysqlclient.so@ -> >>>>>>>>>>>>>>>>> libmysqlclient.so.18 -rwxr-xr-x 1 >>>>>>>>>>>>>>>>> root wheel 3364688 Mar 11 16:22 >>>>>>>>>>>>>>>>> libmysqlclient.so.18* lrwxr-xr-x 1 >>>>>>>>>>>>>>>>> root wheel 16 Mar 11 16:22 >>>>>>>>>>>>>>>>> libmysqlclient_r.a@ -> >>>>>>>>>>>>>>>>> libmysqlclient.a lrwxr-xr-x 1 >>>>>>>>>>>>>>>>> root wheel 17 Mar 11 16:22 >>>>>>>>>>>>>>>>> libmysqlclient_r.so@ -> >>>>>>>>>>>>>>>>> libmysqlclient.so lrwxr-xr-x 1 >>>>>>>>>>>>>>>>> root wheel 17 Mar 11 16:22 >>>>>>>>>>>>>>>>> libmysqlclient_r.so.18@ -> >>>>>>>>>>>>>>>>> libmysqlclient.so -rw-r--r-- 1 >>>>>>>>>>>>>>>>> root wheel 20019340 Mar 7 15:08 >>>>>>>>>>>>>>>>> libmysqld.a -rw-r--r-- 1 root >>>>>>>>>>>>>>>>> wheel 4598 Mar 11 16:17 >>>>>>>>>>>>>>>>> libmysqlservices.a drwxr-xr-x 2 >>>>>>>>>>>>>>>>> root wheel 512 Mar 8 19:01 >>>>>>>>>>>>>>>>> plugin/ >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> 3. Update the ports tree. Ports >>>>>>>>>>>>>>>>> tree is up to date. >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> Could someone, please, suggest what >>>>>>>>>>>>>>>>> I could try to solve this? >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> Thanks, Jeff >>>>>>>>>>>>>> Hi Jeff, >>>>>>>>>>>>>> >>>>>>>>>>>>>> At what point do you receive the error >>>>>>>>>>>>>> message? Is it when you attempt to run >>>>>>>>>>>>>> the executable built by the port? If so, >>>>>>>>>>>>>> please run the ldd command against the >>>>>>>>>>>>>> executable and post the output back >>>>>>>>>>>>>> here. >>>>>>>>>>>>>> >>>>>>>>>>>>>> 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 Thank you, Greg, for the >>>>>>>>>>>>>> reply. I get the error message while >>>>>>>>>>>>>> compiling security/maia port. mysql >>>>>>>>>>>>>> client itself is working ok, I can >>>>>>>>>>>>>> connect to my database server. >>>>>>>>>>>>>> >>>>>>>>>>>>>> ldd output: # ldd /usr/local/bin/mysql >>>>>>>>>>>>>> /usr/local/bin/mysql: libreadline.so.8 >>>>>>>>>>>>>> => /lib/libreadline.so.8 (0x800ab5000) >>>>>>>>>>>>>> libz.so.6 => /lib/libz.so.6 (0x800cf5000) >>>>>>>>>>>>>> libstdc++.so.6 => /usr/lib/libstdc++.so.6 >>>>>>>>>>>>>> (0x800f09000) libm.so.5 => /lib/libm.so.5 >>>>>>>>>>>>>> (0x801219000) libgcc_s.so.1 => >>>>>>>>>>>>>> /lib/libgcc_s.so.1 (0x80143a000) >>>>>>>>>>>>>> libthr.so.3 => /lib/libthr.so.3 >>>>>>>>>>>>>> (0x801647000) libc.so.7 => >>>>>>>>>>>>>> /lib/libc.so.7 (0x801869000) >>>>>>>>>>>>>> libncurses.so.8 => /lib/libncurses.so.8 >>>>>>>>>>>>>> (0x801bbc000) >>>>>>>>>>>>>> >>>>>>>>>>> Hi Jeff, >>>>>>>>>>> >>>>>>>>>>> Can you post the relevant bits of build output >>>>>>>>>>> where the error message shows up? If it >>>>>>>>>>> happens during the configure phase of the port >>>>>>>>>>> build, you'll also want to post the end of the >>>>>>>>>>> config.log file found in the port work >>>>>>>>>>> directory. >>>>>>>>>>> >>>>>>>>>>> Thank you, Greg >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>>> I tried to run "make" several times, and >>>>>>>>>>> previously some build depends were compiled. >>>>>>>>>>> But now the "work" directory doesn't even get >>>>>>>>>>> created, and the process stops immediately: >>>>>>>>>>> >>>>>>>>>>> /usr/ports/security/maia# make install clean >>>>>>>>>>> ===> maia-1.0.3.r1575_3 depends on shared >>>>>>>>>>> library: mysqlclient.18 - not found ===> >>>>>>>>>>> Verifying install for mysqlclient.18 in >>>>>>>>>>> /usr/ports/databases/mysql55-client ===> >>>>>>>>>>> Returning to build of maia-1.0.3.r1575_3 Error: >>>>>>>>>>> shared library "mysqlclient.18" does not exist >>>>>>>>>>> *** [lib-depends] Error code 1 >>>>>>>>>>> >>>>>>>>>>> Stop in /basejail/usr/ports/security/maia. >>>>>>>>>>> /usr/ports/security/maia# >>>>>>>>>>> >>>>>>>>>>> >>>>>>> Ok, it looks like something is messed up with your >>>>>>> ldconfig search path. To confirm that, please run this >>>>>>> command and post results back here: >>>>>>> >>>>>>> ldconfig -r| grep mysql >>>>>>> >>>>>>> Thank you, Greg >>>>>>>>> _______________________________________________ >>>>>>>>> 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" >>>>>>>> # ldconfig -r| grep mysql search directories: >>>>>>>> /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/usr/local/lib/dovecot:/usr/local/lib/mysql:/usr/local/lib/pth >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> > >>>>>>>> 218:-lmysqlclient.18 => /usr/local/lib/libmysqlclient.so.18 >>>>>>>> 219:-lmysqlclient.18 => >>>>>>>> /usr/local/lib/mysql/libmysqlclient.so.18 >>>>>>>> 220:-lmysqlclient_r.18 => >>>>>>>> /usr/local/lib/mysql/libmysqlclient_r.so.18 >>>>>>>> >>>>>>>> I installed both mysql client and server from ports. >>>>>>>> The versions are: mysql-client-5.5.30 >>>>>>>> mysql-server-5.5.30 >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> 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" >>>>>>> Thank you, Greg. As a result, databases/mysql55-client >>>>>>> got rebuilt, so I lost the beginning of the log. The >>>>>>> end is this: >>>>>>> >>>>>>> [100%] Built target mysqlshow Linking CXX executable >>>>>>> mysqlslap cd >>>>>>> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/client >>>>>>> >>>>>>> >>>>>>> >>>>>>> > >>>>>>> && /usr/local/bin/cmake -E cmake_link_script >>>>>>> CMakeFiles/mysqlslap.dir/link.txt --verbose=1 >>>>>>> /usr/bin/c++ -O2 -pipe -fno-strict-aliasing -Wall >>>>>>> -Wno-unused-parameter -fno-implicit-templates >>>>>>> -fno-exceptions -fno-rtti -O2 -pipe >>>>>>> -fno-strict-aliasing -DDBUG_OFF >>>>>>> CMakeFiles/mysqlslap.dir/mysqlslap.c.o -o mysqlslap >>>>>>> -pthread ../libmysql/libmysqlclient.a -pthread -lz -lm >>>>>>> /usr/local/bin/cmake -E cmake_progress_report >>>>>>> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> > >>>>>>> [100%] Built target mysqlslap /usr/local/bin/cmake -E >>>>>>> cmake_progress_start >>>>>>> /var/ports/basejail/usr/ports/databases/mysql55-client/work/mysql-5.5.30/CMakeFiles >>>>>>> >>>>>>> >>>>>>> >>>>>>> > >>>>>>> 0 >>>>>>> ===> Installing for mysql-client-5.5.30 ===> >>>>>>> Generating temporary packing list ===> Checking if >>>>>>> databases/mysql55-client already installed ===> >>>>>>> mysql-client-5.5.30 is already installed You may wish >>>>>>> to ``make deinstall'' and install this port again by >>>>>>> ``make reinstall'' to upgrade it properly. If you >>>>>>> really wish to overwrite the old port of >>>>>>> databases/mysql55-client without deleting it first, set >>>>>>> the variable "FORCE_PKG_REGISTER" in your environment >>>>>>> or the "make install" command line. *** >>>>>>> [check-already-installed] Error code 1 >>>>>>> >>>>>>> Stop in /basejail/usr/ports/databases/mysql55-client. + >>>>>>> echo '===> Returning to build of maia-1.0.3.r1575_3' >>>>>>> ===> Returning to build of maia-1.0.3.r1575_3 + >>>>>>> /sbin/ldconfig -32 -r + /usr/bin/grep -vwF -e >>>>>>> /usr/local/lib/compat/pkg + /usr/bin/grep -qwE -e >>>>>>> '-lmysqlclient\.18' + echo 'Error: shared library >>>>>>> "mysqlclient.18" does not exist' Error: shared library >>>>>>> "mysqlclient.18" does not exist + false >>>>>>> /usr/ports/security/maia# >>>> Try one more test for me - deselect the "RAR" option in the >>>> maia port, run "make clean build" and let me know what >>>> happens. >>>>> _______________________________________________ >>>>> 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" >>>> Ok, deselected RAR. Output: >>>> >>>> /usr/ports/security/maia# make clean build ===> Cleaning >>>> for maia-1.0.3.r1575_3 ===> Found saved configuration for >>>> maia-1.0.3.r1575_3 ===> Extracting for maia-1.0.3.r1575_3 >>>> => SHA256 Checksum OK for maia-1.0.3-r1575.tar.gz. ===> >>>> Patching for maia-1.0.3.r1575_3 ===> maia-1.0.3.r1575_3 >>>> depends on shared library: mysqlclient.18 - found ===> >>>> Configuring for maia-1.0.3.r1575_3 /usr/ports/security/maia# >>>> > Ok, that means you can go and run "make install" if you don't > actually need the RAR option. If you do need that option, then I > need to look into what the port is trying to do and then file a PR > to fix it. > > Regards, Greg > > Yes, it starts building. Thank you! I'm not sure, though, what > exactly I am losing. I tought RAR is for scanning RARed > attatchments (which is important), but then there's also UNRAR > which I left selected. Hi Jeff, Good news and thanks for the update. The maia Makefile seems to imply that RAR support can be provided either by archivers/rar or archivers/unrar, and if so, those options should likely be exclusive. I found some problems related to detecting the MySQL dependencies in general, too. I'll create a PR to fix these issues. In the mean time, can you test whether maia does what you want with just the UNRAR option enabled? Thank you, Greg -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.13 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlE/Q8kACgkQ0sRouByUApDjIwCgqujnwXRPxrNq4/ARjK6Tv98m 5qsAn37lrANQqCp9op1Y4WPZXz1gcYn/ =NQdO -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 16:47:09 2013 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 72A4B3AE for ; Tue, 12 Mar 2013 16:47:09 +0000 (UTC) (envelope-from suseuser04@lajt.hu) Received: from mailout3.bwave.pl (mailout3.bwave.pl [37.233.100.48]) by mx1.freebsd.org (Postfix) with ESMTP id 37FB3DC0 for ; Tue, 12 Mar 2013 16:47:08 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=drone-mailout3) by mailout3.bwave.pl with esmtp (Exim 4.76) (envelope-from ) id 1UFSLy-00035f-57 for freebsd-questions@FreeBSD.org; Tue, 12 Mar 2013 17:47:06 +0100 Received: from [10.2.1.187] by drone-mailout3 with esmtp (Exim 4.76) (envelope-from ) id 1UFSK4-0002gj-CQ for freebsd-questions@FreeBSD.org; Tue, 12 Mar 2013 17:45:08 +0100 Subject: =?UTF-8?Q?configure_recursively_and_build_question?= From: =?UTF-8?Q?Istvan_Gabor?= To: freebsd-questions@FreeBSD.org Mime-Version: 1.0 Message-ID: <33e0ec72.507f04c6.513f5b93.143fa@lajt.hu> Date: Tue, 12 Mar 2013 17:45:07 +0100 X-Originator: 193.6.63.109 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 16:47:09 -0000 Hello: As=20there=20are=20no=20compiled=20FreeBSD=209.1=20packages=20for=20pkg=5F= tools=20I=20decided=20to=20build=20them. Last=20I=20started=20to=20build=20kde3.=20First=20I=20issued=20make=20con= figure-recursive=20in /usr/ports/x11/kde3,=20then=20make=20install=20clean,=20and=20left=20the=20= computer=20for=20overnight=20to=20work. I=20expected=20a=20successful=20build=20by=20the=20morning=20but=20instea= d=20I=20found=20a=20screen=20requiring=20some config=20options=20(for=20apache).=20I=20selected=20the=20options=20and=20= the=20build=20went=20on. But=20later=20other=20config=20windows=20came=20up,=20so=20far=20for=20my= sqlclient,=20sane-backends, tk,=20tcl,=20libxine=20and=20sdl.=20So=20my=20question=20are: What=20is=20configure-recursive=20good=20for=20then?=20I=20thought=20it=20= is=20for=20preventing=20interactions during=20the=20build=20process.=20Ho=20can=20I=20really=20configure=20eve= rything=20in=20one=20step=20and=20leave the=20computer=20alone? Second,=20after=20I've=20done=20a=20configure-recursive,=20how=20can=20I=20= start=20it=20over=20from=20scratch=20in=20case I=20want=20to=20change=20some=20config=20option?=20If=20I=20reissue=20mak= e=20configure-recursive, I=20get=20only=20no=20configuration=20needed=20messages. Thanks, Istvan From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 16:52:03 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0D078653 for ; Tue, 12 Mar 2013 16:52:03 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mout.gmx.net (mout.gmx.net [74.208.4.201]) by mx1.freebsd.org (Postfix) with ESMTP id CE00BE6E for ; Tue, 12 Mar 2013 16:52:01 +0000 (UTC) Received: from mailout-us.mail.com ([172.19.198.94]) by mrigmx.server.lan (mrigmxus002) with ESMTP (Nemesis) id 0MUoFE-1UGUZk0m32-00YDRi for ; Tue, 12 Mar 2013 17:47:24 +0100 Received: (qmail invoked by alias); 12 Mar 2013 16:47:23 -0000 Received: from unknown (EHLO dc.sinhro.lv) [87.246.164.215] by mail.gmx.com (mp-us011) with SMTP; 12 Mar 2013 12:47:23 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX1+jXc1e9hqjGULrrBS+h0+mFqMA80BTRZDDPzwW1t yYahDpMr8GB/3f Message-ID: <513F5C18.6050806@mail.com> Date: Tue, 12 Mar 2013 18:47:20 +0200 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Error: shared library "mysqlclient.18" does not exist References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> <513E31B8.2020509@mail.com> <513E4FB8.2060506@mail.com> <513E55A0.7030109@FreeBSD.org> <513E58D2.8000503@mail.com> <513E5C83.7040802@FreeBSD.org> <513E6001.9040206@mail.com> <513F43CA.1070204@FreeBSD.org> In-Reply-To: <513F43CA.1070204@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 16:52:03 -0000 On 03/12/2013 17:03, Greg Larkin wrote: > Hi Jeff, Good news and thanks for the update. The maia Makefile seems > to imply that RAR support can be provided either by archivers/rar or > archivers/unrar, and if so, those options should likely be exclusive. > I found some problems related to detecting the MySQL dependencies in > general, too. I'll create a PR to fix these issues. In the mean time, > can you test whether maia does what you want with just the UNRAR > option enabled? Thank you, Greg -----BEGIN PGP SIGNATURE----- Version: > GnuPG v1.4.13 (Darwin) Comment: Using GnuPG with Thunderbird - > http://www.enigmail.net/ > iEYEARECAAYFAlE/Q8kACgkQ0sRouByUApDjIwCgqujnwXRPxrNq4/ARjK6Tv98m > 5qsAn37lrANQqCp9op1Y4WPZXz1gcYn/ =NQdO -----END PGP SIGNATURE----- > _______________________________________________ > 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" Hi Greg, Thank you very much, your really helped me. Ok, I think I will test Maia with RARed eicar; only it will still take some time until I finish the whole mailsystem. I'll report back as soon as I get to the point of testing. Jeff From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 17:17:42 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2403218F for ; Tue, 12 Mar 2013 17:17:42 +0000 (UTC) (envelope-from paulz@vanderzwan.org) Received: from cpsmtpb-ews05.kpnxchange.com (cpsmtpb-ews05.kpnxchange.com [213.75.39.8]) by mx1.freebsd.org (Postfix) with ESMTP id B33391D9 for ; Tue, 12 Mar 2013 17:17:41 +0000 (UTC) Received: from cpsps-ews29.kpnxchange.com ([10.94.84.195]) by cpsmtpb-ews05.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Tue, 12 Mar 2013 18:16:06 +0100 Received: from CPSMTPM-TLF101.kpnxchange.com ([195.121.3.4]) by cpsps-ews29.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Tue, 12 Mar 2013 18:16:06 +0100 Received: from mailvm.vanderzwan.org ([195.240.104.102]) by CPSMTPM-TLF101.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Tue, 12 Mar 2013 18:17:33 +0100 Received: from gaspode.vanderzwan.org (gaspode.vanderzwan.org [192.168.178.22]) (authenticated bits=0) by mailvm.vanderzwan.org (8.14.6/8.14.6) with ESMTP id r2CHHXJX027723 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Tue, 12 Mar 2013 18:17:33 +0100 (CET) (envelope-from paulz@vanderzwan.org) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: Pan-0.139 won't compile From: Paul van der Zwan In-Reply-To: Date: Tue, 12 Mar 2013 18:17:33 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <3D3AAC90-E883-431E-9772-14894EBEFC7C@vanderzwan.org> References: To: Walter Hurry X-Mailer: Apple Mail (2.1499) X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.3.9 (mailvm.vanderzwan.org [192.168.178.25]); Tue, 12 Mar 2013 18:17:34 +0100 (CET) X-OriginalArrivalTime: 12 Mar 2013 17:17:33.0755 (UTC) FILETIME=[7C37A8B0:01CE1F45] X-RcptDomain: freebsd.org Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 17:17:42 -0000 On 12 Mar 2013, at 0:41 , Walter Hurry wrote: > Trying to upgrade /usr/ports/news/pan I get this: > ___________________________________________________________________ > mime-utils.cc: In function 'char* pan::__g_mime_iconv_strndup(void*,=20= > const char*, size_t, const char*)': > mime-utils.cc:80: error: invalid conversion from 'char**' to 'const=20 > char**' > mime-utils.cc:80: error: initializing argument 2 of 'size_t libiconv > (void*, const char**, size_t*, char**, size_t*)' > gmake[3]: *** [mime-utils.o] Error 1 > gmake[3]: Leaving directory `/usr/ports/news/pan/work/pan-0.139/pan/ > usenet-utils' > gmake[2]: *** [all-recursive] Error 1 > gmake[2]: Leaving directory `/usr/ports/news/pan/work/pan-0.139/pan' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/usr/ports/news/pan/work/pan-0.139' > gmake: *** [all] Error 2 > *** [do-build] Error code 1 >=20 > Stop in /usr/ports/news/pan. > *** [build] Error code 1 > ___________________________________________________________________ >=20 > What should I do next? I ran into the same problem. I tried removing the cast on line 80 and = now it compiles ( and seems to work, no crashes so far.) Paul From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 17:33:05 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4A9AFC19; Tue, 12 Mar 2013 17:33:05 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 244B33E8; Tue, 12 Mar 2013 17:33:04 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id 6940F33C3E; Tue, 12 Mar 2013 13:32:58 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id 4E53D3983C; Tue, 12 Mar 2013 13:32:56 -0400 (EDT) From: Lowell Gilbert To: Walter Hurry Subject: iconv issue (Re: Pan-0.139 won't compile) References: <44zjy8lorr.fsf@lowell-desk.lan> Date: Tue, 12 Mar 2013 13:32:56 -0400 In-Reply-To: (Walter Hurry's message of "Tue, 12 Mar 2013 14:06:35 +0000 (UTC)") Message-ID: <44vc8wle0n.fsf_-_@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-questions@freebsd.org, freebsd-gnome@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 17:33:05 -0000 Walter Hurry writes: > On Tue, 12 Mar 2013 09:40:40 -0400, Lowell Gilbert wrote: > >> Walter Hurry writes: >> >>> Trying to upgrade /usr/ports/news/pan I get this: >>> ___________________________________________________________________ >>> mime-utils.cc: In function 'char* pan::__g_mime_iconv_strndup(void*, >>> const char*, size_t, const char*)': >>> mime-utils.cc:80: error: invalid conversion from 'char**' to 'const >>> char**' >>> mime-utils.cc:80: error: initializing argument 2 of 'size_t libiconv >>> (void*, const char**, size_t*, char**, size_t*)' >>> gmake[3]: *** [mime-utils.o] Error 1 gmake[3]: Leaving directory >>> `/usr/ports/news/pan/work/pan-0.139/pan/ usenet-utils' >>> gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory >>> `/usr/ports/news/pan/work/pan-0.139/pan' gmake[1]: *** [all-recursive] >>> Error 1 gmake[1]: Leaving directory >>> `/usr/ports/news/pan/work/pan-0.139' gmake: *** [all] Error 2 *** >>> [do-build] Error code 1 >>> >>> Stop in /usr/ports/news/pan. >>> *** [build] Error code 1 >>> ___________________________________________________________________ >>> >>> What should I do next? >> >> Hmm. Interesting; looks like a compiler issue (the error strikes me as >> likely bogus). What compiler were you using? > > Well, this is 9.1-RELEASE on amd64, and I'm using the default, which I > believe is the cc1plus in gcc-4.2.1 On closer look, the error isn't bogus, but looks like it results from an unnecessary pair of type casts. There's nothing in the autotools setups about iconv, nor are there any patches in the port, so I'm not seeing an obvious candidate for why this broke. My guess would be that this works if built with the base iconv, because the test builds must have worked. That is not guaranteed, because the port changes were both updating the version of pan and updating glib/gtk updates as part of a wider set of updates. I'll put in a PR, because I won't have a chance to look more at this today. Be well. From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 18:21:54 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3962FF80; Tue, 12 Mar 2013 18:21:54 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id ECCD1BE4; Tue, 12 Mar 2013 18:21:53 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id 5AE3933C1D; Tue, 12 Mar 2013 14:21:48 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id 25EB03983C; Tue, 12 Mar 2013 14:21:46 -0400 (EDT) From: Lowell Gilbert To: Lowell Gilbert Subject: Re: iconv issue (Re: Pan-0.139 won't compile) References: <44zjy8lorr.fsf@lowell-desk.lan> <44vc8wle0n.fsf_-_@lowell-desk.lan> Date: Tue, 12 Mar 2013 14:21:46 -0400 In-Reply-To: <44vc8wle0n.fsf_-_@lowell-desk.lan> (Lowell Gilbert's message of "Tue, 12 Mar 2013 13:32:56 -0400") Message-ID: <444ngglbr9.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain X-Mailman-Approved-At: Tue, 12 Mar 2013 19:25:58 +0000 Cc: kwm@freebsd.org, bapt@freebsd.org, freebsd-gnome@freebsd.org, miwi@freebsd.org, Walter Hurry , freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 18:21:54 -0000 Lowell Gilbert writes: > I'll put in a PR, because I won't have a chance to look more at this > today. ports/176887 From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 19:50:19 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 04E0A70A for ; Tue, 12 Mar 2013 19:50:19 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id D272620D for ; Tue, 12 Mar 2013 19:50:18 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id AFA8233C1D; Tue, 12 Mar 2013 15:50:12 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id E70493983C; Tue, 12 Mar 2013 15:50:10 -0400 (EDT) From: Lowell Gilbert To: Lowell Gilbert Subject: Re: iconv issue (Re: Pan-0.139 won't compile) References: <44zjy8lorr.fsf@lowell-desk.lan> <44vc8wle0n.fsf_-_@lowell-desk.lan> <444ngglbr9.fsf@lowell-desk.lan> Date: Tue, 12 Mar 2013 15:50:10 -0400 In-Reply-To: <444ngglbr9.fsf@lowell-desk.lan> (Lowell Gilbert's message of "Tue, 12 Mar 2013 14:21:46 -0400") Message-ID: <44vc8wjt3h.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-questions@freebsd.org, Walter Hurry X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 19:50:19 -0000 And it's already been fixed. From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 19:56:32 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A1A9C8C1 for ; Tue, 12 Mar 2013 19:56:32 +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 6272E2AF for ; Tue, 12 Mar 2013 19:56:32 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UFVJc-0000Wz-4s for freebsd-questions@freebsd.org; Tue, 12 Mar 2013 20:56:52 +0100 Received: from cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com ([86.21.186.149]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Mar 2013 20:56:52 +0100 Received: from walterhurry by cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Mar 2013 20:56:52 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Walter Hurry Subject: Re: Pan-0.139 won't compile Date: Tue, 12 Mar 2013 19:56:12 +0000 (UTC) Lines: 36 Message-ID: References: <3D3AAC90-E883-431E-9772-14894EBEFC7C@vanderzwan.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com User-Agent: Pan/0.139 (Sexual Chocolate; GIT bf56508 git://git.gnome.org/pan2) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 19:56:32 -0000 On Tue, 12 Mar 2013 18:17:33 +0100, Paul van der Zwan wrote: > On 12 Mar 2013, at 0:41 , Walter Hurry wrote: > >> Trying to upgrade /usr/ports/news/pan I get this: >> ___________________________________________________________________ >> mime-utils.cc: In function 'char* pan::__g_mime_iconv_strndup(void*, >> const char*, size_t, const char*)': >> mime-utils.cc:80: error: invalid conversion from 'char**' to 'const >> char**' >> mime-utils.cc:80: error: initializing argument 2 of 'size_t libiconv >> (void*, const char**, size_t*, char**, size_t*)' >> gmake[3]: *** [mime-utils.o] Error 1 gmake[3]: Leaving directory >> `/usr/ports/news/pan/work/pan-0.139/pan/ usenet-utils' >> gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory >> `/usr/ports/news/pan/work/pan-0.139/pan' gmake[1]: *** [all-recursive] >> Error 1 gmake[1]: Leaving directory >> `/usr/ports/news/pan/work/pan-0.139' gmake: *** [all] Error 2 *** >> [do-build] Error code 1 >> >> Stop in /usr/ports/news/pan. >> *** [build] Error code 1 >> ___________________________________________________________________ >> >> What should I do next? > > I ran into the same problem. I tried removing the cast on line 80 and > now it compiles ( and seems to work, no crashes so far.) Yes that works, thanks. Thanks also to Lowell Gilbert for his assistance, and to those concerned with identifying the patch (so quickly, too). http://www.freebsd.org/cgi/query-pr.cgi?pr=176887 Good work all round! From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 20:09:25 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7E786B0D for ; Tue, 12 Mar 2013 20:09:25 +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 3E2C2368 for ; Tue, 12 Mar 2013 20:09:25 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UFVW6-0001XC-24 for freebsd-questions@freebsd.org; Tue, 12 Mar 2013 21:09:46 +0100 Received: from cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com ([86.21.186.149]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Mar 2013 21:09:46 +0100 Received: from walterhurry by cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Mar 2013 21:09:46 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Walter Hurry Subject: Re: iconv issue (Re: Pan-0.139 won't compile) Date: Tue, 12 Mar 2013 20:09:10 +0000 (UTC) Lines: 8 Message-ID: References: <44zjy8lorr.fsf@lowell-desk.lan> <44vc8wle0n.fsf_-_@lowell-desk.lan> <444ngglbr9.fsf@lowell-desk.lan> <44vc8wjt3h.fsf@lowell-desk.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: cpc3-walt15-2-0-cust148.13-2.cable.virginmedia.com User-Agent: Pan/0.139 (Sexual Chocolate; GIT bf56508 git://git.gnome.org/pan2) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 20:09:25 -0000 On Tue, 12 Mar 2013 15:50:10 -0400, Lowell Gilbert wrote: > And it's already been fixed. Well done, and thanks! If you look at my headers, you'll see I'm using it now. From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 20:17:33 2013 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AB5FEDE2 for ; Tue, 12 Mar 2013 20:17:33 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 85B783FF for ; Tue, 12 Mar 2013 20:17:33 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id E169533C3E; Tue, 12 Mar 2013 16:17:27 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id EE43B3983C; Tue, 12 Mar 2013 16:17:26 -0400 (EDT) From: Lowell Gilbert To: Istvan Gabor Subject: Re: configure recursively and build question References: <33e0ec72.507f04c6.513f5b93.143fa@lajt.hu> Date: Tue, 12 Mar 2013 16:17:26 -0400 In-Reply-To: <33e0ec72.507f04c6.513f5b93.143fa@lajt.hu> (Istvan Gabor's message of "Tue, 12 Mar 2013 17:45:07 +0100") Message-ID: <44ppz4jru1.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-questions@FreeBSD.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 20:17:33 -0000 Istvan Gabor writes: > As there are no compiled FreeBSD 9.1 packages for pkg_tools I decided to build them. > Last I started to build kde3. First I issued make configure-recursive in > /usr/ports/x11/kde3, then make install clean, and left the computer for overnight to work. > I expected a successful build by the morning but instead I found a screen requiring some > config options (for apache). I selected the options and the build went on. > But later other config windows came up, so far for mysqlclient, sane-backends, > tk, tcl, libxine and sdl. So my question are: > > What is configure-recursive good for then? I thought it is for preventing interactions > during the build process. Ho can I really configure everything in one step and leave > the computer alone? First of all, I think you mean config-recursive. Second, config-recursive only does the configuration of the port options. Third, handling of ports options has recently been changed to a new system. See ; intended for porters but revealing much internal workings. There may be some bugs (I think I've noticed a few but haven't looked much into it. You might want to ask the ports list about that. Fourth (and, you'll be glad to hear, finally) some ports are interactive for reasons beyond options. See the manual for ports(7), noting the environment variables INTERACTIVE and BATCH. > Second, after I've done a configure-recursive, how can I start it over from scratch in case > I want to change some config option? If I reissue make configure-recursive, > I get only no configuration needed messages. If you really want to start from scratch, you can use "rmconfig-recursive" on the dependent port. Or to start *all* ports from scratch, remove the contents of /var/db/ports/. But generally you won't want to do that. What you really want is most likely to be for one particular port, or for its full tree of dependencies. In the first case, go to that port's directory and just do a "make config" there. In the second case, go to that port's directory and use "make showconfig-recursive" to figure out which ports actually need to be changed. I hope that helps. From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 22:22:11 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A5913BF9 for ; Tue, 12 Mar 2013 22:22:11 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mail-da0-x22d.google.com (mail-da0-x22d.google.com [IPv6:2607:f8b0:400e:c00::22d]) by mx1.freebsd.org (Postfix) with ESMTP id 7C4DEC17 for ; Tue, 12 Mar 2013 22:22:11 +0000 (UTC) Received: by mail-da0-f45.google.com with SMTP id v40so125870dad.4 for ; Tue, 12 Mar 2013 15:22:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; bh=Rh3zYWCacFAEugkS1GgjwX9ocFg1fN8UqbhzMQn3Oo4=; b=ygb2YEFp1Dp1uBZXcz/9St/0nK89nyLlSv121HXeUnKMxO9gZYaBXtSvWAtx6r1SZ1 NPURiTkQrr6cY2i1S008600sGu6anLwnSWI5xhqchnP0728sHuGHWU82EOYyICjuK0/r IVpIHSHOsCiU1XbR37hV87g285gq48I/15x3n6z0epR5PPsR1wmYnn1aZeLYAHRbR3l1 KQ2qjWL64DWO1RELmqvk+Jj3mR+2skbkoaNA7JyTEyXbnvrcawuwswNFiZPAjymVacfF Z2tEDTTVB1uWIi5c0by/CQmuE15L4jpfM5YkX2MYLcEc9iCZh1qu1efUz/V4Qd5xGtgL C4Lg== MIME-Version: 1.0 X-Received: by 10.68.129.73 with SMTP id nu9mr40411173pbb.57.1363126930961; Tue, 12 Mar 2013 15:22:10 -0700 (PDT) Received: by 10.68.82.106 with HTTP; Tue, 12 Mar 2013 15:22:10 -0700 (PDT) In-Reply-To: References: <1BBFCBC0B60383A7EC5EC83C@utd71538.campus.ad.utdallas.edu> <1362177513.29467.21.camel@z6000.lenzicasa> Date: Tue, 12 Mar 2013 18:22:10 -0400 Message-ID: Subject: Re: FBSD 9.1.0 - make buildworld running for 1.5 hours??? From: "illoai@gmail.com" To: George Kontostanos Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Questions List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 22:22:11 -0000 On 7 March 2013 08:09, George Kontostanos wrote: > On Sat, Mar 2, 2013 at 12:38 AM, Sergio de Almeida Lenzi > wrote: >> Em Sex, 2013-03-01 =E0s 12:29 -0600, Paul Schmehl escreveu: >> >>> I'm running make buildworld on a quad processor quad core box with 16GB= of >>> ram, and it's been running already for more than an hour and a half. H= as >>> world really gotten that huge? Good lord! Good thing we have >>> freebsd-update! >>> >> >> Perhaps you did not use the -j option on the make buildworld... >> >> >> env NOCLEAN=3Dyes DESTDIR=3D make -j 4 buildworld >> >> without the -j option it runs on only one processor and can take up to 5 >> hours... >> >> >> >> Sergio ... > > You can easily go to -j16 if the box is not doing anything else. With 16 cores I'll bet the bottleneck is IO. If it were me, I'd do the build in a tmpfs(5). --=20 -- From owner-freebsd-questions@FreeBSD.ORG Tue Mar 12 23:39:11 2013 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 500D06B5 for ; Tue, 12 Mar 2013 23:39:11 +0000 (UTC) (envelope-from freebsd@chthonixia.net) Received: from www5.pairlite.com (www5.pairlite.com [64.130.10.15]) by mx1.freebsd.org (Postfix) with ESMTP id 1D006185 for ; Tue, 12 Mar 2013 23:39:10 +0000 (UTC) Received: from whisperer.chthonixia.net (unknown [184.152.30.105]) by www5.pairlite.com (Postfix) with ESMTPSA id C66942E312 for ; Tue, 12 Mar 2013 19:33:22 -0400 (EDT) Date: Tue, 12 Mar 2013 19:35:29 -0400 From: Joe Altman To: freebsd-questions@FreeBSD.org Subject: Re: snd_hda and front headphones jack Message-ID: <20130312233529.GA68834@whisperer.chthonixia.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 23:39:11 -0000 On Tue, Mar 12, 2013 at 08:55:49AM -0500, Mark Felder wrote: > Hi guys, > > I seem to be having problems getting my front headphones jack to work. > > > If I am looking at this right I believe I need to set nid25 to as=1 which > matches the nid31 Speaker and probably also set seq=15. However, this > doesn't seem to be working. Am I overlooking something obvious? In XMMS, which is what I use, I have to choose the Front Analog (pcm 2) via Options => Preferences => Configure => Output Plugin for the front headphone jack. Normally, I have it set to Rear Digital (pcm 3) for speakers. HTH, Joe From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 01:36:24 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3D647E3 for ; Wed, 13 Mar 2013 01:36:24 +0000 (UTC) (envelope-from bc979@lafn.org) Received: from zoom.lafn.org (zoom.lafn.org [108.92.93.123]) by mx1.freebsd.org (Postfix) with ESMTP id AF4E97D3 for ; Wed, 13 Mar 2013 01:36:23 +0000 (UTC) Received: from [10.0.1.2] (static-71-177-216-148.lsanca.fios.verizon.net [71.177.216.148]) (authenticated bits=0) by zoom.lafn.org (8.14.3/8.14.2) with ESMTP id r2D1aFIa087578 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO) for ; Tue, 12 Mar 2013 18:36:16 -0700 (PDT) (envelope-from bc979@lafn.org) From: Doug Hardie Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Using bsdinstall to create MBR Message-Id: <9EA95DBE-04D0-4AAE-9ED8-BCDAFD6AEF55@lafn.org> Date: Tue, 12 Mar 2013 18:36:15 -0700 To: Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) X-Mailer: Apple Mail (2.1499) X-Virus-Scanned: clamav-milter 0.97 at zoom.lafn.org X-Virus-Status: Clean X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 01:36:24 -0000 I am trying to use bsdinstall to create a MBR partitioned disk. I can = set the partition type to MBR fine. However, when trying to add in = slices I can't figure out what to enter for the parameters. Everything = I have tried gives an error message. I wanted one for / and one for = swap. How do I create the two slices? From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 01:48:51 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B61E086C for ; Wed, 13 Mar 2013 01:48:51 +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 7DE71843 for ; Wed, 13 Mar 2013 01:48:51 +0000 (UTC) Received: from r56.edvax.de (port-92-195-30-57.dynamic.qsc.de [92.195.30.57]) by mx01.qsc.de (Postfix) with ESMTP id DC73F3D0BE; Wed, 13 Mar 2013 02:48:43 +0100 (CET) Received: from r56.edvax.de (localhost [127.0.0.1]) by r56.edvax.de (8.14.5/8.14.5) with SMTP id r2D1mmQn002950; Wed, 13 Mar 2013 02:48:48 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Wed, 13 Mar 2013 02:48:48 +0100 From: Polytropon To: Doug Hardie Subject: Re: Using bsdinstall to create MBR Message-Id: <20130313024848.391b2eea.freebsd@edvax.de> In-Reply-To: <9EA95DBE-04D0-4AAE-9ED8-BCDAFD6AEF55@lafn.org> References: <9EA95DBE-04D0-4AAE-9ED8-BCDAFD6AEF55@lafn.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 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 01:48:51 -0000 On Tue, 12 Mar 2013 18:36:15 -0700, Doug Hardie wrote: > I am trying to use bsdinstall to create a MBR partitioned disk. > I can set the partition type to MBR fine. However, when trying > to add in slices I can't figure out what to enter for the parameters. > Everything I have tried gives an error message. I wanted one for / > and one for swap. How do I create the two slices? In what step of 2.7.2 (Manual Partitioning) do you experience problems? Can you provide the text of the error message? http://www.freebsd.org/doc/handbook/bsdinstall-partitioning.html This chapter covers GPT and MBR partitioning with the new bsdinstall program. If you don't have success using the installer, just try to use the command line's default tools. With gpart you can create GPT and MBR partitioning, but you can also use the "old-fashioned" tools like fdisk and disklabel / bsdlabel. You should be able to access them via the shell. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 01:50:49 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EAC3C981 for ; Wed, 13 Mar 2013 01:50:49 +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 A069E865 for ; Wed, 13 Mar 2013 01:50:49 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.6/8.14.6) with ESMTP id r2D1oh9p064689; Tue, 12 Mar 2013 19:50:43 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.6/8.14.6/Submit) with ESMTP id r2D1ohLR064686; Tue, 12 Mar 2013 19:50:43 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Tue, 12 Mar 2013 19:50:43 -0600 (MDT) From: Warren Block To: Doug Hardie Subject: Re: Using bsdinstall to create MBR In-Reply-To: <9EA95DBE-04D0-4AAE-9ED8-BCDAFD6AEF55@lafn.org> Message-ID: References: <9EA95DBE-04D0-4AAE-9ED8-BCDAFD6AEF55@lafn.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]); Tue, 12 Mar 2013 19:50:43 -0600 (MDT) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 01:50:50 -0000 On Tue, 12 Mar 2013, Doug Hardie wrote: > I am trying to use bsdinstall to create a MBR partitioned disk. I can > set the partition type to MBR fine. However, when trying to add in > slices I can't figure out what to enter for the parameters. > Everything I have tried gives an error message. I wanted one for / > and one for swap. How do I create the two slices? http://forums.freebsd.org/showpost.php?p=149210&postcount=13 From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 03:15:03 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4F107B41 for ; Wed, 13 Mar 2013 03:15:03 +0000 (UTC) (envelope-from erichsfreebsdlist@alogt.com) Received: from alogt.com (alogt.com [69.36.191.58]) by mx1.freebsd.org (Postfix) with ESMTP id 31FA3CBF for ; Wed, 13 Mar 2013 03:15:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=alogt.com; s=default; h=Content-Transfer-Encoding:Content-Type:Mime-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=72Aa+2il3io0oBtHlJf2GY8otvKzlFjdyv3k6+83uDY=; b=AZRty9YfOeAMDMvL/1YfQ54nqnCP8qZJeXO6Ys09jsLwqpyOcqK4cCDwgHsCTVGcagStcirrs+MpxjN9CGkZRY3ugCHwsP1fcdPPA/90GitvJAVvIIHLDSDup6xIvFUMD35QBeL/oj9yYKiQlY1QqJ3fmMXuv3PMIiq9FK0bLi8=; Received: from [122.129.203.50] (port=63314 helo=X220.ovitrap.com) by sl-508-2.slc.westdc.net with esmtpsa (SSLv3:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1UFbX3-003ugX-PR; Tue, 12 Mar 2013 20:35:10 -0600 Date: Wed, 13 Mar 2013 09:35:06 +0700 From: Erich Dollansky To: Doug Hardie Subject: Re: Using bsdinstall to create MBR Message-ID: <20130313093506.76dd3d6f@X220.ovitrap.com> In-Reply-To: <9EA95DBE-04D0-4AAE-9ED8-BCDAFD6AEF55@lafn.org> References: <9EA95DBE-04D0-4AAE-9ED8-BCDAFD6AEF55@lafn.org> X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.6; amd64-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sl-508-2.slc.westdc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - alogt.com X-Get-Message-Sender-Via: sl-508-2.slc.westdc.net: authenticated_id: erichsfreebsdlist@alogt.com X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 03:15:03 -0000 Hi, On Tue, 12 Mar 2013 18:36:15 -0700 Doug Hardie wrote: > I am trying to use bsdinstall to create a MBR partitioned disk. I > can set the partition type to MBR fine. However, when trying to add > in slices I can't figure out what to enter for the parameters. > Everything I have tried gives an error message. I wanted one for / > and one for swap. How do I create the two slices? > I would recommend gpart. You can find out more here: http://www.wonkity.com/~wblock/docs/html/disksetup.html Erich > _______________________________________________ > 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 Mar 13 04:25:50 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DFD9DA76 for ; Wed, 13 Mar 2013 04:25:50 +0000 (UTC) (envelope-from bc979@lafn.org) Received: from zoom.lafn.org (zoom.lafn.org [108.92.93.123]) by mx1.freebsd.org (Postfix) with ESMTP id AEE1FF8A for ; Wed, 13 Mar 2013 04:25:50 +0000 (UTC) Received: from [10.0.1.2] (static-71-177-216-148.lsanca.fios.verizon.net [71.177.216.148]) (authenticated bits=0) by zoom.lafn.org (8.14.3/8.14.2) with ESMTP id r2D4PlBe091463 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Tue, 12 Mar 2013 21:25:48 -0700 (PDT) (envelope-from bc979@lafn.org) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: Using bsdinstall to create MBR From: Doug Hardie In-Reply-To: Date: Tue, 12 Mar 2013 21:25:46 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: References: <9EA95DBE-04D0-4AAE-9ED8-BCDAFD6AEF55@lafn.org> To: Warren Block X-Mailer: Apple Mail (2.1499) X-Virus-Scanned: clamav-milter 0.97 at zoom.lafn.org X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 04:25:50 -0000 On 12 March 2013, at 18:50, Warren Block wrote: > On Tue, 12 Mar 2013, Doug Hardie wrote: >=20 >> I am trying to use bsdinstall to create a MBR partitioned disk. I = can set the partition type to MBR fine. However, when trying to add in = slices I can't figure out what to enter for the parameters. Everything I = have tried gives an error message. I wanted one for / and one for swap. = How do I create the two slices? >=20 > http://forums.freebsd.org/showpost.php?p=3D149210&postcount=3D13 >=20 Thank you !!!!. That shows the correct procedure. I never would have = guessed that. It works just fine. This needs to be included in the = handbook.= From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 05:55:40 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E32769F5 for ; Wed, 13 Mar 2013 05:55:40 +0000 (UTC) (envelope-from justasic@gmail.com) Received: from mail-pb0-f51.google.com (mail-pb0-f51.google.com [209.85.160.51]) by mx1.freebsd.org (Postfix) with ESMTP id 911E5333 for ; Wed, 13 Mar 2013 05:55:40 +0000 (UTC) Received: by mail-pb0-f51.google.com with SMTP id un15so658817pbc.10 for ; Tue, 12 Mar 2013 22:55:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=HOTQZJ+MNTApGn17yo8JNhCYdDBvbGbo7nSwvZbWiE4=; b=LDXb+HFJUKeVZjwWk3y77lA0MezVfX6wxMvFtfn6tnal4ApoRsJ3WkCM3G4FaQ2sM3 wIBiW1B36z6JDHqfq4nhMK1j+3QkmZGqbbmiQ8i18Zt+qZAXJEyCm7sTyF1X3SNHJOtS FXCmTvyFDInkuOFniaQKXrWYDkkoYzfOZQn3OIS0WaKwH2K10SWEeaKdDrqhOqa4wnEM +so9k67yJ7l2jfz/rp+B1gsP0qOt7aXXv6Ms7o5/ILy2rK/DiKWIofAFIZSh3ynicywS x9EBvmayDw7D1gClm80ZsbO3mLgo05A6TGm2HwmtabWSrBcGRZm71sZhkQiPe0s7NXZR 5bVw== X-Received: by 10.68.201.194 with SMTP id kc2mr42617553pbc.27.1363154139832; Tue, 12 Mar 2013 22:55:39 -0700 (PDT) Received: from [15.0.1.4] (71-32-242-100.ptld.qwest.net. [71.32.242.100]) by mx.google.com with ESMTPS id eh5sm28115084pbc.44.2013.03.12.22.55.38 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 12 Mar 2013 22:55:39 -0700 (PDT) Message-ID: <514014DF.1080604@gmail.com> Date: Tue, 12 Mar 2013 22:55:43 -0700 From: Justin Crawford User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Freebsd 9.1 kernel compile with Physical Address Extension Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 05:55:40 -0000 Hi, I have been trying to compile the 9.1 kernel for an older system which has PAE support, unfortunately because -Werror is enabled, I cannot complete the compile (see warnings below). I am running a fresh install of FreeBSD 9.1-RELEASE. I can successfully compile the kernel without PAE. Kernel config: http://pastebin.com/5mzQagKM cc1: warnings being treated as errors /usr/src/sys/cam/ctl/ctl_frontend_cam_sim.c: In function 'cfcs_datamove': /usr/src/sys/cam/ctl/ctl_frontend_cam_sim.c:423: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] /usr/src/sys/cam/ctl/ctl_frontend_cam_sim.c:449: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] *** [ctl_frontend_cam_sim.o] Error code 1 I am new to the mailing lists (and mailing lists in general) so let me know if you need any more information. Thanks From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 06:20:56 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3C767D26 for ; Wed, 13 Mar 2013 06:20:56 +0000 (UTC) (envelope-from baerks@t-online.de) Received: from mailout10.t-online.de (mailout10.t-online.de [194.25.134.21]) by mx1.freebsd.org (Postfix) with ESMTP id E52B73EE for ; Wed, 13 Mar 2013 06:20:55 +0000 (UTC) Received: from fwd57.aul.t-online.de (fwd57.aul.t-online.de ) by mailout10.t-online.de with smtp id 1UFf3Q-00043o-0I; Wed, 13 Mar 2013 07:20:48 +0100 Received: from amd.mersam.homelinux.org (Tt2uBwZCZhF5aRV+vVOf9y6ToSRHu12hbUrAndufUlrU+h0K6fhefWQHBQUUrpeQhj@[84.128.249.151]) by fwd57.aul.t-online.de with esmtp id 1UFf3P-24zrTE0; Wed, 13 Mar 2013 07:20:47 +0100 Received: from amd.catfish.ddns.org (localhost [127.0.0.1]) by amd.mersam.homelinux.org (8.14.5/8.14.5) with ESMTP id r2D6KhNV028938 for ; Wed, 13 Mar 2013 07:20:44 +0100 (CET) (envelope-from monkel@amd.catfish.ddns.org) Received: (from monkel@localhost) by amd.catfish.ddns.org (8.14.5/8.14.5/Submit) id r2D6KhHR028937 for freebsd-questions@freebsd.org; Wed, 13 Mar 2013 07:20:43 +0100 (CET) (envelope-from monkel) Date: Wed, 13 Mar 2013 07:20:42 +0100 From: Sabine Baer To: freebsd-questions@freebsd.org Subject: man mailcap Message-ID: <20130313062042.GF19073@amd.catfish.ddns.org> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4.2.3i X-ID: Tt2uBwZCZhF5aRV+vVOf9y6ToSRHu12hbUrAndufUlrU+h0K6fhefWQHBQUUrpeQhj X-TOI-MSGID: 99492ff9-70ea-453b-a1de-a57f3d4dbec0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 06:20:56 -0000 Hello, some time ago I upgraded from 7.6 to 8.3. Now I see that there's no manpage for mailcap anymore. I've got a backup of the old manpage, but why does it lack on 8.n? My .mailcap files do work but I would add something and was in need of a little help from the manpage. $apropos mailcap gives only |run-mailcap(1), view(1), see(1), edit(1), compose(1), print(1) - |execute programs via entries in the mailcap file Mail::Cap(3) |- Parse mailcap files which is a crap because eg 'view' is some kind of 'vim'. Sabine -- "Wissenschaftlich betrachtet wird das Häuschen kaputt sein." (Th. Waschke in dswc auf die Frage eines wissenschftlich Interessierten, was mit einem Holzhaus, in dem eine Atombombe gezuendet wird, passiere.) From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 14:59:21 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9D163892 for ; Wed, 13 Mar 2013 14:59:21 +0000 (UTC) (envelope-from paul@ifdnrg.com) Received: from outbound.ifdnrg.com (outbound.ifdnrg.com [193.200.98.76]) by mx1.freebsd.org (Postfix) with ESMTP id 48DE4C1C for ; Wed, 13 Mar 2013 14:59:21 +0000 (UTC) Received: from [192.168.1.105] (cpc15-sgyl30-2-0-cust460.18-2.cable.virginmedia.com [82.39.117.205]) (authenticated bits=0) by outbound.ifdnrg.com (8.14.5/8.14.5) with ESMTP id r2DExDlp010862 for ; Wed, 13 Mar 2013 14:59:13 GMT (envelope-from paul@ifdnrg.com) Message-ID: <51409444.1090803@ifdnrg.com> Date: Wed, 13 Mar 2013 14:59:16 +0000 From: Paul Macdonald User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: questions@freebsd.org Subject: /23 static routing question Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 14:59:21 -0000 Hi, I have added an IP of the 2nd group of 254 addresses in a /23. let's call them 100.100.98.0 and 100.100.99.0 what's the correct way to set up the routing table for this and how my rc.conf should look Currently netstat shows something like the below Destination Gateway Flags Refs Use Netif Expire default 100.100.98.254 UGS 0 111301074 bge0 100.100.98.0 link#1 U 0 1470707172 bge0 But i suspect i want: Internet: Destination Gateway Flags Refs Use Netif Expire default 100.100.98.254 UGS 0 111301074 bge0 100.100.98.0 link#1 U 0 1470707172 bge0 100.100.99.0 link#1 U 0 1470707172 bge0 or 100.100.98.0/23 link#1 U 0 1470707172 bge0 many thanks Paul. -- ------------------------- Paul Macdonald IFDNRG Ltd Web and video hosting ------------------------- t: 0131 5548070 m: 07970339546 e: paul@ifdnrg.com w: http://www.ifdnrg.com ------------------------- IFDNRG 40 Maritime Street Edinburgh EH6 6SA ---------------------------------------------------- High Specification Dedicated Servers from £100.00pm ---------------------------------------------------- From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 15:35:05 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 455107E9 for ; Wed, 13 Mar 2013 15:35:05 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-vc0-f172.google.com (mail-vc0-f172.google.com [209.85.220.172]) by mx1.freebsd.org (Postfix) with ESMTP id EE233EF3 for ; Wed, 13 Mar 2013 15:35:04 +0000 (UTC) Received: by mail-vc0-f172.google.com with SMTP id l6so624411vcl.3 for ; Wed, 13 Mar 2013 08:35:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=0oW9ImwWkqfYynpY5f8WMU/YgWohE21JbrcDhoMAEEo=; b=iC5tTBHqBZUFSAkjbkCkkg1jz6QkAwLcfdwPGHdmznxuWtMW/3ywMNOxkE+kT802Ls 9+gbji83eCOWI/Uvkr6lp4NU6DmRhKqx5M2xLkKIZtL9ygUwRGoERVGUop/XUjOt/fFk l6QEXBgJ/S19pavYXnyP+7nwoCDo6YTdoFOK+OV73xYxWyRvFPxOJsQvzFDku03PvU4z jiCi8MtKjyRoPWlSJMPrby8pW6wXAm5GRS2FMfLFEBLRM51ky3wPLYaafCQmbicPksyF J9BrV0g+yTyrB6rVKG/QwlS+owYMrcuYlmf3P3IsUrD8LH/zcKXcPKLE4Ssa+yWxoK8u 1BXQ== X-Received: by 10.52.156.41 with SMTP id wb9mr7247229vdb.65.1363188904062; Wed, 13 Mar 2013 08:35:04 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id yu12sm5307255vec.6.2013.03.13.08.35.01 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 13 Mar 2013 08:35:02 -0700 (PDT) Message-ID: <51409CA3.1060007@gmail.com> Date: Wed, 13 Mar 2013 10:34:59 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Bernt Hansson Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <5140973A.1080807@bananmonarki.se> In-Reply-To: <5140973A.1080807@bananmonarki.se> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: c.petrik.sosa@gmail.com, jmc-freebsd2@milibyte.co.uk, Matthias Apitz , "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 15:35:05 -0000 On 03/13/13 10:11, Bernt Hansson wrote: > On 2013-03-10 20:26, Joseph A. Nagy, Jr wrote: >> On 03/05/13 23:47, Matthias Apitz wrote: >>> El día Tuesday, March 05, 2013 a las 03:42:15PM -0600, Joseph A. >>> Nagy, Jr escribió: >> > Canon pixma mp210. Is not 100% supported under cups. > > > Surprise surprise -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 15:37:27 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D8E7D8BD for ; Wed, 13 Mar 2013 15:37:27 +0000 (UTC) (envelope-from paul@ifdnrg.com) Received: from outbound.ifdnrg.com (outbound.ifdnrg.com [193.200.98.76]) by mx1.freebsd.org (Postfix) with ESMTP id 8D69EF1C for ; Wed, 13 Mar 2013 15:37:27 +0000 (UTC) Received: from [192.168.1.105] (cpc15-sgyl30-2-0-cust460.18-2.cable.virginmedia.com [82.39.117.205]) (authenticated bits=0) by outbound.ifdnrg.com (8.14.5/8.14.5) with ESMTP id r2DFbQTD020781 for ; Wed, 13 Mar 2013 15:37:26 GMT (envelope-from paul@ifdnrg.com) Message-ID: <51409D39.6030107@ifdnrg.com> Date: Wed, 13 Mar 2013 15:37:29 +0000 From: Paul Macdonald User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: questions@freebsd.org Subject: SOLVED /23 static routing question References: <51409444.1090803@ifdnrg.com> In-Reply-To: <51409444.1090803@ifdnrg.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 15:37:27 -0000 On 13/03/2013 14:59, Paul Macdonald wrote: > > Hi, > > I have added an IP of the 2nd group of 254 addresses in a /23. > > let's call them 100.100.98.0 and 100.100.99.0 > > what's the correct way to set up the routing table for this and how my > rc.conf should look > > Currently netstat shows something like the below > > Destination Gateway Flags Refs Use Netif Expire > default 100.100.98.254 UGS 0 111301074 bge0 > 100.100.98.0 link#1 U 0 1470707172 bge0 > > But i suspect i want: > > Internet: > Destination Gateway Flags Refs Use Netif Expire > default 100.100.98.254 UGS 0 111301074 bge0 > 100.100.98.0 link#1 U 0 1470707172 bge0 > 100.100.99.0 link#1 U 0 1470707172 bge0 > > or > 100.100.98.0/23 link#1 U 0 1470707172 bge0 > > restarting routing seemed to do this fine...:P /" FreeBSD will automatically identify any hosts (//test0//in the example) on the local Ethernet and add a route for that host, directly to it over the Ethernet interface, //ed0"// /http://www.freebsd.org/doc/handbook/network-routing.html From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 18:52:00 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BCDF9CE2 for ; Wed, 13 Mar 2013 18:52:00 +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 750F7EC3 for ; Wed, 13 Mar 2013 18:52:00 +0000 (UTC) Received: from [82.113.99.36] (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 1UFqmF-0005JZ-AJ for freebsd-questions@freebsd.org; Wed, 13 Mar 2013 19:51:52 +0100 Received: from tiny.Sisis.de (localhost [127.0.0.1]) by tiny.Sisis.de (8.14.5/8.14.3) with ESMTP id r2DIplVg001578 for ; Wed, 13 Mar 2013 19:51:47 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by tiny.Sisis.de (8.14.5/8.14.3/Submit) id r2DIpjTN001567 for freebsd-questions@freebsd.org; Wed, 13 Mar 2013 19:51:45 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: tiny.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Wed, 13 Mar 2013 19:51:44 +0100 From: Matthias Apitz To: freebsd-questions@freebsd.org Subject: Re: Problems Printing Message-ID: <20130313185143.GA1222@tiny.Sisis.de> References: <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <5140973A.1080807@bananmonarki.se> <51409CA3.1060007@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <51409CA3.1060007@gmail.com> 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.36 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 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, 13 Mar 2013 18:52:00 -0000 El día Wednesday, March 13, 2013 a las 10:34:59AM -0500, Joseph A. Nagy, Jr escribió: > On 03/13/13 10:11, Bernt Hansson wrote: > > On 2013-03-10 20:26, Joseph A. Nagy, Jr wrote: > >> On 03/05/13 23:47, Matthias Apitz wrote: > >>> El día Tuesday, March 05, 2013 a las 03:42:15PM -0600, Joseph A. > >>> Nagy, Jr escribió: > >> > > Canon pixma mp210. Is not 100% supported under cups. > > > > > > > > Surprise surprise Whatever this means if something "is not 100% supported under cups", if the printer in question understands Postscript or PCL it will be possible with (or without) CUPS to print nearly any file to it. The OP should provide the detailed information he was asked for, or he is on his own and we can close this thread. matthias -- Sent from my FreeBSD netbook Matthias Apitz | - No system with backdoors like Apple/Android E-mail: guru@unixarea.de | - Never being an iSlave WWW: http://www.unixarea.de/ | - No proprietary attachments, no HTML/RTF in E-mail phone: +49-170-4527211 | - Respect for open standards From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 20:54:56 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D44D61CB for ; Wed, 13 Mar 2013 20:54:56 +0000 (UTC) (envelope-from cpet@sdf.org) Received: from sdf.lonestar.org (mx.sdf.org [192.94.73.19]) by mx1.freebsd.org (Postfix) with ESMTP id B6AE7968 for ; Wed, 13 Mar 2013 20:54:56 +0000 (UTC) Received: from [192.168.1.65] (dsl-187-150-17-53-dyn.prod-infinitum.com.mx [187.150.17.53] (may be forged)) (authenticated (0 bits)) by sdf.lonestar.org (8.14.5/8.14.5) with ESMTP id r2DKsdvK028070 for ; Wed, 13 Mar 2013 20:54:39 GMT Message-ID: <5140E795.1040305@sdf.org> Date: Wed, 13 Mar 2013 14:54:45 -0600 From: Chris Petrik User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130308 Thunderbird/17.0.4 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <5140973A.1080807@bananmonarki.se> <51409CA3.1060007@gmail.com> In-Reply-To: <51409CA3.1060007@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 20:54:56 -0000 On 03/13/2013 09:34 AM, Joseph A. Nagy, Jr wrote: > On 03/13/13 10:11, Bernt Hansson wrote: >> On 2013-03-10 20:26, Joseph A. Nagy, Jr wrote: >>> On 03/05/13 23:47, Matthias Apitz wrote: >>>> El día Tuesday, March 05, 2013 a las 03:42:15PM -0600, Joseph A. >>>> Nagy, Jr escribió: >>> >> Canon pixma mp210. Is not 100% supported under cups. >> >> >> > > Surprise surprise > should of been done before posting here if said printer is supported or not. From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 21:26:30 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id DA7A0EB2 for ; Wed, 13 Mar 2013 21:26:30 +0000 (UTC) (envelope-from andre@drenet.info) Received: from mail-ye0-f171.google.com (mail-ye0-f171.google.com [209.85.213.171]) by mx1.freebsd.org (Postfix) with ESMTP id A09B4C41 for ; Wed, 13 Mar 2013 21:26:30 +0000 (UTC) Received: by mail-ye0-f171.google.com with SMTP id m13so265569yen.30 for ; Wed, 13 Mar 2013 14:26:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=drenet.info; s=google; h=x-received:content-type:date:to:subject:mime-version :content-transfer-encoding:from:message-id:user-agent; bh=Zch/f01sr7bYCXW68O8giC28HRkpWSUTCPjJx4PLuLk=; b=QnkZyy9oyMdKCEBvRnjXsQbou9LKvr77J0Lixs9yXhvTWzg+KJk3szRkvaAkchwEsf cpJ7crhSY1xivX3zgIQ2ysww6o0yqPqxeAJiqlNoBsYVRYH5mm/JIKqLGDvvmtOO+bPf ++LiH1sKMghIIdbr2eb38pUBrrIDqllc6ybnc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:content-type:date:to:subject:mime-version :content-transfer-encoding:from:message-id:user-agent :x-gm-message-state; bh=Zch/f01sr7bYCXW68O8giC28HRkpWSUTCPjJx4PLuLk=; b=OHKolJ1lMK8l/ALGanW2ESfsv6rh8JNQceytJ4+OZQYgKr9SVwQVy/UzB7fc8Wy1FG CT+BhBNIoSvbU/F6HPUGl/5TSQtiTSnrpAY1GKOyCRqfPQ89zjdHlt1jhdQgFhvvgtpe R+OoO4WTeqtCj/Rp2z+JLF2m4qb/RNFpwAVCEHtagJxmJK1ix4c/WJMECVK8fUtjd2NU v8BrvIUrL1q+ve10R1Uy93YTDwfSJazRLVuKbbPinzbjyLtpr+5onghUEPz+uFweM66O G5PJj5T4UPX4VOJtcvS7Ls1F1cDc+rFfV3tuCKybBjPaEtAApTsQZYROnSSRzaGXj8W3 F3FQ== X-Received: by 10.236.137.107 with SMTP id x71mr16997114yhi.2.1363209989288; Wed, 13 Mar 2013 14:26:29 -0700 (PDT) Received: from sideswipe-dt.accesso.office ([75.112.170.101]) by mx.google.com with ESMTPS id s34sm16869yhe.9.2013.03.13.14.26.27 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 13 Mar 2013 14:26:28 -0700 (PDT) Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes Date: Wed, 13 Mar 2013 17:26:26 -0400 To: "freebsd-questions@freebsd.org" Subject: Issue with building custom kernel MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Andre Goree" Message-ID: User-Agent: Opera Mail/12.14 (FreeBSD) X-Gm-Message-State: ALoCoQmPMvkJWndCJ5ae7mmAowqb9OLL5dq64p2vrwjaJPN2vWG2+OfowfNJzfSKuIE7LrRCbMJ/ X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 21:26:30 -0000 I seem to be having trouble building my custom kernel. I've removed several things that I believe were unnecessary, and added Linux support, but I don't think I'm missing anything that is very important. Here is the last few lines of the build: ===> zlib (all) /usr/local/libexec/ccache/world/cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/BUILD130313/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -g -fno-omit-frame-pointer -I/usr/obj/usr/src/sys/BUILD130313 -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -c /usr/src/sys/modules/zlib/../../net/zlib.c ld -d -warn-common -r -d -o zlib.ko.debug zlib.o :> export_syms awk -f /usr/src/sys/conf/kmod_syms.awk zlib.ko.debug export_syms | xargs -J% objcopy % zlib.ko.debug objcopy --only-keep-debug zlib.ko.debug zlib.ko.symbols objcopy --strip-debug --add-gnu-debuglink=zlib.ko.symbols zlib.ko.debug zlib.ko 1 error *** [buildkernel] Error code 2 1 error *** [buildkernel] Error code 2 1 error Here is my KERNCONF: http://www.drenet.net/BUILD130313 I've also created a diff of what's missing from my configuration compared to GENERIC: http://www.drenet.net/kern_diff.txt Thanks in advance for any guidance you can provide! -- Andre Goree andre@drenet.info From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 21:30:21 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 53469316 for ; Wed, 13 Mar 2013 21:30:21 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-we0-x22f.google.com (mail-we0-x22f.google.com [IPv6:2a00:1450:400c:c03::22f]) by mx1.freebsd.org (Postfix) with ESMTP id D0134D25 for ; Wed, 13 Mar 2013 21:30:20 +0000 (UTC) Received: by mail-we0-f175.google.com with SMTP id x8so1497918wey.6 for ; Wed, 13 Mar 2013 14:30:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=UtVH0vdOS1ism0nWgpbCGcoNZ7QVxPxmk8sjvREM6no=; b=EPccyrdvOe9IV/zAh67BvOeYNYqeEGQSDAp+tdVaLqlXnHl8bxjPRo+NFAlSdzkMbE dL3y4mIO5lB0c3awEHd5JeLW9/ptkxSfM4vNFXbvl5rxrK7kDfuIl4st7BjTfK4+SQtj YDgJYpcRHOVhmDGUzjGj70YBOILR0O4NZ+LL653qN1Y8iHd2vgLJcGCPvYu+jcXh8ky0 EAiS89eMAI5WSJSk7Qjo15OIMec53RC8/qkyB0CHB9IKC5eK0FyOiqRDQtMNPCXsh5Dr vsmjAh7U4FvdQRg2Fagr0n16W5/rCxTFshQ3XJo2nFCZKuUTvQqd6/VV7SVZCnLveo3l 0/IA== X-Received: by 10.180.19.39 with SMTP id b7mr6405080wie.15.1363210219950; Wed, 13 Mar 2013 14:30:19 -0700 (PDT) Received: from [192.168.0.34] (184.66.91.91.rev.sfr.net. [91.91.66.184]) by mx.google.com with ESMTPS id t7sm5388467wij.2.2013.03.13.14.30.18 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 13 Mar 2013 14:30:18 -0700 (PDT) Message-ID: <5140EFE7.7020508@gmail.com> Date: Wed, 13 Mar 2013 22:30:15 +0100 From: David Demelier User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130310 Thunderbird/17.0.4 MIME-Version: 1.0 To: FreeBSD questions Subject: Disable liberation fonts Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 21:30:21 -0000 Hello, I've installed editors/libreoffice, but that port requires liberation fonts. I have nothing against that but when liberations font is installed the fonts looks so ugly in firefox and sometime when I click links, all the text in the page get bold for a second, it's just annoying. I'm not used to fontconfig sadly, I just want to disable every liberation fonts but not deinstall it (to use it if needed in libreoffice). Regards, David. From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 21:49:14 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 036CC888 for ; Wed, 13 Mar 2013 21:49:14 +0000 (UTC) (envelope-from ml@my.gd) Received: from mail-wg0-f49.google.com (mail-wg0-f49.google.com [74.125.82.49]) by mx1.freebsd.org (Postfix) with ESMTP id 94F55EC0 for ; Wed, 13 Mar 2013 21:49:13 +0000 (UTC) Received: by mail-wg0-f49.google.com with SMTP id ds1so465566wgb.4 for ; Wed, 13 Mar 2013 14:49:06 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:references:mime-version:in-reply-to:content-type :content-transfer-encoding:message-id:cc:x-mailer:from:subject:date :to:x-gm-message-state; bh=/x4G+Zfdka1SUijOrkRIe4eHwMfKiXsR/YsmVYUZqVU=; b=GgSzTNVlzREzCNr3lIWwhDer7pPSTFnaKABERrHJZYdMrH/ADV6eSCPmmOtjXhR+sq NOYppx70NrEK34ZHKRA2mihJralXiMC7SFop4skB0P0cASS2RmFAmuVZ45X3yO+Xz1iN BGbcN/yTzqjUU1aI4dV1u1uXBjuYKVtB6Higzh5cq1ZGf7H7veJW7hIYGxXi+DR/aFw+ aqJ0lQG6ViWEmF6bGlMyHnkW1TdUsOEGveK3+3Euj/gVV9v4Kj61GGiuUjMAHcmQ/gGa f9LWbFEBfbbF81E7BzHWWtIUIVzsuWI745kb/p+OMGMig0IX27jxjQ7p2lvMp48tyf0g V/0w== X-Received: by 10.180.91.106 with SMTP id cd10mr19654wib.6.1363211346333; Wed, 13 Mar 2013 14:49:06 -0700 (PDT) Received: from [10.41.32.4] ([92.90.16.94]) by mx.google.com with ESMTPS id du2sm5473924wib.0.2013.03.13.14.49.04 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 13 Mar 2013 14:49:04 -0700 (PDT) References: Mime-Version: 1.0 (1.0) In-Reply-To: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: X-Mailer: iPhone Mail (10B144) From: Damien Fleuriot Subject: Re: Issue with building custom kernel Date: Wed, 13 Mar 2013 22:43:40 +0100 To: Andre Goree X-Gm-Message-State: ALoCoQlK8qPsALsXOpuDk2kJHuEJD1xSQk/cilgN6tkPWNs/63lwUXVeKwBa7t37AwHwUc+SvqMu Cc: "freebsd-questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 21:49:14 -0000 On 13 Mar 2013, at 22:26, "Andre Goree" wrote: > I seem to be having trouble building my custom kernel. I've removed sever= al things that I believe were unnecessary, and added Linux support, but I do= n't think I'm missing anything that is very important. Here is the last few= lines of the build: >=20 > =3D=3D=3D> zlib (all) > /usr/local/libexec/ccache/world/cc -O2 -pipe -fno-strict-aliasing -Werror -= D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /usr= /obj/usr/src/sys/BUILD130313/opt_global.h -I. -I@ -I@/contrib/altq -finline-= limit=3D8000 --param inline-unit-growth=3D100 --param large-function-growth=3D= 1000 -fno-common -g -fno-omit-frame-pointer -I/usr/obj/usr/src/sys/BUILD1303= 13 -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asy= nchronous-unwind-tables -ffreestanding -fstack-protector -std=3Diso9899:1999= -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototy= pes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno= -pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show= -option -c /usr/src/sys/modules/zlib/../../net/zlib.c > ld -d -warn-common -r -d -o zlib.ko.debug zlib.o > :> export_syms > awk -f /usr/src/sys/conf/kmod_syms.awk zlib.ko.debug export_syms | xargs -= J% objcopy % zlib.ko.debug > objcopy --only-keep-debug zlib.ko.debug zlib.ko.symbols > objcopy --strip-debug --add-gnu-debuglink=3Dzlib.ko.symbols zlib.ko.debug z= lib.ko > 1 error > *** [buildkernel] Error code 2 > 1 error > *** [buildkernel] Error code 2 > 1 error >=20 > Here is my KERNCONF: > http://www.drenet.net/BUILD130313 >=20 > I've also created a diff of what's missing from my configuration compared t= o GENERIC: > http://www.drenet.net/kern_diff.txt >=20 > Thanks in advance for any guidance you can provide! >=20 > --=20 > Andre Goree > andre@drenet.info > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.or= g" Nothing in your diff shocks me. Wanna re SVN up your sources, rebuild your kernel-toolchain and try again ?= From owner-freebsd-questions@FreeBSD.ORG Wed Mar 13 21:56:35 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 184F0B38 for ; Wed, 13 Mar 2013 21:56:35 +0000 (UTC) (envelope-from freebsd@qeng-ho.org) Received: from blue.qeng-ho.org (blue.qeng-ho.org [217.155.128.241]) by mx1.freebsd.org (Postfix) with ESMTP id ADBDBF52 for ; Wed, 13 Mar 2013 21:56:34 +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 r2DLuRJA076433 for ; Wed, 13 Mar 2013 21:56:27 GMT (envelope-from freebsd@qeng-ho.org) Message-ID: <5140F60B.20106@qeng-ho.org> Date: Wed, 13 Mar 2013 21:56:27 +0000 From: Arthur Chance User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: FreeBSD-Questions Subject: Port devel/arduino serial port problems Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 21:56:35 -0000 I'm trying to get devel/arduino working. Plugging in the USB cable to the Arduino creates /dev/cuaU0* and /dev/ttyU0* and I'm manually changing them to mode 666 while trying to get started so should be able to access them as my normal user. However, the Tools => Serial Port menu item in the Arduino IDE is always greyed out, and whatever I set serial.port to in ~/.arduino/preferences.txt when trying to upload a sketch I always get the error message Serial port '' not found. Any hints and clues would be very welcome. My system is 9.1-RELEASE-p1 and amd64 pkg info arduino shows arduino-1.0.3_1,1 Open-source electronics prototyping platform My /dev with the Arduino plugged in and a chmod a+rw done suitably: fileserver# ls -l /dev/{cua,tty}U* crw-rw-rw- 1 uucp operator 0, 242 Mar 13 21:24 /dev/cuaU0 crw-rw-rw- 1 uucp operator 0, 243 Mar 13 21:24 /dev/cuaU0.init crw-rw-rw- 1 uucp operator 0, 244 Mar 13 21:24 /dev/cuaU0.lock crw-rw-rw- 1 root wheel 0, 239 Mar 13 21:24 /dev/ttyU0 crw-rw-rw- 1 root wheel 0, 240 Mar 13 21:24 /dev/ttyU0.init crw-rw-rw- 1 root wheel 0, 241 Mar 13 21:24 /dev/ttyU0.lock From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 05:56:23 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CC9D18A5 for ; Thu, 14 Mar 2013 05:56:23 +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 41BB565C for ; Thu, 14 Mar 2013 05:56:22 +0000 (UTC) Received: from kw.news4all.se (usenet4all.se [82.182.32.53]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id r2E5uIBn018658; Thu, 14 Mar 2013 06:56:19 +0100 (CET) (envelope-from bah@bananmonarki.se) Message-ID: <51416661.4000903@bananmonarki.se> Date: Thu, 14 Mar 2013 06:55:45 +0100 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130301 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Joseph A. Nagy, Jr" Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <5140973A.1080807@bananmonarki.se> <51409CA3.1060007@gmail.com> In-Reply-To: <51409CA3.1060007@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: c.petrik.sosa@gmail.com, jmc-freebsd2@milibyte.co.uk, Matthias Apitz , "Questions @ FreeBSD" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 05:56:23 -0000 2013-03-13 16:34, Joseph A. Nagy, Jr skrev: > On 03/13/13 10:11, Bernt Hansson wrote: >> On 2013-03-10 20:26, Joseph A. Nagy, Jr wrote: >>> On 03/05/13 23:47, Matthias Apitz wrote: >>>> El día Tuesday, March 05, 2013 a las 03:42:15PM -0600, Joseph A. >>>> Nagy, Jr escribió: >>> >> Canon pixma mp210. Is not 100% supported under cups. >> >> >> > > Surprise surprise No. Not really. If you had followed the link to openprinting.org you would have knowed that. So no surprise, not for me anyhow. From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 08:48:25 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 567B210F for ; Thu, 14 Mar 2013 08:48:25 +0000 (UTC) (envelope-from freebsd@qeng-ho.org) Received: from blue.qeng-ho.org (blue.qeng-ho.org [217.155.128.241]) by mx1.freebsd.org (Postfix) with ESMTP id D1DF8C26 for ; Thu, 14 Mar 2013 08:48:24 +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 r2E8mMxt077980 for ; Thu, 14 Mar 2013 08:48:22 GMT (envelope-from freebsd@qeng-ho.org) Message-ID: <51418ED6.7000400@qeng-ho.org> Date: Thu, 14 Mar 2013 08:48:22 +0000 From: Arthur Chance User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: FreeBSD-Questions Subject: Re: Port devel/arduino serial port problems [SOLVED] References: <5140F60B.20106@qeng-ho.org> In-Reply-To: <5140F60B.20106@qeng-ho.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 08:48:25 -0000 On 03/13/13 21:56, Arthur Chance wrote: > I'm trying to get devel/arduino working.[snip] I shouldn't work 13 hour days. Now I've had some sleep, I've spotted what I missed last night. The underlying code from comms/rxtx is trying to create a lock file in /var/spool/lock and that is only writeable by user uucp and group dialer. Given that I have absolutely no serial devices (or ports) on this box apart from the Arduino when it's plugged in, can anyone see any problems with making the lock directory world writeable? From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 10:02:14 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1FB06BEF for ; Thu, 14 Mar 2013 10:02:14 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-la0-x230.google.com (mail-la0-x230.google.com [IPv6:2a00:1450:4010:c03::230]) by mx1.freebsd.org (Postfix) with ESMTP id A775AF73 for ; Thu, 14 Mar 2013 10:02:13 +0000 (UTC) Received: by mail-la0-f48.google.com with SMTP id fq13so2224061lab.35 for ; Thu, 14 Mar 2013 03:02:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:from:date:message-id:subject:to :content-type; bh=T4+VRPsI6j+Ono65PjgcaZDw3lMfqm6nPOkPDXSOgg0=; b=NEJeGgK7r9qx7R7COl9dLMsquR//rg+ZeaYNBAXMGQ5e9Fb+hJbBftgrs1oaF8Fm8V 08c/9LakqiPofNjqR7JM8D0UrCpSkrIxb77MlQi/H38E8/3rKXVlHwV84+L6hroXPbBu 6xpnzKuF1hcSBuehWw0vZZTTwrJAMTaSWz0lm0afZJ/COfa79sVi/hkyk83tXbjO+dte lU1SM7a1tUoPhblrQmGnxkTAUgJ4wHMPmkqKjIVlNwulZZWbku0CtZ78HrCUtNHw1yuq 60dYz7ailKS0rcKEVrNJs/+2nIyekFAuvYoP9GDVkGCHg32mKFOYZ/UARiZmHTtfxR2T SdmQ== X-Received: by 10.112.25.8 with SMTP id y8mr860024lbf.81.1363255332706; Thu, 14 Mar 2013 03:02:12 -0700 (PDT) MIME-Version: 1.0 Received: by 10.112.101.169 with HTTP; Thu, 14 Mar 2013 03:01:32 -0700 (PDT) From: Odhiambo Washington Date: Thu, 14 Mar 2013 13:01:32 +0300 Message-ID: Subject: ofBiz on FreeBSD To: User Questions Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 10:02:14 -0000 Has anyone managed to install ofBiz on FreeBSD. Could you please share the steps followed to achieve this? I am also interested in using MySQL as the DB backend. This is just for fun. 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 Thu Mar 14 06:37:16 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 368D277 for ; Thu, 14 Mar 2013 06:37:16 +0000 (UTC) (envelope-from iamatt@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 C4726786 for ; Thu, 14 Mar 2013 06:37:15 +0000 (UTC) Received: by mail-wg0-f50.google.com with SMTP id es5so1674631wgb.17 for ; Wed, 13 Mar 2013 23:37:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=FVdZrUi9MaYFq8w8nSfQIHN70O2q+62gFBw6JdQwVUY=; b=tu1AnLyeiBU4Kn97omzt/GLrbK6jlauWLyj8En+8Dpg3LL8Eew1Q8XQ1ciWPfchzLw Jejfwowhep3NuGtBuGMtph51TSPxZkm+598+jcxl9eM4cxHkieb30sSaxfSeHwweYW2e l8BLAJQGTqdpz0i9+CBUmhx2UzD2y+keIA+AMd2zTTOjuZ7KKyHhwQzrTWfCmLeXPtmW fcU4z0iZt3ddwF5SqRm+V+VdhSThfyAyJt+XRj4y0sDFDz2zojEhWw5eLgV74ajQEusq GH+SfNIiGy2KABwIQPSBOFeAmFVOKigzODsK3kBz+qcPTAGV8oXJKWWRV+O0TedLY/17 skag== MIME-Version: 1.0 X-Received: by 10.180.83.39 with SMTP id n7mr1692642wiy.8.1363243029236; Wed, 13 Mar 2013 23:37:09 -0700 (PDT) Received: by 10.216.33.129 with HTTP; Wed, 13 Mar 2013 23:37:08 -0700 (PDT) Received: by 10.216.33.129 with HTTP; Wed, 13 Mar 2013 23:37:08 -0700 (PDT) In-Reply-To: <51416661.4000903@bananmonarki.se> References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <5140973A.1080807@bananmonarki.se> <51409CA3.1060007@gmail.com> <51416661.4000903@bananmonarki.se> Date: Thu, 14 Mar 2013 01:37:08 -0500 Message-ID: Subject: Re: Problems Printing From: iamatt To: Bernt Hansson X-Mailman-Approved-At: Thu, 14 Mar 2013 11:49:23 +0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: c.petrik.sosa@gmail.com, Matthias Apitz , "Questions @ FreeBSD" , "Joseph A. Nagy, Jr" , jmc-freebsd2@milibyte.co.uk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 06:37:16 -0000 What a waste of time. Yours under Christ On Mar 14, 2013 12:56 AM, "Bernt Hansson" wrote: > 2013-03-13 16:34, Joseph A. Nagy, Jr skrev: > >> On 03/13/13 10:11, Bernt Hansson wrote: >> >>> On 2013-03-10 20:26, Joseph A. Nagy, Jr wrote: >>> >>>> On 03/05/13 23:47, Matthias Apitz wrote: >>>> >>>>> El d=C3=ADa Tuesday, March 05, 2013 a las 03:42:15PM -0600, Joseph A. >>>>> Nagy, Jr escribi=C3=B3: >>>>> >>>> >>>> Canon pixma mp210. Is not 100% supported under cups. >>> >>> >>> >>> >> Surprise surprise >> > > No. Not really. If you had followed the link to openprinting.org > you would have knowed that. So no surprise, not for me anyhow. > > ______________________________**_________________ > 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 Mar 14 11:57:16 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6455F9A4 for ; Thu, 14 Mar 2013 11:57:16 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from mx1.bjare.net (mx1.bjare.net [212.31.160.3]) by mx1.freebsd.org (Postfix) with ESMTP id 15B61763 for ; Thu, 14 Mar 2013 11:57:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mx1.bjare.net (Postfix) with ESMTP id CB1285E4A2 for ; Thu, 14 Mar 2013 12:57:07 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mx1.bjare.net X-Spam-Flag: NO X-Spam-Score: -1.988 X-Spam-Level: X-Spam-Status: No, score=-1.988 tagged_above=-999 required=5 tests=[AWL=-0.085, BAYES_00=-2.599, RDNS_NONE=0.1, SPF_SOFTFAIL=0.596] Received: from mx1.bjare.net ([127.0.0.1]) by localhost (mx1.bjare.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 9-bmvjDxMh7x for ; Thu, 14 Mar 2013 12:57:05 +0100 (CET) X-BN-MX1: ja X-BN-MailInfo: BjareNet Received: from bljbsd01.no-ip.org (unknown [195.216.53.111]) by mx1.bjare.net (Postfix) with ESMTP id 7695A5E42A for ; Thu, 14 Mar 2013 12:56:59 +0100 (CET) Message-ID: <5141BB0C.6020704@eskk.nu> Date: Thu, 14 Mar 2013 12:57:00 +0100 From: Leslie Jensen User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: FreeBSD Questions Mailing List Subject: I just had a crash, core dump Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 11:57:16 -0000 My system 9.1-RELEASE ll /var/crash/ total 697996 -rw-r--r-- 1 root wheel 2 14 Mar 12:51 bounds -rw------- 1 root wheel 577047 14 Mar 12:52 core.txt.0 -rw------- 1 root wheel 460 14 Mar 12:51 info.0 -rw-r--r-- 1 root wheel 5 4 Dec 10:34 minfree -rw------- 1 root wheel 784556032 14 Mar 12:52 vmcore.0 Who would be interested in this? /Leslie From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 11:45:59 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E5DC757A for ; Thu, 14 Mar 2013 11:45:59 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-qa0-f49.google.com (mail-qa0-f49.google.com [209.85.216.49]) by mx1.freebsd.org (Postfix) with ESMTP id 9A0D86CC for ; Thu, 14 Mar 2013 11:45:59 +0000 (UTC) Received: by mail-qa0-f49.google.com with SMTP id o13so1179796qaj.15 for ; Thu, 14 Mar 2013 04:45:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Do/xac6Zs0GtpSxQOb4csY9WDQZjAF7j60NvsCTxnM8=; b=vKXTjt14AtC3JK2rvk4O0rByX1g2SV0iGL0Noitt3LIRmNZ7BIS94Qb9mr3NO09I7B 6Ric7qb6eI3SW/KJQtN5+G+QVWQ3LkBauxsyWx9p8PGo8KmV2t+6OKMXQY9fRSt/ajA+ DsFFIHEsED/U8++M6zGiXcuIsXdU3o7pIIg1DX6H8xNA5hW0f5PKWhvqtwlYQD5NbZfD kunR3ciJ3f1jMfZTZXW013+Ek4kC7aMC5jh9Qg+bWEuLEjTEe4msMOVcS1Fy7ZBUkyAQ zASSN8OSIf0p9PXH2i23066RoYgVigvTLDOxHAZyOwj6Lx0XvLXoZId52CXKwB+rNO1F LEzg== X-Received: by 10.229.69.135 with SMTP id z7mr374474qci.144.1363261552895; Thu, 14 Mar 2013 04:45:52 -0700 (PDT) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id ih20sm595169qab.2.2013.03.14.04.45.50 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 14 Mar 2013 04:45:51 -0700 (PDT) Message-ID: <5141B86C.1030000@gmail.com> Date: Thu, 14 Mar 2013 06:45:48 -0500 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: iamatt Subject: Re: Problems Printing References: <5135A88B.1000100@gmail.com> <20130305095729.GA1123@tiny.Sisis.de> <5135C776.9000603@gmail.com> <20130305102951.GA1325@tiny.Sisis.de> <5135DC95.4000800@gmail.com> <20130305121957.GA1581@tiny.Sisis.de> <5135E740.1080808@gmail.com> <20130305124946.GA1653@tiny.Sisis.de> <513666B7.4080708@gmail.com> <20130306054701.GA2295@tinyCurrent> <513CDE73.4010505@gmail.com> <5140973A.1080807@bananmonarki.se> <51409CA3.1060007@gmail.com> <51416661.4000903@bananmonarki.se> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Thu, 14 Mar 2013 12:19:12 +0000 Cc: c.petrik.sosa@gmail.com, Matthias Apitz , "Questions @ FreeBSD" , jmc-freebsd2@milibyte.co.uk, Bernt Hansson X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 11:46:00 -0000 On 03/14/13 01:37, iamatt wrote: > What a waste of time. Yours under Christ No, the only waste of time is repeating the same steps over and over and expecting different results. I followed all instructions. I followed the link provided and tried the MP220 driver setting (to no avail). I'm tired of half- or non-supported 4+ year old hardware (well really I imagine most of the tch on this laptop is over 4 years old, but my wife has only had this laptop for four years, bought new; the printer, no clue as I got that from a yard sale about 2 years ago but it's a good indication it also is around 4 or more years old). I'm tired of not having my wi-fi card work. I'm tired of only a select support for certain brands. Secure? In spades. Stable? Ditto. Usable? Not by a long shot. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 12:40:22 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9EA6E5FB for ; Thu, 14 Mar 2013 12:40:22 +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 6949C9DD for ; Thu, 14 Mar 2013 12:40:22 +0000 (UTC) Received: from r56.edvax.de (port-92-195-30-57.dynamic.qsc.de [92.195.30.57]) by mx02.qsc.de (Postfix) with ESMTP id 2DBB82762D; Thu, 14 Mar 2013 13:33:42 +0100 (CET) Received: from r56.edvax.de (localhost [127.0.0.1]) by r56.edvax.de (8.14.5/8.14.5) with SMTP id r2ECXmQw001882; Thu, 14 Mar 2013 13:33:48 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Thu, 14 Mar 2013 13:33:48 +0100 From: Polytropon To: Arthur Chance Subject: Re: Port devel/arduino serial port problems [SOLVED] Message-Id: <20130314133348.fdbdc755.freebsd@edvax.de> In-Reply-To: <51418ED6.7000400@qeng-ho.org> References: <5140F60B.20106@qeng-ho.org> <51418ED6.7000400@qeng-ho.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 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 12:40:22 -0000 On Thu, 14 Mar 2013 08:48:22 +0000, Arthur Chance wrote: > On 03/13/13 21:56, Arthur Chance wrote: > > I'm trying to get devel/arduino working.[snip] > > I shouldn't work 13 hour days. Now I've had some sleep, I've spotted > what I missed last night. The underlying code from comms/rxtx is trying > to create a lock file in /var/spool/lock and that is only writeable by > user uucp and group dialer. Given that I have absolutely no serial > devices (or ports) on this box apart from the Arduino when it's plugged > in, can anyone see any problems with making the lock directory world > writeable? Simply add your user (or the account the program is running under) to the "dialer" group. This has been a common method to allow users to access dialing programs (which were reserved for root use without this group addition). -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 13:08:34 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0C38FA0E for ; Thu, 14 Mar 2013 13:08:34 +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 C481BAF0 for ; Thu, 14 Mar 2013 13:08:33 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.6/8.14.6) with ESMTP id r2ED8NVu080013; Thu, 14 Mar 2013 07:08:23 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.6/8.14.6/Submit) with ESMTP id r2ED8NiX080010; Thu, 14 Mar 2013 07:08:23 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 14 Mar 2013 07:08:23 -0600 (MDT) From: Warren Block To: Polytropon Subject: Re: Port devel/arduino serial port problems [SOLVED] In-Reply-To: <20130314133348.fdbdc755.freebsd@edvax.de> Message-ID: References: <5140F60B.20106@qeng-ho.org> <51418ED6.7000400@qeng-ho.org> <20130314133348.fdbdc755.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, 14 Mar 2013 07:08:23 -0600 (MDT) Cc: Arthur Chance , FreeBSD-Questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 13:08:34 -0000 On Thu, 14 Mar 2013, Polytropon wrote: > On Thu, 14 Mar 2013 08:48:22 +0000, Arthur Chance wrote: >> On 03/13/13 21:56, Arthur Chance wrote: >>> I'm trying to get devel/arduino working.[snip] >> >> I shouldn't work 13 hour days. Now I've had some sleep, I've spotted >> what I missed last night. The underlying code from comms/rxtx is trying >> to create a lock file in /var/spool/lock and that is only writeable by >> user uucp and group dialer. Given that I have absolutely no serial >> devices (or ports) on this box apart from the Arduino when it's plugged >> in, can anyone see any problems with making the lock directory world >> writeable? > > Simply add your user (or the account the program is running > under) to the "dialer" group. This has been a common method > to allow users to access dialing programs (which were reserved > for root use without this group addition). This is also mentioned when the Arduino port is installed: To allow serial port locking, add your user to the dialer group: pw usermod myuser -G dialer From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 13:55:06 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9459061B for ; Thu, 14 Mar 2013 13:55:06 +0000 (UTC) (envelope-from recommend@johnsonengine.info.tm) Received: from carib.lnet.fr (carib.lnet.fr [91.121.161.159]) by mx1.freebsd.org (Postfix) with ESMTP id 9F62DE5B for ; Thu, 14 Mar 2013 13:55:05 +0000 (UTC) Received: from localhost (carib.lnet.fr [127.0.0.1]) by carib.lnet.fr (Postfix) with ESMTP id C0FC248F04C6 for ; Thu, 14 Mar 2013 14:30:51 +0100 (CET) X-Virus-Scanned: amavisd-new at carib.lnet.fr Received: from carib.lnet.fr ([127.0.0.1]) by localhost (carib.lnet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aaDHZowfC90m for ; Thu, 14 Mar 2013 14:30:51 +0100 (CET) Received: from www.boutique.seldeguerande.com (unknown [195.25.252.217]) by carib.lnet.fr (Postfix) with ESMTP id A579E48F04C5 for ; Thu, 14 Mar 2013 14:30:51 +0100 (CET) Date: Thu, 14 Mar 2013 14:29:59 +0100 To: "freebsd-questions@freebsd.org" From: "========= Johnson Motor Free Revolutionary New \"triple-patented\" device produces 100% free electricity... =========" Subject: ========= Johnson Motor Free Revolutionary New "triple-patented" device produces 100% free electricity... ========= vous recommande ce produit de Terre de Sel Message-ID: <624161a213c59df342bb12ffb12b1145@www.boutique.seldeguerande.com> X-Priority: 3 X-Mailer: PHPMailer (phpmailer.sourceforge.net) [version 2.0.4] MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 13:55:06 -0000 Bonjour, Une de vos connaissances, ========= Johnson Motor Free Revolutionary New "triple-patented" device produces 100% free electricity... =========, souhaite vous présenter le produit suivant : Sel fin de Guérande boîte 250g de Terre de Sel. ========================================================= Let's face it... Electricity is big business. And not just for the utility companies charging you through the nose to keep your house warm in the winter... But also for the scammers and con artists trying to cash in on your difficult situation. Thankfully however... even amongst the junk... there's some real, honest offerings... Like the "Johnson Motor". ___ http://thejohnsonengine.info.tm See, the Johnson Motor isn't just any "free energy" device... And I'm not saying that simply because it actually works. As far as I'm aware... it's the only device of its kind with not just one... not even two... but three patents awarded to it. In fact... the US Patent Office have actually certified it produces free energy out of "thin air"! Don't believe me? Then take a look at this page and see the proof for yourself. Hell, you can even look up the US patent numbers for third-party confirmation! ___ http://thejohnsonengine.info.tm Thing is though, with electricity being such a huge income- generator for big business, this page may not be up for long. In fact, apparently the corporate fat cats have already had it taken down once. Thankfully, the creators of the Johnson Motor were able to get their site back up... and at least for now you can discover how to build your own for next to nothing. But who knows how long it will be until the fat cats manage to get the page taken down a second and possibly final time? Don't gamble on something so important... Check out this free video right now. ___ http://thejohnsonengine.info.tm See you there! P.S. This thing really is ingenious. I've never seen anything like it... and apparently neither have the US Patent Office. Do yourself a favor and check it out right now. ___ http://thejohnsonengine.info.tm ========================================================= Pour visualiser le produit, cliquez sur le lien ci-dessous ou copier/coller le lien dans votre navigateur : http://www.boutique.seldeguerande.com/product_info.php?products_id=357 Cordialement, Terre de Sel http://www.boutique.seldeguerande.com/ From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 13:59:48 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1CAD18DF for ; Thu, 14 Mar 2013 13:59:48 +0000 (UTC) (envelope-from ml@my.gd) Received: from mail-wg0-f49.google.com (mail-wg0-f49.google.com [74.125.82.49]) by mx1.freebsd.org (Postfix) with ESMTP id AFABCE95 for ; Thu, 14 Mar 2013 13:59:47 +0000 (UTC) Received: by mail-wg0-f49.google.com with SMTP id ds1so1136799wgb.16 for ; Thu, 14 Mar 2013 06:59:46 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:references:mime-version:in-reply-to:content-type :content-transfer-encoding:message-id:cc:x-mailer:from:subject:date :to:x-gm-message-state; bh=EQTcjnMeHVDCtRqdslFKwdb9VfuUjCd0tjMbZCDLZTY=; b=mI/cl+mtZ4TqJcTKeoDMhzHCzs7mjIJVlbROLh86coeW27Fer+UrI+jzTNI+kVXafL gulsQTs2kLGUXUCkz8uigJ33d/sNGVGqtBgCTEOQ11VjxTlSMbG0GD92htXmckq8+NVK SxPIF7/1fPe1AvjdfTCIyTZWqha3O7cmaRCMaXFCUZW2AMBiVWlDfgbguM8QCD7NVKnh Mksyz5SF1lkQFJ0J20fpaTFkOVVM6zrbPEQwHuTk+KC7F1xqcAvvvXTH0lj1j2k3LgXs NEp8/ECeeoJpXnjviazPgzAQoBel6P8/N1FswsIoL8ufzPT6X4pS8htnBPfvHQ7Bo1eV 8DLg== X-Received: by 10.180.84.162 with SMTP id a2mr4199522wiz.14.1363269586704; Thu, 14 Mar 2013 06:59:46 -0700 (PDT) Received: from [10.51.13.105] ([92.90.20.86]) by mx.google.com with ESMTPS id q2sm4227088wiz.8.2013.03.14.06.59.44 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 14 Mar 2013 06:59:45 -0700 (PDT) References: <5141BB0C.6020704@eskk.nu> Mime-Version: 1.0 (1.0) In-Reply-To: <5141BB0C.6020704@eskk.nu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <1B1DD25B-A69E-4497-9767-7023C1248D7C@my.gd> X-Mailer: iPhone Mail (10B144) From: Damien Fleuriot Subject: Re: I just had a crash, core dump Date: Thu, 14 Mar 2013 14:55:04 +0100 To: Leslie Jensen X-Gm-Message-State: ALoCoQm80phphxDGb/2V42OVZ6K2damSjP/360/ndQaxseMpjJ5NwZfKbUo2+0Jp/WLQ54txrLJB Cc: FreeBSD Questions Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 13:59:48 -0000 On 14 Mar 2013, at 12:57, Leslie Jensen wrote: > > > My system > 9.1-RELEASE > > > ll /var/crash/ > total 697996 > -rw-r--r-- 1 root wheel 2 14 Mar 12:51 bounds > -rw------- 1 root wheel 577047 14 Mar 12:52 core.txt.0 > -rw------- 1 root wheel 460 14 Mar 12:51 info.0 > -rw-r--r-- 1 root wheel 5 4 Dec 10:34 minfree > -rw------- 1 root wheel 784556032 14 Mar 12:52 vmcore.0 > > > Who would be interested in this? > > > /Leslie > You, I assume ? From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 14:45:39 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E976041C for ; Thu, 14 Mar 2013 14:45:39 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from mx1.bjare.net (mx1.bjare.net [212.31.160.3]) by mx1.freebsd.org (Postfix) with ESMTP id AA2D01B1 for ; Thu, 14 Mar 2013 14:45:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mx1.bjare.net (Postfix) with ESMTP id A09035E475; Thu, 14 Mar 2013 15:45:37 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mx1.bjare.net X-Spam-Flag: NO X-Spam-Score: -1.988 X-Spam-Level: X-Spam-Status: No, score=-1.988 tagged_above=-999 required=5 tests=[AWL=-0.085, BAYES_00=-2.599, RDNS_NONE=0.1, SPF_SOFTFAIL=0.596] Received: from mx1.bjare.net ([127.0.0.1]) by localhost (mx1.bjare.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id bjxCHi09oYkt; Thu, 14 Mar 2013 15:45:32 +0100 (CET) X-BN-MX1: ja X-BN-MailInfo: BjareNet Received: from bljbsd01.no-ip.org (unknown [195.216.53.111]) by mx1.bjare.net (Postfix) with ESMTP id 0FBB55E32D; Thu, 14 Mar 2013 15:45:27 +0100 (CET) Message-ID: <5141E288.9000908@eskk.nu> Date: Thu, 14 Mar 2013 15:45:28 +0100 From: Leslie Jensen User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: Damien Fleuriot Subject: Re: I just had a crash, core dump References: <5141BB0C.6020704@eskk.nu> <1B1DD25B-A69E-4497-9767-7023C1248D7C@my.gd> In-Reply-To: <1B1DD25B-A69E-4497-9767-7023C1248D7C@my.gd> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 14:45:40 -0000 2013-03-14 14:55, Damien Fleuriot skrev: > > On 14 Mar 2013, at 12:57, Leslie Jensen wrote: > >> >> >> My system >> 9.1-RELEASE >> >> >> ll /var/crash/ >> total 697996 >> -rw-r--r-- 1 root wheel 2 14 Mar 12:51 bounds >> -rw------- 1 root wheel 577047 14 Mar 12:52 core.txt.0 >> -rw------- 1 root wheel 460 14 Mar 12:51 info.0 >> -rw-r--r-- 1 root wheel 5 4 Dec 10:34 minfree >> -rw------- 1 root wheel 784556032 14 Mar 12:52 vmcore.0 >> >> >> Who would be interested in this? >> >> >> /Leslie >> > > You, I assume ? > _______________________________________________ > 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" > Yes of course! Unfortunately I do not know what to do with this information. I thought that maybe it could be useful for someone working on development of FreeBSD. Thanks /Leslie From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 14:58:52 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 86FC9903 for ; Thu, 14 Mar 2013 14:58:52 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: from mail-wi0-x234.google.com (mail-wi0-x234.google.com [IPv6:2a00:1450:400c:c05::234]) by mx1.freebsd.org (Postfix) with ESMTP id 2757328F for ; Thu, 14 Mar 2013 14:58:52 +0000 (UTC) Received: by mail-wi0-f180.google.com with SMTP id hi8so1886379wib.7 for ; Thu, 14 Mar 2013 07:58:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=WtyaXycoi9YDVzqTPLYk/Kzf09gKzOIoicF5FUKxHPY=; b=vKEGJWSqNkKtCsGqPoX4TGNKQ8C1EnaIdVrC97lUsUxPp1ZOedcRIhRSzsniW+bQ19 GlLmOMcXZnsQS9vqAS6VQePLLIY9HUp9UKsUebc90SDnONig8A8fGWL1ShQlOXMKaA4C PORLTz/kF67sdOiduBLrbmpXpCfPeGlzsqxLwvAPDK5QY5U2IvySGSigxjGy9N/XjBXi iE2T4/j/xY6Lt8L2njIEDuFL07FJaMwUKnv6K0Qj3dFJckdX0H4Ew3BsXUnEa5UHDXTn 6oFeKCQSbJSKojprRbJWB0HCSywRv7h0+MVRk5QxFbvaVsj7kPGoqhgEsJpO7lHtF0Dg 4KiA== MIME-Version: 1.0 X-Received: by 10.195.12.133 with SMTP id eq5mr4674858wjd.52.1363273131361; Thu, 14 Mar 2013 07:58:51 -0700 (PDT) Received: by 10.180.125.107 with HTTP; Thu, 14 Mar 2013 07:58:51 -0700 (PDT) In-Reply-To: <5141E288.9000908@eskk.nu> References: <5141BB0C.6020704@eskk.nu> <1B1DD25B-A69E-4497-9767-7023C1248D7C@my.gd> <5141E288.9000908@eskk.nu> Date: Thu, 14 Mar 2013 15:58:51 +0100 Message-ID: Subject: Re: I just had a crash, core dump From: =?ISO-8859-1?Q?Fernando_Apestegu=EDa?= To: Leslie Jensen Content-Type: text/plain; charset=ISO-8859-1 Cc: Damien Fleuriot , FreeBSD Questions Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 14:58:52 -0000 On Thu, Mar 14, 2013 at 3:45 PM, Leslie Jensen wrote: > > > 2013-03-14 14:55, Damien Fleuriot skrev: > >> >> On 14 Mar 2013, at 12:57, Leslie Jensen wrote: >> >>> >>> >>> My system >>> 9.1-RELEASE >>> >>> >>> ll /var/crash/ >>> total 697996 >>> -rw-r--r-- 1 root wheel 2 14 Mar 12:51 bounds >>> -rw------- 1 root wheel 577047 14 Mar 12:52 core.txt.0 >>> -rw------- 1 root wheel 460 14 Mar 12:51 info.0 >>> -rw-r--r-- 1 root wheel 5 4 Dec 10:34 minfree >>> -rw------- 1 root wheel 784556032 14 Mar 12:52 vmcore.0 >>> >>> >>> Who would be interested in this? >>> >>> >>> /Leslie >>> >> >> You, I assume ? >> _______________________________________________ >> 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" >> > > > Yes of course! > > Unfortunately I do not know what to do with this information. I thought that > maybe it could be useful for someone working on development of FreeBSD. Take a look at this[1] and try to extract a backtrace. Post it again to see if it catches the attention of a kernel hacker ;) Cheers [1] http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.html > > Thanks > > /Leslie > > > > _______________________________________________ > 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 Mar 14 14:59:17 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 34B63998 for ; Thu, 14 Mar 2013 14:59:17 +0000 (UTC) (envelope-from freebsd@qeng-ho.org) Received: from blue.qeng-ho.org (blue.qeng-ho.org [217.155.128.241]) by mx1.freebsd.org (Postfix) with ESMTP id AE0C229D for ; Thu, 14 Mar 2013 14:59:15 +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 r2EExCIk041906; Thu, 14 Mar 2013 14:59:13 GMT (envelope-from freebsd@qeng-ho.org) Message-ID: <5141E5C0.2040606@qeng-ho.org> Date: Thu, 14 Mar 2013 14:59:12 +0000 From: Arthur Chance User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: Warren Block Subject: Re: Port devel/arduino serial port problems [SOLVED] References: <5140F60B.20106@qeng-ho.org> <51418ED6.7000400@qeng-ho.org> <20130314133348.fdbdc755.freebsd@edvax.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Polytropon , FreeBSD-Questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 14:59:17 -0000 On 03/14/13 13:08, Warren Block wrote: > On Thu, 14 Mar 2013, Polytropon wrote: > >> On Thu, 14 Mar 2013 08:48:22 +0000, Arthur Chance wrote: >>> On 03/13/13 21:56, Arthur Chance wrote: >>>> I'm trying to get devel/arduino working.[snip] >>> >>> I shouldn't work 13 hour days. Now I've had some sleep, I've spotted >>> what I missed last night. The underlying code from comms/rxtx is trying >>> to create a lock file in /var/spool/lock and that is only writeable by >>> user uucp and group dialer. Given that I have absolutely no serial >>> devices (or ports) on this box apart from the Arduino when it's plugged >>> in, can anyone see any problems with making the lock directory world >>> writeable? >> >> Simply add your user (or the account the program is running >> under) to the "dialer" group. This has been a common method >> to allow users to access dialing programs (which were reserved >> for root use without this group addition). > > This is also mentioned when the Arduino port is installed: > > To allow serial port locking, add your user to the dialer group: > pw usermod myuser -G dialer Warren and Polytropon, thanks. I realised that this morning and added myself to dialer. I'd originally thought the requirement for dialler group was simply to access /dev/cuaU0 and wrote a devd.conf file to set that as mode 666. It was only after catching up with my sleep I thought of lock files. However, my point was a little more general than just fixing this specific access problem - many desktop machines these days don't have serial lines or any need for dialer programs, and adding yet another group to an ever increasing list just so that I can talk to an Arduino seems a little redundant. (As does using /var/spool/lock - isn't that what /dev/cuaU0.lock is for?) For anyone else thinking of playing with Arduinos on FreeBSD, this bug http://www.freebsd.org/cgi/query-pr.cgi?pr=163749 in avrdude bit me (on a 9.1-RELEASE-p1 amd64 machine, talking to an Arduino Uno R3). The second patch (patch-arduino.c) fixed the problem, but it's a shame it's not included in the port 14 months after it was submitted. From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 16:59:08 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B858A698 for ; Thu, 14 Mar 2013 16:59:08 +0000 (UTC) (envelope-from bounceback+www+57784+questions=freebsd.org@app.etouches.com) Received: from mail.app.etouches.com (mail.app.etouches.com [23.23.239.161]) by mx1.freebsd.org (Postfix) with ESMTP id 7FD44BEA for ; Thu, 14 Mar 2013 16:59:08 +0000 (UTC) Received: from mail.app.etouches.com (domU-12-31-39-0F-7E-F5.compute-1.internal [10.193.125.7]) by mail.app.etouches.com (Postfix) with ESMTPA id 0D1181EC6 for ; Thu, 14 Mar 2013 16:43:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=app.etouches.com; s=default; t=1363279421; bh=V3Dq2OQbfBZCEqT0FSs/Y4yHhSklcTIp7IOB7dgSzXQ=; h=Date:Subject:From:To; b=Gy+KKpxPYvXVC+42UTftJvhQin9l2G32DA6rE5qiNCQxa37BpJrSd/mKI/ogohV1D 5ztAUQVcPz1P3xoyS38ZeiliMxLSQu1YJ1UtMnfoxE11+l4YDAGf3HdQrdicMef60M T4Y+j2m5ErepaTt8AWM+NdE41ePkEZcFspJ87luo= Message-ID: <1363279421.5141fe3d0b51c@etouches.com> Date: Thu, 14 Mar 2013 12:43:41 -0400 Subject: WCO E-learning Customs Training - Register now! From: WCO-Demos Team WCO-Demos Team To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 16:59:08 -0000 Harmonized System 2012 Classroom Training Would you like to know the basic rules for classifying goods and justification of the classification opinions? Would you like to know more about the HS 2012 amendments and their consequences on the classification of goods? A two day training to guide you through the basic rules for classifying goods and justification of the classification opinions. Major amendments in HS 2012 and their consequential effects on classifying products. Core fundamentals of the Harmonized System and classification. Dates: September 26-27, 2012 Location: Brussels, Belgium The 2 day training will address the following main topics: The Harmonized System, an indispensable tool in international trade The application of the Harmonized System General Interpretative Rules The classification of sets and composite goods in the Harmonized System Case studies will complement the presentations on technical subject For more information visit our website www.wcoomdtraining.org, contact us at customs-wco@demosgroup.com Demos Group, WCO’s official training supplier for the private sector Do not miss this opportunity to enrich your knowledge! Register here: https://www.etouches.com/hs2012 -------------------------------------- To unsubscribe from this mailing list, please click here https://www.eiseverywhere.com/emarketing/profile.php?id=Z4sSfz0iMrZzONIgZysa63P3x%2BYq3g40y39ymNTyrFs%3D From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 16:51:24 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4EC7C49A for ; Thu, 14 Mar 2013 16:51:24 +0000 (UTC) (envelope-from paul.de_vlieger@moniut.univ-bpclermont.fr) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) by mx1.freebsd.org (Postfix) with ESMTP id 3622DB0F for ; Thu, 14 Mar 2013 16:51:23 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1UGBND-0001jx-BY for freebsd-questions@freebsd.org; Thu, 14 Mar 2013 09:51:23 -0700 Date: Thu, 14 Mar 2013 09:51:23 -0700 (PDT) From: "dv.paul" To: freebsd-questions@freebsd.org Message-ID: <1363279883347-5795645.post@n5.nabble.com> In-Reply-To: References: Subject: Re: cmake fails to build under 9.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Thu, 14 Mar 2013 17:25:32 +0000 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 16:51:24 -0000 Add a newline to: ./work/cmake-2.8.9/Source/cmGraphVizWriter.cxx and ./work/cmake-2.8.9/Source/cmBootstrapCommands.cxx fixed the problem for me, -- View this message in context: http://freebsd.1045724.n5.nabble.com/cmake-fails-to-build-under-9-1-tp5792876p5795645.html Sent from the freebsd-questions mailing list archive at Nabble.com. From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 17:49:37 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1CCA7524 for ; Thu, 14 Mar 2013 17:49:37 +0000 (UTC) (envelope-from openslateproj@gmail.com) Received: from mail-vc0-f180.google.com (mail-vc0-f180.google.com [209.85.220.180]) by mx1.freebsd.org (Postfix) with ESMTP id D7601F76 for ; Thu, 14 Mar 2013 17:49:36 +0000 (UTC) Received: by mail-vc0-f180.google.com with SMTP id m17so590459vca.39 for ; Thu, 14 Mar 2013 10:49:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=ZpQ+YEzIH1h9gvlpwkjoZhJdg5QqdPSvIynJF08FTQs=; b=AMmYl2WW9dAWl6IdX8FkCLFIko4JL4DGyXloatsW8cbHgc7Kzk2EBqaeAulTzAmkH2 LYtvLpIne/ECFskHRmfDf7QssWqs0MfPk0u2zMiNjrFQB7QH5t4zeQrjJN3nqX3whhLh VUrOTncdASDgdwDDHcchSfsBfstt4SWlHz0mDc2ECEbwRGkXFjanSmnhlN8d/UZs/zKC 9edLFoc9J1yhVvzhOOYwANdx+UBTk9W4+f3yIhiTxTFWOuVe41tr91odnSej+cs8zoT0 YBZ9A+5V+Xl6tx8KAMjHdT8g7Sm7fMmMqAs/R1Mn+MaTjMh1TxxICUxv73rE3Ht2rnIR cpUw== MIME-Version: 1.0 X-Received: by 10.59.2.199 with SMTP id bq7mr2907107ved.51.1363283370481; Thu, 14 Mar 2013 10:49:30 -0700 (PDT) Received: by 10.220.70.132 with HTTP; Thu, 14 Mar 2013 10:49:30 -0700 (PDT) Date: Thu, 14 Mar 2013 07:49:30 -1000 Message-ID: Subject: Can't fetch boost-jam From: Open Slate To: FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 17:49:37 -0000 For several days I have not been able to update my ports due to fetch errors. Right now the first port portupgrade wants to update is devel/boost-jam. Here is the tail of the output of make issued in /usr/ports/devel/boost-jam: => Attempting to fetch http://netcologne.dl.sourceforge.net/project/boost/boost/1.52.0/boost_1_52_0.tar.bz2 fetch: http://netcologne.dl.sourceforge.net/project/boost/boost/1.52.0/boost_1_52_0.tar.bz2: Forbidden => Attempting to fetch http://ignum.dl.sourceforge.net/project/boost/boost/1.52.0/boost_1_52_0.tar.bz2 fetch: http://ignum.dl.sourceforge.net/project/boost/boost/1.52.0/boost_1_52_0.tar.bz2: Forbidden => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/boost_1_52_0.tar.bz2 fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/boost_1_52_0.tar.bz2: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/ and try again. *** [do-fetch] Error code 1 Stop in /usr/ports/devel/boost-jam. I can connect to the ftp server manually: $ ftp ftp.FreeBSD.org Trying 204.152.184.73:21 ... Connected to ftp.FreeBSD.org. 220 Welcome to freebsd.isc.org. Name (ftp.FreeBSD.org:gary): dir of the distfiles directory: ftp> dir boost* 229 Entering Extended Passive Mode (|||47008|) 150 Here comes the directory listing. -rw-r--r-- 1 967 100 1430115 Oct 01 2007 boost-build-2.0-m12.tar.bz2 -rw-r--r-- 1 967 100 29435646 Nov 02 2008 boost_1_37_0.tar.bz2 -rw-r--r-- 1 967 100 29408537 May 01 2009 boost_1_39_0.tar.bz2 -rw-r--r-- 1 967 100 33348161 Nov 17 2009 boost_1_41_0.tar.bz2 -rw-r--r-- 1 967 100 33892438 May 04 2010 boost_1_43_0.tar.bz2 -rw-r--r-- 1 967 100 39330184 Nov 17 2010 boost_1_45_0.tar.bz2 -rw-r--r-- 1 967 100 42001335 Mar 12 2011 boost_1_46_1.tar.bz2 -rw-r--r-- 1 967 100 48236989 Nov 15 2011 boost_1_48_0.tar.bz2 226 Directory send OK. >From uname; 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243826: Tue Dec 4 06:55:39 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 How can I fix this? -- Gary Dunn Open Slate Project http://openslate.org/ From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 20:37:17 2013 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BB868523 for ; Thu, 14 Mar 2013 20:37:17 +0000 (UTC) (envelope-from suseuser04@lajt.hu) Received: from mailout3.bwave.pl (mailout3.bwave.pl [37.233.100.48]) by mx1.freebsd.org (Postfix) with ESMTP id 8059CA3C for ; Thu, 14 Mar 2013 20:37:16 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=drone-mailout3) by mailout3.bwave.pl with esmtp (Exim 4.76) (envelope-from ) id 1UGEtm-0001ub-1A for freebsd-questions@FreeBSD.org; Thu, 14 Mar 2013 21:37:14 +0100 Received: from [10.2.1.187] by drone-mailout3 with esmtp (Exim 4.76) (envelope-from ) id 1UGEtl-0001uY-Ty; Thu, 14 Mar 2013 21:37:13 +0100 Subject: =?UTF-8?Q?Re:_configure_recursively_and_build?= =?UTF-8?Q?_question?= From: =?UTF-8?Q?Istvan_Gabor?= To: freebsd-questions@FreeBSD.org Cc: freebsd-questions@FreeBSD.org In-Reply-To: <44ppz4jru1.fsf@lowell-desk.lan> References: <33e0ec72.507f04c6.513f5b93.143fa@lajt.hu> <44ppz4jru1.fsf@lowell-desk.lan> Mime-Version: 1.0 Message-ID: <4cf380c.a14043e.514234f9.77739@lajt.hu> Date: Thu, 14 Mar 2013 21:37:13 +0100 X-Originator: 84.236.103.76 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 20:37:17 -0000 2013.=20m=C3=A1rcius=2012.=2021:17=20napon=20Lowell=20Gilbert=20=20=C3=ADrta: Thank=20you=20for=20answering. >=20Istvan=20Gabor=20=20writes: >=20 >=20>=20As=20there=20are=20no=20compiled=20FreeBSD=209.1=20packages=20for= =20pkg=5Ftools=20I=20decided=20to=20build=20them. >=20>=20Last=20I=20started=20to=20build=20kde3.=20First=20I=20issued=20ma= ke=20configure-recursive=20in >=20>=20/usr/ports/x11/kde3,=20then=20make=20install=20clean,=20and=20lef= t=20the=20computer=20for=20overnight=20to=20work. >=20>=20I=20expected=20a=20successful=20build=20by=20the=20morning=20but=20= instead=20I=20found=20a=20screen=20requiring=20some >=20>=20config=20options=20(for=20apache).=20I=20selected=20the=20options= =20and=20the=20build=20went=20on. >=20>=20But=20later=20other=20config=20windows=20came=20up,=20so=20far=20= for=20mysqlclient,=20sane-backends, >=20>=20tk,=20tcl,=20libxine=20and=20sdl.=20So=20my=20question=20are: >=20> >=20>=20What=20is=20configure-recursive=20good=20for=20then?=20I=20though= t=20it=20is=20for=20preventing=20interactions >=20>=20during=20the=20build=20process.=20Ho=20can=20I=20really=20configu= re=20everything=20in=20one=20step=20and=20leave >=20>=20the=20computer=20alone? >=20 >=20First=20of=20all,=20I=20think=20you=20mean=20config-recursive.=20 Yes,=20I=20did. >=20 >=20Second,=20config-recursive=20only=20does=20the=20configuration=20of=20= the=20port >=20options. Then=20I=20misunderstood=20the=20handbook,=20chich=20says: "To=20avoid=20this=20when=20there=20are=20many=20dependencies,=20first=20= run=20make=20config-recursive to=20do=20the=20configuration=20in=20one=20batch." I=20understood=20this=20as=20the=20configuration=20is=20done=20on=20all=20= the=20dependencies=20as=20well. The=20handbook=20also=20writes: "Tip:=20When=20using=20config-recursive,=20the=20list=20of=20ports=20to=20= configure=20are=20gathered=20by=20the all-depends-list=20make(1)=20target.=20It=20is=20often=20recommended=20to= =20run=20make=20config-recursive until=20all=20dependent=20ports=20options=20have=20been=20defined,=20and=20= ports=20options=20dialog(1)=20screens no=20longer=20appear,=20to=20be=20certain=20all=20ports=20options=20have=20= been=20configured=20as=20intended." Does=20this=20mean=20if=20I=20run=20config-recursive=20several=20times=20= in=20a=20raw,=20all=20the=20dependencies=20will be=20configured? ... >=20Fourth=20(and,=20you'll=20be=20glad=20to=20hear,=20finally)=20some=20= ports=20are=20interactive >=20for=20reasons=20beyond=20options.=20See=20the=20manual=20for=20ports(= 7),=20noting=20the >=20environment=20variables=20INTERACTIVE=20and=20BATCH. I=20will=20look=20at=20this. >=20>=20Second,=20after=20I've=20done=20a=20configure-recursive,=20how=20= can=20I=20start=20it=20over=20from=20scratch=20in=20case >=20>=20I=20want=20to=20change=20some=20config=20option?=20If=20I=20reiss= ue=20make=20configure-recursive, >=20>=20I=20get=20only=20no=20configuration=20needed=20messages. >=20 >=20If=20you=20really=20want=20to=20start=20from=20scratch,=20you=20can=20= use >=20"rmconfig-recursive"=20on=20the=20dependent=20port. Yes=20I=20meant=20only=20the=20given=20port=20and=20its=20dependencies,=20= not=20the=20all=20ports. Thank=20again, Istvan From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 20:44:21 2013 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1EB9560B for ; Thu, 14 Mar 2013 20:44:21 +0000 (UTC) (envelope-from suseuser04@lajt.hu) Received: from mailout2.bwave.pl (mailout2.bwave.pl [37.233.100.32]) by mx1.freebsd.org (Postfix) with ESMTP id D9B27A77 for ; Thu, 14 Mar 2013 20:44:20 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=drone-mailout2) by mailout2.bwave.pl with esmtp (Exim 4.76) (envelope-from ) id 1UGF0d-0002Ks-Fm for freebsd-questions@FreeBSD.org; Thu, 14 Mar 2013 21:44:19 +0100 Received: from [10.2.1.173] by drone-mailout2 with esmtp (Exim 4.76) (envelope-from ) id 1UGEzm-0002Ja-KH for freebsd-questions@FreeBSD.org; Thu, 14 Mar 2013 21:43:26 +0100 Subject: =?UTF-8?Q?linux_program_with_kernel_module?= From: =?UTF-8?Q?Istvan_Gabor?= To: freebsd-questions@FreeBSD.org Mime-Version: 1.0 Message-ID: <5100adb0.7659bc7d.5142366e.438ea@lajt.hu> Date: Thu, 14 Mar 2013 21:43:26 +0100 X-Originator: 84.236.103.76 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 20:44:21 -0000 Hello: This=20might=20be=20a=20silly=20question=20but=20I=20would=20like=20to=20= be=20sure. FreeBSD=20can=20run=20linux=20programs=20with=20its=20linux=20compatibili= ty=20module (linuxulator). Can=20it=20run=20linux=20programs=20that=20have=20their=20own=20(linux)=20= kernel=20module? If=20yes,=20how=20can=20I=20install=20such=20program,=20and=20how=20can=20= I=20load=20the=20kernel=20module? (If=20I=20know=20correctly=20nvidia=20drivers=20have=20their=20own=20kern= el=20modules,=20and=20FreeBSD=20can run=20linux=20nvidia=20drivers). Thanks, Istvan From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 21:31:30 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D27142A2 for ; Thu, 14 Mar 2013 21:31:30 +0000 (UTC) (envelope-from amijaresp@gmail.com) Received: from mail-ve0-f180.google.com (mail-ve0-f180.google.com [209.85.128.180]) by mx1.freebsd.org (Postfix) with ESMTP id 8C386D0B for ; Thu, 14 Mar 2013 21:31:30 +0000 (UTC) Received: by mail-ve0-f180.google.com with SMTP id jx10so2125537veb.11 for ; Thu, 14 Mar 2013 14:31:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=9IXYMzk4VIpPgchg23t+lIHltqEaI0ki2yg9NrE/uQY=; b=mNNBwzb0ki9ESBNBH/SzkyNEcDQRu3z9OUGK0ylh9MUbNc/poyIj0hcuWqewQCMMgN 14DrzMrfqJzQDJyk6GuPnBnhjqTEhP/jHno1Gyg5TAVGxB2Tka1PLcvXrYrwpvCXKMIc 2WqYXj7pNKSE7C0Vmcc7zTXaCQe/RvmJMPZv3kKfSGktT575hMzfjd0jEazyF6wZQT2F pRsBEWLlkD/YuRfmYCAm+/IH0y9LUao0P0MZt/bvoIzE4ds4HTorfHNC9voEbrrewLOW WKMEmsmpKWt3mKQ7b9bJBbfxrYgEPoGdyMOqQ/JUOIe3bzbrXWShV0ce0dkbbfT+IfJ+ iuXQ== MIME-Version: 1.0 X-Received: by 10.52.24.114 with SMTP id t18mr3323386vdf.62.1363296684107; Thu, 14 Mar 2013 14:31:24 -0700 (PDT) Received: by 10.58.118.4 with HTTP; Thu, 14 Mar 2013 14:31:23 -0700 (PDT) Date: Thu, 14 Mar 2013 17:01:23 -0430 Message-ID: Subject: Identify USB device with devd From: Alberto Mijares To: FreeBSD Questions Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 21:31:30 -0000 Hi list, I have 3 USB GSM modems and I want to trigger some actions when they are plugged to the system. Each modem must trigger a different action, the problem is how to identify each modem because 1) none of the modems have a serial number iSerialNumber = 0x0000 2) two of three modems have same idProduct, so I can't rely on this 3) I don't know how to get the exact USB port where the modem is plugged. I can get the bus with the variable port # Hub port number (USB) // man devd.conf but this is not enough information. Any suggestion? Thanks in advance. Regards, Alberto Mijares From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 21:42:47 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 11E28564 for ; Thu, 14 Mar 2013 21:42:47 +0000 (UTC) (envelope-from ralf.mardorf@rocketmail.com) Received: from nm7.bullet.mail.ird.yahoo.com (nm7.bullet.mail.ird.yahoo.com [77.238.189.21]) by mx1.freebsd.org (Postfix) with SMTP id 08B1FD86 for ; Thu, 14 Mar 2013 21:42:44 +0000 (UTC) Received: from [77.238.189.56] by nm7.bullet.mail.ird.yahoo.com with NNFMP; 14 Mar 2013 21:42:43 -0000 Received: from [217.146.189.102] by tm9.bullet.mail.ird.yahoo.com with NNFMP; 14 Mar 2013 21:42:43 -0000 Received: from [127.0.0.1] by smtp118.mail.ird.yahoo.com with NNFMP; 14 Mar 2013 21:42:43 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rocketmail.com; s=s1024; t=1363297363; bh=Yhp/Fgs5lcrQXKZg0MUe21tNjlCSvPma8MydmWmlB7I=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:X-Rocket-Received:Message-ID:Subject:From:To:Date:In-Reply-To:References:Content-Type:X-Mailer:Mime-Version:Content-Transfer-Encoding; b=CBS0SfC2Cn2U0Vv8iPZQot+/50/h+7mTuJLBoeLT4U2Zt9PzZTVtAlu94lvMaMBBybePZi7Su2uq1SHv9IP/UsvG5fafXHRvv7f3U+R3YOk1asWf7jeC0PpdZeK75tjlPYvtPpAb5TjsRd8vp8g1Jkzt4j2rtB/67JLGEStHjls= X-Yahoo-Newman-Id: 475230.11619.bm@smtp118.mail.ird.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: 0hwko1sVM1lrmCQuRfMfZpXQPpAbA_pOMX.HFzaN5GIWag4 86nkbgXpZh4vhZxj2XwU4nXM1i7lBUlO99lAUAU5x8.9mqwzengwRe8disMD YH0qCFocz0hFEX5IoUlgcS40f3U3GxA4GIqpUjuc5Z0SgrObWYgBNCjI3yBI CLBYXm6EFSmbAhQr34MpumP3S04sKxLkR1FtZSstVc2QgKNyHHfqA4zcVSod 9Phk7j0TrxnqNp8zSDIJeOSyXTgLy.smpF9inq2UIBCHsOpXgCF_YpxlsnqY 11YK_2D2S2CARlqpvg9ghNpgX0RVnzRoCl.95_ekmM6VT.qI9WtHOzehy.rG NVt8CTlaY6dBkRH3Wdu1j8c_t9oY6Nl7GUSDfS6e1_JzZQaGl_sMaxduR2IV 8HJze7JXck1gT8LAvlVZvvqIUAwS6A6bkU08.tppK_yAT X-Yahoo-SMTP: BeMCPs2swBABTJ3kAeEiC_hE0mz8jRexLddJfD8pI2j32fOacjBmXg-- X-Rocket-Received: from [85.182.24.140] (ralf.mardorf@85.182.24.140 with login) by smtp118.mail.ird.yahoo.com with SMTP; 14 Mar 2013 14:42:43 -0700 PDT Message-ID: <1363297361.3685.32.camel@archlinux> Subject: Re: linux program with kernel module From: Ralf Mardorf To: freebsd-questions@freebsd.org Date: Thu, 14 Mar 2013 22:42:41 +0100 In-Reply-To: <5100adb0.7659bc7d.5142366e.438ea@lajt.hu> References: <5100adb0.7659bc7d.5142366e.438ea@lajt.hu> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.4 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 21:42:47 -0000 On Thu, 2013-03-14 at 21:43 +0100, Istvan Gabor wrote: > Can it run linux programs that have their own (linux) kernel module? > If yes, how can I install such program, and how can I load the kernel module? > > (If I know correctly nvidia drivers have their own kernel modules, and FreeBSD can > run linux nvidia drivers). Yesno. You need to compile kernel modules to fit to the version of FreeBSD or Linux. I also call user space "FreeBSD" and "Linux", but it's _not_ correct to do it. FreeBSD is a kernel and Linux is a kernel, not the whole system is called Linux or FreeBSD and both kernels are available in different versions. To compile a module you need to install the kernel headers of the same version as the kernel. The module quasi is the driver. From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 21:50:16 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E0D11736 for ; Thu, 14 Mar 2013 21:50:16 +0000 (UTC) (envelope-from four.harrisons@googlemail.com) Received: from mail-we0-x235.google.com (mail-we0-x235.google.com [IPv6:2a00:1450:400c:c03::235]) by mx1.freebsd.org (Postfix) with ESMTP id 6D04BDBF for ; Thu, 14 Mar 2013 21:50:16 +0000 (UTC) Received: by mail-we0-f181.google.com with SMTP id t44so2622094wey.40 for ; Thu, 14 Mar 2013 14:50:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=x-received:from:date:to:subject:message-id:mime-version :content-type:content-disposition:user-agent; bh=O1jXe0zZ394E5NaQuXrLiXVZh+7KIeoF/sS6E+waKAc=; b=Z+gSrklEUMVL/Xy7oPojWwHVkgrfuq8x2ec4/f4XsoikN5w8a97H0+zrCmaAw0iPBT aFj4kKCh5Rnu9+TMu9klBxtkswop1fqHEAQIujSpUJ5f8vY8F08d54DXnn9PTzhHNarj XmOnzxbAKIpNeKj0R8qX+pnyczvPzkt3DI457daCVnptdBfoG/fQBuYcmPaqpKOLoMuk cxs0bb/JlHFbINo7+EsZXOY8yxmfYP3Dk4KEAhfnFVtrLjgm/Z+Y1IsfO+B1nf3IbOEg 7cPRTiU4aiGaSnx+tlQd/hojh6PSJdJcNJk7vFXHzN95WYLTwX1/xqhVc78zO+eghPMU 5plw== X-Received: by 10.180.76.84 with SMTP id i20mr7040459wiw.9.1363297815707; Thu, 14 Mar 2013 14:50:15 -0700 (PDT) Received: from localhost (client-81-105-210-251.mcr-bng-011.adsl.virginmedia.net. [81.105.210.251]) by mx.google.com with ESMTPS id eo1sm11508963wib.8.2013.03.14.14.50.13 (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 14 Mar 2013 14:50:14 -0700 (PDT) Received: by localhost (sSMTP sendmail emulation); Thu, 14 Mar 2013 22:59:09 +0000 From: Peter Harrison Date: Thu, 14 Mar 2013 22:59:09 +0000 To: questions@freebsd.org Subject: No sound with Thinkpad X60 Message-ID: <20130314225908.GA2157@thinkpad.piggybox> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 21:50:16 -0000 Hi list, I've a problem with sound on a Thinkpad X60, which has an Intel HDA chip. This is what I see in dmesg: hdac0: mem 0xee240000-0xee243fff irq 17 at device 27.0 on pci0 hdacc0: at cad 0 on hdac0 hdaa0: at nid 1 on hdacc0 pcm0: at nid 5 and 25,8 on hdaa0 hdacc1: at cad 1 on hdac0 unknown: at nid 2 on hdacc1 (no driver attached) and from sndstat: FreeBSD Audio Driver (newpcm: 32bit 2009061500/i386) Installed devices: pcm0: (play/rec) default and from mixer: Mixer vol is currently set to 100:100 Mixer pcm is currently set to 100:100 Mixer speaker is currently set to 100:100 Mixer cd is currently set to 1:1 Mixer rec is currently set to 1:1 Mixer igain is currently set to 42:42 Mixer ogain is currently set to 100:100 Mixer monitor is currently set to 67:67 Recording source: cd But I have no sound. This is using Gnome 2.32 on 9.1-R. I did initially accidentally install Pulseaudio, but have subsequently deleted it and reinstalled everything that depended on it without the Pulseaudio dependency. Any thoughts on what I'm doing wrong? Thanks in advance. Peter Harrison. From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 22:01:22 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4D78CA2E for ; Thu, 14 Mar 2013 22:01:22 +0000 (UTC) (envelope-from gull@gull.us) Received: from mail-ea0-x236.google.com (mail-ea0-x236.google.com [IPv6:2a00:1450:4013:c01::236]) by mx1.freebsd.org (Postfix) with ESMTP id C8B61E3E for ; Thu, 14 Mar 2013 22:01:21 +0000 (UTC) Received: by mail-ea0-f182.google.com with SMTP id q15so1221161ead.27 for ; Thu, 14 Mar 2013 15:01:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:x-originating-ip:in-reply-to:references :date:message-id:subject:from:to:cc:content-type:x-gm-message-state; bh=L0xdACnUJNI+VdAJhiQRFg0Y1Eq2jYzLCTFF4McbITw=; b=BFXVI27ADyuRUbaeYPib3E4oXCnPHwcdMnkUtk4NFfOMid0yY6YY7IpAS87VUBOHXi vqQQ0maaATKFz1lTNmL0JIwUYH97ng6eXYjgBhwiNP6K80i9iks3eNRAJLQg7vZ1F7KP 5NenfpsWfVnAP2CfmHOA41X0yF7RgftnAefGMRb6sjigC0Za4WjA9oWGrFfyTc639LOq 2l/cumc814s8FZgN300tm0UeTJvwA5xOqPoSCbxWeJ1dk1sZo7Bi1nf9dmEwBMFHjIrz oBNof5+FoWjsYnF/OLvf7CUCMmWThF2OkjxZYzcBmqRPNz8Vpj5HCIMtBTuBQ+YGOuKU t0uA== MIME-Version: 1.0 X-Received: by 10.14.210.132 with SMTP id u4mr11136077eeo.19.1363298480798; Thu, 14 Mar 2013 15:01:20 -0700 (PDT) Received: by 10.14.133.79 with HTTP; Thu, 14 Mar 2013 15:01:20 -0700 (PDT) X-Originating-IP: [128.95.17.221] In-Reply-To: <87ppz8ceje.fsf@kobe.laptop> References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> Date: Thu, 14 Mar 2013 15:01:20 -0700 Message-ID: Subject: Re: svn & new pkg system From: David Brodbeck To: Giorgos Keramidas X-Gm-Message-State: ALoCoQkmZL6+TJ4/CJoF5sx6DFRwfbzcZrbTJA9lxRrApALv3PMxGS2pzkRB6/8wCf56b2QtYnqE Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Fbsd8 , FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 22:01:22 -0000 On Sat, Mar 9, 2013 at 3:57 PM, Giorgos Keramidas wrote: > Having svn-X.0 in the source tree, imported at great expense of time and > effort, will provide exactly _zero_ benefits if the underlying format of > the repository changes (like subversion likes doing really often). > I agree with your other points, but I think it's worth noting that this particular one isn't actually a concern when it comes to retrieving source code. The subversion *client* doesn't have to care about the server's repository format. All SVN 1.x clients work with all SVN 1.x servers; you just may miss out on some advanced features or optimizations if there's a mismatch, since it'll settle on the lowest common denominator. The *working copy* format does change between client versions, but that's easily resolved by checking out a fresh WC. From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 22:37:26 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1A8AC488 for ; Thu, 14 Mar 2013 22:37:26 +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 B75B0F69 for ; Thu, 14 Mar 2013 22:37:25 +0000 (UTC) Received: from r56.edvax.de (port-92-195-30-57.dynamic.qsc.de [92.195.30.57]) by mx02.qsc.de (Postfix) with ESMTP id C28F82760C; Thu, 14 Mar 2013 23:37:23 +0100 (CET) Received: from r56.edvax.de (localhost [127.0.0.1]) by r56.edvax.de (8.14.5/8.14.5) with SMTP id r2EMbSkD001967; Thu, 14 Mar 2013 23:37:28 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Thu, 14 Mar 2013 23:37:28 +0100 From: Polytropon To: Arthur Chance Subject: Re: Port devel/arduino serial port problems [SOLVED] Message-Id: <20130314233728.484d9e5a.freebsd@edvax.de> In-Reply-To: <5141E5C0.2040606@qeng-ho.org> References: <5140F60B.20106@qeng-ho.org> <51418ED6.7000400@qeng-ho.org> <20130314133348.fdbdc755.freebsd@edvax.de> <5141E5C0.2040606@qeng-ho.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 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 22:37:26 -0000 On Thu, 14 Mar 2013 14:59:12 +0000, Arthur Chance wrote: > However, my point was a little more general than just fixing this > specific access problem - many desktop machines these days don't have > serial lines or any need for dialer programs, and adding yet another > group to an ever increasing list just so that I can talk to an Arduino > seems a little redundant. Remember that this group isn't _that_ new, it has its own "historical value". :-) Furthermore, if you consider PPPoE, what are you actually doing? You're _dialing_ (not with a phone number, not even through the serial port, but utilizing means of PPP) with your modem connected by an Ethernet cable. This mechanism also requires root privileges, except you are in the "dialer" group. :-) http://www.freebsd.org/doc/faq/serial.html > (As does using /var/spool/lock - isn't that > what /dev/cuaU0.lock is for?) No, those are actual devices, see "man 4 uart" for details. The subtree /var/spool is primarily used for things like mail and printer subsystems. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 22:41:40 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B758C5AB for ; Thu, 14 Mar 2013 22:41:40 +0000 (UTC) (envelope-from four.harrisons@googlemail.com) Received: from mail-we0-x22f.google.com (mail-we0-x22f.google.com [IPv6:2a00:1450:400c:c03::22f]) by mx1.freebsd.org (Postfix) with ESMTP id 38646F97 for ; Thu, 14 Mar 2013 22:41:40 +0000 (UTC) Received: by mail-we0-f175.google.com with SMTP id x8so2667721wey.20 for ; Thu, 14 Mar 2013 15:41:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=gRhsOVzYIr3xJi7bxtVgV7nGa2wN2sp3/jbLbrfvRnw=; b=oKzQTyWAznDgzVpdcspdG05XbU0EE0pKJlmRJEWGmTaNDlY06raaoVrRPv7LlqQrqW hzAmGN5Md9/f492jYAB2iF3MTt7yqYxYjNA7oHip3gFUtpHrmvMcOs9gvrspEiCbYt6A 1xGKM9LzHzBUwSGONeJLn1oHW2xxy2kL7yGfBo5Mk0LCKbHKNqHn4xY0QjAQr9pZkzll 6VhcGbavTa1tBhd3bWjsFr+GSLkYQoWijxxy+c1RwmoBqgYNvSVm+OnLVgU/7nhSi24l T5pYKYZrUruFQVRYSUfjD6gtGFecdM8Z6c3u7++scy1yIw3XD9G/F6tOSk7RDeRCyLGy s54g== MIME-Version: 1.0 X-Received: by 10.194.76.37 with SMTP id h5mr7417646wjw.21.1363300899475; Thu, 14 Mar 2013 15:41:39 -0700 (PDT) Received: by 10.216.122.11 with HTTP; Thu, 14 Mar 2013 15:41:39 -0700 (PDT) Date: Thu, 14 Mar 2013 22:41:39 +0000 Message-ID: Subject: No sound on Thinkpad X60 From: peter harrison To: questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 22:41:40 -0000 Hi list, I've a problem with sound on a Thinkpad X60, which has an Intel HDA chip. This is what I see in dmesg: hdac0: mem 0xee240000-0xee243fff irq 17 at device 27.0 on pci0 hdacc0: at cad 0 on hdac0 hdaa0: at nid 1 on hdacc0 pcm0: at nid 5 and 25,8 on hdaa0 hdacc1: at cad 1 on hdac0 unknown: at nid 2 on hdacc1 ( no driver attached) and from sndstat: FreeBSD Audio Driver (newpcm: 32bit 2009061500/i386) Installed devices: pcm0: (play/rec) default and from mixer: Mixer vol is currently set to 100:100 Mixer pcm is currently set to 100:100 Mixer speaker is currently set to 100:100 Mixer cd is currently set to 1:1 Mixer rec is currently set to 1:1 Mixer igain is currently set to 42:42 Mixer ogain is currently set to 100:100 Mixer monitor is currently set to 67:67 Recording source: cd But I have no sound. This is using Gnome 2.32 on 9.1-R. I did initially accidentally install Pulseaudio, but have subsequently deleted it and reinstalled everything that depended on it without the Pulseaudio dependency. Any thoughts on what I'm doing wrong? Thanks in advance. Peter Harrison. ps copying this via the gmail web interface as it didn't seem to make it through from Mutt. Apologies if it appears twice. From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 22:47:22 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 18C2E68B for ; Thu, 14 Mar 2013 22:47:22 +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 B8A0AFCF for ; Thu, 14 Mar 2013 22:47:21 +0000 (UTC) Received: from [92.76.70.82] (helo=michael-think) by www81.your-server.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.74) (envelope-from ) id 1UGGvZ-0000SC-7W; Thu, 14 Mar 2013 23:47:13 +0100 Content-Type: text/plain; charset=iso-8859-15; format=flowed; delsp=yes To: Fbsd8 , "Giorgos Keramidas" Subject: Re: svn & new pkg system References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> Date: Thu, 14 Mar 2013 23:47:03 +0100 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Michael Ross" Message-ID: In-Reply-To: <87ppz8ceje.fsf@kobe.laptop> User-Agent: Opera Mail/12.14 (Win32) X-Authenticated-Sender: gmx@ross.cx X-Virus-Scanned: Clear (ClamAV 0.97.6/16852/Thu Mar 14 22:41:19 2013) Cc: FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 22:47:22 -0000 On Sun, 10 Mar 2013 00:57:25 +0100, Giorgos Keramidas wrote: > On Sat, 09 Mar 2013 18:25:22 -0500, Fbsd8 wrote: >> Is svn going to become part of the base system in 9.2-RELEASE? > > No. I'd like to reference a thread on the @stable list here: http://lists.freebsd.org/pipermail/freebsd-stable/2013-March/072765.html "svnup is a lightweight, dependency-free, BSD licensed program to pull source files from a Subversion server." Regards, Michael From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 22:53:29 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A844C7A6 for ; Thu, 14 Mar 2013 22:53:29 +0000 (UTC) (envelope-from ml@my.gd) Received: from mail-wi0-x234.google.com (mail-wi0-x234.google.com [IPv6:2a00:1450:400c:c05::234]) by mx1.freebsd.org (Postfix) with ESMTP id 2E37BC for ; Thu, 14 Mar 2013 22:53:29 +0000 (UTC) Received: by mail-wi0-f180.google.com with SMTP id hi8so2306068wib.13 for ; Thu, 14 Mar 2013 15:53:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:references:mime-version:in-reply-to:content-type :content-transfer-encoding:message-id:cc:x-mailer:from:subject:date :to:x-gm-message-state; bh=fz42skFk51u4MYwhBOsxv9UM9/ybxLH1VoFlra/wLHY=; b=mLFOVg6nBdtSYWJYORC6BYBFhDRlwCwQ9JDdHng+BzzEdQTocCiAB6iqhZWQguWfQO Mw3w+lfKRpHu/zlSi1f7lGb03834TtSXFlwnLF8auGFW/9FIRBxyjyhFIEipr/abZgZf geG4c4FBjLRiDWv3XAN55CvG23AfWmMzfF5XUw17DiIaqlQIdrwjwLQdtIkMAMYapuEm 9hzoH9Lf/6ERorqEC2Mtof/mYYeTMzYANovz0iqH+oqs4H9XDSfmmaf8h/9mt/0CR+rS m3DImmp/FPv5vm4kiorJzQjpbyTIQZ1lS7aG5ARyRndTzRuP3fDplleX015Ql2TgQA5S RLNw== X-Received: by 10.180.74.228 with SMTP id x4mr37503636wiv.0.1363301608325; Thu, 14 Mar 2013 15:53:28 -0700 (PDT) Received: from [10.186.12.217] ([92.90.16.78]) by mx.google.com with ESMTPS id n10sm7041394wia.0.2013.03.14.15.53.25 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 14 Mar 2013 15:53:27 -0700 (PDT) References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> Mime-Version: 1.0 (1.0) In-Reply-To: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: <575A0D87-B1A2-4CE2-B0AA-F18C55472CAB@my.gd> X-Mailer: iPhone Mail (10B144) From: Damien Fleuriot Subject: 8.4-RELEASE (was Re: svn & new pkg system) Date: Thu, 14 Mar 2013 23:52:58 +0100 To: Michael Ross X-Gm-Message-State: ALoCoQlN/9dXaweS75S+LeCxtqUhZIXP/bHLuWEZ1TNguRmRqxzaN8uZetQPY3MqPb/bL33KdVjA Cc: Giorgos Keramidas , Fbsd8 , FreeBSD questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 22:53:29 -0000 On 14 Mar 2013, at 23:47, "Michael Ross" wrote: > On Sun, 10 Mar 2013 00:57:25 +0100, Giorgos Keramidas wrote: >=20 >> On Sat, 09 Mar 2013 18:25:22 -0500, Fbsd8 wrote: >>> Is svn going to become part of the base system in 9.2-RELEASE? >>=20 >> No. >=20 > I'd like to reference a thread on the @stable list here: >=20 > http://lists.freebsd.org/pipermail/freebsd-stable/2013-March/072765.htm= l >=20 > "svnup is a lightweight, dependency-free, BSD licensed program to pull sou= rce files from a Subversion server." >=20 >=20 > Regards, >=20 > Michael >=20 Speaking of 9.2, are there any plans for a 8.4 ?= From owner-freebsd-questions@FreeBSD.ORG Thu Mar 14 23:48:17 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id F312F17F for ; Thu, 14 Mar 2013 23:48:16 +0000 (UTC) (envelope-from leeoliveshackelford@surewest.net) Received: from rc3.surewest.net (rc3.surewest.net [66.60.130.52]) by mx1.freebsd.org (Postfix) with ESMTP id DE39D28B for ; Thu, 14 Mar 2013 23:48:16 +0000 (UTC) Received: from smtp4.surewest.net ([66.60.130.145]) by rc3.surewest.net ({89e988b2-2a53-469e-91f0-3e9924092bec}) via TCP (outbound) with ESMTP id 20130314234437387 for ; Thu, 14 Mar 2013 23:44:37 +0000 X-RC-FROM: X-RC-RCPT: Received: from ms5.mc.surewest.net (hansolo.surewest.net [64.30.98.104]) by smtp4.surewest.net (Postfix) with ESMTP id 320AE89398 for ; Thu, 14 Mar 2013 16:44:37 -0700 (PDT) Received: (from ms5.mc.surewest.net [192.168.60.104]) by ms5.mc.surewest.net (MOS 4.1.10-GA) with HTTP/1.1 id DEM37662 (AUTH leeoliveshackelford@surewest.net); Thu, 14 Mar 2013 16:44:36 -0700 (PDT) From: Subject: Installing 9.1 without re-partitioning hard drive To: freebsd-questions@freebsd.org X-Mailer: Mirapoint Webmail Direct 4.1.10-GA MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20130314164436.DEM37662@ms5.mc.surewest.net> Date: Thu, 14 Mar 2013 16:44:36 -0700 (PDT) X-MAG-OUTBOUND: surewest.redcondor.net@66.60.130.145/32 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2013 23:48:17 -0000 Good afternoon, FreeBSD enthusiasts. I am attempting to install FreeBSD 9.1 on a dual-boot configuration with Windows XP. I am using bsdinstall. I do not wish for the partition table to be changed. How do I instruct bsdinstall to skip the re-partitioning step? It gives an error message that it cannot write a certain file because the medium is write-only. Any suggestions would be appreciated. Yours truly, Newby Lee From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 01:16:17 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 457F09F3 for ; Fri, 15 Mar 2013 01:16:17 +0000 (UTC) (envelope-from ml@my.gd) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id C61797A7 for ; Fri, 15 Mar 2013 01:16:16 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id gg6so2399047lbb.27 for ; Thu, 14 Mar 2013 18:16:15 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:x-gm-message-state; bh=hY3MqMcVfGRZX/Eqs7DmYSOazb86UAxUNpedurANzuE=; b=ABN5yG3s+YsgHuXw4BsOhzIgOmUBndO2fh3JWB67dz3G2mrdTj7O9KOGQqKIsaEspy 3RAfimJRTxtDwY/8gj4/zmj+ZkCZT0N/ncGAab2hZ5AXEeDOVHQahh35FjK+gMu0tKfD +EutdwoYmO8dNQQ3goPykeTVOWU8rbgFZOOBXbqadPWSd2poKrfvnzTP/DnHZW8ss4ZG i0VdwhxQeAlX9TASjrQjuxLxTH9rkMR6UswxgAQZfMZdCsYR08i7FqewrnBNddkc4OQH AcIWwv/MEHhQlF6hAVSZcQgIkCGDch/DF9JYG2Qdb2QMV/eIIlMddKgRk/RI281/TIBk +jHQ== MIME-Version: 1.0 X-Received: by 10.112.134.166 with SMTP id pl6mr1912194lbb.68.1363310175311; Thu, 14 Mar 2013 18:16:15 -0700 (PDT) Received: by 10.112.144.104 with HTTP; Thu, 14 Mar 2013 18:16:15 -0700 (PDT) Received: by 10.112.144.104 with HTTP; Thu, 14 Mar 2013 18:16:15 -0700 (PDT) In-Reply-To: <20130314164436.DEM37662@ms5.mc.surewest.net> References: <20130314164436.DEM37662@ms5.mc.surewest.net> Date: Fri, 15 Mar 2013 02:16:15 +0100 Message-ID: Subject: Re: Installing 9.1 without re-partitioning hard drive From: Damien Fleuriot To: leeoliveshackelford@surewest.net X-Gm-Message-State: ALoCoQkJEa4vb04Ik0H/7dUflvXcF/HAtvHbWB/vtg+r1xGdBYk8+5hY7mjJc0Uzhv2MAxBmopJ5 Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 01:16:17 -0000 On Mar 15, 2013 12:48 AM, wrote: > > Good afternoon, FreeBSD enthusiasts. I am attempting to install FreeBSD 9.1 on a dual-boot configuration with Windows XP. I am using bsdinstall. I do not wish for the partition table to be changed. How do I instruct bsdinstall to skip the re-partitioning step? It gives an error message that it cannot write a certain file because the medium is write-only. Any suggestions would be appreciated. Yours truly, Newby Lee > You're trying to install to your windows partition, that won't work. You need free space on the drive which implies shrinking your existing partition. From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 02:30:13 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0D4363C6 for ; Fri, 15 Mar 2013 02:30:13 +0000 (UTC) (envelope-from bejoygthomas@yahoo.com) Received: from nm37-vm6.bullet.mail.sg3.yahoo.com (nm37-vm6.bullet.mail.sg3.yahoo.com [106.10.151.125]) by mx1.freebsd.org (Postfix) with SMTP id 403AD9DB for ; Fri, 15 Mar 2013 02:30:11 +0000 (UTC) Received: from [106.10.166.61] by nm37.bullet.mail.sg3.yahoo.com with NNFMP; 15 Mar 2013 02:26:46 -0000 Received: from [106.10.167.168] by tm18.bullet.mail.sg3.yahoo.com with NNFMP; 15 Mar 2013 02:26:46 -0000 Received: from [127.0.0.1] by smtp141.mail.sg3.yahoo.com with NNFMP; 15 Mar 2013 02:26:46 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1363314406; bh=cd7rpEmhhHbniZLli6W/CzOMNNcO/1sySaBiAqwgE+o=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:X-Rocket-Received:Subject:Mime-Version:Content-Type:From:In-Reply-To:Date:Cc:Content-Transfer-Encoding:Message-Id:References:To:X-Mailer; b=46MvZmXD2QR3dTaZXA7qMgl1VyuzjUuklNHIYnktA819hUspuxMVC7L2+5OeblJfYM1J4yHmYTf+fx5z1gmQbDWPAiPH2BEjvgkGUfk/nWC0oXc/+3tEqPsv3XEUBOEFqSQ2it8B12CLiiOjPmsihJVQIE17R/qYswfpOYyKdRo= X-Yahoo-Newman-Id: 495959.37276.bm@smtp141.mail.sg3.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: JPLGlH0VM1lSnLbeo4EzJCswDCtoslanMSl4KjTBAd45eyq XTapLCQ2lY0lVdjmbgmt9wMcEjbQWfgzPK3Bp3st9slebg.R9.a2M1SwMUy3 ezrpAiC1uL0vLzfSQzygOpFJfjIGBMJO_dkJX1TrmKEVXf6NVnORCFQDys8I yZjOZBMT5KaW.y3wf09VfqpJaZpMLPjMvwdy1XvQjS99hZIFU7VnVU.TKXlr uvKAAcMv5Jh7GtL1N5Owrf4LH5L1OuMh8HBaPFcAA1wFkMAOo9NBt5JgR5rz VVkaE30pT74DENR3.MbEkI6FkAjnHFENdarZa5BYICDALtK_e_AiIIbIKe1t jUp8f8z8.M3T5jdxJcD5mlkhF6wbbavsni_ljMuSd5L2xf1iA1F.j5OX5SI2 M3p4obsJpuD0fLtMNP1k- X-Yahoo-SMTP: wUFYtX6swBBtUSvlG_G5EWi_ycgIVslBiQ-- X-Rocket-Received: from [192.168.0.3] (bejoygthomas@117.192.249.101 with plain) by smtp141.mail.sg3.yahoo.com with SMTP; 14 Mar 2013 19:26:46 -0700 PDT Subject: Re: Installing 9.1 without re-partitioning hard drive Mime-Version: 1.0 (Apple Message framework v1283) Content-Type: text/plain; charset=us-ascii From: Bejoy Thomas In-Reply-To: <20130314164436.DEM37662@ms5.mc.surewest.net> Date: Fri, 15 Mar 2013 07:56:42 +0530 Content-Transfer-Encoding: quoted-printable Message-Id: <021E2D93-E6E2-4C30-9728-845F2EDE31FB@yahoo.com> References: <20130314164436.DEM37662@ms5.mc.surewest.net> To: X-Mailer: Apple Mail (2.1283) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 02:30:13 -0000 Hi Lee, One option to have a FreeBSD system on winxp, without any partitioning = to the existing hard disk, is to have freebsd as a vm on virtualbox. For = having a dual boot system you would need to partition the existing disk = . If you have a second had disk you could select it and let FreeBSD = partition it with the default configuration using "Entire Disk" . The = FreeBSD handbook should help you=20 http://www.freebsd.org/doc/handbook/bsdinstall-partitioning.html = http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/install.html#windows-= coexist Bejoy Thomas On 15-Mar-2013, at 5:14 AM, = wrote: > Good afternoon, FreeBSD enthusiasts. I am attempting to install = FreeBSD 9.1 on a dual-boot configuration with Windows XP. I am using = bsdinstall. I do not wish for the partition table to be changed. How = do I instruct bsdinstall to skip the re-partitioning step? It gives an = error message that it cannot write a certain file because the medium is = write-only. Any suggestions would be appreciated. Yours truly, Newby = Lee >=20 > _______________________________________________ > 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 Mar 15 02:37:47 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9D18C81C for ; Fri, 15 Mar 2013 02:37:47 +0000 (UTC) (envelope-from leeoliveshackelford@surewest.net) Received: from rc1.surewest.net (rc1.surewest.net [66.60.130.50]) by mx1.freebsd.org (Postfix) with ESMTP id 7943AA2A for ; Fri, 15 Mar 2013 02:37:47 +0000 (UTC) Received: from smtp1.surewest.net ([66.60.130.145]) by rc1.surewest.net ({dfaaa318-551d-4a0a-8038-7c31cf31c4f6}) via TCP (outbound) with ESMTP id 20130315023405153 for ; Fri, 15 Mar 2013 02:34:05 +0000 X-RC-FROM: X-RC-RCPT: Received: from ms5.mc.surewest.net (hansolo.surewest.net [64.30.98.104]) by smtp1.surewest.net (Postfix) with ESMTP id 0B30F893C3 for ; Thu, 14 Mar 2013 19:34:05 -0700 (PDT) Received: (from ms5.mc.surewest.net [192.168.60.101]) by ms5.mc.surewest.net (MOS 4.1.10-GA) with HTTP/1.1 id DEM52311 (AUTH leeoliveshackelford@surewest.net); Thu, 14 Mar 2013 19:34:04 -0700 (PDT) From: Subject: Installing 9.1 without re-partitioning hard drive To: freebsd-questions@freebsd.org X-Mailer: Mirapoint Webmail Direct 4.1.10-GA MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20130314193404.DEM52311@ms5.mc.surewest.net> Date: Thu, 14 Mar 2013 19:34:04 -0700 (PDT) X-MAG-OUTBOUND: surewest.redcondor.net@66.60.130.145/32 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 02:37:47 -0000 Good afternoon, FreeBSD enthusiasts. I am attempting to install FreeBSD 9.1 on a dual-boot configuration with Windows XP. I am using bsdinstall. I do not wish for the partition table to be changed. How do I instruct bsdinstall to skip the re-partitioning step? It gives an error message that it cannot write a certain file because the medium is write-only. Any suggestions would be appreciated. Yours truly, Newby Lee I forgot to mention some additional facts: The FreeBSD operating system is being installed from a d.v.d. I partitioned the hard drive into two equal partitions before re-installing Windows XP. Also, the following cryptic instruction was given to me by the bsdinstall program: "When finished, mount the system at /mnt and place an fstab file for the new system at tmp/bsdinstall_etc/fstab. Then type "exit". Please, can anyone explain to me what this instruction is telling me to do, and give me some details as to how to perform these tasks? Perhaps, also explain to me why I am supposed to do these things? How do I mount the system at /mnt? How do I compose an fstab file? How do I place the fstab file at tmp/bsdinstall_etc/fstab, a directory that does not exist until the filesystem is built? If the answers to any of these questions are explained in writing anywhere, please tell me where to look. Thank you. Again, yours truly, Newby Lee From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 03:21:57 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4B1A3E29 for ; Fri, 15 Mar 2013 03:21:57 +0000 (UTC) (envelope-from andre@drenet.info) Received: from mail-ye0-f175.google.com (mail-ye0-f175.google.com [209.85.213.175]) by mx1.freebsd.org (Postfix) with ESMTP id D7A1BD07 for ; Fri, 15 Mar 2013 03:21:56 +0000 (UTC) Received: by mail-ye0-f175.google.com with SMTP id j12so521912yeg.34 for ; Thu, 14 Mar 2013 20:21:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=drenet.info; s=google; h=x-received:content-type:to:cc:subject:references:date:mime-version :content-transfer-encoding:from:message-id:in-reply-to:user-agent; bh=xin7OlKO9XSk8/wZmX4RoNBFYlYHzvEYz7yCc4EqFeM=; b=O6YEISoz8l1D9hd9nEAlQa9I4rX8Q4Q+xM+gINU078i9HpPSplw/SW9hxeK14idfxJ SXJuklOh07vI1BQMGuvmZwPjXRiLGDqcIs9enMfxCQISOy5x6wD+04mRa07pJV5hH1/U MLcwOEt7DkTES3kL2s1jiyT33D285WbXqo60M= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:content-type:to:cc:subject:references:date:mime-version :content-transfer-encoding:from:message-id:in-reply-to:user-agent :x-gm-message-state; bh=xin7OlKO9XSk8/wZmX4RoNBFYlYHzvEYz7yCc4EqFeM=; b=SdTAyqrwNKRO4BKNHheRVaYsfHrulERYR7eqtUQZrwuJKVQt0q+xNFTvHtuZUA+QEf 8kLIeXXnx/v/sQaI3YmD52pfShR1okvj2M2JSEV5WmRcSP9Nwdq40RNu4w8ItMv0g64d +80uUFeDct5AZpFIC/krTm/Rae0Gg1ZWu3uxSHC1c2SI5HYY3bL6r9qoiT9SM5BqLRW5 Csh3hyVxsPI+ZeuMGcu5hKbCb5t3qWvP0g1UMlGY7lP4zF99q5EiKAYjZ3E5KsRFUwY3 IoIgBw6y7718vWRNi60+PbnK2DDR2FZL4NGEAyM45ZAYu3AZifKszRMhW1KN0XWnrMeY VA1g== X-Received: by 10.236.165.38 with SMTP id d26mr6683993yhl.163.1363317710168; Thu, 14 Mar 2013 20:21:50 -0700 (PDT) Received: from desktop.drenet.local ([97.100.190.35]) by mx.google.com with ESMTPS id s34sm9314552yhe.9.2013.03.14.20.21.48 (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 14 Mar 2013 20:21:49 -0700 (PDT) Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: "Damien Fleuriot" Subject: Re: Issue with building custom kernel References: Date: Thu, 14 Mar 2013 23:21:37 -0400 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Andre Goree" Message-ID: In-Reply-To: User-Agent: Opera Mail/12.14 (FreeBSD) X-Gm-Message-State: ALoCoQnXDeYec9qiiF/wB7ZdE36AGfDiNX1PTq1AWlFttksXnsT5Sp0X+6AaL0IRFz0hSL9Sd22Q Cc: "freebsd-questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 03:21:57 -0000 On Wed, 13 Mar 2013 17:43:40 -0400, Damien Fleuriot wrote: > > On 13 Mar 2013, at 22:26, "Andre Goree" wrote: > >> I seem to be having trouble building my custom kernel. I've removed >> several things that I believe were unnecessary, and added Linux >> support, but I don't think I'm missing anything that is very >> important. Here is the last few lines of the build: >> >> ===> zlib (all) >> /usr/local/libexec/ccache/world/cc -O2 -pipe -fno-strict-aliasing >> -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS >> -include /usr/obj/usr/src/sys/BUILD130313/opt_global.h -I. -I@ >> -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 >> --param large-function-growth=1000 -fno-common -g >> -fno-omit-frame-pointer -I/usr/obj/usr/src/sys/BUILD130313 >> -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float >> -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector >> -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls >> -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes >> -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign >> -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option >> -c /usr/src/sys/modules/zlib/../../net/zlib.c >> ld -d -warn-common -r -d -o zlib.ko.debug zlib.o >> :> export_syms >> awk -f /usr/src/sys/conf/kmod_syms.awk zlib.ko.debug export_syms | >> xargs -J% objcopy % zlib.ko.debug >> objcopy --only-keep-debug zlib.ko.debug zlib.ko.symbols >> objcopy --strip-debug --add-gnu-debuglink=zlib.ko.symbols zlib.ko.debug >> zlib.ko >> 1 error >> *** [buildkernel] Error code 2 >> 1 error >> *** [buildkernel] Error code 2 >> 1 error >> >> Here is my KERNCONF: >> http://www.drenet.net/BUILD130313 >> >> I've also created a diff of what's missing from my configuration >> compared to GENERIC: >> http://www.drenet.net/kern_diff.txt >> >> Thanks in advance for any guidance you can provide! >> >> -- >> Andre Goree >> andre@drenet.info >> _______________________________________________ >> 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" > > Nothing in your diff shocks me. > > Wanna re SVN up your sources, rebuild your kernel-toolchain and try > again ? Hmmm, just tried that, and still get the same result. Seems I'll need to resort to trial-and-error at this point -- or just add Linux support to GENERIC, remove firewire, fdc and RAID controllers and call it a day :p Thanks for looking over the diff! -- Andre Goree andre@drenet.info From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 03:44:51 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A6FAAFE1 for ; Fri, 15 Mar 2013 03:44:51 +0000 (UTC) (envelope-from tamino@wolfhut.org) Received: from pendor.wolfhut.org (pendor.wolfhut.org [173.228.91.225]) by mx1.freebsd.org (Postfix) with ESMTP id 8A291DBC for ; Fri, 15 Mar 2013 03:44:51 +0000 (UTC) Received: from [192.168.42.100] (173-228-91-224.static.sonic.net [173.228.91.224]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by pendor.wolfhut.org (Postfix) with ESMTPSA id C9017DBB25; Thu, 14 Mar 2013 20:44:45 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.3 \(1503\)) Subject: Re: Installing 9.1 without re-partitioning hard drive From: Ben Cottrell In-Reply-To: <20130314193404.DEM52311@ms5.mc.surewest.net> Date: Thu, 14 Mar 2013 20:44:45 -0700 Content-Transfer-Encoding: 7bit Message-Id: <4B56BC62-B8BC-4EB4-B356-988D5EC7C610@wolfhut.org> References: <20130314193404.DEM52311@ms5.mc.surewest.net> To: X-Mailer: Apple Mail (2.1503) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 03:44:51 -0000 Lee, Are you using DOS-style or GPT partitions? I'm assuming DOS-style, and the rest of this email is only correct if that's the case, so correct me if I'm wrong. There's actually two partition tables at work here -- the "big" one, that lives at the start of the physical disk and divides up the FreeBSD from the Windows. Inside the FreeBSD "slice" (slice, partition, same thing, but just to be clear, call it a slice) there's going to be *another* partition table, to divide up the FreeBSD partitions amongst themselves. At a bare minimum you're going to have two partitions (which are really sub-partitions at this point), root and swap. Maybe even more. So it seems to me like, if you can get to the point where the FreeBSD installer recognizes the slice you've set aside for it, as its own, then you can let it rewrite the partition table *inside that slice* as much as it wants to. OK? Make sense? You just don't want it to touch the *outer* one. I honestly don't know enough about how the boot blocks work to know if that's going to work, in the end. You might still end up having to say yes to let it install FreeBSD boot blocks -- I don't know. But it seems to me like a prerequisite, in any case, is going to be to set the FreeBSD partition to partition type 165, so that the installer will recognize it as a FreeBSD slice. Is it already partition type 165? If not, can you make it type 165 and see if that changes anything? ~Ben From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 06:51:28 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 00FAAD82 for ; Fri, 15 Mar 2013 06:51:27 +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 7FE2A35F for ; Fri, 15 Mar 2013 06:51:26 +0000 (UTC) Received: from mail.fig.ol.no (localhost [127.0.0.1]) by mail.fig.ol.no (8.14.6/8.14.6) with ESMTP id r2F6pMVW073683 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 15 Mar 2013 07:51:22 +0100 (CET) (envelope-from trond@fagskolen.gjovik.no) Received: from localhost (trond@localhost) by mail.fig.ol.no (8.14.6/8.14.6/Submit) with ESMTP id r2F6pMMi073680; Fri, 15 Mar 2013 07:51:22 +0100 (CET) (envelope-from trond@fagskolen.gjovik.no) X-Authentication-Warning: mail.fig.ol.no: trond owned process doing -bs Date: Fri, 15 Mar 2013 07:51:22 +0100 (CET) From: =?ISO-8859-1?Q?Trond_Endrest=F8l?= Sender: Trond.Endrestol@fagskolen.gjovik.no To: Damien Fleuriot Subject: Re: 8.4-RELEASE (was Re: svn & new pkg system) In-Reply-To: <575A0D87-B1A2-4CE2-B0AA-F18C55472CAB@my.gd> Message-ID: References: <513BC4E2.4040708@a1poweruser.com> <87ppz8ceje.fsf@kobe.laptop> <575A0D87-B1A2-4CE2-B0AA-F18C55472CAB@my.gd> 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-1521500278-1363330282=:92519" 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 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 06:51:28 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --2055831798-1521500278-1363330282=:92519 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT On Thu, 14 Mar 2013 23:52+0100, Damien Fleuriot wrote: > Speaking of 9.2, are there any plans for a 8.4 ? http://svnweb.freebsd.org/base?view=revision&revision=248213 -- +-------------------------------+------------------------------------+ | Vennlig hilsen, | Best regards, | | Trond Endrestøl, | Trond Endrestøl, | | IT-ansvarlig, | System administrator, | | Fagskolen Innlandet, | Gjøvik Technical College, Norway, | | tlf. mob. 952 62 567, | Cellular...: +47 952 62 567, | | sentralbord 61 14 54 00. | Switchboard: +47 61 14 54 00. | +-------------------------------+------------------------------------+ --2055831798-1521500278-1363330282=:92519-- From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 13:03:59 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9C586972 for ; Fri, 15 Mar 2013 13:03:59 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mout.gmx.net (mout.gmx.net [74.208.4.201]) by mx1.freebsd.org (Postfix) with ESMTP id 50AA6D6E for ; Fri, 15 Mar 2013 13:03:58 +0000 (UTC) Received: from mailout-us.mail.com ([172.19.198.94]) by mrigmx.server.lan (mrigmxus002) with ESMTP (Nemesis) id 0MhTx0-1U2nCJ1Dbm-00McuD for ; Fri, 15 Mar 2013 14:03:57 +0100 Received: (qmail invoked by alias); 15 Mar 2013 13:03:57 -0000 Received: from unknown (EHLO dc.sinhro.lv) [87.246.164.215] by mail.gmx.com (mp-us011) with SMTP; 15 Mar 2013 09:03:57 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX1/85b8FAOv8rR1+rTYEP5HrGgDLlKM2x2i4eNDOfH CblUXZON8PEFKg Message-ID: <51431C3C.9080009@mail.com> Date: Fri, 15 Mar 2013 15:03:56 +0200 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Error: shared library "mysqlclient.18" does not exist References: <513E0D6D.10503@mail.com> <513E1BC9.6040207@FreeBSD.org> <513E1DF8.3020408@mail.com> <513E231A.90105@FreeBSD.org> <513E26C2.9040601@mail.com> <513E29D1.8030709@FreeBSD.org> <513E31B8.2020509@mail.com> <513E4FB8.2060506@mail.com> <513E55A0.7030109@FreeBSD.org> <513E58D2.8000503@mail.com> <513E5C83.7040802@FreeBSD.org> <513E6001.9040206@mail.com> <513F43CA.1070204@FreeBSD.org> <513F5C18.6050806@mail.com> In-Reply-To: <513F5C18.6050806@mail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 13:03:59 -0000 On 03/12/2013 18:47, Jeff Tipton wrote: > On 03/12/2013 17:03, Greg Larkin wrote: >> Hi Jeff, Good news and thanks for the update. The maia Makefile seems >> to imply that RAR support can be provided either by archivers/rar or >> archivers/unrar, and if so, those options should likely be exclusive. >> I found some problems related to detecting the MySQL dependencies in >> general, too. I'll create a PR to fix these issues. In the mean time, >> can you test whether maia does what you want with just the UNRAR >> option enabled? Thank you, Greg -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.13 (Darwin) Comment: Using GnuPG with Thunderbird >> - http://www.enigmail.net/ >> iEYEARECAAYFAlE/Q8kACgkQ0sRouByUApDjIwCgqujnwXRPxrNq4/ARjK6Tv98m >> 5qsAn37lrANQqCp9op1Y4WPZXz1gcYn/ =NQdO -----END PGP SIGNATURE----- >> _______________________________________________ >> 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" > Hi Greg, > > Thank you very much, your really helped me. Ok, I think I will test > Maia with RARed eicar; only it will still take some time until I > finish the whole mailsystem. I'll report back as soon as I get to the > point of testing. > > Jeff Hi Greg, I finished my mailsystem setup with Maia (without RAR support and with UNRAR support), and tried to scan a RARed eicar file, and, yes, it detected that file as infected. But there were 2 other issues: 1. configtest.pl hung because of p5-Forks. I found an explanation and a link to a patch for FreeBSD here: http://comments.gmane.org/gmane.mail.virus.maiamailguard/15493 The patch solved this problem. As I understood from the discussion, not every install might have this problem but it often shows up in a jail, and I have this installation in a jail. 2. When Maia was freshly installed, Logout did not work because the function "session_is_registered" is no longer supported in PHP 5.4. I replaced the row 87 in logout.php if (session_is_registered("uid")) { with if (isset($_SESSION['uid'])) { as explained here: http://comments.gmane.org/gmane.mail.virus.maiamailguard/15586 and now logging out works ok. Maybe this information is useful. Thanks, Greg for help and interest Jeff From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 15:03:19 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D9A41AB4 for ; Fri, 15 Mar 2013 15:03:19 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from eris.bzerk.org (unknown [IPv6:2001:980:18dd:1:192:168:179:45]) by mx1.freebsd.org (Postfix) with ESMTP id 5D6517AA for ; Fri, 15 Mar 2013 15:03:19 +0000 (UTC) Received: from eris.bzerk.org (BOFH@localhost [127.0.0.1]) by eris.bzerk.org (8.14.6/8.14.5) with ESMTP id r2FF3EZh022228 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 15 Mar 2013 15:03:14 GMT (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by eris.bzerk.org (8.14.6/8.14.6/Submit) id r2FF3Dcv022227; Fri, 15 Mar 2013 15:03:13 GMT (envelope-from mail25@bzerk.org) X-Authentication-Warning: eris.bzerk.org: bulk set sender to mail25@bzerk.org using -f Date: Fri, 15 Mar 2013 15:03:13 +0000 From: Ruben de Groot To: Ralf Mardorf Subject: Re: linux program with kernel module Message-ID: <20130315150313.GA22064@eris.bzerk.org> References: <5100adb0.7659bc7d.5142366e.438ea@lajt.hu> <1363297361.3685.32.camel@archlinux> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1363297361.3685.32.camel@archlinux> User-Agent: Mutt/1.5.21 (2010-09-15) X-Spam-Status: No, score=-11.0 required=5.0 tests=ALL_TRUSTED,AUTHD_RELAY autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eris.bzerk.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (eris.bzerk.org [127.0.0.1]); Fri, 15 Mar 2013 15:03:17 +0000 (UTC) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 15:03:19 -0000 On Thu, Mar 14, 2013 at 10:42:41PM +0100, Ralf Mardorf typed: > On Thu, 2013-03-14 at 21:43 +0100, Istvan Gabor wrote: > > Can it run linux programs that have their own (linux) kernel module? > > If yes, how can I install such program, and how can I load the kernel module? > > > > (If I know correctly nvidia drivers have their own kernel modules, and FreeBSD can > > run linux nvidia drivers). > > Yesno. > > You need to compile kernel modules to fit to the version of FreeBSD or > Linux. > > I also call user space "FreeBSD" and "Linux", but it's _not_ correct to > do it. FreeBSD is a kernel and Linux is a kernel, not the whole system > is called Linux or FreeBSD and both kernels are available in different > versions. You're right about Linux (being only a kernel). Not so for FreeBSD. FreeBSD is the name of the OS,, kernel plus userland. You can compare it to debian, another (linux based) OS. From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 15:27:06 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0EFF547A for ; Fri, 15 Mar 2013 15:27:06 +0000 (UTC) (envelope-from ralf.mardorf@rocketmail.com) Received: from nm12.bullet.mail.ird.yahoo.com (nm12.bullet.mail.ird.yahoo.com [77.238.189.65]) by mx1.freebsd.org (Postfix) with SMTP id 21EE38C8 for ; Fri, 15 Mar 2013 15:27:04 +0000 (UTC) Received: from [212.82.105.244] by nm12.bullet.mail.ird.yahoo.com with NNFMP; 15 Mar 2013 15:26:57 -0000 Received: from [217.146.189.111] by tm16.bullet.mail.ird.yahoo.com with NNFMP; 15 Mar 2013 15:26:57 -0000 Received: from [127.0.0.1] by smtp127.mail.ird.yahoo.com with NNFMP; 15 Mar 2013 15:26:57 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rocketmail.com; s=s1024; t=1363361217; bh=jzH3Te66SbG9N3mkvIJUrAyCzYCq+a+AaBjcGV+aah0=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:X-Rocket-Received:Message-ID:Subject:From:To:Date:In-Reply-To:References:Content-Type:X-Mailer:Mime-Version:Content-Transfer-Encoding; b=xl/pRhqH2lRpPa07mFsr+2eldG7duMrTJKgyE+rZyZJsOPA9mlk+48OV/wLl4lSxjjPW0o9GsMLo8ixa63CZ3SBp92RdLW7jngxD2Jk9E1eZNMatd78M+kZotp7fe82jMmKB1r+z/Ucqv4NmFPHoHzuMT6ZCvpqEFUQOMHD8rRE= X-Yahoo-Newman-Id: 166623.60883.bm@smtp127.mail.ird.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: 03t7Ss4VM1kUM7y.eJRVt4Gf2LlqcFE1kE4b1j3LrwnTdvI 0bSaKoPDxR9u8ujzI6Vo54RRAJgUfH42TaJ4X7QHBNgrR8LjI0HcXiWOeV5G V9a9GcrHGgU6LSqcUpHf8n09MTTK.FvsHiPwQJ2XqW4wxuEfW_GKk5vJpdRd AfzieKzKjrO2sz8UzNAzdyfFYprO7iihF8hC92SZCBKv_zj4Wnzvj9jbBGm4 GS2aWfv7xDhYYjZ4BUPDgRmu3AtgYFycKxEEtSAG_vvD22Jwb_9bP8ItFPwy XjFTpkNKdPJC2jNH0uOHCyRYPEsedMVmjcoyd1SpCFcnIchgqfsyllgvvl3K pmZMgozIqlTiEpPhe5S9jHcQR7lKz4YHeTzronsa4FlRuRzET_xtEimL7CHK 2DksT8IKe1kKdlJ7E6Bes2HpiPLj_r4a_igz2GWvwLq8- X-Yahoo-SMTP: BeMCPs2swBABTJ3kAeEiC_hE0mz8jRexLddJfD8pI2j32fOacjBmXg-- X-Rocket-Received: from [78.50.20.189] (ralf.mardorf@78.50.20.189 with login) by smtp127.mail.ird.yahoo.com with SMTP; 15 Mar 2013 08:26:57 -0700 PDT Message-ID: <1363361216.595.73.camel@archlinux> Subject: Re: linux program with kernel module From: Ralf Mardorf To: freebsd-questions@freebsd.org Date: Fri, 15 Mar 2013 16:26:56 +0100 In-Reply-To: <20130315150313.GA22064@eris.bzerk.org> References: <5100adb0.7659bc7d.5142366e.438ea@lajt.hu> <1363297361.3685.32.camel@archlinux> <20130315150313.GA22064@eris.bzerk.org> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.4 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 15:27:06 -0000 On Fri, 2013-03-15 at 15:03 +0000, Ruben de Groot wrote: > On Thu, Mar 14, 2013 at 10:42:41PM +0100, Ralf Mardorf typed: > > On Thu, 2013-03-14 at 21:43 +0100, Istvan Gabor wrote: > > > Can it run linux programs that have their own (linux) kernel module? > > > If yes, how can I install such program, and how can I load the kernel module? > > > > > > (If I know correctly nvidia drivers have their own kernel modules, and FreeBSD can > > > run linux nvidia drivers). > > > > Yesno. > > > > You need to compile kernel modules to fit to the version of FreeBSD or > > Linux. > > > > I also call user space "FreeBSD" and "Linux", but it's _not_ correct to > > do it. FreeBSD is a kernel and Linux is a kernel, not the whole system > > is called Linux or FreeBSD and both kernels are available in different > > versions. > > You're right about Linux (being only a kernel). Not so for FreeBSD. FreeBSD > is the name of the OS,, kernel plus userland. You can compare it to debian, > another (linux based) OS. Ok, thanks :). However, I also should be more precise about compiling modules. It might be that somebody did build a package, that does provide a kernel module for a special kernel version. I don't have experiences with FreeBSD and for FreeBSD I anyway build from the ports tree, so I have no idea about packages for FreeBSD, but I suspect that it's as it is for most Linux distros. Sometimes packages do provide modules for the current default kernel. So on major Linux distros you usually can install VBox from a package and it will come with the kernel modules for the packaged default kernel of the distro. From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 17:17:25 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 066AD154 for ; Fri, 15 Mar 2013 17:17:25 +0000 (UTC) (envelope-from dg@pki2.com) Received: from btw.pki2.com (btw.pki2.com [IPv6:2001:470:a:6fd::2]) by mx1.freebsd.org (Postfix) with ESMTP id B5BA8E8F for ; Fri, 15 Mar 2013 17:17:24 +0000 (UTC) Received: from btw.pki2.com (btw.pki2.com [192.168.23.1]) by btw.pki2.com (8.14.6/8.14.5) with ESMTP id r2FHHHcf077668 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 15 Mar 2013 10:17:18 -0700 (PDT) (envelope-from dg@pki2.com) Date: Fri, 15 Mar 2013 10:17:17 -0700 (PDT) From: Dennis Glatting X-X-Sender: dennisg@btw.pki2.com To: freebsd-questions@freebsd.org Subject: Is the Intel X520-SR2 (82599ES) supported by the ixbe driver? 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-yoursite-MailScanner-Information: Dennis Glatting X-yoursite-MailScanner-ID: r2FHHHcf077668 X-yoursite-MailScanner: Found to be clean X-MailScanner-From: dg@pki2.com X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 17:17:25 -0000 I have a new Intel X520-SR2 that I plopped into my Supermicro H8QGL-6F with the hope I could connect 10GbE to a Cisco 3560. The links come but but there is much wierdness. Looking through the driver I see the 82599EB is supported but no mention of the ES. Should this work? I have: Keystone# uname -a FreeBSD Keystone 9.1-STABLE FreeBSD 9.1-STABLE #0 r248293: Thu Mar 14 19:31:29 PDT 2013 root@Keystone:/usr/obj/disk-3/src/sys/SECRACK amd64 Keystone# dmesg | egrep 'ix[01]' ix0: port 0x8400-0x841f mem 0xdce80000-0xdcefffff,0xdce7c000-0xdce7ffff irq 32 at device 0.0 on pci3 ix0: Using MSIX interrupts with 9 vectors ix0: Ethernet address: 90:e2:ba:2f:5f:9c ix0: PCI Express Bus: Speed 5.0Gb/s Width x8 ix1: port 0x8800-0x881f mem 0xdcf80000-0xdcffffff,0xdcf7c000-0xdcf7ffff irq 33 at device 0.1 on pci3 ix1: Using MSIX interrupts with 9 vectors ix1: Ethernet address: 90:e2:ba:2f:5f:9d ix1: PCI Express Bus: Speed 5.0Gb/s Width x8 ix0: link state changed to UP Keystone# ifconfig ix0 ix0: flags=8843 metric 0 mtu 8192 options=407bb ether 90:e2:ba:2f:5f:9c nd6 options=29 media: Ethernet autoselect (10Gbase-SR ) status: active Here's an interesting point. If I set the address for the interface, it is accepted but an ifconfig of the interface is shown above. Specifically, I previously executed this command: Keystone# ifconfig ix0 inet 192.168.3.2/24 mtu 8192 up Executing that command a second time yields: Keystone# ifconfig ix0 inet 192.168.3.2/24 mtu 8192 up ifconfig: ioctl (SIOCAIFADDR): File exists A truss of that command yields more interesting things, specifically: kldload("if_ix") ERR#2 'No such file or directory' There is no driver named if_ix. It is also weird that the interface is named ix0 rather than ixgbe0. Also, an arp shows: Keystone# arp -an ? (192.168.17.1) at 2c:21:72:cb:f5:0c on vlan17 expires in 166 seconds [vlan] ? (192.168.13.33) at 78:e7:d1:ea:7a:4e on vlan13 expires in 760 seconds [vlan] ? (192.168.13.1) at 2c:21:72:cb:f5:0c on vlan13 expires in 97 seconds [vlan] ? (192.168.13.3) at 00:21:d8:0b:57:98 on vlan13 expires in 232 seconds [vlan] ? (192.168.7.6) at dc:7b:94:9a:52:41 on vlan7 expires in 268 seconds [vlan] ? (192.168.7.4) at e0:2f:6d:30:39:41 on vlan7 expires in 290 seconds [vlan] ? (192.168.7.3) at 00:21:d8:0b:57:98 on vlan7 expires in 210 seconds [vlan] ? (192.168.7.66) at 28:92:4a:2e:e0:a0 on vlan7 expires in 1199 seconds [vlan] ? (192.168.7.33) at 78:e7:d1:ea:7a:4e on vlan7 expires in 143 seconds [vlan] ? (192.168.7.65) at 28:92:4a:2e:eb:22 on vlan7 expires in 615 seconds [vlan] ? (192.168.3.2) at 90:e2:ba:2f:5f:9c on ix0 permanent [ethernet] So clearly there is a MAC/IP association however I cannot ping the IP: Keystone# ping 192.168.3.2 PING 192.168.3.2 (192.168.3.2): 56 data bytes (nothing) Can someone clue me in? From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 17:29:42 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3FF4F503; Fri, 15 Mar 2013 17:29: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 08061F5B; Fri, 15 Mar 2013 17:29:41 +0000 (UTC) Received: from smtp.fisglobal.com ([10.132.206.31]) by ltcfislmsgpa07.fnfis.com (8.14.5/8.14.5) with ESMTP id r2FHTeUr011222 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Fri, 15 Mar 2013 12:29:40 -0500 Received: from LTCFISWMSGMB21.FNFIS.com ([10.132.99.23]) by LTCFISWMSGHT03.FNFIS.com ([10.132.206.31]) with mapi id 14.02.0309.002; Fri, 15 Mar 2013 12:29:39 -0500 From: "Teske, Devin" To: Dennis Glatting , "freebsd-questions@freebsd.org" Subject: RE: Is the Intel X520-SR2 (82599ES) supported by the ixbe driver? Thread-Topic: Is the Intel X520-SR2 (82599ES) supported by the ixbe driver? Thread-Index: AQHOIaHtgWxRW9HfxUCjFIi0bWm2+pinAPSC Date: Fri, 15 Mar 2013 17:29:39 +0000 Message-ID: <13CA24D6AB415D428143D44749F57D7201ED4642@ltcfiswmsgmb21> References: In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.132.253.120] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.10.8626, 1.0.431, 0.0.0000 definitions=2013-03-15_07:2013-03-15,2013-03-15,1970-01-01 signatures=0 Cc: "dteske@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 17:29:42 -0000 I suspect you're running out of mbuf clusters. Try: echo kern.ipc.nmbclusters=3D524288 >> /etc/sysctl.conf echo kern.ipc.nmbjumbop=3D524288 >> /etc/sysctl.conf reboot --=20 Devin ________________________________________ From: owner-freebsd-questions@freebsd.org [owner-freebsd-questions@freebsd.= org] on behalf of Dennis Glatting [dg@pki2.com] Sent: Friday, March 15, 2013 10:17 AM To: freebsd-questions@freebsd.org Subject: Is the Intel X520-SR2 (82599ES) supported by the ixbe driver? I have a new Intel X520-SR2 that I plopped into my Supermicro H8QGL-6F with the hope I could connect 10GbE to a Cisco 3560. The links come but but there is much wierdness. Looking through the driver I see the 82599EB is supported but no mention of the ES. Should this work? I have: Keystone# uname -a FreeBSD Keystone 9.1-STABLE FreeBSD 9.1-STABLE #0 r248293: Thu Mar 14 19:31:29 PDT 2013 root@Keystone:/usr/obj/disk-3/src/sys/SECRACK amd64 Keystone# dmesg | egrep 'ix[01]' ix0: port 0x8400-0x841f mem 0xdce80000-0xdcefffff,0xdce7c000-0xdce7ffff irq 32 at device 0.0 on pci3 ix0: Using MSIX interrupts with 9 vectors ix0: Ethernet address: 90:e2:ba:2f:5f:9c ix0: PCI Express Bus: Speed 5.0Gb/s Width x8 ix1: port 0x8800-0x881f mem 0xdcf80000-0xdcffffff,0xdcf7c000-0xdcf7ffff irq 33 at device 0.1 on pci3 ix1: Using MSIX interrupts with 9 vectors ix1: Ethernet address: 90:e2:ba:2f:5f:9d ix1: PCI Express Bus: Speed 5.0Gb/s Width x8 ix0: link state changed to UP Keystone# ifconfig ix0 ix0: flags=3D8843 metric 0 mtu 8192 options=3D407bb ether 90:e2:ba:2f:5f:9c nd6 options=3D29 media: Ethernet autoselect (10Gbase-SR ) status: active Here's an interesting point. If I set the address for the interface, it is accepted but an ifconfig of the interface is shown above. Specifically, I previously executed this command: Keystone# ifconfig ix0 inet 192.168.3.2/24 mtu 8192 up Executing that command a second time yields: Keystone# ifconfig ix0 inet 192.168.3.2/24 mtu 8192 up ifconfig: ioctl (SIOCAIFADDR): File exists A truss of that command yields more interesting things, specifically: kldload("if_ix") ERR#2 'No such file or dir= ectory' There is no driver named if_ix. It is also weird that the interface is named ix0 rather than ixgbe0. Also, an arp shows: Keystone# arp -an ? (192.168.17.1) at 2c:21:72:cb:f5:0c on vlan17 expires in 166 seconds [vlan] ? (192.168.13.33) at 78:e7:d1:ea:7a:4e on vlan13 expires in 760 seconds [vlan] ? (192.168.13.1) at 2c:21:72:cb:f5:0c on vlan13 expires in 97 seconds [vlan] ? (192.168.13.3) at 00:21:d8:0b:57:98 on vlan13 expires in 232 seconds [vlan] ? (192.168.7.6) at dc:7b:94:9a:52:41 on vlan7 expires in 268 seconds [vlan] ? (192.168.7.4) at e0:2f:6d:30:39:41 on vlan7 expires in 290 seconds [vlan] ? (192.168.7.3) at 00:21:d8:0b:57:98 on vlan7 expires in 210 seconds [vlan] ? (192.168.7.66) at 28:92:4a:2e:e0:a0 on vlan7 expires in 1199 seconds [vlan] ? (192.168.7.33) at 78:e7:d1:ea:7a:4e on vlan7 expires in 143 seconds [vlan] ? (192.168.7.65) at 28:92:4a:2e:eb:22 on vlan7 expires in 615 seconds [vlan] ? (192.168.3.2) at 90:e2:ba:2f:5f:9c on ix0 permanent [ethernet] So clearly there is a MAC/IP association however I cannot ping the IP: Keystone# ping 192.168.3.2 PING 192.168.3.2 (192.168.3.2): 56 data bytes (nothing) Can someone clue me in? _______________________________________________ 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" _____________ 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 Fri Mar 15 17:48:38 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id BF3648EC for ; Fri, 15 Mar 2013 17:48:38 +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 85F34125 for ; Fri, 15 Mar 2013 17:48:38 +0000 (UTC) Received: from [92.76.70.82] (helo=michael-think) by www81.your-server.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.74) (envelope-from ) id 1UGYk8-0004EA-Ab; Fri, 15 Mar 2013 18:48:36 +0100 Content-Type: text/plain; charset=iso-8859-15; format=flowed; delsp=yes To: questions@freebsd.org, "Peter Harrison" Subject: Re: No sound with Thinkpad X60 References: <20130314225908.GA2157@thinkpad.piggybox> Date: Fri, 15 Mar 2013 18:48:24 +0100 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Michael Ross" Message-ID: In-Reply-To: <20130314225908.GA2157@thinkpad.piggybox> User-Agent: Opera Mail/12.14 (Win32) X-Authenticated-Sender: gmx@ross.cx X-Virus-Scanned: Clear (ClamAV 0.97.6/16853/Thu Mar 14 23:39:17 2013) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 17:48:38 -0000 On Thu, 14 Mar 2013 23:59:09 +0100, Peter Harrison wrote: > Hi list, > > I've a problem with sound on a Thinkpad X60, which has an Intel HDA chip. > > This is what I see in dmesg: > > hdac0: mem 0xee240000-0xee243fff irq 17 at > device 27.0 on pci0 > hdacc0: at cad 0 on hdac0 > hdaa0: at nid 1 on hdacc0 > pcm0: at nid 5 and 25,8 on hdaa0 > hdacc1: at cad 1 on hdac0 > unknown: at nid 2 on > hdacc1 (no driver attached) > > and from sndstat: > > FreeBSD Audio Driver (newpcm: 32bit 2009061500/i386) > Installed devices: > pcm0: (play/rec) default > > and from mixer: > > Mixer vol is currently set to 100:100 > Mixer pcm is currently set to 100:100 > Mixer speaker is currently set to 100:100 > Mixer cd is currently set to 1:1 > Mixer rec is currently set to 1:1 > Mixer igain is currently set to 42:42 > Mixer ogain is currently set to 100:100 > Mixer monitor is currently set to 67:67 > Recording source: cd > > But I have no sound. This is using Gnome 2.32 on 9.1-R. I did initially > accidentally install Pulseaudio, but have subsequently deleted it and > reinstalled everything that depended on it without the Pulseaudio > dependency. > > Any thoughts on what I'm doing wrong? > > Thanks in advance. Possibly not helping a lot: I have a T510 thinkpad with Intel HDA audio, running Windows 7. I need to have the audio driver *and* the modem driver installed for any sound to work. So possibly the modem part has to be initialised or something. You have "no driver attached" on your modem, so maybe that's worth looking at. You could also try if sound works from a terminal without running Gnome at all, just to be sure it's not some Gnome configuration thing. Regards, Michael From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 17:54:55 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9F99DBAE for ; Fri, 15 Mar 2013 17:54:55 +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 51EDC1BF for ; Fri, 15 Mar 2013 17:54:55 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UGYqO-0008QQ-8i for freebsd-questions@freebsd.org; Fri, 15 Mar 2013 18:55:04 +0100 Received: from schobc1.pac.army.mil ([150.137.2.8]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 15 Mar 2013 18:55:04 +0100 Received: from openslateproj by schobc1.pac.army.mil with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 15 Mar 2013 18:55:04 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Gary Dunn Subject: Re: Can't fetch boost-jam Date: Fri, 15 Mar 2013 17:48:26 +0000 (UTC) Lines: 9 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 150.137.2.8 (Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20100101 Firefox/17.0) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 17:54:55 -0000 Open Slate gmail.com> writes: > > For several days I have not been able to update my ports due to fetch > errors. Right now the first port portupgrade wants to update is > devel/boost-jam. [snip] Still cannot build this port today. Same problem. From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 18:02:42 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 5E4DDEF7; Fri, 15 Mar 2013 18:02:42 +0000 (UTC) (envelope-from dg@pki2.com) Received: from btw.pki2.com (btw.pki2.com [IPv6:2001:470:a:6fd::2]) by mx1.freebsd.org (Postfix) with ESMTP id 032CF2AC; Fri, 15 Mar 2013 18:02:41 +0000 (UTC) Received: from btw.pki2.com (btw.pki2.com [192.168.23.1]) by btw.pki2.com (8.14.6/8.14.5) with ESMTP id r2FI2VXZ078903 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 15 Mar 2013 11:02:32 -0700 (PDT) (envelope-from dg@pki2.com) Date: Fri, 15 Mar 2013 11:02:31 -0700 (PDT) From: Dennis Glatting X-X-Sender: dennisg@btw.pki2.com To: "Teske, Devin" Subject: RE: Is the Intel X520-SR2 (82599ES) supported by the ixbe driver? In-Reply-To: <13CA24D6AB415D428143D44749F57D7201ED4642@ltcfiswmsgmb21> Message-ID: References: <13CA24D6AB415D428143D44749F57D7201ED4642@ltcfiswmsgmb21> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-yoursite-MailScanner-Information: Dennis Glatting X-yoursite-MailScanner-ID: r2FI2VXZ078903 X-yoursite-MailScanner: Found to be clean X-MailScanner-From: dg@pki2.com Cc: "dteske@freebsd.org" , Dennis Glatting , "freebsd-questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 18:02:42 -0000 On Fri, 15 Mar 2013, Teske, Devin wrote: > I suspect you're running out of mbuf clusters. > > Try: > > echo kern.ipc.nmbclusters=524288 >> /etc/sysctl.conf > echo kern.ipc.nmbjumbop=524288 >> /etc/sysctl.conf > reboot These were my settings: Keystone> sysctl -a kern.ipc.nmbclusters kern.ipc.nmbclusters: 1048576 Keystone> sysctl -a kern.ipc.nmbjumbop kern.ipc.nmbjumbop: 524288 > > -- > Devin > > ________________________________________ > From: owner-freebsd-questions@freebsd.org [owner-freebsd-questions@freebsd.org] on behalf of Dennis Glatting [dg@pki2.com] > Sent: Friday, March 15, 2013 10:17 AM > To: freebsd-questions@freebsd.org > Subject: Is the Intel X520-SR2 (82599ES) supported by the ixbe driver? > > I have a new Intel X520-SR2 that I plopped into my Supermicro H8QGL-6F > with the hope I could connect 10GbE to a Cisco 3560. The links come but > but there is much wierdness. Looking through the driver I see the 82599EB > is supported but no mention of the ES. > > Should this work? > > I have: > > Keystone# uname -a > FreeBSD Keystone 9.1-STABLE FreeBSD 9.1-STABLE #0 r248293: Thu Mar 14 > 19:31:29 PDT 2013 root@Keystone:/usr/obj/disk-3/src/sys/SECRACK amd64 > > > Keystone# dmesg | egrep 'ix[01]' > ix0: STABLE/9> port 0x8400-0x841f mem > 0xdce80000-0xdcefffff,0xdce7c000-0xdce7ffff irq 32 at device 0.0 on pci3 > ix0: Using MSIX interrupts with 9 vectors > ix0: Ethernet address: 90:e2:ba:2f:5f:9c > ix0: PCI Express Bus: Speed 5.0Gb/s Width x8 > ix1: STABLE/9> port 0x8800-0x881f mem > 0xdcf80000-0xdcffffff,0xdcf7c000-0xdcf7ffff irq 33 at device 0.1 on pci3 > ix1: Using MSIX interrupts with 9 vectors > ix1: Ethernet address: 90:e2:ba:2f:5f:9d > ix1: PCI Express Bus: Speed 5.0Gb/s Width x8 > ix0: link state changed to UP > > > Keystone# ifconfig ix0 > ix0: flags=8843 metric 0 mtu 8192 > > options=407bb > ether 90:e2:ba:2f:5f:9c > nd6 options=29 > media: Ethernet autoselect (10Gbase-SR ) > status: active > > > Here's an interesting point. If I set the address for the interface, it is > accepted but an ifconfig of the interface is shown above. Specifically, I > previously executed this command: > > Keystone# ifconfig ix0 inet 192.168.3.2/24 mtu 8192 up > > > Executing that command a second time yields: > > Keystone# ifconfig ix0 inet 192.168.3.2/24 mtu 8192 up > ifconfig: ioctl (SIOCAIFADDR): File exists > > > A truss of that command yields more interesting things, specifically: > > kldload("if_ix") ERR#2 'No such file or directory' > > > There is no driver named if_ix. It is also weird that the interface is > named ix0 rather than ixgbe0. > > > Also, an arp shows: > > Keystone# arp -an > ? (192.168.17.1) at 2c:21:72:cb:f5:0c on vlan17 expires in 166 seconds > [vlan] > ? (192.168.13.33) at 78:e7:d1:ea:7a:4e on vlan13 expires in 760 seconds > [vlan] > ? (192.168.13.1) at 2c:21:72:cb:f5:0c on vlan13 expires in 97 seconds > [vlan] > ? (192.168.13.3) at 00:21:d8:0b:57:98 on vlan13 expires in 232 seconds > [vlan] > ? (192.168.7.6) at dc:7b:94:9a:52:41 on vlan7 expires in 268 seconds > [vlan] > ? (192.168.7.4) at e0:2f:6d:30:39:41 on vlan7 expires in 290 seconds > [vlan] > ? (192.168.7.3) at 00:21:d8:0b:57:98 on vlan7 expires in 210 seconds > [vlan] > ? (192.168.7.66) at 28:92:4a:2e:e0:a0 on vlan7 expires in 1199 seconds > [vlan] > ? (192.168.7.33) at 78:e7:d1:ea:7a:4e on vlan7 expires in 143 seconds > [vlan] > ? (192.168.7.65) at 28:92:4a:2e:eb:22 on vlan7 expires in 615 seconds > [vlan] > ? (192.168.3.2) at 90:e2:ba:2f:5f:9c on ix0 permanent [ethernet] > > > So clearly there is a MAC/IP association however I cannot ping the IP: > > > Keystone# ping 192.168.3.2 > PING 192.168.3.2 (192.168.3.2): 56 data bytes > (nothing) > > > Can someone clue me in? > > > > > _______________________________________________ > 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" > > _____________ > 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. > _______________________________________________ > 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 Mar 15 18:06:14 2013 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3F7DF184 for ; Fri, 15 Mar 2013 18:06:14 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 186FA301 for ; Fri, 15 Mar 2013 18:06:13 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id F129833C1D; Fri, 15 Mar 2013 14:06:01 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id 7DB9039860; Fri, 15 Mar 2013 14:05:59 -0400 (EDT) From: Lowell Gilbert To: Istvan Gabor Subject: Re: configure recursively and build question References: <33e0ec72.507f04c6.513f5b93.143fa@lajt.hu> <44ppz4jru1.fsf@lowell-desk.lan> <4cf380c.a14043e.514234f9.77739@lajt.hu> Date: Fri, 15 Mar 2013 14:05:58 -0400 In-Reply-To: <4cf380c.a14043e.514234f9.77739@lajt.hu> (Istvan Gabor's message of "Thu, 14 Mar 2013 21:37:13 +0100") Message-ID: <448v5o5yih.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@FreeBSD.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 18:06:14 -0000 Istvan Gabor writes: > 2013. m=E1rcius 12. 21:17 napon Lowell Gilbert =EDrta: >>=20 >> Second, config-recursive only does the configuration of the port >> options. > > Then I misunderstood the handbook, chich says: > > "To avoid this when there are many dependencies, first run make config-re= cursive > to do the configuration in one batch." > > I understood this as the configuration is done on all the dependencies as= well. You understood the handbook correctly. My comment was poorly worded and unnecessary (I was actually making the same point as in #4. The word "options" can mean slightly different things. The port's framework may define options, which the port will require you to choose among before building its software. The program being built may *additionally* require user input for building, and the port framework (in particular, "make config") can't store those choices. This is unusual, but some common ports do it (for example, ghostscript is one). > The handbook also writes: > > "Tip: When using config-recursive, the list of ports to configure are gat= hered by the > all-depends-list make(1) target. It is often recommended to run make conf= ig-recursive > until all dependent ports options have been defined, and ports options di= alog(1) screens > no longer appear, to be certain all ports options have been configured as= intended." > > Does this mean if I run config-recursive several times in a raw, all the = dependencies will > be configured? This is a slightly different issue. Changing a port's options may change its dependencies, so another round of config-recursive might be needed to config the new dependencies. > ... > >> Fourth (and, you'll be glad to hear, finally) some ports are interactive >> for reasons beyond options. See the manual for ports(7), noting the >> environment variables INTERACTIVE and BATCH. > > I will look at this. > >> > Second, after I've done a configure-recursive, how can I start it over= from scratch in case >> > I want to change some config option? If I reissue make configure-recur= sive, >> > I get only no configuration needed messages. >>=20 >> If you really want to start from scratch, you can use >> "rmconfig-recursive" on the dependent port. > > Yes I meant only the given port and its dependencies, not the all ports. From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 19:19:01 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B1B588CE for ; Fri, 15 Mar 2013 19:19:01 +0000 (UTC) (envelope-from oscar.hodgson@gmail.com) Received: from mail-qa0-f49.google.com (mail-qa0-f49.google.com [209.85.216.49]) by mx1.freebsd.org (Postfix) with ESMTP id 7CE8CA02 for ; Fri, 15 Mar 2013 19:19:01 +0000 (UTC) Received: by mail-qa0-f49.google.com with SMTP id o13so503889qaj.1 for ; Fri, 15 Mar 2013 12:18:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=QmDwsTb7RcA4Gw973GYtqkKCU/dziMSX9jyKgMqiGUE=; b=WkzdG/+fOxVMCLigiYiWoemeAcbE5HRr0vr4K4gT648cZaQ9y1H54mPzumPTb8F2rK BAdS3DEzWWtrLnDMBdk9xyvVlRLbUwYfuEZ8QlnYSkAR5FJEXuujt4lChwnFrPnArn9R FDzPB2I0wmAJZ6mFNjarzpW/IFLvecrGfmkt7Fi840tVtYeEPQIixoTv49PGxRHfRPpd kBSrL5DKS8+v00/dEEbTa+kjRyjkFpZQyNjluiHJM/nFBadbm2jvYyCc0OzC4RoyYMOW bSNBue4lkkQ2F19Z9Le37RrFlp+/EGJ7W5jgLay0V3YJZyjOCtgcdpmbAFlzXbDPjCqG pvBw== MIME-Version: 1.0 X-Received: by 10.229.136.78 with SMTP id q14mr1618293qct.74.1363375135448; Fri, 15 Mar 2013 12:18:55 -0700 (PDT) Received: by 10.229.125.2 with HTTP; Fri, 15 Mar 2013 12:18:55 -0700 (PDT) Date: Fri, 15 Mar 2013 15:18:55 -0400 Message-ID: Subject: Can an ISO file be mounted from /etc/fstab at boot? From: Oscar Hodgson To: "freebsd-questions@freebsd.org" Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 19:19:01 -0000 I'm pretty sure the answer is "no, just write a local rc script to do that", but thought I'd check. Can't see any hint of that capability in the handbook or fstab(5). Really just looking for a single point of management for file systems .... Thanks in advance. Oscar From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 19:27:40 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A6C6DC07 for ; Fri, 15 Mar 2013 19:27:40 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 8211EA91 for ; Fri, 15 Mar 2013 19:27:40 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id AEC4833C1D; Fri, 15 Mar 2013 15:27:34 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id A6DF839829; Fri, 15 Mar 2013 15:27:31 -0400 (EDT) From: Lowell Gilbert To: Open Slate Subject: Re: Can't fetch boost-jam References: Date: Fri, 15 Mar 2013 15:27:31 -0400 In-Reply-To: (Open Slate's message of "Thu, 14 Mar 2013 07:49:30 -1000") Message-ID: <44vc8sv4yk.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: FreeBSD Questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 19:27:40 -0000 Open Slate writes: > For several days I have not been able to update my ports due to fetch > errors. Right now the first port portupgrade wants to update is > devel/boost-jam. Here is the tail of the output of make issued in > /usr/ports/devel/boost-jam: You seem to have overridden a master site variable; downloading it from sourceforge (as the port does by default) works fine. From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 20:04:31 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1E374A80 for ; Fri, 15 Mar 2013 20:04:31 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id E9AB7E53 for ; Fri, 15 Mar 2013 20:04:30 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id 4831833C3E; Fri, 15 Mar 2013 16:04:25 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id CC44F39829; Fri, 15 Mar 2013 16:04:23 -0400 (EDT) From: Lowell Gilbert To: Oscar Hodgson Subject: Re: Can an ISO file be mounted from /etc/fstab at boot? References: Date: Fri, 15 Mar 2013 16:04:23 -0400 In-Reply-To: (Oscar Hodgson's message of "Fri, 15 Mar 2013 15:18:55 -0400") Message-ID: <44r4jgv394.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: "freebsd-questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 20:04:31 -0000 Oscar Hodgson writes: > I'm pretty sure the answer is "no, just write a local rc script to do > that", but thought I'd check. > > Can't see any hint of that capability in the handbook or fstab(5). > > Really just looking for a single point of management for file systems .... I don't see a way offhand. You need to do the mdconfig before you can mount, and I don't think that can be done inside of fstab. I think that adding such a capability to mount(8) as a program option would be a fairly minor hack. From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 21:11:01 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DEB4A3F4 for ; Fri, 15 Mar 2013 21:11:01 +0000 (UTC) (envelope-from dg@pki2.com) Received: from btw.pki2.com (btw.pki2.com [IPv6:2001:470:a:6fd::2]) by mx1.freebsd.org (Postfix) with ESMTP id 817413C9 for ; Fri, 15 Mar 2013 21:11:01 +0000 (UTC) Received: from btw.pki2.com (btw.pki2.com [192.168.23.1]) by btw.pki2.com (8.14.6/8.14.5) with ESMTP id r2FLArKr084300 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 15 Mar 2013 14:10:53 -0700 (PDT) (envelope-from dg@pki2.com) Date: Fri, 15 Mar 2013 14:10:53 -0700 (PDT) From: Dennis Glatting X-X-Sender: dennisg@btw.pki2.com To: Dennis Glatting Subject: RE: Is the Intel X520-SR2 (82599ES) supported by the ixbe driver? In-Reply-To: Message-ID: References: <13CA24D6AB415D428143D44749F57D7201ED4642@ltcfiswmsgmb21> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-yoursite-MailScanner-Information: Dennis Glatting X-yoursite-MailScanner-ID: r2FLArKr084300 X-yoursite-MailScanner: Found to be clean X-MailScanner-From: dg@pki2.com Cc: "freebsd-questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 21:11:01 -0000 Sorry for the noise. The problem was old sysctls. On Fri, 15 Mar 2013, Dennis Glatting wrote: > > > On Fri, 15 Mar 2013, Teske, Devin wrote: > >> I suspect you're running out of mbuf clusters. >> >> Try: >> >> echo kern.ipc.nmbclusters=524288 >> /etc/sysctl.conf >> echo kern.ipc.nmbjumbop=524288 >> /etc/sysctl.conf >> reboot > > These were my settings: > > Keystone> sysctl -a kern.ipc.nmbclusters > kern.ipc.nmbclusters: 1048576 > > Keystone> sysctl -a kern.ipc.nmbjumbop > kern.ipc.nmbjumbop: 524288 > > >> >> -- >> Devin >> >> ________________________________________ >> From: owner-freebsd-questions@freebsd.org >> [owner-freebsd-questions@freebsd.org] on behalf of Dennis Glatting >> [dg@pki2.com] >> Sent: Friday, March 15, 2013 10:17 AM >> To: freebsd-questions@freebsd.org >> Subject: Is the Intel X520-SR2 (82599ES) supported by the ixbe driver? >> >> I have a new Intel X520-SR2 that I plopped into my Supermicro H8QGL-6F >> with the hope I could connect 10GbE to a Cisco 3560. The links come but >> but there is much wierdness. Looking through the driver I see the 82599EB >> is supported but no mention of the ES. >> >> Should this work? >> >> I have: >> >> Keystone# uname -a >> FreeBSD Keystone 9.1-STABLE FreeBSD 9.1-STABLE #0 r248293: Thu Mar 14 >> 19:31:29 PDT 2013 root@Keystone:/usr/obj/disk-3/src/sys/SECRACK amd64 >> >> >> Keystone# dmesg | egrep 'ix[01]' >> ix0: > STABLE/9> port 0x8400-0x841f mem >> 0xdce80000-0xdcefffff,0xdce7c000-0xdce7ffff irq 32 at device 0.0 on pci3 >> ix0: Using MSIX interrupts with 9 vectors >> ix0: Ethernet address: 90:e2:ba:2f:5f:9c >> ix0: PCI Express Bus: Speed 5.0Gb/s Width x8 >> ix1: > STABLE/9> port 0x8800-0x881f mem >> 0xdcf80000-0xdcffffff,0xdcf7c000-0xdcf7ffff irq 33 at device 0.1 on pci3 >> ix1: Using MSIX interrupts with 9 vectors >> ix1: Ethernet address: 90:e2:ba:2f:5f:9d >> ix1: PCI Express Bus: Speed 5.0Gb/s Width x8 >> ix0: link state changed to UP >> >> >> Keystone# ifconfig ix0 >> ix0: flags=8843 metric 0 mtu 8192 >> >> options=407bb >> ether 90:e2:ba:2f:5f:9c >> nd6 options=29 >> media: Ethernet autoselect (10Gbase-SR ) >> status: active >> >> >> Here's an interesting point. If I set the address for the interface, it is >> accepted but an ifconfig of the interface is shown above. Specifically, I >> previously executed this command: >> >> Keystone# ifconfig ix0 inet 192.168.3.2/24 mtu 8192 up >> >> >> Executing that command a second time yields: >> >> Keystone# ifconfig ix0 inet 192.168.3.2/24 mtu 8192 up >> ifconfig: ioctl (SIOCAIFADDR): File exists >> >> >> A truss of that command yields more interesting things, specifically: >> >> kldload("if_ix") ERR#2 'No such file or >> directory' >> >> >> There is no driver named if_ix. It is also weird that the interface is >> named ix0 rather than ixgbe0. >> >> >> Also, an arp shows: >> >> Keystone# arp -an >> ? (192.168.17.1) at 2c:21:72:cb:f5:0c on vlan17 expires in 166 seconds >> [vlan] >> ? (192.168.13.33) at 78:e7:d1:ea:7a:4e on vlan13 expires in 760 seconds >> [vlan] >> ? (192.168.13.1) at 2c:21:72:cb:f5:0c on vlan13 expires in 97 seconds >> [vlan] >> ? (192.168.13.3) at 00:21:d8:0b:57:98 on vlan13 expires in 232 seconds >> [vlan] >> ? (192.168.7.6) at dc:7b:94:9a:52:41 on vlan7 expires in 268 seconds >> [vlan] >> ? (192.168.7.4) at e0:2f:6d:30:39:41 on vlan7 expires in 290 seconds >> [vlan] >> ? (192.168.7.3) at 00:21:d8:0b:57:98 on vlan7 expires in 210 seconds >> [vlan] >> ? (192.168.7.66) at 28:92:4a:2e:e0:a0 on vlan7 expires in 1199 seconds >> [vlan] >> ? (192.168.7.33) at 78:e7:d1:ea:7a:4e on vlan7 expires in 143 seconds >> [vlan] >> ? (192.168.7.65) at 28:92:4a:2e:eb:22 on vlan7 expires in 615 seconds >> [vlan] >> ? (192.168.3.2) at 90:e2:ba:2f:5f:9c on ix0 permanent [ethernet] >> >> >> So clearly there is a MAC/IP association however I cannot ping the IP: >> >> >> Keystone# ping 192.168.3.2 >> PING 192.168.3.2 (192.168.3.2): 56 data bytes >> (nothing) >> >> >> Can someone clue me in? >> >> >> >> >> _______________________________________________ >> 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" >> >> _____________ >> 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. >> _______________________________________________ >> 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.org" > From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 22:19:40 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C9007AC7 for ; Fri, 15 Mar 2013 22:19:40 +0000 (UTC) (envelope-from four.harrisons@googlemail.com) Received: from mail-wg0-f51.google.com (mail-wg0-f51.google.com [74.125.82.51]) by mx1.freebsd.org (Postfix) with ESMTP id 3245CAEC for ; Fri, 15 Mar 2013 22:19:39 +0000 (UTC) Received: by mail-wg0-f51.google.com with SMTP id 8so100364wgl.6 for ; Fri, 15 Mar 2013 15:19:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=x-received:from:date:to:cc:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=LFIlZWAvHBA/hvFs2gxs8Xcz1oiHKbCMrQMx4yIFxfk=; b=KqW/nw9/Np32pzHYRZjpUrFURIwvjeFFfwt3uoecM6zl3VVyFStDGD2o5ucrx+0DZu kqf658gkuN5Odu6jrOK2TwVtAOc6auOTgpppGXU2ZwY5zIFraGlinusToN8pVGLhjzq2 k2Wsrei63G7b4mCcE9i8gpJhUMY6UDng38aYDuZfMjPb6IQvaBiV28DOY3JOZ+gi+/Cx GOHKxHjUw0dn6lOu6Ll2JBKniGo4CXv6iVZrBMZ35a9CK2AJ+ezBgDFzA2Vm1dB05OxL t5A3SCv9hxlO5OVOqC2O7f1Z05+sCoEWuaXfPq1w+L2LQKZV4lfD0iT484w8O0+XFrqy EWWg== X-Received: by 10.180.108.3 with SMTP id hg3mr5831850wib.33.1363385973581; Fri, 15 Mar 2013 15:19:33 -0700 (PDT) Received: from localhost (client-81-105-215-216.mcr-bng-011.adsl.virginmedia.net. [81.105.215.216]) by mx.google.com with ESMTPS id ex15sm462253wid.5.2013.03.15.15.19.30 (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 15 Mar 2013 15:19:32 -0700 (PDT) Received: by localhost (sSMTP sendmail emulation); Fri, 15 Mar 2013 23:28:27 +0000 From: Peter Harrison Date: Fri, 15 Mar 2013 23:28:27 +0000 To: Michael Ross Subject: Re: No sound with Thinkpad X60 Message-ID: <20130315232827.GA2189@thinkpad.piggybox> References: <20130314225908.GA2157@thinkpad.piggybox> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: questions@freebsd.org, Peter Harrison X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 22:19:40 -0000 Friday, 15 March 2013 at 18:48:24 +0100, Michael Ross said: > On Thu, 14 Mar 2013 23:59:09 +0100, Peter Harrison > wrote: > > > Hi list, > > > > I've a problem with sound on a Thinkpad X60, which has an Intel HDA chip. > > > > This is what I see in dmesg: > > > > hdac0: mem 0xee240000-0xee243fff irq 17 at > > device 27.0 on pci0 > > hdacc0: at cad 0 on hdac0 > > hdaa0: at nid 1 on hdacc0 > > pcm0: at nid 5 and 25,8 on hdaa0 > > hdacc1: at cad 1 on hdac0 > > unknown: at nid 2 on > > hdacc1 (no driver attached) > > > > and from sndstat: > > > > FreeBSD Audio Driver (newpcm: 32bit 2009061500/i386) > > Installed devices: > > pcm0: (play/rec) default > > > > and from mixer: > > > > Mixer vol is currently set to 100:100 > > Mixer pcm is currently set to 100:100 > > Mixer speaker is currently set to 100:100 > > Mixer cd is currently set to 1:1 > > Mixer rec is currently set to 1:1 > > Mixer igain is currently set to 42:42 > > Mixer ogain is currently set to 100:100 > > Mixer monitor is currently set to 67:67 > > Recording source: cd > > > > But I have no sound. This is using Gnome 2.32 on 9.1-R. I did initially > > accidentally install Pulseaudio, but have subsequently deleted it and > > reinstalled everything that depended on it without the Pulseaudio > > dependency. > > > > Any thoughts on what I'm doing wrong? > > > > Thanks in advance. > > Possibly not helping a lot: > > I have a T510 thinkpad with Intel HDA audio, running Windows 7. > I need to have the audio driver *and* the modem driver installed for any > sound to work. > So possibly the modem part has to be initialised or something. > You have "no driver attached" on your modem, so maybe that's worth looking > at. > > You could also try if sound works from a terminal without running Gnome at > all, > just to be sure it's not some Gnome configuration thing. > > Regards, > > Michael Thanks Michael. Tried turning gnome off. Still no sound from the console. Is there a FreeBSD kernel module for the modem? Thanks again, Peter Harrison. From owner-freebsd-questions@FreeBSD.ORG Fri Mar 15 23:17:38 2013 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 594CF52A for ; Fri, 15 Mar 2013 23:17:38 +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 139D83C8 for ; Fri, 15 Mar 2013 23:17:37 +0000 (UTC) Received: from [92.76.70.82] (helo=michael-think) by www81.your-server.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.74) (envelope-from ) id 1UGdsQ-000424-9I; Sat, 16 Mar 2013 00:17:30 +0100 Content-Type: text/plain; charset=iso-8859-15; format=flowed; delsp=yes To: "Peter Harrison" Subject: Re: No sound with Thinkpad X60 References: <20130314225908.GA2157@thinkpad.piggybox> <20130315232827.GA2189@thinkpad.piggybox> Date: Sat, 16 Mar 2013 00:17:18 +0100 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Michael Ross" Message-ID: In-Reply-To: <20130315232827.GA2189@thinkpad.piggybox> User-Agent: Opera Mail/12.14 (Win32) X-Authenticated-Sender: gmx@ross.cx X-Virus-Scanned: Clear (ClamAV 0.97.6/16853/Thu Mar 14 23:39:17 2013) Cc: questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 23:17:38 -0000 On Sat, 16 Mar 2013 00:28:27 +0100, Peter Harrison wrote: > Friday, 15 March 2013 at 18:48:24 +0100, Michael Ross said: >> On Thu, 14 Mar 2013 23:59:09 +0100, Peter Harrison >> wrote: >> >> > Hi list, >> > >> > I've a problem with sound on a Thinkpad X60, which has an Intel HDA >> chip. >> > >> > This is what I see in dmesg: >> > >> > hdac0: mem 0xee240000-0xee243fff irq 17 >> at >> > device 27.0 on pci0 >> > hdacc0: at cad 0 on hdac0 >> > hdaa0: at nid 1 on >> hdacc0 >> > pcm0: at nid 5 and 25,8 on hdaa0 >> > hdacc1: at cad 1 on hdac0 >> > unknown: at nid 2 >> on >> > hdacc1 (no driver attached) >> > >> > and from sndstat: >> > >> > FreeBSD Audio Driver (newpcm: 32bit 2009061500/i386) >> > Installed devices: >> > pcm0: (play/rec) default >> > >> > and from mixer: >> > >> > Mixer vol is currently set to 100:100 >> > Mixer pcm is currently set to 100:100 >> > Mixer speaker is currently set to 100:100 >> > Mixer cd is currently set to 1:1 >> > Mixer rec is currently set to 1:1 >> > Mixer igain is currently set to 42:42 >> > Mixer ogain is currently set to 100:100 >> > Mixer monitor is currently set to 67:67 >> > Recording source: cd >> > >> > But I have no sound. This is using Gnome 2.32 on 9.1-R. I did >> initially >> > accidentally install Pulseaudio, but have subsequently deleted it and >> > reinstalled everything that depended on it without the Pulseaudio >> > dependency. >> > >> > Any thoughts on what I'm doing wrong? >> > >> > Thanks in advance. >> >> Possibly not helping a lot: >> >> I have a T510 thinkpad with Intel HDA audio, running Windows 7. >> I need to have the audio driver *and* the modem driver installed for any >> sound to work. >> So possibly the modem part has to be initialised or something. >> You have "no driver attached" on your modem, so maybe that's worth >> looking >> at. >> >> You could also try if sound works from a terminal without running Gnome >> at >> all, >> just to be sure it's not some Gnome configuration thing. >> >> Regards, >> >> Michael > > Thanks Michael. > > Tried turning gnome off. Still no sound from the console. Is there a > FreeBSD kernel module for the modem? > Don't know. But stepping back, do you have snd_hda loaded? ( Silly me, should have been the first question. ) Found this: http://www.bmichelsen.no/blog/2012/01/28/configuring-freebsd-for-x60s/ Regards, Michael From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 00:08:35 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BE4BFC1A for ; Sat, 16 Mar 2013 00:08:35 +0000 (UTC) (envelope-from openslateproj@gmail.com) Received: from mail-vc0-f174.google.com (mail-vc0-f174.google.com [209.85.220.174]) by mx1.freebsd.org (Postfix) with ESMTP id 67991723 for ; Sat, 16 Mar 2013 00:08:35 +0000 (UTC) Received: by mail-vc0-f174.google.com with SMTP id hx10so1656788vcb.5 for ; Fri, 15 Mar 2013 17:08:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=kUIJ7RfeSzlGJfHM9inDB1t1nWNcVlhsgWt7ADKwL/Q=; b=V/14dnxTGvIk1+nsJjqb6tDsWklwvAw9Ms6qAnswgfVIIFp3acs/BOyB0LpgIX8utU B04qvNn1kqpyUli8ntM+CTRllracPukvlEx1KCdnpQjuzYddTYeUf5W3HXQH3hoMFh28 vRzJJ8Jb1RdX8VP0tcocNllfzjByGSwuW05scms8JJVxyjWSVe1TExeKZpvcZ3SBN6fR IZJr61yejb7q0VZQiwirwnaOL93dBwVQ0v3BnWC0lLKuMQQ2Smu5DRLqFX/mOgqGE6Hf 1SKL9MiRYpfo6Yn3I6Q4YsjnWcF4Pjk+QX/RZKaHDBt9rShnZrwpbDfyV5qcWf0bcxd5 OmSQ== MIME-Version: 1.0 X-Received: by 10.52.36.11 with SMTP id m11mr8098526vdj.117.1363392508981; Fri, 15 Mar 2013 17:08:28 -0700 (PDT) Received: by 10.220.70.132 with HTTP; Fri, 15 Mar 2013 17:08:28 -0700 (PDT) In-Reply-To: <44vc8sv4yk.fsf@lowell-desk.lan> References: <44vc8sv4yk.fsf@lowell-desk.lan> Date: Fri, 15 Mar 2013 14:08:28 -1000 Message-ID: Subject: Re: Can't fetch boost-jam From: Open Slate To: Lowell Gilbert Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: FreeBSD Questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 00:08:35 -0000 Apparently my employer blocks sourceforge. If the FreeBSD site would upgrade their distfiles this port, and I suspect a few more, would update just fine. I may have to give up running FreeBSD at work. On Fri, Mar 15, 2013 at 9:27 AM, Lowell Gilbert < freebsd-questions-local@be-well.ilk.org> wrote: > Open Slate writes: > > > For several days I have not been able to update my ports due to fetch > > errors. Right now the first port portupgrade wants to update is > > devel/boost-jam. Here is the tail of the output of make issued in > > /usr/ports/devel/boost-jam: > > You seem to have overridden a master site variable; downloading it from > sourceforge (as the port does by default) works fine. > -- Gary Dunn Open Slate Project http://openslate.org/ From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 00:22:06 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 51CE7EA2 for ; Sat, 16 Mar 2013 00:22:06 +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 1EAF7794 for ; Sat, 16 Mar 2013 00:22:05 +0000 (UTC) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by ozzie.tundraware.com (8.14.6/8.14.6) with ESMTP id r2G09Vh6060996 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Fri, 15 Mar 2013 19:09:31 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <5143B83B.2080404@tundraware.com> Date: Fri, 15 Mar 2013 19:09:31 -0500 From: Tim Daneliuk User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130308 Thunderbird/17.0.4 MIME-Version: 1.0 To: FreeBSD Mailing List Subject: Weird NFS Performance Problem 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, 15 Mar 2013 19:09:31 -0500 (CDT) X-TundraWare-MailScanner-Information: Please contact the ISP for more information X-TundraWare-MailScanner-ID: r2G09Vh6060996 X-TundraWare-MailScanner: Found to be clean X-TundraWare-MailScanner-From: tundra@tundraware.com X-Spam-Status: No X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 00:22:06 -0000 I have a FreeBSD 9.1-STABLE exhibiting weird NFS performance issues and I'd appreciate any suggestions. I have several different directories exported from the same filesystem. The machine that mounts them (a Linux Mint 12 desktop) writes nice and fast to one of them, but writes to the other one are dreadfully slow. Both are mounted on the LM machine using 'rw,soft,intr' in that machine's fstab file. Any ideas on what might be the culprit here? -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 00:53:32 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D95AA73E for ; Sat, 16 Mar 2013 00:53:32 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-ia0-x233.google.com (mail-ia0-x233.google.com [IPv6:2607:f8b0:4001:c02::233]) by mx1.freebsd.org (Postfix) with ESMTP id A948488D for ; Sat, 16 Mar 2013 00:53:32 +0000 (UTC) Received: by mail-ia0-f179.google.com with SMTP id x24so3700635iak.38 for ; Fri, 15 Mar 2013 17:53:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=ibTzTk4SRlWgPYGryl+QwSch+PeHhl0xrJ10WNEdLPg=; b=TuKeDKOySZpcsjA6vQbZEKaD8ycrZESThZKjmYWNCrHNFxRtDZPCeH4X0howfUhmhq XpveW17yPdzxhGBImykEHFlhjtqmCefp6ItzhiS2rNZwI0bUgpsXVx+lKL3q9o96vwpZ Dq9whLIvgfh7BYUI6/rnzsSJkzRBs7hqdLLSZlk51I8Th7bOvEs3mkyYTwe8iS06Xe/I AreT9Rb6L8qL+HjrEShBZ2o2iuEs6LA+v4ogui2K061MNQgHx49VZM9TnZlAQRX0ErsP 3IUT6QgCUSTOazofuLjtyiKJH+uzZ902Mz8J7CbdWCbrMttTtBCwxx/Cwq140T0d5F3q HflA== MIME-Version: 1.0 X-Received: by 10.50.182.202 with SMTP id eg10mr2639958igc.7.1363395211966; Fri, 15 Mar 2013 17:53:31 -0700 (PDT) Received: by 10.64.107.162 with HTTP; Fri, 15 Mar 2013 17:53:31 -0700 (PDT) In-Reply-To: <5143B83B.2080404@tundraware.com> References: <5143B83B.2080404@tundraware.com> Date: Fri, 15 Mar 2013 17:53:31 -0700 Message-ID: Subject: Re: Weird NFS Performance Problem From: Mehmet Erol Sanliturk To: Tim Daneliuk Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: FreeBSD Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 00:53:32 -0000 On Fri, Mar 15, 2013 at 5:09 PM, Tim Daneliuk wrote: > I have a FreeBSD 9.1-STABLE exhibiting weird NFS performance issues > and I'd appreciate any suggestions. > > I have several different directories exported from the same filesystem. > The machine that mounts them (a Linux Mint 12 desktop) writes > nice and fast to one of them, but writes to the other one > are dreadfully slow. Both are mounted on the LM machine using > 'rw,soft,intr' in that machine's fstab file. > > Any ideas on what might be the culprit here? > > > -- > ------------------------------**------------------------------** > ---------------- > Tim Daneliuk tundra@tundraware.com > PGP Key: http://www.tundraware.com/PGP/ > Is the slow directory a LINK ? If it is a LINK , then , try with the real directory name . Thank you very much . Mehmet Erol Sanliturk From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 03:11:32 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 12128B32 for ; Sat, 16 Mar 2013 03:11:32 +0000 (UTC) (envelope-from leeoliveshackelford@surewest.net) Received: from rc3.surewest.net (rc3.surewest.net [66.60.130.52]) by mx1.freebsd.org (Postfix) with ESMTP id EA23CD22 for ; Sat, 16 Mar 2013 03:11:31 +0000 (UTC) Received: from smtp3.surewest.net ([66.60.130.145]) by rc3.surewest.net ({89e988b2-2a53-469e-91f0-3e9924092bec}) via TCP (outbound) with ESMTP id 20130316031124895 for ; Sat, 16 Mar 2013 03:11:24 +0000 X-RC-FROM: X-RC-RCPT: Received: from ms5.mc.surewest.net (hansolo.surewest.net [64.30.98.104]) by smtp3.surewest.net (Postfix) with ESMTP id B60E289625 for ; Fri, 15 Mar 2013 20:11:24 -0700 (PDT) Received: (from ms5.mc.surewest.net [192.168.60.104]) by ms5.mc.surewest.net (MOS 4.1.10-GA) with HTTP/1.1 id DEO31912 (AUTH leeoliveshackelford@surewest.net); Fri, 15 Mar 2013 20:11:24 -0700 (PDT) From: Subject: Installing 9.1 without re-partitioning hard drive To: freebsd-questions@freebsd.org X-Mailer: Mirapoint Webmail Direct 4.1.10-GA MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20130315201124.DEO31912@ms5.mc.surewest.net> Date: Fri, 15 Mar 2013 20:11:24 -0700 (PDT) X-MAG-OUTBOUND: surewest.redcondor.net@66.60.130.145/32 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 03:11:32 -0000 Good evening, Free BSD enthusiasts. Thank you to each of the several people who have responded to my previous messages. I have made significant progress, but am now flummoxed at the installation of the boot loader. The handbook says to run this command, "boot0cfg -B ad0". When I run this command, I get the following error message: "Unable to get providername for ad0". What is a provider name? How do I determine the provider name for ad0? How do I communicate that information to boot0cfg? I know that this problem has something to do with the "geom" command, but the "man geom" goes on for many pages. While I think the answer may be in there somewhere, I could not find it. Any and all comments will be appreciated. Sincerely, Newby Lee From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 04:09:03 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 849A18A1 for ; Sat, 16 Mar 2013 04:09:03 +0000 (UTC) (envelope-from erichsfreebsdlist@alogt.com) Received: from alogt.com (alogt.com [69.36.191.58]) by mx1.freebsd.org (Postfix) with ESMTP id 4087BE91 for ; Sat, 16 Mar 2013 04:09:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=alogt.com; s=default; h=Content-Transfer-Encoding:Content-Type:Mime-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=z2U7k0ysWaJLQvstRWQeBJ8mHd+FTjGg6ckGlG/3suw=; b=K4WlOXUAdqhvRQBEvbTkHNZotc0UfQv6NgaAj58pwrxmzHBrf4hOjPDVSjdaU2ZLUFc6jAouixm5UxqmF+w2Ga9HQlPLVi5QjMgopPHCoFrl67oA3oxlEfSrAqFi42GXlM5vd0Ag2UpTMklrfQlOf1Lm9RYRM08HdmUkSIoLDQc=; Received: from [122.129.203.50] (port=28698 helo=X220.ovitrap.com) by sl-508-2.slc.westdc.net with esmtpsa (SSLv3:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1UGiQR-0009ON-UL; Fri, 15 Mar 2013 22:08:56 -0600 Date: Sat, 16 Mar 2013 11:08:52 +0700 From: Erich Dollansky To: Subject: Re: Installing 9.1 without re-partitioning hard drive Message-ID: <20130316110852.3f3797dd@X220.ovitrap.com> In-Reply-To: <20130315201124.DEO31912@ms5.mc.surewest.net> References: <20130315201124.DEO31912@ms5.mc.surewest.net> X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.6; amd64-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sl-508-2.slc.westdc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - alogt.com X-Get-Message-Sender-Via: sl-508-2.slc.westdc.net: authenticated_id: erichsfreebsdlist@alogt.com X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 04:09:03 -0000 Hi, On Fri, 15 Mar 2013 20:11:24 -0700 (PDT) wrote: > Good evening, Free BSD enthusiasts. Thank you to each of the several good morning, > people who have responded to my previous messages. I have made > significant progress, but am now flummoxed at the installation of the this is good to hear. > boot loader. The handbook says to run this command, "boot0cfg -B > ad0". When I run this command, I get the following error message: > "Unable to get providername for ad0". What is a provider name? How > do I determine the provider name for ad0? How do I communicate that > information to boot0cfg? I know that this problem has something to > do with the "geom" command, but the "man geom" goes on for many > pages. While I think the answer may be in there somewhere, I could > not find it. Any and all comments will be appreciated. Sincerely, > Newby Lee ad0? This sounds like that it would overwrite the loader from your Windows installation. Did you read man gpart? gpart should be able to show you the current layout of the disk. It is also able to install the boot code you need. If I remember, you want to have Windows and FreeBSD on the same disk. So, you should have some kind of boot manager which will give you the choice between them. Of course, you can use whatever boot manager you want. The one which comes with FreeBSD is a bit simple but does its job. Erich From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 14:01:48 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1CEE395C for ; Sat, 16 Mar 2013 14:01:48 +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 D6019F58 for ; Sat, 16 Mar 2013 14:01:47 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.6/8.14.6) with ESMTP id r2GE1kEK000228; Sat, 16 Mar 2013 08:01:46 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.6/8.14.6/Submit) with ESMTP id r2GE1kOD000225; Sat, 16 Mar 2013 08:01:46 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sat, 16 Mar 2013 08:01:46 -0600 (MDT) From: Warren Block To: leeoliveshackelford@surewest.net Subject: Re: Installing 9.1 without re-partitioning hard drive In-Reply-To: <20130315201124.DEO31912@ms5.mc.surewest.net> Message-ID: References: <20130315201124.DEO31912@ms5.mc.surewest.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 IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Sat, 16 Mar 2013 08:01:46 -0600 (MDT) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 14:01:48 -0000 On Fri, 15 Mar 2013, leeoliveshackelford@surewest.net wrote: > Good evening, Free BSD enthusiasts. Thank you to each of the several > people who have responded to my previous messages. I have made > significant progress, but am now flummoxed at the installation of the > boot loader. The handbook says to run this command, "boot0cfg -B > ad0". When I run this command, I get the following error message: > "Unable to get providername for ad0". This message means there is no disk called ad0. On FreeBSD 9.x, it is likely to be called ada0 instead. I can't find that command in the Handbook. Could you please point out where it is? From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 18:49:41 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0CDEFED2 for ; Sat, 16 Mar 2013 18:49:41 +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 B5BBFE32 for ; Sat, 16 Mar 2013 18:49:40 +0000 (UTC) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by ozzie.tundraware.com (8.14.6/8.14.6) with ESMTP id r2GInRaq002582 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Sat, 16 Mar 2013 13:49:27 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <5144BEB7.3090906@tundraware.com> Date: Sat, 16 Mar 2013 13:49:27 -0500 From: Tim Daneliuk User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130308 Thunderbird/17.0.4 MIME-Version: 1.0 To: FreeBSD Mailing List Subject: NFS Performance: Weirder And Weirder 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]); Sat, 16 Mar 2013 13:49:27 -0500 (CDT) X-TundraWare-MailScanner-Information: Please contact the ISP for more information X-TundraWare-MailScanner-ID: r2GInRaq002582 X-TundraWare-MailScanner: Found to be clean X-TundraWare-MailScanner-From: tundra@tundraware.com X-Spam-Status: No X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 18:49:41 -0000 This is really weird. A FreeBSD 9.1 system mounts the following: /dev/ad4s1a 989M 625M 285M 69% / devfs 1.0k 1.0k 0B 100% /dev /dev/ad4s1d 7.8G 1G 6.1G 14% /var /dev/ad4s1e 48G 9.4G 35G 21% /usr /dev/ad4s1f 390G 127G 231G 35% /usr1 /dev/ad6s1d 902G 710G 120G 86% /usr1/BKU /usr1/something (under ad4s1f) and /usr1/BKU (all of ad6s1d) are exported for NFS mounting on the LAN. I have tested the speeds of these two drives locally doing a 'dd if=/dev/zero ....'. Their speeds are quite comparable - around 55-60 MB/s so the problem below is not an artifact of a slow drive. The two mounts are imported like this on a Linux Mint 12 machine: machine:/usr1/BKU /BKU nfs rw,soft,intr 0 0 machine:/usr1/shared /shared nfs rw,soft,intr 0 0 Problem: When I write files from the LM12 machines to /BKU the writes are 1/10 the speed of when writing to /shared. Reads are fine in both cases, at near native disk speeds being reported. Someone here suggested I get rid of any symlinks in the mount and I did that to no avail. Incidentally, the only reason I just noticed this is that I upgraded the NIC on the FreeBSD machine and the switch into which it connects to 1000Base because the LM12 machine had a built in 1000Base NIC. I also changed the cables on both machines to ensure they were not the problem. Prior to this, I was bandwidth constrained by the 100Base so I never saw NFS performance as an issue. When I upgraded, I expected faster transfers and when I didn't get them, I started this whole investigation. So ... I'm stumped: - It's not the drive or SATA ports because both drives show comparable performance. - It's not the cables because I can get great throughput on one of the NFS mountpoints. - It's neither NIC for the same reason. Does anyone: A) Have a clue what might be doing this B) Have a suggestion how to track down the problem Thanks, -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 19:42:30 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E101569E for ; Sat, 16 Mar 2013 19:42:30 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: from rc2.surewest.net (rc2.surewest.net [66.60.130.51]) by mx1.freebsd.org (Postfix) with ESMTP id A99BEF7F for ; Sat, 16 Mar 2013 19:42:30 +0000 (UTC) Received: from smtp2.surewest.net ([66.60.130.145]) by rc2.surewest.net ({af05c03d-e86d-4922-90cb-b2bd72ac7e37}) via TCP (outbound) with ESMTP id 20130316194212500 for ; Sat, 16 Mar 2013 19:42:12 +0000 X-RC-FROM: X-RC-RCPT: Received: from smtpauth.surewest.net (smtpauth.surewest.net [66.60.130.153]) by smtp2.surewest.net (Postfix) with ESMTP id 0594289E48 for ; Sat, 16 Mar 2013 12:42:12 -0700 (PDT) Received: from blacklamb.mykitchentable.net (mykitchentable.net [69.62.230.77]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtpauth.surewest.net (Postfix) with ESMTPSA id DB6629C0E8 for ; Sat, 16 Mar 2013 12:42:11 -0700 (PDT) Received: from [127.0.0.1] (tagalong-II.mykitchentable.net [192.168.1.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by blacklamb.mykitchentable.net (Postfix) with ESMTPSA id B895416553E for ; Sat, 16 Mar 2013 12:42:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=mykitchentable.net; s=default; t=1363462931; bh=SmKcqPfQCZcHNif09hrQV+X35S8qQL+yZiyGyJlQPvM=; h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type: Content-Transfer-Encoding; b=Esm/QanvyL/wtx+K+OjR3C5x7FgYAZf0Su/8mZ+fq/QMnXg5cIMDDgA4d/0Gw8+9B M9mwnf6f65R8abX3D+yfkJ2ZV99Nxs9rrEXtxpSyB98gWBWBJWGHrCO/PegsNI0r5t 2fgYJINJbtUxdsfR4rA3mGejMO62XoWpuwscVmlU= Message-ID: <5144CB0A.6010801@mykitchentable.net> Date: Sat, 16 Mar 2013 12:42:02 -0700 From: Drew Tomlinson User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Upgrade from 6.4 to 9.1? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 130316-0, 03/16/2013), Outbound message X-Antivirus-Status: Clean X-MAG-OUTBOUND: surewest.redcondor.net@66.60.130.145/32 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 19:42:30 -0000 I have an old system happily running 6.4 but am finding that it can no longer download or build a ports index. Thus I guess it's time to upgrade. What "gotchas" do I need to look out for? In the past my upgrades have always been simply downloading new source, reviewing kernel config file, and then rebuilding the system. Any ports that didn't work after that I would just rebuild as well. However I've never waited this long to upgrade. Do I need to do anything different? Thanks, Drew -- Like card tricks? Visit The Alchemist's Warehouse to learn card magic secrets for free! http://alchemistswarehouse.com From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 20:06:19 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EF3079B6 for ; Sat, 16 Mar 2013 20:06:19 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from email2.allantgroup.com (email2.emsphone.com [199.67.51.116]) by mx1.freebsd.org (Postfix) with ESMTP id 8F7C0CC for ; Sat, 16 Mar 2013 20:06:19 +0000 (UTC) Received: from dan.emsphone.com (dan.emsphone.com [172.17.17.101]) by email2.allantgroup.com (8.14.5/8.14.5) with ESMTP id r2GK1rsO060672 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 16 Mar 2013 15:01:53 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (smmsp@localhost [127.0.0.1]) by dan.emsphone.com (8.14.6/8.14.6) with ESMTP id r2GK1qMb055918 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 16 Mar 2013 15:01:52 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.6/8.14.6/Submit) id r2GK1q0m055917; Sat, 16 Mar 2013 15:01:52 -0500 (CDT) (envelope-from dan) Date: Sat, 16 Mar 2013 15:01:52 -0500 From: Dan Nelson To: Drew Tomlinson Subject: Re: Upgrade from 6.4 to 9.1? Message-ID: <20130316200152.GD80810@dan.emsphone.com> References: <5144CB0A.6010801@mykitchentable.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5144CB0A.6010801@mykitchentable.net> X-OS: FreeBSD 9.1-STABLE User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.97.6 at email2.allantgroup.com X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (email2.allantgroup.com [172.17.19.78]); Sat, 16 Mar 2013 15:01:53 -0500 (CDT) X-Spam-Status: No, score=-3.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on email2.allantgroup.com X-Scanned-By: MIMEDefang 2.73 Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 20:06:20 -0000 In the last episode (Mar 16), Drew Tomlinson said: > I have an old system happily running 6.4 but am finding that it can no > longer download or build a ports index. Thus I guess it's time to > upgrade. > > What "gotchas" do I need to look out for? In the past my upgrades have > always been simply downloading new source, reviewing kernel config file, > and then rebuilding the system. Any ports that didn't work after that I > would just rebuild as well. However I've never waited this long to > upgrade. Do I need to do anything different? You won't be able to do a straight source build from 6.4 to 9.1; too many low-level changes like Makefile syntax and compiler options have changed. If you are comfortable with temporarily disabling non-essential things that fail to build, it is definitely possible to do a long jump to 9.1, but it'd be safer to either hop from 6.4 -> (7-stable or 8-stable) -> 9 doing buildkernels and buildworlds, or just do a binary upgrade of kernel and base system to 9.1. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 21:20:34 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 39E03A8E for ; Sat, 16 Mar 2013 21:20:34 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-vb0-x22a.google.com (mail-vb0-x22a.google.com [IPv6:2607:f8b0:400c:c02::22a]) by mx1.freebsd.org (Postfix) with ESMTP id F3F812DA for ; Sat, 16 Mar 2013 21:20:33 +0000 (UTC) Received: by mail-vb0-f42.google.com with SMTP id ff1so2656605vbb.29 for ; Sat, 16 Mar 2013 14:20:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=1Zi6p0wB+WyxoUXRa2SWRW0lM0M7+XJ3nwtgxjyS8D4=; b=R4v6UbC7k9dRLEiulkt8Y5LJ9AnZX009CFncsLbEe1LeQqqf1UsVY2Zdl+nvq+IcXa o0KrBOjmYyAJ5e1MbwVODlETKlKhWdWGnWoqDFOAI0DeJEtIiQ+rdzP1Hqf6FQ6uTLWN Z9uY2Id8yINmq30SBplMHl3GBfbYPjcP7AX6ts0L+tLdGwFMRMEy0YgbT+5I+HAPIfMk PBg8nxLFbxeFf8HQYWda8WhpwezLxNUJzBFxINWQZaPCds9o9+cRfAFIk2Ij4zvtYDSp w0beVNrBdOkNgL8GSupXZbOwTmaM+4vgDWnBO5PsDBm1vWsBodLR5xjyCT7ejY98NXeZ TZkg== MIME-Version: 1.0 X-Received: by 10.52.23.238 with SMTP id p14mr2492394vdf.86.1363468832798; Sat, 16 Mar 2013 14:20:32 -0700 (PDT) Received: by 10.58.132.203 with HTTP; Sat, 16 Mar 2013 14:20:32 -0700 (PDT) In-Reply-To: <5144BEB7.3090906@tundraware.com> References: <5144BEB7.3090906@tundraware.com> Date: Sat, 16 Mar 2013 14:20:32 -0700 Message-ID: Subject: Re: NFS Performance: Weirder And Weirder From: Mehmet Erol Sanliturk To: Tim Daneliuk Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: FreeBSD Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 21:20:34 -0000 On Sat, Mar 16, 2013 at 11:49 AM, Tim Daneliuk wrote: > This is really weird. A FreeBSD 9.1 system mounts the following: > > /dev/ad4s1a 989M 625M 285M 69% / > devfs 1.0k 1.0k 0B 100% /dev > /dev/ad4s1d 7.8G 1G 6.1G 14% /var > /dev/ad4s1e 48G 9.4G 35G 21% /usr > /dev/ad4s1f 390G 127G 231G 35% /usr1 > /dev/ad6s1d 902G 710G 120G 86% /usr1/BKU > > /usr1/something (under ad4s1f) and /usr1/BKU (all of ad6s1d) are > exported for NFS mounting on the LAN. I have tested the > speeds of these two drives locally doing a 'dd if=/dev/zero ....'. > Their speeds are quite comparable - around 55-60 MB/s so the > problem below is not an artifact of a slow drive. > > The two mounts are imported like this on a Linux Mint 12 machine: > > > machine:/usr1/BKU /BKU nfs rw,soft,intr 0 0 > machine:/usr1/shared /shared nfs rw,soft,intr 0 0 > > Problem: > > When I write files from the LM12 machines to /BKU the writes are > 1/10 the speed of when writing to /shared. Reads are fine in both > cases, at near native disk speeds being reported. > > Someone here suggested I get rid of any symlinks in the mount and I did > that to no avail. > > > Incidentally, the only reason I just noticed this is that I upgraded the > NIC on the FreeBSD machine and the switch into which it connects to > 1000Base > because the LM12 machine had a built in 1000Base NIC. I also changed > the cables on both machines to ensure they were not the problem. Prior > to this, I was bandwidth constrained by the 100Base so I never saw NFS > performance as an issue. When I upgraded, I expected faster transfers > and when I didn't get them, I started this whole investigation. > > So ... I'm stumped: > > - It's not the drive or SATA ports because both drives show comparable > performance. > - It's not the cables because I can get great throughput on one of the NFS > mountpoints. > - It's neither NIC for the same reason. > > Does anyone: > > A) Have a clue what might be doing this > B) Have a suggestion how to track down the problem > > Thanks, > > -- > ------------------------------**------------------------------** > ---------------- > Tim Daneliuk tundra@tundraware.com > PGP Key: http://www.tundraware.com/PGP/ > > With respect to your mount points : /usr1 is spanning TWO different partitions : /dev/ad4s1f 390G 127G 231G 35% /usr1 /dev/ad6s1d 902G 710G 120G 86% /usr1/BKU because /usr1/BKU is a sub-directory of /usr1 . If you create a new directory , for example /usr2 , and /usr2/BKU , and using this new separate directory for sharing , such as : /dev/ad6s1d 902G 710G 120G 86% /usr2/BKU and machine:/usr2/BKU /BKU nfs rw,soft,intr 0 0 will it make difference ? Mehmet Erol Sanliturk From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 22:09:09 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A70384DC for ; Sat, 16 Mar 2013 22:09:09 +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 74A1F600 for ; Sat, 16 Mar 2013 22:09:09 +0000 (UTC) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by ozzie.tundraware.com (8.14.6/8.14.6) with ESMTP id r2GM7FbE002305 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Sat, 16 Mar 2013 17:07:15 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <5144ED13.7020808@tundraware.com> Date: Sat, 16 Mar 2013 17:07:15 -0500 From: Tim Daneliuk User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130308 Thunderbird/17.0.4 MIME-Version: 1.0 To: FreeBSD Mailing List Subject: Re: NFS Performance: Weirder And Weirder References: <5144BEB7.3090906@tundraware.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; 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]); Sat, 16 Mar 2013 17:07:15 -0500 (CDT) X-TundraWare-MailScanner-Information: Please contact the ISP for more information X-TundraWare-MailScanner-ID: r2GM7FbE002305 X-TundraWare-MailScanner: Found to be clean X-TundraWare-MailScanner-From: tundra@tundraware.com X-Spam-Status: No X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 22:09:09 -0000 On 03/16/2013 04:20 PM, Mehmet Erol Sanliturk wrote: > > > > With respect to your mount points : /usr1 is spanning TWO different partitions : > > /dev/ad4s1f 390G 127G 231G 35% /usr1 > /dev/ad6s1d 902G 710G 120G 86% /usr1/BKU > > > because /usr1/BKU is a sub-directory of /usr1 . > > > If you create a new directory , for example /usr2 , and /usr2/BKU , and using this new separate directory for sharing , such as : > > /dev/ad6s1d 902G 710G 120G 86% /usr2/BKU > > and > > machine:/usr2/BKU /BKU nfs rw,soft,intr 0 0 > > > will it make difference ? > > > Mehmet Erol Sanliturk I just tried this and it made no difference. The same file copied onto the NFS mount on /usr1/shared takes about 20x as long when coppied on to /usr[1|2]/BKU. -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 22:43:59 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8E97727E for ; Sat, 16 Mar 2013 22:43:59 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-ve0-f175.google.com (mail-ve0-f175.google.com [209.85.128.175]) by mx1.freebsd.org (Postfix) with ESMTP id C6A2B70B for ; Sat, 16 Mar 2013 22:43:58 +0000 (UTC) Received: by mail-ve0-f175.google.com with SMTP id cy12so3464369veb.6 for ; Sat, 16 Mar 2013 15:43:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=zGajExcXwDRErx+yq+HHtohsgppvzGd9WZ65hIGYQPA=; b=d3gDi6Wc9wr8jWI4Vr/Q6Rn7viRU2323FvSmaDy6vqRtRTBys4ydD6uJkUDrX/USQf 7aWVeWCGV2LEbIF87QtoU7g+RsgGMBVZ2rvfTGJR3dnXr0MzTeI+DeTDfZvrhRzqaDwh qSLdAvZ1GMi0fCWAk56VKNrEt1QTgnp7nIHOKBrKhlXgIqb3UqltsQxv1ofDiu7QCzT9 N729yq0L6hPWNuy+59MBqU79gzuhpYsQvqcHFFk9JH1UYGcIfh6uyXnAsy+Ed+mPpKC3 pn1D7bLXDqv2x2p3WDvO3T05HVTG259EN+0fDaqH6UIDLdFeC5iMkDHdGWIqfP2UXuG/ 47gQ== MIME-Version: 1.0 X-Received: by 10.58.23.169 with SMTP id n9mr13336847vef.58.1363473831891; Sat, 16 Mar 2013 15:43:51 -0700 (PDT) Received: by 10.58.132.203 with HTTP; Sat, 16 Mar 2013 15:43:51 -0700 (PDT) In-Reply-To: <5144ED13.7020808@tundraware.com> References: <5144BEB7.3090906@tundraware.com> <5144ED13.7020808@tundraware.com> Date: Sat, 16 Mar 2013 15:43:51 -0700 Message-ID: Subject: Re: NFS Performance: Weirder And Weirder From: Mehmet Erol Sanliturk To: Tim Daneliuk Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: FreeBSD Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 22:43:59 -0000 On Sat, Mar 16, 2013 at 3:07 PM, Tim Daneliuk wrote: > On 03/16/2013 04:20 PM, Mehmet Erol Sanliturk wrote: > >> >> >> > >> With respect to your mount points : /usr1 is spanning TWO different >> partitions : >> >> /dev/ad4s1f 390G 127G 231G 35% /usr1 >> /dev/ad6s1d 902G 710G 120G 86% /usr1/BKU >> >> >> because /usr1/BKU is a sub-directory of /usr1 . >> >> >> If you create a new directory , for example /usr2 , and /usr2/BKU , and >> using this new separate directory for sharing , such as : >> >> /dev/ad6s1d 902G 710G 120G 86% /usr2/BKU >> >> and >> >> machine:/usr2/BKU /BKU nfs rw,soft,intr 0 0 >> >> >> will it make difference ? >> >> >> Mehmet Erol Sanliturk >> > > > I just tried this and it made no difference. The same file copied onto > the NFS mount on /usr1/shared takes about 20x as long when coppied > on to /usr[1|2]/BKU. > > > > -- > ------------------------------**------------------------------** > ---------------- > Tim Daneliuk tundra@tundraware.com > PGP Key: http://www.tundraware.com/PGP/ > > Michael W. Lucas in Absolute FeeBSD , 2nd Edition , ( ISBN : 978-1-59327-151-0 ) , is suggesting the following ( p. 248 ) : In client ( mount , or , fstab ) , use options ( -o tcp , intr , soft , -w=32768 , -r=32768 ) tcp option will request a TCP mount instead of UDP mount , because FreeBSD NFS defaults to running over UDF . This subject may be another check point . Mehmet Erol Sanliturk From owner-freebsd-questions@FreeBSD.ORG Sat Mar 16 22:45:22 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EE1B648A for ; Sat, 16 Mar 2013 22:45:22 +0000 (UTC) (envelope-from iamatt@gmail.com) Received: from mail-pb0-f47.google.com (mail-pb0-f47.google.com [209.85.160.47]) by mx1.freebsd.org (Postfix) with ESMTP id CC9B7723 for ; Sat, 16 Mar 2013 22:45:22 +0000 (UTC) Received: by mail-pb0-f47.google.com with SMTP id rp2so5303110pbb.20 for ; Sat, 16 Mar 2013 15:45:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=44N9hqYU3Evih5NIAy2YeOCtLtVEJgJ/heOK2yWYO7g=; b=AEzBnF4BElcsiO9tBSBs5rCJpvv987gbRSWzHB6dKt+LC5arTudkM1mTb1vZ2+JwH9 xMXty9fkoz4qqil7DwRmU6vph2/n43771zcMr1QYYRQCYdBe52MHS229BD2fxi0iiv1p n9GsfnwM7ieHl5Mc+BH2bgw0nUlDOndhefJcBpydrT9MTeh4reUfWG0QVRVMo2xByS+L MNdWVdUJaFgJbzewQqTk6dYlbsqWNPUQDgFeeket06iHyA6DwiPxmixyegOEBiMJhrT3 3qfrBgU7g9PkMXXBbabPBAytkxqHfiGaVdSkClBErknLFc55B9uPAiwL/Y1I7xCs5wIt vCvw== MIME-Version: 1.0 X-Received: by 10.68.239.231 with SMTP id vv7mr25566414pbc.171.1363473922027; Sat, 16 Mar 2013 15:45:22 -0700 (PDT) Received: by 10.68.4.100 with HTTP; Sat, 16 Mar 2013 15:45:21 -0700 (PDT) In-Reply-To: References: <5144BEB7.3090906@tundraware.com> <5144ED13.7020808@tundraware.com> Date: Sat, 16 Mar 2013 17:45:21 -0500 Message-ID: Subject: Re: NFS Performance: Weirder And Weirder From: iamatt To: Mehmet Erol Sanliturk Content-Type: text/plain; charset=UTF-8 Cc: Tim Daneliuk , FreeBSD Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 22:45:23 -0000 just slap an netapp 8.x with an avere flash box in front if you want NFS performance... or isilon. On Sat, Mar 16, 2013 at 5:43 PM, Mehmet Erol Sanliturk wrote: > On Sat, Mar 16, 2013 at 3:07 PM, Tim Daneliuk wrote: > >> On 03/16/2013 04:20 PM, Mehmet Erol Sanliturk wrote: >> >>> >>> >>> >> >>> With respect to your mount points : /usr1 is spanning TWO different >>> partitions : >>> >>> /dev/ad4s1f 390G 127G 231G 35% /usr1 >>> /dev/ad6s1d 902G 710G 120G 86% /usr1/BKU >>> >>> >>> because /usr1/BKU is a sub-directory of /usr1 . >>> >>> >>> If you create a new directory , for example /usr2 , and /usr2/BKU , and >>> using this new separate directory for sharing , such as : >>> >>> /dev/ad6s1d 902G 710G 120G 86% /usr2/BKU >>> >>> and >>> >>> machine:/usr2/BKU /BKU nfs rw,soft,intr 0 0 >>> >>> >>> will it make difference ? >>> >>> >>> Mehmet Erol Sanliturk >>> >> >> >> I just tried this and it made no difference. The same file copied onto >> the NFS mount on /usr1/shared takes about 20x as long when coppied >> on to /usr[1|2]/BKU. >> >> >> >> -- >> ------------------------------**------------------------------** >> ---------------- >> Tim Daneliuk tundra@tundraware.com >> PGP Key: http://www.tundraware.com/PGP/ >> >> > > Michael W. Lucas in Absolute FeeBSD , 2nd Edition , ( ISBN : > 978-1-59327-151-0 ) , > is suggesting the following ( p. 248 ) : > > In client ( mount , or , fstab ) , use options ( -o tcp , intr , soft , > -w=32768 , -r=32768 ) > > tcp option will request a TCP mount instead of UDP mount , because FreeBSD > NFS defaults to running over UDF . > > This subject may be another check point . > > > Mehmet Erol Sanliturk > _______________________________________________ > 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 Mar 16 22:47:57 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A75F752F for ; Sat, 16 Mar 2013 22:47:57 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 7C3A873A for ; Sat, 16 Mar 2013 22:47:57 +0000 (UTC) Received: from [10.0.10.1] ([173.88.202.176]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Sat, 16 Mar 2013 15:46:52 -0700 Message-ID: <5144F65B.6080302@a1poweruser.com> Date: Sat, 16 Mar 2013 18:46:51 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Dan Nelson Subject: Re: Upgrade from 6.4 to 9.1? References: <5144CB0A.6010801@mykitchentable.net> <20130316200152.GD80810@dan.emsphone.com> In-Reply-To: <20130316200152.GD80810@dan.emsphone.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 16 Mar 2013 22:46:53.0060 (UTC) FILETIME=[27555440:01CE2298] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: Drew Tomlinson , freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 22:47:57 -0000 Dan Nelson wrote: > In the last episode (Mar 16), Drew Tomlinson said: >> I have an old system happily running 6.4 but am finding that it can no >> longer download or build a ports index. Thus I guess it's time to >> upgrade. >> >> What "gotchas" do I need to look out for? In the past my upgrades have >> always been simply downloading new source, reviewing kernel config file, >> and then rebuilding the system. Any ports that didn't work after that I >> would just rebuild as well. However I've never waited this long to >> upgrade. Do I need to do anything different? > > You won't be able to do a straight source build from 6.4 to 9.1; too many > low-level changes like Makefile syntax and compiler options have changed. > If you are comfortable with temporarily disabling non-essential things that > fail to build, it is definitely possible to do a long jump to 9.1, but it'd > be safer to either hop from 6.4 -> (7-stable or 8-stable) -> 9 doing > buildkernels and buildworlds, or just do a binary upgrade of kernel and base > system to 9.1. > The best approach is to backup your user data and do a fresh install from 9.1 cdrom. You will bypass a bunch of headaches which may in the end force you to do a fresh install anyway. And it will save you a lot of compile time. It's alway a good feeling to know you have a pristine system when you start having problems.