From owner-freebsd-questions@FreeBSD.ORG Sun May 22 00:48:40 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7715916A41C for ; Sun, 22 May 2005 00:48:40 +0000 (GMT) (envelope-from dlevitch@iglou.com) Received: from rdsmtp.iglou.com (rdsmtp.iglou.com [192.107.41.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3033A43D48 for ; Sun, 22 May 2005 00:48:40 +0000 (GMT) (envelope-from dlevitch@iglou.com) Received: from [192.107.41.3] (helo=iglou1.iglou.com) by rdsmtp.iglou.com with esmtp (8.12.5/8.12.5) id 1DZedz-0001ka-F4 for freebsd-questions@freebsd.org; Sat, 21 May 2005 20:48:39 -0400 Received: from [192.107.41.17] (helo=shell1) by iglou1.iglou.com with esmtp (8.12.5/8.12.5) id 1DZedz-0007f4-40; Sat, 21 May 2005 20:48:39 -0400 Date: Sat, 21 May 2005 20:48:39 -0400 (EDT) From: Darrel X-X-Sender: dlevitch@shell1 To: Christian Hiris <4711@chello.at> In-Reply-To: <200505212332.22596.4711@chello.at> Message-ID: References: <200505202240.27506.4711@chello.at> <200505212332.22596.4711@chello.at> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Originating-IP: 192.107.41.17 X-IgLou-Customer: verified cc: freebsd-questions@freebsd.org Subject: Re: NTP issues with 5.4 (SOLVED) (fwd) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 00:48:40 -0000 On Sat, 21 May 2005, Christian Hiris wrote: > On Saturday 21 May 2005 15:56:15, Darrel wrote: >> On Fri, 20 May 2005, Christian Hiris wrote: >>> On Friday 20 May 2005 01:01:01, Darrel wrote: > > [...] > >> Thanks, Christian! >> >> I am comparing to a NetBSD computer with older hardware, that seems to >> always have PLL enabled: >> >> May 14 18:26:10 ntpd[343]: ntpd 4.2.0-r Wed Mar 23 08:12:50 UTC >> 2005 (1) >> May 14 18:26:11 ntpd[343]: precision = 2.000 usec >> May 14 18:26:11 ntpd[343]: kernel time sync status 0040 >> May 14 18:26:12 ntpd[343]: frequency initialized 74.725 PPM >> from /var/db/ntp.drift >> May 14 18:29:29 ntpd[343]: time reset -1.128987 s >> May 14 18:29:29 ntpd[343]: kernel time sync disabled 0041 >> May 14 18:35:49 ntpd[343]: kernel time sync enabled 0001 >> >> Probably the 4 indicates that the clock had drifted too far for the >> program to permit syncing to- perhaps the battery should be replaced. > > No, that's ok. The synchronization takes some minutes. The '1' indicates that > PLL updates enabled, but it doesn't tell you much about the actual PLL/FFL > mode. About weak batteries - I run ntpd on a i386 machine that had no battery > inserted w/o any problems. > >> I >> am still not sure why we do not see the new NTP4 mode shift to FLL, as >> with the FreeBSD computer. >> >> Maybe the /var/log/messages are just implemented differently on NetBSD >> 2.02. I will watch it occasionally with 'ntpdc -c kerninfo | grep >> status'. This NetBSD clock is also set to UTC and it seems that I >> recall that UTC can be improperly implemented when the computer >> previously had Microsoft Windows installed. > > The answer to your question is quite simple. The status bit STA_MODE hasn't > been implemented in netBSD. I run a diff on FreeBSD's and netBSD's timex.h to > point out the status bits differences: > > $ diff -u timex.h-freebsd timex.h-netbsd | grep STA_ > - * format in use is determined by the STA_NANO bit of the status > - * STA_NANO bit in the status word. See the description below for > - * STA_FLL bit in the status word. > #define STA_PLL 0x0001 /* enable PLL updates (rw) */ > #define STA_PPSFREQ 0x0002 /* enable PPS freq discipline (rw) */ > #define STA_PPSTIME 0x0004 /* enable PPS time discipline (rw) */ > -#define STA_FLL 0x0008 /* enable FLL mode (rw) */ > +#define STA_FLL 0x0008 /* select frequency-lock mode (rw) */ > #define STA_INS 0x0010 /* insert leap (rw) */ > #define STA_DEL 0x0020 /* delete leap (rw) */ > #define STA_UNSYNC 0x0040 /* clock unsynchronized (rw) */ > #define STA_FREQHOLD 0x0080 /* hold frequency (rw) */ > #define STA_PPSSIGNAL 0x0100 /* PPS signal present (ro) */ > #define STA_PPSJITTER 0x0200 /* PPS signal jitter exceeded (ro) */ > #define STA_PPSWANDER 0x0400 /* PPS signal wander exceeded (ro) */ > #define STA_PPSERROR 0x0800 /* PPS signal calibration error (ro) */ > #define STA_CLOCKERR 0x1000 /* clock hardware fault (ro) */ > > -#define STA_NANO 0x2000 /* resolution (0 = us, 1 = ns) (ro) */ > -#define STA_MODE 0x4000 /* mode (0 = PLL, 1 = FLL) (ro) */ > -#define STA_CLK 0x8000 /* clock source (0 = A, 1 = B) (ro) */ > > #define STA_RONLY (STA_PPSSIGNAL | STA_PPSJITTER | STA_PPSWANDER | \ > - STA_PPSERROR | STA_CLOCKERR | STA_NANO | STA_MODE | STA_CLK) > + STA_PPSERROR | STA_CLOCKERR) /* read-only bits */ > > - * Note: The time member is in microseconds if STA_NANO is zero and > - * STA_NANO is zero and nanoseconds if not. > > The complete sources are available via cvsweb: > http://www.freebsd.org/cgi/cvsweb.cgi/~checkout~/src/sys/sys/timex.h > http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/dist/ntp/kernel/sys/timex.h > > Cheers, > ch > > -- > Christian Hiris <4711@chello.at> | OpenPGP KeyID 0x3BCA53BE > OpenPGP-Key at hkp://wwwkeys.eu.pgp.net and http://pgp.mit.edu > Thanks, Christian! And the FreeBSD computer has resolution to nanoseconds. Also, I upgraded the netBSD to 2.02_STABLE and compiled the kernel with RTC_OFFSET=0. Cheers, Darrel From owner-freebsd-questions@FreeBSD.ORG Sun May 22 01:19:14 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D445516A41C for ; Sun, 22 May 2005 01:19:14 +0000 (GMT) (envelope-from dfarmour@myrealbox.com) Received: from pd4mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EBD343D48 for ; Sun, 22 May 2005 01:19:14 +0000 (GMT) (envelope-from dfarmour@myrealbox.com) Received: from pd2mr3so.prod.shaw.ca (pd2mr3so-qfe3.prod.shaw.ca [10.0.141.108]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IGV00HHXAAUH4SP@l-daemon> for freebsd-questions@freebsd.org; Sat, 21 May 2005 19:18:30 -0600 (MDT) Received: from pn2ml8so.prod.shaw.ca ([10.0.121.152]) by pd2mr3so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IGV00L4LAAUMMJ0@pd2mr3so.prod.shaw.ca> for freebsd-questions@freebsd.org; Sat, 21 May 2005 19:18:30 -0600 (MDT) Received: from S0106000d87ae2db6.gv.shawcable.net (S0106000d87ae2db6.gv.shawcable.net [24.108.146.24]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with ESMTP id <0IGV009AQAATDS@l-daemon> for freebsd-questions@freebsd.org; Sat, 21 May 2005 19:18:30 -0600 (MDT) Date: Sat, 21 May 2005 18:18:31 -0700 From: David Armour In-reply-to: <447jhsps68.fsf@be-well.ilk.org> To: freebsd-questions@freebsd.org, Lowell Gilbert Message-id: <200505211818.31536.dfarmour@myrealbox.com> Organization: dfarmour.org MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit Content-disposition: inline References: <200505201114.33106.dfarmour@myrealbox.com> <447jhsps68.fsf@be-well.ilk.org> User-Agent: KMail/1.8 Subject: Re: NEWBIE: pkg_add syntax clarification for opera 8.01? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 01:19:14 -0000 thank you for your reply. > > thanks for any suggestions, short of suicide. :c) > Well, no one's likely to endorse suicide as a technical support you've never worked in a kitchen? [i'm going to stop now, before i tromp on any more sensibilities.] > It doesn't matter where the file is now that you have downloaded it. > Traditionally they go under /usr/ports/packages, because that's where > they are put if you build a package yourself, but the file itself thank you. that clears that up for me. > contains all of the meta-information it needs to install the program if it's possible to screw it up, i'll find the way. i could hire myself out. really. it's a gift. From owner-freebsd-questions@FreeBSD.ORG Sun May 22 01:33:31 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77A5316A41C; Sun, 22 May 2005 01:33:31 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 871CE43D1F; Sun, 22 May 2005 01:33:27 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id CD6335151C; Sat, 21 May 2005 18:33:59 -0700 (PDT) Date: Sat, 21 May 2005 18:33:59 -0700 From: Kris Kennaway To: Viren Patel Message-ID: <20050522013359.GA12217@xor.obsecurity.org> References: <3578.146.6.135.76.1116702794.squirrel@mail.cm.utexas.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CE+1k2dSO48ffgeK" Content-Disposition: inline In-Reply-To: <3578.146.6.135.76.1116702794.squirrel@mail.cm.utexas.edu> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: Aide port broken in 5.4? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 01:33:31 -0000 --CE+1k2dSO48ffgeK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, May 21, 2005 at 02:13:14PM -0500, Viren Patel wrote: > Hello. I just upgraded my servers to 5.4 and find that the > Aide port is broken. The message I get is: >=20 > aide-0.10_1 is marked as broken. Incomplete pkg-plist >=20 > Is this port truly broken or did I break something in the > upgrade? Thanks. The problem is as described: the packing list for the port is incomplete, meaning that files will be left behind when you deinstall or upgrade it. Build with the TRYBROKEN variable set if you don't care. Kris --CE+1k2dSO48ffgeK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCj+GHWry0BWjoQKURAmHCAKD6BTJ+cEbr69Rvq99+zYySpKGitwCgw9y/ CnUPHQU66QvyjTNo6lyJmHc= =EkLT -----END PGP SIGNATURE----- --CE+1k2dSO48ffgeK-- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 03:42:20 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F4F616A41C for ; Sun, 22 May 2005 03:42:20 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4300943D49 for ; Sun, 22 May 2005 03:42:20 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4M3gIDf048981; Sat, 21 May 2005 22:42:18 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost)j4M3gIuR048976; Sat, 21 May 2005 22:42:18 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Sat, 21 May 2005 22:42:18 -0500 (CDT) From: Tony Shadwick To: jrb0234@unt.edu In-Reply-To: <1116705008.428f90f0b23f6@eaglemail.unt.edu> Message-ID: <20050521224156.J47072@mail.goinet.com> References: <1116705008.428f90f0b23f6@eaglemail.unt.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean cc: freebsd-questions@freebsd.org Subject: Re: sony laptop - xorg comes up in small box X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 03:42:20 -0000 Try editing xorg.conf and putting your correct screen resolution in as the only option. On Sat, 21 May 2005 jrb0234@unt.edu wrote: > I'm trying to install get xorg running on my Sony Vaio PCG FX-150, running FBSD > 5.4. When I "startx", X comes up in the small rectangular box the same as the > console. How do I get X to take up my full screen and also how could I go about > doing that for the consoles. The X driver I'm using is the i810-i815 driver. > Also, I am having difficulty locating information for the horizontal and > vertial sync rates for my display (checked google and sony website). That might > have something to do with it. Can anyone help me with this? Thanks. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sun May 22 03:44:13 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6C9016A41C for ; Sun, 22 May 2005 03:44:13 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55ED843D48 for ; Sun, 22 May 2005 03:44:13 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4M3iCfi049211; Sat, 21 May 2005 22:44:12 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost)j4M3iBFG049208; Sat, 21 May 2005 22:44:12 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Sat, 21 May 2005 22:44:11 -0500 (CDT) From: Tony Shadwick To: Francisco Reyes In-Reply-To: <20050521133758.T48232@zoraida.natserv.net> Message-ID: <20050521224321.A47072@mail.goinet.com> References: <20050521133758.T48232@zoraida.natserv.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean cc: Eugene Hercun cc: freebsd-questions@freebsd.org Subject: Re: downloading entire directories X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 03:44:13 -0000 scp -pr user@remote_host:/path/of/dir/you/want/ /path/you/want/it/stored Tony On Sat, 21 May 2005, Francisco Reyes wrote: > On Fri, 20 May 2005, Tony Shadwick wrote: > >> There are two ways you could do this. The first is like so: > > I believe there may be a third way. > Have not done it in a while, but some FTP servers allow you to specify a tar > file from a directory. > > To be honest I don't recall syntax, but it was something like "get > dirname.tar" and the FTP server would know to prepare a tar of the entire > directory. Don't know which server(s) suppor(ed) this feature though. > > Long run something like rsync or unison are better options though. > Although I think scp can download multiple files, but I don't know if it > recurses. > From owner-freebsd-questions@FreeBSD.ORG Sun May 22 04:19:38 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC24A16A41F for ; Sun, 22 May 2005 04:19:38 +0000 (GMT) (envelope-from jack_csk@yahoo.com) Received: from web30807.mail.mud.yahoo.com (web30807.mail.mud.yahoo.com [68.142.200.150]) by mx1.FreeBSD.org (Postfix) with SMTP id 5C0B643D4C for ; Sun, 22 May 2005 04:19:38 +0000 (GMT) (envelope-from jack_csk@yahoo.com) Received: (qmail 78861 invoked by uid 60001); 22 May 2005 04:19:37 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=mW24bGUQIfNonP1f/v8ok2mEVTi9oBqswZ4//II9wEdIN+jkWCNriLukmSh4W1P/bVruNcedMnzuZopoYqxjMOTm3jxlksvNl5z9V0UzadsLHb8YHZUhFnpGKKGZot5no7eFx4tjRZe1CLmG9PdtP8zOwGppOHljSxZuKceViTw= ; Message-ID: <20050522041937.78859.qmail@web30807.mail.mud.yahoo.com> Received: from [208.20.47.238] by web30807.mail.mud.yahoo.com via HTTP; Sat, 21 May 2005 21:19:37 PDT Date: Sat, 21 May 2005 21:19:37 -0700 (PDT) From: Jack Cheung To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-1330263352-1116735577=:78798" Subject: postgresql-client-8.0.3 compile failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jack@jackcheung.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 04:19:39 -0000 --0-1330263352-1116735577=:78798 Content-Type: text/plain; charset=us-ascii Content-Id: Content-Disposition: inline I could not successful upgrade my postgresql-client-8.0.2 to 8.0.3 (ya, I know that I've to do manual work with psql for the vulnerabilities, but still...). The upgrade would fail at the configure portion of compilation and I could not figure out what went wrong because I did not see any report for other FreeBSD user. I've attached the error messages and my system info to this e-mail. Thanks, Jack Cheung __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --0-1330263352-1116735577=:78798 Content-Type: text/plain; charset=US-ASCII; name="uname.txt" Content-Description: pat814045213 Content-Disposition: attachment; filename="uname.txt" FreeBSD bsd.jackcheung.com 5.3-SECURITY FreeBSD 5.3-SECURITY #0: Sat May 7 07:34:31 UTC 2005 root@builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 --0-1330263352-1116735577=:78798 Content-Type: text/plain; charset=US-ASCII; name="postgresql_client_output.txt" Content-Description: pat265956433 Content-Disposition: attachment; filename="postgresql_client_output.txt" ---> Upgrading 'postgresql-client-8.0.2' to 'postgresql-client-8.0.3' (database s/postgresql80-client) ---> Building '/usr/ports/databases/postgresql80-client' ===> Cleaning for libiconv-1.9.2_1 ===> Cleaning for gettext-0.14.4 ===> Cleaning for gmake-3.80_2 ===> Cleaning for libtool-1.5.10_1 ===> Cleaning for m4-1.4.3 ===> Cleaning for perl-5.8.6_2 ===> Cleaning for krb5-1.4.1 ===> Cleaning for postgresql-client-8.0.3 ===> Vulnerability check disabled, database not found ===> Found saved configuration for postgresql-server-8.0.1_2 ===> Extracting for postgresql-client-8.0.3 => Checksum OK for postgresql/postgresql-base-8.0.3.tar.bz2. => Checksum OK for postgresql/postgresql-opt-8.0.3.tar.bz2. ===> Patching for postgresql-client-8.0.3 ===> Applying FreeBSD patches for postgresql-client-8.0.3 ===> postgresql-client-8.0.3 depends on executable: gmake - found ===> postgresql-client-8.0.3 depends on shared library: krb5.3 - found ===> postgresql-client-8.0.3 depends on shared library: intl - found ===> Configuring for postgresql-client-8.0.3 configure: WARNING: you should use --build, --host, --target checking build system type... i386-portbld-freebsd5.3 checking host system type... i386-portbld-freebsd5.3 checking which template to use... freebsd checking whether to build with 64-bit integer date/time support... no checking whether NLS is wanted... yes checking for default port number... 5432 checking for i386-portbld-freebsd5.3-gcc... cc checking for C compiler default output... a.out checking whether the C compiler works... configure: error: cannot run C compiled programs. If you meant to cross compile, use `--host'. ===> Script "configure" failed unexpectedly. Please report the problem to girgen@FreeBSD.org [maintainer] and attach the "/usr/ports/databases/postgresql80-client/work/postgresql-8.0.3/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/databases/postgresql80-client. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade36727.43 ma ke ** Fix the problem and try again. --0-1330263352-1116735577=:78798 Content-Type: text/plain; charset=US-ASCII; name="pkg_list.txt" Content-Description: pat63993717 Content-Disposition: attachment; filename="pkg_list.txt" Hermes-1.3.3_1 ORBit2-2.12.2 OpenEXR-1.2.1_1 a2ps-letter-4.13b_3 apache-2.0.54 arj-3.10.21 artswrapper-1.2.1_1 aspell-0.60.2 atk-1.9.1 autoconf-2.13.000227_5 autoconf-2.53_3 autoconf-2.59_2 automake-1.4.6_1 automake-1.5_2,1 awstats-6.4 bash-2.05b.007_4 bison-1.75_2 bitstream-vera-1.10_1 bsdiff-4.2 cclient-2004c1_1,1 cdparanoia-3.9.8_7 compat4x-i386-5.3 cscope-15.5_1 cups-base-1.1.23.0_4 curl-7.13.1_1 cvsup-without-gui-16.1h_2 djbfft-0.76_2 docbook-1.3 docbook-241_2 docbook-3.0_2 docbook-3.1_2 docbook-4.0_2 docbook-4.1_2 docbook-sk-4.1.2_3 docbook-xml-4.2_1 docbook-xsl-1.68.1 elinks-0.10.3 esound-0.2.35_2 ettercap-gtk2-0.7.2_1,1 expat-1.95.8_1 ezm3-1.2 fam-2.6.9_6 flac-1.1.2 fontconfig-2.2.3,1 freebsd-update-1.6_1 freetds-msdblib-0.63 freetype2-2.1.9 fribidi-0.10.4_1 gdbm-1.8.3_1 gengetopt-2.11 gettext-0.14.4 ghostscript-gnu-nox11-7.07_12 glib-1.2.10_11 glib-2.6.4 gmake-3.80_2 gnupg-1.4.1 gnutls-1.0.24_1 gsfonts-8.11_2 gsm-1.0.10 gtk-2.6.7 help2man-1.35.1 hicolor-icon-theme-0.5 icecast-1.3.12_2 imake-6.8.2 intltool-0.33 iso8879-1986_2 ispell-3.2.06_13 jade-1.2.1_9 jasper-1.701.0 jbigkit-1.6 jpeg-6b_3 kdehier-1.0_6 krb5-1.4.1 lcms-1.14,1 libIDL-0.8.5_1 libXft-2.1.6_1 liba52-0.7.4_1 libart_lgpl2-2.3.17 libaudiofile-0.2.6 libbonobo-2.8.1_1 libcroco-0.6.0_1 libdvdcss-1.2.8_1 libdvdread-0.9.4_1 libexif-0.6.12_1 libfame-0.9.1_1 libfpx-1.2.0.12 libgcrypt-1.2.1_1 libgmp-4.1.4 libgpg-error-1.0_1 libgphoto2-2.1.5_1 libgsf-1.11.1 libiconv-1.9.2_1 libid3tag-0.15.0b_2 libidn-0.5.16 libltdl-1.5.10 libmad-0.15.1b_1 libmcrypt-2.5.7_1 libmng-1.0.8 libmusicbrainz-2.1.1 libnet-devel-1.1.2.1 libogg-1.1.2_1,3 librep-0.16.2_4 libtool-1.3.5_2 libtool-1.5.10_1 libtunepimp-0.3.0_2 libusb-0.1.10a libvorbis-1.1.0_1,3 libxml2-2.6.19 libxslt-1.1.14 linc-1.0.3_3 linux_base-rh-7.3 linuxdoc-1.1_1 logrotate-3.7_3 lsof-4.74.2 lynx-2.8.5 m4-1.4.3 mime-support-3.33.1 mod_security-1.8.7 mutt-1.4.2.1_2 mysql-client-4.1.11_1 nano-1.2.4 nasm-0.98.39,1 nessus-gtk2-2.2.4_1 nessus-libnasl-2.2.4 nessus-libraries-2.2.4 nessus-plugins-2.2.4 net-snmp-5.2.1_2 nmap-3.81 noip-2.1.1 nspr-4.4.1_1 openldap-client-2.2.26 p5-Authen-PAM-0.14 p5-Digest-SHA1-2.10 p5-Net-SSLeay-1.25 p5-Net-XWhois-0.90_2 p5-XML-Parser-2.34_1 p5-gettext-1.03 p7zip-4.18 pango-1.8.1 pcre-5.0 pdksh-5.2.14p2 pecl-zip-1.0 perl-5.8.6_2 php5-5.0.4_1 php5-bcmath-5.0.4_1 php5-bz2-5.0.4_1 php5-ctype-5.0.4_1 php5-curl-5.0.4_1 php5-dbase-5.0.4_1 php5-dom-5.0.4_1 php5-exif-5.0.4_1 php5-extensions-1.0 php5-ftp-5.0.4_1 php5-gd-5.0.4_1 php5-gettext-5.0.4_1 php5-iconv-5.0.4_1 php5-imap-5.0.4_1 php5-ldap-5.0.4_1 php5-mcrypt-5.0.4_1 php5-mssql-5.0.4_1 php5-mysqli-5.0.4_1 php5-odbc-5.0.4_1 php5-openssl-5.0.4_1 php5-pcre-5.0.4_1 php5-pgsql-5.0.4_1 php5-posix-5.0.4_1 php5-session-5.0.4_1 php5-simplexml-5.0.4_1 php5-soap-5.0.4_1 php5-sqlite-5.0.4_1 php5-tokenizer-5.0.4_1 php5-xml-5.0.4_1 php5-xmlrpc-5.0.4_1 php5-xsl-5.0.4_1 php5-zlib-5.0.4_1 pine-4.62 pkg_tree-1.1_1 pkgconfig-0.17.2 pkgdb.db png-1.2.8_1 popt-1.7 portupgrade-20041226_2 postgresql-client-8.0.2 postgresql-server-8.0.2 psutils-letter-1.17_1 python-2.4.1_1 qmake-3.3.4 rkhunter-1.1.9 rplay-3.3.2_2 rpm-3.0.6_9 rssh-2.2.3 rsync-2.6.3_1 ruby-1.8.2_3 ruby18-bdb1-0.2.2 samba-3.0.14a,1 samba-libsmbclient-3.0.14a_2 scponly-4.1 screen-4.0.2_1 sdocbook-xml-4.1.2.5_2 sendmail-8.13.4 sgmlformat-1.7_2 shared-mime-info-0.16_1 smartmontools-5.33 speex-1.0.5,1 sudo-1.6.8.8 svgalib-1.4.3_4 t1lib-5.0.1,1 taglib-1.3.1 tcl-8.4.7,1 tiff-3.7.2 unixODBC-2.2.11 unzip-5.52_1 webmin-1.200 wget-1.8.2_7 xemacs-packages-13.0 xmlcatmgr-2.2 xorg-clients-6.8.2 xorg-fonts-encodings-6.8.2 xorg-fonts-truetype-6.8.2 xorg-libraries-6.8.2 xterm-202 zip-2.3_2 zsh-4.2.5 zziplib-0.10.82 --0-1330263352-1116735577=:78798 Content-Type: text/plain; charset=US-ASCII; name="config.log" Content-Description: pat96061160 Content-Disposition: attachment; filename="config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by PostgreSQL configure 8.0.3, which was generated by GNU Autoconf 2.53. Invocation command line was $ ./configure --with-libraries=/usr/local/lib --with-includes=/usr/local/include --with-docdir=/usr/local/share/doc/postgresql --with-openssl --enable-nls --with-krb5 --prefix=/usr/local i386-portbld-freebsd5.3 ## --------- ## ## Platform. ## ## --------- ## hostname = bsd.jackcheung.com uname -m = i386 uname -r = 5.3-SECURITY uname -s = FreeBSD uname -v = FreeBSD 5.3-SECURITY #0: Sat May 7 07:34:31 UTC 2005 root@builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/X11R6/bin PATH: /home/jack/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:1298: checking build system type configure:1316: result: i386-portbld-freebsd5.3 configure:1324: checking host system type configure:1338: result: i386-portbld-freebsd5.3 configure:1348: checking which template to use configure:1449: result: freebsd configure:1587: checking whether to build with 64-bit integer date/time support configure:1618: result: no configure:1625: checking whether NLS is wanted configure:1659: result: yes configure:1667: checking for default port number configure:1696: result: 5432 configure:1879: checking for i386-portbld-freebsd5.3-gcc configure:1905: result: cc configure:1966: checking for C compiler version configure:1969: cc --version &5 cc (GCC) 3.4.2 [FreeBSD] 20040728 Copyright (C) 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:1972: $? = 0 configure:1974: cc -v &5 Using built-in specs. Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 3.4.2 [FreeBSD] 20040728 configure:1977: $? = 0 configure:1979: cc -V &5 cc: `-V' option must have argument configure:1982: $? = 1 configure:2008: checking for C compiler default output configure:2011: cc -O -pipe -O3 -funroll-loops -rpath=/usr/lib:/usr/local/lib -L/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib -lkrb5 -lk5crypto -lkrb5support -lcom_err conftest.c >&5 /usr/local/lib/libkrb5.so: warning: warning: mktemp() possibly used unsafely; consider using mkstemp() configure:2014: $? = 0 configure:2047: result: a.out configure:2052: checking whether the C compiler works configure:2058: ./a.out /libexec/ld-elf.so.1: /usr/lib/libkrb5.so: Undefined symbol "initialize_asn1_error_table_r" configure:2061: $? = 1 configure:2068: error: cannot run C compiled programs. If you meant to cross compile, use `--host'. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_env_LDFLAGS_SL_value= ac_cv_env_LDFLAGS_set=set ac_cv_exeext= ac_cv_env_CFLAGS_set=set lt_cv_sys_max_cmd_len=65536 ac_cv_env_CPP_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_host_alias_set=set ac_cv_prog_CC=cc ac_cv_env_build_alias_set=set ac_cv_env_LDFLAGS_value=' -rpath=/usr/lib:/usr/local/lib -L/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib -lkrb5 -lk5crypto -lkrb5support -lcom_err' ac_cv_env_target_alias_set=set ac_cv_host_alias=i386-portbld-freebsd5.3 ac_cv_env_DOCBOOKSTYLE_set= ac_cv_env_CFLAGS_value='-O -pipe -O3 -funroll-loops' ac_cv_env_CC_set=set ac_cv_build_alias=i386-portbld-freebsd5.3 ac_cv_env_CPPFLAGS_value= ac_cv_env_LDFLAGS_SL_set= ac_cv_host=i386-portbld-freebsd5.3 ac_cv_env_host_alias_value=i386-portbld-freebsd5.3 ac_cv_build=i386-portbld-freebsd5.3 ac_cv_env_build_alias_value=i386-portbld-freebsd5.3 ac_cv_env_target_alias_value=i386-portbld-freebsd5.3 ac_cv_env_DOCBOOKSTYLE_value= ac_cv_env_CC_value=cc ac_cv_env_CPP_set= ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "PostgreSQL" #define PACKAGE_TARNAME "postgresql" #define PACKAGE_VERSION "8.0.3" #define PACKAGE_STRING "PostgreSQL 8.0.3" #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" #define PG_VERSION "8.0.3" #define ENABLE_NLS 1 #define DEF_PGPORT 5432 #define DEF_PGPORT_STR "5432" configure: exit 1 --0-1330263352-1116735577=:78798-- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 04:27:25 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DAF616A41F for ; Sun, 22 May 2005 04:27:25 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from smtp1.utdallas.edu (smtp1.utdallas.edu [129.110.10.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5289143D1D for ; Sun, 22 May 2005 04:27:25 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from [192.168.2.101] (utdvpn084059.utdallas.edu [129.110.84.59]) by smtp1.utdallas.edu (Postfix) with ESMTP id 7BBB8388DB2 for ; Sat, 21 May 2005 23:27:20 -0500 (CDT) Date: Sat, 21 May 2005 23:27:07 -0500 From: Paul Schmehl To: questions@freebsd.org Message-ID: <2147483647.1116718027@[192.168.2.101]> In-Reply-To: <57d7100005052022277e3d8f8c@mail.gmail.com> References: <67A6706070203A2B9F6FEF46@utd49554.utdallas.edu> <57d7100005052022277e3d8f8c@mail.gmail.com> X-Mailer: Mulberry/3.0.3 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: Dual monitors - right one doesn't work right away X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Paul Schmehl List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 04:27:26 -0000 --On Friday, May 20, 2005 10:27 PM -0700 pete wright wrote: > On 5/20/05, Paul Schmehl wrote: >> I just installed 5.4 RELEASE, cvsup'd the ports and portupgraded >> everything to current. I'm using one ATI Radeon X300 card and two >> monitors with Xinerama. When I first login, only the left screen >> displays its half of the desktop. (I'm using gdm and gnome, but xdm >> with twm does the exact same thing.) >> >> After a while (30 minutes or more) the right monitor will begin >> displaying its half of the desktop. >> >> I've been hunting through the logs and googling trying to figure out what >> the cause is, but so far I'm stumped. >> >> This is a copy of the most recent display log (but they all look about >> the same.) >> > > I'd post a copy of your xorg.conf file. The info bellow states that > it can not detect the monitor, but with out the config we can't tell > if it's a problem with your setup or a hardware issue. > I've already posted a copy of my xorg.conf file. I've since discovered that the display works fine if I login using a standard user account. The problem with the right monitor only occurs if I login as root. (I've been logging in as root while setting up the box.) When logged in as root, the screensaver daemon won't start unless I first type "xhost +localhost", and as soon as I try to start the screensaver, the right monitor display "turns on". The screen lock doesn't work either. (All of this works fine if I'm logged in as a user.) Paul Schmehl (pauls@utdallas.edu) Adjunct Information Security Officer University of Texas at Dallas AVIEN Founding Member http://www.utdallas.edu/ From owner-freebsd-questions@FreeBSD.ORG Sun May 22 04:38:26 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5141616A41F for ; Sun, 22 May 2005 04:38:26 +0000 (GMT) (envelope-from cs-fbsd@ctzen.com) Received: from mail.ctzen.com (mail.ctzen.com [204.11.33.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D40A43D1D for ; Sun, 22 May 2005 04:38:25 +0000 (GMT) (envelope-from cs-fbsd@ctzen.com) Received: from [192.168.100.1] (dhcp-0-13-10-2c-af-22.cpe.beld.net [24.233.84.255]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.ctzen.com (Postfix) with ESMTP id 434221BAC57 for ; Sun, 22 May 2005 00:38:25 -0400 (EDT) Message-ID: <42900CC6.4090701@ctzen.com> Date: Sun, 22 May 2005 00:38:30 -0400 From: cs User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Is this possible ? inherit group permissions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 04:38:26 -0000 Hi, For a directory, e.g. foo/, if I chmod 775 foo/, is it possible for newly created files and directories under foo/ to automagically inherit the group permissions of foo ? e.g. touch foo/test would be rw-rw-r-- mkdir foo/sub would be rwxrwxr-x I am looking for a non umask solution. I seem to remember in debian, I was able to make the group permissions of the parent directory special for this magic to occur. I wonder if there is something similar in FBSD. Thank you. -cs From owner-freebsd-questions@FreeBSD.ORG Sun May 22 04:56:35 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A21416A41C for ; Sun, 22 May 2005 04:56:35 +0000 (GMT) (envelope-from radlinskic@acm.org) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B25843D48 for ; Sun, 22 May 2005 04:56:35 +0000 (GMT) (envelope-from radlinskic@acm.org) Received: from localhost.localdomain (c-24-118-13-177.hsd1.mn.comcast.net[24.118.13.177]) by comcast.net (rwcrmhc12) with SMTP id <2005052204563401400sn9uve>; Sun, 22 May 2005 04:56:35 +0000 From: Chris Radlinski To: freebsd-questions@freebsd.org Content-Type: text/plain Date: Sat, 21 May 2005 23:56:30 -0500 Message-Id: <1116737790.700.2.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.2.1.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Subject: procfs in 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 04:56:35 -0000 I'm running 5.4 Release. Whenever I run 'ps -ef' I get this message: ps: Process environment requires procfs(5) My kernel config contains these two lines: options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework I should have procfs. However, my /proc directory is empty. What gives? Thanks, Chris From owner-freebsd-questions@FreeBSD.ORG Sun May 22 06:37:17 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9533716A440 for ; Sun, 22 May 2005 06:37:17 +0000 (GMT) (envelope-from andy_lists@bananabread.net) Received: from smtp815.mail.sc5.yahoo.com (smtp815.mail.sc5.yahoo.com [66.163.170.1]) by mx1.FreeBSD.org (Postfix) with SMTP id 7126743D54 for ; Sun, 22 May 2005 06:37:17 +0000 (GMT) (envelope-from andy_lists@bananabread.net) Received: from unknown (HELO ?192.168.123.105?) (andrewbn@pacbell.net@63.207.14.110 with plain) by smtp815.mail.sc5.yahoo.com with SMTP; 22 May 2005 06:37:17 -0000 Message-ID: <4290289C.7010005@bananabread.net> Date: Sat, 21 May 2005 23:37:16 -0700 From: "Andrew C. Brown" User-Agent: Mozilla Thunderbird 1.0.2 (Macintosh/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Getting "can't load kernel" on a fresh install (5.4R) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 06:37:17 -0000 I've been doing a fresh install, new file systems, slices, partitions and so on, of 5.4 Release. May layout is like this: hd0: My original FBSD install v5.0. It boots fine. 10GB drive hd1: Haven't dealt with this one yet. Nothing on it. But empty slices. 300GB hd2: My new target (hd2,0,d) mount to /boot 64MB (hd2,1,a) mount to / (hd2,1,b) swap (hd2,1,d) /var (hd2,1,e) /tmp (hd2,1,f) /usr around 180GB Since I'm not installing on my first drive, I initially had a little trouble getting GRUB to find hd2. I set these new disk partions to be UFS2+S and it couldn't read them. So I got GRUB 0.95 which supposedly does read UFS2 and it hasn't complained about the format since. Since I was getting "can't load kernel", I have just been going straight to the GRUB shell so I could step through it. What's particularly confusing me is, I issue grub> root (hd2,0,d) response is>Filesystem is type UFS2, partition type 0xa5 which looks happy to me So I issue grub> kernel /loader { not preceeded with /boot/ since this whole partition hd2,0,d is going to be mounted at /boot } response> [FreeBSD-a.out, loadaddr=0x200000, text=0x1000, data=0x32000, bss=0x0. entry=0x200000] To the extent of my knowledge, this also looks 'healthy'. But when I issue grub> boot I get BTX loader 1.00 BTX version is 1.01 Console: internal video/keyboard BIOS drive C: is disk0 BIOS drive D: is disk1 BIOS drive E: is disk2 BIOS 639kb/261056kB available memory FreeBSD/i386 bootstrap loader, Revision 1.1 root@{something}.buffalo.edu Sun May 8 (some time) 2005 \ can't load 'kernel' type ? for list of commands, help for detailed help OK --------- Other details: disk 1 & 2 are on separate channels of a PCI UDMA133 controller by Maxtor (Promise Tech). System BIOS is not picking up disk1 consistently but that hasn't impacted my boot results. disk 2 has no trouble being mounted as long as I boot off some other drive. If I'd compiled my own kernel I would suspect that, but this is a clean install. So does anyone have a sense for where I should be placing my focus in order to solve this? It just seems like it's gotta be something simple. I've done enough head-banging on the table. Andrew From owner-freebsd-questions@FreeBSD.ORG Sun May 22 06:50:00 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 610A216A41C for ; Sun, 22 May 2005 06:50:00 +0000 (GMT) (envelope-from xmisoy@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02FA643D48 for ; Sun, 22 May 2005 06:49:57 +0000 (GMT) (envelope-from xmisoy@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so708135rng for ; Sat, 21 May 2005 23:49:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type; b=JwUnBK/HVXl6nx/lrJoJYkhQGGq9Bxn5v6WqOJ+MuxEGWqEdksTYvP3xKOaUPX3JsJ1zeIsuLok0xQ06/ivyg7tYq8/fvRzaNg/cisRYbI28vDIvv3O+enpVByjQkPc70BfNLdCTD3I3kxjiorkjgvJYTXg6GQGVpjexIy2UPwg= Received: by 10.38.149.23 with SMTP id w23mr2530826rnd; Sat, 21 May 2005 23:49:57 -0700 (PDT) Received: by 10.39.1.39 with HTTP; Sat, 21 May 2005 23:49:57 -0700 (PDT) Message-ID: <36f5bbba050521234957edd87e@mail.gmail.com> Date: Sat, 21 May 2005 23:49:57 -0700 From: "Edwin D. Vinas" To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: no freebsd boot loader when re-installed another winXP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Edwin D. Vinas" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 06:50:00 -0000 hello everyone! i have a running dual-boot (FreeBSD and WinXP) before but when I got=20 hijacked by a SpyWare, i decided to re-install or repair my WinXP. what=20 WinXP installer did is it didnt format the current Windows but rather it=20 added a new bootable WinXP. so now, when the machine boots, it doesnt load= =20 the FreeBSD boot loader but instead two WinXP Professional is being shown.= =20 How do I recover the FreeBSD boot loader? I can't see any F1, F2 or F3 whic= h=20 allows me to choose which OS to boot. It seems the newly installed WinXP ha= s=20 removed the FreeBSD boot manager? Pls help me :-( thank you in advance! -edwin --=20 -- Edwin D. Vi=F1as http://www.geocities.com/edwin_vinas/ IN THE WORLD OF SCIENCE, NOTHING IS IMPOSSIBLE. -- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 06:54:22 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AF8B16A41C for ; Sun, 22 May 2005 06:54:22 +0000 (GMT) (envelope-from freebsd-questions@it-solutions.lv) Received: from mail.FastNet.lv (ip-235.36.home-lan.fastnet.lv [80.81.36.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1DC543D4C for ; Sun, 22 May 2005 06:54:19 +0000 (GMT) (envelope-from freebsd-questions@it-solutions.lv) Received: by mail.FastNet.lv (Postfix, from userid 106) id 7E03845073; Sun, 22 May 2005 09:56:00 +0000 (UTC) Received: from [192.168.83.1] (unknown [83.223.128.62]) by mail.FastNet.lv (Postfix) with ESMTP id 550C745012; Sun, 22 May 2005 09:56:00 +0000 (UTC) Message-ID: <42902C97.8030601@it-solutions.lv> Date: Sun, 22 May 2005 09:54:15 +0300 From: freebsd-questions User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Daniel Gerzo Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: uname -a output does not change after kernel upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 06:54:22 -0000 Used the default email when sending this message and therefore it did not reached questions@freebsd.org. -------- Original Message -------- Subject: Re: uname -a output does not change after kernel upgrade Date: Sun, 22 May 2005 00:08:45 +0300 From: Jurgis <***@it-solutions.lv> To: Daniel Gerzo CC: questions@freebsd.org References: <428F80CF.1020509@it-solutions.lv> <216446879.20050521210609@rulez.sk> <428F9427.90402@it-solutions.lv> <745032946.20050521223345@rulez.sk> Daniel Gerzo wrote: >>How can I now which kernel is loaded? > sysctl -a | grep kernel > OK, I have new userland and old kernel. Those command proves that. # sysctl -a | grep kernel kern.bootfile: /boot/kernel/kernel kern.module_path: /boot/kernel;/boot/modules # sysctl -a | grep kern.version kern.version: FreeBSD 5.3-RELEASE #1: Fri Apr 29 23:04:18 EEST 2005 > >>I remembered that I had created /boot.config file >>with following content, but now when I checked it, >>ir was not there. > > >>--- cat /boot.config --- >>1:ad(6,a)/boot/loader > > > this doesn't have anything with kernel config I think. > actually, I know only one way how to implicitly set the kernel boot > file. One can do so by adding line > > kernel="path/to/kernel" > > into /boot/loader.conf I have to sata disks ad4 and ad6 and I created /boot.config to boot from ad6 instedad of ad4. BTW I'm not quite sure about those parameters in that string "1:ad(6,a)/boot/loader". >>Is it better that I start new conversation with new Subject >>and describe how I got all this mess? > > > That's up to you. Personally I don't think it is needed. You should > firstly try to build a new kernel AND install it. If you are using > your own kernel config file, you should add KERNCONF=CONFIGNAME to the > make (build|install)kernel command. I have built and installed the new kernel. I added KERNCONF=CONFIGNAME to /etc/make.conf. There is new kernel and modules in # ls -la /boot/kernel/kernel -r-xr-xr-x 1 root wheel 3328239 May 21 18:45 /boot/kernel/kernel Here is some file information and gmirror configuration: ----- # df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/mirror/gm0s1a 253734 54960 178476 24% / devfs 1 1 0 100% /dev /dev/mirror/gm0s1d 253678 58 233326 0% /tmp /dev/mirror/gm0s1f 135891276 1911080 123108894 2% /usr /dev/mirror/gm0s1e 50777034 63142 46651730 0% /var # gmirror list Geom name: gm0s1 State: DEGRADED Components: 2 Balance: round-robin Slice: 4096 Flags: NONE SyncID: 5 ID: 4196295632 Providers: 1. Name: mirror/gm0s1 Mediasize: 200046518272 (186G) Sectorsize: 512 Mode: r4w4e1 Consumers: 1. Name: ad6s1 Mediasize: 200046518784 (186G) Sectorsize: 512 Mode: r4w4e2 State: ACTIVE Priority: 0 Flags: DIRTY SyncID: 5 ID: 3302562170 # gmirror status Name Status Components mirror/gm0s1 DEGRADED ad6s1 ----- --- And a bit from dmesg --- ad4: 190782MB [387621/16/63] at ata2-master SATA150 ad6: 190782MB [387621/16/63] at ata3-master SATA150 GEOM_MIRROR[2]: Tasting fd0. GEOM_MIRROR[2]: Tasting ad4. GEOM_MIRROR[2]: Tasting ad6. GEOM_MIRROR[2]: Tasting ad4s1. magic: GEOM::MIRROR version: 1 name: gm0s1 mid: 4196295632 did: 3946315095 all: 2 syncid: 3 priority: 0 slice: 4096 balance: round-robin mediasize: 200046518272 sectorsize: 512 syncoffset: 0 mflags: NONE dflags: NONE hcprovider: MD5 hash: 4efc7c98de71a4d10b891fd4bc4e2c80 GEOM_MIRROR[1]: Creating device gm0s1 (id=4196295632). GEOM_MIRROR[0]: Device gm0s1 created (id=4196295632). GEOM_MIRROR[1]: Adding disk ad4s1 to gm0s1. GEOM_MIRROR[2]: Adding disk ad4s1. GEOM_MIRROR[2]: Disk ad4s1 connected. GEOM_MIRROR[1]: Disk ad4s1 state changed from NONE to NEW (device gm0s1). GEOM_MIRROR[0]: Device gm0s1: provider ad4s1 detected. GEOM_MIRROR[2]: Tasting ad6s1. magic: GEOM::MIRROR version: 1 name: gm0s1 mid: 4196295632 did: 3302562170 all: 2 syncid: 5 priority: 0 slice: 4096 balance: round-robin mediasize: 200046518272 sectorsize: 512 syncoffset: 0 mflags: NONE dflags: NONE hcprovider: MD5 hash: 9be4ddc54abbe5e0221f020517cac964 GEOM_MIRROR[1]: Adding disk ad6s1 to gm0s1. GEOM_MIRROR[2]: Adding disk ad6s1. GEOM_MIRROR[2]: Disk ad6s1 connected. GEOM_MIRROR[1]: Disk ad6s1 state changed from NONE to NEW (device gm0s1). GEOM_MIRROR[0]: Device gm0s1: provider ad6s1 detected. GEOM_MIRROR[1]: Device gm0s1 state changed from STARTING to RUNNING. GEOM_MIRROR[1]: Disk ad6s1 state changed from NEW to ACTIVE (device gm0s1). GEOM_MIRROR[2]: Access ad6s1 r0w1e1 = 0 GEOM_MIRROR[2]: Tasting ad4s1a. GEOM_MIRROR[2]: Access ad6s1 r0w-1e-1 = 0 GEOM_MIRROR[2]: Metadata on ad6s1 updated. GEOM_MIRROR[0]: Device gm0s1: provider ad6s1 activated. GEOM_MIRROR[1]: Disk ad4s1 state changed from NEW to SYNCHRONIZING (device gm0s1). GEOM_MIRROR[0]: Device gm0s1: provider mirror/gm0s1 launched. GEOM_MIRROR[0]: Device gm0s1: rebuilding provider ad4s1. GEOM_MIRROR[2]: Access ad4s1 r0w1e1 = 1 GEOM_MIRROR[1]: Disk ad4s1 state changed from SYNCHRONIZING to DISCONNECTED (device gm0s1). GEOM_MIRROR[0]: Device gm0s1: provider ad4s1 disconnected. GEOM_MIRROR[2]: Disk ad4s1 disconnected. GEOM_MIRROR[2]: Consumer ad4s1 destroyed. GEOM_MIRROR[2]: Tasting ad4s1c. GEOM_MIRROR[2]: Tasting ad4s1d. GEOM_MIRROR[2]: Tasting ad4s1e. GEOM_MIRROR[2]: Tasting ad4s1f. GEOM_MIRROR[2]: Tasting ad6s1a. GEOM_MIRROR[2]: Tasting ad6s1c. GEOM_MIRROR[2]: Tasting ad6s1d. GEOM_MIRROR[2]: Tasting ad6s1e. GEOM_MIRROR[2]: Tasting ad6s1f. GEOM_MIRROR[2]: Tasting ad6. GEOM_MIRROR[2]: Access request for mirror/gm0s1: r1w0e0. GEOM_MIRROR[2]: Access ad6s1 r1w0e1 = 0 GEOM_MIRROR[2]: Access request for mirror/gm0s1: r-1w0e0. GEOM_MIRROR[2]: Access ad6s1 r-1w0e-1 = 0 GEOM_MIRROR[2]: Access request for mirror/gm0s1: r1w0e0. GEOM_MIRROR[2]: Access ad6s1 r1w0e1 = 0 ----- The old kernel could be on ad4s1. I first wanted to solve the gmirror problem but when I could not I upgraded to 5.4-STABLE hoping that it could change the picture. What should I do now? Thank you in advance for your time! Jurgis From owner-freebsd-questions@FreeBSD.ORG Sun May 22 07:02:55 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8F9F16A41C for ; Sun, 22 May 2005 07:02:55 +0000 (GMT) (envelope-from khaled.abu@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D24D43D4C for ; Sun, 22 May 2005 07:02:55 +0000 (GMT) (envelope-from khaled.abu@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1607648wra for ; Sun, 22 May 2005 00:02:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jScm2ca3zuGlgFT/Da3/orPwlq79jtBDqvs2TX1eooxHc7ffCMrWYEQM2Gr64KXDK5o4ISaBbbc/iCqh04Bz6h/2f8eSdZeSTQ6WGFGzdIltKStZwuA/HCOQ4kBnjIOggYaNoXSUTQlf4DRs5IaPyX7+KrXdxiXkZ/eMC/h9pbo= Received: by 10.54.79.8 with SMTP id c8mr2021157wrb; Sun, 22 May 2005 00:02:53 -0700 (PDT) Received: by 10.54.66.16 with HTTP; Sun, 22 May 2005 00:02:53 -0700 (PDT) Message-ID: Date: Sun, 22 May 2005 10:02:53 +0300 From: Abu Khaled To: "Edwin D. Vinas" In-Reply-To: <36f5bbba050521234957edd87e@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <36f5bbba050521234957edd87e@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: no freebsd boot loader when re-installed another winXP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Abu Khaled List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 07:02:56 -0000 On 5/22/05, Edwin D. Vinas wrote: > hello everyone! > i have a running dual-boot (FreeBSD and WinXP) before but when I got > hijacked by a SpyWare, i decided to re-install or repair my WinXP. what > WinXP installer did is it didnt format the current Windows but rather it > added a new bootable WinXP. so now, when the machine boots, it doesnt loa= d > the FreeBSD boot loader but instead two WinXP Professional is being shown= . > How do I recover the FreeBSD boot loader? I can't see any F1, F2 or F3 wh= ich > allows me to choose which OS to boot. It seems the newly installed WinXP = has > removed the FreeBSD boot manager? Pls help me :-( > thank you in advance! > -edwin Check the FreeBSD website under FAQ -> Chapter 9 Disks, Filesystems, and Boot Loaders -> How can I use the Windows NT loader to boot FreeBSD? This helped me once to restore FreeBSD 4.7 after reinstalling W2K. Good Luck --=20 Kind regards Abu Khaled From owner-freebsd-questions@FreeBSD.ORG Sun May 22 07:10:18 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4446016A41C for ; Sun, 22 May 2005 07:10:18 +0000 (GMT) (envelope-from dan@nezlok.unixathome.org) Received: from nezlok.unixathome.org (nezlok.unixathome.org [66.154.97.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 186FD43D1D for ; Sun, 22 May 2005 07:10:18 +0000 (GMT) (envelope-from dan@nezlok.unixathome.org) Received: from localhost (localhost [127.0.0.1]) by nezlok.unixathome.org (Postfix) with ESMTP id BF4C158B2 for ; Sun, 22 May 2005 00:10:15 -0700 (PDT) Received: from nezlok.unixathome.org ([127.0.0.1]) by localhost (nezlok.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00645-07 for ; Sun, 22 May 2005 00:10:04 -0700 (PDT) Received: by nezlok.unixathome.org (Postfix, from userid 1000) id CA69258B3; Sun, 22 May 2005 00:10:02 -0700 (PDT) From: Dan Langille To: freebsd-questions@freebsd.org Message-Id: <20050522071002.CA69258B3@nezlok.unixathome.org> Date: Sun, 22 May 2005 00:10:02 -0700 (PDT) X-Virus-Scanned: by amavisd-new at unixathome.org Subject: The FreeBSD Diary: 2005-05-01 - 2005-05-21 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 07:10:18 -0000 The FreeBSD Diary contains a large number of practical examples and how-to guides. This message is posted weekly to freebsd-questions@freebsd.org with the aim of letting people know what's available on the website. Before you post a question here it might be a good idea to first search the mailing list archives and/or The FreeBSD Diary . -- Dan Langille BSDCan - http://www.BSDCan.org/ - BSD Conference From owner-freebsd-questions@FreeBSD.ORG Sun May 22 08:02:26 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAF1816A41C for ; Sun, 22 May 2005 08:02:26 +0000 (GMT) (envelope-from freebsd-questions@it-solutions.lv) Received: from mail.FastNet.lv (ip-235.36.home-lan.fastnet.lv [80.81.36.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id E54BD43D48 for ; Sun, 22 May 2005 08:02:23 +0000 (GMT) (envelope-from freebsd-questions@it-solutions.lv) Received: by mail.FastNet.lv (Postfix, from userid 106) id 74D5F45093; Sun, 22 May 2005 11:04:06 +0000 (UTC) Received: from [192.168.83.1] (unknown [83.223.128.62]) by mail.FastNet.lv (Postfix) with ESMTP id 5580A4506D; Sun, 22 May 2005 11:04:05 +0000 (UTC) Message-ID: <42903C8D.2040801@it-solutions.lv> Date: Sun, 22 May 2005 11:02:21 +0300 From: freebsd-questions User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: questions@freebsd.org References: <42902C97.8030601@it-solutions.lv> In-Reply-To: <42902C97.8030601@it-solutions.lv> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Daniel Gerzo Subject: Re: uname -a output does not change after kernel upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 08:02:27 -0000 I have fixed the problem. 1) Removed the first SATA disk (ad4) and booted from ad6. Then I got correct kernel and userland (5.4-STABLE) 2) Swapped SATA cables to boot from ad6 (it became ad4). --- # uname -a FreeBSD server.example.com 5.4-STABLE FreeBSD 5.4-STABLE #2: Sat May 21 18:45:32 EEST 2005 root@server.example.com:/usr/src/sys/i386/compile/SERVER i386 # gmirror list Geom name: gm0s1 State: DEGRADED Components: 2 Balance: round-robin Slice: 4096 Flags: NONE GenID: 0 SyncID: 8 ID: 4196295632 Providers: 1. Name: mirror/gm0s1 Mediasize: 200046518272 (186G) Sectorsize: 512 Mode: r5w4e1 Consumers: 1. Name: ad4s1 Mediasize: 200046518784 (186G) Sectorsize: 512 Mode: r1w1e1 State: ACTIVE Priority: 0 Flags: DIRTY GenID: 0 SyncID: 8 ID: 3302562170 2. Name: ad6s1 Mediasize: 200046518784 (186G) Sectorsize: 512 Mode: r1w1e1 State: SYNCHRONIZING Priority: 0 Flags: DIRTY, SYNCHRONIZING GenID: 0 SyncID: 8 Synchronized: 2% ID: 3946315095 # gmirror status Name Status Components mirror/gm0s1 DEGRADED ad4s1 ad6s1 (2%) --- Thank you for help! Jurgis freebsd-questions wrote: > Used the default email when sending this message > and therefore it did not reached questions@freebsd.org. > > -------- Original Message -------- > Subject: Re: uname -a output does not change after kernel upgrade > Date: Sun, 22 May 2005 00:08:45 +0300 > From: Jurgis <***@it-solutions.lv> > To: Daniel Gerzo > CC: questions@freebsd.org > References: <428F80CF.1020509@it-solutions.lv> > <216446879.20050521210609@rulez.sk> <428F9427.90402@it-solutions.lv> > <745032946.20050521223345@rulez.sk> > > > Daniel Gerzo wrote: > >>> How can I now which kernel is loaded? >> >> sysctl -a | grep kernel >> > > OK, I have new userland and old kernel. > Those command proves that. > > # sysctl -a | grep kernel > kern.bootfile: /boot/kernel/kernel > kern.module_path: /boot/kernel;/boot/modules > > # sysctl -a | grep kern.version > kern.version: FreeBSD 5.3-RELEASE #1: Fri Apr 29 23:04:18 EEST 2005 > >> >>> I remembered that I had created /boot.config file >>> with following content, but now when I checked it, >>> ir was not there. >> >> >> >>> --- cat /boot.config --- >>> 1:ad(6,a)/boot/loader >> >> >> >> this doesn't have anything with kernel config I think. >> actually, I know only one way how to implicitly set the kernel boot >> file. One can do so by adding line >> >> kernel="path/to/kernel" >> >> into /boot/loader.conf > > > I have to sata disks ad4 and ad6 and I created /boot.config to boot from > ad6 instedad of ad4. BTW I'm not quite sure about those parameters > in that string "1:ad(6,a)/boot/loader". > > >>> Is it better that I start new conversation with new Subject >>> and describe how I got all this mess? >> >> >> >> That's up to you. Personally I don't think it is needed. You should >> firstly try to build a new kernel AND install it. If you are using >> your own kernel config file, you should add KERNCONF=CONFIGNAME to the >> make (build|install)kernel command. > > > I have built and installed the new kernel. > I added KERNCONF=CONFIGNAME to /etc/make.conf. > > There is new kernel and modules in > # ls -la /boot/kernel/kernel > -r-xr-xr-x 1 root wheel 3328239 May 21 18:45 /boot/kernel/kernel > > Here is some file information and gmirror configuration: > > ----- > # df > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/mirror/gm0s1a 253734 54960 178476 24% / > devfs 1 1 0 100% /dev > /dev/mirror/gm0s1d 253678 58 233326 0% /tmp > /dev/mirror/gm0s1f 135891276 1911080 123108894 2% /usr > /dev/mirror/gm0s1e 50777034 63142 46651730 0% /var > > # gmirror list > Geom name: gm0s1 > State: DEGRADED > Components: 2 > Balance: round-robin > Slice: 4096 > Flags: NONE > SyncID: 5 > ID: 4196295632 > Providers: > 1. Name: mirror/gm0s1 > Mediasize: 200046518272 (186G) > Sectorsize: 512 > Mode: r4w4e1 > Consumers: > 1. Name: ad6s1 > Mediasize: 200046518784 (186G) > Sectorsize: 512 > Mode: r4w4e2 > State: ACTIVE > Priority: 0 > Flags: DIRTY > SyncID: 5 > ID: 3302562170 > > # gmirror status > Name Status Components > mirror/gm0s1 DEGRADED ad6s1 > > ----- > > --- And a bit from dmesg --- > ad4: 190782MB [387621/16/63] at ata2-master SATA150 > ad6: 190782MB [387621/16/63] at ata3-master SATA150 > GEOM_MIRROR[2]: Tasting fd0. > GEOM_MIRROR[2]: Tasting ad4. > GEOM_MIRROR[2]: Tasting ad6. > GEOM_MIRROR[2]: Tasting ad4s1. > magic: GEOM::MIRROR > version: 1 > name: gm0s1 > mid: 4196295632 > did: 3946315095 > all: 2 > syncid: 3 > priority: 0 > slice: 4096 > balance: round-robin > mediasize: 200046518272 > sectorsize: 512 > syncoffset: 0 > mflags: NONE > dflags: NONE > hcprovider: > MD5 hash: 4efc7c98de71a4d10b891fd4bc4e2c80 > GEOM_MIRROR[1]: Creating device gm0s1 (id=4196295632). > GEOM_MIRROR[0]: Device gm0s1 created (id=4196295632). > GEOM_MIRROR[1]: Adding disk ad4s1 to gm0s1. > GEOM_MIRROR[2]: Adding disk ad4s1. > GEOM_MIRROR[2]: Disk ad4s1 connected. > GEOM_MIRROR[1]: Disk ad4s1 state changed from NONE to NEW (device gm0s1). > GEOM_MIRROR[0]: Device gm0s1: provider ad4s1 detected. > GEOM_MIRROR[2]: Tasting ad6s1. > magic: GEOM::MIRROR > version: 1 > name: gm0s1 > mid: 4196295632 > did: 3302562170 > all: 2 > syncid: 5 > priority: 0 > slice: 4096 > balance: round-robin > mediasize: 200046518272 > sectorsize: 512 > syncoffset: 0 > mflags: NONE > dflags: NONE > hcprovider: > MD5 hash: 9be4ddc54abbe5e0221f020517cac964 > GEOM_MIRROR[1]: Adding disk ad6s1 to gm0s1. > GEOM_MIRROR[2]: Adding disk ad6s1. > GEOM_MIRROR[2]: Disk ad6s1 connected. > GEOM_MIRROR[1]: Disk ad6s1 state changed from NONE to NEW (device gm0s1). > GEOM_MIRROR[0]: Device gm0s1: provider ad6s1 detected. > GEOM_MIRROR[1]: Device gm0s1 state changed from STARTING to RUNNING. > GEOM_MIRROR[1]: Disk ad6s1 state changed from NEW to ACTIVE (device gm0s1). > GEOM_MIRROR[2]: Access ad6s1 r0w1e1 = 0 > GEOM_MIRROR[2]: Tasting ad4s1a. > GEOM_MIRROR[2]: Access ad6s1 r0w-1e-1 = 0 > GEOM_MIRROR[2]: Metadata on ad6s1 updated. > GEOM_MIRROR[0]: Device gm0s1: provider ad6s1 activated. > GEOM_MIRROR[1]: Disk ad4s1 state changed from NEW to SYNCHRONIZING > (device gm0s1). > GEOM_MIRROR[0]: Device gm0s1: provider mirror/gm0s1 launched. > GEOM_MIRROR[0]: Device gm0s1: rebuilding provider ad4s1. > GEOM_MIRROR[2]: Access ad4s1 r0w1e1 = 1 > GEOM_MIRROR[1]: Disk ad4s1 state changed from SYNCHRONIZING to > DISCONNECTED (device gm0s1). > GEOM_MIRROR[0]: Device gm0s1: provider ad4s1 disconnected. > GEOM_MIRROR[2]: Disk ad4s1 disconnected. > GEOM_MIRROR[2]: Consumer ad4s1 destroyed. > GEOM_MIRROR[2]: Tasting ad4s1c. > GEOM_MIRROR[2]: Tasting ad4s1d. > GEOM_MIRROR[2]: Tasting ad4s1e. > GEOM_MIRROR[2]: Tasting ad4s1f. > GEOM_MIRROR[2]: Tasting ad6s1a. > GEOM_MIRROR[2]: Tasting ad6s1c. > GEOM_MIRROR[2]: Tasting ad6s1d. > GEOM_MIRROR[2]: Tasting ad6s1e. > GEOM_MIRROR[2]: Tasting ad6s1f. > GEOM_MIRROR[2]: Tasting ad6. > GEOM_MIRROR[2]: Access request for mirror/gm0s1: r1w0e0. > GEOM_MIRROR[2]: Access ad6s1 r1w0e1 = 0 > GEOM_MIRROR[2]: Access request for mirror/gm0s1: r-1w0e0. > GEOM_MIRROR[2]: Access ad6s1 r-1w0e-1 = 0 > GEOM_MIRROR[2]: Access request for mirror/gm0s1: r1w0e0. > GEOM_MIRROR[2]: Access ad6s1 r1w0e1 = 0 > > ----- > > The old kernel could be on ad4s1. > > I first wanted to solve the gmirror problem but when I > could not I upgraded to 5.4-STABLE hoping that it > could change the picture. > > What should I do now? > > Thank you in advance for your time! > > Jurgis > > _______________________________________________ > 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 May 22 10:08:52 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4983A16A41C for ; Sun, 22 May 2005 10:08:52 +0000 (GMT) (envelope-from acheng@kettering.edu) Received: from mirapoint.kettering.edu (mirapoint.kettering.edu [192.138.137.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7F1943D1D for ; Sun, 22 May 2005 10:08:51 +0000 (GMT) (envelope-from acheng@kettering.edu) Received: from infinity.kettering.edu (infinity.kettering.edu [198.110.5.123]) by mirapoint.kettering.edu (MOS 3.5.5-GR) with ESMTP id CDH20155; Sun, 22 May 2005 06:08:50 -0400 (EDT) Received: from infinity.kettering.edu (localhost.kettering.edu [127.0.0.1]) by infinity.kettering.edu (8.12.11/8.11.6) with ESMTP id j4MA5ocJ056335 for ; Sun, 22 May 2005 06:05:50 -0400 (EDT) (envelope-from acheng@kettering.edu) Received: from localhost (acheng@localhost) by infinity.kettering.edu (8.12.11/8.12.6/Submit) with ESMTP id j4MA5o4P056332 for ; Sun, 22 May 2005 06:05:50 -0400 (EDT) X-Authentication-Warning: infinity.kettering.edu: acheng owned process doing -bs Date: Sun, 22 May 2005 06:05:50 -0400 (EDT) From: Ada Cheng To: freebsd-questions@freebsd.org Message-ID: <20050522054359.E56294@infinity.kettering.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Junkmail-Whitelist: YES (by domain whitelist at mirapoint.kettering.edu) Subject: Problems with both linux-vsound and vsound X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 10:08:52 -0000 Good morning, I just did a fresh install of FreeBSD 5.4 on my new pc. I have install linux-realplayer. All ports are up to date. I then install linux-vsound and tried to capture audio but resulted in the following error when I ran vsound -f test.wav realplay audiofile.rm : libexec/ld-elf.so.1: Shared object "libdl.so.2" not found, required by "libvsound.so" Missing file ./vsound7915.au. This means that the libvsound wrapper did not work correctlty. A possible reason is that the program you are trying to run is setuid. In this case you will need to run vsound as root. Attempting to run the command with root result in the same error. The shared object "libdl.so.2" is located in /usr/compat/linux/lib lrwxrwxrwx 1 root wheel 14B Apr 5 05:51 libdl.so.2 -> libdl-2.3.2.so I do have the path set included: setenv results with PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/usr/compat/linux/lib:/acheng/bin I tried desinstalling linux-vsound and install vsound instead. I ran the same command (vsound -f test.wav realplay audiofile.rm) and get the following error message: About to start the application. The output will not be available until the application exits. Bus error (core dumped) Missing file ./vsound9126.au. This means that the libvsound wrapper did not work correctlty. Here are some the possible reasons : - You are trying to record a stream (RTSP or PNM protocol) from the internet. You will need to use the --timing option. - The program you are trying to run is setuid. You will need to run vsound as root. - Vsound was not properly installed and hence won't work at all. I have tried it with the -t option but results in the same error. Any help will be greatly appreciated. Thanks. Ada From owner-freebsd-questions@FreeBSD.ORG Sun May 22 10:22:39 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B78216A41C for ; Sun, 22 May 2005 10:22:39 +0000 (GMT) (envelope-from gmawby@yahoo.com.au) Received: from smtp205.mail.sc5.yahoo.com (smtp205.mail.sc5.yahoo.com [216.136.129.95]) by mx1.FreeBSD.org (Postfix) with SMTP id E512443D1D for ; Sun, 22 May 2005 10:22:38 +0000 (GMT) (envelope-from gmawby@yahoo.com.au) Received: from unknown (HELO at64ajm1g3j5m3) (gmawby@60.240.6.101 with login) by smtp205.mail.sc5.yahoo.com with SMTP; 22 May 2005 10:22:37 -0000 From: "gmawby" To: Date: Sun, 22 May 2005 20:22:48 +1000 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcVeuCmrsPpjwGl/S9KzhTM4vFVoeQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Message-Id: <20050522102238.E512443D1D@mx1.FreeBSD.org> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: thumb drive not detected X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 10:22:39 -0000 Hello, I am running freebsd 5.3 RELEASE on an older machine with usb Sis OHCI root hub. This is detected during boot and the ohci drive is loaded. However, when I attach a USB thumb drive the device is not detected, there are no /dev entries created and no messages in the log. I've checked the rc.conf and it contains the line usbd_enable="YES" and I'm using the generic kernel so all the drivers are present. I've checked that usb is enabled in the BIOS and it is. As the machine is not networked (yet) I was hoping to use the usb key to get data on and off the machine. Has any one else experienced problems with usb OHCI and umass? . Any ideas? Thanks, Glenn, Australia. From owner-freebsd-questions@FreeBSD.ORG Sun May 22 10:23:37 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2448A16A41C for ; Sun, 22 May 2005 10:23:37 +0000 (GMT) (envelope-from norgaard@locolomo.org) Received: from top.daemonsecurity.com (FW-182-254.go.retevision.es [62.174.254.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DC3543D1F for ; Sun, 22 May 2005 10:23:32 +0000 (GMT) (envelope-from norgaard@locolomo.org) Received: from [192.168.0.32] (charm.daemonsecurity.com [192.168.0.32]) by top.daemonsecurity.com (Postfix) with ESMTP id 5213EFD06B for ; Sun, 22 May 2005 12:23:30 +0200 (CEST) Message-ID: <42905DA1.7000909@locolomo.org> Date: Sun, 22 May 2005 12:23:29 +0200 From: =?ISO-8859-1?Q?Erik_N=F8rgaard?= Organization: Locolomo.ORG User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050314 X-Accept-Language: en, en-us, en-gb, da, fr, de, it, es MIME-Version: 1.0 To: FreeBSD Questions Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Left mousebutton doesn't work X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 10:23:37 -0000 Hi, I have a peculiar problem with the mouse on my notebook: Using the notebooks own screen, everything works fine, but if I switch to an external monitor or projecter, the left mousebutton stops working. When I switch back, everything works fine againg. This problem is both with the built in touch pad and an external USB mouse. The Laptop is an Asus M2E, I am running FreeBSD -CURRENT and xorg: FreeBSD charm.daemonsecurity.com 6.0-CURRENT FreeBSD 6.0-CURRENT #1: Thu Apr 28 10:16:44 CEST 2005 norgaard@charm:/usr/obj/usr/src/sys/CURRENT i386 xorg 6.7.0,8 Any hints on how to debug, or better yet solve, this is appreciated. Thanks, Erik -- Ph: +34.666334818 web: http://www.locolomo.org S/MIME Certificate: http://www.locolomo.org/crt/2004071206.crt Subject ID: A9:76:7A:ED:06:95:2B:8D:48:97:CE:F2:3F:42:C8:F2:22:DE:4C:B9 Fingerprint: 4A:E8:63:38:46:F6:9A:5D:B4:DC:29:41:3F:62:D3:0A:73:25:67:C2 From owner-freebsd-questions@FreeBSD.ORG Sun May 22 10:42:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C306816A41C for ; Sun, 22 May 2005 10:42:49 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from mail.efacilitas.de (efacilitas.de [213.133.110.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65E5943D48 for ; Sun, 22 May 2005 10:42:48 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-61.dynamic.qsc.de [212.202.39.61]) by mail.efacilitas.de (Postfix) with ESMTP id 8D9431239BE; Sun, 22 May 2005 12:41:25 +0200 (CEST) Received: from localhost (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 5D42912B3C1; Sun, 22 May 2005 12:41:56 +0200 (CEST) Received: from eurystheus.local ([192.168.1.67]) by localhost (eurystheus.locaL [192.168.1.67]) (amavisd-new, port 10024) with ESMTP id 38575-09; Sun, 22 May 2005 12:41:52 +0200 (CEST) Received: from [192.168.1.67] (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id E528A12B3A6; Sun, 22 May 2005 12:41:51 +0200 (CEST) Message-ID: <429061EF.7030401@cs.tu-berlin.de> Date: Sun, 22 May 2005 12:41:51 +0200 From: Bjoern Koenig User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050517 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gmawby References: <20050522102238.E512443D1D@mx1.FreeBSD.org> In-Reply-To: <20050522102238.E512443D1D@mx1.FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at example.com Cc: freebsd-questions@freebsd.org Subject: Re: thumb drive not detected X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 10:42:49 -0000 Hello Show the output of 'usbdevs -v'. Björn From owner-freebsd-questions@FreeBSD.ORG Sun May 22 10:49:33 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EA2316A41C for ; Sun, 22 May 2005 10:49:33 +0000 (GMT) (envelope-from maarfree@xs4all.nl) Received: from smtp-vbr5.xs4all.nl (smtp-vbr5.xs4all.nl [194.109.24.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1039043D49 for ; Sun, 22 May 2005 10:49:32 +0000 (GMT) (envelope-from maarfree@xs4all.nl) Received: from maarten.sandersatkins.nl (a80-127-55-226.adsl.xs4all.nl [80.127.55.226]) by smtp-vbr5.xs4all.nl (8.12.11/8.12.11) with ESMTP id j4MAnVKY019743 for ; Sun, 22 May 2005 12:49:31 +0200 (CEST) (envelope-from maarfree@xs4all.nl) From: maarfree To: freebsd-questions@freebsd.org Content-Type: text/plain Date: Sun, 22 May 2005 12:49:30 +0200 Message-Id: <1116758970.17964.6.camel@maarten> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner Subject: PDC20378 or VT8237 raid X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 10:49:33 -0000 Hi, My motherboard MSI K8T NEO FISR has 2 raid controllers. Currently my setup is a striped array (RAID 0) with 2 SATA drivers connected to the Promise PDC20378. Now I understand the VIA controller is connected to the south bridge so has access to more bus bandwidth. Is this true? If so, san I just swap the drives from to the other connectors, configure the array and everything is fine again? Thanks, Maarten From owner-freebsd-questions@FreeBSD.ORG Sun May 22 10:51:54 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FA9316A41C for ; Sun, 22 May 2005 10:51:54 +0000 (GMT) (envelope-from tobias.fendin@telia.com) Received: from pne-smtpout2-sn1.fre.skanova.net (pne-smtpout2-sn1.fre.skanova.net [81.228.11.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E18643D53 for ; Sun, 22 May 2005 10:51:53 +0000 (GMT) (envelope-from tobias.fendin@telia.com) Received: from [192.168.1.6] (81.229.43.66) by pne-smtpout2-sn1.fre.skanova.net (7.1.026.7) (authenticated as u18317830) id 42687F20008012BB for freebsd-questions@freebsd.org; Sun, 22 May 2005 12:51:52 +0200 Message-ID: <42906448.5040909@telia.com> Date: Sun, 22 May 2005 12:51:52 +0200 From: Tobias Fendin User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050403) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <1116737790.700.2.camel@localhost> In-Reply-To: <1116737790.700.2.camel@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: procfs in 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 10:51:54 -0000 Chris Radlinski wrote: >I should have procfs. However, my /proc directory is empty. > >What gives? > > You have to mount it. Add this line to /etc/fstab: proc /proc procfs rw 0 0 And then run: mount /proc You might also check out the man-page: procfs(9) //Tobias From owner-freebsd-questions@FreeBSD.ORG Sun May 22 11:12:28 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8492716A41C for ; Sun, 22 May 2005 11:12:28 +0000 (GMT) (envelope-from estover@nativenerds.com) Received: from mail.nativenerds.com (host-70-0-111-24.midco.net [24.111.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2249943D55 for ; Sun, 22 May 2005 11:12:27 +0000 (GMT) (envelope-from estover@nativenerds.com) Received: from [192.168.1.89] (host-133-35-230-24.midco.net [24.230.35.133]) by mail.nativenerds.com (8.12.11/8.12.11) with ESMTP id j4MBR3oL046175; Sun, 22 May 2005 05:27:04 -0600 (MDT) (envelope-from estover@nativenerds.com) Message-ID: <42906996.1090905@nativenerds.com> Date: Sun, 22 May 2005 05:14:30 -0600 From: Ed Stover Organization: Native Nerds User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050503) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alex Zbyslaw References: <200505181556.44648.kirk@strauser.com> <200505182311.25158@harrymail> <428C5E35.50101@nativenerds.com> <428C91D6.8030203@dial.pipex.com> In-Reply-To: <428C91D6.8030203@dial.pipex.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mail.nativenerds.com Cc: freebsd-questions@freebsd.org Subject: Re: illegal user root user failed login attempts X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: estover@nativenerds.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 11:12:28 -0000 Alex Zbyslaw wrote: > Ed Stover wrote: > >> One of my personal favorite things to do is: >> move ssh to port 1001 >> >> > Is there a reason behind choosing port 1001? <1024; not registered to > anything else useful; reasonably memorable? Well as long as you dont have a service allready running on what ever the port number is. Sure choose a number that you feel is a nice one. > Are there any other useful > criteria I've missed? > Not that I can think of. Let me know if you need any thing else. > Thanks, > > --Alex From owner-freebsd-questions@FreeBSD.ORG Sun May 22 11:17:51 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB4F416A41C for ; Sun, 22 May 2005 11:17:51 +0000 (GMT) (envelope-from fteg@london.com) Received: from webmail-outgoing.us4.outblaze.com (webmail-outgoing.us4.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id A648743D1D for ; Sun, 22 May 2005 11:17:51 +0000 (GMT) (envelope-from fteg@london.com) Received: from unknown (unknown [192.168.9.180]) by webmail-outgoing.us4.outblaze.com (Postfix) with QMQP id 57151180013E for ; Sun, 22 May 2005 11:17:51 +0000 (GMT) X-OB-Received: from unknown (205.158.62.182) by wfilter.us4.outblaze.com; 22 May 2005 11:17:51 -0000 Received: by ws1-6.us4.outblaze.com (Postfix, from userid 1001) id 4E9721CE303; Sun, 22 May 2005 11:17:51 +0000 (GMT) Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 2.117 (F2.6; A1.17; B2.12; Q2.03) Received: from [213.187.181.70] by ws1-6.us4.outblaze.com with http for fteg@london.com; Sun, 22 May 2005 06:17:51 -0500 X-Mailer: mail.com webmail From: "Fafa Hafiz Krantz" To: questions@freebsd.org Date: Sun, 22 May 2005 06:17:51 -0500 X-Originating-Ip: 213.187.181.70 X-Originating-Server: ws1-6.us4.outblaze.com Message-Id: <20050522111751.4E9721CE303@ws1-6.us4.outblaze.com> Cc: Subject: Please help me booooot! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 11:17:52 -0000 hey! i have two s-ata harddrives on this computer: ad6, with FreeBSD 5.4-STABLE and ad4, with Windows XP when i boot either ad6 or ad4 alone, everything is cool. when i plug both ad4 and ad6 into, i am brought to the freebsd bootloader. however, half-way down the boot i get: Mounting root from ufs:/dev/ad6s1a setrootbyname failed ffs_mountroot: can't find rootvp Root mount failed: 6 when i switch ad6's cable over to ad4 and vice versa, my computer doesn't boot past its bios at all. what's wrong here? i just need to mount ad4 so i can back up some stuff, that's all. thank you so much! -- Fafa Hafiz Krantz Research Designer @ http://www.home.no/barbershop Enlightened @ http://www.home.no/barbershop/smart/sharon.pdf --=20 ___________________________________________________________ Sign-up for Ads Free at Mail.com http://promo.mail.com/adsfreejump.htm From owner-freebsd-questions@FreeBSD.ORG Sun May 22 01:33:06 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBDED16A41C for ; Sun, 22 May 2005 01:33:05 +0000 (GMT) (envelope-from paul.klatt@sbcglobal.net) Received: from smtp813.mail.sc5.yahoo.com (smtp813.mail.sc5.yahoo.com [66.163.170.83]) by mx1.FreeBSD.org (Postfix) with SMTP id BA61543D48 for ; Sun, 22 May 2005 01:33:05 +0000 (GMT) (envelope-from paul.klatt@sbcglobal.net) Received: from unknown (HELO adsl-68-23-37-225.dsl.chcgil.ameritech.net) (paul.klatt@sbcglobal.net@68.23.37.225 with plain) by smtp813.mail.sc5.yahoo.com with SMTP; 22 May 2005 01:33:05 -0000 From: paul klatt To: freebsd-questions@freebsd.org User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <199901031322.31239.paul.klatt@sbcglobal.net> X-Mailman-Approved-At: Sun, 22 May 2005 12:19:04 +0000 Subject: sal setup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Sun, 22 May 2005 01:33:06 -0000 X-Original-Date: Sun, 3 Jan 1999 13:22:31 +0000 X-List-Received-Date: Sun, 22 May 2005 01:33:06 -0000 coudl anyone please tellme how to setup dsl in freebsd I would appreciate the help From owner-freebsd-questions@FreeBSD.ORG Sun May 22 06:03:58 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B9E516A446 for ; Sun, 22 May 2005 06:03:57 +0000 (GMT) (envelope-from terry.bogdon1@bogdonology.com) Received: from imf22aec.mail.bellsouth.net (imf22aec.mail.bellsouth.net [205.152.59.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EF0B43DF7 for ; Sun, 22 May 2005 05:34:39 +0000 (GMT) (envelope-from terry.bogdon1@bogdonology.com) Received: from ibm67aec.bellsouth.net ([216.78.200.241]) by imf22aec.mail.bellsouth.net (InterMail vM.5.01.06.11 201-253-122-130-111-20040605) with ESMTP id <20050522053439.OFMO2059.imf22aec.mail.bellsouth.net@ibm67aec.bellsouth.net> for ; Sun, 22 May 2005 01:34:39 -0400 Received: from BogdonTechnologies ([216.78.200.241]) by ibm67aec.bellsouth.net (InterMail vG.1.02.00.01 201-2136-104-101-20040929) with ESMTP id <20050522053434.UQMN8829.ibm67aec.bellsouth.net@BogdonTechnologies> for ; Sun, 22 May 2005 01:34:34 -0400 From: "Terry Bogdon" To: Date: Sun, 22 May 2005 01:34:42 -0400 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 thread-index: AcVej/QHXHHh6GDmT8Wa6pljAsmbZA== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 Message-Id: <20050522053434.UQMN8829.ibm67aec.bellsouth.net@BogdonTechnologies> X-Mailman-Approved-At: Sun, 22 May 2005 12:20:21 +0000 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: info X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 06:03:58 -0000 I was wondering what I would have to do in order to resell freebsd. I would be more than happy to donate some of the proceeds towards freebsd. Terry L. Bogdon III Bogdon Technologies TEL: 502-753-9585 FAX: (866) 456-4684 t erry.bogdon1@bogdonology.com http://www.bogdonology.com From owner-freebsd-questions@FreeBSD.ORG Sun May 22 12:33:12 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8281C16A41C for ; Sun, 22 May 2005 12:33:12 +0000 (GMT) (envelope-from vdm.fbsd@virgilio.it) Received: from vsmtp14.tin.it (vsmtp14.tin.it [212.216.176.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30BFE43D54 for ; Sun, 22 May 2005 12:33:11 +0000 (GMT) (envelope-from vdm.fbsd@virgilio.it) Received: from [192.168.10.8] (62.211.199.99) by vsmtp14.tin.it (7.0.027) id 4280DBA2004BFF4D for freebsd-questions@freebsd.org; Sun, 22 May 2005 14:33:10 +0200 From: Vittorio De Martino To: freebsd-questions@freebsd.org Date: Sun, 22 May 2005 14:32:50 +0200 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505221432.50797.vdm.fbsd@virgilio.it> Subject: cyrus-sasl2 error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 12:33:12 -0000 Updating the everything in my 5.4 installation, during "portupgrade -arR" the system stops because cannot find a file ('cyrus-sasl-2.1.20_1'): ........................................................... ===> Registering installation for kdelibs-3.4.0_4 ===> SECURITY REPORT: This port has installed the following binaries which execute with increased privileges. /usr/local/bin/kpac_dhcp_helper /usr/local/bin/fileshareset /usr/local/bin/kgrantpty ............ ===> Cleaning for xorg-libraries-6.8.2 ===> Cleaning for xterm-202 ===> Cleaning for kdelibs-3.4.0_4 ---> Cleaning out obsolete shared libraries [Updating the pkgdb in /var/db/pkg ... - 233 packages found (-0 +1) . done] ---> Skipping 'deskutils/kdepim3' (kdepim-3.4.0) because a requisite package 'cyrus-sasl-2.1.20_1' (security/cyrus-sasl2) failed (specify -k to force) ---> Skipping 'x11/kdebase3' (kdebase-3.4.0_1) because a requisite package 'cyrus-sasl-2.1.20_1' (security/cyrus-sasl2) failed (specify -k to force) ---> Skipping 'misc/kdeutils3' (kdeutils-3.4.0) because a requisite package 'kdebase-3.4.0_1' (x11/kdebase3) failed (specify -k to force) ---> Skipping 'x11-themes/kdeartwork3' (kdeartwork-3.4.0) because a requisite package 'kdebase-3.4.0_1' (x11/kdebase3) failed (specify -k to force) ---> Skipping 'x11/kde-lite' (kde-lite-3.4.0) because a requisite package 'kdepim-3.4.0' (deskutils/kdepim3) failed (specify -k to force) ** Listing the failed packages (*:skipped / !:failed) ! security/cyrus-sasl2 (cyrus-sasl-2.1.20_1) (fetch error) ! x11-servers/xorg-server (xorg-server-6.8.2_1) (fetch error) * x11/xorg (xorg-6.8.2) * deskutils/kdepim3 (kdepim-3.4.0) * x11/kdebase3 (kdebase-3.4.0_1) * misc/kdeutils3 (kdeutils-3.4.0) * x11-themes/kdeartwork3 (kdeartwork-3.4.0) * x11/kde-lite (kde-lite-3.4.0) ---> Packages processed: 10 done, 214 ignored, 6 skipped and 2 failed What should I do? Vittorio From owner-freebsd-questions@FreeBSD.ORG Sun May 22 12:40:13 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5906116A41C for ; Sun, 22 May 2005 12:40:13 +0000 (GMT) (envelope-from Qiang.Xu@fujixerox.com) Received: from mx2.fujixerox.co.jp (mx2.fujixerox.co.jp [192.26.96.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8D6143D1D for ; Sun, 22 May 2005 12:40:12 +0000 (GMT) (envelope-from Qiang.Xu@fujixerox.com) Received: from isvw2.fujixerox.co.jp ([129.249.27.132]) by mx2.fujixerox.co.jp (8.11.6p2a/3.7W) with ESMTP id j4MCeAm17517; Sun, 22 May 2005 21:40:10 +0900 (JST) Received: from ms1.fujixerox.co.jp (isvw2 [129.249.27.132]) by isvw2.fujixerox.co.jp (8.11.6p2a/3.7W) with ESMTP id j4MCe1s04814; Sun, 22 May 2005 21:40:01 +0900 (JST) Received: from sgpaphq-smtp02.fujixerox.com ([13.198.8.74]) by ms1.fujixerox.co.jp (8.11.6p2a/3.7W) with ESMTP id j4MCe8a02003; Sun, 22 May 2005 21:40:08 +0900 (JST) Received: from 10.198.8.10 by sgpaphq-smtp01.fujixerox.com with ESMTP id 51690911116753452; Sun, 22 May 2005 17:17:32 +0800 Received: from imss.sgp.fujixerox.com (localhost [127.0.0.1]) by localhost.sgp.fujixerox.com (Postfix) with ESMTP id 3BE481D93C; Sun, 22 May 2005 17:10:48 +0800 (SGT) Received: from sess.xssc.sgp.xerox.com (unknown [13.198.33.122]) by imss.sgp.fujixerox.com (Postfix) with ESMTP id 14D051D8FF; Sun, 22 May 2005 17:10:48 +0800 (SGT) From: Xu Qiang To: Alex Zbyslaw Date: Sun, 22 May 2005 17:20:26 +0800 X-Sent-Folder-Path: Sent Items X-Mailer: Oracle Connector for Outlook 9.0.4 60130 (9.0.2711) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Message-Id: <20050522091048.14D051D8FF@imss.sgp.fujixerox.com> Cc: freebsd-questions Subject: RE: The availability of socketbits.h? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 12:40:13 -0000 Alex wrote: > info gcc > = > Move down the screen using the arrow key to the line "* Invoking > GCC::" = > and press return. The problem is: I can't find the line "* Invoking GCC::" after moving the c= urson down the "info gcc" screen with the arrow key. :( Sorry for my newbieness. = > Move down the screen using the arrow key to the line "* C Dialect > Options::" and press return. > = > Move down the screen with arrow key or "Page Down" and there it is. > = > Typing "h" at any point gives you help, but that's very long winded. > = > Typing ? shows key bindings in a split window. Finish with this > window = > by typing ^X0 (control-X then a 0 (zero)). > = > There's also an emacs mode. I don't know if there is a proper X > interface of any kind. Regards, Xu Qiang From owner-freebsd-questions@FreeBSD.ORG Sun May 22 12:45:05 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E94916A41C for ; Sun, 22 May 2005 12:45:05 +0000 (GMT) (envelope-from john.destefano@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2643C43D1D for ; Sun, 22 May 2005 12:45:04 +0000 (GMT) (envelope-from john.destefano@gmail.com) Received: by rproxy.gmail.com with SMTP id i8so688125rne for ; Sun, 22 May 2005 05:45:04 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=gRpzF4pFrV3TIQGyINagUwl0i8FnChf8VkvASMuSza4243oq6ZoMagBPaHj44W4qvUBAH6mmmSDlsUd/uS9W+eHX5DO3h0CcN63bIJDnoKJRdYm7SAlIKFgHLDw5nnok65PnDgnJrCkHkTGFG4/MBbG63evSk3bP84yPR16EDEo= Received: by 10.38.14.25 with SMTP id 25mr2665616rnn; Sun, 22 May 2005 05:45:04 -0700 (PDT) Received: by 10.38.97.1 with HTTP; Sun, 22 May 2005 05:45:04 -0700 (PDT) Message-ID: Date: Sun, 22 May 2005 08:45:04 -0400 From: John DeStefano To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John DeStefano List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 12:45:05 -0000 I have broached this subject before, also searched the archives & web for a solution, but no real, clear answer for those who are not already gurus in the subject. I've had light-to-moderate records of attempted SSH break-ins to my system in the past. Over the past week, I have had daily security records ranging in size from 10kb-120kb in size (the average for a "clean" record with no break-in activity is 2kb), with different IPs and ranges bein used, which leads me to believe multiple "kiddies" (or perhaps more sophisticated attackers) are somehow sniffing out my system and honing in for repeasted attacks. Would someone mind briefly talking about securing FBSD systems from such attacks, at least in a manner that's a bit more extensive and detailed than just saying "use Snort"? I'm not a newbie to FBSD, but I'm not a *NIX guru either. I'd really appreciate your help. Thanks, John From owner-freebsd-questions@FreeBSD.ORG Sun May 22 13:22:59 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADB7D16A41C for ; Sun, 22 May 2005 13:22:59 +0000 (GMT) (envelope-from spamrefuse@yahoo.com) Received: from web54001.mail.yahoo.com (web54001.mail.yahoo.com [206.190.36.225]) by mx1.FreeBSD.org (Postfix) with SMTP id 3D0CF43D49 for ; Sun, 22 May 2005 13:22:59 +0000 (GMT) (envelope-from spamrefuse@yahoo.com) Received: (qmail 97846 invoked by uid 60001); 22 May 2005 13:22:58 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=ZMaU3gzW2eEqKrmErSROepNJC7QsjghPy4Ix9jZaKjV0HdfE143AIKL2Dyz0LuhbJaUuUHaaZC6Q20B7S/CzlncGFrRHP39f/d9arpFoBMIH7IMJbjA80reaqqHJTW2oJrZQlbGYzT8Dz/5QNyV3cbCw2UdJyI8PXpBth0VUWtU= ; Message-ID: <20050522132258.97844.qmail@web54001.mail.yahoo.com> Received: from [147.46.44.181] by web54001.mail.yahoo.com via HTTP; Sun, 22 May 2005 06:22:58 PDT Date: Sun, 22 May 2005 06:22:58 -0700 (PDT) From: Rob To: john.destefano@gmail.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: FreeBSD questions Subject: Re: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 13:22:59 -0000 John DeStefano wrote: > > Would someone mind briefly talking about securing > FBSD systems from such attacks, at least in a manner > that's a bit more extensive and Let sshd also listen on another port and use a firewall. My firewall permits default port 22 connections only from IP the more or less trusted local university network. The firewall requires that everybody else connects to the other sshd port. I managed to get rid of these attacks this way. Rob. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Sun May 22 13:37:28 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96BA616A41C for ; Sun, 22 May 2005 13:37:28 +0000 (GMT) (envelope-from albi@scii.nl) Received: from mail.eyfa.org (eyfa.demon.nl [212.238.155.89]) by mx1.FreeBSD.org (Postfix) with ESMTP id 419F843D48 for ; Sun, 22 May 2005 13:37:27 +0000 (GMT) (envelope-from albi@scii.nl) Received: from mail.eyfa.org (unknown [192.168.1.47]) by mail.eyfa.org (Postfix) with ESMTP id 8F4E83D1D6D; Sun, 22 May 2005 15:38:15 +0200 (CEST) Received: by mail.eyfa.org (Postfix, from userid 80) id 5BCFA3D1D0E; Sun, 22 May 2005 15:38:15 +0200 (CEST) Received: from 82.197.199.160 (SquirrelMail authenticated user albi) by mail.eyfa.org with HTTP; Sun, 22 May 2005 15:38:15 +0200 (CEST) Message-ID: <32933.82.197.199.160.1116769095.squirrel@mail.eyfa.org> In-Reply-To: References: Date: Sun, 22 May 2005 15:38:15 +0200 (CEST) From: "albi" To: "John DeStefano" User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-AV-Checked: ClamAV using ClamSMTP Cc: freebsd-questions@freebsd.org Subject: Re: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 13:37:28 -0000 > Would someone mind briefly talking about securing FBSD systems from > such attacks, at least in a manner that's a bit more extensive and > detailed than just saying "use Snort"? I'm not a newbie to FBSD, but > I'm not a *NIX guru either. I'd really appreciate your help. my approach is to use AllowUsers in the sshd_config, and since quite a while i'm using sudo to do "root-tasks", and having a disabled root-passwd entry From owner-freebsd-questions@FreeBSD.ORG Sun May 22 13:40:57 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBA1516A41C; Sun, 22 May 2005 13:40:57 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from ganymede.hub.org (blk-224-176-51.eastlink.ca [24.224.176.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 749AE43D1D; Sun, 22 May 2005 13:40:57 +0000 (GMT) (envelope-from scrappy@hub.org) Received: by ganymede.hub.org (Postfix, from userid 1000) id 2D78938C3A; Sun, 22 May 2005 10:40:51 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id 2649D382A6; Sun, 22 May 2005 10:40:51 -0300 (ADT) Date: Sun, 22 May 2005 10:40:50 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-questions@freebsd.org Message-ID: <20050522101434.W61528@ganymede.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable@freebsd.org Subject: [4.11-STABLE] sporatic directory corruption with unionfs ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 13:40:57 -0000 I have 6 servers in place right now, with the 6th being a brand new Intel 1U box, using a 3Ware 9500 controller to do RAID5 for 3xSATA drives ... yesterday, for the first time, I've started to get a sort of file system corruption that I've never seen before ... basically, it looks like the directory entries are getting corrupted, but the files themselves are fine ... Basically, I have a jail, with /usr in the jail being a unionfs from a template ... so: mount_union -b /template/usr /jail/usr in the template, there is a directory /usr/local/cyrus/bin, for instance ... the binaries under /usr/local/cyrus/bin are literally disappearing, as if someone were entring that directory and doing a 'rm' of those files ... I have a serial console attached to this server, and there are no errors being reported by the operating system ... tw_cli is showing that drives and unit are both functioning properly ... so I can find no reasons for the apparent "corruption" ... I just brought the server down to single user mode, and umounted everything so that I could do an fsck on the file system itself, and *its* checking as being clean ... its still running though, so there may be something at the end ... When I first noticed this, yesterday, the server had been running 11 days, and nothing in /var/log/messages to indicate a problem ... today, after <24hrs, its done it again, and again, no errors being generated anywhere to indicate a problem ... All the other 5 servers are running SCSI ... but unless there is a bug in the 9500 driver, I can't see it being hardware related ... I've kinda always expected something like this might happen with unionfs as a result of the server crashing, but not when its running fine ... I don't know what else to add to this, unfortunately, since neither the hardware, or the operating system, seem to want to give anything up :( The OS is from April 11th, so is relatively recent ... Any suggestions/ideas on what else to look at would be much appreciated ... Thank you ... ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email: scrappy@hub.org Yahoo!: yscrappy ICQ: 7615664 From owner-freebsd-questions@FreeBSD.ORG Sun May 22 13:55:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A164116A479 for ; Sun, 22 May 2005 13:55:49 +0000 (GMT) (envelope-from freebsd-listen@fabiankeil.de) Received: from smtprelay03.ispgateway.de (smtprelay03.ispgateway.de [80.67.18.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAC2D43D54 for ; Sun, 22 May 2005 13:55:48 +0000 (GMT) (envelope-from freebsd-listen@fabiankeil.de) Received: (qmail 23228 invoked from network); 22 May 2005 13:55:47 -0000 Received: from unknown (HELO localhost) ([pbs]775067@[83.129.24.30]) (envelope-sender ) by smtprelay03.ispgateway.de (qmail-ldap-1.03) with SMTP for ; 22 May 2005 13:55:47 -0000 Date: Sun, 22 May 2005 15:55:40 +0200 From: Fabian Keil To: "Edwin D. Vinas" Message-ID: <20050522155540.28e52c33@localhost> In-Reply-To: <36f5bbba050521234957edd87e@mail.gmail.com> References: <36f5bbba050521234957edd87e@mail.gmail.com> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Signature_Sun__22_May_2005_15_55_40_+0200_YxSV+MiPRi2pxba/"; protocol="application/pgp-signature"; micalg=pgp-sha1 Cc: freebsd-questions@freebsd.org Subject: Re: no freebsd boot loader when re-installed another winXP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 13:55:50 -0000 --Signature_Sun__22_May_2005_15_55_40_+0200_YxSV+MiPRi2pxba/ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable "Edwin D. Vinas" wrote: > i have a running dual-boot (FreeBSD and WinXP) before but when I got=20 > hijacked by a SpyWare, i decided to re-install or repair my WinXP. what=20 > WinXP installer did is it didnt format the current Windows but rather it= =20 > added a new bootable WinXP. so now, when the machine boots, it doesnt loa= d=20 > the FreeBSD boot loader but instead two WinXP Professional is being shown= .=20 > How do I recover the FreeBSD boot loader? I can't see any F1, F2 or F3 wh= ich=20 > allows me to choose which OS to boot. It seems the newly installed WinXP = has=20 > removed the FreeBSD boot manager? Boot FreeBSD from CD and use sysinstall or boot0cfg. Fabian --=20 http://www.fabiankeil.de/ --Signature_Sun__22_May_2005_15_55_40_+0200_YxSV+MiPRi2pxba/ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCkI9kbmGO+3DrZ9sRAhTwAJ9RBrrjzUZYSq8EymqvMkGv+8iEoACgnIrc VUOnwNlfkEZswZW1qc57+R0= =NlAf -----END PGP SIGNATURE----- --Signature_Sun__22_May_2005_15_55_40_+0200_YxSV+MiPRi2pxba/-- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 14:05:37 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3274D16A41C for ; Sun, 22 May 2005 14:05:37 +0000 (GMT) (envelope-from racerx@makeworld.com) Received: from makeworld.com (makeworld.com [216.201.118.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0D2E43D49 for ; Sun, 22 May 2005 14:05:36 +0000 (GMT) (envelope-from racerx@makeworld.com) Received: from localhost (localhost.com [127.0.0.1]) by makeworld.com (Postfix) with ESMTP id 1B84C60E4; Sun, 22 May 2005 09:05:36 -0500 (CDT) Received: from makeworld.com ([127.0.0.1]) by localhost (makeworld.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 60043-08; Sun, 22 May 2005 09:05:33 -0500 (CDT) Received: from [216.201.118.138] (racerx.makeworld.com [216.201.118.138]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by makeworld.com (Postfix) with ESMTP id C678760D8; Sun, 22 May 2005 09:05:27 -0500 (CDT) Message-ID: <42909205.5060203@makeworld.com> Date: Sun, 22 May 2005 09:07:01 -0500 From: Chris User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050414) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Fafa Hafiz Krantz References: <20050522111751.4E9721CE303@ws1-6.us4.outblaze.com> In-Reply-To: <20050522111751.4E9721CE303@ws1-6.us4.outblaze.com> X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by ClamAV 0.75.1/amavisd-new-2.3.0 (20050424) at makeworld.com - Isn't it ironic Cc: questions@freebsd.org Subject: Re: Please help me booooot! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: racerx@makeworld.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 14:05:37 -0000 Fafa Hafiz Krantz wrote: > hey! Dot, dot, dot > when i switch ad6's cable over to ad4 and vice versa, my computer > doesn't boot past its bios at all. what's wrong here? i just need to > mount ad4 so i can back up some stuff, that's all. thank you so much! First and formost - pick up a good A+ book. Learn why drives boot in a certain order, learn about boot sectors. Learn why drives on seperate controllers work the way they do. That's the problem with youngsters these days - most have no idea about the basics of PC's. Why they work the way they do. I won't even speak of the old DOS days and using fdisk... Tsk, tsk, tsk ... Next - read the handbook on dual booting, then - search the list archives. It's been covered more time then you might expect. However, it does take a little work on your part to find the answer. -- Best regards, Chris How long a minute is depends on which side of the bathroom door you're on. From owner-freebsd-questions@FreeBSD.ORG Sun May 22 14:53:03 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76A1D16A41C for ; Sun, 22 May 2005 14:53:03 +0000 (GMT) (envelope-from 0011@hush.com) Received: from smtp3.hushmail.com (smtp3.hushmail.com [65.39.178.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EAB643D1F for ; Sun, 22 May 2005 14:53:03 +0000 (GMT) (envelope-from 0011@hush.com) Received: from smtp3.hushmail.com (localhost.hushmail.com [127.0.0.1]) by smtp3.hushmail.com (Postfix) with SMTP id D7AFCA336E for ; Sun, 22 May 2005 07:53:01 -0700 (PDT) Received: from mailserver5.hushmail.com (mailserver5.hushmail.com [65.39.178.19]) by smtp3.hushmail.com (Postfix) with ESMTP for ; Sun, 22 May 2005 07:53:00 -0700 (PDT) Received: by mailserver5.hushmail.com (Postfix, from userid 65534) id 99A703702D; Sun, 22 May 2005 07:53:00 -0700 (PDT) Date: Sun, 22 May 2005 07:52:57 -0700 To: From: <0011@hush.com> Message-Id: <20050522145300.99A703702D@mailserver5.hushmail.com> Cc: Subject: installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 14:53:03 -0000 I cant seem to figure out how to install fsbd. The boot loader process seems to start out fine, after running through all my hardware and detecting it all it hangs on mounting root from ufs and the computer locks up. I also tried installing it on my laptop however the laptop shuts down almost as soon as it detects the disk. SO far it seems like a nightmare OS to me. Do you have any suggestions. I have read all the help files online, submitted my questions to forums and searched through the book that my CD came with but i havn't had any luck finding answers. I have that freebsd book by Brian Tiemann 2nd edition with the freebsd 5.0 CD. Thanks corey Concerned about your privacy? Follow this link to get secure FREE email: http://www.hushmail.com/?l=2 Free, ultra-private instant messaging with Hush Messenger http://www.hushmail.com/services-messenger?l=434 Promote security and make money with the Hushmail Affiliate Program: http://www.hushmail.com/about-affiliate?l=427 From owner-freebsd-questions@FreeBSD.ORG Sun May 22 15:16:55 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9598616A41C for ; Sun, 22 May 2005 15:16:55 +0000 (GMT) (envelope-from acheng@kettering.edu) Received: from mirapoint.kettering.edu (mirapoint.kettering.edu [192.138.137.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FD0343D1D for ; Sun, 22 May 2005 15:16:55 +0000 (GMT) (envelope-from acheng@kettering.edu) Received: from infinity.kettering.edu (infinity.kettering.edu [198.110.5.123]) by mirapoint.kettering.edu (MOS 3.5.5-GR) with ESMTP id CDH25440; Sun, 22 May 2005 11:16:53 -0400 (EDT) Received: from infinity.kettering.edu (localhost.kettering.edu [127.0.0.1]) by infinity.kettering.edu (8.12.11/8.11.6) with ESMTP id j4MFDqjM057063 for ; Sun, 22 May 2005 11:13:53 -0400 (EDT) (envelope-from acheng@kettering.edu) Received: from localhost (acheng@localhost) by infinity.kettering.edu (8.12.11/8.12.6/Submit) with ESMTP id j4MFDqWf057060 for ; Sun, 22 May 2005 11:13:52 -0400 (EDT) X-Authentication-Warning: infinity.kettering.edu: acheng owned process doing -bs Date: Sun, 22 May 2005 11:13:52 -0400 (EDT) From: Ada Cheng To: freebsd-questions@freebsd.org In-Reply-To: <20050522054359.E56294@infinity.kettering.edu> Message-ID: <20050522111319.X57051@infinity.kettering.edu> References: <20050522054359.E56294@infinity.kettering.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Junkmail-Whitelist: YES (by domain whitelist at mirapoint.kettering.edu) Subject: Re: Problems with both linux-vsound and vsound [fixed] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 15:16:55 -0000 I have fixed the problem with LD_LIBRARY_PATH .... Ada From owner-freebsd-questions@FreeBSD.ORG Sun May 22 15:31:47 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC50916A41C for ; Sun, 22 May 2005 15:31:47 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr10.xs4all.nl (smtp-vbr10.xs4all.nl [194.109.24.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4305943D53 for ; Sun, 22 May 2005 15:31:46 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr10.xs4all.nl (8.12.11/8.12.11) with ESMTP id j4MFVgPv002740; Sun, 22 May 2005 17:31:43 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 3D884634D; Sun, 22 May 2005 17:31:42 +0200 (CEST) Date: Sun, 22 May 2005 17:31:42 +0200 From: Roland Smith To: 0011@hush.com Message-ID: <20050522153142.GB61686@slackbox.xs4all.nl> Mail-Followup-To: 0011@hush.com, freebsd-questions@freebsd.org References: <20050522145300.99A703702D@mailserver5.hushmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Y7xTucakfITjPcLV" Content-Disposition: inline In-Reply-To: <20050522145300.99A703702D@mailserver5.hushmail.com> User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 15:31:48 -0000 --Y7xTucakfITjPcLV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 22, 2005 at 07:52:57AM -0700, 0011@hush.com wrote: > with but i havn't had any luck finding answers. I have that freebsd=20 > book by Brian Tiemann 2nd edition with the freebsd 5.0 CD.=20 The 5.0 release is pretty old. Try the latest stable release 5.4 first. If that doesn't work try to post as much specific information as possible. Roland --=20 R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain text. public key: http://www.xs4all.nl/~rsmith/pubkey.txt --Y7xTucakfITjPcLV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkKXeEnfvsMMhpyURAlJyAKCN/91CNrDdaZzrumNM2dZn3v3jbgCdH32L HV5Ur1VAJhGoADqz6G+a/uE= =VVL8 -----END PGP SIGNATURE----- --Y7xTucakfITjPcLV-- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 15:35:55 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 954E016A41F for ; Sun, 22 May 2005 15:35:55 +0000 (GMT) (envelope-from freebsd-listen@fabiankeil.de) Received: from smtprelay03.ispgateway.de (smtprelay03.ispgateway.de [80.67.18.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id A141743D58 for ; Sun, 22 May 2005 15:35:54 +0000 (GMT) (envelope-from freebsd-listen@fabiankeil.de) Received: (qmail 14219 invoked from network); 22 May 2005 15:35:53 -0000 Received: from unknown (HELO localhost) ([pbs]775067@[83.129.24.30]) (envelope-sender ) by smtprelay03.ispgateway.de (qmail-ldap-1.03) with SMTP for <0011@hush.com>; 22 May 2005 15:35:53 -0000 Date: Sun, 22 May 2005 17:35:39 +0200 From: Fabian Keil To: <0011@hush.com> Message-ID: <20050522173539.035955a4@localhost> In-Reply-To: <20050522145300.99A703702D@mailserver5.hushmail.com> References: <20050522145300.99A703702D@mailserver5.hushmail.com> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Signature_Sun__22_May_2005_17_35_39_+0200_RqzmAfR5.EGhS51I; protocol="application/pgp-signature"; micalg=pgp-sha1 Cc: freebsd-questions@FreeBSD.org Subject: Re: installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 15:35:55 -0000 --Signature_Sun__22_May_2005_17_35_39_+0200_RqzmAfR5.EGhS51I Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable <0011@hush.com> wrote: > I cant seem to figure out how to install fsbd. The boot loader=20 > process seems to start out fine, after running through all my=20 > hardware and detecting it all it hangs on mounting root from ufs=20 > and the computer locks up. I also tried installing it on my laptop=20 > however the laptop shuts down almost as soon as it detects the=20 > disk. SO far it seems like a nightmare OS to me. Do you have any=20 > suggestions. I have read all the help files online, submitted my=20 > questions to forums and searched through the book that my CD came=20 > with but i havn't had any luck finding answers. I have that freebsd=20 > book by Brian Tiemann 2nd edition with the freebsd 5.0 CD.=20 Did you check if the disc is OK? I'd get 5.4 and try again. There are lots of improvements, you don't want to miss. Fabian --=20 http://www.fabiankeil.de/ --Signature_Sun__22_May_2005_17_35_39_+0200_RqzmAfR5.EGhS51I Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCkKbabmGO+3DrZ9sRAt+UAJ45aOHeyrbu/BQmnHY/th2kbx3ZwwCfe6r7 fTjBVNyDKZbOSjzMrgmo/bg= =Ek3o -----END PGP SIGNATURE----- --Signature_Sun__22_May_2005_17_35_39_+0200_RqzmAfR5.EGhS51I-- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 15:46:14 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCE9F16A423 for ; Sun, 22 May 2005 15:46:14 +0000 (GMT) (envelope-from vizion@vizion.occoxmail.com) Received: from lakecmmtao05.coxmail.com (lakecmmtao05.coxmail.com [68.99.120.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAF5643D55 for ; Sun, 22 May 2005 15:46:13 +0000 (GMT) (envelope-from vizion@vizion.occoxmail.com) Received: from dns1 ([64.58.171.82]) by lakecmmtao05.coxmail.com (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20050522154614.UVYO7226.lakecmmtao05.coxmail.com@dns1> for ; Sun, 22 May 2005 11:46:14 -0400 From: Vizion To: freebsd-questions@freebsd.org Date: Sun, 22 May 2005 08:41:33 -0700 User-Agent: KMail/1.8 References: <1116737790.700.2.camel@localhost> In-Reply-To: <1116737790.700.2.camel@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505220841.33483.vizion@vizion.occoxmail.com> Subject: Re: procfs in 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 15:46:14 -0000 On Saturday 21 May 2005 21:56, the author Chris Radlinski contributed to the dialogue on procfs in 5.4: & I'm running 5.4 Release. Whenever I run 'ps -ef' I get this message: & & ps: Process environment requires procfs(5) & & My kernel config contains these two lines: & & options PROCFS # Process filesystem (requires & PSEUDOFS) & options PSEUDOFS # Pseudo-filesystem framework & & I should have procfs. However, my /proc directory is empty. & & What gives? This can be accomplished by adding the following line to your /etc/fstab file: linprocfs /compat/linux/proc linprocfs rw 0 0 and then, as root, executing the commands: kldload linprocfs mount /compat/linux/proc -- 40 yrs navigating and computing in blue waters. English Owner & Captain of British Registered 60' bluewater Ketch S/V Taurus. Currently in San Diego, CA. Sailing May bound for Europe via Panama Canal. From owner-freebsd-questions@FreeBSD.ORG Sun May 22 15:46:29 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 113FF16A420 for ; Sun, 22 May 2005 15:46:29 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr10.xs4all.nl (smtp-vbr10.xs4all.nl [194.109.24.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2539443D53 for ; Sun, 22 May 2005 15:46:27 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr10.xs4all.nl (8.12.11/8.12.11) with ESMTP id j4MFkQH7006692; Sun, 22 May 2005 17:46:26 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id B11A6634D; Sun, 22 May 2005 17:46:26 +0200 (CEST) Date: Sun, 22 May 2005 17:46:26 +0200 From: Roland Smith To: paul klatt Message-ID: <20050522154626.GC61686@slackbox.xs4all.nl> Mail-Followup-To: paul klatt , freebsd-questions@freebsd.org References: <199901031322.31239.paul.klatt@sbcglobal.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="w7PDEPdKQumQfZlR" Content-Disposition: inline In-Reply-To: <199901031322.31239.paul.klatt@sbcglobal.net> User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: sal setup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 15:46:29 -0000 --w7PDEPdKQumQfZlR Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 03, 1999 at 01:22:31PM +0000, paul klatt wrote: > coudl anyone please tellme how to setup dsl in freebsd I would > appreciate the help You'll have to give the group some more information for us to be able to help you. If you have a dsl router which is connected to your computer by an ethernet cable, there are basically only have to make the IP addresses for your computer and the ISP's DNS servers known. You can do that by either 1) set the computers IP address in /etc/rc.conf and the nameservers IP-addresses in /etc/resolv.conf or 2) use dhclient to get IP addresses etc. from the router. See =A7 23.5 of the Handbook. If you have to set up an pppoe connection, see =A7 21.5 of the Handbook. Roland --=20 R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain text. public key: http://www.xs4all.nl/~rsmith/pubkey.txt --w7PDEPdKQumQfZlR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkKlSEnfvsMMhpyURAkThAJ92np9zEZuFitEpnIzRHp2O+fx5NACeMrju pMhLwMdCl8zeWhmNuspcb1c= =ycaY -----END PGP SIGNATURE----- --w7PDEPdKQumQfZlR-- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 16:01:16 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5954816A41C for ; Sun, 22 May 2005 16:01:16 +0000 (GMT) (envelope-from vizion@vizion.occoxmail.com) Received: from lakecmmtao05.coxmail.com (lakecmmtao05.coxmail.com [68.99.120.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4CAB43D48 for ; Sun, 22 May 2005 16:01:15 +0000 (GMT) (envelope-from vizion@vizion.occoxmail.com) Received: from dns1 ([64.58.171.82]) by lakecmmtao05.coxmail.com (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20050522160116.VMPB7226.lakecmmtao05.coxmail.com@dns1> for ; Sun, 22 May 2005 12:01:16 -0400 From: Vizion To: freebsd-questions@freebsd.org Date: Sun, 22 May 2005 08:56:34 -0700 User-Agent: KMail/1.8 References: <200505200619.41798.vizion@vizion.occoxmail.com> <20050521104245.GA27958@voi.aagh.net> In-Reply-To: <20050521104245.GA27958@voi.aagh.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505220856.34867.vizion@vizion.occoxmail.com> Subject: Re: FreeBSD 5.3 Boot issues - reposted X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 16:01:16 -0000 On Saturday 21 May 2005 03:42, the author Thomas Hurst contributed to the dialogue on Re: FreeBSD 5.3 Boot issues - reposted: & * Vizion (vizion@vizion.occoxmail.com) wrote: & & > This system has been built in a mini ATX case and has a Proxim Harmony & > 802.11a Model 8150 PCI card on (I am on a boat - then intention is to & > be able to disconnect it from the ships network, lug it to a position & > in range of a wireless network and do a portupgrade as the need arises & > ). Is this card recognized by freebsd. Is there a suitable & > driver? How do I set it up? & & Looks like it's based on the Prism2 chipset, which should be supported & by the wi(4) driver (man wi). kldload if_wi and see if it's detected, & and follow the examples in the driver manpage to set it up. Aha -- actually I found it is based on the Atheros chips BUT is configured on the pci card to be recognized as fw!!! anyway your input made me get the card out and I now have it working.. Thanks David -- 40 yrs navigating and computing in blue waters. English Owner & Captain of British Registered 60' bluewater Ketch S/V Taurus. Currently in San Diego, CA. Sailing May bound for Europe via Panama Canal. From owner-freebsd-questions@FreeBSD.ORG Sun May 22 16:23:40 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96A6516A41C for ; Sun, 22 May 2005 16:23:40 +0000 (GMT) (envelope-from radlinskic@acm.org) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79E1543D49 for ; Sun, 22 May 2005 16:23:40 +0000 (GMT) (envelope-from radlinskic@acm.org) Received: from [192.168.1.100] (c-24-118-13-177.hsd1.mn.comcast.net[24.118.13.177]) by comcast.net (rwcrmhc12) with SMTP id <2005052216233901400srho2e>; Sun, 22 May 2005 16:23:39 +0000 From: Chris Radlinski To: FreeBSD-Questions Content-Type: text/plain Date: Sun, 22 May 2005 11:23:39 -0500 Message-Id: <1116779019.686.3.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.2.1.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Subject: Re: procfs in 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 16:23:40 -0000 That fixed it. Thanks. Chris Tobias Fendin wrote: You have to mount it. Add this line to /etc/fstab: proc /proc procfs rw 0 0 And then run: mount /proc You might also check out the man-page: procfs(9) //Tobias From owner-freebsd-questions@FreeBSD.ORG Sun May 22 16:26:18 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 054E416A41C for ; Sun, 22 May 2005 16:26:18 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF30843D49 for ; Sun, 22 May 2005 16:26:17 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4MGQ3Bx027294; Sun, 22 May 2005 11:26:04 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4MGQ3Oa027291; Sun, 22 May 2005 11:26:03 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Sun, 22 May 2005 11:26:03 -0500 (CDT) From: Tony Shadwick To: Terry Bogdon In-Reply-To: <20050522053434.UQMN8829.ibm67aec.bellsouth.net@BogdonTechnologies> Message-ID: <20050522112416.L47072@mail.goinet.com> References: <20050522053434.UQMN8829.ibm67aec.bellsouth.net@BogdonTechnologies> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org Subject: Re: info X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 16:26:18 -0000 So far as I'm aware, you don't have to do anything. A good gesture would be to get some FreeBSD case stickers from FreeBSD Mall and put them on the machines you sell. You could also purchase official release cd's from FreeBSD mall and distribute those with the machines you build. Otherwise, if you're just wanting to sell the software, there's no requirement for you to do anything. Just understand that there's no requirement for them to pay anything to get it either. It's free for everyone. Tony On Sun, 22 May 2005, Terry Bogdon wrote: > I was wondering what I would have to do in order to resell freebsd. I would > be more than happy to donate some of the proceeds towards freebsd. > > > > Terry L. Bogdon III > > Bogdon Technologies > > TEL: 502-753-9585 > > FAX: (866) 456-4684 > > t erry.bogdon1@bogdonology.com > > http://www.bogdonology.com > > > > _______________________________________________ > 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 May 22 18:27:23 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26A5116A41C for ; Sun, 22 May 2005 18:27:23 +0000 (GMT) (envelope-from dennyboy@cableone.net) Received: from S2.cableone.net (smtp2.cableone.net [24.116.0.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id D175D43D1F for ; Sun, 22 May 2005 18:27:22 +0000 (GMT) (envelope-from dennyboy@cableone.net) Received: from dualman.cableone.net (unverified [24.119.190.179]) by S2.cableone.net (CableOne SMTP Service S2) with ESMTP id 20850385 for ; Sun, 22 May 2005 12:00:40 -0700 Date: Sun, 22 May 2005 13:27:09 -0500 (CDT) From: Denny White To: freebsd-questions@freebsd.org Message-ID: <20050521235214.V566@dualman.cableone.net> X-GPG-PUBLIC_KEY: http://wwwkeys.nl.pgp.net X-GPG-FINGERPRINT: D0A9 AD44 1F10 E09E OE67 EC25 CB44 F2E5 1644 E79A MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-IP-stats: Incoming Last 1, First 6, in=27, out=0, spam=0 X-External-IP: 24.119.190.179 X-Abuse-Info: Send abuse complaints to abuse@cableone.net Subject: pcnfsd question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 18:27:23 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Been running Xlink's Omni-Lite NFS Client on a windows box running XP, trying to use NFS exported mounts on an old HP LC II dual-processor Pentium 300. Everything on the old server is working great. Running FreeBSD 5.4 Release. I didn't put the dmesg in here, but if someone needs it to look over the problem, can stick it in on a repost. Getting the following message from /var/log/messages & wondering if I've set something wrong, or if it's just a glitch. Tried searching the archives & googling, but didn't really come up with anything that could help me much. The exports work to the windows box, although it's slow as hell. And, regardless of what settings I tried to tweak on the windows firewall, I still had to finally take it down completely before I could connect to the exported mounts. Probably the nature of the windows beast. So, just trying to get some light on shed on this message directly below here: (getting this in /var/log/messages) May 21 23:41:54 dualman inetd[504]: /etc/inetd.conf: bad wait/nowait for service p Here are as many of the settings as I could think of to put in here for reference: (this setting in /etc/inetd.conf -- also tried it using tcp here & client) pcnfsd/1-2 dgram rpc/udp wait root /usr/local/libexec/rpc.pcnfsd rpc.pcnfsd (from kernel configuration) options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server options NFS_ROOT # NFS usable as /, requires NFSCLIENT (/etc/exports) /home/theuser -maproot=0 192.168.1.100 /mnt/theuser -maproot=0 192.168.1.100 (output of sockstat 4l) USER COMMAND PID FD PROTO LOCAL ADDRESS FOREIGN ADDRESS root inetd 504 5 udp4 *:55779 *:* root sendmail 430 4 tcp4 127.0.0.1:25 *:* root sshd 424 4 tcp4 *:22 *:* root lpd 391 7 tcp4 *:515 *:* root nfsd 353 3 tcp4 *:2049 *:* root mountd 351 4 udp4 *:759 *:* root mountd 351 5 tcp4 *:822 *:* root rpcbind 284 9 udp4 *:111 *:* root rpcbind 284 10 udp4 *:753 *:* root rpcbind 284 11 tcp4 *:111 *:* root syslogd 267 6 udp4 *:514 *:* I guess it goes without saying, I could use samba, which I have before on other boxes, but I just wanted to see if I could get nfs working half way reliably to a windows box. =================================== Unix is like a wigwam. No gates, no windows, and an apache inside. =================================== -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkM8Hy0Ty5RZE55oRAhwgAJ9uyyw7ADI2v8FVROplyUNK46l6LQCfeP58 1wNRTxv/KnpENNDDCqal7+Y= =i2HM -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 18:33:36 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B78FF16A41C for ; Sun, 22 May 2005 18:33:36 +0000 (GMT) (envelope-from rperry@gti.net) Received: from apollo.gti.net (apollo.gti.net [199.171.27.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76C7343D53 for ; Sun, 22 May 2005 18:33:36 +0000 (GMT) (envelope-from rperry@gti.net) Received: from zulu.my.domain (ts6m-pool0-118.gti.net [208.216.115.118]) by apollo.gti.net (mail) with ESMTP id 84A2635CD7 for ; Sun, 22 May 2005 14:28:16 -0400 (EDT) From: Bob Perry To: freebsd-questions@freebsd.org Date: Sun, 22 May 2005 14:29:58 -0400 User-Agent: KMail/1.7.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505221429.58567.rperry@gti.net> Subject: Confused with Refuse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 18:33:36 -0000 About to synch up the entire source tree with RELENG_5_4_0_RELEASE. Earlier I created a refuse file, (/var/db/sup/refuse), when I upgraded my doc and ports collection in 5.3 but remember reading somewhere that a refuse file was not necessarily recommended when updating an entire source tree. Is that still the case? Bob Perry From owner-freebsd-questions@FreeBSD.ORG Sun May 22 18:45:15 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3400D16A41C for ; Sun, 22 May 2005 18:45:15 +0000 (GMT) (envelope-from forrie@forrie.com) Received: from forrie.com (forrie.hsd1.ma.comcast.net [24.147.45.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id C65C243D1D for ; Sun, 22 May 2005 18:45:14 +0000 (GMT) (envelope-from forrie@forrie.com) Received: from [192.168.1.99] (i-99.forrie.net. [192.168.1.99]) (authenticated bits=0) by forrie.com with ESMTP id j4MIj9SY073023 for ; Sun, 22 May 2005 14:45:09 -0400 (EDT) (envelope-from forrie@forrie.com) Message-ID: <4290D2B9.8060307@forrie.com> Date: Sun, 22 May 2005 14:43:05 -0400 From: Forrest Aldrich User-Agent: Mozilla Thunderbird 1.0.4 (Windows/20050516) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-RAVMilter-Version: 8.3.0(snapshot 20010925) (forrie.hsd1.ma.comcast.net) X-MailScanner-LocalNet: Found to be clean Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: dhclient on FreeBSD-4.10 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 18:45:15 -0000 I'm having a problem with dhclient on FreeBSD-4.10, where I can't seem to get it to work properly. My ISP uses DHCP (Comcast), and I want to use my own "named" instance, opting to forward to theirs. According to the dhclient.conf manpage, I should be able to do either of these: interface "fxp0" { prepend domain-name-servers 192.168.1.1; } # supersede domain-name-servers 127.0.0.1; # supersede domain-name-servers 192.168.1.1; And I've tried both, they do not work. So, either I'm doing something wrong (very likely) or I've run across a bug. Thanks. From owner-freebsd-questions@FreeBSD.ORG Sun May 22 19:09:41 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB42216A427 for ; Sun, 22 May 2005 19:09:41 +0000 (GMT) (envelope-from dennyboy@cableone.net) Received: from S1.cableone.net (smtp1.cableone.net [24.116.0.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0C5943D1D for ; Sun, 22 May 2005 19:09:41 +0000 (GMT) (envelope-from dennyboy@cableone.net) Received: from dualman.cableone.net (unverified [24.119.190.179]) by S1.cableone.net (CableOne SMTP Service S1) with ESMTP id 20789647 for multiple; Sun, 22 May 2005 12:10:03 -0700 Date: Sun, 22 May 2005 14:09:30 -0500 (CDT) From: Denny White To: 0011@hush.com In-Reply-To: <20050522145300.99A703702D@mailserver5.hushmail.com> Message-ID: <20050522135513.I2819@dualman.cableone.net> References: <20050522145300.99A703702D@mailserver5.hushmail.com> X-GPG-PUBLIC_KEY: http://wwwkeys.nl.pgp.net X-GPG-FINGERPRINT: D0A9 AD44 1F10 E09E OE67 EC25 CB44 F2E5 1644 E79A MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-IP-stats: Incoming Last 2, First 17, in=30, out=0, spam=0 X-External-IP: 24.119.190.179 X-Abuse-Info: Send abuse complaints to abuse@cableone.net Cc: freebsd-questions@freebsd.org Subject: Re: installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 19:09:42 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I'm not a guru or anything near it. Still, in the past, I ran into the same problem as you with cd's that came with books. With me, at least, they have proven to be very unreliable. If you have a fast internet connection, you could download a stable iso, burn it & go from there. Or, and better for the project, you can go to: http://www.freebsd.org/where.html and buy a current cd. I don't know & don't have time to look right now, which vendors donate a portion of their proceeds to the FreeBSD project, but you can look. If they do, that's who I'd buy the cd from. =================================== Unix is like a wigwam. No gates, no windows, and an apache inside. =================================== On Sun, 22 May 2005 0011@hush.com wrote: > I cant seem to figure out how to install fsbd. The boot loader > process seems to start out fine, after running through all my > hardware and detecting it all it hangs on mounting root from ufs > and the computer locks up. I also tried installing it on my laptop > however the laptop shuts down almost as soon as it detects the > disk. SO far it seems like a nightmare OS to me. Do you have any > suggestions. I have read all the help files online, submitted my > questions to forums and searched through the book that my CD came > with but i havn't had any luck finding answers. I have that freebsd > book by Brian Tiemann 2nd edition with the freebsd 5.0 CD. > Thanks > corey > > > > Concerned about your privacy? Follow this link to get > secure FREE email: http://www.hushmail.com/?l=2 > > Free, ultra-private instant messaging with Hush Messenger > http://www.hushmail.com/services-messenger?l=434 > > Promote security and make money with the Hushmail Affiliate Program: > http://www.hushmail.com/about-affiliate?l=427 > > _______________________________________________ > 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" > -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkNjyy0Ty5RZE55oRAhOzAJwOPWFP1ljAaDzCz9OsXoXMzbTphwCgx+X8 KVaQk251hmD+36Sjx2kc7ZE= =ADhX -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 19:19:14 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7DE016A41C for ; Sun, 22 May 2005 19:19:14 +0000 (GMT) (envelope-from dkelly@Grumpy.DynDNS.org) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with SMTP id 66F3643D1D for ; Sun, 22 May 2005 19:19:12 +0000 (GMT) (envelope-from dkelly@Grumpy.DynDNS.org) Received: (qmail 25142 invoked by uid 0); 22 May 2005 19:19:10 -0000 Received: from user-69-73-60-132.knology.net (HELO Grumpy.DynDNS.org) (69.73.60.132) by smtp2.knology.net with SMTP; 22 May 2005 19:19:10 -0000 Received: by Grumpy.DynDNS.org (Postfix, from userid 928) id 08B2D6844; Sun, 22 May 2005 14:18:55 -0500 (CDT) Date: Sun, 22 May 2005 14:18:55 -0500 From: David Kelly To: Forrest Aldrich Message-ID: <20050522191855.GA6647@Grumpy.DynDNS.org> References: <4290D2B9.8060307@forrie.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4290D2B9.8060307@forrie.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: dhclient on FreeBSD-4.10 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 19:19:15 -0000 On Sun, May 22, 2005 at 02:43:05PM -0400, Forrest Aldrich wrote: > I'm having a problem with dhclient on FreeBSD-4.10, where I can't seem > to get it to work properly. Just what are you doing to test? I suggest killing dhclient and starting it manually, "killall dhclient; /sbin/dhclient fxp0" Then look at the contents of /etc/resolv.conf to see if its written the way you expect. If so then dhclient is working and named is not. The way you stated the problem it isn't clear as to whether you have evidence whether dhclient is not working or named. > My ISP uses DHCP (Comcast), and I want to use my own "named" instance, > opting to forward to theirs. According to the dhclient.conf manpage, I > should be able to do either of these: > > interface "fxp0" { > prepend domain-name-servers 192.168.1.1; > } > > # supersede domain-name-servers 127.0.0.1; > # supersede domain-name-servers 192.168.1.1; > > > And I've tried both, they do not work. This works for me. Could use prepend rather than supersede on domain-name-servers and retian a fall-back failsafe direct to one's ISP. interface "fxp0" { supersede domain-name "home.local"; supersede domain-name-servers 127.0.0.1; } The result of the above is: % cat /etc/resolv.conf search home.local nameserver 127.0.0.1 % -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-questions@FreeBSD.ORG Sun May 22 19:25:23 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E74116A41C for ; Sun, 22 May 2005 19:25:23 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB76943D54 for ; Sun, 22 May 2005 19:25:22 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 33D23515D1; Sun, 22 May 2005 12:26:10 -0700 (PDT) Date: Sun, 22 May 2005 12:26:10 -0700 From: Kris Kennaway To: Chris Radlinski Message-ID: <20050522192610.GB6717@xor.obsecurity.org> References: <1116737790.700.2.camel@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qcHopEYAB45HaUaB" Content-Disposition: inline In-Reply-To: <1116737790.700.2.camel@localhost> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: procfs in 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 19:25:23 -0000 --qcHopEYAB45HaUaB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, May 21, 2005 at 11:56:30PM -0500, Chris Radlinski wrote: > I'm running 5.4 Release. Whenever I run 'ps -ef' I get this message: >=20 > ps: Process environment requires procfs(5) >=20 > My kernel config contains these two lines: >=20 > options PROCFS # Process filesystem (requires > PSEUDOFS) > options PSEUDOFS # Pseudo-filesystem framework >=20 > I should have procfs. However, my /proc directory is empty. >=20 > What gives? Did you *mount* procfs in that directory? See the manpage. Kris =20 --qcHopEYAB45HaUaB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkNzRWry0BWjoQKURAsZCAKCwuKI8MzXZYZeTcIY7NfQhI7JBCACgxnzi xphBwAnhj53WbaTSuuq42rE= =Vs/I -----END PGP SIGNATURE----- --qcHopEYAB45HaUaB-- From owner-freebsd-questions@FreeBSD.ORG Sun May 22 20:13:20 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF4E916A41C for ; Sun, 22 May 2005 20:13:20 +0000 (GMT) (envelope-from jbell@stelesys.com) Received: from stelesys.com (web1.stelesys.com [63.175.100.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 761D643D1F for ; Sun, 22 May 2005 20:13:20 +0000 (GMT) (envelope-from jbell@stelesys.com) Received: from [127.0.0.1] (helo=www.stelesys.com) by stelesys.com with esmtpa (Exim 4.51 (FreeBSD)) id 1DZwp5-000AKf-9c; Sun, 22 May 2005 16:13:19 -0400 Received: from 24.99.220.144 (SquirrelMail authenticated user jbell@stelesys.com); by www.stelesys.com with HTTP; Sun, 22 May 2005 16:13:19 -0400 (EDT) Message-ID: <1368.24.99.220.144.1116792799.squirrel@24.99.220.144> In-Reply-To: References: Date: Sun, 22 May 2005 16:13:19 -0400 (EDT) From: "Jerry Bell" To: "John DeStefano" User-Agent: SquirrelMail/1.4.3a X-Mailer: SquirrelMail/1.4.3a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-questions@freebsd.org Subject: Re: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 20:13:20 -0000 These attacks are almost exclusively automated, looking to install a script to launch spam runs from. They're essentially trying common username and weak password combinations - blank password, passwords the same as the user name, abc123, etc. There are four things you can do to improve the secutiy of sshd: 1. Move sshd to listen on a different port. This will not protect against a concerted attack, though. 2. Check for weak passwords. John the ripper can help out with that. pam_passwdqc(8) can help you enforce strong passwords. 3. Integrate an automated log monitoring system that looks for *successful* logins, since those are really what you're worried about anyway. This can be difficult to manage if you have a log of regular shell users. 4. Keep up-to-date with security patches and advisories. Attacking your system through password guessing is much harder than using a vulnerability in sshd or some other service. I have a security guide for FreeBSD at: http://www.syslog.org/Content-5-4.phtml Jerry http://www.syslog.org > Would someone mind briefly talking about securing FBSD systems from > such attacks, at least in a manner that's a bit more extensive and > detailed than just saying "use Snort"? I'm not a newbie to FBSD, but > I'm not a *NIX guru either. I'd really appreciate your help. From owner-freebsd-questions@FreeBSD.ORG Sun May 22 20:42:37 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7227116A41C for ; Sun, 22 May 2005 20:42:37 +0000 (GMT) (envelope-from racerx@makeworld.com) Received: from makeworld.com (makeworld.com [216.201.118.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA12E43D54 for ; Sun, 22 May 2005 20:42:36 +0000 (GMT) (envelope-from racerx@makeworld.com) Received: from localhost (localhost.com [127.0.0.1]) by makeworld.com (Postfix) with ESMTP id 0C4CE60E4; Sun, 22 May 2005 15:42:36 -0500 (CDT) Received: from makeworld.com ([127.0.0.1]) by localhost (makeworld.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 62379-04; Sun, 22 May 2005 15:42:31 -0500 (CDT) Received: from [216.201.118.138] (racerx.makeworld.com [216.201.118.138]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by makeworld.com (Postfix) with ESMTP id BBAD360D8; Sun, 22 May 2005 15:42:28 -0500 (CDT) Message-ID: <4290EEB4.9070502@makeworld.com> Date: Sun, 22 May 2005 15:42:28 -0500 From: Chris User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050414) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jerry Bell References: <1368.24.99.220.144.1116792799.squirrel@24.99.220.144> In-Reply-To: <1368.24.99.220.144.1116792799.squirrel@24.99.220.144> X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by ClamAV 0.75.1/amavisd-new-2.3.0 (20050424) at makeworld.com - Isn't it ironic Cc: John DeStefano , freebsd-questions@freebsd.org Subject: Re: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: racerx@makeworld.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 20:42:37 -0000 Jerry Bell wrote: > These attacks are almost exclusively automated, looking to install a > script to launch spam runs from. They're essentially trying common > username and weak password combinations - blank password, passwords the > same as the user name, abc123, etc. There are four things you can do to > improve the secutiy of sshd: > 1. Move sshd to listen on a different port. This will not protect against > a concerted attack, though. > 2. Check for weak passwords. John the ripper can help out with that. > pam_passwdqc(8) can help you enforce strong passwords. > 3. Integrate an automated log monitoring system that looks for > *successful* logins, since those are really what you're worried about > anyway. This can be difficult to manage if you have a log of regular > shell users. > 4. Keep up-to-date with security patches and advisories. Attacking your > system through password guessing is much harder than using a vulnerability > in sshd or some other service. > > I have a security guide for FreeBSD at: > http://www.syslog.org/Content-5-4.phtml 5. (and my favorite) If running IPFW, use something like this if you don't need ssh open to the whole of the internet. narrow it down to a range of IP's you need. IE: # Allow in SFTP, SSH, and SCP from only certain public IP's ${fwcmd} add 090 pass log tcp from xxx.xxx.xxx.xxx/29 to ${ip} 22 setup limit src-addr 4 What this does is allows up to 4 connects via ssh on port 22 from a specified address range (or IP or class). -- Best regards, Chris If an idea can survive a bureacratic review and be implemented, it wasn't worth doing. From owner-freebsd-questions@FreeBSD.ORG Sun May 22 23:11:02 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA3AC16A41C for ; Sun, 22 May 2005 23:11:02 +0000 (GMT) (envelope-from chrcoluk@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 747E143D53 for ; Sun, 22 May 2005 23:11:02 +0000 (GMT) (envelope-from chrcoluk@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so777641rng for ; Sun, 22 May 2005 16:10:58 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VTntm9fRurJc8v3Y/khekKwznyj92n41EpIlBw0qQRf7O5sKiDVJiz1FNh7BJVlYY89tMbKnUdjRxPDHUknqmdVEQtyBXqxb9AE+fkK9BYbkQxRGSb9Z1XJtjE4L07bCWmVPy7ge2eRcj9C9XSdwwlBoaaKMVKqa+FK/y3wyq6g= Received: by 10.38.24.41 with SMTP id 41mr2891092rnx; Sun, 22 May 2005 16:10:58 -0700 (PDT) Received: by 10.39.1.30 with HTTP; Sun, 22 May 2005 16:10:58 -0700 (PDT) Message-ID: <3aaaa3a050522161026e267be@mail.gmail.com> Date: Mon, 23 May 2005 00:10:58 +0100 From: Chris To: tshadwick@goinet.com, chrcoluk@gmail.com, freebsd-questions@freebsd.org In-Reply-To: <000001c55e3b$840c30c0$144da8c0@rtxnetworks.local> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20050517144200.T26182@mail.goinet.com> <3aaaa3a05052005436414e0a3@mail.gmail.com> <20050521110951.GB27958@voi.aagh.net> <20050521111200.Q11826@mail.goinet.com> <000001c55e3b$840c30c0$144da8c0@rtxnetworks.local> Cc: Subject: Re: portaudit is being stubborn X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Chris List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 23:11:03 -0000 Good news about the wget-devel I wasnt aware it was been updated again, when this problem first occured both versions of wget were affected. It appears in nighly security logs so can get annoying after a while. Chris On 5/21/05, Thomas Hurst wrote: > * Tony Shadwick (tshadwick@goinet.com) wrote: >=20 > > I'd like to see it done, but I know just enough sh scripting to be > > dangerous. ;) > > > > If it were perl I'd be all over it. Any takers? :) >=20 > Well, the relevent bit is actually written in awk :) >=20 > The attached patch seems to do the trick. Note portaudit_fixed is a > regular expression, so if you want to list multiple entries, seperate > them with | >=20 > -- > Thomas 'Freaky' Hurst > http://hur.st/ >=20 >=20 > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 00:30:07 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B3B916A41F for ; Mon, 23 May 2005 00:30:07 +0000 (GMT) (envelope-from phusion2k@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13D3443D48 for ; Mon, 23 May 2005 00:30:06 +0000 (GMT) (envelope-from phusion2k@gmail.com) Received: by rproxy.gmail.com with SMTP id b11so845371rne for ; Sun, 22 May 2005 17:30:06 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=bayFfnImHHzbVhnmgOG7iOWuL6vWmbfb8UUAtWEVT1dfUhA4q2/NYze3Nz4EHzEHiUWxOZX6jTSnp0EDJoIXzJLJ/odkiY2J/8QZRogPp9dRa/77vGRHszxy0GWDAnAlouXK8/Ci+8k1LiRO5u4cLiU1QT/GN6V1vzgY3SJXe/w= Received: by 10.11.122.5 with SMTP id u5mr35892cwc; Sun, 22 May 2005 17:30:06 -0700 (PDT) Received: by 10.11.100.43 with HTTP; Sun, 22 May 2005 17:30:06 -0700 (PDT) Message-ID: Date: Sun, 22 May 2005 19:30:06 -0500 From: Phusion To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Help with Expect X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Phusion List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 00:30:07 -0000 I need some help with an expect script I'm trying to write. Here's what I would like to do. - Ping the host to see if it's up. a. If the host responds to pings telnet into it. b. If the host doesn't respond to pings write that to a log file and close the expect script properly. The host does respond to pings. I was thinking if I see a ttl in the response packet to assume it's up and telnet into it. Let me know how I can do the following with expect. Also, how do I close an expect script properly? Thanks. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 00:31:40 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 594BB16A41C for ; Mon, 23 May 2005 00:31:40 +0000 (GMT) (envelope-from lists@natserv.com) Received: from mail1.acecape.com (mail1.acecape.com [66.114.74.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C21343D1F for ; Mon, 23 May 2005 00:31:39 +0000 (GMT) (envelope-from lists@natserv.com) Received: from zoraida.natserv.net (p65-147.acedsl.com [66.114.65.147]) by mail1.acecape.com (8.12.11/8.12.11) with ESMTP id j4N0Vceq007210; Sun, 22 May 2005 20:31:38 -0400 Date: Sun, 22 May 2005 20:31:38 -0400 (EDT) From: Francisco Reyes X-X-Sender: fran@zoraida.natserv.net To: Chris In-Reply-To: <4290EEB4.9070502@makeworld.com> Message-ID: <20050522202535.K29197@zoraida.natserv.net> References: <1368.24.99.220.144.1116792799.squirrel@24.99.220.144> <4290EEB4.9070502@makeworld.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: John DeStefano , Jerry Bell , freebsd-questions@freebsd.org Subject: Re: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 00:31:40 -0000 On Sun, 22 May 2005, Chris wrote: > 5. (and my favorite) If running IPFW, use something like this if you > don't need ssh open to the whole of the internet. narrow it down to a > range of IP's you need. 6. Don't use passwords at all, but use keys. Not always possible though, but possibly one of the better methods. I personally use a combo 1- Use an AllowUsers clause 2- Every time I see script kiddies I black hole their IPs. I black hole them not only because of ssh, but because, just as they tried to attack ssh the same IPs may try other attacks. I try and stay up to date in patches, but it can not hurt to block known compromised/hacker machines. The IPs can be listed either in the firewall or using route add -host 127.0.0.1 -blackhole I was told that this method of blackholing was more efficient when using a long list of IPs becaues IPFW looks at a linear list while the route list was some sort of tree which is more efficient to search. Over time.. my list of blackholed IPs is 300+ and growing. Every week I add anywhere from 2 to 10 new IPs. :-( Besides ssh I also look for machines trying to attack the web server.. ie a machine looking for files in c:\winnt or any other window directory is a sure sign of a compromised wmachine ith a virus/worm trying to infect more machines. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 01:03:37 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4322B16A41C for ; Mon, 23 May 2005 01:03:37 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6A2743D1D for ; Mon, 23 May 2005 01:03:36 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (unknown [200.46.204.144]) by hub.org (Postfix) with ESMTP id 33C9864BA3A for ; Sun, 22 May 2005 22:03:44 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (av.hub.org [200.46.204.144]) (amavisd-new, port 10024) with ESMTP id 05127-06 for ; Mon, 23 May 2005 01:02:46 +0000 (GMT) Received: from ganymede.hub.org (blk-224-176-51.eastlink.ca [24.224.176.51]) by hub.org (Postfix) with ESMTP id CA4A764BA34 for ; Sun, 22 May 2005 22:03:43 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id F318534387; Sun, 22 May 2005 22:03:30 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id E37C433E79 for ; Sun, 22 May 2005 22:03:30 -0300 (ADT) Date: Sun, 22 May 2005 22:03:30 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-questions@freebsd.org Message-ID: <20050522220053.G61528@ganymede.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at hub.org Subject: civ2ctp - the full version under 5.4 ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 01:03:37 -0000 I've had teh Linux version for awhile now, and decided to get myself re-addicted ... when I picked it up, it was back when I was running 4.x on my desktop, and it worked great ... now, under 5.x, its crashing ... Before I dive into it much further, has anyone played this under 5.x? The port version works fine, its just the full version that seems to crash :( ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email: scrappy@hub.org Yahoo!: yscrappy ICQ: 7615664 From owner-freebsd-questions@FreeBSD.ORG Mon May 23 01:14:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9A0116A41C for ; Mon, 23 May 2005 01:14:49 +0000 (GMT) (envelope-from gpeel@thenetnow.com) Received: from constellation.thenetnow.com (thenetnow.com [69.90.69.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9164E43D49 for ; Mon, 23 May 2005 01:14:49 +0000 (GMT) (envelope-from gpeel@thenetnow.com) Received: from hpeel.ody.ca ([216.240.12.2] helo=GRANT) by constellation.thenetnow.com with esmtpa (Exim 4.43) id 1Da1Wp-0003Cq-MP for freebsd-questions@freebsd.org; Sun, 22 May 2005 21:14:47 -0400 Message-ID: <000701c55f34$d08c2230$6601a8c0@GRANT> From: "Grant Peel" To: Date: Sun, 22 May 2005 21:14:44 -0400 Organization: The Net Now MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Subject: nfs check X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 01:14:49 -0000 Hi all, I have a number of boxes that backup data to an nfs mount. A few times in the recent past, I have had the mount go stale for various reasons which caused problems with the dumps. Does anyone have access to to (what I assume would be) a few lines of code that would check to see if the the needed file system IS indeed mounted before attemping the dump? -Grant From owner-freebsd-questions@FreeBSD.ORG Mon May 23 01:17:07 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4276616A41C for ; Mon, 23 May 2005 01:17:07 +0000 (GMT) (envelope-from spamrefuse@yahoo.com) Received: from web54001.mail.yahoo.com (web54001.mail.yahoo.com [206.190.36.225]) by mx1.FreeBSD.org (Postfix) with SMTP id C207243D49 for ; Mon, 23 May 2005 01:17:06 +0000 (GMT) (envelope-from spamrefuse@yahoo.com) Received: (qmail 73364 invoked by uid 60001); 23 May 2005 01:17:06 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=F62vMuGTIvwwq4SkTP2vbhPAwlMWCX2hIvJTtaeCYANkOzSmR3AYH9NfV+KwAEPNK1AzgmpLAgjm8y/IB274BGcYLrK9hhae6sjMkYQD+PSahRIAxfHhXSBjMBV+2B8+26TJybCZseLTltcGzhT/RV1QZuqUMPIOPONzE6WW1Dk= ; Message-ID: <20050523011706.73362.qmail@web54001.mail.yahoo.com> Received: from [147.46.44.181] by web54001.mail.yahoo.com via HTTP; Sun, 22 May 2005 18:17:05 PDT Date: Sun, 22 May 2005 18:17:05 -0700 (PDT) From: Rob To: phusion2k@gmail.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: FreeBSD questions Subject: Re: Help with Expect X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 01:17:07 -0000 Phusion wrote: > I need some help with an expect script I'm trying > to write. Here's what I would like to do. > > - Ping the host to see if it's up. > a. If the host responds to pings telnet into it. > b. If the host doesn't respond to pings write > that to a log file and > close the expect script properly. > > The host does respond to pings. I was thinking if > I see a ttl in the response packet to assume it's > up and telnet into it. Let me know how I can do > the following with expect. Also, how do I close > an expect script properly? Thanks. I'm not an expect expert. I used it only once. Maybe that 'man autoexpect' could help you out. Autoexpect accepts a sequence of commands and wraps it in an expect script. Regards, Rob. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Mon May 23 01:39:20 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBA3C16A44B for ; Mon, 23 May 2005 01:39:20 +0000 (GMT) (envelope-from rees@ddcom.co.jp) Received: from proxy.ddcom.co.jp (proxy.ddcom.co.jp [211.121.191.163]) by mx1.FreeBSD.org (Postfix) with SMTP id 420F143D1F for ; Mon, 23 May 2005 01:39:19 +0000 (GMT) (envelope-from rees@ddcom.co.jp) Received: (qmail 7211 invoked by alias); 23 May 2005 01:50:30 -0000 Received: from unknown (HELO matthew) (10.10.10.11) by mail.ddcom.local with SMTP; 23 May 2005 01:50:30 -0000 Date: Mon, 23 May 2005 10:39:17 +0900 From: Joel To: questions@freebsd.org In-Reply-To: <20050522111751.4E9721CE303@ws1-6.us4.outblaze.com> References: <20050522111751.4E9721CE303@ws1-6.us4.outblaze.com> Message-Id: <20050523103242.348A.REES@ddcom.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-2022-JP" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.00.06 Cc: Subject: Re: Please help me booooot! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 01:39:21 -0000 [...] > when i boot either ad6 or ad4 alone, everything is cool. > > when i plug both ad4 and ad6 into, Usually, when you set up for multi-boot, you plug all your drives in before you set up. At least, you do this until you understand what't going on. Now, if you understood what happens when the machine boots, you might be able to edit your fstab to get FreeBSD to boot. Or maybe not. > i am brought to the freebsd > bootloader. however, half-way down the boot i get: > > Mounting root from ufs:/dev/ad6s1a > setrootbyname failed > ffs_mountroot: can't find rootvp > Root mount failed: 6 > > when i switch ad6's cable over to ad4 and vice versa, my computer > doesn't boot past its bios at all. what's wrong here? Drive name changed at the low level, maybe? It happens. > i just need to > mount ad4 so i can back up some stuff, that's all. thank you so much! -- Joel Rees digitcom, inc. $B3t<02q ** From owner-freebsd-questions@FreeBSD.ORG Mon May 23 02:40:37 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD47216A41C for ; Mon, 23 May 2005 02:40:37 +0000 (GMT) (envelope-from paul.klatt@sbcglobal.net) Received: from smtp807.mail.sc5.yahoo.com (smtp807.mail.sc5.yahoo.com [66.163.168.186]) by mx1.FreeBSD.org (Postfix) with SMTP id BFBA943D1F for ; Mon, 23 May 2005 02:40:37 +0000 (GMT) (envelope-from paul.klatt@sbcglobal.net) Received: from unknown (HELO adsl-68-72-121-208.dsl.chcgil.ameritech.net) (paul.klatt@sbcglobal.net@68.72.121.208 with plain) by smtp807.mail.sc5.yahoo.com with SMTP; 23 May 2005 02:40:37 -0000 From: paul klatt To: freebsd-questions@freebsd.org User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <199901041430.03854.paul.klatt@sbcglobal.net> Subject: virtual desktop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Mon, 23 May 2005 02:40:38 -0000 X-Original-Date: Mon, 4 Jan 1999 14:30:03 +0000 X-List-Received-Date: Mon, 23 May 2005 02:40:38 -0000 Could anyone please help me get my virtual desktop configured, I am having problems wheere the desktop is to large for the monitor . I have tried ctrl alt + and htis has no effect. When I go into /stand/sysinstall configure xfree86 server and than xfree86 graphical configuration ctrl alt + seems to be working in this part of the system. I woold appreciate the help in getting my system configured From owner-freebsd-questions@FreeBSD.ORG Mon May 23 03:19:31 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C83E516A41C for ; Mon, 23 May 2005 03:19:31 +0000 (GMT) (envelope-from Mike.Jeays@rogers.com) Received: from smtp101.rog.mail.re2.yahoo.com (smtp101.rog.mail.re2.yahoo.com [206.190.36.79]) by mx1.FreeBSD.org (Postfix) with SMTP id 67E7E43D1F for ; Mon, 23 May 2005 03:19:31 +0000 (GMT) (envelope-from Mike.Jeays@rogers.com) Received: from unknown (HELO ?192.168.2.150?) (mjeays2551@24.114.152.139 with plain) by smtp101.rog.mail.re2.yahoo.com with SMTP; 23 May 2005 03:19:30 -0000 From: Mike Jeays To: Phusion In-Reply-To: References: Content-Type: text/plain Message-Id: <1116818369.953.54.camel@chaucer> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sun, 22 May 2005 23:19:29 -0400 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Help with Expect X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 03:19:31 -0000 On Sun, 2005-05-22 at 20:30, Phusion wrote: > I need some help with an expect script I'm trying to write. Here's > what I would like to do. > > - Ping the host to see if it's up. > a. If the host responds to pings telnet into it. > b. If the host doesn't respond to pings write that to a log file and > close the expect script properly. > > The host does respond to pings. I was thinking if I see a ttl in the > response packet to assume it's up and telnet into it. Let me know how > I can do the following with expect. Also, how do I close an expect > script properly? Thanks. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > I sent you these examples to a similar request a few days ago, and didn't get any acknowledgement. Did you not receive it, or is it not clear, or do you need more help? ----------------------------------------------------- You can ping a host and test whether it was successful from a shell script, without needing to use expect. Hope this is useful, as it doesn't quite answer your question. Note the "-c 1" to tell ping to try just once. ping -c 1 chaucer rc1=$? if [ $rc1 -gt 0 ] then echo "Chaucer is down" else echo "Chaucer is up" fi Here is an example of telnet from expect; a very quick and dirty way to synchronize a clock on a very old machine. #!/usr/local/bin/expect set timeout 10 spawn telnet jansen expect "]" send "password1\r" expect "jansen???" send "su\r" expect "Password:" send "rootpassword\r" expect "#" exec date >/tmp/datesync.tmp exec cat /tmp/datesync.tmp set newtime [exec cat /tmp/datesync.tmp] send "date -s \"$newtime\"\r" expect "#" send "exit\r" expect "jansen???" send "exit\r" expect "host." From owner-freebsd-questions@FreeBSD.ORG Mon May 23 03:19:42 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39BD016A420 for ; Mon, 23 May 2005 03:19:42 +0000 (GMT) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id D205343D1F for ; Mon, 23 May 2005 03:19:41 +0000 (GMT) (envelope-from wblock@wonkity.com) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.13.3/8.13.1) with ESMTP id j4N3Je4s032080; Sun, 22 May 2005 21:19:40 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.13.3/8.13.1/Submit) with ESMTP id j4N3JeML032077; Sun, 22 May 2005 21:19:40 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 22 May 2005 21:19:40 -0600 (MDT) From: Warren Block To: paul klatt In-Reply-To: <199901041430.03854.paul.klatt@sbcglobal.net> Message-ID: <20050522210852.Y32033@wonkity.com> References: <199901041430.03854.paul.klatt@sbcglobal.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.6 (wonkity.com [127.0.0.1]); Sun, 22 May 2005 21:19:40 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: virtual desktop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 03:19:42 -0000 On Mon, 4 Jan 1999, paul klatt wrote: > Could anyone please help me get my virtual desktop configured, I am having > problems wheere the desktop is to large for the monitor . I have tried ctrl > alt + and htis has no effect. When I go into /stand/sysinstall configure > xfree86 server and than xfree86 graphical configuration ctrl alt + seems to > be working in this part of the system. I woold appreciate the help in getting > my system configured [ Unless it is really 1999 where you are, please set your system clock to the correct date. ] Please post your xorg.conf file and details on your video card and monitor. -Warren Block * Rapid City, South Dakota USA From owner-freebsd-questions@FreeBSD.ORG Mon May 23 03:29:07 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A7A216A41C for ; Mon, 23 May 2005 03:29:07 +0000 (GMT) (envelope-from radlinskic@acm.org) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5931E43D1F for ; Mon, 23 May 2005 03:29:07 +0000 (GMT) (envelope-from radlinskic@acm.org) Received: from [192.168.1.100] (c-24-118-13-177.hsd1.mn.comcast.net[24.118.13.177]) by comcast.net (rwcrmhc11) with SMTP id <2005052303273001300elq7qe>; Mon, 23 May 2005 03:27:30 +0000 From: Chris Radlinski To: Kris Kennaway In-Reply-To: <20050522192610.GB6717@xor.obsecurity.org> References: <1116737790.700.2.camel@localhost> <20050522192610.GB6717@xor.obsecurity.org> Content-Type: text/plain Date: Sun, 22 May 2005 22:27:29 -0500 Message-Id: <1116818849.748.2.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.2.1.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: procfs in 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 03:29:07 -0000 That was it. Thanks. Chris On Sun, 2005-05-22 at 12:26 -0700, Kris Kennaway wrote: > On Sat, May 21, 2005 at 11:56:30PM -0500, Chris Radlinski wrote: > > I'm running 5.4 Release. Whenever I run 'ps -ef' I get this message: > > > > ps: Process environment requires procfs(5) > > > > My kernel config contains these two lines: > > > > options PROCFS # Process filesystem (requires > > PSEUDOFS) > > options PSEUDOFS # Pseudo-filesystem framework > > > > I should have procfs. However, my /proc directory is empty. > > > > What gives? > > Did you *mount* procfs in that directory? See the manpage. > > Kris > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 03:51:07 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAA9F16A41C for ; Mon, 23 May 2005 03:51:07 +0000 (GMT) (envelope-from rylwin@houston.rr.com) Received: from ms-smtp-01-eri0.texas.rr.com (ms-smtp-01.texas.rr.com [24.93.47.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A80843D1F for ; Mon, 23 May 2005 03:51:06 +0000 (GMT) (envelope-from rylwin@houston.rr.com) Received: from [192.168.1.40] (cpe-67-10-38-25.houston.res.rr.com [67.10.38.25]) by ms-smtp-01-eri0.texas.rr.com (8.12.10/8.12.7) with ESMTP id j4N3p4H9016961 for ; Sun, 22 May 2005 22:51:04 -0500 (CDT) Message-ID: <4291531B.6050906@houston.rr.com> Date: Sun, 22 May 2005 22:50:51 -0500 From: Ryan Winograd User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050428) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: nfs: fstab or automount X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 03:51:08 -0000 If I set up a network in which the /home directory is shared to all client computers, is it better to have the clients mount the nfs share in fstab or to let automount handle the mounting? What are the pros and cons of each? Thnx in advance for all input, Ryan w From owner-freebsd-questions@FreeBSD.ORG Mon May 23 05:14:03 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA43A16A41C for ; Mon, 23 May 2005 05:14:03 +0000 (GMT) (envelope-from ananth.g@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8243043D1F for ; Mon, 23 May 2005 05:14:03 +0000 (GMT) (envelope-from ananth.g@gmail.com) Received: by wproxy.gmail.com with SMTP id 67so1892733wri for ; Sun, 22 May 2005 22:14:02 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:user-agent:x-accept-language:mime-version:to:subject:content-type:content-transfer-encoding; b=VmbHbDPicuOQtqHvWU656016dPGxppwwLPCcnvgyvqUDWv1OltfdvKd5+6/w8K2I2tph/kqETGoO2rYtBZSi02liejq/a1qQ/ilUqaKDQ9dpRYKH6FmxKG0GeGRgUHCCsWhYzfOolwPI78wRXDOT8Msw+CueMmwU8Uq6GCSV+kY= Received: by 10.54.44.51 with SMTP id r51mr3753377wrr; Sun, 22 May 2005 22:14:02 -0700 (PDT) Received: from ?210.210.123.95? ([210.210.123.95]) by mx.gmail.com with ESMTP id d6sm1519739wra.2005.05.22.22.14.01; Sun, 22 May 2005 22:14:02 -0700 (PDT) Message-ID: <42916690.1030205@gmail.com> Date: Mon, 23 May 2005 10:43:52 +0530 From: "ananth.g" User-Agent: Sifymail 1.1 (Windows/20050331) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: syslog messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ananth.g@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 05:14:04 -0000 hi, when i get an error or warning in my system, a mail is sent to the root user. does anyone know how to change the settings so that the mail is sent to my mail id instead of localhost id ? thanks guys. regrds, ananth.g From owner-freebsd-questions@FreeBSD.ORG Mon May 23 05:21:25 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17CB116A41C for ; Mon, 23 May 2005 05:21:25 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (wantadilla.lemis.com [192.109.197.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D48143D1D for ; Mon, 23 May 2005 05:21:23 +0000 (GMT) (envelope-from grog@lemis.com) Received: by blackwater.lemis.com (Postfix, from userid 1004) id 11306855F1; Mon, 23 May 2005 14:51:22 +0930 (CST) Date: Mon, 23 May 2005 14:51:22 +0930 From: Greg 'groggy' Lehey To: "ananth.g" Message-ID: <20050523052122.GF34798@wantadilla.lemis.com> References: <42916690.1030205@gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4fo3mGi7Q6pk/+I3" Content-Disposition: inline In-Reply-To: <42916690.1030205@gmail.com> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: freebsd-questions@freebsd.org Subject: Re: syslog messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 05:21:25 -0000 --4fo3mGi7Q6pk/+I3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Monday, 23 May 2005 at 10:43:52 +0530, ananth.g wrote: > hi, > when i get an error or warning in my system, a mail is sent to the > root user. does anyone know how to change the settings so that the > mail is sent to my mail id instead of localhost id ? Take a look at syslog.conf(5). Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply or reply to the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers. --4fo3mGi7Q6pk/+I3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFCkWhSIubykFB6QiMRAilLAJ4jc2LYo1r0Cgx+ubSq0/jufZ2c/gCfVVg4 xeGrJeFy0lU/g8Clc8zfRjA= =QwDV -----END PGP SIGNATURE----- --4fo3mGi7Q6pk/+I3-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 05:27:10 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8131816A41C for ; Mon, 23 May 2005 05:27:10 +0000 (GMT) (envelope-from glenn@antimatter.net) Received: from cobalt.antimatter.net (cobalt.antimatter.net [69.55.224.239]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5728843D1F for ; Mon, 23 May 2005 05:27:10 +0000 (GMT) (envelope-from glenn@antimatter.net) Received: from glenn-mobile.antimatter.net (cpe-66-27-94-59.san.res.rr.com [66.27.94.59]) (authenticated bits=0) by cobalt.antimatter.net (8.12.11/8.12.11) with ESMTP id j4N5PmOd002628 (version=TLSv1/SSLv3 cipher=DES-CBC3-SHA bits=168 verify=NO); Sun, 22 May 2005 22:25:49 -0700 Message-Id: <6.1.0.6.2.20050522222459.05956bc0@cobalt.antimatter.net> X-Sender: lists@cobalt.antimatter.net X-Mailer: QUALCOMM Windows Eudora Version 6.1.0.6 Date: Sun, 22 May 2005 22:26:52 -0700 To: ananth.g@gmail.com From: Glenn Dawson In-Reply-To: <42916690.1030205@gmail.com> References: <42916690.1030205@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: syslog messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 05:27:10 -0000 At 10:13 PM 5/22/2005, you wrote: >hi, >when i get an error or warning in my system, a mail is sent to the root user. >does anyone know how to change the settings so that the mail is sent to >my mail id instead of localhost id ? Just change where the root alias in /etc/mail/aliases points to. for example: root: user@domain.com don't forget to run newaliases after you make the change. (this all assumes you're using sendmail) -Glenn >thanks guys. >regrds, >ananth.g >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Mon May 23 06:25:13 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 055A616A41C for ; Mon, 23 May 2005 06:25:13 +0000 (GMT) (envelope-from ananth.g@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 795C143D48 for ; Mon, 23 May 2005 06:25:12 +0000 (GMT) (envelope-from ananth.g@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1851750wra for ; Sun, 22 May 2005 23:25:11 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:reply-to:user-agent:x-accept-language:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding:from; b=Yy87ey1uGr705MtIE981C7yV7K+2ZYM5tNpyEFcWf5F1E/gJJ148ApBYVxu8i5AzVYDSurdpYLuvw+w7bebPbx1CeZZYwAJ5Jp+QQBH3RLVd06jjEIiidUA1Qw0tWEQheJuZrivctS4x1qPkojFJGmM4XLkU0croPdNw6/z53XY= Received: by 10.54.41.42 with SMTP id o42mr2635620wro; Sun, 22 May 2005 23:25:11 -0700 (PDT) Received: from ?210.210.123.95? ([210.210.123.95]) by mx.gmail.com with ESMTP id 8sm1445513wrl.2005.05.22.23.25.09; Sun, 22 May 2005 23:25:11 -0700 (PDT) Message-ID: <4291773D.6060509@sifycorp.com> Date: Mon, 23 May 2005 11:55:01 +0530 User-Agent: Sifymail 1.1 (Windows/20050331) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Glenn Dawson References: <42916690.1030205@gmail.com> <6.1.0.6.2.20050522222459.05956bc0@cobalt.antimatter.net> In-Reply-To: <6.1.0.6.2.20050522222459.05956bc0@cobalt.antimatter.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit From: "ananth_g@sifycorp.com" Cc: freebsd-questions@freebsd.org Subject: Re: syslog messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ananth_g@sifycorp.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 06:25:13 -0000 thanks glenn, it worked regrds, ananth.g Glenn Dawson wrote: > At 10:13 PM 5/22/2005, you wrote: > >> hi, >> when i get an error or warning in my system, a mail is sent to the >> root user. >> does anyone know how to change the settings so that the mail is sent to >> my mail id instead of localhost id ? > > > Just change where the root alias in /etc/mail/aliases points to. > > for example: > > root: user@domain.com > > don't forget to run newaliases after you make the change. > > (this all assumes you're using sendmail) > > -Glenn > >> thanks guys. >> regrds, >> ananth.g >> _______________________________________________ >> 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 Mon May 23 06:59:46 2005 Return-Path: X-Original-To: questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57ACF16A41C for ; Mon, 23 May 2005 06:59:46 +0000 (GMT) (envelope-from yumuura_kirika@yahoo.com.hk) Received: from web31608.mail.mud.yahoo.com (web31608.mail.mud.yahoo.com [68.142.198.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 23B6443D4C for ; Mon, 23 May 2005 06:59:46 +0000 (GMT) (envelope-from yumuura_kirika@yahoo.com.hk) Received: (qmail 67139 invoked by uid 60001); 23 May 2005 06:59:45 -0000 Message-ID: <20050523065945.67137.qmail@web31608.mail.mud.yahoo.com> Received: from [202.159.116.19] by web31608.mail.mud.yahoo.com via HTTP; Mon, 23 May 2005 14:59:45 CST Date: Mon, 23 May 2005 14:59:45 +0800 (CST) From: Yumuura Kirika To: questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: Subject: how to setting the router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 06:59:46 -0000 hii, my name is edward. i would ask about how to setting / configuration for router. i really want to know. could you tell me. thanks... NOIR so wa inishie yori no sadame no na shi o tsukasadori futari no otome kuroki ote wa midorigo no yasurakanaru o mamoritamou From owner-freebsd-questions@FreeBSD.ORG Mon May 23 08:18:18 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF42216A41C for ; Mon, 23 May 2005 08:18:18 +0000 (GMT) (envelope-from khaled.abu@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8555043D1D for ; Mon, 23 May 2005 08:18:18 +0000 (GMT) (envelope-from khaled.abu@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1880176wra for ; Mon, 23 May 2005 01:18:17 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=eJvzYlwQA5OZP7hvGjENKF2UKQuh1LGiR4nh4cA6E93FibnNPhE7Ihb8sC7JQq2KgWNbj/PLWSY86WGX4dPL7G98vYlZemR6uWLfdVXPi/LFFscSB34clPqsjuBi87MgqhSSkqUV/A67+rmfFv8kmJfgyJFEBIT0Cj9PAZm0m8I= Received: by 10.54.117.4 with SMTP id p4mr3319075wrc; Mon, 23 May 2005 01:18:17 -0700 (PDT) Received: by 10.54.66.16 with HTTP; Mon, 23 May 2005 01:18:17 -0700 (PDT) Message-ID: Date: Mon, 23 May 2005 11:18:17 +0300 From: Abu Khaled To: Yumuura Kirika In-Reply-To: <20050523065945.67137.qmail@web31608.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20050523065945.67137.qmail@web31608.mail.mud.yahoo.com> Cc: questions@freebsd.org Subject: Re: how to setting the router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Abu Khaled List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 08:18:19 -0000 On 5/23/05, Yumuura Kirika wrote: > hii, my name is edward. > i would ask about how to setting / configuration for > router. i really want to know. could you tell me. > thanks... >=20 >=20 > NOIR > so wa inishie yori no sadame no na > shi o tsukasadori futari no otome > kuroki ote wa midorigo no > yasurakanaru o mamoritamou Hello Edward. Chech the FreeBSD Handbook. Chapter 25 Advanced Networking -> 25.2 Gateways and Routes. If you still need help or examples just reply to the post again. I am sure that you well get the help you need. Just start by reading the Section I mentioned in the handbook then post your question(s). It is also adviesed to post your network topology or what you are planning to do. Good Luck --=20 Kind regards Abu Khaled From owner-freebsd-questions@FreeBSD.ORG Mon May 23 09:10:21 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4482D16A41C for ; Mon, 23 May 2005 09:10:21 +0000 (GMT) (envelope-from g.todd@internet.co.nz) Received: from Hawk.internet.co.nz (p135.fastip190.adsl.iconz.net.nz [219.88.190.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id E245D43D1F for ; Mon, 23 May 2005 09:10:20 +0000 (GMT) (envelope-from g.todd@internet.co.nz) Received: from Hawk.internet.co.nz (localhost.internet.co.nz [IPv6:::1]) by Hawk.internet.co.nz (8.13.1/8.13.1) with ESMTP id j4N97T15001307 for ; Mon, 23 May 2005 21:07:29 +1200 (NZST) (envelope-from g.todd@internet.co.nz) Date: Mon, 23 May 2005 09:07:28 +0000 From: Glenn Todd To: "freebsd-questions@FreeBSD.ORG" X-Mailer: Balsa 2.3.2 Message-Id: <1116839248l.1269l.0l@Hawk.internet.co.nz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; DelSp=Yes; Format=Flowed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Cc: Subject: Balsa 2.3.2 Crash with attachments X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: g.todd@internet.co.nz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 09:10:21 -0000 I am running Balsa 2.3.2 with Gnome 2.10 on FreeBSD 5.3-RELEASE-p15 If I try to attached a file to an email Balsa crashes. The only =20 information is what I have seen in Bug Buddy Thread 6 (LWP 100195): #0 0x28afeef7 in pthread_testcancel () from /usr/lib/libpthread.so.1 No symbol table info available. #1 0x28af7675 in pthread_mutexattr_init () from =20 /usr/lib/libpthread.so.1 No symbol table info available. #2 0x08116000 in ?? () No symbol table info available. Is this a problem with Balsa, libpthread, gnome 2.10 or something with =20 my installation. I upgraded to 2.10 using the upgrade scripts and =20 updated the rest of my ports using portsupgrade as recently as last =20 Friday. Glenn Wellington, New Zealand From owner-freebsd-questions@FreeBSD.ORG Mon May 23 10:02:03 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3376D16A41C for ; Mon, 23 May 2005 10:02:03 +0000 (GMT) (envelope-from marco@beishuizen.info) Received: from smtp19.wxs.nl (smtp19.wxs.nl [195.121.6.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF1AE43D49 for ; Mon, 23 May 2005 10:02:02 +0000 (GMT) (envelope-from marco@beishuizen.info) Received: from yokozuna.lan (ipd50a233c.speed.planet.nl [213.10.35.60]) by smtp19.wxs.nl (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0IGX00K1PT7CNE@smtp19.wxs.nl> for freebsd-questions@FreeBSD.ORG; Mon, 23 May 2005 12:02:01 +0200 (CEST) Received: from [127.0.0.1] (yokozuna.lan [127.0.0.1]) by yokozuna.lan (8.13.1/8.13.1) with ESMTP id j4NA204m078022; Mon, 23 May 2005 12:02:00 +0200 (CEST envelope-from marco@beishuizen.info) Date: Mon, 23 May 2005 12:02:00 +0200 From: Marco Beishuizen In-reply-to: <1116839248l.1269l.0l@Hawk.internet.co.nz> To: g.todd@internet.co.nz Message-id: <4291AA18.600@beishuizen.info> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-15; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050422) References: <1116839248l.1269l.0l@Hawk.internet.co.nz> Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Balsa 2.3.2 Crash with attachments X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: marco@beishuizen.info List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 10:02:03 -0000 The wise Glenn Todd entered on stardate 05/23/05 11:07: > I am running Balsa 2.3.2 with Gnome 2.10 on FreeBSD 5.3-RELEASE-p15 > > If I try to attached a file to an email Balsa crashes. The only > information is what I have seen in Bug Buddy > > Thread 6 (LWP 100195): > #0 0x28afeef7 in pthread_testcancel () from /usr/lib/libpthread.so.1 > No symbol table info available. > #1 0x28af7675 in pthread_mutexattr_init () from /usr/lib/libpthread.so.1 > No symbol table info available. > #2 0x08116000 in ?? () > No symbol table info available. > > Is this a problem with Balsa, libpthread, gnome 2.10 or something with > my installation. I upgraded to 2.10 using the upgrade scripts and > updated the rest of my ports using portsupgrade as recently as last > Friday. I had Balsa crashing also. Not only when I tried to attach a file but also when opening the address book. I didn't get any error messages though, so I have no idea what the problem is. Marco -- "It's easier said than done." ... and if you don't believe it, try proving that it's easier done than said, and you'll see that "it's easier said that `it's easier done than said' than it is done", which really proves that "it's easier said than done". From owner-freebsd-questions@FreeBSD.ORG Mon May 23 10:34:37 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8072C16A41C for ; Mon, 23 May 2005 10:34:37 +0000 (GMT) (envelope-from no-spam@swiftdsl.com.au) Received: from smtp.ade.swiftdsl.com.au (smtp.ade.swiftdsl.com.au [218.214.228.98]) by mx1.FreeBSD.org (Postfix) with SMTP id BFE9243D1D for ; Mon, 23 May 2005 10:34:36 +0000 (GMT) (envelope-from no-spam@swiftdsl.com.au) Received: (qmail 31150 invoked from network); 23 May 2005 10:34:38 -0000 Received: from unknown (HELO daemon.foo.lan) (218.214.176.70) by smtp.ade.swiftdsl.com.au with SMTP; 23 May 2005 10:34:38 -0000 From: Ian Moore To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 20:04:26 +0930 User-Agent: KMail/1.8 References: <200505160918.16568.no-spam@swiftdsl.com.au> <20050516091112.GC17359@laverenz.de> In-Reply-To: <20050516091112.GC17359@laverenz.de> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3761308.Sg5el0P5F5"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200505232004.33810.no-spam@swiftdsl.com.au> Cc: Uwe Laverenz Subject: Re: NSSwitch settings on 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 10:34:37 -0000 --nextPart3761308.Sg5el0P5F5 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 16 May 2005 18:41, Uwe Laverenz wrote: > On Mon, May 16, 2005 at 09:18:09AM +0930, Ian Moore wrote: > > passwd: files ldap > > group: files ldap > > This is correct and sufficient for local files + ldap. > > > On my 5.4-Release system, the default nsswitch.conf is: > > AFAIK there never was a "default" nsswitch.conf in FreeBSD 5.4, I always > had to create a new one from scratch. Well there was one sitting on my system in /etc & I certainly didn't create= =20 it! This system started life as 5.2-RELEASE, so maybe it crept in earlier o= n? > > > group: compat > > group_compat: nis > > hosts: files dns > > networks: files > > passwd: compat > > passwd_compat: nis > > shells: files > > Nope, delete this. > Thanks, that got rid of the error messages. > > Using the 'compat ldap' version, I get errors in /var/log/messages: > > May 13 22:42:26 daemon -csh: NSSWITCH(nsparser): /etc/nsswitch.conf=20 > > line 1: 'compat' used with other sources > > May 13 22:42:26 daemon -csh: NSSWITCH(nsparser): /etc/nsswitch.conf=20 > > line 5: 'compat' used with other sources > > man nsswitch.conf Duh! I forgot to check for a man page for the conf file. Thanks for your help, Cheers, =2D-=20 Ian gpg key: http://home.swiftdsl.com.au/~imoore/no-spam.asc --nextPart3761308.Sg5el0P5F5 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQBCkbG5PUlnmbKkJ6ARAprUAJ92i3ml5P+mltgw0J+EDGn7n/37TwCeN7Il fwsVyDYdS2AZjMixBOWAsXo= =2vrv -----END PGP SIGNATURE----- --nextPart3761308.Sg5el0P5F5-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 11:22:12 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4FA116A41C for ; Mon, 23 May 2005 11:22:12 +0000 (GMT) (envelope-from jpeg@thilelli.net) Received: from smtp.thilelli.net (smtp.thilelli.net [213.41.129.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4068943D48 for ; Mon, 23 May 2005 11:22:11 +0000 (GMT) (envelope-from jpeg@thilelli.net) Received: from localhost (localhost [127.0.0.1]) by bento.thilelli.net (Postfix) with ESMTP id CF5C67303E; Mon, 23 May 2005 13:22:09 +0200 (CEST) Received: from bento.thilelli.net ([127.0.0.1]) by localhost (bento.thilelli.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 72415-08; Mon, 23 May 2005 13:22:04 +0200 (CEST) Received: from webmail.thilelli.net (localhost [127.0.0.1]) by bento.thilelli.net (Postfix) with ESMTP id BDAA87303B; Mon, 23 May 2005 13:22:04 +0200 (CEST) Received: from 145.248.192.30 (SquirrelMail authenticated user jgabel) by webmail.thilelli.net with HTTP; Mon, 23 May 2005 13:22:04 +0200 (CEST) Message-ID: <32437.145.248.192.30.1116847324.squirrel@webmail.thilelli.net> In-Reply-To: <200505232004.33810.no-spam@swiftdsl.com.au> References: <200505160918.16568.no-spam@swiftdsl.com.au> <20050516091112.GC17359@laverenz.de> <200505232004.33810.no-spam@swiftdsl.com.au> Date: Mon, 23 May 2005 13:22:04 +0200 (CEST) From: "Julien Gabel" To: "Ian Moore" User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: amavisd-new at thilelli.net Cc: freebsd-questions@freebsd.org, Uwe Laverenz Subject: Re: NSSwitch settings on 5.4. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jpeg@thilelli.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 11:22:12 -0000 >> AFAIK there never was a "default" nsswitch.conf in FreeBSD 5.4, I >> always had to create a new one from scratch. > Well there was one sitting on my system in /etc & I certainly didn't > create it! This system started life as 5.2-RELEASE, so maybe it crept > in earlier on? If you have a file named /etc/host.conf (as previously used before 5.X), a corresponding file /etc/nsswitch.conf may be created automatically from the firts one. This can explain why you didn't create it. -- -jpeg. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 11:37:46 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48AF216A41C for ; Mon, 23 May 2005 11:37:46 +0000 (GMT) (envelope-from no-spam@swiftdsl.com.au) Received: from smtp.ade.swiftdsl.com.au (smtp.ade.swiftdsl.com.au [218.214.228.98]) by mx1.FreeBSD.org (Postfix) with SMTP id 748A143D1D for ; Mon, 23 May 2005 11:37:45 +0000 (GMT) (envelope-from no-spam@swiftdsl.com.au) Received: (qmail 31607 invoked from network); 23 May 2005 11:37:47 -0000 Received: from unknown (HELO daemon.foo.lan) (218.214.176.70) by smtp.ade.swiftdsl.com.au with SMTP; 23 May 2005 11:37:47 -0000 From: Ian Moore To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 21:07:35 +0930 User-Agent: KMail/1.8 References: <98178168-BB06-4D7F-A84D-625E9850FFA4@pobox.com> <20050519104206.A62516@mail.goinet.com> In-Reply-To: <20050519104206.A62516@mail.goinet.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart48559509.u6EZuim000"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200505232107.41575.no-spam@swiftdsl.com.au> Cc: Subject: Re: web-based ldap user administration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 11:37:46 -0000 --nextPart48559509.u6EZuim000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 20 May 2005 01:15, Tony Shadwick wrote: > > As a side note, i've been looking to learn how to use openldap for auth to > go along with what I know about NIS. Could you suggest some good reading? > I'm trying to do that myself. Have a look at=20 http://books.blurgle.ca/read/chapter/1 - it's what I've been using as a=20 guide. Cheers, =2D-=20 Ian gpg key: http://home.swiftdsl.com.au/~imoore/no-spam.asc --nextPart48559509.u6EZuim000 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQBCkcCFPUlnmbKkJ6ARAsjjAKCYqiujxIkeUiVuVGaaIEpgJD4lLgCgrC8h 2TrgUKFi9rHBlr1aznJYXPo= =4naU -----END PGP SIGNATURE----- --nextPart48559509.u6EZuim000-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 11:39:13 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E1B416A41C for ; Mon, 23 May 2005 11:39:13 +0000 (GMT) (envelope-from walter.pelissero@iesy.net) Received: from smtp.iesy.net (mta002.iesy.net [81.210.131.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDEE943D4C for ; Mon, 23 May 2005 11:39:11 +0000 (GMT) (envelope-from walter.pelissero@iesy.net) Received: from zaphod.home.loc (unknown [81.210.131.48]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.iesy.net (Postfix) with ESMTP id 32A25B532 for ; Mon, 23 May 2005 13:39:05 +0200 (CEST) Received: from zaphod.home.loc (localhost [127.0.0.1]) by zaphod.home.loc (8.13.3/8.13.3) with ESMTP id j4NBckqq018234 for ; Mon, 23 May 2005 13:38:46 +0200 (CEST) (envelope-from wcp@zaphod.home.loc) Received: (from wcp@localhost) by zaphod.home.loc (8.13.3/8.13.1/Submit) id j4NBchYj018230; Mon, 23 May 2005 13:38:43 +0200 (CEST) (envelope-from wcp) From: "Walter C. Pelissero" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17041.49347.604692.496783@zaphod.home.loc> Date: Mon, 23 May 2005 13:38:43 +0200 To: freebsd-questions@freebsd.org X-Mailer: VM 7.19 under Emacs 22.0.50.1 X-Attribution: WP X-For-Spammers: blacklistme@pelissero.de X-MArch-Archive-Date: 2005-05-23 13:38:48 X-MArch-Archive-ID: 2374 X-MArch-Processing-Time: 2.2s Subject: DigiBoard PC/4e on 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: walter@pelissero.de List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 11:39:13 -0000 I have a DigiBoard PC/4e that used to work without a problem on FreeBSD 4.9 (maybe even 4.10). On 5.4 when I kldload the digi module I get an error: dgb0: FEP/OS start failed (0x00 != 0x534f) The device.hints contains: hint.digi.0.at="isa" hint.digi.0.port="0x320" hint.digi.0.maddr="0xd8000" Which I'm pretty sure are the same values I've been using under FreeBSD 4.x. Any idea of what I might be doing wrong? -- walter pelissero http://www.pelissero.de From owner-freebsd-questions@FreeBSD.ORG Mon May 23 11:44:41 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 631F816A41C for ; Mon, 23 May 2005 11:44:41 +0000 (GMT) (envelope-from scamatrallera@libero.it) Received: from smtp0.libero.it (smtp0.libero.it [193.70.192.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1145E43D48 for ; Mon, 23 May 2005 11:44:41 +0000 (GMT) (envelope-from scamatrallera@libero.it) Received: from localhost (172.16.1.83) by smtp0.libero.it (7.0.027-DD01) id 41BDA869023CDF85 for freebsd-questions@freebsd.org; Mon, 23 May 2005 13:44:40 +0200 Received: from [127.0.0.1] (151.41.243.24) by smtp1.libero.it (7.0.027-DD01) (authenticated as scamatrallera@libero.it) id 41BF654A07A11C44 for freebsd-questions@freebsd.org; Mon, 23 May 2005 13:44:36 +0200 Message-ID: <4291C2A0.6030909@libero.it> Date: Mon, 23 May 2005 13:46:40 +0200 From: Peter User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at libero.it serv4 Subject: FreeBSD and Asus A7N8X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 11:44:41 -0000 Hi! I'm trying to install FreeBSD on my pc, but both 4.10 and 5.3, after installation , block at first boot. I know there is a problem whit my motherboard, ASUS A7N8X deluxe that it is not supported by FreeBSD. Can you tell me if 5.4 works on my motherboard? Or a site where I can download 4.9 that may be the last working relase on my asus. Thank you and have a nice day! p.s. sorry for my english... From owner-freebsd-questions@FreeBSD.ORG Mon May 23 12:11:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89D5716A44C for ; Mon, 23 May 2005 12:11:48 +0000 (GMT) (envelope-from no-spam@swiftdsl.com.au) Received: from smtp.ade.swiftdsl.com.au (smtp.ade.swiftdsl.com.au [218.214.228.98]) by mx1.FreeBSD.org (Postfix) with SMTP id A792043D1F for ; Mon, 23 May 2005 12:11:47 +0000 (GMT) (envelope-from no-spam@swiftdsl.com.au) Received: (qmail 31880 invoked from network); 23 May 2005 12:11:49 -0000 Received: from unknown (HELO daemon.foo.lan) (218.214.176.70) by smtp.ade.swiftdsl.com.au with SMTP; 23 May 2005 12:11:49 -0000 From: Ian Moore To: jpeg@thilelli.net Date: Mon, 23 May 2005 21:41:36 +0930 User-Agent: KMail/1.8 References: <200505160918.16568.no-spam@swiftdsl.com.au> <200505232004.33810.no-spam@swiftdsl.com.au> <32437.145.248.192.30.1116847324.squirrel@webmail.thilelli.net> In-Reply-To: <32437.145.248.192.30.1116847324.squirrel@webmail.thilelli.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2455505.aBpFbKyNFK"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200505232141.45173.no-spam@swiftdsl.com.au> Cc: freebsd-questions@freebsd.org, Uwe Laverenz Subject: Re: NSSwitch settings on 5.4. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 12:11:49 -0000 --nextPart2455505.aBpFbKyNFK Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 23 May 2005 20:52, Julien Gabel wrote: > >> AFAIK there never was a "default" nsswitch.conf in FreeBSD 5.4, I > >> always had to create a new one from scratch. > > > > Well there was one sitting on my system in /etc & I certainly didn't > > create it! This system started life as 5.2-RELEASE, so maybe it crept > > in earlier on? > > If you have a file named /etc/host.conf (as previously used before 5.X), > a corresponding file /etc/nsswitch.conf may be created automatically from > the firts one. This can explain why you didn't create it. Actually, I've just checked a 5.4 system I'm building from scratch at the=20 moment and it has host.conf & nsswitch.conf on it. host.conf says "Auto-generated from nsswitch.conf" Is this a circular argument? :-) Cheers, =2D-=20 Ian gpg key: http://home.swiftdsl.com.au/~imoore/no-spam.asc --nextPart2455505.aBpFbKyNFK Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQBCkciBPUlnmbKkJ6ARAhMnAJ0ePnqvYzvnM225vjQZB464WwCVKQCfeiuQ /t3X9jokYAsUj8yYAze1oBU= =d3UR -----END PGP SIGNATURE----- --nextPart2455505.aBpFbKyNFK-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 01:14:35 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA10816A41C for ; Mon, 23 May 2005 01:14:35 +0000 (GMT) (envelope-from victorvittorivonwiktow@interfree.it) Received: from vsmtp14.tin.it (vsmtp14.tin.it [212.216.176.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D0D643D49 for ; Mon, 23 May 2005 01:14:35 +0000 (GMT) (envelope-from victorvittorivonwiktow@interfree.it) Received: from workstation (82.48.221.115) by vsmtp14.tin.it (7.0.027) id 4280DBA2004ED931 for freebsd-questions@freebsd.org; Mon, 23 May 2005 03:14:33 +0200 Message-ID: <000701c55f34$dc4f74a0$98edfea9@workstation> From: ".VWV." To: Date: Mon, 23 May 2005 02:15:00 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Mailman-Approved-At: Mon, 23 May 2005 12:21:23 +0000 Subject: various X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 01:14:35 -0000 Hello. Chris was right. I have forgotten to upgrade the X server. Both XFree86 and Xorg have the drivers for a lot of radeon gpus now. Wingsdowz makes me exhausted. It seems I must keep it, in order to run commercial applications for audio purposes, because it seems easier to make them run with Wine, on already existing Wingsdowz installations. The main limit on unix is the availability of drivers for rare hardware. As example, I have a couple of high-end Aardwark audio adapters, not only unsupported by OSS, but also unsupported at all, because of the disappearing of the manufacturer from the market. I could move to M-Audio though, but I had to trash state-of the-art designed hardware. I don't need reply, otherwise CC me. I just remark my appreciation for your time spent giving support. As always VITTORI From owner-freebsd-questions@FreeBSD.ORG Mon May 23 12:36:28 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F54A16A41C for ; Mon, 23 May 2005 12:36:28 +0000 (GMT) (envelope-from jpeg@thilelli.net) Received: from smtp.thilelli.net (smtp.thilelli.net [213.41.129.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 255CE43D1D for ; Mon, 23 May 2005 12:36:27 +0000 (GMT) (envelope-from jpeg@thilelli.net) Received: from localhost (localhost [127.0.0.1]) by bento.thilelli.net (Postfix) with ESMTP id 933E27303E; Mon, 23 May 2005 14:36:26 +0200 (CEST) Received: from bento.thilelli.net ([127.0.0.1]) by localhost (bento.thilelli.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 75771-01-2; Mon, 23 May 2005 14:36:22 +0200 (CEST) Received: from webmail.thilelli.net (localhost [127.0.0.1]) by bento.thilelli.net (Postfix) with ESMTP id F318E7303B; Mon, 23 May 2005 14:36:21 +0200 (CEST) Received: from 145.248.192.30 (SquirrelMail authenticated user jgabel) by webmail.thilelli.net with HTTP; Mon, 23 May 2005 14:36:22 +0200 (CEST) Message-ID: <13234.145.248.192.30.1116851782.squirrel@webmail.thilelli.net> In-Reply-To: <200505232141.45173.no-spam@swiftdsl.com.au> References: <200505160918.16568.no-spam@swiftdsl.com.au> <200505232004.33810.no-spam@swiftdsl.com.au> <32437.145.248.192.30.1116847324.squirrel@webmail.thilelli.net> <200505232141.45173.no-spam@swiftdsl.com.au> Date: Mon, 23 May 2005 14:36:22 +0200 (CEST) From: "Julien Gabel" To: "Ian Moore" User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: amavisd-new at thilelli.net Cc: freebsd-questions@freebsd.org, Uwe Laverenz Subject: Re: NSSwitch settings on 5.4. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jpeg@thilelli.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 12:36:28 -0000 >>>> AFAIK there never was a "default" nsswitch.conf in FreeBSD 5.4, I >>>> always had to create a new one from scratch. >>> Well there was one sitting on my system in /etc & I certainly didn't >>> create it! This system started life as 5.2-RELEASE, so maybe it crept >>> in earlier on? >> If you have a file named /etc/host.conf (as previously used before 5.X), >> a corresponding file /etc/nsswitch.conf may be created automatically >> from the firts one. This can explain why you didn't create it. > Actually, I've just checked a 5.4 system I'm building from scratch at the > moment and it has host.conf & nsswitch.conf on it. host.conf says > "Auto-generated from nsswitch.conf" > Is this a circular argument? :-) Oops, i answered without a system to verify my though. It seems i made a mistake here, sorry. -- -jpeg. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 12:37:18 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50ED316A41C for ; Mon, 23 May 2005 12:37:18 +0000 (GMT) (envelope-from ovidiue@unixware.ro) Received: from mail3.dr.myx.net (ns3.dr.myx.net [217.10.193.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id F387343D48 for ; Mon, 23 May 2005 12:37:17 +0000 (GMT) (envelope-from ovidiue@unixware.ro) Received: by mail3.dr.myx.net (mydomain.myx.net, from userid 48) id 555323B8D55; Mon, 23 May 2005 15:37:15 +0300 (EEST) Received: from 83.103.223.26 ([83.103.223.26]) by webmail.unixware.ro (Webmail) with HTTP for ; Mon, 23 May 2005 15:37:14 +0300 Message-ID: <1116851834.4291ce7aee47a@webmail.unixware.ro> Date: Mon, 23 May 2005 15:37:14 +0300 From: ovidiue@unixware.ro To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: MyDomain Webmail X-Originating-IP: 83.103.223.26 Subject: QoS and guaranteed bandwidth X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 12:37:18 -0000 Hello What is the best sollution (and also simple) to guarantee a bandwidth? For example if I have an 1024 kbps conection and i want to share this to 30 users and also guarantee 32 kbps to every user so if one of them is doing intense FTP the others to easely browse the net what should I use for that? I am looking for a solution like (and better then) HBT on Linux. I've googled for a while but there are not so many resources on that. Best Regards, ovidiu From owner-freebsd-questions@FreeBSD.ORG Mon May 23 12:59:06 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18FC616A41C for ; Mon, 23 May 2005 12:59:06 +0000 (GMT) (envelope-from tyskdisciplin@yahoo.se) Received: from web25607.mail.ukl.yahoo.com (web25607.mail.ukl.yahoo.com [217.12.10.166]) by mx1.FreeBSD.org (Postfix) with SMTP id 4D37243D48 for ; Mon, 23 May 2005 12:59:04 +0000 (GMT) (envelope-from tyskdisciplin@yahoo.se) Received: (qmail 10213 invoked by uid 60001); 23 May 2005 12:59:03 -0000 Message-ID: <20050523125903.10211.qmail@web25607.mail.ukl.yahoo.com> Received: from [130.243.14.151] by web25607.mail.ukl.yahoo.com via HTTP; Mon, 23 May 2005 14:59:03 CEST Date: Mon, 23 May 2005 14:59:03 +0200 (CEST) From: Tim To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: How to update to latest packages with pkg_add and keep system source stable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 12:59:06 -0000 Hello I am a new FreeBSD user. I have installed the latest production release 5.4. Two questions I have are: 1. How do I update to the newest binary packages without using ports? I have a slow computer so compling through ports is not fun. When I now do a pkg_add -r firefox I get version 1.0.3 and not 1.0.4 which I've seen exists as a binary package via the web inteface. 2. I want a stable system. I understand that upgrading system source to FreeBSD-STABLE is in fact not stable at all. So what efficient method exists to keep my system secure and stable? Thanks! From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:11:12 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87A8916A41C for ; Mon, 23 May 2005 13:11:12 +0000 (GMT) (envelope-from frankstaals@gmx.net) Received: from smtp2.versatel.nl (smtp2.versatel.nl [62.58.50.89]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6BEF43D1D for ; Mon, 23 May 2005 13:11:11 +0000 (GMT) (envelope-from frankstaals@gmx.net) Received: (qmail 11656 invoked by uid 10); 23 May 2005 13:11:09 -0000 Received: (vexira-qq 11637-D9BD2870 invoked from network) 23 May 2005 15:11:09 +0200 Received: from unknown (HELO [192.168.2.5]) ([62.59.173.176]) (envelope-sender ) by smtp2.versatel.nl (qmail-ldap-1.03) with SMTP for < >; 23 May 2005 13:11:09 -0000 Message-ID: <4291D683.1060100@gmx.net> Date: Mon, 23 May 2005 15:11:31 +0200 From: Frank Staals User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050521) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Warren Block References: <199901041430.03854.paul.klatt@sbcglobal.net> <20050522210852.Y32033@wonkity.com> In-Reply-To: <20050522210852.Y32033@wonkity.com> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-AntiVirus: checked by Vexira MailArmor (version: 2.0.1.16; VAE: 6.30.0.2; VDF: 6.30.0.11; host: postbode02.zonnet.nl) Cc: paul klatt , freebsd-questions@freebsd.org Subject: Re: virtual desktop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:11:12 -0000 Warren Block wrote: > On Mon, 4 Jan 1999, paul klatt wrote: > >> Could anyone please help me get my virtual desktop configured, I am >> having >> problems wheere the desktop is to large for the monitor . I have >> tried ctrl >> alt + and htis has no effect. When I go into /stand/sysinstall configure >> xfree86 server and than xfree86 graphical configuration ctrl alt + >> seems to >> be working in this part of the system. I woold appreciate the help in >> getting >> my system configured > > > [ Unless it is really 1999 where you are, please set your system clock > to the correct date. ] > > Please post your xorg.conf file and details on your video card and > monitor. > > -Warren Block * Rapid City, South Dakota USA > _______________________________________________ > 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" > > since he is talking about xfree86 and sysinstall --> configure ---> xfree86 I take it that he isn't running Xorg ..... What FreeBSD release you are running, it must be prior to 5.3, you might want to upgrade to 5.3 which uses by default Xorg where there isn't realy a need to config the X server manually ( unless you got two monitors or you just want the best of the best ). Although I have been told xfree86 can configure itself to, but how to I'm not sure. I used the commandline option to config Xfree ( sysinstall -- > configure ---> xfree86 --> xfconf , it was I believe ). Good luck -- Frank Staals ----------------------------------------------------------------------------------------------------- The Greatest pleasure in life is doing things people say you cannot do - Walter Bagehot ----------------------------------------------------------------------------------------------------- With questions or comment mail to FrankStaals@GMX.Net or visit FStaals.nl.eu.org From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:17:11 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E86B316A41C for ; Mon, 23 May 2005 13:17:11 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail27.sea5.speakeasy.net (mail27.sea5.speakeasy.net [69.17.117.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF9F443D1D for ; Mon, 23 May 2005 13:17:11 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 1040 invoked from network); 23 May 2005 13:17:11 -0000 Received: by simscan 1.1.0 ppid: 1021, pid: 1034, t: 0.1588s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail27.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2005 13:17:11 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 4FEA230; Mon, 23 May 2005 09:17:10 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Rich Winkel References: <200505211757.j4LHvn3M068786@pencil.math.missouri.edu> From: Lowell Gilbert Date: 23 May 2005 09:17:09 -0400 In-Reply-To: <200505211757.j4LHvn3M068786@pencil.math.missouri.edu> Message-ID: <441x7y2iay.fsf@be-well.ilk.org> Lines: 29 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: 20 snapshot limit per filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:17:12 -0000 Rich Winkel writes: > Hi, I was just wondering how much overhead would be incurred by increasing > the 20 snapshot limit on mksnap_ffs ? Unfortunately, I don't see a way to give a short answer to that question. On a fairly static filesystem, the answer would be quite small. On a more active filesystem, the number (and size) of different files being modified is more relevant. I tried to do some calculations on my own system, but I kept finding factors that I had overlooked. In practice, it was easier to make my snapshots and see how much disk space and CPU time were used over time. > I use hard links to get snapshot-like functionality under 4.x. I can > recover accidentally deleted files for up to 30 days. I was hoping > I could switch to snapshots without crimping this strategy... You could always try it and see what happens. Or you could change your strategy slightly. I keep weekly snapshots for a few weeks, but daily snapshots only stick around for a week. If you did something like that, you could also keep hourly snapshots for the last few hours. For most users, this kind of approach would be much more likely to have an accidentally deleted file in a snapshot. > By the way, how do snapshots interface with user disk quotas? I assume > files which exist only in a snapshot aren't counted by the quota system. Right. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:20:00 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2755A16A41C for ; Mon, 23 May 2005 13:20:00 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail22.sea5.speakeasy.net (mail22.sea5.speakeasy.net [69.17.117.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id E479443D48 for ; Mon, 23 May 2005 13:19:59 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 27538 invoked from network); 23 May 2005 13:19:59 -0000 Received: by simscan 1.1.0 ppid: 27521, pid: 27534, t: 0.1233s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail22.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2005 13:19:59 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id D716630; Mon, 23 May 2005 09:19:57 -0400 (EDT) Sender: lowell@be-well.ilk.org To: cs References: <42900CC6.4090701@ctzen.com> From: Lowell Gilbert Date: 23 May 2005 09:19:57 -0400 In-Reply-To: <42900CC6.4090701@ctzen.com> Message-ID: <44wtpq13lu.fsf@be-well.ilk.org> Lines: 18 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: FreeBSD Subject: Re: Is this possible ? inherit group permissions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:20:00 -0000 cs writes: > For a directory, e.g. foo/, if I chmod 775 foo/, is it possible for > newly created files and directories under foo/ to automagically > inherit the group permissions of foo ? > > e.g. > touch foo/test would be rw-rw-r-- > mkdir foo/sub would be rwxrwxr-x > > I am looking for a non umask solution. > > I seem to remember in debian, I was able to make the group permissions > of the parent directory special for this magic to occur. > > I wonder if there is something similar in FBSD. If you set the suid bit, both owner *and* group will be set. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:20:45 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4639616A41C for ; Mon, 23 May 2005 13:20:45 +0000 (GMT) (envelope-from adam@internode.com.au) Received: from hamish.internode.com.au (hamish.internode.com.au [192.83.231.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC89F43D48 for ; Mon, 23 May 2005 13:20:44 +0000 (GMT) (envelope-from adam@internode.com.au) Received: from hamish.internode.com.au (localhost.internode.com.au [127.0.0.1]) by hamish.internode.com.au (8.12.9/8.12.1) with ESMTP id j4NDKfva054067 for ; Mon, 23 May 2005 22:50:41 +0930 (CST) Received: (from adam@localhost) by hamish.internode.com.au (8.12.9/8.12.1/Submit) id j4NDKfAD054066 for freebsd-questions@freebsd.org; Mon, 23 May 2005 22:50:41 +0930 (CST) X-Authentication-Warning: hamish.internode.com.au: adam set sender to adam@internode.com.au using -f Date: Mon, 23 May 2005 22:50:40 +0930 From: Adam Smith To: freebsd-questions@freebsd.org Message-ID: <20050523132040.GA50933@internode.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Face: $vsV$1FNbZN\JVpjV#&+/!oVW`Kw$j?w_,te\SS}(tKD21c+l$t%\RCS(r$G; XXk]6,(!N:&(N3EV0bY`3):UrgG7'*qsj3l.75IaHV1<`i*{[L\:F*l6fH##C:-p2]xW/R-Z:!bo; 5g3GP-{I{}7O>tN}`Xm/=-:8NG?f-r'$Qc3y[aW-7'W_S<`KYU!_; `7K=kuC$-.7J2*kk=~`c@ADp+xhsv(!a@eW-R_5wtx+tC)(]%W+ X-Scanned-By: MIMEDefang 2.24 (www . roaringpenguin . com / mimedefang) Subject: free space showing wrong; fsck doesn't help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:20:45 -0000 I have a partition showing the wrong free disk space on FreeBSD 5.3: $ uname -a FreeBSD nautilus.bugman.cx 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 [adam@nautilus /home/adam]$ df -h Filesystem Size Used Avail Capacity Mounted on /dev/ad0s1a 248M 46M 182M 20% / devfs 1.0K 1.0K 0B 100% /dev /dev/ad0s1e 248M 224K 228M 0% /tmp /dev/ad0s1f 34G 6.7G 25G 21% /usr /dev/ad0s1d 248M 37M 191M 16% /var /dev/ad2s1d 180G 168G -2.4G 101% /data devfs 1.0K 1.0K 0B 100% /var/named/dev Notice the /data partition.... Used and Size don't mathematically calculate. It's causing all sorts of errors when programs try and write to the disk... I have run fsck -fy on the partition while it was unmounted; no effect. I've CTRL-C'd another fsck which marked the partition dirty, rebooted, and let fsck do it's own thing; no effect. What do I need to do to fix this inconsistency? Cheers -- Adam Smith Internode : http://www.internode.on.net Phone : (08) 8228 2999 From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:26:27 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BA3C16A41C for ; Mon, 23 May 2005 13:26:27 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2933543D48 for ; Mon, 23 May 2005 13:26:27 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (localhost [127.0.0.1]) by clunix.cl.msu.edu (8.12.10+Sun/8.12.2) with ESMTP id j4NDQPJF005077; Mon, 23 May 2005 09:26:25 -0400 (EDT) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.12.10+Sun/8.12.2/Submit) id j4NDQPZx005076; Mon, 23 May 2005 09:26:25 -0400 (EDT) From: Jerry McAllister Message-Id: <200505231326.j4NDQPZx005076@clunix.cl.msu.edu> To: adam@internode.com.au (Adam Smith) Date: Mon, 23 May 2005 09:26:25 -0400 (EDT) In-Reply-To: <20050523132040.GA50933@internode.com.au> X-Mailer: ELM [version 2.5 PL7] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: free space showing wrong; fsck doesn't help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:26:27 -0000 > > I have a partition showing the wrong free disk space on FreeBSD 5.3: > > $ uname -a > FreeBSD nautilus.bugman.cx 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 > > [adam@nautilus /home/adam]$ df -h > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s1a 248M 46M 182M 20% / > devfs 1.0K 1.0K 0B 100% /dev > /dev/ad0s1e 248M 224K 228M 0% /tmp > /dev/ad0s1f 34G 6.7G 25G 21% /usr > /dev/ad0s1d 248M 37M 191M 16% /var > /dev/ad2s1d 180G 168G -2.4G 101% /data > devfs 1.0K 1.0K 0B 100% /var/named/dev > > Notice the /data partition.... > > Used and Size don't mathematically calculate. It's causing all sorts of > errors when programs try and write to the disk... Please check the archives and the handook regarding system reserved space on file systems. This has been covered so many times it makes my carpal tunnel ache just to think about typing stuff about it again. Briefly, the system reserves a portion - 8% by default - on a file system to deal with possibilities of needing cleanup and operating space if a file system fills up. The per cent is settable, but 8 has worked well and has become the default. ////jerry > > I have run fsck -fy on the partition while it was unmounted; no effect. > I've CTRL-C'd another fsck which marked the partition dirty, rebooted, and > let fsck do it's own thing; no effect. > > What do I need to do to fix this inconsistency? > > > Cheers > > > -- > Adam Smith > Internode : http://www.internode.on.net > Phone : (08) 8228 2999 > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:30:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 256BC16A41F for ; Mon, 23 May 2005 13:30:49 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail25.sea5.speakeasy.net (mail25.sea5.speakeasy.net [69.17.117.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id D111943D53 for ; Mon, 23 May 2005 13:30:48 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 25867 invoked from network); 23 May 2005 13:30:48 -0000 Received: by simscan 1.1.0 ppid: 25858, pid: 25862, t: 0.1321s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail25.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2005 13:30:48 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 7196030; Mon, 23 May 2005 09:30:47 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Bob Perry References: <200505221429.58567.rperry@gti.net> From: Lowell Gilbert Date: 23 May 2005 09:30:47 -0400 In-Reply-To: <200505221429.58567.rperry@gti.net> Message-ID: <44sm0e133s.fsf@be-well.ilk.org> Lines: 13 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: Confused with Refuse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:30:49 -0000 Bob Perry writes: > About to synch up the entire source tree with RELENG_5_4_0_RELEASE. Earlier I > created a refuse file, (/var/db/sup/refuse), when I upgraded my doc and ports > collection in 5.3 but remember reading somewhere that a refuse file was not > necessarily recommended when updating an entire source tree. Is that still > the case? You may not be able to build your own INDEX, and dependency-tracking packages may get confused if the INDEX doesn't match the installed ports, but things won't necessarily break. But you're on your own; please don't report problems unless you know they occur with a fully updated tree. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:31:29 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65CDA16A41C for ; Mon, 23 May 2005 13:31:29 +0000 (GMT) (envelope-from adam@internode.com.au) Received: from hamish.internode.com.au (hamish.internode.com.au [192.83.231.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id C88A243D49 for ; Mon, 23 May 2005 13:31:28 +0000 (GMT) (envelope-from adam@internode.com.au) Received: from hamish.internode.com.au (localhost.internode.com.au [127.0.0.1]) by hamish.internode.com.au (8.12.9/8.12.1) with ESMTP id j4NDVJva057131; Mon, 23 May 2005 23:01:19 +0930 (CST) Received: (from adam@localhost) by hamish.internode.com.au (8.12.9/8.12.1/Submit) id j4NDVJWG057130; Mon, 23 May 2005 23:01:19 +0930 (CST) X-Authentication-Warning: hamish.internode.com.au: adam set sender to adam@internode.com.au using -f Date: Mon, 23 May 2005 23:01:19 +0930 From: Adam Smith To: Jerry McAllister Message-ID: <20050523133119.GB50933@internode.com.au> References: <20050523132040.GA50933@internode.com.au> <200505231326.j4NDQPZx005076@clunix.cl.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200505231326.j4NDQPZx005076@clunix.cl.msu.edu> User-Agent: Mutt/1.4.1i X-Face: $vsV$1FNbZN\JVpjV#&+/!oVW`Kw$j?w_,te\SS}(tKD21c+l$t%\RCS(r$G; XXk]6,(!N:&(N3EV0bY`3):UrgG7'*qsj3l.75IaHV1<`i*{[L\:F*l6fH##C:-p2]xW/R-Z:!bo; 5g3GP-{I{}7O>tN}`Xm/=-:8NG?f-r'$Qc3y[aW-7'W_S<`KYU!_; `7K=kuC$-.7J2*kk=~`c@ADp+xhsv(!a@eW-R_5wtx+tC)(]%W+ X-Scanned-By: MIMEDefang 2.24 (www . roaringpenguin . com / mimedefang) Cc: freebsd-questions@freebsd.org Subject: Re: free space showing wrong; fsck doesn't help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:31:29 -0000 On Mon, May 23, 2005 at 09:26:25AM -0400, Jerry McAllister said: > > > > I have a partition showing the wrong free disk space on FreeBSD 5.3: > > > > $ uname -a > > FreeBSD nautilus.bugman.cx 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 > > > > [adam@nautilus /home/adam]$ df -h > > Filesystem Size Used Avail Capacity Mounted on > > /dev/ad0s1a 248M 46M 182M 20% / > > devfs 1.0K 1.0K 0B 100% /dev > > /dev/ad0s1e 248M 224K 228M 0% /tmp > > /dev/ad0s1f 34G 6.7G 25G 21% /usr > > /dev/ad0s1d 248M 37M 191M 16% /var > > /dev/ad2s1d 180G 168G -2.4G 101% /data > > devfs 1.0K 1.0K 0B 100% /var/named/dev > > > > Notice the /data partition.... > > > > Used and Size don't mathematically calculate. It's causing all sorts of > > errors when programs try and write to the disk... > > Please check the archives and the handook regarding system reserved > space on file systems. This has been covered so many times it makes > my carpal tunnel ache just to think about typing stuff about it again. Sorry, but that's what the FreeBSD-questions list is for :) I did Google it, but turned up no such luck. And I completely understand the ache :) If it's something that's been covered so many times, maybe it's something that needs to be better handled (detected, reported) by the OS in the first instance. I'll be off now to check it out. Thanks for the reply! > Briefly, the system reserves a portion - 8% by default - on a file > system to deal with possibilities of needing cleanup and operating space > if a file system fills up. The per cent is settable, but 8 has worked > well and has become the default. Cheers, -- Adam Smith Internode : http://www.internode.on.net Phone : (08) 8228 2999 From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:37:10 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0A3B16A41C for ; Mon, 23 May 2005 13:37:10 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail21.sea5.speakeasy.net (mail21.sea5.speakeasy.net [69.17.117.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACBD343D1D for ; Mon, 23 May 2005 13:37:10 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 19110 invoked from network); 23 May 2005 13:37:10 -0000 Received: by simscan 1.1.0 ppid: 19088, pid: 19104, t: 0.1181s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail21.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2005 13:37:10 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 9788A30; Mon, 23 May 2005 09:37:09 -0400 (EDT) Sender: lowell@be-well.ilk.org To: freebsd-questions@freebsd.org References: <200505231326.j4NDQPZx005076@clunix.cl.msu.edu> From: Lowell Gilbert Date: 23 May 2005 09:37:09 -0400 In-Reply-To: <200505231326.j4NDQPZx005076@clunix.cl.msu.edu> Message-ID: <44oeb212t6.fsf@be-well.ilk.org> Lines: 8 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: free space showing wrong; fsck doesn't help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:37:11 -0000 Jerry McAllister writes: > Please check the archives and the handook regarding system reserved > space on file systems. This has been covered so many times it makes > my carpal tunnel ache just to think about typing stuff about it again. In fact, it's been covered so many times that it's been in the Frequently Asked Questions list for many years now. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:46:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CBF216A41C for ; Mon, 23 May 2005 13:46:49 +0000 (GMT) (envelope-from adam@internode.com.au) Received: from hamish.internode.com.au (hamish.internode.com.au [192.83.231.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id E481843D4C for ; Mon, 23 May 2005 13:46:48 +0000 (GMT) (envelope-from adam@internode.com.au) Received: from hamish.internode.com.au (localhost.internode.com.au [127.0.0.1]) by hamish.internode.com.au (8.12.9/8.12.1) with ESMTP id j4NDkgva060922; Mon, 23 May 2005 23:16:42 +0930 (CST) Received: (from adam@localhost) by hamish.internode.com.au (8.12.9/8.12.1/Submit) id j4NDkgW7060905; Mon, 23 May 2005 23:16:42 +0930 (CST) X-Authentication-Warning: hamish.internode.com.au: adam set sender to adam@internode.com.au using -f Date: Mon, 23 May 2005 23:16:42 +0930 From: Adam Smith To: Lowell Gilbert Message-ID: <20050523134642.GA59066@internode.com.au> References: <200505231326.j4NDQPZx005076@clunix.cl.msu.edu> <44oeb212t6.fsf@be-well.ilk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44oeb212t6.fsf@be-well.ilk.org> User-Agent: Mutt/1.4.1i X-Face: $vsV$1FNbZN\JVpjV#&+/!oVW`Kw$j?w_,te\SS}(tKD21c+l$t%\RCS(r$G; XXk]6,(!N:&(N3EV0bY`3):UrgG7'*qsj3l.75IaHV1<`i*{[L\:F*l6fH##C:-p2]xW/R-Z:!bo; 5g3GP-{I{}7O>tN}`Xm/=-:8NG?f-r'$Qc3y[aW-7'W_S<`KYU!_; `7K=kuC$-.7J2*kk=~`c@ADp+xhsv(!a@eW-R_5wtx+tC)(]%W+ X-Scanned-By: MIMEDefang 2.24 (www . roaringpenguin . com / mimedefang) Cc: freebsd-questions@freebsd.org Subject: Re: free space showing wrong; fsck doesn't help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:46:49 -0000 On Mon, May 23, 2005 at 09:37:09AM -0400, Lowell Gilbert said: > Jerry McAllister writes: > > > Please check the archives and the handook regarding system reserved > > space on file systems. This has been covered so many times it makes > > my carpal tunnel ache just to think about typing stuff about it again. > > In fact, it's been covered so many times that it's been in the > Frequently Asked Questions list for many years now. Searching for terms such as 'freebsd fsck incorrect free space' and 'freebsd reporting incorrect free space' were obviously not the right things to be searching for in order to bring up the FAQ page in the results. I did not consult it directly. I reiterate; perhaps the operating system could have been more helpful (by way of fsck being able to detect this problem or by having more details of the problem logged to /var/log/messages) because it was not obvious in the first instance that the FreeBSD FAQ was to be my first port of call. Next time you see me post any request to this list, you can be assured I will have checked the FAQ most thoroughly. Regards, -- Adam Smith Internode : http://www.internode.on.net Phone : (08) 8228 2999 From owner-freebsd-questions@FreeBSD.ORG Mon May 23 13:56:15 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D97C916A41C for ; Mon, 23 May 2005 13:56:15 +0000 (GMT) (envelope-from dwinner-lists@att.net) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DC9943D1F for ; Mon, 23 May 2005 13:56:15 +0000 (GMT) (envelope-from dwinner-lists@att.net) Received: from [10.10.100.63] (unknown[216.113.237.29]) by worldnet.att.net (mtiwmhc12) with ESMTP id <2005052313571811200b8a5ce>; Mon, 23 May 2005 13:57:19 +0000 Message-ID: <4291E0FD.2000501@att.net> Date: Mon, 23 May 2005 09:56:13 -0400 From: Duane Winner User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - Questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: upgrading from 5.3 to 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 13:56:16 -0000 Hi all, I just noticed that 5.4 is now the production release. I'm downloading the ISO image now, but I was wondering if anybody has done a source upgrade from 5.3 to 5.4 yet. I was going to try to just change my tag from RELENG_5_3 to RELENG_5_4 on one of my boxes, upgrade from source and see what happens. Has anybody done this yet? Any gotcha's, or is it a fairly smooth upgrade? Thanks DW From owner-freebsd-questions@FreeBSD.ORG Mon May 23 14:04:29 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52F5416A41C for ; Mon, 23 May 2005 14:04:29 +0000 (GMT) (envelope-from cblack@securecrossing.com) Received: from mail2.securecrossing.com (209-254-39-195.ip.mcleodusa.net [209.254.39.195]) by mx1.FreeBSD.org (Postfix) with SMTP id D8A9B43D1D for ; Mon, 23 May 2005 14:04:28 +0000 (GMT) (envelope-from cblack@securecrossing.com) Received: (qmail 26886 invoked by uid 0); 23 May 2005 14:04:28 -0000 Received: from unknown (HELO localhost.localdomain) (cblack@securecrossing.com@127.0.0.1) by mail2.securecrossing.com with SMTP; 23 May 2005 14:04:28 -0000 From: Christopher Black To: freebsd-questions@freebsd.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-ISOArAac+xGqWLiGxYeT" Organization: Secure Crossing Date: Mon, 23 May 2005 10:04:05 -0400 Message-Id: <1116857045.86522.9.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.2.1.1 FreeBSD GNOME Team Port Subject: VM pager read error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 14:04:29 -0000 --=-ISOArAac+xGqWLiGxYeT Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hello List, I have a distributed network of systems running FreeBSD 4.10-Release, and periodically, I see the following errors on the console: vm_fault: pager read error, pid 1 (init) These will be repeated, filling the screen quickly, and the box is unable to do anything at all. These are mission-critical boxes, and I catch a lot of flak for any downtime. Are there any ideas what might be causing this? There's plenty of unused memory (128mb total), and swap is always 100% free. The boxes are running snort_inline, squid, and ipfw with dynamic rules. The errors tend to occur when there's no load at all on the boxes, such as when everyone has gone home for the night. Thanks! Chris --=20 Christopher Black Secure Crossing --=-ISOArAac+xGqWLiGxYeT Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQBCkeLVAPxZlIbJ6AwRAkBdAJ90YtG2ix1tG+jZDbsLR9Eun7RDZwCeMa6H LcSja/L+2igZDNLDg2l0eyM= =TPBK -----END PGP SIGNATURE----- --=-ISOArAac+xGqWLiGxYeT-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 14:11:10 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0797616A41C for ; Mon, 23 May 2005 14:11:10 +0000 (GMT) (envelope-from olivier.certner@free.fr) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2C0843D1F for ; Mon, 23 May 2005 14:11:09 +0000 (GMT) (envelope-from olivier.certner@free.fr) Received: from imp6-q.free.fr (imp6-q.free.fr [212.27.42.6]) by postfix3-2.free.fr (Postfix) with ESMTP id 8E8DFC0FA; Mon, 23 May 2005 16:11:08 +0200 (CEST) Received: by imp6-q.free.fr (Postfix, from userid 33) id 83EB4225CB; Mon, 23 May 2005 16:07:12 +0200 (MEST) Received: from 81.80.88.226 ([81.80.88.226]) by imp6-q.free.fr (IMP) with HTTP for ; Mon, 23 May 2005 16:07:12 +0200 Message-ID: <1116857232.4291e39068962@imp6-q.free.fr> Date: Mon, 23 May 2005 16:07:12 +0200 From: olivier.certner@free.fr To: Duane Winner References: <4291E0FD.2000501@att.net> In-Reply-To: <4291E0FD.2000501@att.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.5 X-Originating-IP: 81.80.88.226 Cc: FreeBSD - Questions Subject: Re: upgrading from 5.3 to 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 14:11:10 -0000 > Has anybody done this yet? Any gotcha's, or is it a fairly smooth upgrade? Hi! Yes, I've done that a week ago, and everything went well. You only have to be careful with your compile options (in /etc/make.conf) if you have increased the optimization level for compiling ports (don't use more than -O). Just follow the handbook instructions ("new" procedure) and you're on your way. In case something fails and if you're not familiar with the booting process, read the section about how to boot your old kernel if the new one doesn't work. Regards, Olivier From owner-freebsd-questions@FreeBSD.ORG Mon May 23 14:33:22 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 983C816A41C for ; Mon, 23 May 2005 14:33:22 +0000 (GMT) (envelope-from phusion2k@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2516B43D1D for ; Mon, 23 May 2005 14:33:22 +0000 (GMT) (envelope-from phusion2k@gmail.com) Received: by rproxy.gmail.com with SMTP id b11so937084rne for ; Mon, 23 May 2005 07:33:18 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VEzHldNz0FBFpR3Zv5tAMccTtY/Q2vHLLbkbFJlRG1YQ1MErM7SSFzlHeTDiFVa+xZRtVGWM5BzJRXlBQJlXf5CkpBLoXnvOSUyg+pdPFQBZXjjrIYVBbXo3rmBrk8J5osZnL8lIwF+u5DiI+5n8yUJPqBGq+XUrEPNZsSzyXYs= Received: by 10.11.122.47 with SMTP id u47mr39438cwc; Mon, 23 May 2005 07:33:18 -0700 (PDT) Received: by 10.11.100.43 with HTTP; Mon, 23 May 2005 07:33:18 -0700 (PDT) Message-ID: Date: Mon, 23 May 2005 09:33:18 -0500 From: Phusion To: Mike Jeays In-Reply-To: <1116818369.953.54.camel@chaucer> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <1116818369.953.54.camel@chaucer> Cc: freebsd-questions@freebsd.org Subject: Re: Help with Expect X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Phusion List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 14:33:22 -0000 Mike, I need to this be in an expect script because I will be entering commands after I telnet into the machine. Thanks for the help though. On 5/22/05, Mike Jeays wrote: > On Sun, 2005-05-22 at 20:30, Phusion wrote: > > I need some help with an expect script I'm trying to write. Here's > > what I would like to do. > > > > - Ping the host to see if it's up. > > a. If the host responds to pings telnet into it. > > b. If the host doesn't respond to pings write that to a log file and > > close the expect script properly. > > > > The host does respond to pings. I was thinking if I see a ttl in the > > response packet to assume it's up and telnet into it. Let me know how > > I can do the following with expect. Also, how do I close an expect > > script properly? Thanks. > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd= .org" > > > I sent you these examples to a similar request a few days ago, and > didn't get any acknowledgement. Did you not receive it, or is it not > clear, or do you need more help? >=20 > ----------------------------------------------------- >=20 > You can ping a host and test whether it was successful from a shell > script, without needing to use expect. Hope this is useful, as it > doesn't quite answer your question. Note the "-c 1" to tell ping to try > just once. >=20 > ping -c 1 chaucer > rc1=3D$? > if [ $rc1 -gt 0 ] > then > echo "Chaucer is down" > else > echo "Chaucer is up" > fi >=20 > Here is an example of telnet from expect; a very quick and dirty way to > synchronize a clock on a very old machine. >=20 > #!/usr/local/bin/expect > set timeout 10 > spawn telnet jansen > expect "]" >=20 > send "password1\r" > expect "jansen???" >=20 > send "su\r" > expect "Password:" >=20 > send "rootpassword\r" > expect "#" >=20 > exec date >/tmp/datesync.tmp > exec cat /tmp/datesync.tmp > set newtime [exec cat /tmp/datesync.tmp] > send "date -s \"$newtime\"\r" > expect "#" >=20 > send "exit\r" > expect "jansen???" >=20 > send "exit\r" > expect "host." >=20 >=20 > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 14:36:47 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CA9716A41C for ; Mon, 23 May 2005 14:36:47 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27BED43D55 for ; Mon, 23 May 2005 14:36:44 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4NEaacF072871; Mon, 23 May 2005 09:36:38 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4NEaZrD072863; Mon, 23 May 2005 09:36:36 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 23 May 2005 09:36:35 -0500 (CDT) From: Tony Shadwick To: olivier.certner@free.fr In-Reply-To: <1116857232.4291e39068962@imp6-q.free.fr> Message-ID: <20050523093624.D47072@mail.goinet.com> References: <4291E0FD.2000501@att.net> <1116857232.4291e39068962@imp6-q.free.fr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: FreeBSD - Questions , Duane Winner Subject: Re: upgrading from 5.3 to 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 14:36:47 -0000 I can confirm here as well, went very smoothly on all counts. Tony On Mon, 23 May 2005 olivier.certner@free.fr wrote: >> Has anybody done this yet? Any gotcha's, or is it a fairly smooth upgrade? > > Hi! > > Yes, I've done that a week ago, and everything went well. You only have to > be careful with your compile options (in /etc/make.conf) if you have increased > the optimization level for compiling ports (don't use more than -O). > > Just follow the handbook instructions ("new" procedure) and you're on your > way. In case something fails and if you're not familiar with the booting > process, read the section about how to boot your old kernel if the new one > doesn't work. > > Regards, > > Olivier > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 14:38:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F97C16A41C for ; Mon, 23 May 2005 14:38:49 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF4D343D1F for ; Mon, 23 May 2005 14:38:48 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4NEcier073478; Mon, 23 May 2005 09:38:44 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4NEchmG073474; Mon, 23 May 2005 09:38:43 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 23 May 2005 09:38:43 -0500 (CDT) From: Tony Shadwick To: FreeBSD In-Reply-To: <44wtpq13lu.fsf@be-well.ilk.org> Message-ID: <20050523093759.M47072@mail.goinet.com> References: <42900CC6.4090701@ctzen.com> <44wtpq13lu.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: cs Subject: Re: Is this possible ? inherit group permissions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 14:38:49 -0000 I'll have to remember that one. So if /home is a filesystem unto itself, if you set the suid bit on /home, all further creation beneath it will inherit the permissions you set above? On Mon, 23 May 2005, Lowell Gilbert wrote: > cs writes: > >> For a directory, e.g. foo/, if I chmod 775 foo/, is it possible for >> newly created files and directories under foo/ to automagically >> inherit the group permissions of foo ? >> >> e.g. >> touch foo/test would be rw-rw-r-- >> mkdir foo/sub would be rwxrwxr-x >> >> I am looking for a non umask solution. >> >> I seem to remember in debian, I was able to make the group permissions >> of the parent directory special for this magic to occur. >> >> I wonder if there is something similar in FBSD. > > If you set the suid bit, both owner *and* group will be set. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 14:46:08 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EADC616A41F for ; Mon, 23 May 2005 14:46:08 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id A54D343D1F for ; Mon, 23 May 2005 14:46:08 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4NEk1fs075627; Mon, 23 May 2005 09:46:05 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4NEk0iM075624; Mon, 23 May 2005 09:46:00 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 23 May 2005 09:46:00 -0500 (CDT) From: Tony Shadwick To: Ryan Winograd In-Reply-To: <4291531B.6050906@houston.rr.com> Message-ID: <20050523094018.Y47072@mail.goinet.com> References: <4291531B.6050906@houston.rr.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org Subject: Re: nfs: fstab or automount X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 14:46:09 -0000 Are they all going to be running FreeBSD, or do you have a mix of 'nix's running? The automounter for osx for example is incompatible with FreeBSD's automounter. I can't speak for Linux, but the possibility exists. If you don't have a redundancy environment set up for /home to automount from point a, and if it fails, try from point b, then just use fstab. That, and use a hostname rather than an IP address in fstab. That way, if box a goes down, you can change an entry in DNS and now box b can server nfs. On Sun, 22 May 2005, Ryan Winograd wrote: > If I set up a network in which the /home directory is shared to all client > computers, is it better to have the clients mount the nfs share in fstab or > to let automount handle the mounting? What are the pros and cons of each? > > Thnx in advance for all input, > Ryan w > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 14:48:37 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FE1616A41C for ; Mon, 23 May 2005 14:48:37 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 582A443D48 for ; Mon, 23 May 2005 14:48:37 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4NEmTcf076214; Mon, 23 May 2005 09:48:29 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4NEmSsV076208; Mon, 23 May 2005 09:48:29 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 23 May 2005 09:48:28 -0500 (CDT) From: Tony Shadwick To: Joel In-Reply-To: <20050523103242.348A.REES@ddcom.co.jp> Message-ID: <20050523094732.A47072@mail.goinet.com> References: <20050522111751.4E9721CE303@ws1-6.us4.outblaze.com> <20050523103242.348A.REES@ddcom.co.jp> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-2089095251-1116859708=:47072" X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: questions@freebsd.org Subject: Re: Please help me booooot! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 14:48:37 -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. --0-2089095251-1116859708=:47072 Content-Type: TEXT/PLAIN; charset=ISO-2022-JP; format=flowed Content-Transfer-Encoding: QUOTED-PRINTABLE I'd just boot off of disc 1 of the install set. That way you have a known= =20 good boot environment. Then you can back things up as per normal. You=20 can also get a little bit of a sense of what is where. On Mon, 23 May 2005, Joel wrote: > [...] >> when i boot either ad6 or ad4 alone, everything is cool. >> >> when i plug both ad4 and ad6 into, > > Usually, when you set up for multi-boot, you plug all your drives in > before you set up. > > At least, you do this until you understand what't going on. > > Now, if you understood what happens when the machine boots, you might be > able to edit your fstab to get FreeBSD to boot. Or maybe not. > >> i am brought to the freebsd >> bootloader. however, half-way down the boot i get: >> >> Mounting root from ufs:/dev/ad6s1a >> setrootbyname failed >> ffs_mountroot: can't find rootvp >> Root mount failed: 6 >> >> when i switch ad6's cable over to ad4 and vice versa, my computer >> doesn't boot past its bios at all. what's wrong here? > > Drive name changed at the low level, maybe? > > It happens. > >> i just need to >> mount ad4 so i can back up some stuff, that's all. thank you so much! > > > -- > Joel Rees > digitcom, inc. =B3=F4=BC=B0=B2=F1=BC=D2=A5=C7=A5=B8=A5=B3=A5=E0 > Kobe, Japan +81-78-672-8800 > ** ** > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > --0-2089095251-1116859708=:47072-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 14:54:16 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 766EE16A41C for ; Mon, 23 May 2005 14:54:16 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1415043D1F for ; Mon, 23 May 2005 14:54:15 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4NEsCWH077909; Mon, 23 May 2005 09:54:13 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4NEsCtp077906; Mon, 23 May 2005 09:54:12 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 23 May 2005 09:54:12 -0500 (CDT) From: Tony Shadwick To: Francisco Reyes In-Reply-To: <20050522202535.K29197@zoraida.natserv.net> Message-ID: <20050523095117.D47072@mail.goinet.com> References: <1368.24.99.220.144.1116792799.squirrel@24.99.220.144> <4290EEB4.9070502@makeworld.com> <20050522202535.K29197@zoraida.natserv.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: John DeStefano , Jerry Bell , freebsd-questions@freebsd.org Subject: Re: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 14:54:16 -0000 Is there an effective way to manage that list? I mean, it seems to me that you'd be adding mass routes to /etc/rc.conf. How are you going about this. Otherwise, it sounds like very good advice. Of course, I tend to manage a hardware firewall in front of any of my machines, so the blackholing should really occur there. I wonder if that technique works under Linux as well? I have the WRT54G running DD-WRT in front of several so-ho boxes. That would be a very efficient method as opposed to ipchains. Not to mention easier to manage reading my firewall rules. ;) On Sun, 22 May 2005, Francisco Reyes wrote: > On Sun, 22 May 2005, Chris wrote: > >> 5. (and my favorite) If running IPFW, use something like this if you >> don't need ssh open to the whole of the internet. narrow it down to a >> range of IP's you need. > > 6. Don't use passwords at all, but use keys. Not always possible though, but > possibly one of the better methods. > > I personally use a combo > 1- Use an AllowUsers clause > 2- Every time I see script kiddies I black hole their IPs. > > I black hole them not only because of ssh, but because, just as they tried to > attack ssh the same IPs may try other attacks. I try and stay up to date in > patches, but it can not hurt to block known compromised/hacker machines. The > IPs can be listed either in the firewall or using > route add -host 127.0.0.1 -blackhole > > I was told that this method of blackholing was more efficient when using a > long list of IPs becaues IPFW looks at a linear list while the route list was > some sort of tree which is more efficient to search. > > Over time.. my list of blackholed IPs is 300+ and growing. Every week I add > anywhere from 2 to 10 new IPs. :-( > > Besides ssh I also look for machines trying to attack the web server.. ie a > machine looking for files in c:\winnt or any other window directory is a sure > sign of a compromised wmachine ith a virus/worm trying to infect more > machines. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 14:50:14 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E067216A41C for ; Mon, 23 May 2005 14:50:14 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BF4F43D48 for ; Mon, 23 May 2005 14:50:14 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4NEo8xW076708; Mon, 23 May 2005 09:50:08 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4NEo4Nf076687; Mon, 23 May 2005 09:50:06 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 23 May 2005 09:50:04 -0500 (CDT) From: Tony Shadwick To: Grant Peel In-Reply-To: <000701c55f34$d08c2230$6601a8c0@GRANT> Message-ID: <20050523094900.R47072@mail.goinet.com> References: <000701c55f34$d08c2230$6601a8c0@GRANT> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org Subject: Re: nfs check X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 14:50:15 -0000 When it goes stale, what is your output from df? If it's accurate (ie, missing, or somehow displays that the mount has otherwise gone stale), then a quick shell script grepping for that info in a conditional loop should do the trick. Been a while since I've had any issues with NFS though. Tony On Sun, 22 May 2005, Grant Peel wrote: > Hi all, > > I have a number of boxes that backup data to an nfs mount. > > A few times in the recent past, I have had the mount go stale for various > reasons which caused problems with the dumps. > > Does anyone have access to to (what I assume would be) a few lines of code > that would check to see if the the needed file system IS indeed mounted > before attemping the dump? > > -Grant > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 15:19:42 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB2E316A41C for ; Mon, 23 May 2005 15:19:42 +0000 (GMT) (envelope-from rperry@gti.net) Received: from apollo.gti.net (apollo.gti.net [199.171.27.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C73B43D58 for ; Mon, 23 May 2005 15:19:42 +0000 (GMT) (envelope-from rperry@gti.net) Received: from zulu.my.domain (morr0647.gti.net [208.216.122.47]) by apollo.gti.net (mail) with ESMTP id 6D4A235845; Mon, 23 May 2005 11:18:55 -0400 (EDT) From: Bob Perry To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 11:20:29 -0400 User-Agent: KMail/1.7.1 References: <200505221429.58567.rperry@gti.net> <44sm0e133s.fsf@be-well.ilk.org> In-Reply-To: <44sm0e133s.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505231120.29223.rperry@gti.net> Cc: Lowell Gilbert Subject: Re: Confused with Refuse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 15:19:42 -0000 On Mon May 23 2005 9:30 am, Lowell Gilbert wrote: > Bob Perry writes: > > About to synch up the entire source tree with RELENG_5_4_0_RELEASE. > > Earlier I created a refuse file, (/var/db/sup/refuse), when I upgraded my > > doc and ports collection in 5.3 but remember reading somewhere that a > > refuse file was not necessarily recommended when updating an entire > > source tree. Is that still the case? > > You may not be able to build your own INDEX, and dependency-tracking > packages may get confused if the INDEX doesn't match the installed > ports, but things won't necessarily break. But you're on your own; > please don't report problems unless you know they occur with a fully > updated tree. That's the sort of warning I remember. Just couldn't readily understand why the Handbook still recommends creating it. Thanks for your response. Bob Perry From owner-freebsd-questions@FreeBSD.ORG Mon May 23 15:37:27 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2914F16A41C for ; Mon, 23 May 2005 15:37:27 +0000 (GMT) (envelope-from Mike.Jeays@rogers.com) Received: from smtp100.rog.mail.re2.yahoo.com (smtp100.rog.mail.re2.yahoo.com [206.190.36.78]) by mx1.FreeBSD.org (Postfix) with SMTP id C44BE43D1F for ; Mon, 23 May 2005 15:37:26 +0000 (GMT) (envelope-from Mike.Jeays@rogers.com) Received: from unknown (HELO ?192.168.2.150?) (mjeays2551@24.114.152.139 with plain) by smtp100.rog.mail.re2.yahoo.com with SMTP; 23 May 2005 15:37:25 -0000 From: Mike Jeays To: Phusion In-Reply-To: References: <1116818369.953.54.camel@chaucer> Content-Type: text/plain Message-Id: <1116862644.5643.0.camel@chaucer> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 23 May 2005 11:37:24 -0400 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Help with Expect X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 15:37:27 -0000 On Mon, 2005-05-23 at 10:33, Phusion wrote: > Mike, > > I need to this be in an expect script because I will be entering > commands after I telnet into the machine. Thanks for the help though. > > On 5/22/05, Mike Jeays wrote: > > On Sun, 2005-05-22 at 20:30, Phusion wrote: > > > I need some help with an expect script I'm trying to write. Here's > > > what I would like to do. > > > > > > - Ping the host to see if it's up. > > > a. If the host responds to pings telnet into it. > > > b. If the host doesn't respond to pings write that to a log file and > > > close the expect script properly. > > > > > > The host does respond to pings. I was thinking if I see a ttl in the > > > response packet to assume it's up and telnet into it. Let me know how > > > I can do the following with expect. Also, how do I close an expect > > > script properly? Thanks. > > > _______________________________________________ > > > freebsd-questions@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > > > > I sent you these examples to a similar request a few days ago, and > > didn't get any acknowledgement. Did you not receive it, or is it not > > clear, or do you need more help? > > > > ----------------------------------------------------- > > > > You can ping a host and test whether it was successful from a shell > > script, without needing to use expect. Hope this is useful, as it > > doesn't quite answer your question. Note the "-c 1" to tell ping to try > > just once. > > > > ping -c 1 chaucer > > rc1=$? > > if [ $rc1 -gt 0 ] > > then > > echo "Chaucer is down" > > else > > echo "Chaucer is up" > > fi > > > > Here is an example of telnet from expect; a very quick and dirty way to > > synchronize a clock on a very old machine. > > > > #!/usr/local/bin/expect > > set timeout 10 > > spawn telnet jansen > > expect "]" > > > > send "password1\r" > > expect "jansen???" > > > > send "su\r" > > expect "Password:" > > > > send "rootpassword\r" > > expect "#" > > > > exec date >/tmp/datesync.tmp > > exec cat /tmp/datesync.tmp > > set newtime [exec cat /tmp/datesync.tmp] > > send "date -s \"$newtime\"\r" > > expect "#" > > > > send "exit\r" > > expect "jansen???" > > > > send "exit\r" > > expect "host." > > > > > > > _______________________________________________ > 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" > Maybe this will help a little more: #!/usr/local/bin/expect spawn ping -c 1 faraday expect { "faraday ping statistics" {puts OK\n; set FLAG 0; exp_continue} "Unknown host" {puts DOWN\n; set FLAG 1; exp_continue} } puts "FLAG=$FLAG\n" From owner-freebsd-questions@FreeBSD.ORG Mon May 23 15:37:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46D0216A420 for ; Mon, 23 May 2005 15:37:49 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail23.sea5.speakeasy.net (mail23.sea5.speakeasy.net [69.17.117.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CD0243D48 for ; Mon, 23 May 2005 15:37:49 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 7734 invoked from network); 23 May 2005 15:37:48 -0000 Received: by simscan 1.1.0 ppid: 7715, pid: 7732, t: 0.1447s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail23.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2005 15:37:48 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 90AF430; Mon, 23 May 2005 11:37:47 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Bob Perry to: freebsd-questions@freebsd.org References: <200505221429.58567.rperry@gti.net> <44sm0e133s.fsf@be-well.ilk.org> <200505231120.29223.rperry@gti.net> From: Lowell Gilbert Date: 23 May 2005 11:37:47 -0400 In-Reply-To: <200505231120.29223.rperry@gti.net> Message-ID: <44psvix8ac.fsf@be-well.ilk.org> Lines: 24 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: Re: Confused with Refuse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 15:37:49 -0000 Bob Perry writes: > On Mon May 23 2005 9:30 am, Lowell Gilbert wrote: > > Bob Perry writes: > > > About to synch up the entire source tree with RELENG_5_4_0_RELEASE. > > > Earlier I created a refuse file, (/var/db/sup/refuse), when I upgraded my > > > doc and ports collection in 5.3 but remember reading somewhere that a > > > refuse file was not necessarily recommended when updating an entire > > > source tree. Is that still the case? > > > > You may not be able to build your own INDEX, and dependency-tracking > > packages may get confused if the INDEX doesn't match the installed > > ports, but things won't necessarily break. But you're on your own; > > please don't report problems unless you know they occur with a fully > > updated tree. > That's the sort of warning I remember. Just couldn't readily understand why > the Handbook still recommends creating it. It recommends refuse files for the doc tree, which is *very* useful, because most users only want one language. On the ports tree, it mentions that some people do it, but doesn't recommend it as a general policy. It will work a lot of the time, and the ports makefiles warn about having a complete ports collection before reporting certain kinds of errors. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 15:40:22 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D44A016A41C for ; Mon, 23 May 2005 15:40:22 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail28.sea5.speakeasy.net (mail28.sea5.speakeasy.net [69.17.117.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F56343D1F for ; Mon, 23 May 2005 15:40:22 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 2079 invoked from network); 23 May 2005 15:40:21 -0000 Received: by simscan 1.1.0 ppid: 2059, pid: 2076, t: 0.1319s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail28.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2005 15:40:21 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id D91DD30; Mon, 23 May 2005 11:40:20 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Ryan Winograd References: <4291531B.6050906@houston.rr.com> From: Lowell Gilbert Date: 23 May 2005 11:40:20 -0400 In-Reply-To: <4291531B.6050906@houston.rr.com> Message-ID: <44ll66x863.fsf@be-well.ilk.org> Lines: 12 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: nfs: fstab or automount X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 15:40:22 -0000 Ryan Winograd writes: > If I set up a network in which the /home directory is shared to all > client computers, is it better to have the clients mount the nfs share > in fstab or to let automount handle the mounting? What are the pros > and cons of each? An automounter can let you mount each individual user's home directory only as needed (and dismount it when it's not being used.). If you're going to mount the whole tree, with the home directories for *all* of the users, then you might as well do it once at the start and be done with it. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 15:41:32 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E427A16A41C for ; Mon, 23 May 2005 15:41:32 +0000 (GMT) (envelope-from tyskdisciplin@yahoo.se) Received: from web25609.mail.ukl.yahoo.com (web25609.mail.ukl.yahoo.com [217.12.10.168]) by mx1.FreeBSD.org (Postfix) with SMTP id 48D9E43D48 for ; Mon, 23 May 2005 15:41:31 +0000 (GMT) (envelope-from tyskdisciplin@yahoo.se) Received: (qmail 33691 invoked by uid 60001); 23 May 2005 15:41:31 -0000 Message-ID: <20050523154131.33689.qmail@web25609.mail.ukl.yahoo.com> Received: from [130.243.14.151] by web25609.mail.ukl.yahoo.com via HTTP; Mon, 23 May 2005 17:41:30 CEST Date: Mon, 23 May 2005 17:41:30 +0200 (CEST) From: Tim To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Is it safe to use stable packages on a release system? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 15:41:33 -0000 Hello I am considering changing the PACKAGESITE env var to point to "packages-stable" directory. I am wondering if there are any implications if doing this on a release 5.4 system (where rebuilds are done only for security issues)? I figure this must be the case since there dosen't seem to be any mentions of this in the instructions for compiling ports but just to be certain since this is not the default configuration. Thanks! From owner-freebsd-questions@FreeBSD.ORG Mon May 23 16:01:45 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2488D16A423 for ; Mon, 23 May 2005 16:01:45 +0000 (GMT) (envelope-from ml.diespammer@netfence.it) Received: from parrot.aev.net (host29-15.pool8174.interbusiness.it [81.74.15.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D26543D53 for ; Mon, 23 May 2005 16:01:43 +0000 (GMT) (envelope-from ml.diespammer@netfence.it) Received: from soth.ventu (adsl-245-23.37-151.net24.it [151.37.23.245]) (authenticated bits=128) by parrot.aev.net (8.13.4/8.13.4) with ESMTP id j4NG6QQG037180 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 23 May 2005 18:06:33 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Received: from [10.1.2.18] (alamar.ventu [10.1.2.18]) (authenticated bits=0) by soth.ventu (8.13.3/8.13.3) with ESMTP id j4NG0aIh022640 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 23 May 2005 18:00:36 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Message-ID: <4291FE54.7040900@netfence.it> Date: Mon, 23 May 2005 18:01:24 +0200 From: Andrea Venturoli User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050502) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Duane Winner , freebsd-questions@freebsd.org References: <4291E0FD.2000501@att.net> In-Reply-To: <4291E0FD.2000501@att.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.51 on 192.168.2.2 X-Scanned-By: MIMEDefang 2.51 on 10.1.2.13 Cc: Subject: Re: upgrading from 5.3 to 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 16:01:45 -0000 Duane Winner wrote: > Has anybody done this yet? Any gotcha's, or is it a fairly smooth upgrade? It was a piece of cake to me. YMMV, as always :) bye av. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 16:09:39 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05A3716A41C for ; Mon, 23 May 2005 16:09:39 +0000 (GMT) (envelope-from chad@shire.net) Received: from hobbiton.shire.net (hobbiton.shire.net [166.70.252.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id A86D043D53 for ; Mon, 23 May 2005 16:09:38 +0000 (GMT) (envelope-from chad@shire.net) Received: from [67.161.222.227] (helo=[192.168.99.68]) by hobbiton.shire.net with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.43) id 1DaFUl-000JdN-6D; Mon, 23 May 2005 10:09:36 -0600 Mime-Version: 1.0 (Apple Message framework v730) Message-Id: <5D64FC85-E26A-41A0-A685-A389D34138B9@shire.net> From: "Chad Leigh -- Shire.Net LLC" Date: Mon, 23 May 2005 10:09:34 -0600 To: bsd List X-Mailer: Apple Mail (2.730) X-SA-Exim-Connect-IP: 67.161.222.227 X-SA-Exim-Mail-From: chad@shire.net Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.0 (2004-09-13) on hobbiton.shire.net X-Spam-Status: No, score=-0.1 required=5.0 tests=AWL,BAYES_50 autolearn=disabled version=3.0.0 X-Spam-Level: X-SA-Exim-Version: 4.1+cvs (built Mon, 23 Aug 2004 08:44:05 -0700) X-SA-Exim-Scanned: Yes (on hobbiton.shire.net) Cc: Chad Leigh Subject: TCP/IP inside of one jail is hosed but other jails (same jail install) work fine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 16:09:39 -0000 Hi I am on 5.3-RELEASE with some of the patches (uname = FreeBSD xxxxxx.org 5.3-RELEASE-p5 FreeBSD 5.3-RELEASE-p5 #5: Sun Apr 24 22:14:42 MDT 2005 chad@xxxxxxxxx.shire.net:/usr/obj/usr/src/sys/ XXXXXXX-SMP i386) I have a single install of FreeBSD that is used for jails and all the jails share the basic install through read only partitions mounted from this root install. (Obviously not the same install as the running host). The problem jail has no TCP connectivity except that apache2 works. Ie, the website is working that runs inside this jail. sshd is running but you cannot connect to it with ssh with the error in the logs May 23 09:37:57 xxxxxx sshd[96372]: fatal: Timeout before authentication for 6x.1xx.4x.58 If I am inside the jail and do, for example, nslookup, I get # nslookup > www.sun.com ;; connection timed out; no servers could be reached > If I try to ssh out it never finishes. I can ssh out of other jails. If I try to ping out of another jail, I get "ping: socket: Operation not permitted". If I try to ping out of this jail I get nothing -- no error. It just "hangs" and does not return to the shell. /etc/resolv.conf in the jail is correct. This jail was working and without any changes being made, stopped working. I have audited /etc and found no changed files. I stopped and restarted the jail. Did not fix it. WHat is strange is that apache2 is still responding, and even on rebooting the jail still works. If I do a netstat -a in another jail on the same host it comes back right away. If I do a netstat on this jail, it takes forever but after a few minutes does finish. One strange thing is that a netstat -a in the problem jail showed (it no longer shows after I explicitly put a TCP4 ListenAddress in the sshd conf in the problem jail and restarted the jail -- problem still persists) tcp4 0 0 166.70.252.195.ssh *.* LISTEN tcp6 0 0 *.ssh *.* LISTEN a tcp6 port open the same netstat -a in another jail does not show the tcp6 port open. the host does have "options INET6 # IPv6 communications protocols" in the kernel but both the host and the jail have 'ipv6_enable="NO" ' in their /etc/rc.conf and /etc/defaults/ rc.conf respectively. All the jails have the default freebsd sshd conf (except as noted above). Any suggestions welcome. Thanks Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad@shire.net From owner-freebsd-questions@FreeBSD.ORG Mon May 23 16:10:38 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89D7016A41C for ; Mon, 23 May 2005 16:10:38 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B35E43D48 for ; Mon, 23 May 2005 16:10:37 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id j4NGAub66034; Mon, 23 May 2005 09:11:02 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Abrie Lintvelt" , "freebsd-questions" Date: Mon, 23 May 2005 09:10:18 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 In-Reply-To: <428F02E8.4040107@aboutit.co.za> Importance: Normal Cc: Subject: RE: Problem with Realtek 8139C and 8139D NIC in 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 16:10:38 -0000 The Realtek 8139 cards are a pretty cheap chipset that many others have had problems with. Try a different card from a different manufacturer. It is probably some BIOS setting in your motherboard. You might try setting the board to non-pnp OS to allow the board to assign resources. Ted > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Abrie Lintvelt > Sent: Saturday, May 21, 2005 2:44 AM > To: freebsd-questions > Subject: Problem with Realtek 8139C and 8139D NIC in 5.4 > > > Hiya Guys > > I've recently started "playing" with FreeBSD. I use it at > home on a pc > for our ADSL connection, just for that added security. > Worked fine with 5.2, except that my WiFi connection was a > little buggy, > so I decided to upgrade to 5.4 > > After installing 5.4, my ed(4) card stopped working. It's > quite an old > card, so I decided to upgrade it as well. > Got myself a new RTL8139D card, and installed it only to keep getting > the error that it "couldn't map ports/memory". The system has 2 other > NICs in in as well, > A RTL8139A, and a Gigabyte Super 108 NIC using the ath(4) driver. > Uninstalled the other Realtek Card, same problem. Uninstalled > the WiFi, > same problem, > Uninstall ALL other NICs in the system and only leave in the 8139D, > problem still persists. > > Over to plan B, get another NIC from another unused PC. This > time it's > an 8139C. Same problem still. I'm really out of options. > Any way to resolve this issue? > > I'm kinda desperate to get my system up and running again. > > System Specs: > AMD Duron 700 > Gigabyte GA-7IX Motherboard (quite old I know, but the PC just stood > there doing nothing :) > 3dfx Voodoo Banshee AGP Display (see M/B note) > RTL8139A NIC (dunno where I got this one) > RTL8139D NIC > Gigabyte GN-WPEAG Wifi NIC > 128MB Ram > 6GB HDD > > Thanx for all the help. > > Abrie Linvelt > Web Developer > About IT dot Web > Tel: +27 12 460 1000 (w) > Fax: +27 12 460 1000(w) > Mobile: +27 82 638 6345 > www.aboutitweb.co.za > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 16:33:18 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBE4D16A41C for ; Mon, 23 May 2005 16:33:18 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74AC343D1F for ; Mon, 23 May 2005 16:33:18 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4NGXDTH004309; Mon, 23 May 2005 11:33:13 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4NGXDOL004306; Mon, 23 May 2005 11:33:13 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 23 May 2005 11:33:13 -0500 (CDT) From: Tony Shadwick To: Lowell Gilbert In-Reply-To: <44ll66x863.fsf@be-well.ilk.org> Message-ID: <20050523112914.T47072@mail.goinet.com> References: <4291531B.6050906@houston.rr.com> <44ll66x863.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org, Ryan Winograd Subject: Re: nfs: fstab or automount/thread hijack X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 16:33:18 -0000 Hmm...hadn't really thought about the config you're suggesting of just mounting user's homes as needed. Quite the thought. :) I've always just mounted /home as a whole. Now you're going to have my mind running. I'm going to hijack this thread just a bit. Is anyone here other htan me having to deal with multiplatform issues with home directories? Example: I use Firefox on all of my machines as the default web browser. When mounting /home, one would think this would be a snap. It's not though. I believe Linux and FreeBSD place Firefox's prefs in ~/.mozilla/firefox. When it mounts on MacOS X, OS X goes looking for them in ~/Library/Application\ Support/Firefox. I tried to get smart about it and simply create a simlink, but it seems like the very structure of that directory gets messed up. I've tried doing something similar for Thunderbird as well, but I wanted to go one step at a time. If I get this working, then we'll work on my remotely mounted home on windows and my stored prefs. ;) The idea is to eventually have a relatively platform-inspecific home directory. Been working on it for ages. Anyway, just a thought. Tony On Mon, 23 May 2005, Lowell Gilbert wrote: > Ryan Winograd writes: > >> If I set up a network in which the /home directory is shared to all >> client computers, is it better to have the clients mount the nfs share >> in fstab or to let automount handle the mounting? What are the pros >> and cons of each? > > An automounter can let you mount each individual user's home directory > only as needed (and dismount it when it's not being used.). If you're > going to mount the whole tree, with the home directories for *all* of > the users, then you might as well do it once at the start and be done > with it. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 16:47:45 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6634716A41C for ; Mon, 23 May 2005 16:47:45 +0000 (GMT) (envelope-from mayday@gmx.net) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id A743943D4C for ; Mon, 23 May 2005 16:47:44 +0000 (GMT) (envelope-from mayday@gmx.net) Received: (qmail invoked by alias); 23 May 2005 16:47:43 -0000 Received: from p54A0A063.dip0.t-ipconnect.de (EHLO [192.168.2.5]) [84.160.160.99] by mail.gmx.net (mp021) with SMTP; 23 May 2005 18:47:43 +0200 X-Authenticated: #431110 From: Benjamin Sobotta To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 18:47:39 +0200 User-Agent: KMail/1.7.2 References: <4291C2A0.6030909@libero.it> In-Reply-To: <4291C2A0.6030909@libero.it> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505231847.39540.mayday@gmx.net> X-Y-GMX-Trusted: 0 Subject: Re: FreeBSD and Asus A7N8X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 16:47:45 -0000 Hi I don't know about your board but a quick search on google brought that link up: http://www.linorg.sc.usp.br/iso/FreeBSD/4.9/ If I were you I would definitely try 5.4. As far as I know alot of things were fixed. A more elaborate description of your problem might also yield better results on this list... Cheers... On Monday 23 May 2005 13:46, Peter wrote: > Hi! > I'm trying to install FreeBSD on my pc, but both 4.10 and 5.3, after > installation , block at first boot. > I know there is a problem whit my motherboard, ASUS A7N8X deluxe that it > is not supported by FreeBSD. > Can you tell me if 5.4 works on my motherboard? Or a site where I can > download 4.9 that may be the last working relase on my asus. > > Thank you and have a nice day! > > p.s. sorry for my english... > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Mon May 23 16:52:19 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C129B16A41C; Mon, 23 May 2005 16:52:19 +0000 (GMT) (envelope-from unixtools@hotmail.com) Received: from hotmail.com (bay21-f30.bay21.hotmail.com [65.54.233.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id A289943D4C; Mon, 23 May 2005 16:52:19 +0000 (GMT) (envelope-from unixtools@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 23 May 2005 09:52:19 -0700 Message-ID: Received: from 203.199.109.161 by by21fd.bay21.hotmail.msn.com with HTTP; Mon, 23 May 2005 16:52:18 GMT X-Originating-IP: [203.199.109.161] X-Originating-Email: [unixtools@hotmail.com] X-Sender: unixtools@hotmail.com From: "Sunil Sunder Raj" To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 16:52:18 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 23 May 2005 16:52:19.0210 (UTC) FILETIME=[C82EEEA0:01C55FB7] Cc: freebsd-isp@freebsd.org Subject: Freebsd pxeboot problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 16:52:19 -0000 Hi, Was trying to install freebsd 5.3 via pxeboot. The Dhcp server leases the Ip address, the tftp server is located fine and the pxeboot file gets downloaded at the client end. But this pxeboot is not getting the proper server path and gateway ip. It is always falling to the default /pxeroot server path (as programmed in the pxe.c file) and don't know where it gets the gateway ip as 192.168.102.1 Display I get ======== pxe_open: server addr: "This is proper. The Dhcp/Tftp server ip" pxe_open: server path: /pxeroot ----------------------- default server path. This is not what I defined in my dhcpd.conf pxe_open: gateway ip: 192.168.102.1 --------------- Don't know where it got it from. This is not what I defined in my dhcpd.conf \ Can't load 'kernel' Below is what I read in the pxe.c file ======================= /* * Do a bootp/dhcp request to find out where our * NFS/TFTP server is. Even if we dont get back * the proper information, fall back to the server * which brought us to life and a default rootpath. */ if (!rootpath[1]) strcpy(rootpath, PXENFSROOTPATH); Has anyone faced this problem. Regards Sunil Sunder Raj From owner-freebsd-questions@FreeBSD.ORG Mon May 23 17:07:59 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F69316A41C for ; Mon, 23 May 2005 17:07:59 +0000 (GMT) (envelope-from vizion@vizion.occoxmail.com) Received: from lakecmmtao04.coxmail.com (lakecmmtao04.coxmail.com [68.99.120.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id B84AF43D1D for ; Mon, 23 May 2005 17:07:58 +0000 (GMT) (envelope-from vizion@vizion.occoxmail.com) Received: from dns1 ([64.58.171.82]) by lakecmmtao04.coxmail.com (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20050523170757.LAVF3718.lakecmmtao04.coxmail.com@dns1> for ; Mon, 23 May 2005 13:07:57 -0400 From: Vizion To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 10:03:14 -0700 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505231003.14908.vizion@vizion.occoxmail.com> Subject: distfiles X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 17:07:59 -0000 Hi Does anyone happen to know the size of a full collection of distfiles? Presumably it could be obtained by cvsup using the command distfiles-all? I need to have an upto date collection on my system before I sail (do I need another harddrive David -- 40 yrs navigating and computing in blue waters. English Owner & Captain of British Registered 60' bluewater Ketch S/V Taurus. Currently in San Diego, CA. Sailing May bound for Europe via Panama Canal. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 17:08:41 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2161016A41C for ; Mon, 23 May 2005 17:08:41 +0000 (GMT) (envelope-from nalists@scls.lib.wi.us) Received: from mail.scls.lib.wi.us (mail.scls.lib.wi.us [198.150.40.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id D356A43D49 for ; Mon, 23 May 2005 17:08:38 +0000 (GMT) (envelope-from nalists@scls.lib.wi.us) Received: from [172.26.2.238] ([172.26.2.238]) by mail.scls.lib.wi.us (8.12.9p2/8.12.9) with ESMTP id j4NH8bXm076815; Mon, 23 May 2005 12:08:37 -0500 (CDT) (envelope-from nalists@scls.lib.wi.us) Message-ID: <42920DA0.6060506@scls.lib.wi.us> Date: Mon, 23 May 2005 12:06:40 -0500 From: Greg Barniskis User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Chad Leigh -- Shire.Net LLC" , freebsd-questions References: <5D64FC85-E26A-41A0-A685-A389D34138B9@shire.net> In-Reply-To: <5D64FC85-E26A-41A0-A685-A389D34138B9@shire.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: TCP/IP inside of one jail is hosed but other jails (same jail install) work fine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 17:08:41 -0000 Chad Leigh -- Shire.Net LLC wrote: > Hi > > I have a single install of FreeBSD that is used for jails and all > the jails share the basic install through read only partitions > mounted from this root install. (Obviously not the same install > as the running host). > > The problem jail has no TCP connectivity except that apache2 > works. Ie, the website is working that runs inside this jail. > sshd is running but you cannot connect to it with ssh with the > error in the logs > > May 23 09:37:57 xxxxxx sshd[96372]: fatal: Timeout before > authentication for 6x.1xx.4x.58 > > If I am inside the jail and do, for example, nslookup, I get > > # nslookup >> www.sun.com > ;; connection timed out; no servers could be reached >> I am no expert on jails, but the symptoms you describe suggest to me that TCP/IP is fine except that for processes inside the one jail, *DNS lookups* are broken. The local sshd wants to DNS lookup your SSH client IP and can't, but apache runs fine because it (probably) is not logging client host names, just IP nums. Check that jail's /etc/resolv.conf and/or its internal DNS server if it has one, or else the external DNS server(s) that it's configured to query, as well as any DNS-related firewall rules that may be in play. -- Greg Barniskis, Computer Systems Integrator South Central Library System (SCLS) Library Interchange Network (LINK) , (608) 266-6348 From owner-freebsd-questions@FreeBSD.ORG Mon May 23 17:21:59 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53E1216A41C for ; Mon, 23 May 2005 17:21:59 +0000 (GMT) (envelope-from guble@pixelpoint.dk) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id D66DA43D1F for ; Mon, 23 May 2005 17:21:58 +0000 (GMT) (envelope-from guble@pixelpoint.dk) X-T2-Posting-ID: l0rDDc5mDGSjGUH8ESq9gg== Received: from [83.72.6.59] (HELO [192.168.0.2]) by mailfe01.swip.net (CommuniGate Pro SMTP 4.3c5) with ESMTP id 378189090 for freebsd-questions@freebsd.org; Mon, 23 May 2005 19:21:57 +0200 Received: from 127.0.0.1 (AVG SMTP 7.0.322 [266.11.15]); Mon, 23 May 2005 19:22:24 +0200 Message-ID: <4292114F.50006@pixelpoint.dk> Date: Mon, 23 May 2005 19:22:23 +0200 From: Martin Kruse Jensen User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: multipart/mixed; boundary="------------040005020706090202010503" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Disk problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 17:21:59 -0000 This is a multi-part message in MIME format. --------------040005020706090202010503 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi I'm having some problems with my FreeBSD 5.3 server, running on an AMD using IDE disks. The disk is having some problems: # dmesg ad0: FAILURE - READ_DMA timed out ad0: TIMEOUT - READ_DMA retrying (2 retries left) LBA=18986207 ad0: FAILURE - READ_DMA timed out ad0: TIMEOUT - READ_DMA retrying (2 retries left) LBA=18986335 ...cut... ad0: FAILURE - READ_DMA timed out ad0: TIMEOUT - READ_DMA retrying (2 retries left) LBA=18973151 I'm suspecting some bad blocks, but how do i test for them, and mark them bad? I'm extremely new in FreeBSD so be gentle ;o) -- Sincerely yours Martin Kruse Jensen PixelPoint --------------040005020706090202010503-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 17:02:59 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 559B716A41C for ; Mon, 23 May 2005 17:02:59 +0000 (GMT) (envelope-from chad@shire.net) Received: from hobbiton.shire.net (hobbiton.shire.net [166.70.252.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id D515F43D48 for ; Mon, 23 May 2005 17:02:57 +0000 (GMT) (envelope-from chad@shire.net) Received: from [166.70.252.250] (helo=webmail.shire.net) by hobbiton.shire.net with esmtpa (Exim 4.43) id 1DaGKN-0001Ee-L1; Mon, 23 May 2005 11:02:57 -0600 Received: from c-67-161-222-227.hsd1.ut.comcast.net ([67.161.222.227]) (SquirrelMail authenticated user chad@shire.net) by webmail.shire.net with HTTP; Mon, 23 May 2005 11:02:55 -0600 (MDT) Message-ID: <18327.67.161.222.227.1116867775.squirrel@webmail.shire.net> In-Reply-To: <5D64FC85-E26A-41A0-A685-A389D34138B9@shire.net> References: <5D64FC85-E26A-41A0-A685-A389D34138B9@shire.net> Date: Mon, 23 May 2005 11:02:55 -0600 (MDT) From: chad@shire.net To: "Chad Leigh -- Shire.Net LLC" User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 X-Priority: 3 Importance: Normal X-SA-Exim-Connect-IP: 166.70.252.250 X-SA-Exim-Mail-From: chad@shire.net Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 3.0.0 (2004-09-13) on hobbiton.shire.net X-Spam-Status: No, score=1.0 required=5.0 tests=AWL,BAYES_50,NO_REAL_NAME autolearn=disabled version=3.0.0 X-Spam-Level: X-SA-Exim-Version: 4.1+cvs (built Mon, 23 Aug 2004 08:44:05 -0700) X-SA-Exim-Scanned: Yes (on hobbiton.shire.net) Cc: bsd List Subject: Re: TCP/IP inside of one jail is hosed but other jails (same jailinstall) work fine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 17:02:59 -0000 > Hi > > I am on 5.3-RELEASE with some of the patches (uname = FreeBSD > xxxxxx.org 5.3-RELEASE-p5 FreeBSD 5.3-RELEASE-p5 #5: Sun Apr 24 > 22:14:42 MDT 2005 chad@xxxxxxxxx.shire.net:/usr/obj/usr/src/sys/ > XXXXXXX-SMP i386) > > I have a single install of FreeBSD that is used for jails and all the > jails share the basic install through read only partitions mounted > from this root install. (Obviously not the same install as the > running host). > > The problem jail has no TCP connectivity except that apache2 works. > Ie, the website is working that runs inside this jail. sshd is > running but you cannot connect to it with ssh with the error in the logs ok, I fixed the problem. Turns out another machine on the net was misconfigured and had the same IP address as this jail. Thanks Chad From owner-freebsd-questions@FreeBSD.ORG Mon May 23 17:28:36 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 985B816A41C for ; Mon, 23 May 2005 17:28:36 +0000 (GMT) (envelope-from vizion@vizion.occoxmail.com) Received: from lakecmmtao05.coxmail.com (lakecmmtao05.coxmail.com [68.99.120.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A5F843D1F for ; Mon, 23 May 2005 17:28:35 +0000 (GMT) (envelope-from vizion@vizion.occoxmail.com) Received: from dns1 ([64.58.171.82]) by lakecmmtao05.coxmail.com (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20050523172834.JPUZ7226.lakecmmtao05.coxmail.com@dns1>; Mon, 23 May 2005 13:28:34 -0400 From: Vizion To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 10:23:51 -0700 User-Agent: KMail/1.8 References: <4291E0FD.2000501@att.net> <4291FE54.7040900@netfence.it> In-Reply-To: <4291FE54.7040900@netfence.it> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505231023.52320.vizion@vizion.occoxmail.com> Cc: Andrea Venturoli , Duane Winner Subject: Re: upgrading from 5.3 to 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 17:28:36 -0000 On Monday 23 May 2005 09:01, the author Andrea Venturoli contributed to the dialogue on Re: upgrading from 5.3 to 5.4: & Duane Winner wrote: & & > Has anybody done this yet? Any gotcha's, or is it a fairly smooth upgrade? & & It was a piece of cake to me. YMMV, as always :) I have held off from 5.3 > 5.4 because some people are reporting difficulties with java sdk's on 5.4 plus few other niggles. Until there is some certainty that those reports are no longer justified I would not make the jump myself. David -- 40 yrs navigating and computing in blue waters. English Owner & Captain of British Registered 60' bluewater Ketch S/V Taurus. Currently in San Diego, CA. Sailing May bound for Europe via Panama Canal. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:02:02 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A54116A41C for ; Mon, 23 May 2005 18:02:02 +0000 (GMT) (envelope-from cezar@arax.md) Received: from mail.arax.md (mail.arax.md [217.26.160.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7F4343D4C for ; Mon, 23 May 2005 18:02:00 +0000 (GMT) (envelope-from cezar@arax.md) Received: from qvirtual (helo=mail.arax.md) by mail.arax.md with local-smtp (Exim 4.43 (FreeBSD)) id 1DaHFq-000CYk-BM for freebsd-questions@freebsd.org; Mon, 23 May 2005 21:02:18 +0300 Received: from cezar.arax.md ([217.26.161.51]) by mail.arax.md with esmtp (Exim 4.43 (FreeBSD)) id 1DaHFq-000CYf-72 for freebsd-questions@freebsd.org; Mon, 23 May 2005 21:02:18 +0300 Date: Mon, 23 May 2005 21:02:36 +0300 From: Cezar Fistik X-Mailer: The Bat! (v3.0.1.33) Professional X-Priority: 3 (Normal) Message-ID: <193219855.20050523210236@arax.md> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: HighPoint RocketRAID 1640 support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: arax List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:02:02 -0000 Hello all, I saw on the manufacturer's site that this board is supported under FreeBSD, but the hptmv man page says that only 182x boards are supported. Can anyone confirm a successful instalation of 1640 on FreeBSD? Thanks a lot. -- Cezar mailto:cezar@arax.md From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:02:02 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70CF216A41F for ; Mon, 23 May 2005 18:02:02 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18D0C43D49 for ; Mon, 23 May 2005 18:02:02 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin01-en2 [10.13.10.146]) by smtpout.mac.com (Xserve/8.12.11/smtpout13/MantshX 4.0) with ESMTP id j4NI1xot000499; Mon, 23 May 2005 11:02:01 -0700 (PDT) Received: from [10.1.1.245] (nfw2.codefab.com [199.103.21.225] (may be forged)) (authenticated bits=0) by mac.com (Xserve/smtpin01/MantshX 4.0) with ESMTP id j4NI1wdB021438; Mon, 23 May 2005 11:01:59 -0700 (PDT) In-Reply-To: <200505231003.14908.vizion@vizion.occoxmail.com> References: <200505231003.14908.vizion@vizion.occoxmail.com> Mime-Version: 1.0 (Apple Message framework v622) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <308aee5989627f3ea158cfd02e768c55@mac.com> Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Mon, 23 May 2005 14:01:57 -0400 To: Vizion X-Mailer: Apple Mail (2.622) Cc: freebsd-questions@freebsd.org Subject: Re: distfiles X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:02:02 -0000 On May 23, 2005, at 1:03 PM, Vizion wrote: > Does anyone happen to know the size of a full collection of distfiles? About 25 to 30 GB. > Presumably it could be obtained by cvsup using the command > distfiles-all? No, cvsup deals with the ports skeleton itself, not with the distfiles. Try: cd /usr/ports make fetch ...and be prepared to wait and consume excessive disk space... -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:15:29 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB44D16A41C; Mon, 23 May 2005 18:15:29 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from mh2.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C5CC43D1F; Mon, 23 May 2005 18:15:28 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [10.177.171.220] (neutrino.centtech.com [10.177.171.220]) by mh2.centtech.com (8.13.1/8.13.1) with ESMTP id j4NIFRBC015903; Mon, 23 May 2005 13:15:27 -0500 (CDT) (envelope-from anderson@centtech.com) Message-ID: <42921DB4.3080607@centtech.com> Date: Mon, 23 May 2005 13:15:16 -0500 From: Eric Anderson User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.7) Gecko/20050504 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sunil Sunder Raj References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-isp@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Freebsd pxeboot problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:15:29 -0000 Sunil Sunder Raj wrote: > Hi, > Was trying to install freebsd 5.3 via pxeboot. The Dhcp server leases > the Ip address, the tftp server is located fine and the pxeboot file > gets downloaded at the client end. But this pxeboot is not getting the > proper server path and gateway ip. > > It is always falling to the default /pxeroot server path (as programmed > in the pxe.c file) and don't know where it gets the gateway ip as > 192.168.102.1 > > Display I get > ======== > pxe_open: server addr: "This is proper. The Dhcp/Tftp server ip" > pxe_open: server path: /pxeroot ----------------------- default server > path. This is not what I defined in my dhcpd.conf > pxe_open: gateway ip: 192.168.102.1 --------------- Don't know where it > got it from. This is not what I defined in my dhcpd.conf Can you send the relevant dhcp conf section? Eric -- ------------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology A lost ounce of gold may be found, a lost moment of time never. ------------------------------------------------------------------------ From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:18:22 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96D7816A41C for ; Mon, 23 May 2005 18:18:22 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D20E43D49 for ; Mon, 23 May 2005 18:18:21 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so2068164wra for ; Mon, 23 May 2005 11:18:21 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=UNUBjxOOF2aGvoxIPQZ43agogfzixx9DCIXmtlNXjFfNE7U0HVOYWzyzpDWSeUNCJnZIHiM0BS4Ff1tLseMaI4Fj9s+fICuE0KHxrK2xunyu35Hxo3KqaEv2zdIciijn6hV0UGcw3dt+KzUu5U7UhFK/8vekLY1sHb5kGSMoTBU= Received: by 10.54.117.4 with SMTP id p4mr3636315wrc; Mon, 23 May 2005 11:18:20 -0700 (PDT) Received: by 10.54.71.9 with HTTP; Mon, 23 May 2005 11:18:19 -0700 (PDT) Message-ID: <781e2bc005052311184e1a7a4e@mail.gmail.com> Date: Mon, 23 May 2005 11:18:19 -0700 From: Benjamin Keating To: ananth_g@sifycorp.com In-Reply-To: <4291773D.6060509@sifycorp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <42916690.1030205@gmail.com> <6.1.0.6.2.20050522222459.05956bc0@cobalt.antimatter.net> <4291773D.6060509@sifycorp.com> Cc: freebsd-questions@freebsd.org, Glenn Dawson Subject: Re: syslog messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Benjamin Keating List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:18:22 -0000 I usually do (as root): $ echo > ~/.forward this way sendmail and it's conf remain the same. less modification and changes can be easily found. On 5/22/05, ananth_g@sifycorp.com wrote: > thanks glenn, > it worked >=20 > regrds, > ananth.g >=20 > Glenn Dawson wrote: >=20 > > At 10:13 PM 5/22/2005, you wrote: > > > >> hi, > >> when i get an error or warning in my system, a mail is sent to the > >> root user. > >> does anyone know how to change the settings so that the mail is sent t= o > >> my mail id instead of localhost id ? > > > > > > Just change where the root alias in /etc/mail/aliases points to. > > > > for example: > > > > root: user@domain.com > > > > don't forget to run newaliases after you make the change. > > > > (this all assumes you're using sendmail) > > > > -Glenn > > > >> thanks guys. > >> regrds, > >> ananth.g > >> _______________________________________________ > >> 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" > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:08:48 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC0AA16A41C for ; Mon, 23 May 2005 18:08:48 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail23.sea5.speakeasy.net (mail23.sea5.speakeasy.net [69.17.117.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E3CA43D49 for ; Mon, 23 May 2005 18:08:46 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 11655 invoked from network); 23 May 2005 18:08:46 -0000 Received: by simscan 1.1.0 ppid: 11583, pid: 11651, t: 0.1505s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail23.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2005 18:08:46 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id BA80A30; Mon, 23 May 2005 14:08:43 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Tony Shadwick To: FreeBSD References: <42900CC6.4090701@ctzen.com> <44wtpq13lu.fsf@be-well.ilk.org> <20050523093759.M47072@mail.goinet.com> From: Lowell Gilbert Date: 23 May 2005 14:08:43 -0400 In-Reply-To: <20050523093759.M47072@mail.goinet.com> Message-ID: <44u0ktzufo.fsf@be-well.ilk.org> Lines: 30 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: Re: Is this possible ? inherit group permissions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:08:48 -0000 Tony Shadwick writes: > On Mon, 23 May 2005, Lowell Gilbert wrote: > > > cs writes: > > > >> For a directory, e.g. foo/, if I chmod 775 foo/, is it possible for > >> newly created files and directories under foo/ to automagically > >> inherit the group permissions of foo ? > >> > >> e.g. > >> touch foo/test would be rw-rw-r-- > >> mkdir foo/sub would be rwxrwxr-x > >> > >> I am looking for a non umask solution. > >> > >> I seem to remember in debian, I was able to make the group permissions > >> of the parent directory special for this magic to occur. > >> > >> I wonder if there is something similar in FBSD. > > > > If you set the suid bit, both owner *and* group will be set. > I'll have to remember that one. So if /home is a filesystem unto > itself, if you set the suid bit on /home, all further creation beneath > it will inherit the permissions you set above? Only *directly* underneath it. Obviously you wouldn't want to do that for /home, but I find it quite useful on shared project directories and the like. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:13:00 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0BC916A41C for ; Mon, 23 May 2005 18:13:00 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id A206B43D1F for ; Mon, 23 May 2005 18:13:00 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so2066095wra for ; Mon, 23 May 2005 11:12:59 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=gVGiFSunX3OzveYO+kZcLtv7XJ7P/VkSRJctfvOZ1eZaE/OmVU16yi22ZHqT5PbzBGQfwzCkYj7qpQH9xeLspoAdcKrKndO39e3NY70SMmlzj5SqMtPNc9NCPPRHbVHlgVzMjAASKxKUevMwZVUTYvcQWM8u2m8OBymoniXfXXU= Received: by 10.54.41.42 with SMTP id o42mr3007958wro; Mon, 23 May 2005 11:12:59 -0700 (PDT) Received: by 10.54.71.9 with HTTP; Mon, 23 May 2005 11:12:59 -0700 (PDT) Message-ID: <781e2bc0050523111214a8ff5@mail.gmail.com> Date: Mon, 23 May 2005 11:12:59 -0700 From: Benjamin Keating To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Tuning Hard Disks X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Benjamin Keating List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:13:01 -0000 Hey all, I'd like to tweak my drives / view there current configurations. I get really slow xfers from two machine in the same, quite, LAN (both running FBSD 5.4 with good Intell Pro100 NICS). Im not sure if DMA is enabled or not so I'd like to start with figuring out what to use to view this info. Anything like hdparm? I did a apropos on `dma` but didn't find what I'm looking for. thx From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:14:12 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5ED9B16A41C for ; Mon, 23 May 2005 18:14:12 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail25.sea5.speakeasy.net (mail25.sea5.speakeasy.net [69.17.117.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2770A43D49 for ; Mon, 23 May 2005 18:14:12 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 3431 invoked from network); 23 May 2005 18:14:11 -0000 Received: by simscan 1.1.0 ppid: 3377, pid: 3429, t: 0.1332s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail25.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2005 18:14:11 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 894C930; Mon, 23 May 2005 14:14:10 -0400 (EDT) Sender: lowell@be-well.ilk.org To: freebsd-questions@freebsd.org References: <4292114F.50006@pixelpoint.dk> From: Lowell Gilbert Date: 23 May 2005 14:14:10 -0400 In-Reply-To: <4292114F.50006@pixelpoint.dk> Message-ID: <44psvhzu6l.fsf@be-well.ilk.org> Lines: 23 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: Disk problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:14:12 -0000 Martin Kruse Jensen writes: > I'm having some problems with my FreeBSD 5.3 server, running on an AMD > using IDE disks. The disk is having some problems: > # dmesg > ad0: FAILURE - READ_DMA timed out > ad0: TIMEOUT - READ_DMA retrying (2 retries left) LBA=18986207 > ad0: FAILURE - READ_DMA timed out > ad0: TIMEOUT - READ_DMA retrying (2 retries left) LBA=18986335 > ...cut... > ad0: FAILURE - READ_DMA timed out > ad0: TIMEOUT - READ_DMA retrying (2 retries left) LBA=18973151 > > I'm suspecting some bad blocks, but how do i test for them, and mark > them bad? > I'm extremely new in FreeBSD so be gentle ;o) "What do I do when I have bad blocks on my hard drive?" http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/troubleshoot.html#AWRE But in this case, it doesn't look like bad blocks to me. Much more like electronics problems. [Have you opened the case lately? Try replacing the ATA cable.] From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:25:04 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6725416A41C for ; Mon, 23 May 2005 18:25:04 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14DB343D1D for ; Mon, 23 May 2005 18:25:03 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from barbish ([69.172.31.81]) by mta11.adelphia.net (InterMail vM.6.01.04.01 201-2131-118-101-20041129) with SMTP id <20050523182502.WVDO13270.mta11.adelphia.net@barbish>; Mon, 23 May 2005 14:25:02 -0400 From: "fbsd_user" To: "Martin Kruse Jensen" , Date: Mon, 23 May 2005 14:24:56 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <4292114F.50006@pixelpoint.dk> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal Cc: Subject: RE: Disk problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd_user@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:25:04 -0000 Back up those HD right now before you lose all the data and then replace them with new ones. There is nothing you can do with them in FreeBSD. Check the HD mfg web site for daig program which runs under ms/dos. But in most cases this daig program will just confirm HD has bad sectors and tell you to replace the bad HD with new one. Check mfg product warrantee, if HD is less than 3 years old mfg will swap your bad HD for new one. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Martin Kruse Jensen Sent: Monday, May 23, 2005 1:22 PM To: freebsd-questions@freebsd.org Subject: Disk problems Hi I'm having some problems with my FreeBSD 5.3 server, running on an AMD using IDE disks. The disk is having some problems: # dmesg ad0: FAILURE - READ_DMA timed out ad0: TIMEOUT - READ_DMA retrying (2 retries left) LBA=18986207 ad0: FAILURE - READ_DMA timed out ad0: TIMEOUT - READ_DMA retrying (2 retries left) LBA=18986335 ...cut... ad0: FAILURE - READ_DMA timed out ad0: TIMEOUT - READ_DMA retrying (2 retries left) LBA=18973151 I'm suspecting some bad blocks, but how do i test for them, and mark them bad? I'm extremely new in FreeBSD so be gentle ;o) -- Sincerely yours Martin Kruse Jensen PixelPoint From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:33:39 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24EFD16A41C for ; Mon, 23 May 2005 18:33:39 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCCCA43D48 for ; Mon, 23 May 2005 18:33:38 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 972655138D; Mon, 23 May 2005 11:34:26 -0700 (PDT) Date: Mon, 23 May 2005 11:34:26 -0700 From: Kris Kennaway To: Warren Block Message-ID: <20050523183426.GA95744@xor.obsecurity.org> References: <199901041430.03854.paul.klatt@sbcglobal.net> <20050522210852.Y32033@wonkity.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline In-Reply-To: <20050522210852.Y32033@wonkity.com> User-Agent: Mutt/1.4.2.1i Cc: paul klatt , freebsd-questions@freebsd.org Subject: Re: virtual desktop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:33:39 -0000 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 22, 2005 at 09:19:40PM -0600, Warren Block wrote: > On Mon, 4 Jan 1999, paul klatt wrote: >=20 > >Could anyone please help me get my virtual desktop configured, I am havi= ng > >problems wheere the desktop is to large for the monitor . I have tried c= trl > >alt + and htis has no effect. When I go into /stand/sysinstall configure > >xfree86 server and than xfree86 graphical configuration ctrl alt + seems= to > >be working in this part of the system. I woold appreciate the help in=20 > >getting > >my system configured >=20 > [ Unless it is really 1999 where you are, please set your system clock=20 > to the correct date. ] I've asked him 4 times already, so I guess he isn't actually reading responses to the emails he posts :( Kris --17pEHd4RhPHOinZp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkiIyWry0BWjoQKURAjghAKCgKc0QyJ/7UOVChjyIcFHE4hbdGwCeIicu GW8g2JJLivl9aDnD8Mx4COs= =Fusy -----END PGP SIGNATURE----- --17pEHd4RhPHOinZp-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:36:43 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DE8816A478 for ; Mon, 23 May 2005 18:36:43 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A2F543D48 for ; Mon, 23 May 2005 18:36:39 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 883625138D; Mon, 23 May 2005 11:37:26 -0700 (PDT) Date: Mon, 23 May 2005 11:37:26 -0700 From: Kris Kennaway To: Tim Message-ID: <20050523183726.GB95744@xor.obsecurity.org> References: <20050523125903.10211.qmail@web25607.mail.ukl.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="K8nIJk4ghYZn606h" Content-Disposition: inline In-Reply-To: <20050523125903.10211.qmail@web25607.mail.ukl.yahoo.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: How to update to latest packages with pkg_add and keep system source stable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:36:43 -0000 --K8nIJk4ghYZn606h Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 23, 2005 at 02:59:03PM +0200, Tim wrote: > Hello > =20 > I am a new FreeBSD user. I have installed the latest production release 5= .4.=20 > =20 > =20 > Two questions I have are: > =20 > 1. How do I update to the newest binary packages without using > ports? I have a slow computer so compling through ports is not > fun. When I now do a pkg_add -r firefox I get version 1.0.3 and not > 1.0.4 which I've seen exists as a binary package via the web > inteface. No new packages are ever produced for -release versions of FreeBSD. However, you can use the packages-stable packages, which will almost always work on the most recent release. See the pkg_add manpage and ftp site for the relevant environment variables and location. > 2. I want a stable system. I understand that upgrading system source > to FreeBSD-STABLE is in fact not stable at all. So what efficient > method exists to keep my system secure and stable? Track the release branch. See the handbook for detailed information. Kris P.S. please wrap your lines at 70 characters so your emails may be easily read. --K8nIJk4ghYZn606h Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkiLmWry0BWjoQKURAnLhAKD0FAdmJdYAvJyp1KhCTcFjxcwPTwCeIrfP TvojOvdDk0fvQdfBf4lRX7A= =GLdr -----END PGP SIGNATURE----- --K8nIJk4ghYZn606h-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:37:35 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 940CD16A420 for ; Mon, 23 May 2005 18:37:35 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4711943D49 for ; Mon, 23 May 2005 18:37:35 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1D86A513D7; Mon, 23 May 2005 11:38:23 -0700 (PDT) Date: Mon, 23 May 2005 11:38:23 -0700 From: Kris Kennaway To: Vizion Message-ID: <20050523183822.GC95744@xor.obsecurity.org> References: <200505231003.14908.vizion@vizion.occoxmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CblX+4bnyfN0pR09" Content-Disposition: inline In-Reply-To: <200505231003.14908.vizion@vizion.occoxmail.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: distfiles X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:37:35 -0000 --CblX+4bnyfN0pR09 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 23, 2005 at 10:03:14AM -0700, Vizion wrote: > Hi >=20 > Does anyone happen to know the size of a full collection of distfiles? About 15-20GB =20 > Presumably it could be obtained by cvsup using the command distfiles-all? No. Kris --CblX+4bnyfN0pR09 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkiMeWry0BWjoQKURAhqUAJ9kbYNw1ywxOoKnPB1D2bYJUxeYZwCfVp++ y+vfnwC/iMqEGBlynXZnpJ4= =k2Hl -----END PGP SIGNATURE----- --CblX+4bnyfN0pR09-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:47:40 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2797116A41C for ; Mon, 23 May 2005 18:47:40 +0000 (GMT) (envelope-from gpeel@thenetnow.com) Received: from constellation.thenetnow.com (thenetnow.com [69.90.69.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id D264143D48 for ; Mon, 23 May 2005 18:47:39 +0000 (GMT) (envelope-from gpeel@thenetnow.com) Received: from hpeel.ody.ca ([216.240.12.2] helo=GRANT) by constellation.thenetnow.com with esmtpa (Exim 4.43) id 1DaHxg-000Cb3-TE for freebsd-questions@freebsd.org; Mon, 23 May 2005 14:47:37 -0400 Message-ID: <000501c55fc7$e4f10ae0$6601a8c0@GRANT> From: "Grant Peel" To: Date: Mon, 23 May 2005 14:47:36 -0400 Organization: The Net Now MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Subject: Fetch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:47:40 -0000 Hi all, I recently installed 5.2.1 Release on a nice new box. everything works except I cant Fetch any port. "Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again." Getting this message on almost every port. Any ideas? -Grant From owner-freebsd-questions@FreeBSD.ORG Mon May 23 18:55:30 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F072B16A41C for ; Mon, 23 May 2005 18:55:30 +0000 (GMT) (envelope-from leblanc@keyslapper.net) Received: from camomile.cloud9.net (camomile.cloud9.net [168.100.1.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4F8C43D48 for ; Mon, 23 May 2005 18:55:30 +0000 (GMT) (envelope-from leblanc@keyslapper.net) Received: from camomile.cloud9.net (localhost.cloud9.net [127.0.0.1]) by camomile.cloud9.net (Postfix) with SMTP id F33D15520 for ; Mon, 23 May 2005 14:55:27 -0400 (EDT) Received: from keyslapper.net (250-119.customer.cloud9.net [168.100.250.119]) by camomile.cloud9.net (Postfix) with ESMTP id 33A0854E8 for ; Mon, 23 May 2005 14:55:27 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by keyslapper.net (Postfix) with ESMTP id 865551153E for ; Mon, 23 May 2005 14:55:25 -0400 (EDT) Received: from keyslapper.net ([127.0.0.1]) by localhost (keyslapper.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 45705-05 for ; Mon, 23 May 2005 14:55:17 -0400 (EDT) Received: by keyslapper.net (Postfix, from userid 1001) id CC7FD11529; Mon, 23 May 2005 14:55:17 -0400 (EDT) Date: Mon, 23 May 2005 14:55:17 -0400 From: Louis LeBlanc To: FreeBSD Questions Message-ID: <20050523185517.GC44534@keyslapper.net> Mail-Followup-To: FreeBSD Questions Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline X-PGP-Key: http://www.keyslapper.net/~leblanc/leblanc-at-keyslapper-net.asc User-Agent: Mutt/1.5.9i X-Virus-Scanned: amavisd-new at keyslapper.net X-AntiVirus: Checked by Vexira Antivirus v1.5 Cc: Subject: tracking down network load? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 18:55:31 -0000 I have a strange question. Well, maybe not so strange. I am working on my 5.3 RELEASE system, and I notice my network monitor on gkrellm is showing unexplained loads (15/23Kbps sustained) in traffic on the external interface. I'm not too concerned that this is a security breach, but I do notice at least one ESTABLISHED connection that I can't explain (it goes back to AOL, which naturally sows a little mistrust). Anyway, how to I find the actual process (server or otherwise) on my end that is handling a given connection, and what kind of load it is handling? TIA Lou -- Louis LeBlanc FreeBSD-at-keyslapper-DOT-net Fully Funded Hobbyist, KeySlapper Extrordinaire :) Please send off-list email to: leblanc at keyslapper d.t net Key fingerprint = C5E7 4762 F071 CE3B ED51 4FB8 AF85 A2FE 80C8 D9A2 Egotism, n: Doing the New York Times crossword puzzle with a pen. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 19:06:07 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96CBA16A41C for ; Mon, 23 May 2005 19:06:07 +0000 (GMT) (envelope-from scott@maxify.com) Received: from vertigo.maxify.com (ns.maxify.com [216.218.213.18]) by mx1.FreeBSD.org (Postfix) with SMTP id 6A56E43D48 for ; Mon, 23 May 2005 19:06:05 +0000 (GMT) (envelope-from scott@maxify.com) Received: (qmail 32963 invoked from network); 23 May 2005 19:14:29 -0000 Received: from unknown (HELO ?66.92.188.147?) (66.92.188.147) by ns.maxify.com with SMTP; 23 May 2005 19:14:29 -0000 Mime-Version: 1.0 (Apple Message framework v728) Content-Transfer-Encoding: 7bit Message-Id: <62547055-57AF-4695-9EB7-CA7CB4BB4232@maxify.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: freebsd-questions@freebsd.org From: Scott Stevenson Date: Mon, 23 May 2005 12:04:53 -0700 X-Mailer: Apple Mail (2.728) Subject: Some HTTP clients only receive first 4k X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 19:06:07 -0000 This is a follow-up to a post back in February. Summary: Certain HTTP clients only receive partial file contents. The majority of visitors have no problems, but those that do seem to experience it 100% of the time. After looking into this further, I've discovered some interesting data points: 1. Affected clients consistently receive only the first 4096 bytes of .html and .css files. After that, they encounter a single garbage character (looks like a memory stomp), and then nothing. 2. At least two of the sites hosted on the machine are affected. 3. The issue can be reproduced via the W3 validator: The bottom of this page shows the first 4k that was successfully fetched. It stops right in the middle of a tag. The same thing happens with this css file: 4. At least in the case of the validator, the requests don't show up in Apache's access or error logs! This is consistently reproducible. 5. For some reason, clients consistently only get to byte 3883 (or perhaps 3884) in .php files, and then get the garbage character. These same sites were previously running on the same network with the same version of apache. I've done hours of googling and also searched the freebsd-questions mailing list archives. I've gone out of my way to keep the installation as vanilla as possible. The system configuration is essentially: FreeBSD 5.3-Release Apache 2.0.50 PHP 5.0.2 Thanks, - Scott From owner-freebsd-questions@FreeBSD.ORG Mon May 23 19:35:26 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E81316A41C for ; Mon, 23 May 2005 19:35:26 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED2B243D48 for ; Mon, 23 May 2005 19:35:25 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.3) id j4NJZPCH070343 for freebsd-questions@FreeBSD.org; Mon, 23 May 2005 14:35:25 -0500 (CDT) (envelope-from dan) Date: Mon, 23 May 2005 14:35:25 -0500 From: Dan Nelson To: FreeBSD Questions Message-ID: <20050523193524.GC16069@dan.emsphone.com> References: <20050523185517.GC44534@keyslapper.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050523185517.GC44534@keyslapper.net> X-OS: FreeBSD 5.4-STABLE X-message-flag: Outlook Error User-Agent: Mutt/1.5.9i Cc: Subject: Re: tracking down network load? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 19:35:26 -0000 In the last episode (May 23), Louis LeBlanc said: > I have a strange question. Well, maybe not so strange. > > I am working on my 5.3 RELEASE system, and I notice my network > monitor on gkrellm is showing unexplained loads (15/23Kbps sustained) > in traffic on the external interface. > > I'm not too concerned that this is a security breach, but I do notice > at least one ESTABLISHED connection that I can't explain (it goes > back to AOL, which naturally sows a little mistrust). > > Anyway, how to I find the actual process (server or otherwise) on my > end that is handling a given connection, and what kind of load it is > handling? sockstat or "lsof -i" will tell you which sockets belong to which processes, and tcpdump or any of a dozen or so programs in ports will give you detailed network usage. Start with trafshow and iftop. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Mon May 23 19:48:40 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9097316A41C; Mon, 23 May 2005 19:48:40 +0000 (GMT) (envelope-from aman@chamkila.org) Received: from manak.chamkila.org (node-40240ed2.sjc.onnet.us.uu.net [64.36.14.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id E767B43D1F; Mon, 23 May 2005 19:48:39 +0000 (GMT) (envelope-from aman@chamkila.org) Received: from [192.168.96.202] ([69.36.228.194]) by manak.chamkila.org (8.12.10/8.12.10) with ESMTP id j4NJhhXH016888; Mon, 23 May 2005 12:43:44 -0700 Message-ID: <42923329.7040407@chamkila.org> Date: Mon, 23 May 2005 12:46:49 -0700 From: Amandeep User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org, freebsd-hackers@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 19:48:40 -0000 Hi all, I am instalaling FreeBSD 5.3 AMD 64 bit with 6- 200GB drives. Using Higpoint 1820A controller and doing RAID 10. I am using drivers for the card from Highpoint Web. The problem is when I make the partitions and the machine tries to format the partitions it says: unable to find device node for /dev/da0s1b under /dev! and then it comes out. Any ideas what is going on. Also tried making two slices no luck. Thanks in advance. A From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:03:54 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0497916A41C for ; Mon, 23 May 2005 20:03:54 +0000 (GMT) (envelope-from ckleski@mbc.edu) Received: from mbc.edu (mail.mbc.edu [216.57.240.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 979E143D1D for ; Mon, 23 May 2005 20:03:53 +0000 (GMT) (envelope-from ckleski@mbc.edu) Received: from [10.0.1.129] by mbc.edu (Cipher TLSv1:RC4-MD5:128) (MDaemon.PRO.v8.0.3b.R) with ESMTP id md50005105494.msg for ; Mon, 23 May 2005 16:03:34 -0400 X-ClamMD-Processed: mbc.edu Mon, 23 May 2005 16:03:34 -0400 (ClamMD Version: 1.00.T - 58 days left in trial.) From: Craig Kleski To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 16:05:21 +0000 User-Agent: KMail/1.8 References: <781e2bc0050523111214a8ff5@mail.gmail.com> In-Reply-To: <781e2bc0050523111214a8ff5@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505231605.21241.ckleski@mbc.edu> X-SortMonster-MessageSniffer-Message: md50005105494.msg X-SortMonster-MessageSniffer-Rules: tgibseut-MDPv0.53b (SNFv2-3.1i2) No patterns matched. X-SortMonster-MessageSniffer-Result: 0 X-Authenticated-Sender: ckleski@mbc.edu X-Spam-Processed: mail.mbc.edu, Mon, 23 May 2005 16:03:34 -0400 (not processed: message from trusted or authenticated source) X-Lookup-Warning: HELO/EHLO lookup on 10.0.1.129 does not match 216.12.19.185 X-MDRemoteIP: 216.12.19.185 X-Return-Path: ckleski@mbc.edu X-MDaemon-Deliver-To: freebsd-questions@freebsd.org X-MDAV-Processed: mail.mbc.edu, Mon, 23 May 2005 16:03:36 -0400 Subject: Re: Tuning Hard Disks X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:03:54 -0000 On Monday 23 May 2005 06:12 pm, Benjamin Keating wrote: > Hey all, > > I'd like to tweak my drives / view there current configurations. I get > really slow xfers from two machine in the same, quite, LAN (both > running FBSD 5.4 with good Intell Pro100 NICS). Im not sure if DMA is > enabled or not so I'd like to start with figuring out what to use to > view this info. Anything like hdparm? > > I did a apropos on `dma` but didn't find what I'm looking for. > > thx > _______________________________________________ > 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" Try tuning(7). From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:14:24 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A722116A41C for ; Mon, 23 May 2005 20:14:24 +0000 (GMT) (envelope-from cs-fbsd@ctzen.com) Received: from mail.ctzen.com (mail.ctzen.com [204.11.33.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C96B43D1F for ; Mon, 23 May 2005 20:14:24 +0000 (GMT) (envelope-from cs-fbsd@ctzen.com) Received: from [10.50.4.40] (unknown [64.94.244.50]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.ctzen.com (Postfix) with ESMTP id 40F991BAC24 for ; Mon, 23 May 2005 16:14:23 -0400 (EDT) Message-ID: <4292399E.30107@ctzen.com> Date: Mon, 23 May 2005 16:14:22 -0400 From: cs User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD References: <42900CC6.4090701@ctzen.com> <44wtpq13lu.fsf@be-well.ilk.org> <20050523093759.M47072@mail.goinet.com> <44u0ktzufo.fsf@be-well.ilk.org> In-Reply-To: <44u0ktzufo.fsf@be-well.ilk.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Is this possible ? inherit group permissions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:14:24 -0000 Lowell Gilbert wrote: > Tony Shadwick writes: > > >>On Mon, 23 May 2005, Lowell Gilbert wrote: >> >> >>>cs writes: >>> >>> >>>>For a directory, e.g. foo/, if I chmod 775 foo/, is it possible for >>>>newly created files and directories under foo/ to automagically >>>>inherit the group permissions of foo ? >>>> >>>>e.g. >>>>touch foo/test would be rw-rw-r-- >>>>mkdir foo/sub would be rwxrwxr-x >>>> >>>>I am looking for a non umask solution. >>>> >>>>I seem to remember in debian, I was able to make the group permissions >>>>of the parent directory special for this magic to occur. >>>> >>>>I wonder if there is something similar in FBSD. >>> >>>If you set the suid bit, both owner *and* group will be set. > > >>I'll have to remember that one. So if /home is a filesystem unto >>itself, if you set the suid bit on /home, all further creation beneath >>it will inherit the permissions you set above? > > > Only *directly* underneath it. Obviously you wouldn't want to do that > for /home, but I find it quite useful on shared project directories > and the like. If you are talking about inheriting group identity, that is not what I am asking for. I believe this is automagic under fbsd, e.g. mkdir foo chgrp somegroup foo touch foo/foofile mkdir foo/foodir foo/foofile and foo/foodir will have gid somegroup (without any suid or sgid). What I am more interested in is inherting group permissions. For example, I have a directory /var/www/foosite, which allows several different users to maintain it. One way to do it is to use a common account for all the users to maintain foosite. But it is "too loose" in accountability. Going full version control (cvs/subversion) is not really desired for me because it's not a "mission critical" thing. What I would like to do is create a group (say foogroup), assign all maintainers to the group, chgrp foogroup /var/www/foosite, and chmod g+w /var/www/foosite. Here is the "fun" part. User umask is 022 (which I would like to maintain). touch foosite/foofile mkdir foosite/foodir would render those new file/dir NOT group writable. umask 002 would make them group writable BUT it is a "global" setting and would affect other parts of the file system as well (e.g. user's home). Plus not all users are savvy enough to do umask 002 / umask 022 whenever necessary. I am looking for an "elegant" solution which I doubt I will find. After some thoughs, this is my "compromized" solution. The users will maintain foosite via ftp (within a VPN), and I use vsftpd and set the ftp umask to 002. -cs From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:16:06 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38BCC16A41C; Mon, 23 May 2005 20:16:06 +0000 (GMT) (envelope-from jack@raats.xs4all.nl) Received: from zeus.jarasoft.net (raats.xs4all.nl [80.126.151.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC02543D48; Mon, 23 May 2005 20:16:05 +0000 (GMT) (envelope-from jack@raats.xs4all.nl) Received: from zeus.jarasoft.net (localhost [127.0.0.1]) by zeus.jarasoft.net (Postfix) with ESMTP id DE471AAE9; Mon, 23 May 2005 22:16:03 +0200 (CEST) Received: from jara2 (jara-2.raats.xs4all.nl [10.0.0.157]) by zeus.jarasoft.net (Postfix) with ESMTP id AF9ADAADE; Mon, 23 May 2005 22:16:03 +0200 (CEST) Message-ID: <000a01c55fd4$5205e270$9d00000a@jara2> From: "Jack Raats" To: , "FreeBSD Stable" Date: Mon, 23 May 2005 22:16:36 +0200 Organization: Jack Raats MIME-Version: 1.0 X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Virus-Scanned: ClamAV using ClamSMTP Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: rl0: discard oversize frame X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jack Raats List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:16:06 -0000 I'm running FreeBSD 5.4-STABLE. At this moment I'm getting all kind of = network losses due to the error rl0: discard oversize frame Google showed that a lot of PC suffers form this, but I didn't fine the = cure :-( Can anyone help me with a cure? Met vriendelijke groeten Jack Raats From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:16:16 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDDB616A420 for ; Mon, 23 May 2005 20:16:16 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id A43F243D48 for ; Mon, 23 May 2005 20:16:16 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D2136513D7; Mon, 23 May 2005 13:17:03 -0700 (PDT) Date: Mon, 23 May 2005 13:17:03 -0700 From: Kris Kennaway To: Grant Peel Message-ID: <20050523201703.GA26732@xor.obsecurity.org> References: <000501c55fc7$e4f10ae0$6601a8c0@GRANT> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline In-Reply-To: <000501c55fc7$e4f10ae0$6601a8c0@GRANT> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: Fetch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:16:17 -0000 --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 23, 2005 at 02:47:36PM -0400, Grant Peel wrote: > Hi all, >=20 > I recently installed 5.2.1 Release on a nice new box. everything works=20 > except I cant Fetch any port. >=20 > "Couldn't fetch it - please try to retrieve this > >>port manually into /usr/ports/distfiles/ and try again." >=20 > Getting this message on almost every port. >=20 > Any ideas? Fix your network configuration? Kris --+QahgC5+KEYLbs62 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkjo+Wry0BWjoQKURAhQfAKCaBLkd3xzRxv0rT81PXcXv6NYi2wCeJd0O KTBzDzHy9fVbnIpzBvMVva4= =ERIp -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:17:41 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA7CA16A41C for ; Mon, 23 May 2005 20:17:41 +0000 (GMT) (envelope-from derdrache@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D46A43D49 for ; Mon, 23 May 2005 20:17:41 +0000 (GMT) (envelope-from derdrache@gmail.com) Received: by wproxy.gmail.com with SMTP id 37so1796196wra for ; Mon, 23 May 2005 13:17:40 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=rdMqZXq5Bmi0LtTbJAxW7xITXMSMyyPrtQwyoIePU2cCBgXvofkFjK5s2UphYNFPKjHqQnZctD8QaW+VLSNDz4ka6ZfLc6M4lUIuhIRK0e+ZT3CgfYwmDsKeOMcKyVnCi7fdunk9rXQPLS8dhhn0J80Ly1vnWTHJErdIRhwyOjc= Received: by 10.54.65.13 with SMTP id n13mr3548487wra; Mon, 23 May 2005 13:17:40 -0700 (PDT) Received: by 10.54.28.16 with HTTP; Mon, 23 May 2005 13:17:39 -0700 (PDT) Message-ID: <59c289ef05052313175c8d33a5@mail.gmail.com> Date: Mon, 23 May 2005 16:17:39 -0400 From: DerDrache To: Tony Shadwick In-Reply-To: <20050521224321.A47072@mail.goinet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20050521133758.T48232@zoraida.natserv.net> <20050521224321.A47072@mail.goinet.com> Cc: Eugene Hercun , freebsd-questions@freebsd.org Subject: Re: downloading entire directories X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: DerDrache List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:17:42 -0000 On 5/21/05, Tony Shadwick wrote: > scp -pr user@remote_host:/path/of/dir/you/want/ /path/you/want/it/stored >=20 > Tony >=20 > On Sat, 21 May 2005, Francisco Reyes wrote: >=20 > > On Fri, 20 May 2005, Tony Shadwick wrote: > > > >> There are two ways you could do this. The first is like so: > > > > I believe there may be a third way. > > Have not done it in a while, but some FTP servers allow you to specify = a tar > > file from a directory. > > > > To be honest I don't recall syntax, but it was something like "get > > dirname.tar" and the FTP server would know to prepare a tar of the enti= re > > directory. Don't know which server(s) suppor(ed) this feature though. > > > > Long run something like rsync or unison are better options though. > > Although I think scp can download multiple files, but I don't know if i= t > > recurses. > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" >=20 At the risk of redundently sounding redundent, I think wget might be up your alley. Makes this a very simple operation. wget -r ftp://user:password@host.com/path/to/folder --=20 DerDrache From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:21:20 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF46B16A41C for ; Mon, 23 May 2005 20:21:20 +0000 (GMT) (envelope-from chris@dawgiestyle.com) Received: from pd2mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DEDF43D1F for ; Mon, 23 May 2005 20:21:20 +0000 (GMT) (envelope-from chris@dawgiestyle.com) Received: from pd4mr7so.prod.shaw.ca (pd4mr7so-qfe3.prod.shaw.ca [10.0.141.84]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IGY00G0OLVJ7U60@l-daemon> for freebsd-questions@freebsd.org; Mon, 23 May 2005 14:21:20 -0600 (MDT) Received: from pn2ml7so.prod.shaw.ca ([10.0.121.151]) by pd4mr7so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IGY004XCLVJN7G0@pd4mr7so.prod.shaw.ca> for freebsd-questions@freebsd.org; Mon, 23 May 2005 14:21:19 -0600 (MDT) Received: from server.dawgiestyle.lan (S01060080c8d67c9e.ed.shawcable.net [68.148.128.53]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with SMTP id <0IGY00G2QLVJII@l-daemon> for freebsd-questions@freebsd.org; Mon, 23 May 2005 14:21:19 -0600 (MDT) Received: (qmail 76891 invoked by uid 1022); Mon, 23 May 2005 20:21:19 +0000 Received: from 192.168.1.101 by server.dawgiestyle.lan (envelope-from , uid 82) with qmail-scanner-1.25 (clamdscan: 0.83/718. spamassassin: 3.0.2. Clear:RC:1 (192.168.1.101):. Processed in 0.088752 secs); Mon, 23 May 2005 20:21:19 +0000 Received: from unknown (HELO ubuntu.dawgiestyle.lan) (192.168.1.101) by server.dawgiestyle.lan with SMTP; Mon, 23 May 2005 20:21:19 +0000 Date: Mon, 23 May 2005 14:21:19 -0600 From: Chris Warren In-reply-to: <4292399E.30107@ctzen.com> To: cs Message-id: <1116879679.11570.0.camel@localhost.localdomain> MIME-version: 1.0 X-Mailer: Evolution 2.2.1.1 Content-type: multipart/signed; boundary="=-1XThMz6/mktYitEn4VtZ"; protocol="application/pgp-signature"; micalg=pgp-sha1 X-Qmail-Scanner-Mail-From: chris@dawgiestyle.com via server.dawgiestyle.lan X-Qmail-Scanner: 1.25 (Clear:RC:1(192.168.1.101):. Processed in 0.088752 secs) References: <42900CC6.4090701@ctzen.com> <44wtpq13lu.fsf@be-well.ilk.org> <20050523093759.M47072@mail.goinet.com> <44u0ktzufo.fsf@be-well.ilk.org> <4292399E.30107@ctzen.com> Cc: FreeBSD Subject: Re: Is this possible ? inherit group permissions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:21:20 -0000 --=-1XThMz6/mktYitEn4VtZ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Just a guess, but would the sticky bit help here? Chris On Mon, 2005-23-05 at 16:14 -0400, cs wrote: > Lowell Gilbert wrote: > > Tony Shadwick writes: > >=20 > >=20 > >>On Mon, 23 May 2005, Lowell Gilbert wrote: > >> > >> > >>>cs writes: > >>> > >>> > >>>>For a directory, e.g. foo/, if I chmod 775 foo/, is it possible for > >>>>newly created files and directories under foo/ to automagically > >>>>inherit the group permissions of foo ? > >>>> > >>>>e.g. > >>>>touch foo/test would be rw-rw-r-- > >>>>mkdir foo/sub would be rwxrwxr-x > >>>> > >>>>I am looking for a non umask solution. > >>>> > >>>>I seem to remember in debian, I was able to make the group permission= s > >>>>of the parent directory special for this magic to occur. > >>>> > >>>>I wonder if there is something similar in FBSD. > >>> > >>>If you set the suid bit, both owner *and* group will be set. > >=20 > >=20 > >>I'll have to remember that one. So if /home is a filesystem unto > >>itself, if you set the suid bit on /home, all further creation beneath > >>it will inherit the permissions you set above? > >=20 > >=20 > > Only *directly* underneath it. Obviously you wouldn't want to do that > > for /home, but I find it quite useful on shared project directories > > and the like. >=20 > If you are talking about inheriting group identity, that is not what I=20 > am asking for. I believe this is automagic under fbsd, e.g. >=20 > mkdir foo > chgrp somegroup foo > touch foo/foofile > mkdir foo/foodir >=20 > foo/foofile and foo/foodir will have gid somegroup (without any suid or=20 > sgid). >=20 > What I am more interested in is inherting group permissions. >=20 > For example, I have a directory /var/www/foosite, which allows several=20 > different users to maintain it. >=20 > One way to do it is to use a common account for all the users to=20 > maintain foosite. >=20 > But it is "too loose" in accountability. >=20 > Going full version control (cvs/subversion) is not really desired for me=20 > because it's not a "mission critical" thing. >=20 > What I would like to do is create a group (say foogroup), assign all=20 > maintainers to the group, chgrp foogroup /var/www/foosite, and chmod g+w=20 > /var/www/foosite. >=20 > Here is the "fun" part. >=20 > User umask is 022 (which I would like to maintain). >=20 > touch foosite/foofile > mkdir foosite/foodir >=20 > would render those new file/dir NOT group writable. >=20 > umask 002 would make them group writable BUT it is a "global" setting=20 > and would affect other parts of the file system as well (e.g. user's home= ). >=20 > Plus not all users are savvy enough to do umask 002 / umask 022 whenever=20 > necessary. >=20 > I am looking for an "elegant" solution which I doubt I will find. >=20 > After some thoughs, this is my "compromized" solution. >=20 > The users will maintain foosite via ftp (within a VPN), and I use vsftpd=20 > and set the ftp umask to 002. >=20 > -cs > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" --=-1XThMz6/mktYitEn4VtZ Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (GNU/Linux) iD8DBQBCkjs+5oLdYlMF6RsRAugKAKCJrwdvImFkkGssACVDZBBw9JQ2HgCeJfva koxfEiznp5bzYS9L9965mP8= =uXtZ -----END PGP SIGNATURE----- --=-1XThMz6/mktYitEn4VtZ-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:24:36 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92A1D16A443 for ; Mon, 23 May 2005 20:24:36 +0000 (GMT) (envelope-from leblanc@keyslapper.net) Received: from english-breakfast.cloud9.net (english-breakfast.cloud9.net [168.100.1.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1507343D1D for ; Mon, 23 May 2005 20:24:34 +0000 (GMT) (envelope-from leblanc@keyslapper.net) Received: from english-breakfast.cloud9.net (localhost.cloud9.net [127.0.0.1]) by english-breakfast.cloud9.net (Postfix) with SMTP id 2ED5BE5D5 for ; Mon, 23 May 2005 16:24:32 -0400 (EDT) Received: from keyslapper.net (250-119.customer.cloud9.net [168.100.250.119]) by english-breakfast.cloud9.net (Postfix) with ESMTP id 41230E5B5 for ; Mon, 23 May 2005 16:24:30 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by keyslapper.net (Postfix) with ESMTP id 423F611529 for ; Mon, 23 May 2005 16:24:30 -0400 (EDT) Received: from keyslapper.net ([127.0.0.1]) by localhost (keyslapper.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02465-02 for ; Mon, 23 May 2005 16:24:30 -0400 (EDT) Received: by keyslapper.net (Postfix, from userid 1001) id 1641011528; Mon, 23 May 2005 16:24:30 -0400 (EDT) Date: Mon, 23 May 2005 16:24:30 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.org Message-ID: <20050523202429.GB1113@keyslapper.net> Mail-Followup-To: freebsd-questions@FreeBSD.org References: <20050523185517.GC44534@keyslapper.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="T4sUOijqQbZv57TR" Content-Disposition: inline In-Reply-To: <20050523185517.GC44534@keyslapper.net> X-PGP-Key: http://www.keyslapper.net/~leblanc/leblanc-at-keyslapper-net.asc User-Agent: Mutt/1.5.9i X-Virus-Scanned: amavisd-new at keyslapper.net X-AntiVirus: Checked by Vexira Antivirus v1.5 Cc: Subject: Re: tracking down network load? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:24:36 -0000 --T4sUOijqQbZv57TR Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Heh :) Duh. The AOL connection in question was gaims connection back to the AIM server. Silly me. I still don't know which of the established connections was responsible for the sustained load though. My system also suddenly went offline, and couldn't seem to hold its connection afterward. After kicking the ppp daemon a couple times, I just rebooted the system. The only log I can find that might have been relevant is this one: May 23 15:38:47 keyslapper ppp[47819]: Warning: ff02:5::/32: Change route failed: errno: Network is unreachable This sounds like some kind of upstream change in network routing, but I don't know anything else about it. Could such a change have caused the network to do double time trying to get routes? Lou On 05/23/05 02:55 PM, Louis LeBlanc sat at the `puter and typed: > I have a strange question. Well, maybe not so strange. >=20 > I am working on my 5.3 RELEASE system, and I notice my network monitor > on gkrellm is showing unexplained loads (15/23Kbps sustained) in > traffic on the external interface. >=20 > I'm not too concerned that this is a security breach, but I do notice > at least one ESTABLISHED connection that I can't explain (it goes back > to AOL, which naturally sows a little mistrust). >=20 > Anyway, how to I find the actual process (server or otherwise) on my > end that is handling a given connection, and what kind of load it is > handling? >=20 > TIA > Lou > --=20 > Louis LeBlanc FreeBSD-at-keyslapper-DOT-net > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > Please send off-list email to: leblanc at keyslapper d.t net > Key fingerprint =3D C5E7 4762 F071 CE3B ED51 4FB8 AF85 A2FE 80C8 D9A2 >=20 > Egotism, n: > Doing the New York Times crossword puzzle with a pen. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" >=20 --=20 Louis LeBlanc FreeBSD-at-keyslapper-DOT-net Fully Funded Hobbyist, KeySlapper Extrordinaire :) Please send off-list email to: leblanc at keyslapper d.t net Key fingerprint =3D C5E7 4762 F071 CE3B ED51 4FB8 AF85 A2FE 80C8 D9A2 Taxes, n.: Of life's two certainties, the only one for which you can get an extensio= n. --T4sUOijqQbZv57TR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkjv9r4Wi/oDI2aIRAtmuAKCBioLNulilUtd7kAs/RUxkqYesxQCdETkt XTI6AYBHuP+0OomPZz+IzsM= =h97M -----END PGP SIGNATURE----- --T4sUOijqQbZv57TR-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:26:16 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE9FD16A41C for ; Mon, 23 May 2005 20:26:16 +0000 (GMT) (envelope-from chrcoluk@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87FB743D1D for ; Mon, 23 May 2005 20:26:16 +0000 (GMT) (envelope-from chrcoluk@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so911577rng for ; Mon, 23 May 2005 13:26:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=DLVT/b6dLuXSGVMj/zOLhDZcJWiXrPBxXjbe3NDzLOK1L9XPltqhBDYyGTlkuLEpc8HZrvxsctIa4pinKRH6rPApKuh016o9z7ub+6GvkNj66Jhk1oCVIML/qQmuHRJnNT5qj9Irihydl6FwF51Obmr1Hi0MzzmltEdDhh81oKE= Received: by 10.38.74.75 with SMTP id w75mr3381681rna; Mon, 23 May 2005 13:26:15 -0700 (PDT) Received: by 10.39.1.40 with HTTP; Mon, 23 May 2005 13:26:14 -0700 (PDT) Message-ID: <3aaaa3a05052313262639f63@mail.gmail.com> Date: Mon, 23 May 2005 21:26:14 +0100 From: Chris To: Jack Raats In-Reply-To: <000a01c55fd4$5205e270$9d00000a@jara2> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <000a01c55fd4$5205e270$9d00000a@jara2> Cc: FreeBSD Stable , freebsd-questions@freebsd.org Subject: Re: rl0: discard oversize frame X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Chris List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:26:17 -0000 I also have the errors showing up in my periodic logs but they dont seem to cause me actual network drops. rl0: discard oversize frame (ether type e14c flags 3 len 1722 > max=20 1514) rl0: discard oversize frame (ether type 1 flags 3 len 36860 > max=20 1514) Chris On 5/23/05, Jack Raats wrote: > I'm running FreeBSD 5.4-STABLE. At this moment I'm getting all kind of ne= twork losses due to the error rl0: discard oversize frame > Google showed that a lot of PC suffers form this, but I didn't fine the c= ure :-( >=20 > Can anyone help me with a cure? >=20 > Met vriendelijke groeten > Jack Raats > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:27:38 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79EF416A41C for ; Mon, 23 May 2005 20:27:38 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A03943D55 for ; Mon, 23 May 2005 20:27:37 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4NKRVfv064786; Mon, 23 May 2005 15:27:32 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4NKRVfU064779; Mon, 23 May 2005 15:27:31 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 23 May 2005 15:27:31 -0500 (CDT) From: Tony Shadwick To: Charles Swiger In-Reply-To: <308aee5989627f3ea158cfd02e768c55@mac.com> Message-ID: <20050523152528.X47072@mail.goinet.com> References: <200505231003.14908.vizion@vizion.occoxmail.com> <308aee5989627f3ea158cfd02e768c55@mac.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org, Vizion Subject: Re: distfiles X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:27:38 -0000 Not to mention a greivous misuse of throughput of the servers on the other side. Ick. :( Might I suggest that this isn't the wisest route to go and manage ports from sources rather than binaries? Build it on one machine, make sure it works, then 'make package' and install that binary on the rest of your systems, or at least only grab the packages you need? Grabbing the full collection of distfiles from an ftp server, for lack of a better term, is rude. :P Now if someone had set up a bittorrent of it, then I wouldn't take exception, but that really doesn't seem like the best use of resources. Tony On Mon, 23 May 2005, Charles Swiger wrote: > On May 23, 2005, at 1:03 PM, Vizion wrote: >> Does anyone happen to know the size of a full collection of distfiles? > > About 25 to 30 GB. > >> Presumably it could be obtained by cvsup using the command distfiles-all? > > No, cvsup deals with the ports skeleton itself, not with the distfiles. Try: > > cd /usr/ports > make fetch > > ...and be prepared to wait and consume excessive disk space... > > -- > -Chuck > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:33:36 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4145816A41C for ; Mon, 23 May 2005 20:33:36 +0000 (GMT) (envelope-from gpeel@thenetnow.com) Received: from constellation.thenetnow.com (thenetnow.com [69.90.69.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 085E143D1D for ; Mon, 23 May 2005 20:33:35 +0000 (GMT) (envelope-from gpeel@thenetnow.com) Received: from hpeel.ody.ca ([216.240.12.2] helo=GRANT) by constellation.thenetnow.com with esmtpa (Exim 4.43) id 1DaJcC-000M7z-VF; Mon, 23 May 2005 16:33:33 -0400 Message-ID: <001301c55fd6$b170d8d0$6601a8c0@GRANT> From: "Grant Peel" To: "Kris Kennaway" References: <000501c55fc7$e4f10ae0$6601a8c0@GRANT> <20050523201703.GA26732@xor.obsecurity.org> Date: Mon, 23 May 2005 16:33:32 -0400 Organization: The Net Now MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Cc: freebsd-questions@freebsd.org Subject: Re: Fetch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:33:36 -0000 Not sure what there would be to fix. Apache Works ssh works ProFTPD works pop3 and SMTP work. WAN and LAN connections all working OK. NFS systems all OK. Forward and Reverse zones work. I can fetch manually. I tried Allowing all in and out from anywhere in IPFW and still nothing. -Grant From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:34:15 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0213416A41C for ; Mon, 23 May 2005 20:34:15 +0000 (GMT) (envelope-from fteg@london.com) Received: from webmail-outgoing.us4.outblaze.com (webmail-outgoing.us4.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93C1643D1F for ; Mon, 23 May 2005 20:34:13 +0000 (GMT) (envelope-from fteg@london.com) Received: from unknown (unknown [192.168.9.180]) by webmail-outgoing.us4.outblaze.com (Postfix) with QMQP id 715B1180013F for ; Mon, 23 May 2005 20:34:13 +0000 (GMT) X-OB-Received: from unknown (205.158.62.55) by wfilter.us4.outblaze.com; 23 May 2005 20:34:13 -0000 Received: by ws1-3.us4.outblaze.com (Postfix, from userid 1001) id 610BC101D9; Mon, 23 May 2005 20:34:13 +0000 (GMT) Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 2.117 (F2.6; A1.17; B2.12; Q2.03) Received: from [213.187.181.70] by ws1-3.us4.outblaze.com with http for fteg@london.com; Mon, 23 May 2005 15:34:13 -0500 X-Mailer: mail.com webmail From: "Fafa Hafiz Krantz" To: questions@freebsd.org Date: Mon, 23 May 2005 15:34:13 -0500 X-Originating-Ip: 213.187.181.70 X-Originating-Server: ws1-3.us4.outblaze.com Message-Id: <20050523203413.610BC101D9@ws1-3.us4.outblaze.com> Cc: Subject: linux-firefox: Gtk-WARNING X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:34:15 -0000 Hello! I need to use linux-firefox instead of the native port, because I need support for Flash 7. Over 40% of all Flash websites on the Internet are exported to this format, as it brings about many improvements, and I do not want to be left behind. I get this, however. It does not know how to use my GTK2 theme: (linux-firefox-bin:73907): Gtk-WARNING **: Unable to locate theme engine in= module_path: "pixmap" Any idea? -- Fafa Hafiz Krantz Research Designer @ http://www.home.no/barbershop Enlightened @ http://www.home.no/barbershop/smart/sharon.pdf --=20 ___________________________________________________________ Sign-up for Ads Free at Mail.com http://promo.mail.com/adsfreejump.htm From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:34:23 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03F0D16A41C for ; Mon, 23 May 2005 20:34:23 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail21.sea5.speakeasy.net (mail21.sea5.speakeasy.net [69.17.117.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8B8043D1D for ; Mon, 23 May 2005 20:34:22 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 20554 invoked from network); 23 May 2005 20:34:22 -0000 Received: by simscan 1.1.0 ppid: 20527, pid: 20548, t: 0.1525s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail21.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 May 2005 20:34:22 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id C134C32; Mon, 23 May 2005 16:34:20 -0400 (EDT) Sender: lowell@be-well.ilk.org To: freebsd-questions@freebsd.org References: <42900CC6.4090701@ctzen.com> <44wtpq13lu.fsf@be-well.ilk.org> <20050523093759.M47072@mail.goinet.com> <44u0ktzufo.fsf@be-well.ilk.org> <4292399E.30107@ctzen.com> From: Lowell Gilbert Date: 23 May 2005 16:34:20 -0400 In-Reply-To: <4292399E.30107@ctzen.com> Message-ID: <44oeb1u1f7.fsf@be-well.ilk.org> Lines: 26 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: Is this possible ? inherit group permissions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:34:23 -0000 cs writes: > If you are talking about inheriting group identity, that is not what I > am asking for. I believe this is automagic under fbsd, e.g. > > mkdir foo > chgrp somegroup foo > touch foo/foofile > mkdir foo/foodir > > foo/foofile and foo/foodir will have gid somegroup (without any suid > or sgid). Right. That's not what I was talking about; I was talking about doing the same thing for ownership. > The users will maintain foosite via ftp (within a VPN), and I use > vsftpd and set the ftp umask to 002. If you consider that easier than using version control, then I can't identify with your situation well enough to understand what's really useful to you. Maybe it would be easier for you to just run a cron job that batters the permissions into the shape you want, no matter what the users do. Good luck. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:35:44 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CE5716A41C for ; Mon, 23 May 2005 20:35:44 +0000 (GMT) (envelope-from eugene.hercun@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3B0C43D49 for ; Mon, 23 May 2005 20:35:43 +0000 (GMT) (envelope-from eugene.hercun@gmail.com) Received: by zproxy.gmail.com with SMTP id 40so2520652nzk for ; Mon, 23 May 2005 13:35:43 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=H1m6Oo/D/icrGKtnnZWXtcQtfEbDFidUby6BK45/RnrVdUj+AaCk4+t+IlEocNAFefOyWkUAp7084tQkeJssM6Ye2cs93Qtt4Uw5+zBJyTDYWec0HUZgroWdg7lKey9Lzp2+yXRhxPWz5lifp1y09fv98yUD6IrUm+LJT7XFqIs= Received: by 10.36.129.12 with SMTP id b12mr232721nzd; Mon, 23 May 2005 13:35:43 -0700 (PDT) Received: by 10.36.46.9 with HTTP; Mon, 23 May 2005 13:35:43 -0700 (PDT) Message-ID: Date: Mon, 23 May 2005 13:35:43 -0700 From: Eugene Hercun To: derdrache@gmail.com, freebsd-questions@freebsd.org In-Reply-To: <000001c55fd6$4baf31e0$144da8c0@rtxnetworks.local> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20050521133758.T48232@zoraida.natserv.net> <20050521224321.A47072@mail.goinet.com> <000001c55fd6$4baf31e0$144da8c0@rtxnetworks.local> Cc: Subject: Re: downloading entire directories X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eugene Hercun List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:35:44 -0000 I think I will just stick with wget, I like the way it works. Does anyone know why there is no recursive feature implemented into something as basic as ftp? DerDrache what do you mean by sounding redundantly redundant? I guess the Perl motto works in almost all situations, TIMTOWTDI. But I guess I'm looking for the 'better' way to do it. Thank you all once again. Eugene From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:35:18 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93CB316A41C for ; Mon, 23 May 2005 20:35:18 +0000 (GMT) (envelope-from tfcheng@yahoo.com) Received: from web51009.mail.yahoo.com (web51009.mail.yahoo.com [206.190.39.128]) by mx1.FreeBSD.org (Postfix) with SMTP id F25A043D4C for ; Mon, 23 May 2005 20:35:17 +0000 (GMT) (envelope-from tfcheng@yahoo.com) Received: (qmail 84889 invoked by uid 60001); 23 May 2005 20:35:16 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=M8cndJilVUO1dU+kx7KUnBwe9T2yqaHSL2Gr+ue/sY43kJhIRtY89eP5qb/49DowIZLsKhX31amdsHjnhVIMy1dSsO7OcbCK1MP8LTCVftk9xBTFfYpDSAH4fJ4msK58bZStBn3gjEdaTmHVARvZth2DQ4yQ2eQ4YtyBzqyuUDk= ; Message-ID: <20050523203516.84887.qmail@web51009.mail.yahoo.com> Received: from [129.49.86.98] by web51009.mail.yahoo.com via HTTP; Tue, 24 May 2005 04:35:16 CST Date: Tue, 24 May 2005 04:35:16 +0800 (CST) From: "T.F. Cheng" To: FreeBSD MIME-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Transfer-Encoding: 8bit Subject: a question or 2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:35:18 -0000 Hi, have a few questions to ask. First: install 5.4 release from floppy can't seem to locate hard drive. I have a ~2GB HD that I was trying to use, 5.4 booting can't locate my HD when partitioning, but 5.3 floppy okay. 2nd: How big a HD should I use? I can't install system+X in that 2GB I just mentioned, by the time it came to X, it just told me that inode is not enough. thanks Best Regards, Tsu-Fan Cheng _________________________________________________________ Do You Yahoo!? µn°O§K¶Oªº @yahoo.com ¤¤¤å¹q¤l¶l¥ó @ http://chinese.mail.yahoo.com Get your free @yahoo.com address at http://chinese.mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:48:42 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B3ED16A41C for ; Mon, 23 May 2005 20:48:42 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id E767043D49 for ; Mon, 23 May 2005 20:48:41 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id AA40A513D7; Mon, 23 May 2005 13:49:29 -0700 (PDT) Date: Mon, 23 May 2005 13:49:29 -0700 From: Kris Kennaway To: Grant Peel Message-ID: <20050523204929.GA30545@xor.obsecurity.org> References: <000501c55fc7$e4f10ae0$6601a8c0@GRANT> <20050523201703.GA26732@xor.obsecurity.org> <001301c55fd6$b170d8d0$6601a8c0@GRANT> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline In-Reply-To: <001301c55fd6$b170d8d0$6601a8c0@GRANT> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org, Kris Kennaway Subject: Re: Fetch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:48:42 -0000 --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 23, 2005 at 04:33:32PM -0400, Grant Peel wrote: > Not sure what there would be to fix. >=20 > Apache Works > ssh works > ProFTPD works > pop3 and SMTP work. >=20 > WAN and LAN connections all working OK. >=20 > NFS systems all OK. >=20 > Forward and Reverse zones work. >=20 > I can fetch manually. >=20 > I tried Allowing all in and out from anywhere in IPFW and still nothing. Since you need specific help, you need to provide us with specific details ("I can't fetch any ports" is not specific :-) Show us exactly what you are doing and exactly what happens. Kris --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkkHZWry0BWjoQKURAooIAKDk5Cc43LR2uZD9MmuMJFJSVkNm5gCgtsmM n/Syer38W+/Htqz2ZN8G4xQ= =/my6 -----END PGP SIGNATURE----- --lrZ03NoBR/3+SXJZ-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:48:55 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7224E16A41C for ; Mon, 23 May 2005 20:48:55 +0000 (GMT) (envelope-from krinklyfig@spymac.com) Received: from smtp804.mail.sc5.yahoo.com (smtp804.mail.sc5.yahoo.com [66.163.168.183]) by mx1.FreeBSD.org (Postfix) with SMTP id 3473343D49 for ; Mon, 23 May 2005 20:48:54 +0000 (GMT) (envelope-from krinklyfig@spymac.com) Received: from unknown (HELO smogmonster.local) (jtinnin@pacbell.net@64.171.1.128 with plain) by smtp804.mail.sc5.yahoo.com with SMTP; 23 May 2005 20:48:54 -0000 From: Joshua Tinnin To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 13:48:52 -0700 User-Agent: KMail/1.8 References: <4291C2A0.6030909@libero.it> In-Reply-To: <4291C2A0.6030909@libero.it> X-Face: "u-%.52Z_uQCP'Vdj{95/n*(sgAAm`F/p'b0zo%-DuBTdZ*qW!!/idDBRjkFfJD[Qe&>=?utf-8?q?=5F2=0A=09?=<}OGsEY~)n?NywZRi9xm-jH_VPg"8nTSzo:r8; U3oTQz|@z)|>%i+MRY2Y#>s~X`sV$&t"=?utf-8?q?=0A=09AkQ=5EU3rJIFCU=3F=5DcC=27F=26fY4=23Jf-=7D=3F7x?= MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505231348.52860.krinklyfig@spymac.com> Cc: Peter Subject: Re: FreeBSD and Asus A7N8X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:48:55 -0000 On Mon 23 May 05 04:46, Peter wrote: > Hi! > I'm trying to install FreeBSD on my pc, but both 4.10 and 5.3, after > installation , block at first boot. > I know there is a problem whit my motherboard, ASUS A7N8X deluxe that > it is not supported by FreeBSD. > Can you tell me if 5.4 works on my motherboard? Or a site where I can > download 4.9 that may be the last working relase on my asus. > > Thank you and have a nice day! > > p.s. sorry for my english... I have that board and most everything works. There are some issues with the sk0 onboard ethernet (Marvell 88E8001), and RAID may be tricky/not supported using the onboard SATA controller, though I haven't tried it personally. You should use 5.x instead of 4.x, in this case use 5.4-RELEASE. IIRC 4.x doesn't completely support the hardware. - jt From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:49:14 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4653216A41C for ; Mon, 23 May 2005 20:49:14 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (cdm-66-76-92-18.cart.cox-internet.com [66.76.92.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A31243D49 for ; Mon, 23 May 2005 20:49:13 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [192.168.2.2] ([69.27.157.226]) by ezekiel.daleco.biz (8.13.1/8.13.1) with ESMTP id j4NKnB3K029795; Mon, 23 May 2005 15:49:11 -0500 (CDT) (envelope-from kdk@daleco.biz) Message-ID: <42924190.5030709@daleco.biz> Date: Mon, 23 May 2005 15:48:16 -0500 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.7) Gecko/20050428 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Vizion References: <200505231003.14908.vizion@vizion.occoxmail.com> In-Reply-To: <200505231003.14908.vizion@vizion.occoxmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: distfiles X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:49:14 -0000 Vizion wrote: >Hi > >Does anyone happen to know the size of a full collection of distfiles? > >Presumably it could be obtained by cvsup using the command distfiles-all? > >I need to have an upto date collection on my system before I sail (do I need >another harddrive > >David > > How about just grabbing the ones you use, e.g. `portupgrade -arR --fetch-only` :-) KDK From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:52:03 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FEB416A41C for ; Mon, 23 May 2005 20:52:03 +0000 (GMT) (envelope-from alaskabeech@yahoo.com) Received: from web50402.mail.yahoo.com (web50402.mail.yahoo.com [206.190.38.67]) by mx1.FreeBSD.org (Postfix) with SMTP id 2EED443D49 for ; Mon, 23 May 2005 20:52:03 +0000 (GMT) (envelope-from alaskabeech@yahoo.com) Received: (qmail 54566 invoked by uid 60001); 23 May 2005 20:52:02 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=Z+R+vIqsZjLeKVR4vEknn8PGIY49XwVtJUZlJFHNmnMIIpB5EPeupr0Tlik7IES7N98xoI5CClqpz3jiZ0aO2TWshMF5N3LY8qsbeH6HNqUkQ1wWwlQq5urc6MNDTApmwVsGYhPFhuoOckGx5LLvBzgWl4slb1/VYciMbiws7Jo= ; Message-ID: <20050523205202.54564.qmail@web50402.mail.yahoo.com> Received: from [209.124.141.64] by web50402.mail.yahoo.com via HTTP; Mon, 23 May 2005 13:52:01 PDT Date: Mon, 23 May 2005 13:52:01 -0700 (PDT) From: Beecher Rintoul To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: WIFI DHCP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:52:03 -0000 I would like to use a wireless card as my primary internet connection. I have read the manual and see nothing mentioned about setting up the card to use DHCP. I do not have a static ip on the access point I'm connecting to. How do I set the card to use DHCP? Please cc me as I'm not on the list. Thanks, Beech __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:53:21 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB1A016A41C for ; Mon, 23 May 2005 20:53:21 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 722E943D48 for ; Mon, 23 May 2005 20:53:19 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from barbish ([69.172.31.81]) by mta10.adelphia.net (InterMail vM.6.01.04.01 201-2131-118-101-20041129) with SMTP id <20050523205318.NVEX17140.mta10.adelphia.net@barbish>; Mon, 23 May 2005 16:53:18 -0400 From: "fbsd_user" To: "T.F. Cheng" , "FreeBSD" Date: Mon, 23 May 2005 16:53:10 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <20050523203516.84887.qmail@web51009.mail.yahoo.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal Cc: Subject: RE: a question or 2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd_user@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:53:22 -0000 this is know problem. 5.4 from floppy or cdrom now needs more memory and cpu speed that legacy PC can provide. remove HD from legacy PC and connect it to faster / newer pc to do install, them return to legacy PC to run. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of T.F. Cheng Sent: Monday, May 23, 2005 4:35 PM To: FreeBSD Subject: a question or 2 Hi, have a few questions to ask. First: install 5.4 release from floppy can't seem to locate hard drive. I have a ~2GB HD that I was trying to use, 5.4 booting can't locate my HD when partitioning, but 5.3 floppy okay. 2nd: How big a HD should I use? I can't install system+X in that 2GB I just mentioned, by the time it came to X, it just told me that inode is not enough. thanks Best Regards, Tsu-Fan Cheng _________________________________________________________ Do You Yahoo!? µn°O§K¶Oªº @yahoo.com ¤¤¤å¹q¤l¶l¥ó @ http://chinese.mail.yahoo.com Get your free @yahoo.com address at http://chinese.mail.yahoo.com _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:55:01 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B6F816A41C for ; Mon, 23 May 2005 20:55:01 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4338743D48 for ; Mon, 23 May 2005 20:55:01 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from barbish ([69.172.31.81]) by mta11.adelphia.net (InterMail vM.6.01.04.01 201-2131-118-101-20041129) with SMTP id <20050523205500.GHAR13270.mta11.adelphia.net@barbish>; Mon, 23 May 2005 16:55:00 -0400 From: "fbsd_user" To: "Eugene Hercun" , , Date: Mon, 23 May 2005 16:54:56 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal Cc: Subject: RE: downloading entire directories X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd_user@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:55:01 -0000 check the ports for FTP. there are ftp ports that do what you want ftp to do. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Eugene Hercun Sent: Monday, May 23, 2005 4:36 PM To: derdrache@gmail.com; freebsd-questions@freebsd.org Subject: Re: downloading entire directories I think I will just stick with wget, I like the way it works. Does anyone know why there is no recursive feature implemented into something as basic as ftp? DerDrache what do you mean by sounding redundantly redundant? I guess the Perl motto works in almost all situations, TIMTOWTDI. But I guess I'm looking for the 'better' way to do it. Thank you all once again. Eugene _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Mon May 23 20:56:04 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5847F16A41C for ; Mon, 23 May 2005 20:56:04 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr14.xs4all.nl (smtp-vbr14.xs4all.nl [194.109.24.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id A817943D48 for ; Mon, 23 May 2005 20:56:03 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr14.xs4all.nl (8.12.11/8.12.11) with ESMTP id j4NKu11D064323; Mon, 23 May 2005 22:56:01 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 17759617A; Mon, 23 May 2005 22:56:01 +0200 (CEST) Date: Mon, 23 May 2005 22:56:01 +0200 From: Roland Smith To: Benjamin Keating Message-ID: <20050523205601.GA11447@slackbox.xs4all.nl> Mail-Followup-To: Benjamin Keating , freebsd-questions@freebsd.org References: <781e2bc0050523111214a8ff5@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sm4nu43k4a2Rpi4c" Content-Disposition: inline In-Reply-To: <781e2bc0050523111214a8ff5@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Tuning Hard Disks X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 20:56:04 -0000 --sm4nu43k4a2Rpi4c Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 23, 2005 at 11:12:59AM -0700, Benjamin Keating wrote: > Hey all, >=20 > I'd like to tweak my drives / view there current configurations. I get > really slow xfers from two machine in the same, quite, LAN (both > running FBSD 5.4 with good Intell Pro100 NICS). Im not sure if DMA is > enabled or not so I'd like to start with figuring out what to use to > view this info. Anything like hdparm? Assuming you have ATA drives, do the following (as root) run 'atacontrol list' to see which channel number the drive is on. Then try 'atacontrol mode N', where N is the channel number. This wil give you the current transfer mode of the drive. You can also use atacontrol to set the mode. See the manual page. You can see if DMA is enabled with 'sysctl hw.ata.ata_dma'. Roland --=20 R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain text. public key: http://www.xs4all.nl/~rsmith/pubkey.txt --sm4nu43k4a2Rpi4c Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkkNhEnfvsMMhpyURAmTIAJ9SQvAK10jhQr/TZsUqrIKnKDpzYwCePZJm qqAqK8KU8HijrFW5FPAzo/Q= =Gh4t -----END PGP SIGNATURE----- --sm4nu43k4a2Rpi4c-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 21:01:28 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8996C16A41C for ; Mon, 23 May 2005 21:01:28 +0000 (GMT) (envelope-from missive@hotmail.com) Received: from hotmail.com (bay2-f24.bay2.hotmail.com [65.54.247.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 698D043D1D for ; Mon, 23 May 2005 21:01:28 +0000 (GMT) (envelope-from missive@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 23 May 2005 14:01:28 -0700 Message-ID: Received: from 208.186.59.238 by by2fd.bay2.hotmail.msn.com with HTTP; Mon, 23 May 2005 21:01:27 GMT X-Originating-IP: [208.186.59.238] X-Originating-Email: [missive@hotmail.com] X-Sender: missive@hotmail.com From: "Lee Harr" To: freebsd-questions@freebsd.org Date: Tue, 24 May 2005 01:31:27 +0430 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 23 May 2005 21:01:28.0184 (UTC) FILETIME=[96775780:01C55FDA] Subject: Re: FreeBSD and Asus A7N8X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 21:01:28 -0000 >I'm trying to install FreeBSD on my pc, but both 4.10 and 5.3, after >installation , block at first boot. >I know there is a problem whit my motherboard, ASUS A7N8X deluxe that it >is not supported by FreeBSD. >Can you tell me if 5.4 works on my motherboard? Or a site where I can >download 4.9 that may be the last working relase on my asus. > Try disabling firewire in the bios. I had the same problem with my system (A7N8X). Worked until 4.9 then stopped working. Disabling firewire allowed me to boot. _________________________________________________________________ Don't just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/ From owner-freebsd-questions@FreeBSD.ORG Mon May 23 21:07:14 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7961816A41C for ; Mon, 23 May 2005 21:07:14 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (cdm-66-76-92-18.cart.cox-internet.com [66.76.92.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2049443D1D for ; Mon, 23 May 2005 21:07:14 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [192.168.2.2] ([69.27.157.226]) by ezekiel.daleco.biz (8.13.1/8.13.1) with ESMTP id j4NL7Ca8029923; Mon, 23 May 2005 16:07:12 -0500 (CDT) (envelope-from kdk@daleco.biz) Message-ID: <429245C9.8060705@daleco.biz> Date: Mon, 23 May 2005 16:06:17 -0500 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.7) Gecko/20050428 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Grant Peel References: <000501c55fc7$e4f10ae0$6601a8c0@GRANT> <20050523201703.GA26732@xor.obsecurity.org> <001301c55fd6$b170d8d0$6601a8c0@GRANT> In-Reply-To: <001301c55fd6$b170d8d0$6601a8c0@GRANT> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, Kris Kennaway Subject: Re: Fetch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 21:07:14 -0000 Grant Peel wrote: > "Couldn't fetch it - please try to retrieve this > port manually into /usr/ports/distfiles/ and try again." First off, there should be a message from fetch which says more then "Can't fetch this, try it manually." It could be "file unavailable: file not found, no access" or it might be "/usr/ports/distfiles is not writable by you" or it could be ... well, maybe you get it. Let us know if there's more to the error than just what you quoted. There should be --- there almost *has* to be. > I can fetch manually. Can you manually fetch the *exact* distfile that the port is attempting to fetch? If so, then we need to continue looking at machine config, etc. If not, it suggests that a 5.2.1 ports tree is rather out of date (which is probably is IMHO anyway). Use pkg_add (or sysinstall) to install cvsup, then cvsup the ports tree and try again. KDK From owner-freebsd-questions@FreeBSD.ORG Mon May 23 21:14:17 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CE7916A41C for ; Mon, 23 May 2005 21:14:17 +0000 (GMT) (envelope-from Mykel@mWare.ca) Received: from ox.eicat.ca (ox.eicat.ca [66.96.30.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2620143D1F for ; Mon, 23 May 2005 21:14:15 +0000 (GMT) (envelope-from Mykel@mWare.ca) Received: from [10.100.104.31] (Hi.From.Radix.mWare.ca [66.96.18.6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ox.eicat.ca (Postfix) with ESMTP id 42467F826; Mon, 23 May 2005 17:14:13 -0400 (EDT) Message-ID: <4292476B.80506@mWare.ca> Date: Mon, 23 May 2005 17:13:15 -0400 From: Mykel User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.5) Gecko/20041221 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Scott Stevenson References: <62547055-57AF-4695-9EB7-CA7CB4BB4232@maxify.com> In-Reply-To: <62547055-57AF-4695-9EB7-CA7CB4BB4232@maxify.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Some HTTP clients only receive first 4k X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 21:14:17 -0000 Scott Stevenson wrote: > This is a follow-up to a post back in February. > msg03071.html> > > > Summary: Certain HTTP clients only receive partial file contents. The > majority of visitors have no problems, but those that do seem to > experience it 100% of the time. > > After looking into this further, I've discovered some interesting > data points: > > > 1. Affected clients consistently receive only the first 4096 bytes of > .html and .css files. After that, they encounter a single garbage > character (looks like a memory stomp), and then nothing. > > 2. At least two of the sites hosted on the machine are affected. > > 3. The issue can be reproduced via the W3 validator: > > 2Farticles%2F000085-test.html&charset=%28detect+automatically% > 29&doctype=%28detect+automatically%29&ss=1> > > The bottom of this page shows the first 4k that was successfully > fetched. It stops right in the middle of a tag. The same thing > happens with this css file: > > 2Fcocoadevcentral.com%2Fcss% > 2Fcocoadevcentral-20050401.css&usermedium=all> > > > 4. At least in the case of the validator, the requests don't show up > in Apache's access or error logs! This is consistently reproducible. > > 5. For some reason, clients consistently only get to byte 3883 (or > perhaps 3884) in .php files, and then get the garbage character. > > > These same sites were previously running on the same network with the > same version of apache. I've done hours of googling and also searched > the freebsd-questions mailing list archives. I've gone out of my way > to keep the installation as vanilla as possible. The system > configuration is essentially: > > FreeBSD 5.3-Release > Apache 2.0.50 > PHP 5.0.2 Perhaps there's an MTU problem along the way? Can you ping/traceroute all the way between endpoints? Some people idiotically block all ICMP, when they probably just want to filter ICMP ECHO... (idijjits... ping ain't the biggest of your problems) It comes to packet sizes on the various links. Myke From owner-freebsd-questions@FreeBSD.ORG Mon May 23 21:16:09 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1009C16A41C for ; Mon, 23 May 2005 21:16:09 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr8.xs4all.nl (smtp-vbr8.xs4all.nl [194.109.24.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80E3443D1F for ; Mon, 23 May 2005 21:16:08 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr8.xs4all.nl (8.12.11/8.12.11) with ESMTP id j4NLG7B9031024; Mon, 23 May 2005 23:16:07 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id E5FD2617A; Mon, 23 May 2005 23:16:06 +0200 (CEST) Date: Mon, 23 May 2005 23:16:06 +0200 From: Roland Smith To: Beecher Rintoul Message-ID: <20050523211606.GB11447@slackbox.xs4all.nl> Mail-Followup-To: Beecher Rintoul , freebsd-questions@freebsd.org References: <20050523205202.54564.qmail@web50402.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Bn2rw/3z4jIqBvZU" Content-Disposition: inline In-Reply-To: <20050523205202.54564.qmail@web50402.mail.yahoo.com> User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: WIFI DHCP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 21:16:09 -0000 --Bn2rw/3z4jIqBvZU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 23, 2005 at 01:52:01PM -0700, Beecher Rintoul wrote: > I would like to use a wireless card as my primary internet connection. > I have read the manual and see nothing mentioned about setting up the > card to use DHCP.=20 Then you've looked in the wrong place. :-) >I do not have a static ip on the access point I'm > connecting to. How do I set the card to use DHCP? Look at section 23.5 (Automatic Network Configuration). In short: - make sure that "device bpf" is in the kernel (it is in GENERIC) - edit /etc/rc.conf to put the interface in DHCP: 'ifconfig_XXX=3D"DHCP"' where XXX is the name of your wireless card. Roland --=20 R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain text. public key: http://www.xs4all.nl/~rsmith/pubkey.txt --Bn2rw/3z4jIqBvZU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkkgWEnfvsMMhpyURAt19AJ9lTA2Ln6mszUQ4KiPVlA3JRpem4wCaAhNl GG0Ci/iQYOHV73v0lRAk2T8= =DYDF -----END PGP SIGNATURE----- --Bn2rw/3z4jIqBvZU-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 21:47:23 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 581C916A41C for ; Mon, 23 May 2005 21:47:23 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB1AB43D1F for ; Mon, 23 May 2005 21:47:22 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so2134881wra for ; Mon, 23 May 2005 14:47:22 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=N5AfTOFHes9v+YiFs60xswPF7eCDYRpvUMX90+w8JKMdi+nOQ7QPT9jFn+7cSjIULAGP/exaTd9OoaCXLGwJ2cmKBCBlnE+ncYqItm0SGvBXLNLo9f5uaE+g9BEu4w5DUeDTmMadCfQDnK6y4+MLez5+vik/sWYdMlaT0s6dmLU= Received: by 10.54.50.46 with SMTP id x46mr3810916wrx; Mon, 23 May 2005 14:47:21 -0700 (PDT) Received: by 10.54.71.9 with HTTP; Mon, 23 May 2005 14:47:21 -0700 (PDT) Message-ID: <781e2bc0050523144733827b78@mail.gmail.com> Date: Mon, 23 May 2005 14:47:21 -0700 From: Benjamin Keating To: freebsd-questions@freebsd.org, rsmith@xs4all.nl In-Reply-To: <20050523205601.GA11447@slackbox.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <781e2bc0050523111214a8ff5@mail.gmail.com> <20050523205601.GA11447@slackbox.xs4all.nl> Cc: Subject: Re: Tuning Hard Disks X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Benjamin Keating List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 21:47:23 -0000 Thank you. This is exactly what I was looking for. How did you learn about these tools? From the pages i've read (most of) the handbook, I didn't see it mention them. On 5/23/05, Roland Smith wrote: > On Mon, May 23, 2005 at 11:12:59AM -0700, Benjamin Keating wrote: > > Hey all, > > > > I'd like to tweak my drives / view there current configurations. I get > > really slow xfers from two machine in the same, quite, LAN (both > > running FBSD 5.4 with good Intell Pro100 NICS). Im not sure if DMA is > > enabled or not so I'd like to start with figuring out what to use to > > view this info. Anything like hdparm? >=20 > Assuming you have ATA drives, do the following (as root) >=20 > run 'atacontrol list' to see which channel number the drive is on. Then > try 'atacontrol mode N', where N is the channel number. This wil give > you the current transfer mode of the drive. You can also use atacontrol > to set the mode. See the manual page. >=20 > You can see if DMA is enabled with 'sysctl hw.ata.ata_dma'. >=20 > Roland > -- > R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain tex= t. > public key: http://www.xs4all.nl/~rsmith/pubkey.txt >=20 >=20 > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 22:03:21 2005 Return-Path: X-Original-To: questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 325E316A44B for ; Mon, 23 May 2005 22:03:21 +0000 (GMT) (envelope-from vendas@montesinformatica.com.br) Received: from hm61.locaweb.com.br (hm61.locaweb.com.br [200.213.197.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 2E94943D1D for ; Mon, 23 May 2005 22:03:18 +0000 (GMT) (envelope-from vendas@montesinformatica.com.br) Received: (qmail 6491 invoked from network); 23 May 2005 21:59:58 -0000 Received: from unknown (10.1.10.158) by hm61.locaweb.com.br with QMTP; 23 May 2005 21:59:58 -0000 Received: (qmail 19213 invoked from network); 23 May 2005 22:03:09 -0000 Received: from unknown (HELO montesj) (vendas@montesinformatica.com.br@200.158.97.17) by hm158.locaweb.com.br with SMTP; 23 May 2005 22:03:09 -0000 Message-ID: <4122-22005512322549359@montesj> From: "" To: questions@FreeBSD.org Date: Mon, 23 May 2005 19:05:49 -0300 MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_NextPart_94915C5ABAF209EF376268C8" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: TABELA DE PRECOS MONTES INFORMATICA 23.05.2005 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 22:03:21 -0000 This is a multi-part message in MIME format. ------=_NextPart_94915C5ABAF209EF376268C8 Content-type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable JoyceMI JOYCE2005-05-20T18:54:40Z2004-10-25T17:19:51Z2005-05-23T12:47:27Z9= =2E2812 Plan199030030087391A92:F92FalseFalseFalseColunas EPlan2FalseFalseF= alsePlan3FalseFalseFalse67951134036060FalseFalsePrint_Area1=3DPlan1!$A$1:$= F$91=20 Bitmap TABELA DE PRE=C7OS =20 =20 =20 FONES: 6242-8802 / 6246-4192=20 www=2Emontesinformatica=2Ecom=2Ebr=20 =20 VALIDA DE 23/05 a 25/05=20 N=C3O abriremosnos dias 26 e 27/05=20 PROCESSADORES U$ R$ HARD DISK U$ R$ Taxa do dolar INTEL CELERON HD 40 GB 7200 RPM 71 200,93 2,83 INTEL CELERON 2=2E4Ghz 95 268,85 HD 80 GB 7200 RPM=A0 87 246,21=20 INTEL CELERON 2=2E5Ghz BOX Consulte Consulte HD 120 GB 7200 RPM 115 325,= 45=20 =A0INTEL P4 HD SCSI 36 GB 68 PINOS 10000 RPM SEAGATE Consulte Consulte=20= P4 2=2E4 GHZ 478 PINOS/533 mhz 182 515,06 HD SATA 80GB 7200 RPM 90 254,70= =20 P4 2=2E5 GHZ 478 PINOS/533 mhz Consulte Consulte HD SATA 120GB 7200 RPM 1= 26 356,58=20 P4 2=2E8 GHZ 478 PINOS/533 mhz 236 667,88 HD SATA 160GB 7200 RPM 145 410,= 35=20 P4 2=2E8Ghz 478 PINOS/800Mhz HTBOX PR Consulte Consulte HD SATA 200GB 720= 0 RPM 173 489,59=20 P4 2=2E8Ghz 478 PINOS/800Mhz HTPR 255 721,65 HD SATA 250GB 7200 RPM 260 7= 35,80=20 P4 3=2E0 GHZ 478 PINOS/800 MHZHT BOX 277 783,91 MOTHERBOARD'S U$ R$=20 P4 3=2E0 GHZ 478 PINOS/800 MHZ HT 266 752,78 PARA P4/533=20 P4 3=2E2 GHZ 478 PINOS/800 MHZHT 314 888,62 MB PCCHIPS 925G S/V/F/R PRESC= OTT 57 161,31=20 INTEL LGA P5 MB ECS 651-M S/V/R/F 61 172,63=20 P4 2=2E8GHZ LGA 775 PINOS BOXPR 252 713,16 MB ASUS P4S533-X S/R=A0 Consu= lte Consulte=20 P4 3=2E0GHZ LGA 775 PINOS BOXPR 264 747,12 MB ASUS P4SP-MX S/V/R 72 203,7= 6=20 P4 3=2E2GHZ LGA 775 PINOS BOXPR Consulte Consulte PARA P4/800=20 AMD SEMPRON MB ASUS P4S800-MX S/V/R - DDR 82 232,06=20 SEMPRON 2200 82 232,06 MB ASUS P4S800D-X S/R SATA 86 243,38=20 SEMPRON 2400 BOX 98 277,34 MB ASUS P4P800-X S/R SATA 117 331,11=20 SEMPRON 2400 87 246,21 MB INTEL 865 PEARLX S/R SATA 182 515,06=20 SEMPRON 2500 93 263,19 MB ASUS P4P800-EDELUXE S/R=A0=A0=A0 170 481,10=20= SEMPRON 2600 103 291,49 PARA INTEL LGA=20 SEMPRON 2700 Consulte Consulte MB ASUS P5P800S S/R 105 297,15=20 SEMPRON 2800 121 342,43 MB ECS 915-A S/V/R 230 650,90=20 SEMPRON 3000 140 396,20 MB MSI 915G S/V/R PCI 185 523,55=20 AMD 64 AMD/266=20 AMD 64-2800 BOX S754 156 441,48 MB ASUS A7S333 COM SOM (35827) Consulte C= onsulte=20 AMD 64-3000 S754 207 585,81 MB ASUS A7V8X-X S/R Consulte Consulte=20 AMD 64-3000 170 481,10 AMD/333=20 AMD 64-3200 S754 254 718,82 MB PC CHIPS M863G S/V/F/R 58 164,14=20 AMD 64-3200 BOX S754 Consulte Consulte MBASUS A7S8X-MX S/V/R DDR=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 63 178,29=20 AMD 64 3200 S939 Consulte Consulte MB ASUSA7V8X-X SOM DDR 400=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 72 203,76=20 MEM=D3RIAS U$ R$ AMD/400=20 PC100/DIMM MB ASUS A7V400-MX S/V/R 84 237,72=20 PC100 128 MB SDRAM 35 99,05 MB A7V600-X SOM E REDE SATA 77 217,91=20 PC133/DIMM MBA7N8X-X S/R DDR 400=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0 82 232,06=20 PC133 128 MB SDRAM 26 73,58 MBA7N8X-E DELUXE S/2L SATA=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0 124 350,92=20 PC133 256 MB SDRAM 45 127,35 AMD64=20 PC133 512 MB SDRAM 72 203,76 MB ASUSK8V-X S/R SATA=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 109 308,47=20 DDR PC2100/266mhz BM MSIK8MM-ILSR S/R/V SAT=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0 119 336,77=20 PC2100 128 MB DDR/266 Consulte Consulte MB ASUS K8V-SEDELUXE S/R=A0 4 S=A0= =A0 Consulte Consulte=20 PC2100 256 MB DDR/266 Consulte Consulte MB ASUS K8N-E DELUXE S/R Consult= e Consulte=20 PC2100 512 MB DDR/266 Consulte Consulte VGA U$ R$=20 PC2100 512 MB DDR/266 ECCREGISTRADA Consulte Consulte VGA AGP=A0 64MB GFO= RCE4MX4000 56 158,48=20 DDR PC2700/333mhz VGA AGP=A0 64MB GFORCE4=A0 MX440 T8X TV 61 172,63=20 PC2700 128 MB DDR/333 20 56,60 VGA AGP 128MB FX5200 TV OUT 91 257,53=20 PC2700 256 MB DDR/333 29 82,07 VGA AGP 32MB NVIDIA RIVA TNT2 33 93,39=20 PC2700 512 MB DDR/333 54 152,82 PL=2EPCI ED=2E PINNAC=2E STUDIO DC10 PLUS= V9=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 Consulte Consulte=20 PC2700 1024 MB DDR/333 145 410,35 VGA AGP 256MB GECUBE 9250 Consulte Cons= ulte=20 PC2700 512 MB DDR/333ORIGINAL Consulte Consulte MODEM U$ R$=20 DDR PC3200/400mhz MODEM MOTOROLA 56K V=2E92 11 31,13=20 PC3200 256 MB DDR/400 29 82,07 MODEM LG 56K V=2E92 11 31,13=20 PC3200 512 MB DDR/400 54 152,82 MODEM=A0 56 K V=2E92 11 31,13=20 PC3200 256 MB DDR/400KINGSTON 41 116,03 MODEM 56K EXT USB LG Consulte Co= nsulte=20 PC3200 512 MB DDR/400KINGSTON 72 203,76 MODEM ADSL ROUTER LG 300C EXT Con= sulte Consulte=20 DDR2 DRIVE/CD/GRAVADORES U$ R$=20 PC400 512MB CL3 Consulte Consulte DRIVE 1=2E44 MB 11 31,13=20 PC533 512MB CL3 105 297,15 DRIVE DE CD 52X LG 20 56,60=20 PC400 1GB CL3 Consulte Consulte DRIVE DE CD 52X LG PRETO Consulte Consult= e=20 PC533 1GB CL4 Consulte Consulte DRIVE DE CDRW LG 52X24X40 33 93,39=20 PERIF=C9RICOS U$ R$ DRIVE DE CDRW LG 52X24X40 PRETO Consulte Consulte=20 CAIXA DE SOM 200 WATS 8 22,64 DRIVE COMBO 52X24X52 DVD 16X LG 54 152,82=20= CAIXA DE SOM 500 WATTS SUB-WOOFER 18 50,94 DRIVE COMBO 52X24X52 DVD 16X L= G PRETO Consulte Consulte=20 COOLER=A0 PARA AMD AT=C9 2=2E4 15 42,45 DRIVE DE DVDRW=A0 LG MOD 4160B 1= 04 294,32=20 COOLER DE COBRE AMD ATE 3=2E2 18 50,94 DRIVE DE DVDRW=A0 LG MOD4082B 82 2= 32,06=20 COOLER PARA P4 ATE 3=2E2 18 50,94 MONITORES U$ R$=20 COOLER PARA P4 ATE 2=2E4 15 42,45 MONITOR 15" SVGA LG 130 367,90=20 ESTABILIZADOR 1 KVA 30 84,90 MONITOR 17" SVGA LG 150 424,50=20 GABINETE ATX 4 BAIAS USBFRONTAL 42 118,86 MONITOR 17" SVGA FLATRON 190 5= 37,70=20 GABINETE ATX 4 BAIAS USB COMPRESILHAS 52 147,16 MONITOR 17" SVGA LCD Con= sulte Consulte=20 GAVETA PARA HD EXT=2E USB 2=2E0 Consulte Consulte REDE U$ R$=20 MOUSE AT/PS2 4 11,32 PLACA DE REDE NE 3000=A010/100 MPBS RJ45 10 28,30=20= MOUSE AT/PS2 ERGONOMICO PRETO 4 11,32 PLACA DE REDE 10/100 MPBS RJ45 3COM= 20 56,60=20 MOUSE AT/PS2 KIDS (BICHINHO) 4 11,32 HUB 8 PORTS 10/100 ENCORE 21 59,43=20= MOUSE AT/SERIAL PRETO 3 8,49 HUB 16 PORTS 10/100 ENCORE 47 133,01=20 MOUSE OPTICO 10 28,30 HUB 24 PORTAS 10/100 LG/ENCORE 91 257,53=20 NO BREAK 1000W 110V/60H Consulte Consulte PORTATEIS U$ R$=20 PEN DRIVE USB 2=2E0=A0 256M KINGSTON=A0=A0=A0=A0=A0=A0=A0=A0 Consulte Co= nsulte PALM TOP ZIRE 72 COM CAMERA 381 1078,23=20 PL=2E SOM PCI CREATIVELIVE 7=2E1=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0 Consulte Consulte CAMERAS DIGITAIS U$ R$=20 TEC=2E USB=A0 ABNT=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0 14 39,62 OLYMPUS D-535 ZOOM 3=2E2MP 12M 205 580,15=20 TECLADO AT/PS2 8 22,64 SONY DSC-P41 CYBERSHOT 245 693,35=20 WEBCAM LG USB=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0 35 99,05 BENQ DC E30=A0 3=2E1MP=A0 8MB 198 560,34=20 Estee um email informativo, nosso objetivo e divulgar produtos e solucoes= queauxiliem no seu trabalho=2EPara ser removido basta retornar esse email= com oassunto 'REMOVER'=2EEsta mensagem e enviada com a complacencia da no= valegislacao sobre correio eletronico, Secao 301, Paragrafo (a) (2) (c) De= cretoS=2E1618, Terceiro Aprovado pelo "105 Congresso Bases Normativas Naci= onaissobre SPAM=2E Mensagem nao pode ser considerada SPAM quando inclua um= a forma deremocao da lista=2E =20 =20 =20 ------=_NextPart_94915C5ABAF209EF376268C8-- From owner-freebsd-questions@FreeBSD.ORG Mon May 23 22:12:42 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 569FC16A41C; Mon, 23 May 2005 22:12:42 +0000 (GMT) (envelope-from aman@chamkila.org) Received: from manak.chamkila.org (node-40240ed2.sjc.onnet.us.uu.net [64.36.14.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 153ED43D48; Mon, 23 May 2005 22:12:42 +0000 (GMT) (envelope-from aman@chamkila.org) Received: from [192.168.96.202] ([69.36.228.194]) by manak.chamkila.org (8.12.10/8.12.10) with ESMTP id j4NM7hXH020178; Mon, 23 May 2005 15:07:43 -0700 Message-ID: <429254EB.6020604@chamkila.org> Date: Mon, 23 May 2005 15:10:51 -0700 From: Amandeep User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Amandeep References: <42923329.7040407@chamkila.org> In-Reply-To: <42923329.7040407@chamkila.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-hackers@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 22:12:42 -0000 Hi guys, Anyone??? Amandeep wrote: > Hi all, > > I am instalaling FreeBSD 5.3 AMD 64 bit with 6- 200GB drives. Using > Higpoint 1820A controller and doing RAID 10. I am using drivers for > the card from Highpoint Web. > > The problem is when I make the partitions and the machine tries to > format the partitions it says: > > unable to find device node for /dev/da0s1b under /dev! > > and then it comes out. > > Any ideas what is going on. Also tried making two slices no luck. > > Thanks in advance. > > A > _______________________________________________ > freebsd-hackers@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hackers > To unsubscribe, send any mail to > "freebsd-hackers-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 22:22:27 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74CDF16A41C for ; Mon, 23 May 2005 22:22:27 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id F17ED43D49 for ; Mon, 23 May 2005 22:22:26 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so2142914wra for ; Mon, 23 May 2005 15:22:26 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=l9oyqKQZ025p4H7DaBTCOpkTrWAA9A9N16iOzZgRiPrFfwhdBDDAJvZqwUfoIiVmdGvLGOI5jHk1JYaBJuL1JuQkN2uNXvAp5w8jMBPBc3R0OaxsOGXXs6dwM1LFKeUENhQLLyUsF7yqFHUScF+kXTgitXUybZJS1pngG4zOrh4= Received: by 10.54.7.16 with SMTP id 16mr3825693wrg; Mon, 23 May 2005 15:22:26 -0700 (PDT) Received: by 10.54.71.9 with HTTP; Mon, 23 May 2005 15:22:26 -0700 (PDT) Message-ID: <781e2bc005052315227913ada@mail.gmail.com> Date: Mon, 23 May 2005 15:22:26 -0700 From: Benjamin Keating To: freebsd-questions@freebsd.org In-Reply-To: <781e2bc0050523144733827b78@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <781e2bc0050523111214a8ff5@mail.gmail.com> <20050523205601.GA11447@slackbox.xs4all.nl> <781e2bc0050523144733827b78@mail.gmail.com> Subject: Re: Tuning Hard Disks X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Benjamin Keating List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 22:22:27 -0000 I just noticed, 3ware managed devices (obviously) don't show up. Is there 3rd party software that needs to be installed in order to view/tune 3ware (twe) devices? Nothing FreeBSD specific came with the card. On 5/23/05, Benjamin Keating wrote: > Thank you. This is exactly what I was looking for. How did you learn > about these tools? From the pages i've read (most of) the handbook, I > didn't see it mention them. >=20 > On 5/23/05, Roland Smith wrote: > > On Mon, May 23, 2005 at 11:12:59AM -0700, Benjamin Keating wrote: > > > Hey all, > > > > > > I'd like to tweak my drives / view there current configurations. I ge= t > > > really slow xfers from two machine in the same, quite, LAN (both > > > running FBSD 5.4 with good Intell Pro100 NICS). Im not sure if DMA is > > > enabled or not so I'd like to start with figuring out what to use to > > > view this info. Anything like hdparm? > > > > Assuming you have ATA drives, do the following (as root) > > > > run 'atacontrol list' to see which channel number the drive is on. Then > > try 'atacontrol mode N', where N is the channel number. This wil give > > you the current transfer mode of the drive. You can also use atacontrol > > to set the mode. See the manual page. > > > > You can see if DMA is enabled with 'sysctl hw.ata.ata_dma'. > > > > Roland > > -- > > R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain t= ext. > > public key: http://www.xs4all.nl/~rsmith/pubkey.txt > > > > > > > From owner-freebsd-questions@FreeBSD.ORG Mon May 23 22:23:01 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C069216A41F; Mon, 23 May 2005 22:23:01 +0000 (GMT) (envelope-from killing@multiplay.co.uk) Received: from multiplay.co.uk (www1.multiplay.co.uk [212.42.16.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 150F643D1F; Mon, 23 May 2005 22:23:00 +0000 (GMT) (envelope-from killing@multiplay.co.uk) Received: from vader ([212.135.219.179]) by multiplay.co.uk (multiplay.co.uk [212.42.16.7]) (MDaemon.PRO.v8.0.2.R) with ESMTP id md50001431761.msg; Mon, 23 May 2005 23:18:42 +0100 Message-ID: <007401c55fe5$f494a920$b3db87d4@multiplay.co.uk> From: "Steven Hartland" To: "Amandeep" References: <42923329.7040407@chamkila.org> <429254EB.6020604@chamkila.org> Date: Mon, 23 May 2005 23:22:46 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-Spam-Processed: multiplay.co.uk, Mon, 23 May 2005 23:18:42 +0100 (not processed: message from valid local sender) X-MDRemoteIP: 212.135.219.179 X-Return-Path: killing@multiplay.co.uk X-MDAV-Processed: multiplay.co.uk, Mon, 23 May 2005 23:18:43 +0100 Cc: freebsd-hackers@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 22:23:01 -0000 Sounds like u have followed the install guide with the drivers. I couldn't get that to work ( without ACPI ) I had to install with ACPI but this was 5.4-RELEASE but using the 5.3 driver from highpoints site as there wasn't a 5.4 driver available. 1. Boot from cd 2. got to boot prompt, load the driver from floppy 3. unplug the floppy ( must to this as floppy under amd64 is broken ) 4. boot the kernel and install. Notes: 1. I was using a RAID 5 array 5 disks * 400Gb. 2. Create the array using 16 k stripe or the performance will be poor. ----- Original Message ----- From: "Amandeep" >> I am instalaling FreeBSD 5.3 AMD 64 bit with 6- 200GB drives. Using >> Higpoint 1820A controller and doing RAID 10. I am using drivers for >> the card from Highpoint Web. >> >> The problem is when I make the partitions and the machine tries to >> format the partitions it says: >> >> unable to find device node for /dev/da0s1b under /dev! >> >> and then it comes out. >> >> Any ideas what is going on. Also tried making two slices no luck. ================================================ This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. In the event of misdirection, illegible or incomplete transmission please telephone (023) 8024 3137 or return the E.mail to postmaster@multiplay.co.uk. From owner-freebsd-questions@FreeBSD.ORG Mon May 23 22:29:12 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8494A16A41C; Mon, 23 May 2005 22:29:12 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from mail.efacilitas.de (efacilitas.de [213.133.110.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25D9343D1F; Mon, 23 May 2005 22:29:12 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-61.dynamic.qsc.de [212.202.39.61]) by mail.efacilitas.de (Postfix) with ESMTP id A4C0E123A70; Tue, 24 May 2005 00:27:48 +0200 (CEST) Received: from localhost (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 3F2F012B09A; Tue, 24 May 2005 00:28:17 +0200 (CEST) Received: from eurystheus.local ([192.168.1.67]) by localhost (eurystheus.locaL [192.168.1.67]) (amavisd-new, port 10024) with ESMTP id 51292-08; Tue, 24 May 2005 00:28:12 +0200 (CEST) Received: from [192.168.1.67] (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 6751312B08A; Tue, 24 May 2005 00:28:12 +0200 (CEST) Message-ID: <429258FB.4050503@cs.tu-berlin.de> Date: Tue, 24 May 2005 00:28:11 +0200 From: Bjoern Koenig User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050517 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Amandeep References: <42923329.7040407@chamkila.org> In-Reply-To: <42923329.7040407@chamkila.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at example.com Cc: freebsd-hackers@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 22:29:12 -0000 Hello, I think it's a question for the highpoint support. It's their product and their driver. Here are some instant hints: - read the PDF carefully and follow the instructions strictly - use the BIOS in the tarball; nothing else!! Regards Björn From owner-freebsd-questions@FreeBSD.ORG Mon May 23 22:38:18 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B927816A41C for ; Mon, 23 May 2005 22:38:18 +0000 (GMT) (envelope-from freebsd@cdunne.org.uk) Received: from hammer.realms-of-chaos.com (realms-of-chaos.com [67.18.182.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E4A543D1D for ; Mon, 23 May 2005 22:38:18 +0000 (GMT) (envelope-from freebsd@cdunne.org.uk) Received: from baa.umcus.org (unknown [130.88.135.251]) by hammer.realms-of-chaos.com (Postfix) with ESMTP id 8FDB612C0AA for ; Mon, 23 May 2005 17:38:17 -0500 (CDT) Received: from localhost (localhost.umcus.org [127.0.0.1]) by baa.umcus.org (Postfix) with ESMTP id 84B7EA6CCF for ; Mon, 23 May 2005 23:35:16 +0100 (BST) Received: from baa.umcus.org ([127.0.0.1]) by localhost (baa.umcus.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 86707-07 for ; Mon, 23 May 2005 23:35:13 +0100 (BST) Received: from www.cus.org.uk (localhost.umcus.org [127.0.0.1]) by baa.umcus.org (Postfix) with ESMTP id CE62DA6CDA for ; Mon, 23 May 2005 23:35:13 +0100 (BST) Received: from 81.178.83.84 (SquirrelMail authenticated user suchnerd) by www.cus.org.uk with HTTP; Mon, 23 May 2005 23:35:13 +0100 (BST) Message-ID: <58780.81.178.83.84.1116887713.squirrel@www.cus.org.uk> Date: Mon, 23 May 2005 23:35:13 +0100 (BST) From: "Chris Dunne" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal References: In-Reply-To: X-Virus-Scanned: amavisd-new at umcus.org Subject: linux-realplayer-10.0.4/ XFree86-Libs Problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 22:38:18 -0000 Hi This is my first post to this list so appologies if it is lacking in the right information. My problem is I want to fix linux-realplayer-10.0.4, when I try to run it I get the following error: /usr/local/lib/RealPlayer/realplay.bin: error while loading shared libraries: libatk-1.0.so.0: cannot open shared object file: No such file or directory I have searched for this message and can't find an exact match. However there seems to be lots of information on the subject so far I have: Upgrated from linux_base-7 to linux_base-rh-9. (with portupgrade -o emulators/linux_base-rh-9 /var/db/pkg/linux_base-*) Ran the following command /usr/compat/linux/sbin/ldconfig /usr/compat/linux/lib /usr/compat/linux/usr/X11R6/lib usr/compat/linux/var /usr/compat/linux/usr/X11R6/lib/X11/locale/lib Installed /usr/ports/graphics/linux-gdk-pixbuf/ One suggestion is to reinstall linux-XFree86-libs however this gives the following error message. /libexec/ld-elf.so.1: Shared object "libpopt.so.0" not found, required by "rpm2cpio" cpio: premature end of archive find: *: No such file or directory *** Error code 1 Stop in /usr/ports/x11/linux-XFree86-libs. *** Error code 1 Stop in /usr/ports/x11/linux-XFree86-libs. Could anyone either help me with other explinations as to why realplayer won't run or why linux-XFree86-libs wont install. My system is currently running FreeBSD 5.4-RELEASE-p1 I have recently updated my ports tree. I've just tried a ldd realplayer.bin which gave /usr/local/lib/RealPlayer/realplay.bin: libstdc++.so.5 => /usr/lib/libstdc++.so.5 (0x280ee000) libgdk-x11-2.0.so.0 => /usr/lib/libgdk-x11-2.0.so.0 (0x281a1000) libatk-1.0.so.0 => not found libgdk_pixbuf-2.0.so.0 => /usr/lib/libgdk_pixbuf-2.0.so.0 (0x2820f000) libm.so.6 => /lib/libm.so.6 (0x28222000) libpangoxft-1.0.so.0 => /usr/lib/libpangoxft-1.0.so.0 (0x28244000) libpangox-1.0.so.0 => /usr/lib/libpangox-1.0.so.0 (0x28265000) libpango-1.0.so.0 => /usr/lib/libpango-1.0.so.0 (0x28272000) libgobject-2.0.so.0 => not found libgmodule-2.0.so.0 => not found libdl.so.2 => /lib/libdl.so.2 (0x282a5000) libglib-2.0.so.0 => not found libgtk-x11-2.0.so.0 => /usr/lib/libgtk-x11-2.0.so.0 (0x282a9000) libpthread.so.0 => /lib/libpthread.so.0 (0x284fd000) libc.so.6 => /lib/libc.so.6 (0x2854e000) libX11.so.6 => not found libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x28675000) libXrandr.so.2 => not found libXi.so.6 => not found libXext.so.6 => not found libXft.so.2 => /usr/X11R6/lib/libXft.so.2 (0x2867e000) libXrender.so.1 => not found libfontconfig.so.1 => /usr/lib/libfontconfig.so.1 (0x28691000) libX11.so.6 => not found libfreetype.so.6 => /usr/lib/libfreetype.so.6 (0x286b7000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x280cf000) libgobject-2.0.so.0 => not found libgmodule-2.0.so.0 => not found libglib-2.0.so.0 => not found libgmodule-2.0.so.0 => not found libgobject-2.0.so.0 => not found libglib-2.0.so.0 => not found libXrender.so.1 => not found libX11.so.6 => not found libgobject-2.0.so.0 => not found libgmodule-2.0.so.0 => not found libglib-2.0.so.0 => not found libatk-1.0.so.0 => not found libgobject-2.0.so.0 => not found libgmodule-2.0.so.0 => not found libglib-2.0.so.0 => not found libXrender.so.1 => not found libXext.so.6 => not found libX11.so.6 => not found libexpat.so.0 => /usr/lib/libexpat.so.0 (0x2870b000) Hope someone can make some sense out of this, please respond if more information is required. Many Thanks, Chris Dunne From owner-freebsd-questions@FreeBSD.ORG Mon May 23 22:50:32 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2C8316A41C for ; Mon, 23 May 2005 22:50:32 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from mail.efacilitas.de (efacilitas.de [213.133.110.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 725B843D48 for ; Mon, 23 May 2005 22:50:32 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-61.dynamic.qsc.de [212.202.39.61]) by mail.efacilitas.de (Postfix) with ESMTP id 1ACA41239CA; Tue, 24 May 2005 00:49:09 +0200 (CEST) Received: from localhost (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 9516512B09A; Tue, 24 May 2005 00:49:37 +0200 (CEST) Received: from eurystheus.local ([192.168.1.67]) by localhost (eurystheus.locaL [192.168.1.67]) (amavisd-new, port 10024) with ESMTP id 54280-02; Tue, 24 May 2005 00:49:32 +0200 (CEST) Received: from [192.168.1.67] (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 3C85212B08A; Tue, 24 May 2005 00:49:32 +0200 (CEST) Message-ID: <42925DFB.3080802@cs.tu-berlin.de> Date: Tue, 24 May 2005 00:49:31 +0200 From: Bjoern Koenig User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050517 X-Accept-Language: en-us, en MIME-Version: 1.0 To: arax References: <193219855.20050523210236@arax.md> In-Reply-To: <193219855.20050523210236@arax.md> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at example.com Cc: freebsd-questions@freebsd.org Subject: Re: HighPoint RocketRAID 1640 support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2005 22:50:33 -0000 Cezar Fistik wrote: > I saw on the manufacturer's site that this board is supported under > FreeBSD, but the hptmv man page says that only 182x boards are > supported. The hptmv driver works only with RR182x and i386. > Can anyone confirm a successful instalation of 1640 on > FreeBSD? I do. You can use the binary drivers from Highpoint's website. Currently the RR1640 works fine for me with FreeBSD 5.4 and RAID 5. Until January 2004, I had some minor problems with FreeBSD's *built-in* support for the Highpoint chipsets using SATA hard disk drives. I don't know if it works properly now; I guess it does not. Björn From owner-freebsd-questions@FreeBSD.ORG Tue May 24 00:10:46 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92A3416A41C for ; Tue, 24 May 2005 00:10:46 +0000 (GMT) (envelope-from pblake4@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F7C443D49 for ; Tue, 24 May 2005 00:10:45 +0000 (GMT) (envelope-from pblake4@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so2165785wra for ; Mon, 23 May 2005 17:10:45 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:from:to:subject:date:mime-version:content-type:x-priority:x-msmail-priority:x-mailer:x-mimeole; b=p7aSZwCDkjdQRg6wzj6kxwX8hZLpo4rvZVKpCMJjAJwb1XEfw8xyr/0Gp2ksEciNR8Fnxn1+3ZzsD62w48AlieOWL8gXZLcdwYYdbfPgR6q2zZBdMOLlaa5jjZycFKno4L4wnO+hIz6KtMpVdRWBnTLDrxy0GERhIcfbKlL3xLY= Received: by 10.54.26.68 with SMTP id 68mr2762049wrz; Mon, 23 May 2005 17:10:45 -0700 (PDT) Received: from tosha3 ([24.136.248.49]) by mx.gmail.com with ESMTP id 27sm904130wrl.2005.05.23.17.10.45; Mon, 23 May 2005 17:10:45 -0700 (PDT) Message-ID: <000601c55ff5$0c086470$0301a8c0@tosha3> From: "Paul B." To: Date: Mon, 23 May 2005 20:10:46 -0400 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: help please X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 00:10:46 -0000 Hi, I just installed freebsd (may 23, 2005) and when i start up my pc it = goes to a text screen (which i know it is s'posed to do) but how do you = go to the graphics side of freebsd where it looks like (this is a bad = example) windows and you can click on things? I am running=20 i386 5.4 release Sincerely, Paul pblake4@gmail.com From owner-freebsd-questions@FreeBSD.ORG Tue May 24 00:39:54 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BDE616A41C for ; Tue, 24 May 2005 00:39:54 +0000 (GMT) (envelope-from sealbeam@pacbell.net) Received: from smtp831.mail.sc5.yahoo.com (smtp831.mail.sc5.yahoo.com [66.163.171.18]) by mx1.FreeBSD.org (Postfix) with SMTP id D134F43D1F for ; Tue, 24 May 2005 00:39:53 +0000 (GMT) (envelope-from sealbeam@pacbell.net) Received: from unknown (HELO beckett5mxunme) (sealbeam@pacbell.net@4.232.210.132 with login) by smtp831.mail.sc5.yahoo.com with SMTP; 24 May 2005 00:39:52 -0000 Message-ID: <000801c55ff8$c71aaef0$84d2e804@beckett5mxunme> From: "sealbeam" To: Date: Mon, 23 May 2005 17:37:32 -0700 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: dvi to PCL filter X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 00:39:54 -0000 Hi=20 I am a complete newcomer to unix and have just created a dual-boot = between FreeBSD 5.2.1 and Win2K (each on a separate hard drive). Now I'm = trying to get my HP 1160 Laserjet to print dvi files. I used the filter = shown in the handbook. The filter creates a link between /dev/fd/0 and a = temporary (?) file they call hpdf$$.dvi. When I try to print a dvi file, = I get the message, "Permission denied. Cannot symlink to /dev/fd/0" The = permissions on /dev/fd/0 are: crw-rw-rw-. The filter is supposed to = print "Cannot symlink to /dev/fd/0" if the ln operation fails. My = message differs in that I also get "Permission denied." Can anyone tell me what I've done wrong? Thanks Bob Beckett From owner-freebsd-questions@FreeBSD.ORG Tue May 24 00:53:55 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC0F916A41C for ; Tue, 24 May 2005 00:53:55 +0000 (GMT) (envelope-from nomadlogic@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BE3443D1D for ; Tue, 24 May 2005 00:53:55 +0000 (GMT) (envelope-from nomadlogic@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so2174289wra for ; Mon, 23 May 2005 17:53:54 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Bv0nlnip9jljU2CEvUPtmc35/8uUJcpFIyq4W/5lCnKZrBilAEdROLPmNdWDIJkDFXYzrBPrYm1iA00Kd2jHFuC6geqme/qqRrQu0VwBwhNZVQJW4sX68+VI78ZrNIqgc0Pbty7H7WvndtOOQK4ozxunT2lvtq5DN9q7ipyNUPs= Received: by 10.54.107.4 with SMTP id f4mr3819952wrc; Mon, 23 May 2005 17:53:54 -0700 (PDT) Received: by 10.54.96.19 with HTTP; Mon, 23 May 2005 17:53:54 -0700 (PDT) Message-ID: <57d7100005052317531a1623ff@mail.gmail.com> Date: Mon, 23 May 2005 17:53:54 -0700 From: pete wright To: "Paul B." In-Reply-To: <000601c55ff5$0c086470$0301a8c0@tosha3> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <000601c55ff5$0c086470$0301a8c0@tosha3> Cc: questions@freebsd.org Subject: Re: help please X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pete wright List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 00:53:55 -0000 On 5/23/05, Paul B. wrote: > Hi, > I just installed freebsd (may 23, 2005) and when i start up my pc it = goes to a text screen (which i know it is s'posed to do) but how do you go = to the graphics side of freebsd where it looks like (this is a bad example)= windows and you can click on things? >=20 > I am running > i386 > 5.4 release > Sincerely, > Paul > pblake4@gmail.com http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11.html -p --=20 ~~o0OO0o~~ Pete Wright www.nycbug.org NYC's *BSD User Group From owner-freebsd-questions@FreeBSD.ORG Tue May 24 00:58:37 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3EAD16A41C for ; Tue, 24 May 2005 00:58:36 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from titan.open-networks.net (dsl-202-173-176-254.qld.westnet.com.au [202.173.176.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95E4543D1F for ; Tue, 24 May 2005 00:58:36 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from [192.168.1.200] (unknown [192.168.1.1]) by titan.open-networks.net (Postfix) with ESMTP id 516A2408 for ; Tue, 24 May 2005 10:58:34 +1000 (EST) Message-ID: <42927C32.8090205@open-networks.net> Date: Tue, 24 May 2005 10:58:26 +1000 From: Timothy Smith User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050520) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: gnome-update.sh X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 00:58:37 -0000 how likely is the gnome upgrade script to work on a 4.10 system? i have a few manully updated ports related to wxpython and wxGTK. basicly what i'm intrested in, is can the gnome upgrade script totally blow apart my gnome installation/system, or is it intellegent enough to only replace things once they have built correctly? i'd like to update from 2.6 to 2.10, but i'm a bit nervous about what it'll do :/ From owner-freebsd-questions@FreeBSD.ORG Tue May 24 01:05:39 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C063916A41C for ; Tue, 24 May 2005 01:05:39 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 447D743D1F for ; Tue, 24 May 2005 01:05:39 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from barbish ([69.172.31.81]) by mta10.adelphia.net (InterMail vM.6.01.04.01 201-2131-118-101-20041129) with SMTP id <20050524010538.ECVR17140.mta10.adelphia.net@barbish>; Mon, 23 May 2005 21:05:38 -0400 From: "fbsd_user" To: "Francisco Reyes" , "Chris" Date: Mon, 23 May 2005 21:05:27 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <20050522202535.K29197@zoraida.natserv.net> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal Cc: John DeStefano , Jerry Bell , freebsd-questions@freebsd.org Subject: RE: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd_user@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 01:05:39 -0000 >2- Every time I see script kiddies I black hole their IPs. >I black hole them not only because of ssh, but because, just as they tried >to attack ssh the same IPs may try other attacks. I try and stay up to >date in patches, but it can not hurt to block known >compromised/hacker machines. The IPs can be listed either in the firewall >or using >route add -host 127.0.0.1 -blackhole >I was told that this method of blackholing was more efficient when using a >long list of IPs becaues IPFW looks at a linear list while the route list >was some sort of tree which is more efficient to search. >Over time.. my list of blackholed IPs is 300+ and growing. Every week I >add anywhere from 2 to 10 new IPs. :-( >Besides ssh I also look for machines trying to attack the web server.. ie >a machine looking for files in c:\winnt or any other window directory is a >sure sign of a compromised wmachine ith a virus/worm trying to infect more >machines. _______________________________________________ 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" *********************************** ******************************* These manual routes are stored in memory. Can you tell how much memory is used by your 300+ list? Is there some command to display these user added route list? Is the a single IP address or can you say 62.0.0.0/8? Can I stack these commands in a script to run every time the system boots? From owner-freebsd-questions@FreeBSD.ORG Tue May 24 01:13:02 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92FF516A41C for ; Tue, 24 May 2005 01:13:02 +0000 (GMT) (envelope-from eric_e_heintzberger@yahoo.com) Received: from web53508.mail.yahoo.com (web53508.mail.yahoo.com [206.190.37.69]) by mx1.FreeBSD.org (Postfix) with SMTP id 1AB0943D1F for ; Tue, 24 May 2005 01:13:02 +0000 (GMT) (envelope-from eric_e_heintzberger@yahoo.com) Received: (qmail 43821 invoked by uid 60001); 24 May 2005 01:13:01 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=RcDotQIZe87TOxEN94fmzIXJpQavQNd/MxUNPJ4+UtPB7fyji4G0CkEHtkQfTV0e/UhBjFoz26uaRJ2XeJtdT61PUI8+U15n/3vRCewr5IIZ8/5BlIQ9bCwT0GBfHfmwUfmNbNNMENWSFwfJyWs7iFFAgnM7C+Vf7CvPGl2DXi4= ; Message-ID: <20050524011301.43819.qmail@web53508.mail.yahoo.com> Received: from [206.163.83.30] by web53508.mail.yahoo.com via HTTP; Mon, 23 May 2005 18:13:01 PDT Date: Mon, 23 May 2005 18:13:01 -0700 (PDT) From: Eric Heintzberger To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Squid/ipfilter Transparent Proxy Problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 01:13:02 -0000 I am trying to set up a transparent caching proxy using squid and ipfilter. Currently, if I manually configure my web browser to use the squid proxy server, it works fine. My problem arises when I use ipfilter NAT to intercept HTTP requests, and force clients to use the proxy, using the following ipfilter redirect rule: rdr rl0 0/0 port 80 -> 127.0.0.1 port 3128 tcp This causes squid to crash and restart. I noticed the following error in squid's cache.log: parseHttpRequest: NAT open failed: (13) Permission denied It was suggested the permissions on /dev/ipnat should be relaxed, but this did not seem to work. Any suggestions? Here is the output of "squid -v": Squid Cache: Version 2.5.STABLE10 configure options: --bindir=/usr/local/sbin --sysconfdir=/usr/local/etc/squid - -datadir=/usr/local/etc/squid --libexecdir=/usr/local/libexec/squid --localstatedir=/usr/local/squid '--enable-removal-policies=lru heap' '--enable-auth=basic ntlm digest' '--enable-basic-auth-helpers=NCSA PAM MSNT SMB winbind' --enable-digest-auth-helpers=password '--enable-external-acl-helpers=ip_user unix_group wbinfo_group winbind_group' '--enable-ntlm-auth-helpers=SMB winbind' '--enable-store io=ufs diskd null' --enable-underscores --enable-ipf-transparent --with-large-files --enable-large-cache-files '--enable-err-languages=[omitted] --enable-default-err-language=English --prefix=/usr/local i386-portbld-freebsd5.4 __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Tue May 24 02:30:14 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75F7016A41C for ; Tue, 24 May 2005 02:30:14 +0000 (GMT) (envelope-from lists@natserv.com) Received: from mail1.acecape.com (mail1.acecape.com [66.114.74.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D43643D49 for ; Tue, 24 May 2005 02:30:13 +0000 (GMT) (envelope-from lists@natserv.com) Received: from zoraida.natserv.net (p65-147.acedsl.com [66.114.65.147]) by mail1.acecape.com (8.12.11/8.12.11) with ESMTP id j4O2UC2r016217; Mon, 23 May 2005 22:30:12 -0400 Date: Mon, 23 May 2005 22:30:11 -0400 (EDT) From: Francisco Reyes X-X-Sender: fran@zoraida.natserv.net To: Tony Shadwick In-Reply-To: <20050523095117.D47072@mail.goinet.com> Message-ID: <20050523214917.Q46920@zoraida.natserv.net> References: <1368.24.99.220.144.1116792799.squirrel@24.99.220.144> <4290EEB4.9070502@makeworld.com> <20050522202535.K29197@zoraida.natserv.net> <20050523095117.D47072@mail.goinet.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: John DeStefano , Jerry Bell , freebsd-questions@freebsd.org Subject: Re: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 02:30:14 -0000 On Mon, 23 May 2005, Tony Shadwick wrote: > Is there an effective way to manage that list? I mean, it seems to me that > you'd be adding mass routes to /etc/rc.conf. How are you going about this. See http://public.natserv.net/blackholing.tar.bz2 I put a shell script, an awk file and a mini readme. > Otherwise, it sounds like very good advice. It is not without it's problems... In particular one needs to clean the sshd.log file every time one runs the program. I may improve it later. Of course, I tend to manage a > hardware firewall in front of any of my machines, so the blackholing should > really occur there. That would be one possible place. > I wonder if that technique works under Linux as well? Don't know. If you have access to a Linux box you could man route and see. It possibly could exist there too. > manage reading my firewall rules. ;) I found it got too messy to read firewall rules when I had blackholing there too. Also the feedback I got was that firewall rule was a flat list, while the route system used some type of tree. In all honesty my machine has so little traffic that I doubt either way would be much of an issue. I just found it simpler to manage having the blackholing outside the firewall rules. That way the firewall rules are "generic" to ports and few IPs. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 02:36:20 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 123F016A41C for ; Tue, 24 May 2005 02:36:20 +0000 (GMT) (envelope-from lists@natserv.com) Received: from mail1.acecape.com (mail1.acecape.com [66.114.74.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id A282243D1F for ; Tue, 24 May 2005 02:36:19 +0000 (GMT) (envelope-from lists@natserv.com) Received: from zoraida.natserv.net (p65-147.acedsl.com [66.114.65.147]) by mail1.acecape.com (8.12.11/8.12.11) with ESMTP id j4O2a0bb018396; Mon, 23 May 2005 22:36:00 -0400 Date: Mon, 23 May 2005 22:36:00 -0400 (EDT) From: Francisco Reyes X-X-Sender: fran@zoraida.natserv.net To: fbsd_user In-Reply-To: Message-ID: <20050523223025.O46920@zoraida.natserv.net> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: RE: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 02:36:20 -0000 On Mon, 23 May 2005, fbsd_user wrote: > These manual routes are stored in memory. > Can you tell how much memory is used by your 300+ list? I don't know, but it probably is comparable to what it would take to put them in the firewall rules. > Is there some command to display these user added route list? netstat -nr|grep 127 > Is the a single IP address or can you say 62.0.0.0/8? The way I use it is a single IP, but a quick read of the man page it seems you can also indicate blocks. Man route and search for the phrase "For example" Also see my other poston this thread. In particular the URL to the small scripts I use. They could use lots of improvement, but they may be a good start for someone interested in automating the process. I believe there are also programs which can monitor the logs and automatically perform actions, but those are likely harder to learn and setup. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 02:36:43 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22C4516A41F for ; Tue, 24 May 2005 02:36:43 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id B48D043D1D for ; Tue, 24 May 2005 02:36:42 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [192.168.214.216] (c-24-1-232-64.hsd1.tx.comcast.net[24.1.232.64]) by comcast.net (sccrmhc11) with ESMTP id <2005052402364101100opi08e>; Tue, 24 May 2005 02:36:41 +0000 Message-ID: <42929339.8010001@computer.org> Date: Mon, 23 May 2005 21:36:41 -0500 From: Eric Schuele User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050325) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Roland Smith References: <20050523205202.54564.qmail@web50402.mail.yahoo.com> <20050523211606.GB11447@slackbox.xs4all.nl> In-Reply-To: <20050523211606.GB11447@slackbox.xs4all.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Beecher Rintoul , freebsd-questions@freebsd.org Subject: Re: WIFI DHCP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 02:36:43 -0000 Roland Smith wrote: > On Mon, May 23, 2005 at 01:52:01PM -0700, Beecher Rintoul wrote: > > >>I would like to use a wireless card as my primary internet connection. >>I have read the manual and see nothing mentioned about setting up the >>card to use DHCP. > > > Then you've looked in the wrong place. :-) > > >>I do not have a static ip on the access point I'm >>connecting to. How do I set the card to use DHCP? > > > Look at section 23.5 (Automatic Network Configuration). In short: > - make sure that "device bpf" is in the kernel (it is in GENERIC) > - edit /etc/rc.conf to put the interface in DHCP: 'ifconfig_XXX="DHCP"' > where XXX is the name of your wireless card. Additionally... you should man dhclient, dhclient.conf, and dhclient.leases. IMHO: `ifconfig_XXX="DHCP"` is only part of the equation. You may have to craft a dhclient.conf file to help your card associate with its access point. The dhclient.conf file will help you specify things like the SSID, weptxkey, wepmode, mode (11a, 11b, or 11g), wepkey, etc > > Roland -- Regards, Eric From owner-freebsd-questions@FreeBSD.ORG Tue May 24 03:08:48 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A03F216A41C; Tue, 24 May 2005 03:08:48 +0000 (GMT) (envelope-from jason@ec.rr.com) Received: from ms-smtp-04-eri0.southeast.rr.com (ms-smtp-04-lbl.southeast.rr.com [24.25.9.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B2C143D1D; Tue, 24 May 2005 03:08:47 +0000 (GMT) (envelope-from jason@ec.rr.com) Received: from [192.168.1.101] (cpe-065-184-196-020.ec.res.rr.com [65.184.196.20]) by ms-smtp-04-eri0.southeast.rr.com (8.12.10/8.12.7) with ESMTP id j4O38jL4020911; Mon, 23 May 2005 23:08:45 -0400 (EDT) Message-ID: <42929DB1.5010105@ec.rr.com> Date: Mon, 23 May 2005 23:21:21 -0400 From: jason henson User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050426) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD Questions , freebsd-stable@freebsd.org, freebsd-emulation@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: Subject: folding client stopped working, is it because of linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 03:08:48 -0000 I did a system update and after that my folding @ home client will not work without me doing make install in linux_base-8 ports dir. BTW, linux is already installed from before the update and even after reinstalling after the update the systems seems to forget it is there after a reboot. I can type make install and the port installs, but since I don't do a make clean first it returns immediatily. After I do this f@h runs fine. My network card uses the nvnet driver from ports which still works at boot with out me needing to make install for the linux port. I believe this driver requires the linux emulation to work btw. Any ideas as to why this might be? A corupt makefile in my ports folder? A change to the linux emulation? FreeBSD BARTON 5.4-STABLE FreeBSD 5.4-STABLE #1: Fri May 20 03:23:59 EDT 2005 root@BARTON:/usr/obj/usr/src/sys/NINAMORI i386 $ ls -l /var/db/pkg | grep linux_ drwxr-xr-x 2 root wheel 512 May 22 17:48 linux_base-8-8.0_6 Thx, Jason From owner-freebsd-questions@FreeBSD.ORG Tue May 24 04:26:39 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2292216A41F for ; Tue, 24 May 2005 04:26:39 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from av-tac-rtp.cisco.com (bantam.cisco.com [64.102.19.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85E4243D54 for ; Tue, 24 May 2005 04:26:38 +0000 (GMT) (envelope-from marcus@FreeBSD.org) X-TACSUNS: Virus Scanned Received: from rooster.cisco.com (localhost [127.0.0.1]) by av-tac-rtp.cisco.com (8.11.7p1+Sun/8.11.7) with ESMTP id j4O4Qbj02176; Tue, 24 May 2005 00:26:37 -0400 (EDT) Received: from [10.1.1.2] (jclarke-vpn.cisco.com [172.18.173.17]) by rooster.cisco.com (8.11.7p1+Sun/8.11.7) with ESMTP id j4O4QXM16425; Tue, 24 May 2005 00:26:34 -0400 (EDT) Message-ID: <4292ACF9.3020606@FreeBSD.org> Date: Tue, 24 May 2005 00:26:33 -0400 From: Joe Marcus Clarke Organization: FreeBSD, Inc. User-Agent: Mozilla Thunderbird 1.0.2 (Macintosh/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Timothy Smith References: <42927C32.8090205@open-networks.net> In-Reply-To: <42927C32.8090205@open-networks.net> X-Enigmail-Version: 0.89.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@FreeBSD.org Subject: Re: gnome-update.sh X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 04:26:39 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Timothy Smith wrote: | how likely is the gnome upgrade script to work on a 4.10 system? i have | a few manully updated ports related to wxpython and wxGTK. | basicly what i'm intrested in, is can the gnome upgrade script totally | blow apart my gnome installation/system, or is it intellegent enough to | only replace things once they have built correctly? gnome_upgrade.sh will remove all ports that depend on glib20, then rebuild them. It will maintain a list of ports it still needs to install, so you should be able to get back to your current state no matter how many failures you may encounter along the way. Depending on how old your installed packages are, your luck will vary. A fairly up-to-date tree with non-GNOME UPDATING items addressed should work without any problems. Joe - -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCkqz5b2iPiv4Uz4cRAuaKAKCboEFqSihE4LJTs9Bljh/7YKxePgCgoPkc bL7WCQ+w6NmXMktBMvFI0gE= =gn+m -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 04:33:54 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EFAA16A41C for ; Tue, 24 May 2005 04:33:54 +0000 (GMT) (envelope-from k_greenwood1@yahoo.com) Received: from web14121.mail.yahoo.com (web14121.mail.yahoo.com [66.163.171.112]) by mx1.FreeBSD.org (Postfix) with SMTP id 667CA43D1F for ; Tue, 24 May 2005 04:33:54 +0000 (GMT) (envelope-from k_greenwood1@yahoo.com) Received: (qmail 57178 invoked by uid 60001); 24 May 2005 04:33:54 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=zqIm995XueRxSdTBbXeVpxv/6TZRdmdKojy9cmm42ZR/+GdItRoJGgoI1rP47AaaU/QLlk+zfyEu7xwGCGJtO7uYO9H6WiDSPBRPSZohfiawO8pztY9zNN3Gy4wC1SSouuLUnHLiaPz/9DYOFnxqAPw5W9VJ/gbMcIv1DY0xREQ= ; Message-ID: <20050524043354.57176.qmail@web14121.mail.yahoo.com> Received: from [24.109.42.91] by web14121.mail.yahoo.com via HTTP; Mon, 23 May 2005 21:33:54 PDT Date: Mon, 23 May 2005 21:33:54 -0700 (PDT) From: "K. Greenwood" To: Eric Schuele In-Reply-To: 6667 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Beecher Rintoul , freebsd-questions@freebsd.org Subject: Re: WIFI DHCP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 04:33:54 -0000 --- Eric Schuele wrote: > Roland Smith wrote: > > On Mon, May 23, 2005 at 01:52:01PM -0700, Beecher > Rintoul wrote: > > > > > >>I would like to use a wireless card as my primary > internet connection. > >>I have read the manual and see nothing mentioned > about setting up the > >>card to use DHCP. > > > > > > Then you've looked in the wrong place. :-) > > > > > >>I do not have a static ip on the access point I'm > >>connecting to. How do I set the card to use DHCP? > > > > > > Look at section 23.5 (Automatic Network > Configuration). In short: > > - make sure that "device bpf" is in the kernel (it > is in GENERIC) > > - edit /etc/rc.conf to put the interface in DHCP: > 'ifconfig_XXX="DHCP"' > > where XXX is the name of your wireless card. > > Additionally... you should man dhclient, > dhclient.conf, and > dhclient.leases. IMHO: `ifconfig_XXX="DHCP"` is > only part of the equation. > > You may have to craft a dhclient.conf file to help > your card associate > with its access point. The dhclient.conf file will > help you specify > things like the SSID, weptxkey, wepmode, mode (11a, > 11b, or 11g), > wepkey, etc Mr. Schuele was *very* helpful in the following post. http://lists.freebsd.org/pipermail/freebsd-questions/2004-October/059938.html Once I got a chipset that was supported by "Project Evil" (aka Mr. Paul's NDISulator) all was well. FYI, broadcom sucks... Intersil rules. *pciconf -vl* tells much. Good luck. __________________________________ Do you Yahoo!? Yahoo! Mail - Find what you need with new enhanced search. http://info.mail.yahoo.com/mail_250 From owner-freebsd-questions@FreeBSD.ORG Tue May 24 04:59:48 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C18C416A41C for ; Tue, 24 May 2005 04:59:48 +0000 (GMT) (envelope-from rperry@gti.net) Received: from apollo.gti.net (apollo.gti.net [199.171.27.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C8D543D49 for ; Tue, 24 May 2005 04:59:48 +0000 (GMT) (envelope-from rperry@gti.net) Received: from zulu.my.domain (morr0637.gti.net [208.216.122.37]) by apollo.gti.net (mail) with ESMTP id 3799535783; Tue, 24 May 2005 00:59:39 -0400 (EDT) From: Bob Perry To: freebsd-questions@freebsd.org Date: Mon, 23 May 2005 11:20:29 -0400 User-Agent: KMail/1.7.1 References: <200505221429.58567.rperry@gti.net> <44sm0e133s.fsf@be-well.ilk.org> In-Reply-To: <44sm0e133s.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505231120.29223.rperry@gti.net> Cc: Lowell Gilbert Subject: Re: Confused with Refuse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 04:59:48 -0000 On Mon May 23 2005 9:30 am, Lowell Gilbert wrote: > Bob Perry writes: > > About to synch up the entire source tree with RELENG_5_4_0_RELEASE. > > Earlier I created a refuse file, (/var/db/sup/refuse), when I upgraded my > > doc and ports collection in 5.3 but remember reading somewhere that a > > refuse file was not necessarily recommended when updating an entire > > source tree. Is that still the case? > > You may not be able to build your own INDEX, and dependency-tracking > packages may get confused if the INDEX doesn't match the installed > ports, but things won't necessarily break. But you're on your own; > please don't report problems unless you know they occur with a fully > updated tree. That's the sort of warning I remember. Just couldn't readily understand why the Handbook still recommends creating it. Thanks for your response. Bob Perry From owner-freebsd-questions@FreeBSD.ORG Tue May 24 04:59:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 400F716A41C for ; Tue, 24 May 2005 04:59:49 +0000 (GMT) (envelope-from rperry@gti.net) Received: from apollo.gti.net (apollo.gti.net [199.171.27.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0899C43D49 for ; Tue, 24 May 2005 04:59:49 +0000 (GMT) (envelope-from rperry@gti.net) Received: from zulu.my.domain (morr0637.gti.net [208.216.122.37]) by apollo.gti.net (mail) with ESMTP id 253E33579D; Tue, 24 May 2005 00:59:40 -0400 (EDT) From: Bob Perry To: freebsd-questions@freebsd.org Date: Tue, 24 May 2005 01:01:28 -0400 User-Agent: KMail/1.7.1 References: <200505221429.58567.rperry@gti.net> <200505231120.29223.rperry@gti.net> <44psvix8ac.fsf@be-well.ilk.org> In-Reply-To: <44psvix8ac.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505240101.28434.rperry@gti.net> Cc: Lowell Gilbert Subject: Re: Confused with Refuse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 04:59:49 -0000 On Mon May 23 2005 11:37 am, Lowell Gilbert wrote: > Bob Perry writes: > > On Mon May 23 2005 9:30 am, Lowell Gilbert wrote: > > > Bob Perry writes: > > > > About to synch up the entire source tree with RELENG_5_4_0_RELEASE. > > > > Earlier I created a refuse file, (/var/db/sup/refuse), when I > > > > upgraded my doc and ports collection in 5.3 but remember reading > > > > somewhere that a refuse file was not necessarily recommended when > > > > updating an entire source tree. Is that still the case? > > > > > > You may not be able to build your own INDEX, and dependency-tracking > > > packages may get confused if the INDEX doesn't match the installed > > > ports, but things won't necessarily break. But you're on your own; > > > please don't report problems unless you know they occur with a fully > > > updated tree. > > > > That's the sort of warning I remember. Just couldn't readily understand > > why the Handbook still recommends creating it. > > It recommends refuse files for the doc tree, which is *very* useful, > because most users only want one language. On the ports tree, it > mentions that some people do it, but doesn't recommend it as a general > policy. It will work a lot of the time, and the ports makefiles warn > about having a complete ports collection before reporting certain > kinds of errors. > _______________________________________________ Thanks again. I'll just use it for the doc tree for now. Bob From owner-freebsd-questions@FreeBSD.ORG Tue May 24 05:06:08 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 385D216A41C for ; Tue, 24 May 2005 05:06:08 +0000 (GMT) (envelope-from sergiu.study@acasa.ro) Received: from air579.startdedicated.com (air579.startdedicated.com [69.64.37.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC25943D1D for ; Tue, 24 May 2005 05:06:07 +0000 (GMT) (envelope-from sergiu.study@acasa.ro) Received: (qmail 3493 invoked from network); 24 May 2005 05:00:23 -0000 Received: from dyn-85.204.188.84.upcnet.ro (HELO ?192.168.1.2?) (85.204.188.84) by 69.64.37.175 with SMTP; 24 May 2005 05:00:22 -0000 Message-ID: <4292B65C.7020302@acasa.ro> Date: Tue, 24 May 2005 08:06:36 +0300 From: Sergiu - IT User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.7) Gecko/20050420 X-Accept-Language: en-us, en, ro MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: "make" with proxy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 05:06:08 -0000 Hi ! In my network, on the gateway the www port is blocked but a squid server is enabled on port 88, so when I try to "make" a program, the sources cannot be downloaded. Can I do something to determine "make" to download the sources using the proxy ? And if I can, how is that ? -- -- Sergiu - IT -- http://www.sergiu-it.home.ro/ http://vegetarieni.3xforum.ro/ From owner-freebsd-questions@FreeBSD.ORG Tue May 24 05:26:47 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F0C416A41C for ; Tue, 24 May 2005 05:26:47 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from smtp04.mrf.mail.rcn.net (smtp04.mrf.mail.rcn.net [207.172.4.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id C79C743D1F for ; Tue, 24 May 2005 05:26:46 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from 209-6-197-67.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) (209.6.197.67) by smtp04.mrf.mail.rcn.net with ESMTP; 24 May 2005 01:25:46 -0400 X-IronPort-AV: i="3.93,130,1115006400"; d="scan'208"; a="38544194:sNHT19956888" From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17042.47186.126749.165554@jerusalem.litteratus.org> Date: Tue, 24 May 2005 01:14:58 -0400 To: freebsd-questions@freebsd.org In-Reply-To: <58780.81.178.83.84.1116887713.squirrel@www.cus.org.uk> References: <58780.81.178.83.84.1116887713.squirrel@www.cus.org.uk> X-Mailer: VM 7.17 under 21.5 (beta20) "cilantro" (+CVS-20050310) XEmacs Lucid Subject: linux-realplayer-10.0.4/ XFree86-Libs Problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 05:26:47 -0000 Chris Dunne writes: > My problem is I want to fix linux-realplayer-10.0.4, when I try > to run it I get the following error: > > /usr/local/lib/RealPlayer/realplay.bin: error while loading > shared libraries: libatk-1.0.so.0: cannot open shared object > file: No such file or directory On my system: huff@> dir /var/db/pkg | grep atk drwxr-xr-x 2 root wheel 512 May 23 10:29 atk-1.9.1 drwxr-xr-x 2 root wheel 512 May 23 10:28 linux-atk-1.2.0_2 Looks like you're missing a port ,,,, Robert Huff From owner-freebsd-questions@FreeBSD.ORG Tue May 24 05:30:00 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D067316A41C for ; Tue, 24 May 2005 05:30:00 +0000 (GMT) (envelope-from david@israelsson.org) Received: from mxfep04.bredband.com (mxfep04.bredband.com [195.54.107.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0BFA43D1F for ; Tue, 24 May 2005 05:29:59 +0000 (GMT) (envelope-from david@israelsson.org) Received: from gx01.bredband.com ([83.227.138.201] [83.227.138.201]) by mxfep04.bredband.com with ESMTP id <20050524052957.VUUB25940.mxfep04.bredband.com@gx01.bredband.com>; Tue, 24 May 2005 07:29:57 +0200 Received: from lala.gnapp.org ([83.227.138.201]) by gx01.bredband.com with ESMTP id <20050524052632.HZDV32165.gx01.bredband.com@lala.gnapp.org>; Tue, 24 May 2005 07:26:32 +0200 Received: by lala.gnapp.org (Postfix, from userid 1001) id BFD2FC0E2; Tue, 24 May 2005 07:31:09 +0200 (CEST) To: freebsd-questions@freebsd.org References: <4292B65C.7020302@acasa.ro> From: David Israelsson Date: Tue, 24 May 2005 07:31:09 +0200 In-Reply-To: <4292B65C.7020302@acasa.ro> (Sergiu's message of "Tue, 24 May 2005 08:06:36 +0300") Message-ID: <86d5rh5gwy.fsf@lala.gnapp.org> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.4.17 (Jumbo Shrimp, berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Sergiu - IT Subject: Re: "make" with proxy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 05:30:00 -0000 Sergiu - IT writes: > Hi ! > In my network, on the gateway the www port is blocked but a squid > server is enabled on port 88, so when I try to "make" a program, the > sources cannot be downloaded. Can I do something to determine "make" > to download the sources using the proxy ? And if I can, how is that ? fetch(1) is used to download the distfiles. The fetch(3) man page lists a number of usable environment variables. HTTP_PROXY might be worth looking at. /David From owner-freebsd-questions@FreeBSD.ORG Tue May 24 05:52:19 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B8DA16A41C for ; Tue, 24 May 2005 05:52:19 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr1.xs4all.nl (smtp-vbr1.xs4all.nl [194.109.24.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E228D43D1D for ; Tue, 24 May 2005 05:52:18 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr1.xs4all.nl (8.12.11/8.12.11) with ESMTP id j4O5qH7N062297; Tue, 24 May 2005 07:52:17 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id D7D96617A; Tue, 24 May 2005 07:52:16 +0200 (CEST) Date: Tue, 24 May 2005 07:52:16 +0200 From: Roland Smith To: Benjamin Keating Message-ID: <20050524055216.GA16954@slackbox.xs4all.nl> Mail-Followup-To: Benjamin Keating , freebsd-questions@freebsd.org References: <781e2bc0050523111214a8ff5@mail.gmail.com> <20050523205601.GA11447@slackbox.xs4all.nl> <781e2bc0050523144733827b78@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="azLHFNyN32YCQGCU" Content-Disposition: inline In-Reply-To: <781e2bc0050523144733827b78@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Tuning Hard Disks X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 05:52:19 -0000 --azLHFNyN32YCQGCU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 23, 2005 at 02:47:21PM -0700, Benjamin Keating wrote: (please don't top-post.) > Thank you. This is exactly what I was looking for. How did you learn > about these tools? From the pages i've read (most of) the handbook, I > didn't see it mention them. I came across one of the control programs in a manual page, and then I used ls to look for others: slackbox:~$ ls /usr/sbin/*control /usr/sbin/ancontrol /usr/sbin/kbdcontrol /usr/sbin/raycontrol /usr/sbin/cdcontrol /usr/sbin/l2control /usr/sbin/sdpcontrol /usr/sbin/fdcontrol /usr/sbin/lptcontrol /usr/sbin/sicontrol /usr/sbin/fwcontrol /usr/sbin/memcontrol /usr/sbin/vidcontrol /usr/sbin/hccontrol /usr/sbin/mlxcontrol /usr/sbin/wicontrol slackbox:~$ ls /sbin/*control /sbin/atacontrol /sbin/comcontrol /sbin/spppcontrol /sbin/camcontrol /sbin/conscontrol Roland --=20 R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain text. public key: http://www.xs4all.nl/~rsmith/pubkey.txt --azLHFNyN32YCQGCU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCksEQEnfvsMMhpyURAn2hAJ4lnHMR3/Lg2+BSzJNwbnlYJskPqwCdGQc6 eGVNGXZKWEQYHlqE1VsagkA= =PRoC -----END PGP SIGNATURE----- --azLHFNyN32YCQGCU-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 06:02:43 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37E2016A41C for ; Tue, 24 May 2005 06:02:43 +0000 (GMT) (envelope-from dufresnep@fastmail.fm) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE76C43D1D for ; Tue, 24 May 2005 06:02:41 +0000 (GMT) (envelope-from dufresnep@fastmail.fm) Received: from web3.messagingengine.com (web3.internal [10.202.2.212]) by frontend1.messagingengine.com (Postfix) with ESMTP id 4ECE1C922D1 for ; Tue, 24 May 2005 02:02:41 -0400 (EDT) Received: by web3.messagingengine.com (Postfix, from userid 99) id 5BB7F292; Tue, 24 May 2005 02:02:41 -0400 (EDT) Message-Id: <1116914561.5331.234806406@webmail.messagingengine.com> X-Sasl-Enc: CggH1so6CBAVqltE2+qWmiiEaj1A0toaOhrSx2HRRSz2 1116914561 From: "Paul Dufresne" To: freebsd-questions@freebsd.org Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="windows-1252" MIME-Version: 1.0 X-Mailer: MIME::Lite 1.5 (F2.73; T1.001; A1.64; B3.05; Q3.03) Date: Tue, 24 May 2005 02:02:41 -0400 Subject: Lost /etc/group after installing mtools installed X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 06:02:43 -0000 I am on 5.4-RELEASE. Like I said in previous mail, my /etc/group file have become 0 bytes long after some problem. I first thought it was after rebooting following a computer hang (was hanging when dd if= of=/dev/fd0, but after having load default values in BIOS, seems to be fixed, was deactivating UART ports, USB, and parrallel ports, should try to find which was causing problems with floppy). But now I remembered that I installed mtools just before losing /etc/group. Maybe try to add a group the wrong way? I am still looking for a default /etc/group file. --Paul From owner-freebsd-questions@FreeBSD.ORG Tue May 24 06:06:31 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C13AD16A41C for ; Tue, 24 May 2005 06:06:31 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr6.xs4all.nl (smtp-vbr6.xs4all.nl [194.109.24.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 003DF43D48 for ; Tue, 24 May 2005 06:06:30 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr6.xs4all.nl (8.12.11/8.12.11) with ESMTP id j4O66S5Z070368; Tue, 24 May 2005 08:06:29 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id B2F93617A; Tue, 24 May 2005 08:06:28 +0200 (CEST) Date: Tue, 24 May 2005 08:06:28 +0200 From: Roland Smith To: sealbeam Message-ID: <20050524060628.GC16954@slackbox.xs4all.nl> Mail-Followup-To: sealbeam , freebsd-questions@freebsd.org References: <000801c55ff8$c71aaef0$84d2e804@beckett5mxunme> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oTHb8nViIGeoXxdp" Content-Disposition: inline In-Reply-To: <000801c55ff8$c71aaef0$84d2e804@beckett5mxunme> User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: dvi to PCL filter X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 06:06:31 -0000 --oTHb8nViIGeoXxdp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 23, 2005 at 05:37:32PM -0700, sealbeam wrote: > Hi=20 >=20 > I am a complete newcomer to unix and have just created a dual-boot > between FreeBSD 5.2.1 and Win2K (each on a separate hard drive). Now > I'm trying to get my HP 1160 Laserjet to print dvi files. =20 > Can anyone tell me what I've done wrong? You can use one of the dvi to pcl programs that come with tex, e.g. dvilj if the document does not contain graphics.=20 If the document has graphics, convert it to postscript first with 'dvips', and then convert to pcl with ghostscript, using one of its laserjet drivers. Roland --=20 R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain text. public key: http://www.xs4all.nl/~rsmith/pubkey.txt --oTHb8nViIGeoXxdp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCksRkEnfvsMMhpyURApHpAJwMw3YWUn29I3DANs2ak1vL+JKHDACfWybE fP+e7nWGjNktOLK0j/tq57g= =dQRw -----END PGP SIGNATURE----- --oTHb8nViIGeoXxdp-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 06:07:33 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 407FB16A41C for ; Tue, 24 May 2005 06:07:33 +0000 (GMT) (envelope-from eric@sociostat.org) Received: from sociostat.org (echeney.adsl.spfdma.crocker.net [159.250.21.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id 012B043D1F for ; Tue, 24 May 2005 06:07:32 +0000 (GMT) (envelope-from eric@sociostat.org) Received: from eric by sociostat.org with local (Exim 3.36 #1 (Debian)) id 1DaSWD-0006PM-00; Tue, 24 May 2005 02:03:57 -0400 Date: Tue, 24 May 2005 02:03:57 -0400 From: Eric Cheney To: pete wright Message-ID: <20050524060357.GA24616@sociostat.org> References: <000601c55ff5$0c086470$0301a8c0@tosha3> <57d7100005052317531a1623ff@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <57d7100005052317531a1623ff@mail.gmail.com> User-Agent: Mutt/1.5.9i Sender: Eric Cheney Cc: "Paul B." , questions@freebsd.org Subject: Re: help please X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cheney@soc.umass.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 06:07:33 -0000 On Monday, 23 May 2005 at 17:53:54 -0700, pete wright wrote: > On 5/23/05, Paul B. wrote: > > Hi, > > I just installed freebsd (may 23, 2005) and when i start up my > > pc it goes to a text screen (which i know it is s'posed to do) > > but how do you go to the graphics side of freebsd where it looks > > like (this is a bad example) windows and you can click on > > things? run.... /stand/sysinstall --> configure --> distributions --> X.org That would be a good place to start. -- cheney@soc.umass.edu http://sociostat.org/~eric/ From owner-freebsd-questions@FreeBSD.ORG Tue May 24 06:32:06 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E651C16A41C for ; Tue, 24 May 2005 06:32:06 +0000 (GMT) (envelope-from cheetanc@cs.ucdavis.edu) Received: from baton.cs.ucdavis.edu (baton.cs.ucdavis.edu [169.237.6.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id A327043D1F for ; Tue, 24 May 2005 06:32:06 +0000 (GMT) (envelope-from cheetanc@cs.ucdavis.edu) Received: from baton.cs.ucdavis.edu (localhost [127.0.0.1]) by baton.cs.ucdavis.edu (8.13.2/8.12.10) with ESMTP id j4O6W5QU007805 for ; Mon, 23 May 2005 23:32:05 -0700 (PDT) Received: from pc49.cs.ucdavis.edu (pc49.cs.ucdavis.edu [169.237.5.63]) by baton.cs.ucdavis.edu (8.13.2/8.13.2) with ESMTP id j4O6W590007802 for ; Mon, 23 May 2005 23:32:05 -0700 (PDT) Date: Mon, 23 May 2005 23:32:06 -0700 (PDT) From: "C.G.Senthilkumar." To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on baton.cs.ucdavis.edu Subject: libiptc equivalent in FreeBSD ipfw X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 06:32:07 -0000 Hi, I want to add some rules to the ipfw kernel table directly from my program rather than going through the ipfw user-space program. Is there some control library analogous to libiptc in Linux's netfilter/iptables that would let me do that? If yes, where could I learn more about it? Thanks in advance. Senthil. -- Today's fortune: Etiquette requires us to admire the human race. --Mark Twain From owner-freebsd-questions@FreeBSD.ORG Tue May 24 06:52:36 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 853D816A41C for ; Tue, 24 May 2005 06:52:36 +0000 (GMT) (envelope-from nlamprecht@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF3C543D4C for ; Tue, 24 May 2005 06:52:33 +0000 (GMT) (envelope-from nlamprecht@gmail.com) Received: by zproxy.gmail.com with SMTP id 40so2713136nzk for ; Mon, 23 May 2005 23:52:33 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Ahtid5LSKfPwCMHd5nysx/Q/34yJd/hiklVYaLua72OfMk4VldVpeNJ6TxBetC7ZTTBtAwf55KHFs8PvaqNoTcI2WNnaHjPQ0/uwog6JlNacNSA7JU3vJtstTXNSsfKZFTQ1lKrot83zYJtn5lc6XPpDWQ03Se84B6QMTurwFFA= Received: by 10.36.129.12 with SMTP id b12mr352804nzd; Mon, 23 May 2005 23:52:33 -0700 (PDT) Received: by 10.36.106.6 with HTTP; Mon, 23 May 2005 23:52:33 -0700 (PDT) Message-ID: <7cbadc87050523235271b6c960@mail.gmail.com> Date: Tue, 24 May 2005 08:52:33 +0200 From: Nelis Lamprecht To: Paul Dufresne In-Reply-To: <1116914561.5331.234806406@webmail.messagingengine.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <1116914561.5331.234806406@webmail.messagingengine.com> Cc: freebsd-questions@freebsd.org Subject: Re: Lost /etc/group after installing mtools installed X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Nelis Lamprecht List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 06:52:36 -0000 On 5/24/05, Paul Dufresne wrote: >=20 > I am still looking for a default /etc/group file. >=20 If you have the source installed. /usr/src/etc/group nelis From owner-freebsd-questions@FreeBSD.ORG Tue May 24 07:04:09 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E29416A41C; Tue, 24 May 2005 07:04:09 +0000 (GMT) (envelope-from unixtools@hotmail.com) Received: from hotmail.com (bay21-f42.bay21.hotmail.com [65.54.233.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id C309F43D53; Tue, 24 May 2005 07:04:08 +0000 (GMT) (envelope-from unixtools@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 24 May 2005 00:04:08 -0700 Message-ID: Received: from 203.199.109.161 by by21fd.bay21.hotmail.msn.com with HTTP; Tue, 24 May 2005 07:04:08 GMT X-Originating-IP: [203.199.109.161] X-Originating-Email: [unixtools@hotmail.com] X-Sender: unixtools@hotmail.com In-Reply-To: <42921DB4.3080607@centtech.com> From: "Sunil Sunder Raj" To: anderson@centtech.com Date: Tue, 24 May 2005 07:04:08 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 24 May 2005 07:04:08.0459 (UTC) FILETIME=[C7AB6DB0:01C5602E] Cc: freebsd-isp@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Freebsd pxeboot problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 07:04:09 -0000 Hi, Below are all the details I can provide you. dhcpd.conf ========== ddns-update-style none; option routers 10.0.0.1; subnet 10.0.0.0 netmask 255.255.255.0 { range 10.0.0.22 10.0.0.24; option subnet-mask 255.255.255.0; option broadcast-address 10.0.0.255; option domain-name-servers 202.54.1.30, 202.54.1.18; option domain-name "xyz.com"; default-lease-time 2592000; max-lease-time 2592000; next-server 10.0.0.10; server-name "xyz.com"; server-identifier 10.0.0.10; option root-path "/usr/local/exports/freebsd5.4"; filename "boot/pxeboot"; } /etc/exports ============ /usr/local/exports/freebsd5.4 -ro /etc/inetd.conf =============== tftp dgram udp wait root /usr/libexec/tftpd tftpd -l /usr/local/exports/freebsd5.4 # strings /usr/local/exports/freebsd5.4/boot/pxeboot | grep "nfs" boot.nfsroot.server boot.nfsroot.path boot.nfsroot.nfshandle no rootpath, no nfs /usr/src/lib/libstand/nfs.c nfsread: short packet, %d < %ld # ls -l /usr/local/exports/freebsd5.4 total 1292 -r--r--r-- 1 root wheel 801 May 8 07:05 .cshrc -r--r--r-- 1 root wheel 1458 May 8 10:38 .profile dr-xr-xr-x 18 root wheel 512 May 8 10:38 5.4-RELEASE -r--r--r-- 1 root wheel 6192 May 8 07:05 COPYRIGHT -r--r--r-- 1 root wheel 18133 May 8 10:38 ERRATA.HTM -r--r--r-- 1 root wheel 10109 May 8 10:38 ERRATA.TXT -r--r--r-- 1 root wheel 125891 May 8 10:38 HARDWARE.HTM -r--r--r-- 1 root wheel 74414 May 8 10:38 HARDWARE.TXT -r--r--r-- 1 root wheel 76334 May 8 10:38 INSTALL.HTM -r--r--r-- 1 root wheel 56771 May 8 10:38 INSTALL.TXT -r--r--r-- 1 root wheel 46766 May 8 10:38 MIGRATE5.HTM -r--r--r-- 1 root wheel 31732 May 8 10:38 MIGRATE5.TXT -r--r--r-- 1 root wheel 20445 May 8 10:38 README.HTM -r--r--r-- 1 root wheel 14798 May 8 10:38 README.TXT -r--r--r-- 1 root wheel 47258 May 8 10:38 RELNOTES.HTM -r--r--r-- 1 root wheel 24167 May 8 10:38 RELNOTES.TXT dr-xr-xr-x 2 root wheel 1024 May 8 07:01 bin dr-xr-xr-x 5 root wheel 512 May 23 01:02 boot -r--r--r-- 1 root wheel 2048 May 8 10:47 boot.catalog -r--r--r-- 1 root wheel 39 May 8 10:38 cdrom.inf dr-xr-xr-x 2 root wheel 512 May 8 07:00 dev -r--r--r-- 1 root wheel 2971 May 8 10:38 docbook.css dr-xr-xr-x 17 root wheel 2048 May 8 07:05 etc -r--r--r-- 1 root wheel 685246 May 8 10:44 filename.txt dr-xr-xr-x 2 root wheel 512 May 8 10:38 floppies dr-xr-xr-x 3 root wheel 1024 May 8 07:02 lib dr-xr-xr-x 2 root wheel 512 May 8 07:01 libexec dr-xr-xr-x 2 root wheel 512 May 8 07:00 mnt dr-xr-xr-x 14 root wheel 512 May 8 10:44 packages dr-xr-xr-x 2 root wheel 512 May 8 07:00 proc dr-xr-xr-x 2 root wheel 2560 May 8 07:02 rescue dr-xr-xr-x 2 root wheel 512 May 8 07:05 root dr-xr-xr-x 2 root wheel 2560 May 8 07:04 sbin lrwxrwxrwx 1 root wheel 7 May 22 19:03 stand -> /rescue lrwxrwxrwx 1 root wheel 11 May 22 19:03 sys -> usr/src/sys dr-xr-xr-x 2 root wheel 512 May 8 07:00 tmp dr-xr-xr-x 5 root wheel 1024 Jul 13 2003 tools dr-xr-xr-x 13 root wheel 512 May 8 10:26 usr dr-xr-xr-x 20 root wheel 512 May 8 10:26 var # ls -l /usr/local/exports/freebsd5.4/boot total 1668 -r--r--r-- 1 root wheel 7007 May 8 07:03 beastie.4th -r--r--r-- 1 root wheel 8192 May 8 07:03 boot -r--r--r-- 1 root wheel 512 May 8 07:03 boot0 -r--r--r-- 1 root wheel 512 May 8 07:03 boot0sio -r--r--r-- 1 root wheel 512 May 8 07:03 boot1 -r--r--r-- 1 root wheel 7680 May 8 07:03 boot2 -r--r--r-- 1 root wheel 1184 May 8 07:03 cdboot dr-xr-xr-x 2 root wheel 512 May 8 07:03 defaults -r--r--r-- 1 root wheel 1982 May 8 07:05 device.hints -r--r--r-- 1 root wheel 2249 May 8 07:03 frames.4th dr-xr-xr-x 2 root wheel 8192 May 8 10:21 kernel -r-xr-xr-x 1 manage wheel 212992 May 23 23:23 loader -r--r--r-- 1 root wheel 7772 May 8 07:03 loader.4th -r--r--r-- 1 root wheel 107 May 22 19:29 loader.conf -r--r--r-- 1 root wheel 13893 May 8 07:03 loader.help -r--r--r-- 1 root wheel 370 May 8 07:03 loader.rc -r--r--r-- 1 root wheel 512 May 8 07:03 mbr -r--r--r-- 1 root wheel 1082571 May 8 10:38 mfsroot.gz dr-xr-xr-x 2 root wheel 512 May 8 07:00 modules -rw-r--r-- 1 manage wheel 215040 May 23 23:23 pxeboot -r--r--r-- 1 root wheel 692 May 8 07:03 screen.4th -r--r--r-- 1 root wheel 36440 May 8 07:03 support.4th # cat /usr/local/exports/freebsd5.4/boot/loader.conf mfsroot_load="YES" mfsroot_type="mfs_root" mfsroot_name="/boot/mfsroot" vfs.root.mountfrom="ufs:/dev/md0c" Regards Sunil Sunder Raj >From: Eric Anderson >To: Sunil Sunder Raj >CC: freebsd-questions@freebsd.org, freebsd-isp@freebsd.org >Subject: Re: Freebsd pxeboot problem >Date: Mon, 23 May 2005 13:15:16 -0500 > >Sunil Sunder Raj wrote: >>Hi, >>Was trying to install freebsd 5.3 via pxeboot. The Dhcp server leases the >>Ip address, the tftp server is located fine and the pxeboot file gets >>downloaded at the client end. But this pxeboot is not getting the proper >>server path and gateway ip. >> >>It is always falling to the default /pxeroot server path (as programmed in >>the pxe.c file) and don't know where it gets the gateway ip as >>192.168.102.1 >> >>Display I get >>======== >>pxe_open: server addr: "This is proper. The Dhcp/Tftp server ip" >>pxe_open: server path: /pxeroot ----------------------- default server >>path. This is not what I defined in my dhcpd.conf >>pxe_open: gateway ip: 192.168.102.1 --------------- Don't know where it >>got it from. This is not what I defined in my dhcpd.conf > > >Can you send the relevant dhcp conf section? > >Eric > > >-- >------------------------------------------------------------------------ >Eric Anderson Sr. Systems Administrator Centaur Technology >A lost ounce of gold may be found, a lost moment of time never. >------------------------------------------------------------------------ From owner-freebsd-questions@FreeBSD.ORG Tue May 24 07:10:13 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D505716A41C for ; Tue, 24 May 2005 07:10:13 +0000 (GMT) (envelope-from non_secure@yahoo.com) Received: from web53308.mail.yahoo.com (web53308.mail.yahoo.com [206.190.39.237]) by mx1.FreeBSD.org (Postfix) with SMTP id 64A4043D1D for ; Tue, 24 May 2005 07:10:13 +0000 (GMT) (envelope-from non_secure@yahoo.com) Received: (qmail 41500 invoked by uid 60001); 24 May 2005 07:10:12 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=rO3yciPj6v/c3IypkgU8lLnPFYfiG5jOe6gMDWc+MmyX5zL3E83AyhRCN0F4cfw95ehnErL1h3B+f5SuOXCtrqxtqKf0WUFX/fkE/i3oPQ4p6eGtOITgcVQsmRHkC4JtGNdjbK9duJQ74tZ2YD34oVs3MTo9mjbZh5hsmgrEQcc= ; Message-ID: <20050524071012.41498.qmail@web53308.mail.yahoo.com> Received: from [208.186.91.245] by web53308.mail.yahoo.com via HTTP; Tue, 24 May 2005 00:10:12 PDT Date: Tue, 24 May 2005 00:10:12 -0700 (PDT) From: Joe Schmoe To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: how can I make xterm just like the console ? (colors, etc.) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 07:10:14 -0000 Hello, I am used to using the console for things like bitchx, nethack, etc. Now I have started using Xorg in 5.4-RELEASE (with the ion window manager). I notice that the xterm program comes up with black text on a white background, and that colors in BitchX, etc., are not the same as they were in the console. Can someone tell me what configuration I need to make the colors (and as much other behavior as possible) in xterm identical to the normal FreeBSD console ? thanks. __________________________________ Do you Yahoo!? Yahoo! Small Business - Try our new Resources site http://smallbusiness.yahoo.com/resources/ From owner-freebsd-questions@FreeBSD.ORG Tue May 24 07:15:18 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E770616A41C for ; Tue, 24 May 2005 07:15:18 +0000 (GMT) (envelope-from jay2xra@yahoo.com) Received: from web51608.mail.yahoo.com (web51608.mail.yahoo.com [206.190.38.213]) by mx1.FreeBSD.org (Postfix) with SMTP id 7218043D1D for ; Tue, 24 May 2005 07:15:18 +0000 (GMT) (envelope-from jay2xra@yahoo.com) Received: (qmail 25387 invoked by uid 60001); 24 May 2005 07:15:17 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=cOf8J+GmMRie4qAeHXSRfO3zFDeBH7kuIVOSsycxX0WbixqznPhUIO1IYJwzgXMUaqlk+VijWOngiE3AZI+zWHNuLyf7vGs0x4zfxv7rTe0yNr3zdNjXfUEI/9fc6Xeik59DIGcjQwQBVLrdnK6G/M5OWhVfmglUus/SzU3MCJg= ; Message-ID: <20050524071517.25385.qmail@web51608.mail.yahoo.com> Received: from [202.90.128.28] by web51608.mail.yahoo.com via HTTP; Tue, 24 May 2005 00:15:17 PDT Date: Tue, 24 May 2005 00:15:17 -0700 (PDT) From: Mark Jayson Alvarez To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Merging a directory to the search path of includes and libs permanently(ldconfig -m....) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 07:15:19 -0000 Hi, Is there a way to merge a certain directory to the library search path or include search path permanently? "ldconfig -m" works only while the computer have not yet been rebooted. I have an experienced that I was able to install a certain application that depends on a library not found in the standard search path, so I used ldconfig -m... but after rebooting, the application can't run anymore because of the library not found. __________________________________ Do you Yahoo!? Yahoo! Small Business - Try our new Resources site http://smallbusiness.yahoo.com/resources/ From owner-freebsd-questions@FreeBSD.ORG Tue May 24 07:19:29 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0261616A41C for ; Tue, 24 May 2005 07:19:29 +0000 (GMT) (envelope-from non_secure@yahoo.com) Received: from web53308.mail.yahoo.com (web53308.mail.yahoo.com [206.190.39.237]) by mx1.FreeBSD.org (Postfix) with SMTP id 7ECD843D1D for ; Tue, 24 May 2005 07:19:28 +0000 (GMT) (envelope-from non_secure@yahoo.com) Received: (qmail 43259 invoked by uid 60001); 24 May 2005 07:19:28 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=ZSNVYvZxmsvhZ1prc9OlYjyaGUxhKXzYcQNbDsqJj7wxITjUgDgP+8qDGqMLYzL4+Uap3b5EiOcLCfPCs1dDpLhxUiFb6RmgFFofLExlCL2owtDtjlTyTxsS633jgx30B3WFFo88FxH4Avbpw4VYLBSlBdg/KPlVSya0+aFXpbE= ; Message-ID: <20050524071927.43257.qmail@web53308.mail.yahoo.com> Received: from [208.186.91.245] by web53308.mail.yahoo.com via HTTP; Tue, 24 May 2005 00:19:27 PDT Date: Tue, 24 May 2005 00:19:27 -0700 (PDT) From: Joe Schmoe To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: mapping mouse clicks to keystrokes in X ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 07:19:29 -0000 I want my two mouse buttons to create the letters z and x when I press them, instead of the normal actions that those mouse buttons send to X. Don't ask. It's as simple as it sounds: if I click mouse button one, it is as if I press z on the keyboard, if I click mouse button 2, it is as if I press x on the keyboard. Does anyone know how to do this ? I am looking at xmodmap, but even though it swaps mouse buttons around, and maps keys to other keys, I can't see how to make it map mouse buttons to keys... Any ideas ? __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Tue May 24 07:38:47 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC3D216A41C for ; Tue, 24 May 2005 07:38:47 +0000 (GMT) (envelope-from eodyna@yahoo.com.au) Received: from web32811.mail.mud.yahoo.com (web32811.mail.mud.yahoo.com [68.142.206.41]) by mx1.FreeBSD.org (Postfix) with SMTP id 8611F43D1D for ; Tue, 24 May 2005 07:38:47 +0000 (GMT) (envelope-from eodyna@yahoo.com.au) Received: (qmail 68113 invoked by uid 60001); 24 May 2005 07:38:47 -0000 Message-ID: <20050524073847.68111.qmail@web32811.mail.mud.yahoo.com> Received: from [203.8.18.100] by web32811.mail.mud.yahoo.com via HTTP; Tue, 24 May 2005 17:38:46 EST Date: Tue, 24 May 2005 17:38:46 +1000 (EST) From: eodyna To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Broadcom BCM5751 Gigabit Ethernet on freebsd 5.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 07:38:48 -0000 hi everyone, im trying to get gigabit to work with my dell optiplex machine. i read from another message ">Answering (maybe) my own question, it looks like the changes to miidevs > and brgphy didn't make the 5.3 cut, even though the changes to bge did. > > Will advise. > That was it. Pulled in miidevs, brgphy.c, brgphyreg.h from HEAD " but im not sure what the person meant by pulling it in from HEAD. can someone explain it to me? yes im not very clever. :P ps: if you could also include me in on the cc that would be great. thanks again. ams Find local movie times and trailers on Yahoo! Movies. http://au.movies.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Tue May 24 07:50:24 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1095116A41C for ; Tue, 24 May 2005 07:50:24 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from titan.open-networks.net (dsl-202-173-176-254.qld.westnet.com.au [202.173.176.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADFCD43D1D for ; Tue, 24 May 2005 07:50:23 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from [192.168.1.200] (tim.open-networks.net [192.168.1.1]) by titan.open-networks.net (Postfix) with ESMTP id 9F6963E4 for ; Tue, 24 May 2005 17:50:21 +1000 (EST) Message-ID: <4292DCBD.5020904@open-networks.net> Date: Tue, 24 May 2005 17:50:21 +1000 From: Timothy Smith User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050520) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: 5.3 doesn't detect wireless card dwl g520 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 07:50:24 -0000 is there something extra i can do to force it to load this card? From owner-freebsd-questions@FreeBSD.ORG Tue May 24 07:59:35 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3E7E16A41C for ; Tue, 24 May 2005 07:59:35 +0000 (GMT) (envelope-from juu.borg@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61CEB43D1D for ; Tue, 24 May 2005 07:59:35 +0000 (GMT) (envelope-from juu.borg@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so2260198wra for ; Tue, 24 May 2005 00:59:34 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=VSUrnf3hlzpR3CGdQNdcNBGrBaOsHt1ObVQbzQ47kW6uEzaFlwrJjGBIKGs+k+c5H31+Iuue3w4A4MQ3gAuYtF5vJtBlC+BnAsQUXdYnKBMTj8u1JdBV7sACR+8smYALq1qlQc36o8KhpI3eu46+9azTbjxCFotR1q0gSWIV/vM= Received: by 10.54.79.8 with SMTP id c8mr3424226wrb; Tue, 24 May 2005 00:59:33 -0700 (PDT) Received: by 10.54.140.4 with HTTP; Tue, 24 May 2005 00:59:33 -0700 (PDT) Message-ID: <6f2ed49705052400594ed43037@mail.gmail.com> Date: Tue, 24 May 2005 09:59:33 +0200 From: Joseph Borg To: FreeBSD Mailing List Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Samba Config X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: joeborg@ieee.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 07:59:35 -0000 Hi, I don't know whether this is the appropriate list to ask but since my install is on FreeBSD, I thought I'd try. I've got a FreeBSD server 5.4 running samba 3.x. I then have 3 Windows XP Pro Stand Alone PCs. I'd like to use the samba server as a simple file share/network drive server. I would not like to run it as a domain controllers. I'm therefore going to use a simple workgroup. The samba server would have multiple shares and, ideally, each share will have read and/or write access according to the PC/user accessing it. Is there any way of doing this in a simple manner? Ideally I'l like to avoid users having to explicitely authenticate each time they need to access a shared drive. I originally thought of assigning permissions according to IP address (since xp pcs have static ips...this would have worked fine for me, but i can't find out if its possible). Please note that I'm not looking for bullet proof security. I simply want a way to implicitely assign a given user permissions to a share, without complex authentication. thanks, Joe From owner-freebsd-questions@FreeBSD.ORG Tue May 24 08:23:37 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59BF916A41C for ; Tue, 24 May 2005 08:23:37 +0000 (GMT) (envelope-from algould@datawok.com) Received: from smtpauth01.mail.atl.earthlink.net (smtpauth01.mail.atl.earthlink.net [209.86.89.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F30F43D49 for ; Tue, 24 May 2005 08:23:37 +0000 (GMT) (envelope-from algould@datawok.com) Received: from [206.255.31.21] (helo=[192.168.63.10]) by smtpauth01.mail.atl.earthlink.net with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1DaUhM-0003A6-C0; Tue, 24 May 2005 04:23:36 -0400 From: "Andrew L. Gould" To: freebsd-questions@freebsd.org Date: Tue, 24 May 2005 03:24:01 -0500 User-Agent: KMail/1.6.2 References: <4292DCBD.5020904@open-networks.net> In-Reply-To: <4292DCBD.5020904@open-networks.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200505240324.01779.algould@datawok.com> X-ELNK-Trace: ee791d459e3d6817d780f4a490ca69563f9fea00a6dd62bc9a3617ad96c91990f737ce60e3b4fa54350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 206.255.31.21 Cc: Timothy Smith Subject: Re: 5.3 doesn't detect wireless card dwl g520 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 08:23:37 -0000 On Tuesday 24 May 2005 02:50 am, Timothy Smith wrote: > is there something extra i can do to force it to load this card? What do you mean by "extra"? What have you done so far? Have you recompiled the kernel with device lines for ath and ath_hal? Andrew Gould From owner-freebsd-questions@FreeBSD.ORG Tue May 24 08:55:14 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36DEF16A41C for ; Tue, 24 May 2005 08:55:14 +0000 (GMT) (envelope-from matti@optusnet.com.au) Received: from mail27.syd.optusnet.com.au (mail27.syd.optusnet.com.au [211.29.133.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0A5343D48 for ; Tue, 24 May 2005 08:55:13 +0000 (GMT) (envelope-from matti@optusnet.com.au) Received: from platypus.freebsd.home (c211-30-241-209.rivrw5.nsw.optusnet.com.au [211.30.241.209]) by mail27.syd.optusnet.com.au (8.12.11/8.12.11) with SMTP id j4O8t6nG031482; Tue, 24 May 2005 18:55:06 +1000 Date: Tue, 24 May 2005 18:52:29 +1000 From: matti k To: jason henson Message-Id: <20050524185229.7c1988fa.matti@optusnet.com.au> In-Reply-To: <42929DB1.5010105@ec.rr.com> References: <42929DB1.5010105@ec.rr.com> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: folding client stopped working, is it because of linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 08:55:14 -0000 On Mon, 23 May 2005 23:21:21 -0400 jason henson wrote: > linux is already installed from before the update and even after > reinstalling after the update the systems seems to forget it is there > after a reboot. Check that /etc/rc.conf and /boot/loader.conf contain linux_enable="YES" and linux_load="YES" respectively. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 09:00:51 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD06816A41C for ; Tue, 24 May 2005 09:00:51 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out4.blueyonder.co.uk (smtp-out4.blueyonder.co.uk [195.188.213.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F36143D1D for ; Tue, 24 May 2005 09:00:49 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [82.41.37.55] ([82.41.37.55]) by smtp-out4.blueyonder.co.uk with Microsoft SMTPSVC(5.0.2195.6713); Tue, 24 May 2005 10:01:27 +0100 Message-ID: <4292ED3F.8030603@dial.pipex.com> Date: Tue, 24 May 2005 10:00:47 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.7) Gecko/20050510 X-Accept-Language: en, en-us, pl MIME-Version: 1.0 To: Benjamin Keating References: <781e2bc0050523111214a8ff5@mail.gmail.com> <20050523205601.GA11447@slackbox.xs4all.nl> <781e2bc0050523144733827b78@mail.gmail.com> <20050524055216.GA16954@slackbox.xs4all.nl> In-Reply-To: <20050524055216.GA16954@slackbox.xs4all.nl> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 24 May 2005 09:01:27.0615 (UTC) FILETIME=[2B5564F0:01C5603F] Cc: freebsd-questions@freebsd.org Subject: Re: Tuning Hard Disks X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 09:00:52 -0000 Roland Smith wrote: >On Mon, May 23, 2005 at 02:47:21PM -0700, Benjamin Keating wrote: > > >>Thank you. This is exactly what I was looking for. How did you learn >>about these tools? From the pages i've read (most of) the handbook, I >>didn't see it mention them. >> >> > >I came across one of the control programs in a manual page, and then I >used ls to look for others: > > Another useful command is "man -k" e.g. man -k control and if you're not a C programmer man -k control | egrep -v '(3)' | less Or even "locate control" --Alex From owner-freebsd-questions@FreeBSD.ORG Tue May 24 09:05:47 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5486916A41C for ; Tue, 24 May 2005 09:05:47 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out3.blueyonder.co.uk (smtp-out3.blueyonder.co.uk [195.188.213.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCDAB43D54 for ; Tue, 24 May 2005 09:05:46 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [82.41.37.55] ([82.41.37.55]) by smtp-out3.blueyonder.co.uk with Microsoft SMTPSVC(5.0.2195.6713); Tue, 24 May 2005 10:06:25 +0100 Message-ID: <4292EE69.50803@dial.pipex.com> Date: Tue, 24 May 2005 10:05:45 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.7) Gecko/20050510 X-Accept-Language: en, en-us, pl MIME-Version: 1.0 To: Timothy Smith References: <42927C32.8090205@open-networks.net> In-Reply-To: <42927C32.8090205@open-networks.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 24 May 2005 09:06:25.0566 (UTC) FILETIME=[DCED1BE0:01C5603F] Cc: freebsd-questions@freebsd.org Subject: Re: gnome-update.sh X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 09:05:47 -0000 Timothy Smith wrote: > how likely is the gnome upgrade script to work on a 4.10 system? i > have a few manully updated ports related to wxpython and wxGTK. > basicly what i'm intrested in, is can the gnome upgrade script totally > blow apart my gnome installation/system, or is it intellegent enough > to only replace things once they have built correctly? > i'd like to update from 2.6 to 2.10, but i'm a bit nervous about what > it'll do :/ It worked fine for me on 4.10 or 4.11, I don't remember which exactly -- both got upgraded at similar times. It only upgraded things I had installed, but that was mainly libraries and apps like gimp. I don't run gnome as a desktop. --Alex From owner-freebsd-questions@FreeBSD.ORG Tue May 24 09:11:42 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AC5116A41C for ; Tue, 24 May 2005 09:11:42 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out2.blueyonder.co.uk (smtp-out2.blueyonder.co.uk [195.188.213.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64A5943D54 for ; Tue, 24 May 2005 09:11:40 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [82.41.37.55] ([82.41.37.55]) by smtp-out2.blueyonder.co.uk with Microsoft SMTPSVC(5.0.2195.6713); Tue, 24 May 2005 10:12:19 +0100 Message-ID: <4292EFCB.4030209@dial.pipex.com> Date: Tue, 24 May 2005 10:11:39 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.7) Gecko/20050510 X-Accept-Language: en, en-us, pl MIME-Version: 1.0 To: Francisco Reyes References: <1368.24.99.220.144.1116792799.squirrel@24.99.220.144> <4290EEB4.9070502@makeworld.com> <20050522202535.K29197@zoraida.natserv.net> <20050523095117.D47072@mail.goinet.com> <20050523214917.Q46920@zoraida.natserv.net> In-Reply-To: <20050523214917.Q46920@zoraida.natserv.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 24 May 2005 09:12:19.0227 (UTC) FILETIME=[AFB97EB0:01C56040] Cc: freebsd-questions@freebsd.org Subject: Re: securing SSH, FBSD systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 09:11:42 -0000 Francisco Reyes wrote: > I found it got too messy to read firewall rules when I had blackholing > there too. Also the feedback I got was that firewall rule was a flat > list, while the route system used some type of tree. This is true if you use one rule per blocked address, but not true, I believe if you use ipfw (version 2) tables (see man ipfw). I believe pf also has a similar feature. Large lists of IP addresses is what they were designed for :-) From man ipfw LOOKUP TABLES Lookup tables are useful to handle large sparse address sets, typically from a hundred to several thousands of entries. There could be 128 dif- ferent lookup tables, numbered 0 to 127. --Alex From owner-freebsd-questions@FreeBSD.ORG Tue May 24 09:20:51 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31E4216A41C for ; Tue, 24 May 2005 09:20:51 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from titan.open-networks.net (dsl-202-173-176-254.qld.westnet.com.au [202.173.176.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEB4B43D53 for ; Tue, 24 May 2005 09:20:50 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from [192.168.1.200] (tim.open-networks.net [192.168.1.1]) by titan.open-networks.net (Postfix) with ESMTP id 942C6408 for ; Tue, 24 May 2005 19:20:48 +1000 (EST) Message-ID: <4292F1F0.7000302@open-networks.net> Date: Tue, 24 May 2005 19:20:48 +1000 From: Timothy Smith User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050520) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: AppendRows() broken? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 09:20:51 -0000 http://www.open-networks.net/Main_example.py the above example code uses AppendRows() to add a row. AppendRows() exists, but appears to have no effect? From owner-freebsd-questions@FreeBSD.ORG Tue May 24 09:28:43 2005 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3238C16A41C for ; Tue, 24 May 2005 09:28:43 +0000 (GMT) (envelope-from itetcu@apropo.ro) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 2481243D49 for ; Tue, 24 May 2005 09:28:41 +0000 (GMT) (envelope-from itetcu@apropo.ro) Received: (qmail 25744 invoked from network); 24 May 2005 09:20:45 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 24 May 2005 09:20:45 -0000 Received: (qmail 3765 invoked by uid 89); 24 May 2005 09:43:14 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 24 May 2005 09:43:14 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 1888860B6; Tue, 24 May 2005 12:28:39 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Tue, 24 May 2005 12:28:38 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id C2F3B36; Tue, 24 May 2005 12:28:38 +0300 (EEST) Date: Tue, 24 May 2005 12:28:38 +0300 From: Ion-Mihai Tetcu To: Dan Nelson Message-ID: <20050524122838.6fd7b626@it.buh.cameradicommercio.ro> In-Reply-To: <20050523193524.GC16069@dan.emsphone.com> References: <20050523185517.GC44534@keyslapper.net> <20050523193524.GC16069@dan.emsphone.com> X-Mailer: Sylpheed-Claws 1.0.4a (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP Cc: FreeBSD Questions Subject: Re: tracking down network load? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 09:28:43 -0000 On Mon, 23 May 2005 14:35:25 -0500 Dan Nelson wrote: > In the last episode (May 23), Louis LeBlanc said: > > I have a strange question. Well, maybe not so strange. > > > > I am working on my 5.3 RELEASE system, and I notice my network > > monitor on gkrellm is showing unexplained loads (15/23Kbps sustained) > > in traffic on the external interface. > > > > I'm not too concerned that this is a security breach, but I do notice > > at least one ESTABLISHED connection that I can't explain (it goes > > back to AOL, which naturally sows a little mistrust). > > > > Anyway, how to I find the actual process (server or otherwise) on my > > end that is handling a given connection, and what kind of load it is > > handling? > > sockstat or "lsof -i" will tell you which sockets belong to which > processes, and tcpdump or any of a dozen or so programs in ports will > give you detailed network usage. Start with trafshow and iftop. Nice thing iftop; unfortunately iftop is not maintained and on my 5-STABLE after a few seconds: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 1 (LWP 100167)] 0x080af5ef in ?? () (gdb) bt full #0 0x080af5ef in ?? () No symbol table info available. #1 0x0000002f in ?? () No symbol table info available. #2 0x0804a42f in hash_insert (hash_table=0x8086000, key=0xbfbfebb0, rec=0xbfbfebf5) at hash.c:23 p = (hash_node_type *) 0x80afbf0 p0 = (hash_node_type *) 0x0 bucket = 8 #3 0x0804d3b1 in analyse_data () at ui.c:509 screen_line = (host_pair_line *) 0x80b4100 u_screen_line = {h_p_l_pp = 0xbfbfebf5, void_pp = 0xbfbfebf5} i = 0 d = (history_type *) 0x8055400 ap = {protocol = 0, src_port = 0, src = {s_addr = 167815360}, dst_port = 0, dst = { s_addr = 1654854465}} n = (hash_node_type *) 0x80afba0 #4 0x0804a827 in tick (print=0) at iftop.c:131 t = 1116926686 #5 0x0804e784 in ui_loop () at ui.c:1103 i = -1077941259 #6 0x0804b1de in main (argc=-1077941259, argv=0xbfbfebf5) at iftop.c:547 thread = 0x8085e00 sa = {__sigaction_u = {__sa_handler = 0x804a660 , __sa_sigaction = 0x804a660 }, sa_flags = 0, sa_mask = {__bits = {0, 0, 0, 0}}} (gdb) info threads 6 Thread 5 (LWP 100180) 0x2812309b in pthread_testcancel () from /usr/lib/libpthread.so.1 5 Thread 4 (runnable) 0x2811b5a5 in pthread_mutexattr_init () from /usr/lib/libpthread.so.1 4 Thread 3 (runnable) 0x2811b5a5 in pthread_mutexattr_init () from /usr/lib/libpthread.so.1 3 Thread 2 (runnable) 0x2817c72f in read () from /lib/libc.so.5 * 2 Thread 1 (LWP 100167) 0x080af5ef in ?? () -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-questions@FreeBSD.ORG Tue May 24 10:12:47 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F6A716A41C for ; Tue, 24 May 2005 10:12:47 +0000 (GMT) (envelope-from SRS0=/xzxFE6F=T7=asarian-host.net=admin@asarian-host.net) Received: from mail.asarian-host.net (mail.asarian-host.net [194.109.160.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79E6343D1D for ; Tue, 24 May 2005 10:12:46 +0000 (GMT) (envelope-from SRS0=/xzxFE6F=T7=asarian-host.net=admin@asarian-host.net) Received: from anonymizer.asarian-host.net (localhost [127.0.0.1]) (authenticated bits=0) by mail.asarian-host.net (8.13.4/8.13.4) with ESMTP id j4OACiPm046886 for ; Tue, 24 May 2005 12:12:44 +0200 (CEST) (envelope-from admin@asarian-host.net) From: Mark Received-SPF: pass (asarian-host.net: sender IP is authenticated by a trusted mechanism) receiver=asarian-host.net; client-ip=sender IP; envelope-from=; helo=asarian-host; Message-Id: <200505241012.j4OAChtF046876@asarian-host.net> Date: Tue, 24 May 2005 10:12:43 GMT X-Authenticated-Sender: admin@asarian-host.net X-Trace: GzRttGlIzwnRZO+ifaQgWWtiTOkmvCAw2ShraM5aHgjQ4RYJKWR+aU95hUNfONjT1Sfk271ajK1wq3NUA6pWRw== X-Complaints-To: abuse@asarian-host.net X-Abuse-Info: Please be sure to forward a copy of ALL headers, otherwise we are unable to process your complaint Organization: Asarian-host To: "'FreeBSD-Questions Questions'" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-Auth: Asarian-host PGP signature iQEVAwUAQpL+GzFqW1BleBN9AQHb1gf+Ir79vlsLYQ9gYkrD0hrPGV4VBoqWBpF9 LgoShugxRuRvPhxcZP/lgGt4bKOWrTiiQgZGewLbay1uDBzOw9oYL5zfXh1BMgB3 cbNCGOeWpkoUO8ReD0SD7GAjPvNuXMbFftQ1rklkKcFeeQiXzJv526cDnOnBVzpW gb4NCDNqnREZ78Cqfoe2sg0MSm9eofnAFqHMauF1PrYft2N11wrKQGpzCZuEA5kd gwQ4//shTBq3YBFaRXuDfjNovMJGwbKF1rLZCGbxS5Q9wkgGFYwJnw6Epe5Q8kC3 EeFmJoTxfIdW39iKKWnewemly1y3odVKB9h2BITviS3z2bPILw8Y5A== =4Sc7 Subject: How to integrate ECN in FreeBSD 4.11 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 10:12:47 -0000 Could someone please tell me how to integrate ECN in FreeBSD 4.11. I hear people talk about ALTQ. But I find the info to be rather sparse -- if not as good as absent. A good "how-to" document would be nice, or at least a few clues. And the only potentially viable patch I found was against 4.9. Thanks, - Mark From owner-freebsd-questions@FreeBSD.ORG Tue May 24 10:57:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9224E16A41C for ; Tue, 24 May 2005 10:57:49 +0000 (GMT) (envelope-from savage@savage.za.org) Received: from pyro.cenergynetworks.com (pyro.cenergynetworks.com [196.30.191.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2551643D58 for ; Tue, 24 May 2005 10:57:48 +0000 (GMT) (envelope-from savage@savage.za.org) Received: from [127.0.0.1] (helo=pyro.cenergynetworks.com) by pyro.cenergynetworks.com with smtp (Exim 4.50) id 1DaX4y-0009rx-re for freebsd-questions@freebsd.org; Tue, 24 May 2005 12:56:08 +0200 Received: from root by pyro.cenergynetworks.com with local (Exim 4.50) id 1DaX4x-0009rt-qN for freebsd-questions@freebsd.org; Tue, 24 May 2005 12:56:07 +0200 Date: Tue, 24 May 2005 12:56:06 +0200 From: Chris Knipe To: freebsd-questions@freebsd.org Message-ID: <20050524105605.GA37881@savage.za.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-PMX-Version: 4.7.1.128075, Antispam-Engine: 2.0.3.0, Antispam-Data: 2005.3.10.17 Subject: ipf + ipfw + divert = no go X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 10:57:49 -0000 Hi, Quick question... dmesg: IP Filter: v3.4.35 initialized. Default = pass all, Logging = enabled ipfw2 initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 1024 packets/entry by default shell: bash-2.05b# ipfw add 50 fwd 192.168.0.237,3306 tcp from any to x.x.56.178 dst-port 3306 ipfw: getsockopt(IP_FW_ADD): Operation not permitted bash-2.05b# whoami root bash-2.05b# What gives????? FreeBSD 5.4-STABLE -- Chris. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 11:17:30 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5268916A41C for ; Tue, 24 May 2005 11:17:30 +0000 (GMT) (envelope-from aleksandr.derevianko@ru.transport.bombardier.com) Received: from demas002.adtranz.com (demas002.adtranz.com [213.68.98.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5D4043D1D for ; Tue, 24 May 2005 11:17:29 +0000 (GMT) (envelope-from aleksandr.derevianko@ru.transport.bombardier.com) Received: from demalng2.goc.adtranz.com (demalng2 [53.191.115.105]) by demas002.adtranz.com (8.12.9/8.12.9) with ESMTP id j4OBBLxH012264 for ; Tue, 24 May 2005 13:11:21 +0200 (MEST) Sensitivity: To: freebsd-questions@freebsd.org From: aleksandr.derevianko@ru.transport.bombardier.com Date: Tue, 24 May 2005 15:17:30 +0000 Message-ID: X-MIMETrack: Serialize by Router on DEMALNG2/Server/Adtranz(Release 6.0.3|September 26, 2003) at 24.05.2005 13:17:32 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Subject: Multiple bootable FreeBSD disks in the same system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 11:17:30 -0000 Hello ! I'm attempting to build the Vinum-based file server. The structure is following: 1. 5 equial-sized drives, 180 real Gbytes. 2. All drives have the same structure. 1 Partition (adXs1) divided in 3 slices: adXs1a - 128Mb ufs adXs1b - 128 Mb swap adXs1d - vinum partition. /usr, /var, /tmp is on vinum partition. Root partition is copied on every HD in the system. Vinum works, system boots OK, but if i take out drive number 0 (bootable), and attempt to boot from another drive, system refuses to boot with "Can't mount root" message. Of course, fstab is wrong, but i'm expecting at least boot in single-user - it doesn't, just reboots. The problem is: Before this message, system ask for root filesystem (in form ufs:/dev/adXs1a), but it seems like it doesn't see it. I have found the solution to this problem - in loader prompt enter "boot -a", the kernel boots, shows exactly the same prompt as previously for root filesystem, and proceed without any problems. If i change wiring to make another drive ad0, it works without problems at all. OS version: FreeBSD 4.11 RELEASE, GENERIC kernel. All drives are bootable (standart MBR, dos partition active, disklabel -B). Best Regards, Alexander Derevyanko From owner-freebsd-questions@FreeBSD.ORG Tue May 24 11:19:25 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A0A616A41C for ; Tue, 24 May 2005 11:19:25 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 052FE43D1D for ; Tue, 24 May 2005 11:19:25 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E714951449; Tue, 24 May 2005 04:20:12 -0700 (PDT) Date: Tue, 24 May 2005 04:20:12 -0700 From: Kris Kennaway To: Timothy Smith Message-ID: <20050524112012.GA79446@xor.obsecurity.org> References: <4292F1F0.7000302@open-networks.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="gKMricLos+KVdGMg" Content-Disposition: inline In-Reply-To: <4292F1F0.7000302@open-networks.net> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: AppendRows() broken? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 11:19:25 -0000 --gKMricLos+KVdGMg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 24, 2005 at 07:20:48PM +1000, Timothy Smith wrote: > http://www.open-networks.net/Main_example.py =20 > the above example code uses AppendRows() to add a row. > AppendRows() exists, but appears to have no effect? This doesn't appear to be a FreeBSD question. Look for a more relevant support list. Kris --gKMricLos+KVdGMg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCkw3sWry0BWjoQKURAkIsAKDzDfbPbfxk1hhwAuzZ8NQkZiT3gwCgpMlm pgvwzr4C1NaAG22IIcsM+jo= =a+Fi -----END PGP SIGNATURE----- --gKMricLos+KVdGMg-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 11:21:08 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8306516A41C for ; Tue, 24 May 2005 11:21:08 +0000 (GMT) (envelope-from tomasq@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08A1C43D1D for ; Tue, 24 May 2005 11:21:07 +0000 (GMT) (envelope-from tomasq@gmail.com) Received: by zproxy.gmail.com with SMTP id 12so2091262nzp for ; Tue, 24 May 2005 04:21:07 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=JK44+SBQ+R1oLixLuyp2+7qTgN66sqNXttO396eavkwZseqKB3G2Ag0SQHwUgB4es8O2gLa91dWHiqZKr/+LluQCTF+QwxXM3MdcEG56clWWxgMiVE/hX4mmIYbTq4iglXdUBFzMcGoomtO0u9YllHZolnHXRdfdvXLqHQcfC6U= Received: by 10.36.23.7 with SMTP id 7mr611564nzw; Tue, 24 May 2005 04:21:07 -0700 (PDT) Received: by 10.36.2.19 with HTTP; Tue, 24 May 2005 04:21:07 -0700 (PDT) Message-ID: <9e46c99e0505240421740f328d@mail.gmail.com> Date: Tue, 24 May 2005 07:21:07 -0400 From: Tomas Quintero To: Chris Knipe In-Reply-To: <20050524105605.GA37881@savage.za.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20050524105605.GA37881@savage.za.org> Cc: freebsd-questions@freebsd.org Subject: Re: ipf + ipfw + divert = no go X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tomas Quintero List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 11:21:08 -0000 On 5/24/05, Chris Knipe wrote: > Hi, >=20 > Quick question... >=20 > dmesg: > IP Filter: v3.4.35 initialized. Default =3D pass all, Logging =3D enable= d > ipfw2 initialized, divert enabled, rule-based forwarding enabled, default= to accept, > logging limited to 1024 packets/entry by default Why are you running IPFW and IPF? --=20 -Tomas Quintero From owner-freebsd-questions@FreeBSD.ORG Tue May 24 11:24:30 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E080D16A41C for ; Tue, 24 May 2005 11:24:30 +0000 (GMT) (envelope-from ml.diespammer@netfence.it) Received: from parrot.aev.net (host29-15.pool8174.interbusiness.it [81.74.15.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2565043D1F for ; Tue, 24 May 2005 11:24:29 +0000 (GMT) (envelope-from ml.diespammer@netfence.it) Received: from soth.ventu (adsl-245-23.37-151.net24.it [151.37.23.245]) (authenticated bits=128) by parrot.aev.net (8.13.4/8.13.4) with ESMTP id j4OBTJoa028922 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 24 May 2005 13:29:27 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Received: from [10.1.2.18] (alamar.ventu [10.1.2.18]) (authenticated bits=0) by soth.ventu (8.13.3/8.13.3) with ESMTP id j4OBNHDB069048 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 24 May 2005 13:23:17 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Message-ID: <42930EDC.5020609@netfence.it> Date: Tue, 24 May 2005 13:24:12 +0200 From: Andrea Venturoli User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050502) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.51 on 192.168.2.2 X-Scanned-By: MIMEDefang 2.51 on 10.1.2.13 Subject: Polarbar: which jdk? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 11:24:31 -0000 Hello. As per subject: I'm trying to run PolarBar Mailer. If anyone has some experience about it, which jdk do you use? I tried all the native ones and they run it horribly. linux-sun-jdk works a little better (tried 1.4 and 1.5), but still with some hitches and frequent lockups. bye & Thanks av. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 11:27:33 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BBA916A41C for ; Tue, 24 May 2005 11:27:33 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from titan.open-networks.net (dsl-202-173-176-254.qld.westnet.com.au [202.173.176.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id F366F43D1F for ; Tue, 24 May 2005 11:27:32 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from [192.168.1.200] (tim.open-networks.net [192.168.1.1]) by titan.open-networks.net (Postfix) with ESMTP id 3EE373E4; Tue, 24 May 2005 21:27:30 +1000 (EST) Message-ID: <42930FA1.5060502@open-networks.net> Date: Tue, 24 May 2005 21:27:29 +1000 From: Timothy Smith User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050520) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway References: <4292F1F0.7000302@open-networks.net> <20050524112012.GA79446@xor.obsecurity.org> In-Reply-To: <20050524112012.GA79446@xor.obsecurity.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: AppendRows() broken? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 11:27:33 -0000 Kris Kennaway wrote: >On Tue, May 24, 2005 at 07:20:48PM +1000, Timothy Smith wrote: > > >>http://www.open-networks.net/Main_example.py >>the above example code uses AppendRows() to add a row. >>AppendRows() exists, but appears to have no effect? >> >> > >This doesn't appear to be a FreeBSD question. Look for a more >relevant support list. > >Kris > > heh, sorry i realised that right after i clicked send. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 11:40:37 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC0B116A41C for ; Tue, 24 May 2005 11:40:37 +0000 (GMT) (envelope-from savage@savage.za.org) Received: from pyro.cenergynetworks.com (pyro.cenergynetworks.com [196.30.191.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E88143D48 for ; Tue, 24 May 2005 11:40:37 +0000 (GMT) (envelope-from savage@savage.za.org) Received: from [127.0.0.1] (helo=pyro.cenergynetworks.com) by pyro.cenergynetworks.com with smtp (Exim 4.50) id 1DaXkR-000A7d-qG for freebsd-questions@freebsd.org; Tue, 24 May 2005 13:38:59 +0200 Received: from root by pyro.cenergynetworks.com with local (Exim 4.50) id 1DaXkR-000A7Z-ph for freebsd-questions@freebsd.org; Tue, 24 May 2005 13:38:59 +0200 Date: Tue, 24 May 2005 13:38:58 +0200 From: Chris Knipe To: freebsd-questions@freebsd.org Message-ID: <20050524113858.GA38897@savage.za.org> References: <20050524105605.GA37881@savage.za.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050524105605.GA37881@savage.za.org> User-Agent: Mutt/1.4.2.1i X-PMX-Version: 4.7.1.128075, Antispam-Engine: 2.0.3.0, Antispam-Data: 2005.3.10.17 Subject: Re: ipf + ipfw + divert = no go X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 11:40:37 -0000 On Tue, May 24, 2005 at 12:56:06PM +0200, Chris Knipe wrote: > Hi, > > Quick question... > > dmesg: > IP Filter: v3.4.35 initialized. Default = pass all, Logging = enabled > ipfw2 initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 1024 packets/entry by default > > > shell: > bash-2.05b# ipfw add 50 fwd 192.168.0.237,3306 tcp from any to x.x.56.178 dst-port 3306 > ipfw: getsockopt(IP_FW_ADD): Operation not permitted > bash-2.05b# whoami > root > bash-2.05b# > > What gives????? FreeBSD 5.4-STABLE bash-2.05b# ipfw add 50 fwd 1.1.1.1,1 tcp from 1.1.1.1 to 1.1.1.1 dst-port 1 ipfw: getsockopt(IP_FW_ADD): Operation not permitted bash-2.05b# ipfw add 50 allow ip from me to any ipfw: getsockopt(IP_FW_ADD): Operation not permitted bash-2.05b# Ok, well this is really not right.... -shrugs- -- Chris. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 11:54:50 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5607716A41C for ; Tue, 24 May 2005 11:54:50 +0000 (GMT) (envelope-from joost@jodocus.org) Received: from bps.jodocus.org (g157016.upc-g.chello.nl [80.57.157.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id C94D243D1D for ; Tue, 24 May 2005 11:54:49 +0000 (GMT) (envelope-from joost@jodocus.org) Received: from jodocus.org (localhost [127.0.0.1]) by bps.jodocus.org (8.13.3/8.13.1) with ESMTP id j4OBsjTm067223; Tue, 24 May 2005 13:54:45 +0200 (CEST) (envelope-from joost@jodocus.org) Received: (from joost@localhost) by jodocus.org (8.13.3/8.13.1/Submit) id j4OBsjGG067222; Tue, 24 May 2005 13:54:45 +0200 (CEST) (envelope-from joost) Date: Tue, 24 May 2005 13:54:45 +0200 From: Joost Bekkers To: Chris Knipe Message-ID: <20050524115445.GA67204@bps.jodocus.org> Mail-Followup-To: Joost Bekkers , Chris Knipe , freebsd-questions@freebsd.org References: <20050524105605.GA37881@savage.za.org> <20050524113858.GA38897@savage.za.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050524113858.GA38897@savage.za.org> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: ipf + ipfw + divert = no go X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 11:54:50 -0000 On Tue, May 24, 2005 at 01:38:58PM +0200, Chris Knipe wrote: > On Tue, May 24, 2005 at 12:56:06PM +0200, Chris Knipe wrote: > > Hi, > > > > Quick question... > > > > dmesg: > > IP Filter: v3.4.35 initialized. Default = pass all, Logging = enabled > > ipfw2 initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 1024 packets/entry by default > > > > > > shell: > > bash-2.05b# ipfw add 50 fwd 192.168.0.237,3306 tcp from any to x.x.56.178 dst-port 3306 > > ipfw: getsockopt(IP_FW_ADD): Operation not permitted > > bash-2.05b# whoami > > root > > bash-2.05b# > > > > What gives????? FreeBSD 5.4-STABLE > > > bash-2.05b# ipfw add 50 fwd 1.1.1.1,1 tcp from 1.1.1.1 to 1.1.1.1 dst-port 1 > ipfw: getsockopt(IP_FW_ADD): Operation not permitted > bash-2.05b# ipfw add 50 allow ip from me to any > ipfw: getsockopt(IP_FW_ADD): Operation not permitted > bash-2.05b# At what securelevel are you running? You can use 'sysctl kern.securelevel' to check. -- greetz Joost joost@jodocus.org From owner-freebsd-questions@FreeBSD.ORG Tue May 24 11:57:40 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24B1716A420 for ; Tue, 24 May 2005 11:57:40 +0000 (GMT) (envelope-from savage@savage.za.org) Received: from pyro.cenergynetworks.com (pyro.cenergynetworks.com [196.30.191.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id A89F843D1D for ; Tue, 24 May 2005 11:57:39 +0000 (GMT) (envelope-from savage@savage.za.org) Received: from [127.0.0.1] (helo=pyro.cenergynetworks.com) by pyro.cenergynetworks.com with smtp (Exim 4.50) id 1DaY0v-000ADm-rU for freebsd-questions@freebsd.org; Tue, 24 May 2005 13:56:01 +0200 Received: from root by pyro.cenergynetworks.com with local (Exim 4.50) id 1DaY0v-000ADi-qv for freebsd-questions@freebsd.org; Tue, 24 May 2005 13:56:01 +0200 Date: Tue, 24 May 2005 13:56:01 +0200 From: Chris Knipe To: freebsd-questions@freebsd.org Message-ID: <20050524115601.GA39279@savage.za.org> References: <20050524105605.GA37881@savage.za.org> <20050524113858.GA38897@savage.za.org> <20050524115445.GA67204@bps.jodocus.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050524115445.GA67204@bps.jodocus.org> User-Agent: Mutt/1.4.2.1i X-PMX-Version: 4.7.1.128075, Antispam-Engine: 2.0.3.0, Antispam-Data: 2005.3.10.17 Subject: Re: ipf + ipfw + divert = no go X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 11:57:40 -0000 On Tue, May 24, 2005 at 01:54:45PM +0200, Joost Bekkers wrote: > On Tue, May 24, 2005 at 01:38:58PM +0200, Chris Knipe wrote: > > On Tue, May 24, 2005 at 12:56:06PM +0200, Chris Knipe wrote: > > > Hi, > > > > > > Quick question... > > > > > > dmesg: > > > IP Filter: v3.4.35 initialized. Default = pass all, Logging = enabled > > > ipfw2 initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 1024 packets/entry by default > > > > > > > > > shell: > > > bash-2.05b# ipfw add 50 fwd 192.168.0.237,3306 tcp from any to x.x.56.178 dst-port 3306 > > > ipfw: getsockopt(IP_FW_ADD): Operation not permitted > > > bash-2.05b# whoami > > > root > > > bash-2.05b# > > > > > > What gives????? FreeBSD 5.4-STABLE > > > > > > bash-2.05b# ipfw add 50 fwd 1.1.1.1,1 tcp from 1.1.1.1 to 1.1.1.1 dst-port 1 > > ipfw: getsockopt(IP_FW_ADD): Operation not permitted > > bash-2.05b# ipfw add 50 allow ip from me to any > > ipfw: getsockopt(IP_FW_ADD): Operation not permitted > > bash-2.05b# > > At what securelevel are you running? Slap me with a rotten trout! Thank you very much... Was level 3 which is obviously to high :) It's ment to be level 2. Thanks allot! -- Chris. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 11:59:21 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DF3516A41C for ; Tue, 24 May 2005 11:59:21 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from titan.open-networks.net (dsl-202-173-176-254.qld.westnet.com.au [202.173.176.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D55F43D1D for ; Tue, 24 May 2005 11:59:21 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from [192.168.1.200] (tim.open-networks.net [192.168.1.1]) by titan.open-networks.net (Postfix) with ESMTP id 613943E4; Tue, 24 May 2005 21:59:19 +1000 (EST) Message-ID: <42931717.7040300@open-networks.net> Date: Tue, 24 May 2005 21:59:19 +1000 From: Timothy Smith User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050520) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Andrew L. Gould" References: <4292DCBD.5020904@open-networks.net> <200505240324.01779.algould@datawok.com> In-Reply-To: <200505240324.01779.algould@datawok.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: 5.3 doesn't detect wireless card dwl g520 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 11:59:21 -0000 Andrew L. Gould wrote: >On Tuesday 24 May 2005 02:50 am, Timothy Smith wrote: > > >>is there something extra i can do to force it to load this card? >> >> > >What do you mean by "extra"? What have you done so far? > >Have you recompiled the kernel with device lines for ath and ath_hal? > >Andrew Gould >_______________________________________________ >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 compiling it with ath and ath_hal, but it totally freaks out on make. error on apci (i thought that stuff was disabled in generic?) From owner-freebsd-questions@FreeBSD.ORG Tue May 24 12:04:42 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6012916A41C; Tue, 24 May 2005 12:04:42 +0000 (GMT) (envelope-from swieten@itsef.com) Received: from postduif.itsef.com (ooievaar.itsef.com [62.58.92.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6D4143D1D; Tue, 24 May 2005 12:04:41 +0000 (GMT) (envelope-from swieten@itsef.com) Received: by postduif.itsef.com (Postfix, from userid 65534) id A6FCD3EA40; Tue, 24 May 2005 14:04:39 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by postduif.itsef.com (Postfix) with ESMTP id 86F113EA40; Tue, 24 May 2005 14:04:38 +0200 (CEST) Received: from [192.168.101.215] (pcs37345.itsef.com [192.168.101.215]) by postduif.itsef.com (Postfix) with ESMTP id 8E1AE38C7C; Tue, 24 May 2005 14:04:36 +0200 (CEST) Message-ID: <42931854.1010804@itsef.com> Date: Tue, 24 May 2005 14:04:36 +0200 From: Peter van Swieten User-Agent: Mozilla Thunderbird 1.0 (X11/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-rc@freebsd.org, freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-ITSEF-Virus-Scanned: by AMaViS snapshot-20020531 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on postduif.itsef.com X-Spam-Level: X-Spam-Status: No, hits=-4.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 Cc: Subject: Strange behaviour of my script within /etc/rc.d X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 12:04:42 -0000 Hi, While trying to get my script within the /etc/rc.d tree operational I ran into some strange behaviour. I intended to start a vncserver as part of the boot process. I build the script based on several existing scripts (a.o. the apache script). The script works as expected when run from the command line in a operational FreeBSD system. During boot however it does not. Probem description: To be more specific it looks like the construction with the default value of a variable defined in the script and possibly being overridden in rc.conf DOES NOT WORK WHILE BOOTING. Note that since this is my first rc.d script, I might as well be doing something wrong, nevertheless the operation of the script works different in the two modes. Remark: I realize that there is a separate mailing list for rc.d things. The website for it however does not show any messages (but then maybe there are none). For this reason I post this message to both the general questions and the rc mailing list. Some details: ----------------------------------------------------------------------------------------------------------------- I recently installed this system from the 5.3 ISO. As far as I know nothing was changed to the rc.d part. uname -a output: FreeBSD peter-test-vm1.itsef.com 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 ----------------------------------------------------------------------------------------------------------------- rc.conf: ... # To start vncserver on startup: vncserver_enable="YES" vncserver_user="swieten" vncserver_display=":0" ... ----------------------------------------------------------------------------------------------------------------- my script: #!/bin/sh # PROVIDE: vncserver # This scripts starts vncserver running as user [vncserver_user] at [vncserver_display] # Author: PvSwieten # Define these vncserver_* variables in one of these files: # /etc/rc.conf # /etc/rc.conf.local # # DO NOT CHANGE THESE DEFAULT VALUES HERE # vncserver_enable="NO" vncserver_user="root" vncserver_display=":0" . /etc/rc.subr name="vncserver" rcvar=`set_rcvar` start_cmd="vncserver_start" stop_cmd="vncserver_stop" vncserver_start() { su -l ${vncserver_user} -c "/usr/local/bin/vncserver -geometry 1152x864 $vncserver_display" } vncserver_stop() { su -l ${vncserver_user} -c "/usr/local/bin/vncserver -kill ${vncserver_display}" } load_rc_config $name run_rc_command "$1" ----------------------------------------------------------------------------------------------------------------- -- -------------------------------------------------------- Peter van Swieten Tel +31 15 2692533 TNO-ITSEF BV Fax +31 15 2692555 Delftechpark 1 http://www.itsef.com 2628 XJ Delft swieten@itsef.com The Netherlands From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:08:17 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B923216A41C for ; Tue, 24 May 2005 13:08:17 +0000 (GMT) (envelope-from Ewald.Jenisch@oekb.at) Received: from srvdmz13.oekb.co.at (srvdmz13.oekb.co.at [143.245.5.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED5E643D1D for ; Tue, 24 May 2005 13:08:16 +0000 (GMT) (envelope-from Ewald.Jenisch@oekb.at) X-SEF-Processed: 5_0_0_713__2005_05_24_15_08_14 X-SEF-EB89CDFD-460A-478E-BCAC-B017B9EC121B: 1 Received: from Unknown [143.245.2.191] by srvdmz13.oekb.co.at - SurfControl E-mail Filter (5.0); Di, 24 Mai 2005 15:08:14 +0200 Received: from aurora.oekb.co.at ([143.245.9.16]) by MAIL01.oekb.co.at with Microsoft SMTPSVC(5.0.2195.6713); Tue, 24 May 2005 15:08:13 +0200 Received: from aurora.oekb.co.at (localhost.oekb.co.at [127.0.0.1]) by aurora.oekb.co.at (8.13.3/8.13.1) with ESMTP id j4OD8D7T005602 for ; Tue, 24 May 2005 15:08:13 +0200 (CEST) (envelope-from ej@aurora.oekb.co.at) Received: (from ej@localhost) by aurora.oekb.co.at (8.13.3/8.13.1/Submit) id j4OD8Dso005601 for freebsd-questions@freebsd.org; Tue, 24 May 2005 15:08:13 +0200 (CEST) (envelope-from ej) Date: Tue, 24 May 2005 15:08:13 +0200 From: Ewald Jenisch To: freebsd-questions@freebsd.org Message-ID: <20050524130813.GA5576@aurora.oekb.co.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-OriginalArrivalTime: 24 May 2005 13:08:13.0718 (UTC) FILETIME=[A4756B60:01C56061] Subject: Installing on multiple machines X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:08:17 -0000 Hi, I'd like to install 5.4 on several machines. The hardware is similar, but not exactly equal (different size HDs, different amount of memory). Is there any way to install 5.4 on different machines with the same options, i.e. same set of packages, same settings (e.g. keyboard) etc. without manually going through the installation on every machine? What I'm thinking of is something similar to the "kickstart" feature in Linux. Is there anything similar under FreeBSD available? Thanks much in advance for any clue, -ewald From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:17:23 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 229A316A41C for ; Tue, 24 May 2005 13:17:23 +0000 (GMT) (envelope-from algould@datawok.com) Received: from smtpauth03.mail.atl.earthlink.net (smtpauth03.mail.atl.earthlink.net [209.86.89.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2CEF43D55 for ; Tue, 24 May 2005 13:17:22 +0000 (GMT) (envelope-from algould@datawok.com) Received: from [206.255.31.21] (helo=yoda.datawok.com) by smtpauth03.mail.atl.earthlink.net with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1DaZHe-0007jU-0j; Tue, 24 May 2005 09:17:22 -0400 From: "Andrew L. Gould" To: Timothy Smith Date: Tue, 24 May 2005 08:17:47 -0500 User-Agent: KMail/1.6.2 References: <4292DCBD.5020904@open-networks.net> <200505240324.01779.algould@datawok.com> <42931717.7040300@open-networks.net> In-Reply-To: <42931717.7040300@open-networks.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200505240817.47562.algould@datawok.com> X-ELNK-Trace: ee791d459e3d6817d780f4a490ca69563f9fea00a6dd62bcb4d2faee11887c75607265454a1b6d68350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 206.255.31.21 Cc: freebsd-questions@freebsd.org Subject: Re: 5.3 doesn't detect wireless card dwl g520 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:17:23 -0000 On Tuesday 24 May 2005 06:59 am, Timothy Smith wrote: > Andrew L. Gould wrote: > >On Tuesday 24 May 2005 02:50 am, Timothy Smith wrote: > >>is there something extra i can do to force it to load this card? > > > >What do you mean by "extra"? What have you done so far? > > > >Have you recompiled the kernel with device lines for ath and > > ath_hal? > > > >Andrew Gould > >_______________________________________________ > > i tried compiling it with ath and ath_hal, but it totally freaks out > on make. error on apci (i thought that stuff was disabled in > generic?) What version of FreeBSD are you using? Note that the atheros chipset is only supported by FreeBSD 5*. If apci is incompatible with your hardware, you may have to disable it and revert back to apm (or neither). Andrew Gould From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:27:47 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE68216A41C for ; Tue, 24 May 2005 13:27:47 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail21.sea5.speakeasy.net (mail21.sea5.speakeasy.net [69.17.117.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E79843D54 for ; Tue, 24 May 2005 13:27:47 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 23989 invoked from network); 24 May 2005 13:27:44 -0000 Received: by simscan 1.1.0 ppid: 23956, pid: 23986, t: 0.1358s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail21.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 24 May 2005 13:27:44 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id D185C2D; Tue, 24 May 2005 09:27:42 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Joe Schmoe To: freebsd-questions@freebsd.org References: <20050524071927.43257.qmail@web53308.mail.yahoo.com> From: Lowell Gilbert Date: 24 May 2005 09:27:42 -0400 In-Reply-To: <20050524071927.43257.qmail@web53308.mail.yahoo.com> Message-ID: <44sm0cu52p.fsf@be-well.ilk.org> Lines: 18 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: Re: mapping mouse clicks to keystrokes in X ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:27:48 -0000 Joe Schmoe writes: > I want my two mouse buttons to create the letters z > and x when I press them, instead of the normal actions > that those mouse buttons send to X. Don't ask. > > It's as simple as it sounds: if I click mouse button > one, it is as if I press z on the keyboard, if I click > mouse button 2, it is as if I press x on the keyboard. > > Does anyone know how to do this ? I am looking at > xmodmap, but even though it swaps mouse buttons > around, and maps keys to other keys, I can't see how > to make it map mouse buttons to keys... In general terms: Use xev(1) to find the keycode for the buttons, then xmodmap(1) to reassign those to the desired keysyms. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:30:04 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BD0A16A41C for ; Tue, 24 May 2005 13:30:04 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail28.sea5.speakeasy.net (mail28.sea5.speakeasy.net [69.17.117.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3440743D54 for ; Tue, 24 May 2005 13:30:04 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 26840 invoked from network); 24 May 2005 13:30:03 -0000 Received: by simscan 1.1.0 ppid: 26799, pid: 26834, t: 0.1309s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail28.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 24 May 2005 13:30:03 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 1C1222D; Tue, 24 May 2005 09:30:02 -0400 (EDT) Sender: lowell@be-well.ilk.org To: eodyna To: freebsd-questions@freebsd.org References: <20050524073847.68111.qmail@web32811.mail.mud.yahoo.com> From: Lowell Gilbert Date: 24 May 2005 09:30:01 -0400 In-Reply-To: <20050524073847.68111.qmail@web32811.mail.mud.yahoo.com> Message-ID: <44oeb0u4yu.fsf@be-well.ilk.org> Lines: 27 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: Re: Broadcom BCM5751 Gigabit Ethernet on freebsd 5.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:30:04 -0000 eodyna writes: > im trying to get gigabit to work with my dell optiplex > machine. i read from another message > > ">Answering (maybe) my own question, it looks like the > changes to miidevs > > and brgphy didn't make the 5.3 cut, even though the > changes to bge did. > > > > Will advise. > > > > That was it. > > Pulled in miidevs, brgphy.c, brgphyreg.h from HEAD > > " > > but im not sure what the person meant by pulling it in > from HEAD. > > can someone explain it to me? Since you're not a software expert, playing around with the source code will be more work than it's worth. If you upgrade to 5.4, you will probably get the changes you need automatically. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:30:13 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD89516A42A for ; Tue, 24 May 2005 13:30:13 +0000 (GMT) (envelope-from patrice@idea.dnsalias.net) Received: from smtp14.wanadoo.fr (smtp14.wanadoo.fr [193.252.23.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC00D43D53 for ; Tue, 24 May 2005 13:30:12 +0000 (GMT) (envelope-from patrice@idea.dnsalias.net) Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf1409.wanadoo.fr (SMTP Server) with ESMTP id 7A9EB7000097 for ; Tue, 24 May 2005 15:30:11 +0200 (CEST) Received: from servidea.dvp.idea (AMarseille-201-1-2-33.w193-253.abo.wanadoo.fr [193.253.217.33]) by mwinf1409.wanadoo.fr (SMTP Server) with ESMTP id 3F07D70000F1 for ; Tue, 24 May 2005 15:30:08 +0200 (CEST) X-ME-UUID: 20050524133009258.3F07D70000F1@mwinf1409.wanadoo.fr Received: from servidea.dvp.idea (localhost.dvp.idea [127.0.0.1]) by servidea.dvp.idea (8.13.1/8.13.1) with ESMTP id j4ODU6ie036897 for ; Tue, 24 May 2005 15:30:06 +0200 (CEST) (envelope-from patrice@servidea.dvp.idea) Received: (from patrice@localhost) by servidea.dvp.idea (8.13.1/8.13.1/Submit) id j4ODU6ga036896 for freebsd-questions@freebsd.org; Tue, 24 May 2005 15:30:06 +0200 (CEST) (envelope-from patrice) Date: Tue, 24 May 2005 15:30:06 +0200 (CEST) From: User Patrice Message-Id: <200505241330.j4ODU6ga036896@servidea.dvp.idea> To: freebsd-questions@freebsd.org Subject: slow download, quick upload X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:30:13 -0000 Hello I m running freebsd 5.3 the freebsd is connected to 2 PC in a DMZ. Upload and download from both PC are OK but when the freebsd try to download a file from a PC, it is slow. The speed is around 5M bytes/s when the DMZ download a file from DMZ or from fre The speed is around 120K Bytes/s when the freeb download a file from DMZ i did some tcpdump : servidea.dvp.idea is the freebe, savdvp6 is in DMZ tcpdump host servidea and savdvp6 (the slow download from DMZ) : (wget http://savdvp6/a.bin) 15:26:37.441663 IP savdvp6.http > servidea.dvp.idea.52010: F 3676502304:3676502304(0) ack 877373982 win 64555 15:26:37.441734 IP servidea.dvp.idea.52010 > savdvp6.http: . ack 1 win 33304 15:26:37.441833 IP servidea.dvp.idea.52010 > savdvp6.http: F 1:1(0) ack 1 win 33304 15:26:37.441923 IP savdvp6.http > servidea.dvp.idea.52010: . ack 2 win 64555 15:26:46.298445 IP servidea.dvp.idea.60456 > savdvp6.http: S 3081508323:3081508323(0) win 65535 15:26:46.298634 IP savdvp6.http > servidea.dvp.idea.60456: S 1235061487:1235061487(0) ack 3081508324 win 65535 15:26:46.298707 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 1 win 33304 15:26:46.298848 IP servidea.dvp.idea.60456 > savdvp6.http: P 1:103(102) ack 1 win 33304 15:26:46.300267 IP savdvp6.http > servidea.dvp.idea.60456: . 1:1449(1448) ack 103 win 65433 15:26:46.300390 IP savdvp6.http > servidea.dvp.idea.60456: . 1449:2897(1448) ack 103 win 65433 15:26:46.300427 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 2897 win 32580 15:26:46.300802 IP savdvp6.http > servidea.dvp.idea.60456: P 2897:4345(1448) ack 103 win 65433 15:26:46.300911 IP savdvp6.http > servidea.dvp.idea.60456: . 4345:5793(1448) ack 103 win 65433 15:26:46.300953 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 5793 win 31132 15:26:46.301051 IP savdvp6.http > servidea.dvp.idea.60456: . 5793:7241(1448) ack 103 win 65433 15:26:46.301288 IP savdvp6.http > servidea.dvp.idea.60456: P 7241:8499(1258) ack 103 win 65433 15:26:46.301325 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 8499 win 29779 15:26:46.301455 IP savdvp6.http > servidea.dvp.idea.60456: . 8499:9947(1448) ack 103 win 65433 15:26:46.301572 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 9947 win 33151 15:26:46.301585 IP savdvp6.http > servidea.dvp.idea.60456: . 9947:11395(1448) ack 103 win 65433 15:26:46.301761 IP savdvp6.http > servidea.dvp.idea.60456: . 11395:12843(1448) ack 103 win 65433 15:26:46.301811 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 12843 win 31703 15:26:46.301821 IP savdvp6.http > servidea.dvp.idea.60456: . 12843:14291(1448) ack 103 win 65433 15:26:46.301884 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 14291 win 33304 15:26:46.301949 IP savdvp6.http > servidea.dvp.idea.60456: . 14291:15739(1448) ack 103 win 65433 15:26:46.302007 IP savdvp6.http > servidea.dvp.idea.60456: P 15739:16691(952) ack 103 win 65433 15:26:46.302037 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 16691 win 32828 15:26:46.302405 IP savdvp6.http > servidea.dvp.idea.60456: . 16691:18139(1448) ack 103 win 65433 15:26:46.302546 IP savdvp6.http > servidea.dvp.idea.60456: . 18139:19587(1448) ack 103 win 65433 15:26:46.302586 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 19587 win 32580 15:26:46.302658 IP savdvp6.http > servidea.dvp.idea.60456: . 19587:21035(1448) ack 103 win 65433 15:26:46.302710 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 21035 win 33304 15:26:46.302773 IP savdvp6.http > servidea.dvp.idea.60456: . 21035:22483(1448) ack 103 win 65433 15:26:46.302895 IP savdvp6.http > servidea.dvp.idea.60456: . 22483:23931(1448) ack 103 win 65433 15:26:46.302930 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 23931 win 32580 15:26:46.302981 IP savdvp6.http > servidea.dvp.idea.60456: P 23931:24883(952) ack 103 win 65433 15:26:46.399232 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 24883 win 33304 15:26:46.399645 IP savdvp6.http > servidea.dvp.idea.60456: . 24883:26331(1448) ack 103 win 65433 15:26:46.399825 IP savdvp6.http > servidea.dvp.idea.60456: . 26331:27779(1448) ack 103 win 65433 15:26:46.399863 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 27779 win 32580 15:26:46.399888 IP savdvp6.http > servidea.dvp.idea.60456: . 27779:29227(1448) ack 103 win 65433 15:26:46.399940 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 29227 win 33304 15:26:46.400011 IP savdvp6.http > servidea.dvp.idea.60456: . 29227:30675(1448) ack 103 win 65433 15:26:46.400132 IP savdvp6.http > servidea.dvp.idea.60456: . 30675:32123(1448) ack 103 win 65433 15:26:46.400168 IP servidea.dvp.idea.60456 > savdvp6.http: . ack 32123 win 32580 15:26:46.400223 IP savdvp6.http > servidea.dvp.idea.60456: P 32123:33075(952) ack 103 win 65433 tcpdump host servidea and savdvp6 (the quick upload from DMZ) : (from savdvp6, download with IE on http://servidea:3001/a.bin) 15:27:04.637297 IP savdvp6.2541 > servidea.dvp.idea.3001: F 2496793838:2496793838(0) ack 1926309210 win 64675 15:27:04.637382 IP servidea.dvp.idea.3001 > savdvp6.2541: . ack 1 win 65534 15:27:04.639086 IP savdvp6.2570 > servidea.dvp.idea.3001: S 2599892289:2599892289(0) win 65535 15:27:04.639138 IP servidea.dvp.idea.3001 > savdvp6.2570: S 376263714:376263714(0) ack 2599892290 win 65535 15:27:04.639241 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 1 win 65535 15:27:04.639430 IP savdvp6.2570 > servidea.dvp.idea.3001: P 1:316(315) ack 1 win 65535 15:27:04.641757 IP servidea.dvp.idea.3001 > savdvp6.2570: . 1:1461(1460) ack 316 win 65535 15:27:04.641790 IP servidea.dvp.idea.3001 > savdvp6.2570: . 1461:2921(1460) ack 316 win 65535 15:27:04.642261 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 2921 win 65535 15:27:04.642399 IP servidea.dvp.idea.3001 > savdvp6.2570: . 2921:4381(1460) ack 316 win 65535 15:27:04.642417 IP servidea.dvp.idea.3001 > savdvp6.2570: . 4381:5841(1460) ack 316 win 65535 15:27:04.642434 IP servidea.dvp.idea.3001 > savdvp6.2570: . 5841:7301(1460) ack 316 win 65535 15:27:04.642870 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 5841 win 65535 15:27:04.642910 IP servidea.dvp.idea.3001 > savdvp6.2570: . 7301:8761(1460) ack 316 win 65535 15:27:04.642928 IP servidea.dvp.idea.3001 > savdvp6.2570: . 8761:10221(1460) ack 316 win 65535 15:27:04.642945 IP servidea.dvp.idea.3001 > savdvp6.2570: . 10221:11681(1460) ack 316 win 65535 15:27:04.643255 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 8761 win 65535 15:27:04.643291 IP servidea.dvp.idea.3001 > savdvp6.2570: . 11681:13141(1460) ack 316 win 65535 15:27:04.643306 IP servidea.dvp.idea.3001 > savdvp6.2570: . 13141:14601(1460) ack 316 win 65535 15:27:04.643324 IP servidea.dvp.idea.3001 > savdvp6.2570: . 14601:16061(1460) ack 316 win 65535 15:27:04.643504 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 11681 win 64075 15:27:04.643538 IP servidea.dvp.idea.3001 > savdvp6.2570: . 16061:17521(1460) ack 316 win 65535 15:27:04.643554 IP servidea.dvp.idea.3001 > savdvp6.2570: . 17521:18981(1460) ack 316 win 65535 15:27:04.643570 IP servidea.dvp.idea.3001 > savdvp6.2570: . 18981:20441(1460) ack 316 win 65535 15:27:04.643757 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 14601 win 61155 15:27:04.643792 IP servidea.dvp.idea.3001 > savdvp6.2570: . 20441:21901(1460) ack 316 win 65535 15:27:04.643808 IP servidea.dvp.idea.3001 > savdvp6.2570: . 21901:23361(1460) ack 316 win 65535 15:27:04.643824 IP servidea.dvp.idea.3001 > savdvp6.2570: . 23361:24821(1460) ack 316 win 65535 15:27:04.644003 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 17521 win 58235 15:27:04.644036 IP servidea.dvp.idea.3001 > savdvp6.2570: . 24821:26281(1460) ack 316 win 65535 15:27:04.644051 IP servidea.dvp.idea.3001 > savdvp6.2570: . 26281:27741(1460) ack 316 win 65535 15:27:04.644068 IP servidea.dvp.idea.3001 > savdvp6.2570: . 27741:29201(1460) ack 316 win 65535 15:27:04.644253 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 20441 win 55315 15:27:04.644306 IP servidea.dvp.idea.3001 > savdvp6.2570: . 29201:30661(1460) ack 316 win 65535 15:27:04.644324 IP servidea.dvp.idea.3001 > savdvp6.2570: . 30661:32121(1460) ack 316 win 65535 15:27:04.644339 IP servidea.dvp.idea.3001 > savdvp6.2570: . 32121:33581(1460) ack 316 win 65535 15:27:04.644371 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 20441 win 65535 15:27:04.644494 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 23361 win 62615 15:27:04.644528 IP servidea.dvp.idea.3001 > savdvp6.2570: . 33581:35041(1460) ack 316 win 65535 15:27:04.644544 IP servidea.dvp.idea.3001 > savdvp6.2570: . 35041:36501(1460) ack 316 win 65535 15:27:04.644562 IP servidea.dvp.idea.3001 > savdvp6.2570: . 36501:37961(1460) ack 316 win 65535 15:27:04.644745 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 26281 win 59695 15:27:04.644779 IP servidea.dvp.idea.3001 > savdvp6.2570: . 37961:39421(1460) ack 316 win 65535 15:27:04.644794 IP servidea.dvp.idea.3001 > savdvp6.2570: . 39421:40881(1460) ack 316 win 65535 15:27:04.644810 IP servidea.dvp.idea.3001 > savdvp6.2570: . 40881:42341(1460) ack 316 win 65535 15:27:04.644986 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 29201 win 56775 15:27:04.645021 IP servidea.dvp.idea.3001 > savdvp6.2570: . 42341:43801(1460) ack 316 win 65535 15:27:04.645036 IP servidea.dvp.idea.3001 > savdvp6.2570: . 43801:45261(1460) ack 316 win 65535 15:27:04.645053 IP servidea.dvp.idea.3001 > savdvp6.2570: . 45261:46721(1460) ack 316 win 65535 15:27:04.645231 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 32121 win 53855 15:27:04.645264 IP servidea.dvp.idea.3001 > savdvp6.2570: . 46721:48181(1460) ack 316 win 65535 15:27:04.645282 IP servidea.dvp.idea.3001 > savdvp6.2570: . 48181:49641(1460) ack 316 win 65535 15:27:04.645297 IP servidea.dvp.idea.3001 > savdvp6.2570: . 49641:51101(1460) ack 316 win 65535 15:27:04.645518 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 35041 win 50935 15:27:04.645556 IP servidea.dvp.idea.3001 > savdvp6.2570: . 51101:52561(1460) ack 316 win 65535 15:27:04.645570 IP servidea.dvp.idea.3001 > savdvp6.2570: . 52561:54021(1460) ack 316 win 65535 15:27:04.645583 IP servidea.dvp.idea.3001 > savdvp6.2570: . 54021:55481(1460) ack 316 win 65535 15:27:04.645729 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 37961 win 48015 15:27:04.645777 IP servidea.dvp.idea.3001 > savdvp6.2570: . 55481:56941(1460) ack 316 win 65535 15:27:04.645794 IP servidea.dvp.idea.3001 > savdvp6.2570: . 56941:58401(1460) ack 316 win 65535 15:27:04.645808 IP servidea.dvp.idea.3001 > savdvp6.2570: . 58401:59861(1460) ack 316 win 65535 15:27:04.645976 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 40881 win 45095 15:27:04.646012 IP servidea.dvp.idea.3001 > savdvp6.2570: . 59861:61321(1460) ack 316 win 65535 15:27:04.646028 IP servidea.dvp.idea.3001 > savdvp6.2570: . 61321:62781(1460) ack 316 win 65535 15:27:04.646044 IP servidea.dvp.idea.3001 > savdvp6.2570: . 62781:64241(1460) ack 316 win 65535 15:27:04.646224 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 43801 win 42175 15:27:04.646261 IP servidea.dvp.idea.3001 > savdvp6.2570: . 64241:65701(1460) ack 316 win 65535 15:27:04.646276 IP servidea.dvp.idea.3001 > savdvp6.2570: . 65701:67161(1460) ack 316 win 65535 15:27:04.646291 IP servidea.dvp.idea.3001 > savdvp6.2570: . 67161:68621(1460) ack 316 win 65535 15:27:04.646465 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 46721 win 39255 15:27:04.646496 IP servidea.dvp.idea.3001 > savdvp6.2570: . 68621:70081(1460) ack 316 win 65535 15:27:04.646509 IP servidea.dvp.idea.3001 > savdvp6.2570: . 70081:71541(1460) ack 316 win 65535 15:27:04.646524 IP servidea.dvp.idea.3001 > savdvp6.2570: . 71541:73001(1460) ack 316 win 65535 15:27:04.646710 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 49641 win 36335 15:27:04.646743 IP servidea.dvp.idea.3001 > savdvp6.2570: . 73001:74461(1460) ack 316 win 65535 15:27:04.646757 IP servidea.dvp.idea.3001 > savdvp6.2570: . 74461:75921(1460) ack 316 win 65535 15:27:04.646773 IP servidea.dvp.idea.3001 > savdvp6.2570: . 75921:77381(1460) ack 316 win 65535 15:27:04.646958 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 52561 win 33415 15:27:04.647006 IP servidea.dvp.idea.3001 > savdvp6.2570: . 77381:78841(1460) ack 316 win 65535 15:27:04.647021 IP servidea.dvp.idea.3001 > savdvp6.2570: . 78841:80301(1460) ack 316 win 65535 15:27:04.647036 IP servidea.dvp.idea.3001 > savdvp6.2570: . 80301:81761(1460) ack 316 win 65535 15:27:04.647205 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 55481 win 30495 15:27:04.647239 IP servidea.dvp.idea.3001 > savdvp6.2570: . 81761:83221(1460) ack 316 win 65535 15:27:04.647254 IP servidea.dvp.idea.3001 > savdvp6.2570: . 83221:84681(1460) ack 316 win 65535 15:27:04.647451 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 58401 win 27575 15:27:04.647691 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 61321 win 24655 15:27:04.647938 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 64241 win 21735 15:27:04.648186 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 67161 win 18815 15:27:04.648432 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 70081 win 15895 15:27:04.648681 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 73001 win 12975 15:27:04.648924 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 75921 win 10055 15:27:04.649173 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 78841 win 7135 15:27:04.649417 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 81761 win 4215 15:27:04.649665 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 84681 win 1295 15:27:06.274739 IP savdvp6.2570 > servidea.dvp.idea.3001: . ack 84681 win 65535 15:27:06.274828 IP servidea.dvp.idea.3001 > savdvp6.2570: . 84681:86141(1460) ack 316 win 65535 15:27:06.274848 IP servidea.dvp.idea.3001 > savdvp6.2570: . 86141:87601(1460) ack 316 win 65535 15:27:06.274868 IP servidea.dvp.idea.3001 > savdvp6.2570: . 87601:89061(1460) ack 316 win 65535 15:27:06.274887 IP servidea.dvp.idea.3001 > savdvp6.2570: . 89061:90521(1460) ack 316 win 65535 15:27:06.274902 IP servidea.dvp.idea.3001 > savdvp6.2570: . 90521:91981(1460) ack 316 win 65535 15:27:06.274919 IP servidea.dvp.idea.3001 > savdvp6.2570: . 91981:93441(1460) ack 316 win 65535 15:27:06.274936 IP servidea.dvp.idea.3001 > savdvp6.2570: . 93441:94901(1460) ack 316 win 65535 15:27:06.274951 IP servidea.dvp.idea.3001 > savdvp6.2570: . 94901:96361(1460) ack 316 win 65535 15:27:06.274968 IP servidea.dvp.idea.3001 > savdvp6.2570: . 96361:97821(1460) ack 316 win 65535 15:27:06.274986 IP servidea.dvp.idea.3001 > savdvp6.2570: . 97821:99281(1460) ack 316 win 65535 15:27:06.275003 IP servidea.dvp.idea.3001 > savdvp6.2570: . 99281:100741(1460) ack 316 win 65535 15:27:06.275018 IP servidea.dvp.idea.3001 > savdvp6.2570: . 100741:102201(1460) ack 316 win 65535 15:27:06.275034 IP servidea.dvp.idea.3001 > savdvp6.2570: . 102201:103661(1460) ack 316 win 65535 15:27:06.275050 IP servidea.dvp.idea.3001 > savdvp6.2570: . 103661:105121(1460) ack 316 win 65535 15:27:06.275066 IP servidea.dvp.idea.3001 > savdvp6.2570: . 105121:106581(1460) ack 316 win 65535 15:27:06.275082 IP servidea.dvp.idea.3001 > savdvp6.2570: . 106581:108041(1460) ack 316 win 65535 15:27:06.275100 IP servidea.dvp.idea.3001 > savdvp6.2570: . 108041:109501(1460) ack 316 win 65535 any advice for solving this problem ? From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:42:07 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0732316A41C for ; Tue, 24 May 2005 13:42:07 +0000 (GMT) (envelope-from philip@xms.co.za) Received: from mail.int.xm.co.za (email.xm.co.za [196.23.175.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CBD843D1F for ; Tue, 24 May 2005 13:42:06 +0000 (GMT) (envelope-from philip@xms.co.za) Received: from mailnull by mail.int.xm.co.za with virus-scanned (Exim 4.42 (FreeBSD)) id 1DaZnK-0005wO-Ob for freebsd-questions@freebsd.org; Tue, 24 May 2005 15:50:06 +0200 Received: from [192.168.1.227] (helo=linux.int.xm.co.za) by mail.int.xm.co.za with esmtp (Exim 4.42 (FreeBSD)) id 1DaZnK-0005wJ-KE for freebsd-questions@freebsd.org; Tue, 24 May 2005 15:50:06 +0200 From: Philip Wege To: freebsd-questions@freebsd.org Content-Type: text/plain Organization: XM Solutions Date: Tue, 24 May 2005 15:38:32 -0700 Message-Id: <1116974312.4154.33.camel@linux.site> Mime-Version: 1.0 X-Mailer: Evolution 2.0.1 Content-Transfer-Encoding: 7bit Subject: Mysql startup question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: philip@xms.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:42:07 -0000 Hi When i run /usr/local/etc/rc.d/mysql-server.sh start i get the following error : touch /var/db/mysql/mail.int.diesel-electric.com err: Permission denied chown /var/db/mysql/mail.int.diesel-electric.com cannot create /var/db/mysql/mail.int.diesel-electric.com Permission denied Running freebsd 5.3 , mysql installed from ports. Any ideas ? From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:42:29 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1809116A41C for ; Tue, 24 May 2005 13:42:29 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail25.sea5.speakeasy.net (mail25.sea5.speakeasy.net [69.17.117.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE45143D48 for ; Tue, 24 May 2005 13:42:28 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 30109 invoked from network); 24 May 2005 13:42:28 -0000 Received: by simscan 1.1.0 ppid: 30099, pid: 30104, t: 0.1363s scanners: clamav: 0.84/m:31/d:888 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail25.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 24 May 2005 13:42:28 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id B51A52D; Tue, 24 May 2005 09:42:27 -0400 (EDT) Sender: lowell@be-well.ilk.org To: ovidiue@unixware.ro References: <1116851834.4291ce7aee47a@webmail.unixware.ro> From: Lowell Gilbert Date: 24 May 2005 09:42:27 -0400 In-Reply-To: <1116851834.4291ce7aee47a@webmail.unixware.ro> Message-ID: <44k6lou4e4.fsf@be-well.ilk.org> Lines: 17 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: QoS and guaranteed bandwidth X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:42:29 -0000 ovidiue@unixware.ro writes: > What is the best sollution (and also simple) to guarantee a bandwidth? > > For example if I have an 1024 kbps conection and i want to share > this to 30 users and also guarantee 32 kbps to every user so if > one of them is doing intense FTP the others to easely browse the > net what should I use for that? I am looking for a solution like > (and better then) HBT on Linux. > > I've googled for a while but there are not so many resources on that. Try the Handbook; there are several mentions. On -STABLE, there are two solid answers: dummynet(4) and altq(4). The former will be better if you use ipfw(4), the latter if you use pf(4) [or, I assume, ipf(4)]. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:43:33 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D029616A433 for ; Tue, 24 May 2005 13:43:33 +0000 (GMT) (envelope-from freebsd@gizm0.org) Received: from gizm0.org (gizm0.org [212.114.209.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 773B843D49 for ; Tue, 24 May 2005 13:43:33 +0000 (GMT) (envelope-from freebsd@gizm0.org) Received: from [10.0.0.122] (unknown [10.0.0.122]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by gizm0.org (Postfix) with ESMTP id 80CC9A10196; Tue, 24 May 2005 15:43:34 +0200 (CEST) Message-ID: <42932F86.2050300@gizm0.org> Date: Tue, 24 May 2005 15:43:34 +0200 From: Steven Enderle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050203 X-Accept-Language: de-de, de, en MIME-Version: 1.0 To: philip@xms.co.za References: <1116974312.4154.33.camel@linux.site> In-Reply-To: <1116974312.4154.33.camel@linux.site> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Mysql startup question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:43:34 -0000 Are you sure you did run this as root? Regards Steven -- ++ message delivered by gizm0.org ++ free webmail - imap, pop3, ssl secured Philip Wege wrote: >Hi > >When i run /usr/local/etc/rc.d/mysql-server.sh start i get the following >error : > >touch /var/db/mysql/mail.int.diesel-electric.com err: Permission denied >chown /var/db/mysql/mail.int.diesel-electric.com cannot >create /var/db/mysql/mail.int.diesel-electric.com Permission denied > >Running freebsd 5.3 , mysql installed from ports. > >Any ideas ? > > >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:47:28 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AFB516A41C for ; Tue, 24 May 2005 13:47:28 +0000 (GMT) (envelope-from philip@xms.co.za) Received: from mail.int.xm.co.za (email.xm.co.za [196.23.175.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 868D943D48 for ; Tue, 24 May 2005 13:47:27 +0000 (GMT) (envelope-from philip@xms.co.za) Received: from mailnull by mail.int.xm.co.za with virus-scanned (Exim 4.42 (FreeBSD)) id 1DaZsW-0005yh-DJ for freebsd-questions@freebsd.org; Tue, 24 May 2005 15:55:28 +0200 Received: from [192.168.1.227] (helo=linux.int.xm.co.za) by mail.int.xm.co.za with esmtp (Exim 4.42 (FreeBSD)) id 1DaZsW-0005yX-AJ; Tue, 24 May 2005 15:55:28 +0200 From: Philip Wege To: Steven Enderle In-Reply-To: <42932F86.2050300@gizm0.org> References: <1116974312.4154.33.camel@linux.site> <42932F86.2050300@gizm0.org> Content-Type: text/plain Organization: XM Solutions Date: Tue, 24 May 2005 15:43:54 -0700 Message-Id: <1116974634.4154.35.camel@linux.site> Mime-Version: 1.0 X-Mailer: Evolution 2.0.1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Mysql startup question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: philip@xms.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:47:28 -0000 Yes i am logged in as root directly on the box. On Tue, 2005-05-24 at 15:43 +0200, Steven Enderle wrote: > Are you sure you did run this as root? > > Regards > > Steven > -- > ++ message delivered by gizm0.org > ++ free webmail - imap, pop3, ssl secured > > Philip Wege wrote: > > Hi > > > > When i run /usr/local/etc/rc.d/mysql-server.sh start i get the following > > error : > > > > touch /var/db/mysql/mail.int.diesel-electric.com err: Permission denied > > chown /var/db/mysql/mail.int.diesel-electric.com cannot > > create /var/db/mysql/mail.int.diesel-electric.com Permission denied > > > > Running freebsd 5.3 , mysql installed from ports. > > > > Any ideas ? > > > > > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > > > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:47:53 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B1FE16A41C for ; Tue, 24 May 2005 13:47:53 +0000 (GMT) (envelope-from dnasoc@swbell.net) Received: from smtp813.mail.sc5.yahoo.com (smtp813.mail.sc5.yahoo.com [66.163.170.83]) by mx1.FreeBSD.org (Postfix) with SMTP id CD2B243D48 for ; Tue, 24 May 2005 13:47:52 +0000 (GMT) (envelope-from dnasoc@swbell.net) Received: from unknown (HELO dawson6dr3ohvp) (dnasoc@swbell.net@69.151.240.97 with login) by smtp813.mail.sc5.yahoo.com with SMTP; 24 May 2005 13:47:50 -0000 Message-ID: <002901c56067$4fc44d10$6501a8c0@dawson6dr3ohvp> From: "Randy Dawson" To: Date: Tue, 24 May 2005 08:48:47 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Subject: Fw: help please X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:47:53 -0000 > On 5/23/05, Paul B. wrote: > > Hi, > > I just installed freebsd (may 23, 2005) and when i start up my pc it > goes to a text screen (which i know it is s'posed to do) but how do you go > to the graphics side of freebsd where it looks like (this is a bad example) > windows and you can click on things? > > > > I am running > > i386 > > 5.4 release > > Sincerely, > > Paul > > pblake4@gmail.com > > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11.html > > -p > -- > ~~o0OO0o~~ > Pete Wright > www.nycbug.org > NYC's *BSD User Group > _______________________________________________ > 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" > > > Login as root > run xorgconfig > it writes a test file /root/xorg.conf.new > to test: > X-xf86config /root/xorg.conf.new > You should get a graphics screen, and a mouse pointer > exit with: > backspace > if it all works, copy /root/xorg.conf.new to /etc/x11/xorg.conf > now set up x to start with KDE: > echo "exec startkde" >~/.xinitrc > rin the environment with: > startx > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:50:31 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0F4416A41C for ; Tue, 24 May 2005 13:50:31 +0000 (GMT) (envelope-from freebsd@gizm0.org) Received: from gizm0.org (gizm0.org [212.114.209.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CDA243D49 for ; Tue, 24 May 2005 13:50:31 +0000 (GMT) (envelope-from freebsd@gizm0.org) Received: from [10.0.0.122] (unknown [10.0.0.122]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by gizm0.org (Postfix) with ESMTP id 8703BA10196; Tue, 24 May 2005 15:50:33 +0200 (CEST) Message-ID: <42933129.7020402@gizm0.org> Date: Tue, 24 May 2005 15:50:33 +0200 From: Steven Enderle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050203 X-Accept-Language: de-de, de, en MIME-Version: 1.0 To: philip@xms.co.za References: <1116974312.4154.33.camel@linux.site> <42932F86.2050300@gizm0.org> <1116974634.4154.35.camel@linux.site> In-Reply-To: <1116974634.4154.35.camel@linux.site> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Mysql startup question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:50:31 -0000 Could you check the directory by hand? ls -aol /var/db/mysql/ and touch /var/db/mysql/mail.int.diesel-electric.com Regards, Steven -- ++ message delivered by gizm0.org ++ free webmail - imap, pop3, ssl secured Philip Wege wrote: >Yes i am logged in as root directly on the box. > >On Tue, 2005-05-24 at 15:43 +0200, Steven Enderle wrote: > > >>Are you sure you did run this as root? >> >>Regards >> >>Steven >>-- >>++ message delivered by gizm0.org >>++ free webmail - imap, pop3, ssl secured >> >>Philip Wege wrote: >> >> >>>Hi >>> >>>When i run /usr/local/etc/rc.d/mysql-server.sh start i get the following >>>error : >>> >>>touch /var/db/mysql/mail.int.diesel-electric.com err: Permission denied >>>chown /var/db/mysql/mail.int.diesel-electric.com cannot >>>create /var/db/mysql/mail.int.diesel-electric.com Permission denied >>> >>>Running freebsd 5.3 , mysql installed from ports. >>> >>>Any ideas ? >>> >>> >>>_______________________________________________ >>>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 Tue May 24 13:51:41 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21D0116A41C for ; Tue, 24 May 2005 13:51:41 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from titan.open-networks.net (dsl-202-173-176-254.qld.westnet.com.au [202.173.176.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id B09D743D49 for ; Tue, 24 May 2005 13:51:40 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from [192.168.1.200] (tim.open-networks.net [192.168.1.1]) by titan.open-networks.net (Postfix) with ESMTP id 605456F1; Tue, 24 May 2005 23:51:37 +1000 (EST) Message-ID: <42933168.5060504@open-networks.net> Date: Tue, 24 May 2005 23:51:36 +1000 From: Timothy Smith User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050520) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Andrew L. Gould" References: <4292DCBD.5020904@open-networks.net> <200505240324.01779.algould@datawok.com> <42931717.7040300@open-networks.net> <200505240817.47562.algould@datawok.com> In-Reply-To: <200505240817.47562.algould@datawok.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: 5.3 doesn't detect wireless card dwl g520 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:51:41 -0000 Andrew L. Gould wrote: >On Tuesday 24 May 2005 06:59 am, Timothy Smith wrote: > > >>Andrew L. Gould wrote: >> >> >>>On Tuesday 24 May 2005 02:50 am, Timothy Smith wrote: >>> >>> >>>>is there something extra i can do to force it to load this card? >>>> >>>> >>>What do you mean by "extra"? What have you done so far? >>> >>>Have you recompiled the kernel with device lines for ath and >>>ath_hal? >>> >>>Andrew Gould >>>_______________________________________________ >>> >>> >>i tried compiling it with ath and ath_hal, but it totally freaks out >>on make. error on apci (i thought that stuff was disabled in >>generic?) >> >> > >What version of FreeBSD are you using? Note that the atheros chipset is >only supported by FreeBSD 5*. > >If apci is incompatible with your hardware, you may have to disable it >and revert back to apm (or neither). > >Andrew Gould > > > > it's 5.3 release, apci and apm are disabled in generic (which i copied). i added the lines device ath and device ath_hal i get the error "internal compiler error: segmentation fault" stop in /usr/src/sys/modules/ctau sorry i can't provide any kind of dump. wifi is this machines only option for networking :/ should i just give up or is there a glimmer of hope i might get this to work? From owner-freebsd-questions@FreeBSD.ORG Tue May 24 13:54:01 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4B1916A41C for ; Tue, 24 May 2005 13:54:01 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from photonix.site5.com (photonix.site5.com [209.59.179.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7849343D4C for ; Tue, 24 May 2005 13:54:01 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from slivko by photonix.site5.com with local (Exim 4.50) id 1DaZr8-0002Sn-Hj for freebsd-questions@freebsd.org; Tue, 24 May 2005 09:54:02 -0400 Received: from 70.18.16.72 ([70.18.16.72]) (SquirrelMail authenticated user freebsd-lists@slivko.org) by www.slivko.org with HTTP; Tue, 24 May 2005 09:54:02 -0400 (EDT) Message-ID: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> Date: Tue, 24 May 2005 09:54:02 -0400 (EDT) From: "Jonathan M. Slivko" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - photonix.site5.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [32065 32003] / [47 12] X-AntiAbuse: Sender Address Domain - slivko.org X-Source: /usr/local/cpanel/3rdparty/bin/php X-Source-Args: /usr/local/cpanel/3rdparty/bin/php /usr/local/cpanel/base/3rdparty/squirrelmail/src/compose.php X-Source-Dir: :/base/3rdparty/squirrelmail/src Subject: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-lists@slivko.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 13:54:02 -0000 Hello, I have an interesting question, I have a Pentium 4 2.4Ghz (No HT Enabled), 2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. However, whenever you try and do an fsck -y, it says: root@bonjour(~)% fsck -y ** /dev/twed0s1a (NO WRITE) ** Last Mounted on / ** Root file system ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 2821 files, 31805 used, 474682 free (322 frags, 59295 blocks, 0.1% fragmentation) ** /dev/twed0s1g (NO WRITE) ** Last Mounted on /home ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 82057 files, 557735 used, 12912399 free (2343 frags, 1613757 blocks, 0.0% fragmentation) ** /dev/twed0s1d (NO WRITE) ** Last Mounted on /tmp ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 30 files, 1787 used, 504700 free (20 frags, 63085 blocks, 0.0% fragmentation) ** /dev/twed0s1e (NO WRITE) ** Last Mounted on /usr ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 251160 files, 1318908 used, 13912410 free (73346 frags, 1729883 blocks, 0.5% fragmentation) ** /dev/twed0s1f (NO WRITE) ** Last Mounted on /var ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 4424 files, 63321 used, 7042830 free (2462 frags, 880046 blocks, 0.0% fragmentation) The drives are Seagate SATA's (7200RPM) with a 3Ware SATA RAID Controller (8006-2LP) using the twe kernel driver. The drives themselves allow data to be read to/written from them, but fsck will not work (and is hanging things on boot). Anyone got any ideas? I looked at www.3ware.com earlier and it says that the 8006-2LP's support FreeBSD 4.x, but not 5.x - could this be a result of that, seeing as otherwise the drives/RAID work fine (AFAIK, it could not be and I'm just not sure how to test it). TIA, -- Jonathan From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:00:25 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB59C16A41C for ; Tue, 24 May 2005 14:00:25 +0000 (GMT) (envelope-from eduardo@vedanta.org) Received: from mail13.mdx.safepages.com (mail13.mdx.safepages.com [216.127.154.243]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9988943D1D for ; Tue, 24 May 2005 14:00:23 +0000 (GMT) (envelope-from eduardo@vedanta.org) Received: by mail13.mdx.safepages.com (Postfix, from userid 1012) id DEF2B138627; Tue, 24 May 2005 14:00:19 +0000 (GMT) Received: from vedanta.org (5-pool1.ras03.lax01.dial.cogentco.com [206.148.196.5]) by mail13.mdx.safepages.com (Postfix) with ESMTP id 751861385C5 for ; Tue, 24 May 2005 14:00:18 +0000 (GMT) Message-ID: <429335BE.6020702@vedanta.org> Date: Tue, 24 May 2005 07:10:06 -0700 From: Ed Acebo User-Agent: Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: BASIC WEB SERVER HELP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:00:25 -0000 Hey Dale! Whats happening? Its been a few years since we've been in contact. How is Ann? I've got some questions about importing and I am wondering if either you or her could help me. For the last five years I've been translating some of our Vedanta literture into spanish . I'm working with an Argentine monk who lives in India and he has asked me to find out how much the duty would be to import from Inida to the U.S. and Mexico a thousand books so that we could figure out our costs. The Indian publisher can place the books here, shipping and all for sixty six cents a piece. I tried going to T.J. but its so confusing down at the border. Most of the agents are huge firms that deal with huge volumes of merchandise. Where do I go to find information? Is it by weight or monetary value that your charged? Can you help? eddie From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:06:19 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1B5F16A41C for ; Tue, 24 May 2005 14:06:19 +0000 (GMT) (envelope-from philip@xms.co.za) Received: from mail.int.xm.co.za (email.xm.co.za [196.23.175.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id CACB043D4C for ; Tue, 24 May 2005 14:06:18 +0000 (GMT) (envelope-from philip@xms.co.za) Received: from mailnull by mail.int.xm.co.za with virus-scanned (Exim 4.42 (FreeBSD)) id 1DaaAl-00066f-LM for freebsd-questions@freebsd.org; Tue, 24 May 2005 16:14:19 +0200 Received: from [192.168.1.227] (helo=linux.int.xm.co.za) by mail.int.xm.co.za with esmtp (Exim 4.42 (FreeBSD)) id 1DaaAl-00066V-IK; Tue, 24 May 2005 16:14:19 +0200 From: Philip Wege To: Steven Enderle In-Reply-To: <42933129.7020402@gizm0.org> References: <1116974312.4154.33.camel@linux.site> <42932F86.2050300@gizm0.org> <1116974634.4154.35.camel@linux.site> <42933129.7020402@gizm0.org> Content-Type: text/plain Organization: XM Solutions Date: Tue, 24 May 2005 16:02:45 -0700 Message-Id: <1116975765.4154.44.camel@linux.site> Mime-Version: 1.0 X-Mailer: Evolution 2.0.1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Mysql startup question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: philip@xms.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:06:19 -0000 No problems there , and all files and folders owned by root. touch command no errors, goes to next blank line. On Tue, 2005-05-24 at 15:50 +0200, Steven Enderle wrote: > Could you check the directory by hand? > > ls -aol /var/db/mysql/ and > touch /var/db/mysql/mail.int.diesel-electric.com > Regards, > > Steven > -- > ++ message delivered by gizm0.org > ++ free webmail - imap, pop3, ssl secured > > Philip Wege wrote: > > Yes i am logged in as root directly on the box. > > > > On Tue, 2005-05-24 at 15:43 +0200, Steven Enderle wrote: > > > > > Are you sure you did run this as root? > > > > > > Regards > > > > > > Steven > > > -- > > > ++ message delivered by gizm0.org > > > ++ free webmail - imap, pop3, ssl secured > > > > > > Philip Wege wrote: > > > > > > > Hi > > > > > > > > When i run /usr/local/etc/rc.d/mysql-server.sh start i get the following > > > > error : > > > > > > > > touch /var/db/mysql/mail.int.diesel-electric.com err: Permission denied > > > > chown /var/db/mysql/mail.int.diesel-electric.com cannot > > > > create /var/db/mysql/mail.int.diesel-electric.com Permission denied > > > > > > > > Running freebsd 5.3 , mysql installed from ports. > > > > > > > > Any ideas ? > > > > > > > > > > > > _______________________________________________ > > > > 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 Tue May 24 14:15:17 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACB1D16A41C for ; Tue, 24 May 2005 14:15:17 +0000 (GMT) (envelope-from estartu@etustar.ze.tum.de) Received: from etustar.ze.tum.de (etustar.ze.tum.de [129.187.39.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28EA943D1F for ; Tue, 24 May 2005 14:15:16 +0000 (GMT) (envelope-from estartu@etustar.ze.tum.de) Received: from etustar.ze.tum.de (estartu@localhost.ze.tu-muenchen.de [127.0.0.1]) by etustar.ze.tum.de (8.13.1/8.12.11) with ESMTP id j4OEFFa8004855; Tue, 24 May 2005 16:15:15 +0200 (CEST) (envelope-from estartu@etustar.ze.tum.de) Received: (from estartu@localhost) by etustar.ze.tum.de (8.13.1/8.12.11/Submit) id j4OEFFlg004854; Tue, 24 May 2005 16:15:15 +0200 (CEST) (envelope-from estartu) Date: Tue, 24 May 2005 16:15:15 +0200 From: Gerhard Schmidt To: Philip Wege Message-ID: <20050524141514.GA4804@augusta.de> References: <1116974312.4154.33.camel@linux.site> <42932F86.2050300@gizm0.org> <1116974634.4154.35.camel@linux.site> <42933129.7020402@gizm0.org> <1116975765.4154.44.camel@linux.site> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="5vNYLRcllDrimb99" Content-Disposition: inline In-Reply-To: <1116975765.4154.44.camel@linux.site> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: Mysql startup question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:15:17 -0000 --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 24, 2005 at 04:02:45PM -0700, Philip Wege wrote: > No problems there , and all files and folders owned by root. That's the problem /var/db/mysql should be owned by mysql:mysql because=20 mysqld is started as user mysql. bye Estartu ---------------------------------------------------------------------------- Gerhard Schmidt | Nick : estartu IRC : Estartu | Fischbachweg 3 | | PGP Public Key 86856 Hiltenfingen | Privat: estartu@augusta.de | auf Anfrage/ Germany | | on Request --5vNYLRcllDrimb99 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: mC3OaoPOxSY6vQNg2//Ig2DZvWt7oZCy iQCVAwUBQpM28gzx22nOTJQRAQEwgQP/Zz+DIICCFvzx8qg29//IZJbwZ6CPvH8X HQ1aogwI5nghk+N8a09TYx6XwU4pQ7JUh2t7aU1LaLwcfxvuDySwRN3dVa9zXgoJ XwWnouxfmtqlT2aXyMmh2ZrRYcmCDvppdw2hF0ZWTsTORxSYGHR0W6+MJTpOpUBR rF7fq9Lxz6o= =P1/7 -----END PGP SIGNATURE----- --5vNYLRcllDrimb99-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:15:19 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDEDF16A41C for ; Tue, 24 May 2005 14:15:19 +0000 (GMT) (envelope-from ml@nesys.it) Received: from mail.nesys.it (81-174-12-111.f5.ngi.it [81.174.12.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id F075443D1D for ; Tue, 24 May 2005 14:15:18 +0000 (GMT) (envelope-from ml@nesys.it) Received: (qmail 45797 invoked by uid 89); 24 May 2005 14:15:17 -0000 Received: from unknown (HELO ?192.168.17.23?) (ariela@nesys.it@192.168.17.23) by 0 with SMTP; 24 May 2005 14:15:17 -0000 Mime-Version: 1.0 (Apple Message framework v622) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; format=flowed To: freebsd-questions@freebsd.org From: Andrea Riela Date: Tue, 24 May 2005 16:15:17 +0200 X-Pgp-Agent: GPGMail 1.0.2 X-Mailer: Apple Mail (2.622) Subject: about SMBus and IBM xSeries 226 (type 8648) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:15:19 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi folks, I've that SMBus controller: ichsmb0: port 0x1100-0x111f irq 10 at device 31.3 on pci0 smbus0: on ichsmb0 smb0: on smbus0 ichsmb0: irq 0x04 during -1 ichsmb0: irq 0x04 during -1 but with mbmon: asclepius# mbmon -d SMBus[Intel8XX(ICH/ICH2/ICH3/ICH4/ICH5/ICH6)] found, but No HWM available on it!! No Hardware Monitor found!! InitMBInfo: Unknown error: 0 with lmmon: asclepius# lmmon -s Motherboard Temp Voltages 255C / 491F / 528K Vcore1: +3.984V Vcore2: +3.984V Fan Speeds + 3.3V: +3.984V + 5.0V: +6.654V 1: 0 rpm +12.0V: +15.938V 2: 0 rpm -12.0V: -15.938V 3: 0 rpm - 5.0V: -6.654V and with healtd: asclepius# healthd -D ************************ * Hardware Information * ************************ Unknown Vendor: ID = FFFF ************************ Temp.= 255.0, 0.0, 0.0; Rot.= 0, 0, 0 Vcore = 4.08, 4.08; Volt. = 4.08, 6.85, 15.50, -14.16, -6.12 asclepius# healthd -S ioctl(SMB_WRITEB): Permission denied Well, what could I do? I've created a kernel with: device smb device smbus device ichsmb device iic device iicbus device iicbb device iicsmb and I've added in my /boot/loader.conf: debug.acpi.disabled="sysresource" However if I try to see informations about thermals with sysctl: asclepius# sysctl hw.acpi.thermal sysctl: unknown oid 'hw.acpi.thermal' asclepius# sysctl hw.acpi hw.acpi.supported_sleep_state: S4 S5 hw.acpi.power_button_state: S5 hw.acpi.sleep_button_state: S4 hw.acpi.lid_switch_state: NONE hw.acpi.standby_state: S1 hw.acpi.suspend_state: S3 hw.acpi.sleep_delay: 1 hw.acpi.s4bios: 0 hw.acpi.verbose: 0 hw.acpi.reset_video: 1 hw.acpi.cpu.cx_supported: C1/0 hw.acpi.cpu.cx_lowest: C1 hw.acpi.cpu.cx_usage: 100.00% Where is my mistake? something wrong? Thanks for your suggestions Regards Andrea -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (Darwin) iD8DBQFCkzb4MakHrsrHP9wRAghDAJ9WaxEb4l22UvIq76toNvIUg5g+VgCfaObT QFvrWakP2Sl3b4cGI3Og93s= =Bdcm -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:18:02 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A31016A41C for ; Tue, 24 May 2005 14:18:02 +0000 (GMT) (envelope-from ovidiue@unixware.ro) Received: from mail3.dr.myx.net (ns3.dr.myx.net [217.10.193.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B5CA43D1D for ; Tue, 24 May 2005 14:18:01 +0000 (GMT) (envelope-from ovidiue@unixware.ro) Received: by mail3.dr.myx.net (mydomain.myx.net, from userid 48) id 1B02B3B8914; Tue, 24 May 2005 17:17:59 +0300 (EEST) Received: from 83.103.223.26 ([83.103.223.26]) by webmail.unixware.ro (Webmail) with HTTP for ; Tue, 24 May 2005 17:17:58 +0300 Message-ID: <1116944278.4293379702bfd@webmail.unixware.ro> Date: Tue, 24 May 2005 17:17:59 +0300 From: ovidiue@unixware.ro To: "freebsd-questions@freebsd.org" References: <1116851834.4291ce7aee47a@webmail.unixware.ro> <44k6lou4e4.fsf@be-well.ilk.org> In-Reply-To: <44k6lou4e4.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: MyDomain Webmail X-Originating-IP: 83.103.223.26 Subject: Re: QoS and guaranteed bandwidth X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:18:02 -0000 I know alot about ipfw, dummynet pf, altq and stuff, I am looking for somebody who implemented in on a large scale so I do not waste time with testing and configuring, that's why I've looked for the best solution i know altq is the best but..... is reliable as is HTB or CBQ from linux? Citat Lowell Gilbert : > ovidiue@unixware.ro writes: > > > What is the best sollution (and also simple) to guarantee a bandwidth? > > > > For example if I have an 1024 kbps conection and i want to share > > this to 30 users and also guarantee 32 kbps to every user so if > > one of them is doing intense FTP the others to easely browse the > > net what should I use for that? I am looking for a solution like > > (and better then) HBT on Linux. > > > > I've googled for a while but there are not so many resources on that. > > Try the Handbook; there are several mentions. > > On -STABLE, there are two solid answers: dummynet(4) and altq(4). The > former will be better if you use ipfw(4), the latter if you use pf(4) > [or, I assume, ipf(4)]. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:20:43 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6350216A41C for ; Tue, 24 May 2005 14:20:43 +0000 (GMT) (envelope-from philip@xms.co.za) Received: from mail.int.xm.co.za (email.xm.co.za [196.23.175.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B67343D53 for ; Tue, 24 May 2005 14:20:42 +0000 (GMT) (envelope-from philip@xms.co.za) Received: from mailnull by mail.int.xm.co.za with virus-scanned (Exim 4.42 (FreeBSD)) id 1DaaOg-0006Cg-Ok for freebsd-questions@freebsd.org; Tue, 24 May 2005 16:28:42 +0200 Received: from [192.168.1.227] (helo=linux.int.xm.co.za) by mail.int.xm.co.za with esmtp (Exim 4.42 (FreeBSD)) id 1DaaOg-0006CW-Ie; Tue, 24 May 2005 16:28:42 +0200 From: Philip Wege To: Gerhard Schmidt In-Reply-To: <20050524141514.GA4804@augusta.de> References: <1116974312.4154.33.camel@linux.site> <42932F86.2050300@gizm0.org> <1116974634.4154.35.camel@linux.site> <42933129.7020402@gizm0.org> <1116975765.4154.44.camel@linux.site> <20050524141514.GA4804@augusta.de> Content-Type: text/plain Organization: XM Solutions Date: Tue, 24 May 2005 16:17:08 -0700 Message-Id: <1116976628.4154.52.camel@linux.site> Mime-Version: 1.0 X-Mailer: Evolution 2.0.1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Mysql startup question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: philip@xms.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:20:43 -0000 Thanks done mysql is started. On Tue, 2005-05-24 at 16:15 +0200, Gerhard Schmidt wrote: > On Tue, May 24, 2005 at 04:02:45PM -0700, Philip Wege wrote: > > No problems there , and all files and folders owned by root. > > That's the problem /var/db/mysql should be owned by mysql:mysql because > mysqld is started as user mysql. > > bye > Estartu > > ---------------------------------------------------------------------------- > Gerhard Schmidt | Nick : estartu IRC : Estartu | > Fischbachweg 3 | | PGP Public Key > 86856 Hiltenfingen | Privat: estartu@augusta.de | auf Anfrage/ > Germany | | on Request From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:37:40 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08BAC16A426 for ; Tue, 24 May 2005 14:37:40 +0000 (GMT) (envelope-from leblanc@keyslapper.net) Received: from russian-caravan.cloud9.net (russian-caravan.cloud9.net [168.100.1.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABFF843D48 for ; Tue, 24 May 2005 14:37:39 +0000 (GMT) (envelope-from leblanc@keyslapper.net) Received: from russian-caravan.cloud9.net (localhost [127.0.0.1]) by russian-caravan.cloud9.net (Postfix) with SMTP id 0560D1956E for ; Tue, 24 May 2005 10:37:39 -0400 (EDT) Received: from keyslapper.net (250-119.customer.cloud9.net [168.100.250.119]) by russian-caravan.cloud9.net (Postfix) with ESMTP id B10E719080 for ; Tue, 24 May 2005 10:37:38 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by keyslapper.net (Postfix) with ESMTP id 50E78114E9 for ; Tue, 24 May 2005 10:37:38 -0400 (EDT) Received: from keyslapper.net ([127.0.0.1]) by localhost (keyslapper.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30184-10 for ; Tue, 24 May 2005 10:37:38 -0400 (EDT) Received: by keyslapper.net (Postfix, from userid 1001) id 252C811433; Tue, 24 May 2005 10:37:38 -0400 (EDT) Date: Tue, 24 May 2005 10:37:38 -0400 From: Louis LeBlanc To: freebsd-questions@freebsd.org Message-ID: <20050524143737.GD27658@keyslapper.net> Mail-Followup-To: freebsd-questions@freebsd.org References: <20050523185517.GC44534@keyslapper.net> <20050523193524.GC16069@dan.emsphone.com> <20050524122838.6fd7b626@it.buh.cameradicommercio.ro> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20050524122838.6fd7b626@it.buh.cameradicommercio.ro> X-PGP-Key: http://www.keyslapper.net/~leblanc/leblanc-at-keyslapper-net.asc User-Agent: Mutt/1.5.9i X-Virus-Scanned: amavisd-new at keyslapper.net X-AntiVirus: Checked by Vexira Antivirus v1.5 Subject: Re: tracking down network load? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:37:40 -0000 On 05/24/05 12:28 PM, Ion-Mihai Tetcu sat at the `puter and typed: > On Mon, 23 May 2005 14:35:25 -0500 > Dan Nelson wrote: > > > In the last episode (May 23), Louis LeBlanc said: > > > I have a strange question. Well, maybe not so strange. > > > > > > I am working on my 5.3 RELEASE system, and I notice my network > > > monitor on gkrellm is showing unexplained loads (15/23Kbps sustained) > > > in traffic on the external interface. > > > > > > I'm not too concerned that this is a security breach, but I do notice > > > at least one ESTABLISHED connection that I can't explain (it goes > > > back to AOL, which naturally sows a little mistrust). > > > > > > Anyway, how to I find the actual process (server or otherwise) on my > > > end that is handling a given connection, and what kind of load it is > > > handling? > > > > sockstat or "lsof -i" will tell you which sockets belong to which > > processes, and tcpdump or any of a dozen or so programs in ports will > > give you detailed network usage. Start with trafshow and iftop. > > Nice thing iftop; unfortunately iftop is not maintained and on my > 5-STABLE after a few seconds: Ah. Love those neat little utilities you install when you need them then forget once the unexplained behavior subsides or is explained. I installed mine some time ago, and apparently upgraded the port back in February. Of course I forgot I had such a tool long before. Ah well. Thanks for the pointer. I'll keep your message around and hopefully I'll find it if this odd behavior should crop back up. BTW, I don't seem to have any problems with it - so far. If you were to keep the code around in the port, you might be able to figure out the problem. > Unregistered ;) FreeBSD "user" I love it! I might have to borrow that (it's not copyrighted, is it?) :D Thanks again. Lou -- Louis LeBlanc FreeBSD-at-keyslapper-DOT-net Fully Funded Hobbyist, KeySlapper Extrordinaire :) Please send off-list email to: leblanc at keyslapper d.t net Key fingerprint = C5E7 4762 F071 CE3B ED51 4FB8 AF85 A2FE 80C8 D9A2 today, n.: A nice place to visit, but you can't stay here for long. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:40:34 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE0B816A41C for ; Tue, 24 May 2005 14:40:34 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91F3143D1F for ; Tue, 24 May 2005 14:40:34 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.3) id j4OEdk9B091945; Tue, 24 May 2005 09:39:46 -0500 (CDT) (envelope-from dan) Date: Tue, 24 May 2005 09:39:46 -0500 From: Dan Nelson To: "C.G.Senthilkumar." Message-ID: <20050524143945.GE16069@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-OS: FreeBSD 5.4-STABLE X-message-flag: Outlook Error User-Agent: Mutt/1.5.9i Cc: freebsd-questions@freebsd.org Subject: Re: libiptc equivalent in FreeBSD ipfw X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:40:35 -0000 In the last episode (May 23), C.G.Senthilkumar. said: > I want to add some rules to the ipfw kernel table directly from my > program rather than going through the ipfw user-space program. Is > there some control library analogous to libiptc in Linux's > netfilter/iptables that would let me do that? > > If yes, where could I learn more about it? No, /usr/sbin/ipfw is the only "API" available. If you don't want the overhead of forking a new process every time you want to add or change a rule, you can fork an ipfw in the background when your program starts: "ipfw /dev/fd/0" will take commands on stdin and print to stdout. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:42:11 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B12A716A41C for ; Tue, 24 May 2005 14:42:11 +0000 (GMT) (envelope-from keith@barkinglizards.com) Received: from pluto.phpwebhosting.com (pluto.phpwebhosting.com [69.0.209.128]) by mx1.FreeBSD.org (Postfix) with SMTP id 47F9143D49 for ; Tue, 24 May 2005 14:42:11 +0000 (GMT) (envelope-from keith@barkinglizards.com) Received: (qmail 27339 invoked from network); 24 May 2005 14:42:06 -0000 Received: from unknown (HELO Rand) (209.117.233.18) by pluto.phpwebhosting.com with SMTP; 24 May 2005 14:42:06 -0000 From: "Keith Bottner" To: "'Mark Jayson Alvarez'" , Date: Tue, 24 May 2005 09:42:18 -0500 Organization: Barking Lizards Technologies MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 In-Reply-To: <20050524071517.25385.qmail@web51608.mail.yahoo.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Thread-Index: AcVgMKTU4HXApM9HR7ewLWBzem1UkwAPh68g Message-Id: <20050524144211.47F9143D49@mx1.FreeBSD.org> Cc: Subject: RE: Merging a directory to the search path of includes and libspermanently(ldconfig -m....) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:42:11 -0000 One way is to set ldconfig_paths in rc.conf. Does anybody know of a better way? Keith -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Mark Jayson Alvarez Sent: Tuesday, May 24, 2005 2:15 AM To: freebsd-questions@freebsd.org Subject: Merging a directory to the search path of includes and libspermanently(ldconfig -m....) Hi, Is there a way to merge a certain directory to the library search path or include search path permanently? "ldconfig -m" works only while the computer have not yet been rebooted. I have an experienced that I was able to install a certain application that depends on a library not found in the standard search path, so I used ldconfig -m... but after rebooting, the application can't run anymore because of the library not found. __________________________________ Do you Yahoo!? Yahoo! Small Business - Try our new Resources site http://smallbusiness.yahoo.com/resources/ _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:44:50 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0319016A41C for ; Tue, 24 May 2005 14:44:50 +0000 (GMT) (envelope-from johnfhoover@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id A296D43D4C for ; Tue, 24 May 2005 14:44:49 +0000 (GMT) (envelope-from johnfhoover@gmail.com) Received: by rproxy.gmail.com with SMTP id i8so956048rne for ; Tue, 24 May 2005 07:44:48 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=D6PBrWjks3hiUUVGCB8jeI1rHxEkujyXG3JM3+ZhZJUKGrJCS4BdHloSf1I4i4S6jks/LCURpPTzcSoZnYl7trpA3qjg4lQVN4BaPbJ1l8nmtldPmhBkToTTXJaorQdno/2aLQpjN6MTolzi9gEsFX7KhvmGZRVQ1lD3kC4EsAU= Received: by 10.38.92.8 with SMTP id p8mr3842458rnb; Tue, 24 May 2005 07:44:48 -0700 (PDT) Received: by 10.38.78.18 with HTTP; Tue, 24 May 2005 07:44:48 -0700 (PDT) Message-ID: <5730154705052407445609cd47@mail.gmail.com> Date: Tue, 24 May 2005 09:44:48 -0500 From: John Hoover To: joeborg@ieee.org In-Reply-To: <6f2ed49705052400594ed43037@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <6f2ed49705052400594ed43037@mail.gmail.com> Cc: FreeBSD Mailing List Subject: Re: Samba Config X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Hoover List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:44:50 -0000 I've got a mixture of ME and XP machines, this has been working well as public storage without dealing with individual permissions. I don't think I had to do anything beyond the normal setup, I don't remembe= r. [global] workgroup =3D GAISERCO netbios name =3D GSRCOFS security =3D SHARE disable spoolss =3D YES wins support =3D YES preferred master =3D YES [GAISERCO] comment =3D GaiserCo file storage path =3D /smbdata/gaiserco force user =3D nobody force group =3D nobody read only =3D no guest ok =3D yes nt acl support =3D no [PUBLIC] comment =3D PUBLIC file storage path =3D /smbdata/public read only =3D no force user =3D nobody force group =3D nobody guest ok =3D yes nt acl support =3D no John. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:51:53 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8C8B16A41C for ; Tue, 24 May 2005 14:51:53 +0000 (GMT) (envelope-from algould@datawok.com) Received: from smtpauth03.mail.atl.earthlink.net (smtpauth03.mail.atl.earthlink.net [209.86.89.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0A2B43D1D for ; Tue, 24 May 2005 14:51:53 +0000 (GMT) (envelope-from algould@datawok.com) Received: from [206.255.31.21] (helo=[192.168.63.10]) by smtpauth03.mail.atl.earthlink.net with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1Daal5-0007AH-MS; Tue, 24 May 2005 10:51:51 -0400 From: "Andrew L. Gould" To: Timothy Smith Date: Tue, 24 May 2005 09:52:17 -0500 User-Agent: KMail/1.6.2 References: <4292DCBD.5020904@open-networks.net> <200505240817.47562.algould@datawok.com> <42933168.5060504@open-networks.net> In-Reply-To: <42933168.5060504@open-networks.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200505240952.17605.algould@datawok.com> X-ELNK-Trace: ee791d459e3d6817d780f4a490ca69563f9fea00a6dd62bc055d0423696fb16566037af0e9354c4b350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 206.255.31.21 Cc: freebsd-questions@freebsd.org Subject: Re: 5.3 doesn't detect wireless card dwl g520 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:51:54 -0000 On Tuesday 24 May 2005 08:51 am, Timothy Smith wrote: > Andrew L. Gould wrote: > >On Tuesday 24 May 2005 06:59 am, Timothy Smith wrote: > >>Andrew L. Gould wrote: > >>>On Tuesday 24 May 2005 02:50 am, Timothy Smith wrote: > >>>>is there something extra i can do to force it to load this card? > >>> > >>>What do you mean by "extra"? What have you done so far? > >>> > >>>Have you recompiled the kernel with device lines for ath and > >>>ath_hal? > >>> > >>>Andrew Gould > >>>_______________________________________________ > >> > >>i tried compiling it with ath and ath_hal, but it totally freaks > >> out on make. error on apci (i thought that stuff was disabled in > >> generic?) > > > >What version of FreeBSD are you using? Note that the atheros > > chipset is only supported by FreeBSD 5*. > > > >If apci is incompatible with your hardware, you may have to disable > > it and revert back to apm (or neither). > > > >Andrew Gould > > it's 5.3 release, > apci and apm are disabled in generic (which i copied). > i added the lines device ath and device ath_hal > > i get the error > > "internal compiler error: segmentation fault" > stop in /usr/src/sys/modules/ctau > > sorry i can't provide any kind of dump. wifi is this machines only > option for networking :/ should i just give up or is there a glimmer > of hope i might get this to work? Since I had a version B of the same wireless PCI card working in 5.3, I wouldn't give up. I would, however, update the system using cvsup in case something is missing/corrupted in the source code. (Also check the version of the PCI card. Is it version B?) Best of luck, Andrew Gould From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:57:51 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE35E16A41C for ; Tue, 24 May 2005 14:57:51 +0000 (GMT) (envelope-from freebsd-questions@shadowguarddev.com) Received: from glaaki.masonitg.com (glaaki.masonitg.com [66.119.7.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EA5943D49 for ; Tue, 24 May 2005 14:57:51 +0000 (GMT) (envelope-from freebsd-questions@shadowguarddev.com) Received: from [192.168.0.58] (unknown [24.137.137.84]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by glaaki.masonitg.com (Postfix) with ESMTP id 4AAA18E67C; Tue, 24 May 2005 09:57:50 -0500 (CDT) Message-ID: <429340EC.2080801@shadowguarddev.com> Date: Tue, 24 May 2005 09:57:48 -0500 From: "Aaron C. Meadows" Organization: ShadowGuard Development User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Hardware RAID Cards.. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:57:51 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi there. I have an IBM Netfinity 5000 server I just picked up, and it has an Adaptec AAA-131U2 (aic7815 chipset) RAID card in it, attached to 5 IBM Branded (Seagate ST39204LC) Hot Swap Ultra160 9.1gig SCSI Harddrives. My question is, since that chipset is unsupported for hardware RAID, would I be better off to software RAID them, or get a different RAID card? Contingent question is, if I should get another RAID card, what would be a good, supported, entry level card? This server will be purposed as a webserver for a small webhosting company, maybe 100 sites on it. Running Postfix,Bind,Apache2,PHP,Postgresql,etc Thanks for the help! - --Aaron -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD4DBQFCk0Ds/mrzqN8FLFURAp15AJUYy2qw69BsB1OrCDk0lLNEjom4AJ4maVRq WzD8N71349KhBLPYy5zrfg== =cxo+ -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 14:59:20 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B85A816A41C for ; Tue, 24 May 2005 14:59:20 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F0D843D5E for ; Tue, 24 May 2005 14:59:20 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: by zproxy.gmail.com with SMTP id 9so1075368nzo for ; Tue, 24 May 2005 07:59:19 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:references; b=FtCCfMNJ8c0j2vqn0rNo3vzUfk9o4Bo6A+s3t1DuXd+KvTYpeqBG/dZ5btdGzAPxcLMdq6XT8sDyw+y1jhEeDFUWcBpsUewrIR/gHWKx/o3hVtunQKpAw3krchMWwOC4QT/B3unQCYqmpyK3t7Tqh2EUexWq2cRNnmi4PHOySmU= Received: by 10.36.120.11 with SMTP id s11mr1732228nzc; Tue, 24 May 2005 07:59:19 -0700 (PDT) Received: by 10.36.105.6 with HTTP; Tue, 24 May 2005 07:59:19 -0700 (PDT) Message-ID: Date: Tue, 24 May 2005 11:59:19 -0300 From: Franco Bruno Borghesi To: freebsd-lists@slivko.org In-Reply-To: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> Mime-Version: 1.0 References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Franco Bruno Borghesi List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 14:59:20 -0000 For fsck to work (to actually correct any problems you may have), partition= s=20 should be umounted first. Are you sure you have umounted /dev/twedXXXX=20 before running fsck? 2005/5/24, Jonathan M. Slivko : >=20 > Hello, >=20 > I have an interesting question, I have a Pentium 4 2.4Ghz (No HT Enabled)= , > 2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. However, > whenever you try and do an fsck -y, it says: >=20 > root@bonjour(~)% fsck -y > ** /dev/twed0s1a (NO WRITE) > ** Last Mounted on / > ** Root file system > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 2821 files, 31805 used, 474682 free (322 frags, 59295 blocks, 0.1% > fragmentation) >=20 > ** /dev/twed0s1g (NO WRITE) > ** Last Mounted on /home > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 82057 files, 557735 used, 12912399 free (2343 frags, 1613757 blocks, 0.0% > fragmentation) >=20 > ** /dev/twed0s1d (NO WRITE) > ** Last Mounted on /tmp > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 30 files, 1787 used, 504700 free (20 frags, 63085 blocks, 0.0%fragmentati= on) >=20 > ** /dev/twed0s1e (NO WRITE) > ** Last Mounted on /usr > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 251160 files, 1318908 used, 13912410 free (73346 frags, 1729883 blocks, > 0.5% fragmentation) >=20 > ** /dev/twed0s1f (NO WRITE) > ** Last Mounted on /var > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 4424 files, 63321 used, 7042830 free (2462 frags, 880046 blocks, 0.0% > fragmentation) >=20 > The drives are Seagate SATA's (7200RPM) with a 3Ware SATA RAID Controller > (8006-2LP) using the twe kernel driver. The drives themselves allow data > to be read to/written from them, but fsck will not work (and is hanging > things on boot). >=20 > Anyone got any ideas? I looked at www.3ware.com ear= lier and it says that > the 8006-2LP's support FreeBSD 4.x, but not 5.x - could this be a result > of that, seeing as otherwise the drives/RAID work fine (AFAIK, it could > not be and I'm just not sure how to test it). >=20 > TIA, > -- Jonathan > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:02:07 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1074D16A41C for ; Tue, 24 May 2005 15:02:07 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from photonix.site5.com (photonix.site5.com [209.59.179.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3C9543D1D for ; Tue, 24 May 2005 15:02:06 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from pool-70-18-16-72.ny325.east.verizon.net ([70.18.16.72] helo=[192.168.1.46]) by photonix.site5.com with esmtpa (Exim 4.50) id 1Daauz-00081s-OR; Tue, 24 May 2005 11:02:06 -0400 Message-ID: <429341E4.5000108@slivko.org> Date: Tue, 24 May 2005 11:01:56 -0400 From: "Jonathan M. Slivko" User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Franco Bruno Borghesi References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: This message has been scanned by ClamAV - CLEAN. X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - photonix.site5.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - slivko.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:02:07 -0000 Yes, this is actually the autoboot fsck thats breaking, the one that is called from /etc/rc (via /etc/rc.d/). I can physically take the box down and do an offline fsck of it and that works fine, it's just when it's in multi-user mode thats the problem. -- Jonathan Franco Bruno Borghesi wrote: > For fsck to work (to actually correct any problems you may have), > partitions should be umounted first. Are you sure you have umounted > /dev/twedXXXX before running fsck? > > > 2005/5/24, Jonathan M. Slivko >: > > Hello, > > I have an interesting question, I have a Pentium 4 2.4Ghz (No HT > Enabled), > 2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. However, > whenever you try and do an fsck -y, it says: > > root@bonjour (~)% fsck -y > ** /dev/twed0s1a (NO WRITE) > ** Last Mounted on / > ** Root file system > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 2821 files, 31805 used, 474682 free (322 frags, 59295 blocks, 0.1% > fragmentation) > > ** /dev/twed0s1g (NO WRITE) > ** Last Mounted on /home > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 82057 files, 557735 used, 12912399 free (2343 frags, 1613757 blocks, > 0.0% > fragmentation) > > ** /dev/twed0s1d (NO WRITE) > ** Last Mounted on /tmp > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 30 files, 1787 used, 504700 free (20 frags, 63085 blocks, 0.0% > fragmentation) > > ** /dev/twed0s1e (NO WRITE) > ** Last Mounted on /usr > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 251160 files, 1318908 used, 13912410 free (73346 frags, 1729883 blocks, > 0.5% fragmentation) > > ** /dev/twed0s1f (NO WRITE) > ** Last Mounted on /var > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 4424 files, 63321 used, 7042830 free (2462 frags, 880046 blocks, 0.0% > fragmentation) > > The drives are Seagate SATA's (7200RPM) with a 3Ware SATA RAID > Controller > (8006-2LP) using the twe kernel driver. The drives themselves allow data > to be read to/written from them, but fsck will not work (and is hanging > things on boot). > > Anyone got any ideas? I looked at www.3ware.com > earlier and it says that > the 8006-2LP's support FreeBSD 4.x, but not 5.x - could this be a result > of that, seeing as otherwise the drives/RAID work fine (AFAIK, it could > not be and I'm just not sure how to test it). > > TIA, > -- Jonathan > _______________________________________________ > 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 > " > > -- Jonathan M. Slivko - jonathan@slivko.org "Linux: The Choice for the GNU Generation" - http://www.linux.org/ - Don't fear the penguin. .^. /V\ /( )\ ^^-^^ He's here to help. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:06:32 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E83D716A41C for ; Tue, 24 May 2005 15:06:31 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 826BE43D48 for ; Tue, 24 May 2005 15:06:31 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: by zproxy.gmail.com with SMTP id 40so2912315nzk for ; Tue, 24 May 2005 08:06:31 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:references; b=EdyvI8OYsrrj74QJ7PD+R/ESTB94ZPPALY+ahBTiZTj0QkhgLRb3Ye00bXUnJcZpVYHaVk24LJQ3CuGiG5kqKx6LpejOnoXEunhL/I/nyOHvAIKoHCc7ZlFBasshSn7aaWrMoFTythhd8zq1XNZa8y7OSXAJXCOW6DgiZIRy7jk= Received: by 10.36.120.11 with SMTP id s11mr1736117nzc; Tue, 24 May 2005 08:06:30 -0700 (PDT) Received: by 10.36.105.6 with HTTP; Tue, 24 May 2005 08:06:30 -0700 (PDT) Message-ID: Date: Tue, 24 May 2005 12:06:30 -0300 From: Franco Bruno Borghesi To: "Jonathan M. Slivko" In-Reply-To: <429341E4.5000108@slivko.org> Mime-Version: 1.0 References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> <429341E4.5000108@slivko.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Franco Bruno Borghesi List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:06:32 -0000 Could you post your /etc/fstab? 2005/5/24, Jonathan M. Slivko : >=20 > Yes, this is actually the autoboot fsck thats breaking, the one that is > called from /etc/rc (via /etc/rc.d/). I can physically take the box down > and do an offline fsck of it and that works fine, it's just when it's in > multi-user mode thats the problem. >=20 > -- Jonathan >=20 > Franco Bruno Borghesi wrote: > > For fsck to work (to actually correct any problems you may have), > > partitions should be umounted first. Are you sure you have umounted > > /dev/twedXXXX before running fsck? > > > > > > 2005/5/24, Jonathan M. Slivko > >: > > > > Hello, > > > > I have an interesting question, I have a Pentium 4 2.4Ghz (No HT > > Enabled), > > 2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. However, > > whenever you try and do an fsck -y, it says: > > > > root@bonjour (~)% fsck -y > > ** /dev/twed0s1a (NO WRITE) > > ** Last Mounted on / > > ** Root file system > > ** Phase 1 - Check Blocks and Sizes > > ** Phase 2 - Check Pathnames > > ** Phase 3 - Check Connectivity > > ** Phase 4 - Check Reference Counts > > ** Phase 5 - Check Cyl groups > > 2821 files, 31805 used, 474682 free (322 frags, 59295 blocks, 0.1% > > fragmentation) > > > > ** /dev/twed0s1g (NO WRITE) > > ** Last Mounted on /home > > ** Phase 1 - Check Blocks and Sizes > > ** Phase 2 - Check Pathnames > > ** Phase 3 - Check Connectivity > > ** Phase 4 - Check Reference Counts > > ** Phase 5 - Check Cyl groups > > 82057 files, 557735 used, 12912399 free (2343 frags, 1613757 blocks, > > 0.0% > > fragmentation) > > > > ** /dev/twed0s1d (NO WRITE) > > ** Last Mounted on /tmp > > ** Phase 1 - Check Blocks and Sizes > > ** Phase 2 - Check Pathnames > > ** Phase 3 - Check Connectivity > > ** Phase 4 - Check Reference Counts > > ** Phase 5 - Check Cyl groups > > 30 files, 1787 used, 504700 free (20 frags, 63085 blocks, 0.0% > > fragmentation) > > > > ** /dev/twed0s1e (NO WRITE) > > ** Last Mounted on /usr > > ** Phase 1 - Check Blocks and Sizes > > ** Phase 2 - Check Pathnames > > ** Phase 3 - Check Connectivity > > ** Phase 4 - Check Reference Counts > > ** Phase 5 - Check Cyl groups > > 251160 files, 1318908 used, 13912410 free (73346 frags, 1729883 blocks, > > 0.5% fragmentation) > > > > ** /dev/twed0s1f (NO WRITE) > > ** Last Mounted on /var > > ** Phase 1 - Check Blocks and Sizes > > ** Phase 2 - Check Pathnames > > ** Phase 3 - Check Connectivity > > ** Phase 4 - Check Reference Counts > > ** Phase 5 - Check Cyl groups > > 4424 files, 63321 used, 7042830 free (2462 frags, 880046 blocks, 0.0% > > fragmentation) > > > > The drives are Seagate SATA's (7200RPM) with a 3Ware SATA RAID > > Controller > > (8006-2LP) using the twe kernel driver. The drives themselves allow dat= a > > to be read to/written from them, but fsck will not work (and is hanging > > things on boot). > > > > Anyone got any ideas? I looked at www.3ware.com > > earlier and it says that > > the 8006-2LP's support FreeBSD 4.x, but not 5.x - could this be a resul= t > > of that, seeing as otherwise the drives/RAID work fine (AFAIK, it could > > not be and I'm just not sure how to test it). > > > > TIA, > > -- Jonathan > > _______________________________________________ > > 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 > > " > > > > >=20 > -- > Jonathan M. Slivko - jonathan@slivko.org > "Linux: The Choice for the GNU Generation" > - http://www.linux.org/ - >=20 > Don't fear the penguin. > .^. > /V\ > /( )\ > ^^-^^ > He's here to help. > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:08:43 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0E7416A41C for ; Tue, 24 May 2005 15:08:43 +0000 (GMT) (envelope-from perikillo@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id A583243D48 for ; Tue, 24 May 2005 15:08:41 +0000 (GMT) (envelope-from perikillo@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so1043125rng for ; Tue, 24 May 2005 08:08:39 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type; b=KOSjGctrYmVYYC1EYxa3Le+YRbv94ambYuhLta0eZnpqe64lqqeR/Qbw0ZHwgC2lOUUwtb6OdEpXiBkE64I0ORERUDPXzobLex7Th5yLsecIDNV4BB/pbJiIPa7VCpZh2A6He03EzhscGVMLuosEU21FrVxnmFeChHM9cEQgjJg= Received: by 10.38.155.3 with SMTP id c3mr3884808rne; Tue, 24 May 2005 08:08:39 -0700 (PDT) Received: by 10.38.98.73 with HTTP; Tue, 24 May 2005 08:08:38 -0700 (PDT) Message-ID: <51d7a516050524080843451d09@mail.gmail.com> Date: Tue, 24 May 2005 08:08:38 -0700 From: perikillo To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: question about dhcp client X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: perikillo List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:08:44 -0000 Hi all, iam going to setup one firewall for a friend, i need to use the=20 dhcp client to get the IP, my question is: 1; I need to have the BPF device enable, is a rule? Because normally, by security is recomend that this option need to be=20 disable!!! Is all my question, i am using freebsd 4.11-p9 with ipfilter+ipnat. Thanks all. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:09:06 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A89C16A41C for ; Tue, 24 May 2005 15:09:06 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from photonix.site5.com (photonix.site5.com [209.59.179.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED3F643D1D for ; Tue, 24 May 2005 15:09:04 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from pool-70-18-16-72.ny325.east.verizon.net ([70.18.16.72] helo=[192.168.1.46]) by photonix.site5.com with esmtpa (Exim 4.50) id 1Dab1l-0001tj-Ey; Tue, 24 May 2005 11:09:05 -0400 Message-ID: <42934389.9020307@slivko.org> Date: Tue, 24 May 2005 11:08:57 -0400 From: "Jonathan M. Slivko" User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Franco Bruno Borghesi References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> <429341E4.5000108@slivko.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: This message has been scanned by ClamAV - CLEAN. X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - photonix.site5.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - slivko.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:09:06 -0000 root@bonjour(~)% cat /etc/fstab # Device Mountpoint FStype Options Dump Pass# /dev/twed0s1b none swap sw 0 0 /dev/twed0s1a / ufs rw 1 1 /dev/twed0s1g /home ufs rw,userquota,groupquota 2 2 /dev/twed0s1d /tmp ufs rw 2 2 /dev/twed0s1e /usr ufs rw 2 2 /dev/twed0s1f /var ufs rw 2 2 /dev/acd0 /cdrom cd9660 ro,noauto 0 0 none /proc procfs rw 0 0 root@bonjour(~)% Franco Bruno Borghesi wrote: > Could you post your /etc/fstab? > > 2005/5/24, Jonathan M. Slivko : > >>Yes, this is actually the autoboot fsck thats breaking, the one that is >>called from /etc/rc (via /etc/rc.d/). I can physically take the box down >>and do an offline fsck of it and that works fine, it's just when it's in >>multi-user mode thats the problem. >> >>-- Jonathan >> >>Franco Bruno Borghesi wrote: >> >>>For fsck to work (to actually correct any problems you may have), >>>partitions should be umounted first. Are you sure you have umounted >>>/dev/twedXXXX before running fsck? >>> >>> >>>2005/5/24, Jonathan M. Slivko >>>: >>> >>>Hello, >>> >>>I have an interesting question, I have a Pentium 4 2.4Ghz (No HT >>>Enabled), >>>2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. However, >>>whenever you try and do an fsck -y, it says: >>> >>>root@bonjour (~)% fsck -y >>>** /dev/twed0s1a (NO WRITE) >>>** Last Mounted on / >>>** Root file system >>>** Phase 1 - Check Blocks and Sizes >>>** Phase 2 - Check Pathnames >>>** Phase 3 - Check Connectivity >>>** Phase 4 - Check Reference Counts >>>** Phase 5 - Check Cyl groups >>>2821 files, 31805 used, 474682 free (322 frags, 59295 blocks, 0.1% >>>fragmentation) >>> >>>** /dev/twed0s1g (NO WRITE) >>>** Last Mounted on /home >>>** Phase 1 - Check Blocks and Sizes >>>** Phase 2 - Check Pathnames >>>** Phase 3 - Check Connectivity >>>** Phase 4 - Check Reference Counts >>>** Phase 5 - Check Cyl groups >>>82057 files, 557735 used, 12912399 free (2343 frags, 1613757 blocks, >>>0.0% >>>fragmentation) >>> >>>** /dev/twed0s1d (NO WRITE) >>>** Last Mounted on /tmp >>>** Phase 1 - Check Blocks and Sizes >>>** Phase 2 - Check Pathnames >>>** Phase 3 - Check Connectivity >>>** Phase 4 - Check Reference Counts >>>** Phase 5 - Check Cyl groups >>>30 files, 1787 used, 504700 free (20 frags, 63085 blocks, 0.0% >>>fragmentation) >>> >>>** /dev/twed0s1e (NO WRITE) >>>** Last Mounted on /usr >>>** Phase 1 - Check Blocks and Sizes >>>** Phase 2 - Check Pathnames >>>** Phase 3 - Check Connectivity >>>** Phase 4 - Check Reference Counts >>>** Phase 5 - Check Cyl groups >>>251160 files, 1318908 used, 13912410 free (73346 frags, 1729883 blocks, >>>0.5% fragmentation) >>> >>>** /dev/twed0s1f (NO WRITE) >>>** Last Mounted on /var >>>** Phase 1 - Check Blocks and Sizes >>>** Phase 2 - Check Pathnames >>>** Phase 3 - Check Connectivity >>>** Phase 4 - Check Reference Counts >>>** Phase 5 - Check Cyl groups >>>4424 files, 63321 used, 7042830 free (2462 frags, 880046 blocks, 0.0% >>>fragmentation) >>> >>>The drives are Seagate SATA's (7200RPM) with a 3Ware SATA RAID >>>Controller >>>(8006-2LP) using the twe kernel driver. The drives themselves allow data >>>to be read to/written from them, but fsck will not work (and is hanging >>>things on boot). >>> >>>Anyone got any ideas? I looked at www.3ware.com >>> earlier and it says that >>>the 8006-2LP's support FreeBSD 4.x, but not 5.x - could this be a result >>>of that, seeing as otherwise the drives/RAID work fine (AFAIK, it could >>>not be and I'm just not sure how to test it). >>> >>>TIA, >>>-- Jonathan >>>_______________________________________________ >>>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 >>>" >>> >>> >> >>-- >>Jonathan M. Slivko - jonathan@slivko.org >>"Linux: The Choice for the GNU Generation" >>- http://www.linux.org/ - >> >>Don't fear the penguin. >>.^. >>/V\ >>/( )\ >>^^-^^ >>He's here to help. >> > > _______________________________________________ > 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" -- Jonathan M. Slivko - jonathan@slivko.org "Linux: The Choice for the GNU Generation" - http://www.linux.org/ - Don't fear the penguin. .^. /V\ /( )\ ^^-^^ He's here to help. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:21:36 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BB7016A41C for ; Tue, 24 May 2005 15:21:36 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBFD643D1D for ; Tue, 24 May 2005 15:21:35 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin02-en2 [10.13.10.147]) by smtpout.mac.com (Xserve/8.12.11/smtpout10/MantshX 4.0) with ESMTP id j4OFLZWx004422; Tue, 24 May 2005 08:21:35 -0700 (PDT) Received: from [192.168.1.6] (pool-68-161-53-96.ny325.east.verizon.net [68.161.53.96]) (authenticated bits=0) by mac.com (Xserve/smtpin02/MantshX 4.0) with ESMTP id j4OFLV4L014773; Tue, 24 May 2005 08:21:33 -0700 (PDT) In-Reply-To: <51d7a516050524080843451d09@mail.gmail.com> References: <51d7a516050524080843451d09@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v730) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <4580439D-D489-4471-A026-4D8443B92C2D@mac.com> Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Tue, 24 May 2005 11:21:25 -0400 To: perikillo X-Mailer: Apple Mail (2.730) Cc: freebsd-questions@freebsd.org Subject: Re: question about dhcp client X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:21:36 -0000 On May 24, 2005, at 11:08 AM, perikillo wrote: > Hi all, iam going to setup one firewall for a friend, i need to > use the > dhcp client to get the IP, my question is: > > 1; I need to have the BPF device enable, is a rule? You need BPF if you want dhclient to work, yes. > Because normally, by security is recomend that this option need to be > disable!!! Agreed. Using dynamic network configuration on a firewall is not very secure. Get a broadband router to do DHCP and NAT, and place your firewall between that device and your network configured using static info... -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:22:44 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB94A16A41C for ; Tue, 24 May 2005 15:22:44 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr1.xs4all.nl (smtp-vbr1.xs4all.nl [194.109.24.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 660C843D54 for ; Tue, 24 May 2005 15:22:44 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr1.xs4all.nl (8.13.3/8.13.3) with ESMTP id j4OFMh3T047189; Tue, 24 May 2005 17:22:43 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 03285617A; Tue, 24 May 2005 17:22:43 +0200 (CEST) Date: Tue, 24 May 2005 17:22:43 +0200 From: Roland Smith To: Joe Schmoe Message-ID: <20050524152242.GA19150@slackbox.xs4all.nl> Mail-Followup-To: Joe Schmoe , freebsd-questions@freebsd.org References: <20050524071012.41498.qmail@web53308.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sdtB3X0nJg68CQEu" Content-Disposition: inline In-Reply-To: <20050524071012.41498.qmail@web53308.mail.yahoo.com> User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: how can I make xterm just like the console ? (colors, etc.) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:22:45 -0000 --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 24, 2005 at 12:10:12AM -0700, Joe Schmoe wrote: >=20 > Can someone tell me what configuration I need to make > the colors (and as much other behavior as possible) in > xterm identical to the normal FreeBSD console ? Edit the file /usr/X11R6/lib/X11/app-defaults/XTerm-color-static, and change=20 ! Uncomment this for "white" text on a dark background. !*VT100*foreground: gray90 !*VT100*background: black to=20 ! Uncomment this for "white" text on a dark background. *VT100*foreground: gray90 *VT100*background: black Beware that these might be changed next time you update Xorg. So as an alternative, you can create a file ~/.Xresources, and put these two lines in it. HTH,=20 Roland --=20 R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain text. public key: http://www.xs4all.nl/~rsmith/pubkey.txt --sdtB3X0nJg68CQEu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCk0bCEnfvsMMhpyURAihOAJ4tHnG3R68bNe4fpyUC/jTa/cpfzQCfcGhG 90tOB/dFR+2bMBCN6Xrmhvo= =wZVp -----END PGP SIGNATURE----- --sdtB3X0nJg68CQEu-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:29:05 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 482F216A41C for ; Tue, 24 May 2005 15:29:05 +0000 (GMT) (envelope-from bsd-list@hiltonbsd.com) Received: from mta.algx.net (mta6.algx.net [67.92.168.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id F412243D4C for ; Tue, 24 May 2005 15:29:04 +0000 (GMT) (envelope-from bsd-list@hiltonbsd.com) Received: from andersencabinet.com (ip67-95-33-74.z33-95-67.customer.algx.net [67.95.33.74]) by chimmx05.algx.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0IH0000ZV308BQ@chimmx05.algx.net> for questions@freebsd.org; Tue, 24 May 2005 10:28:57 -0500 (CDT) Received: by andersencabinet.com (Postfix, from userid 1115) id D757A37B747; Tue, 24 May 2005 10:28:56 -0500 (CDT) Received: from [127.0.0.1] (hilton.andcab.local [192.168.9.17]) by andersencabinet.com (Postfix) with ESMTP id C406737B742 for ; Tue, 24 May 2005 10:28:54 -0500 (CDT) Date: Tue, 24 May 2005 10:28:54 -0500 From: Stephen Hilton To: questions@freebsd.org Message-id: <42934836.1030305@hiltonbsd.com> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on mail.andcab.local X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED autolearn=disabled version=3.0.2 Cc: Subject: Hylafax on FreeBSD 5.4x (upgrading from 4.11) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:29:05 -0000 I am getting ready to wipe a FreeBSD 4.11x box clean and reinstall with 5.4x. One of the tasks this machine does is Hylafax. In looking at the Hylafax port Makefile I see that the uucp user is needed for install, but do not see where the uucp port is brought in as a dependency. Do I need to install the uucp port first before Hylafax? or can Hylafax operate in fax receive mode without needing uucp installed (external 56k serial Fax/Modem) and a manually added uucp user. Thanks, Stephen Hilton From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:33:17 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66B8F16A41C for ; Tue, 24 May 2005 15:33:17 +0000 (GMT) (envelope-from vdm.fbsd@virgilio.it) Received: from vsmtp12.tin.it (vsmtp12.tin.it [212.216.176.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BBC643D53 for ; Tue, 24 May 2005 15:33:14 +0000 (GMT) (envelope-from vdm.fbsd@virgilio.it) Received: from ims1d.cp.tin.it (192.168.70.101) by vsmtp12.tin.it (7.0.027) id 428138D1005AEA91 for freebsd-questions@freebsd.org; Tue, 24 May 2005 17:33:12 +0200 Received: from [192.168.70.183] by ims1d.cp.tin.it with HTTP; Tue, 24 May 2005 17:33:10 +0200 Date: Tue, 24 May 2005 17:33:10 +0200 Message-ID: <428BB4F80002D437@ims1d.cp.tin.it> From: vdm.fbsd@virgilio.it To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-15" Content-Transfer-Encoding: quoted-printable X-Originating-IP: 194.185.25.73 Subject: Articles, Tutorials & hardware setting in loader.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:33:17 -0000 As a newbye I just need a pointer, a hint to the following two subjects: 1) Where can I find a clear explanationt on how to use the many, multilin= gual articles, books, tutorials and documentation coming with a standard 5.4 version (in sgml format). In a nutshell, how can I obtain a "readable" ar= ticle or tutorial starting fron those files? 2) Trying to solve a problem with my touchpad mouse I had to add hw.psm.f= lags=3D"0x100" into /boot/loader.conf. I tried hard googling to find a complete explanat= ion on those commands that I understand prevent from rebuilding kernels with= specific options, but I only met fragmentary stuff not a complete view on= the subject. Have you anything to suggest? Vittorio From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:46:55 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED95C16A486 for ; Tue, 24 May 2005 15:46:54 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D2F843D1F for ; Tue, 24 May 2005 15:46:54 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: by zproxy.gmail.com with SMTP id 9so1106008nzo for ; Tue, 24 May 2005 08:46:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:references; b=KBXTjKsKR9zruqL/O5I0Zs1iGw+3BobtyvACltLNdrLVOGpxNNblPtOmRf3HgmJ3nq8iHrx/uOMDfNSDTrLKy9VjuyXkXmER9IqzwmF0j/YS+y4T1r0JYq3Cw9c8sO7e6eKAlGL9Wm1qLanlkD9XFS5JkBsUXQQCfDEPm0vYkNM= Received: by 10.36.81.14 with SMTP id e14mr1749725nzb; Tue, 24 May 2005 08:46:53 -0700 (PDT) Received: by 10.36.105.6 with HTTP; Tue, 24 May 2005 08:46:53 -0700 (PDT) Message-ID: Date: Tue, 24 May 2005 12:46:53 -0300 From: Franco Bruno Borghesi To: "Jonathan M. Slivko" In-Reply-To: <42934389.9020307@slivko.org> Mime-Version: 1.0 References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> <429341E4.5000108@slivko.org> <42934389.9020307@slivko.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Franco Bruno Borghesi List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:46:55 -0000 Your fstab is OK. I don't exactly understand the problem. When you boot fsck will run=20 automatically if the system did not correctly shut down. This is done=20 *before* disks are mounted rw, so there's no way you will see the "(NO=20 WRITE)" message. If system was not correctly shut down, fsck will run, and it *will* (and=20 should) slow down system boot process. So, is it the problem that fsck is running *every* time you boot? Or is it= =20 that you get this "(NO WRITE)" message when you run it manually? 2005/5/24, Jonathan M. Slivko : >=20 > root@bonjour(~)% cat /etc/fstab > # Device Mountpoint FStype Options Dump > Pass# > /dev/twed0s1b none swap sw 0 0 > /dev/twed0s1a / ufs rw 1 1 > /dev/twed0s1g /home ufs rw,userquota,groupquota > 2 2 > /dev/twed0s1d /tmp ufs rw 2 2 > /dev/twed0s1e /usr ufs rw 2 2 > /dev/twed0s1f /var ufs rw 2 2 > /dev/acd0 /cdrom cd9660 ro,noauto 0 0 > none /proc procfs rw 0 0 > root@bonjour(~)% >=20 >=20 > Franco Bruno Borghesi wrote: > > Could you post your /etc/fstab? > > > > 2005/5/24, Jonathan M. Slivko : > > > >>Yes, this is actually the autoboot fsck thats breaking, the one that is > >>called from /etc/rc (via /etc/rc.d/). I can physically take the box dow= n > >>and do an offline fsck of it and that works fine, it's just when it's i= n > >>multi-user mode thats the problem. > >> > >>-- Jonathan > >> > >>Franco Bruno Borghesi wrote: > >> > >>>For fsck to work (to actually correct any problems you may have), > >>>partitions should be umounted first. Are you sure you have umounted > >>>/dev/twedXXXX before running fsck? > >>> > >>> > >>>2005/5/24, Jonathan M. Slivko >>>>: > >>> > >>>Hello, > >>> > >>>I have an interesting question, I have a Pentium 4 2.4Ghz (No HT > >>>Enabled), > >>>2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. However, > >>>whenever you try and do an fsck -y, it says: > >>> > >>>root@bonjour (~)% fsck -y > >>>** /dev/twed0s1a (NO WRITE) > >>>** Last Mounted on / > >>>** Root file system > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>2821 files, 31805 used, 474682 free (322 frags, 59295 blocks, 0.1% > >>>fragmentation) > >>> > >>>** /dev/twed0s1g (NO WRITE) > >>>** Last Mounted on /home > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>82057 files, 557735 used, 12912399 free (2343 frags, 1613757 blocks, > >>>0.0% > >>>fragmentation) > >>> > >>>** /dev/twed0s1d (NO WRITE) > >>>** Last Mounted on /tmp > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>30 files, 1787 used, 504700 free (20 frags, 63085 blocks, 0.0% > >>>fragmentation) > >>> > >>>** /dev/twed0s1e (NO WRITE) > >>>** Last Mounted on /usr > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>251160 files, 1318908 used, 13912410 free (73346 frags, 1729883 blocks= , > >>>0.5% fragmentation) > >>> > >>>** /dev/twed0s1f (NO WRITE) > >>>** Last Mounted on /var > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>4424 files, 63321 used, 7042830 free (2462 frags, 880046 blocks, 0.0% > >>>fragmentation) > >>> > >>>The drives are Seagate SATA's (7200RPM) with a 3Ware SATA RAID > >>>Controller > >>>(8006-2LP) using the twe kernel driver. The drives themselves allow=20 > data > >>>to be read to/written from them, but fsck will not work (and is hangin= g > >>>things on boot). > >>> > >>>Anyone got any ideas? I looked at www.3ware.com = < > http://www.3ware.com> > >>> earlier and it says that > >>>the 8006-2LP's support FreeBSD 4.x, but not 5.x - could this be a=20 > result > >>>of that, seeing as otherwise the drives/RAID work fine (AFAIK, it coul= d > >>>not be and I'm just not sure how to test it). > >>> > >>>TIA, > >>>-- Jonathan > >>>_______________________________________________ > >>>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 > >>>" > >>> > >>> > >> > >>-- > >>Jonathan M. Slivko - jonathan@slivko.org > >>"Linux: The Choice for the GNU Generation" > >>- http://www.linux.org/ - > >> > >>Don't fear the penguin. > >>.^. > >>/V\ > >>/( )\ > >>^^-^^ > >>He's here to help. > >> > > > > _______________________________________________ > > 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" >=20 > -- > Jonathan M. Slivko - jonathan@slivko.org > "Linux: The Choice for the GNU Generation" > - http://www.linux.org/ - >=20 > Don't fear the penguin. > .^. > /V\ > /( )\ > ^^-^^ > He's here to help. > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:51:27 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 251A716A41C for ; Tue, 24 May 2005 15:51:27 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr5.xs4all.nl (smtp-vbr5.xs4all.nl [194.109.24.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E7DF43D48 for ; Tue, 24 May 2005 15:51:26 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr5.xs4all.nl (8.12.11/8.12.11) with ESMTP id j4OFpPJA056330; Tue, 24 May 2005 17:51:25 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id EEF77617A; Tue, 24 May 2005 17:51:24 +0200 (CEST) Date: Tue, 24 May 2005 17:51:24 +0200 From: Roland Smith To: vdm.fbsd@virgilio.it Message-ID: <20050524155124.GA19377@slackbox.xs4all.nl> Mail-Followup-To: vdm.fbsd@virgilio.it, freebsd-questions@freebsd.org References: <428BB4F80002D437@ims1d.cp.tin.it> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="M9NhX3UHpAaciwkO" Content-Disposition: inline In-Reply-To: <428BB4F80002D437@ims1d.cp.tin.it> User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Articles, Tutorials & hardware setting in loader.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:51:27 -0000 --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 24, 2005 at 05:33:10PM +0200, vdm.fbsd@virgilio.it wrote: > As a newbye I just need a pointer, a hint to the following two subjects: >=20 > 1) Where can I find a clear explanationt on how to use the many, > multilingual articles, books, tutorials and documentation coming with > a standard 5.4 version (in sgml format). In a nutshell, how can I > obtain a "readable" article or tutorial starting fron those files? Normally HTML and plain text formats of the italic translations are installed in /usr/share/doc/it_IT.ISO8859-15/. English docs can be found in /usr/share/doc/en_US.ISO8859-1/. > 2) Trying to solve a problem with my touchpad mouse I had to add > hw.psm.flags=3D"0x100" into /boot/loader.conf.=20 The meaning of the flags for the psm driver is explained in the psm manpage. Execute 'man psm' from the console or xterm. > I tried hard googling to find a complete explanation on those commands > that I understand prevent from rebuilding kernels with specific > options, but I only met fragmentary stuff not a complete view on the > subject. Have you anything to suggest? The so-called sysctl above as nothing to do with recompiling the kernel. It is just one of the many kernel parameters that can be changed without recompiling the kernel. See 'man sysctl'. HTH, Roland --=20 R.F.Smith (http://www.xs4all.nl/~rsmith/) Please send e-mail as plain text. public key: http://www.xs4all.nl/~rsmith/pubkey.txt --M9NhX3UHpAaciwkO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCk018EnfvsMMhpyURAvZRAJ4omqRqBlaxBPwXkq7GAs37Dbr/hACfQN/l Jmn6txW7kCJOoXAfmRHFpQM= =j9zb -----END PGP SIGNATURE----- --M9NhX3UHpAaciwkO-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:51:32 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7263216A42A for ; Tue, 24 May 2005 15:51:32 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from photonix.site5.com (photonix.site5.com [209.59.179.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BD4043D48 for ; Tue, 24 May 2005 15:51:31 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from pool-70-18-16-72.ny325.east.verizon.net ([70.18.16.72] helo=[192.168.1.46]) by photonix.site5.com with esmtpa (Exim 4.50) id 1Dabgq-0008UE-Ht; Tue, 24 May 2005 11:51:32 -0400 Message-ID: <42934D79.8070407@slivko.org> Date: Tue, 24 May 2005 11:51:21 -0400 From: "Jonathan M. Slivko" User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Franco Bruno Borghesi References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> <429341E4.5000108@slivko.org> <42934389.9020307@slivko.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: This message has been scanned by ClamAV - CLEAN. X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - photonix.site5.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - slivko.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:51:32 -0000 Whether I run fsck manually or if I run it automagically at boot via rc (which happens every reboot), it fails. As I'm not at console, I can't tell whether the same things happen if the box is physically taken down. and fsck'd in single user mode. The better part of the question is, could this be the RAID card throwing out false errors due to not having complete support for 5.3-R?, as it says that it only supports the 4.x series. -- Jonathan Franco Bruno Borghesi wrote: > Your fstab is OK. > > I don't exactly understand the problem. When you boot fsck will run > automatically if the system did not correctly shut down. This is done > *before* disks are mounted rw, so there's no way you will see the "(NO > WRITE)" message. > > If system was not correctly shut down, fsck will run, and it *will* (and > should) slow down system boot process. > > So, is it the problem that fsck is running *every* time you boot? Or is > it that you get this "(NO WRITE)" message when you run it manually? > > > 2005/5/24, Jonathan M. Slivko >: > > root@bonjour(~)% cat /etc/fstab > # Device Mountpoint FStype Options Dump > Pass# > /dev/twed0s1b > none swap sw 0 0 > /dev/twed0s1a / ufs > rw 1 1 > /dev/twed0s1g /home ufs rw,userquota,groupquota > 2 2 > /dev/twed0s1d /tmp ufs > rw 2 2 > /dev/twed0s1e /usr ufs > rw 2 2 > /dev/twed0s1f /var ufs > rw 2 2 > /dev/acd0 /cdrom cd9660 ro,noauto > 0 0 > none /proc > procfs rw 0 0 > root@bonjour(~)% > > > Franco Bruno Borghesi wrote: > > Could you post your /etc/fstab? > > > > 2005/5/24, Jonathan M. Slivko >: > > > >>Yes, this is actually the autoboot fsck thats breaking, the one > that is > >>called from /etc/rc (via /etc/rc.d/). I can physically take the > box down > >>and do an offline fsck of it and that works fine, it's just when > it's in > >>multi-user mode thats the problem. > >> > >>-- Jonathan > >> > >>Franco Bruno Borghesi wrote: > >> > >>>For fsck to work (to actually correct any problems you may have), > >>>partitions should be umounted first. Are you sure you have umounted > >>>/dev/twedXXXX before running fsck? > >>> > >>> > >>>2005/5/24, Jonathan M. Slivko < freebsd-lists@slivko.org > > >>> >>: > >>> > >>>Hello, > >>> > >>>I have an interesting question, I have a Pentium 4 2.4Ghz (No HT > >>>Enabled), > >>>2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. > However, > >>>whenever you try and do an fsck -y, it says: > >>> > >>>root@bonjour (~)% fsck -y > >>>** /dev/twed0s1a (NO WRITE) > >>>** Last Mounted on / > >>>** Root file system > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>2821 files, 31805 used, 474682 free (322 frags, 59295 blocks, 0.1% > >>>fragmentation) > >>> > >>>** /dev/twed0s1g (NO WRITE) > >>>** Last Mounted on /home > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>82057 files, 557735 used, 12912399 free (2343 frags, 1613757 > blocks, > >>>0.0% > >>>fragmentation) > >>> > >>>** /dev/twed0s1d (NO WRITE) > >>>** Last Mounted on /tmp > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>30 files, 1787 used, 504700 free (20 frags, 63085 blocks, 0.0% > >>>fragmentation) > >>> > >>>** /dev/twed0s1e (NO WRITE) > >>>** Last Mounted on /usr > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>251160 files, 1318908 used, 13912410 free (73346 frags, 1729883 > blocks, > >>>0.5% fragmentation) > >>> > >>>** /dev/twed0s1f (NO WRITE) > >>>** Last Mounted on /var > >>>** Phase 1 - Check Blocks and Sizes > >>>** Phase 2 - Check Pathnames > >>>** Phase 3 - Check Connectivity > >>>** Phase 4 - Check Reference Counts > >>>** Phase 5 - Check Cyl groups > >>>4424 files, 63321 used, 7042830 free (2462 frags, 880046 blocks, > 0.0% > >>>fragmentation) > >>> > >>>The drives are Seagate SATA's (7200RPM) with a 3Ware SATA RAID > >>>Controller > >>>(8006-2LP) using the twe kernel driver. The drives themselves > allow data > >>>to be read to/written from them, but fsck will not work (and is > hanging > >>>things on boot). > >>> > >>>Anyone got any ideas? I looked at www.3ware.com > > >>> earlier and it says that > >>>the 8006-2LP's support FreeBSD 4.x , but not 5.x - could this be > a result > >>>of that, seeing as otherwise the drives/RAID work fine (AFAIK, > it could > >>>not be and I'm just not sure how to test it). > >>> > >>>TIA, > >>>-- Jonathan > >>>_______________________________________________ > >>>freebsd-questions@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 > > >>> >" > >>> > >>> > >> > >>-- > >>Jonathan M. Slivko - jonathan@slivko.org > >>"Linux: The Choice for the GNU Generation" > >>- http://www.linux.org/ - > >> > >>Don't fear the penguin. > >>.^. > >>/V\ > >>/( )\ > >>^^-^^ > >>He's here to help. > >> > > > > _______________________________________________ > > 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 > " > > -- > Jonathan M. Slivko - jonathan@slivko.org > "Linux: The Choice for the GNU Generation" > - http://www.linux.org/ - > > Don't fear the penguin. > .^. > /V\ > /( )\ > ^^-^^ > He's here to help. > > -- Jonathan M. Slivko - jonathan@slivko.org "Linux: The Choice for the GNU Generation" - http://www.linux.org/ - Don't fear the penguin. .^. /V\ /( )\ ^^-^^ He's here to help. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:52:41 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73BB316A41C for ; Tue, 24 May 2005 15:52:41 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from photonix.site5.com (photonix.site5.com [209.59.179.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF2C743D4C for ; Tue, 24 May 2005 15:52:40 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from pool-70-18-16-72.ny325.east.verizon.net ([70.18.16.72] helo=[192.168.1.46]) by photonix.site5.com with esmtpa (Exim 4.50) id 1Dabhw-0002Mv-GZ; Tue, 24 May 2005 11:52:40 -0400 Message-ID: <42934DBF.3050102@slivko.org> Date: Tue, 24 May 2005 11:52:31 -0400 From: "Jonathan M. Slivko" User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Franco Bruno Borghesi References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> <429341E4.5000108@slivko.org> <42934389.9020307@slivko.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: This message has been scanned by ClamAV - CLEAN. X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - photonix.site5.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - slivko.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:52:41 -0000 You can see the file that my box is choking on in /etc/rc.d/fsck. -- Jonathan Franco Bruno Borghesi wrote: > Your fstab is OK. > > I don't exactly understand the problem. When you boot fsck will run > automatically if the system did not correctly shut down. This is done > *before* disks are mounted rw, so there's no way you will see the "(NO > WRITE)" message. > > If system was not correctly shut down, fsck will run, and it *will* (and > should) slow down system boot process. > > So, is it the problem that fsck is running *every* time you boot? Or is it > that you get this "(NO WRITE)" message when you run it manually? > > > 2005/5/24, Jonathan M. Slivko : > >>root@bonjour(~)% cat /etc/fstab >># Device Mountpoint FStype Options Dump >>Pass# >>/dev/twed0s1b none swap sw 0 0 >>/dev/twed0s1a / ufs rw 1 1 >>/dev/twed0s1g /home ufs rw,userquota,groupquota >>2 2 >>/dev/twed0s1d /tmp ufs rw 2 2 >>/dev/twed0s1e /usr ufs rw 2 2 >>/dev/twed0s1f /var ufs rw 2 2 >>/dev/acd0 /cdrom cd9660 ro,noauto 0 0 >>none /proc procfs rw 0 0 >>root@bonjour(~)% >> >> >>Franco Bruno Borghesi wrote: >> >>>Could you post your /etc/fstab? >>> >>>2005/5/24, Jonathan M. Slivko : >>> >>> >>>>Yes, this is actually the autoboot fsck thats breaking, the one that is >>>>called from /etc/rc (via /etc/rc.d/). I can physically take the box down >>>>and do an offline fsck of it and that works fine, it's just when it's in >>>>multi-user mode thats the problem. >>>> >>>>-- Jonathan >>>> >>>>Franco Bruno Borghesi wrote: >>>> >>>> >>>>>For fsck to work (to actually correct any problems you may have), >>>>>partitions should be umounted first. Are you sure you have umounted >>>>>/dev/twedXXXX before running fsck? >>>>> >>>>> >>>>>2005/5/24, Jonathan M. Slivko >>>>>: >>>>> >>>>>Hello, >>>>> >>>>>I have an interesting question, I have a Pentium 4 2.4Ghz (No HT >>>>>Enabled), >>>>>2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. However, >>>>>whenever you try and do an fsck -y, it says: >>>>> >>>>>root@bonjour (~)% fsck -y >>>>>** /dev/twed0s1a (NO WRITE) >>>>>** Last Mounted on / >>>>>** Root file system >>>>>** Phase 1 - Check Blocks and Sizes >>>>>** Phase 2 - Check Pathnames >>>>>** Phase 3 - Check Connectivity >>>>>** Phase 4 - Check Reference Counts >>>>>** Phase 5 - Check Cyl groups >>>>>2821 files, 31805 used, 474682 free (322 frags, 59295 blocks, 0.1% >>>>>fragmentation) >>>>> >>>>>** /dev/twed0s1g (NO WRITE) >>>>>** Last Mounted on /home >>>>>** Phase 1 - Check Blocks and Sizes >>>>>** Phase 2 - Check Pathnames >>>>>** Phase 3 - Check Connectivity >>>>>** Phase 4 - Check Reference Counts >>>>>** Phase 5 - Check Cyl groups >>>>>82057 files, 557735 used, 12912399 free (2343 frags, 1613757 blocks, >>>>>0.0% >>>>>fragmentation) >>>>> >>>>>** /dev/twed0s1d (NO WRITE) >>>>>** Last Mounted on /tmp >>>>>** Phase 1 - Check Blocks and Sizes >>>>>** Phase 2 - Check Pathnames >>>>>** Phase 3 - Check Connectivity >>>>>** Phase 4 - Check Reference Counts >>>>>** Phase 5 - Check Cyl groups >>>>>30 files, 1787 used, 504700 free (20 frags, 63085 blocks, 0.0% >>>>>fragmentation) >>>>> >>>>>** /dev/twed0s1e (NO WRITE) >>>>>** Last Mounted on /usr >>>>>** Phase 1 - Check Blocks and Sizes >>>>>** Phase 2 - Check Pathnames >>>>>** Phase 3 - Check Connectivity >>>>>** Phase 4 - Check Reference Counts >>>>>** Phase 5 - Check Cyl groups >>>>>251160 files, 1318908 used, 13912410 free (73346 frags, 1729883 blocks, >>>>>0.5% fragmentation) >>>>> >>>>>** /dev/twed0s1f (NO WRITE) >>>>>** Last Mounted on /var >>>>>** Phase 1 - Check Blocks and Sizes >>>>>** Phase 2 - Check Pathnames >>>>>** Phase 3 - Check Connectivity >>>>>** Phase 4 - Check Reference Counts >>>>>** Phase 5 - Check Cyl groups >>>>>4424 files, 63321 used, 7042830 free (2462 frags, 880046 blocks, 0.0% >>>>>fragmentation) >>>>> >>>>>The drives are Seagate SATA's (7200RPM) with a 3Ware SATA RAID >>>>>Controller >>>>>(8006-2LP) using the twe kernel driver. The drives themselves allow >> >>data >> >>>>>to be read to/written from them, but fsck will not work (and is hanging >>>>>things on boot). >>>>> >>>>>Anyone got any ideas? I looked at www.3ware.com < >> >>http://www.3ware.com> >> >>>>> earlier and it says that >>>>>the 8006-2LP's support FreeBSD 4.x, but not 5.x - could this be a >> >>result >> >>>>>of that, seeing as otherwise the drives/RAID work fine (AFAIK, it could >>>>>not be and I'm just not sure how to test it). >>>>> >>>>>TIA, >>>>>-- Jonathan >>>>>_______________________________________________ >>>>>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 >>>>>" >>>>> >>>>> >>>> >>>>-- >>>>Jonathan M. Slivko - jonathan@slivko.org >>>>"Linux: The Choice for the GNU Generation" >>>>- http://www.linux.org/ - >>>> >>>>Don't fear the penguin. >>>>.^. >>>>/V\ >>>>/( )\ >>>>^^-^^ >>>>He's here to help. >>>> >>> >>>_______________________________________________ >>>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" >> >>-- >>Jonathan M. Slivko - jonathan@slivko.org >>"Linux: The Choice for the GNU Generation" >>- http://www.linux.org/ - >> >>Don't fear the penguin. >>.^. >>/V\ >>/( )\ >>^^-^^ >>He's here to help. >> > > _______________________________________________ > 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" -- Jonathan M. Slivko - jonathan@slivko.org "Linux: The Choice for the GNU Generation" - http://www.linux.org/ - Don't fear the penguin. .^. /V\ /( )\ ^^-^^ He's here to help. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:53:51 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D05916A41C for ; Tue, 24 May 2005 15:53:51 +0000 (GMT) (envelope-from kirk@strauser.com) Received: from kanga.honeypot.net (kanga.honeypot.net [208.162.254.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C10843D49 for ; Tue, 24 May 2005 15:53:50 +0000 (GMT) (envelope-from kirk@strauser.com) Received: from localhost (localhost [127.0.0.1]) by kanga.honeypot.net (Postfix) with ESMTP id 63E18222402 for ; Tue, 24 May 2005 10:53:49 -0500 (CDT) Received: from kanga.honeypot.net ([127.0.0.1]) by localhost (kanga.honeypot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 75420-12 for ; Tue, 24 May 2005 10:53:46 -0500 (CDT) Received: from janus.daycos.com (janus.daycos.com [204.26.70.77]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by kanga.honeypot.net (Postfix) with ESMTP id 6EDD5222401 for ; Tue, 24 May 2005 10:53:46 -0500 (CDT) From: Kirk Strauser To: freebsd-questions@freebsd.org Date: Tue, 24 May 2005 10:53:29 -0500 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2136748.vReAhr5N5d"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200505241053.36377.kirk@strauser.com> X-Virus-Scanned: amavisd-new at honeypot.net Subject: Top only showing one active CPU on HTT system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:53:51 -0000 --nextPart2136748.vReAhr5N5d Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline I'm running a 5.4-STABLE system (updated as of May 16). My kernel is=20 basically GENERIC with a few small tweaks, like commenting out extraneous=20 "cpu" lines and adding "options SMP". My problem is that although dmesg shows every sign of having launched both= =20 logical CPUs: $ dmesg | grep -i cpu CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2392.05-MHz 686-class CPU) Hyperthreading: 2 logical CPUs =46reeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 cpu0: on acpi0 cpu1: on acpi0 SMP: AP CPU #1 Launched! =2E.. running "top" only shows "0" in the CPU column for every task. I don= 't=20 see anything out of place in sysctl: $ sysctl -a | grep -i hlt machdep.cpu_idle_hlt: 1 machdep.hlt_cpus: 2 machdep.hlt_logical_cpus: 0 and /boot/loader.conf is all but empty. Honestly, I don't really know how= =20 long this has been going on. top used to show both 0 and 1 in the C column= =20 and I'm not exactly sure when it stopped. Any ideas? =2D-=20 Kirk Strauser --nextPart2136748.vReAhr5N5d Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- iD8DBQBCk04A5sRg+Y0CpvERAvpuAJ9ql1V9ERG5v/9c00ZGXKgVxydamwCghQwM 7QW6tch2kWs9ELv/Jb1BsP4= =A3J3 -----END PGP SIGNATURE----- --nextPart2136748.vReAhr5N5d-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:58:31 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B17F216A424 for ; Tue, 24 May 2005 15:58:31 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C7AB43D53 for ; Tue, 24 May 2005 15:58:31 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A5C5751449; Tue, 24 May 2005 08:59:18 -0700 (PDT) Date: Tue, 24 May 2005 08:59:18 -0700 From: Kris Kennaway To: Kirk Strauser Message-ID: <20050524155918.GA46299@xor.obsecurity.org> References: <200505241053.36377.kirk@strauser.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline In-Reply-To: <200505241053.36377.kirk@strauser.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: Top only showing one active CPU on HTT system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:58:31 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 24, 2005 at 10:53:29AM -0500, Kirk Strauser wrote: > I'm running a 5.4-STABLE system (updated as of May 16). My kernel is=20 > basically GENERIC with a few small tweaks, like commenting out extraneous= =20 > "cpu" lines and adding "options SMP". >=20 > My problem is that although dmesg shows every sign of having launched bot= h=20 > logical CPUs: >=20 > $ dmesg | grep -i cpu > CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2392.05-MHz 686-class CPU) > Hyperthreading: 2 logical CPUs > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs > cpu0 (BSP): APIC ID: 0 > cpu1 (AP): APIC ID: 1 > cpu0: on acpi0 > cpu1: on acpi0 > SMP: AP CPU #1 Launched! >=20 > ... running "top" only shows "0" in the CPU column for every task. I don= 't=20 > see anything out of place in sysctl: >=20 > $ sysctl -a | grep -i hlt > machdep.cpu_idle_hlt: 1 > machdep.hlt_cpus: 2 > machdep.hlt_logical_cpus: 0 >=20 > and /boot/loader.conf is all but empty. Honestly, I don't really know ho= w=20 > long this has been going on. top used to show both 0 and 1 in the C colu= mn=20 > and I'm not exactly sure when it stopped. Any ideas? Read the security advisories issued for FreeBSD. Kris --h31gzZEtNLTqOjlF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCk09WWry0BWjoQKURAjkqAJ0YbXPBspeQAdUrwV9+AVlV3YGoMwCg8XOQ mrtts7Lb/W8WMowDD3BuLCE= =FmQi -----END PGP SIGNATURE----- --h31gzZEtNLTqOjlF-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:58:34 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDD6D16A421 for ; Tue, 24 May 2005 15:58:34 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from photonix.site5.com (photonix.site5.com [209.59.179.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D09643D49 for ; Tue, 24 May 2005 15:58:34 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from pool-70-18-16-72.ny325.east.verizon.net ([70.18.16.72] helo=[192.168.1.46]) by photonix.site5.com with esmtpa (Exim 4.50) id 1Dabne-0007LL-FC; Tue, 24 May 2005 11:58:34 -0400 Message-ID: <42934F21.7040606@slivko.org> Date: Tue, 24 May 2005 11:58:25 -0400 From: "Jonathan M. Slivko" User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kirk Strauser References: <200505241053.36377.kirk@strauser.com> In-Reply-To: <200505241053.36377.kirk@strauser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: This message has been scanned by ClamAV - CLEAN. X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - photonix.site5.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - slivko.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-questions@freebsd.org Subject: Re: Top only showing one active CPU on HTT system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:58:34 -0000 Actually, I have a similar issue on a Pentium 4 box that's supposedly HT: CPU: Intel(R) Pentium(R) 4 CPU 2.40GHz (2410.53-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf41 Stepping = 1 Features=0xbfebfbff By the fact that HTT is there in the features, I'm assuming that HT support is actually present. Though when I compile my kernel with SMP support, it doesn't show up. I've had the box checked in the BIOS for HT settings, but apparently there are none. Any ideas? Kirk Strauser wrote: > I'm running a 5.4-STABLE system (updated as of May 16). My kernel is > basically GENERIC with a few small tweaks, like commenting out extraneous > "cpu" lines and adding "options SMP". > > My problem is that although dmesg shows every sign of having launched both > logical CPUs: > > $ dmesg | grep -i cpu > CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2392.05-MHz 686-class CPU) > Hyperthreading: 2 logical CPUs > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs > cpu0 (BSP): APIC ID: 0 > cpu1 (AP): APIC ID: 1 > cpu0: on acpi0 > cpu1: on acpi0 > SMP: AP CPU #1 Launched! > > ... running "top" only shows "0" in the CPU column for every task. I don't > see anything out of place in sysctl: > > $ sysctl -a | grep -i hlt > machdep.cpu_idle_hlt: 1 > machdep.hlt_cpus: 2 > machdep.hlt_logical_cpus: 0 > > and /boot/loader.conf is all but empty. Honestly, I don't really know how > long this has been going on. top used to show both 0 and 1 in the C column > and I'm not exactly sure when it stopped. Any ideas? -- Jonathan M. Slivko - jonathan@slivko.org "Linux: The Choice for the GNU Generation" - http://www.linux.org/ - Don't fear the penguin. .^. /V\ /( )\ ^^-^^ He's here to help. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 15:59:54 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3419716A41C for ; Tue, 24 May 2005 15:59:54 +0000 (GMT) (envelope-from kellers@NJIT.EDU) Received: from mail-gw5.njit.edu (mail-gw5.njit.edu [128.235.251.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCE6943D48 for ; Tue, 24 May 2005 15:59:53 +0000 (GMT) (envelope-from kellers@NJIT.EDU) Received: from admcluster.njit.edu (admactive.njit.edu [128.235.184.198]) by mail-gw5.njit.edu (8.12.10/8.12.4) with ESMTP id j4OFxkbM020203; Tue, 24 May 2005 11:59:49 -0400 (EDT) Received: from dhcp114-129.njit.edu ([128.235.114.129]) by admcluster.njit.edu over TLS secured channel with Microsoft SMTPSVC(5.0.2195.5329); Tue, 24 May 2005 11:59:32 -0400 From: Tim Kellers Organization: CPE at NJIT To: freebsd-questions@freebsd.org Date: Tue, 24 May 2005 11:59:23 -0400 User-Agent: KMail/1.8 References: <200505241053.36377.kirk@strauser.com> In-Reply-To: <200505241053.36377.kirk@strauser.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200505241159.24346.kellers@njit.edu> X-OriginalArrivalTime: 24 May 2005 15:59:32.0210 (UTC) FILETIME=[92EAD520:01C56079] Cc: Subject: Re: Top only showing one active CPU on HTT system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 15:59:54 -0000 On Tuesday 24 May 2005 11:53 am, Kirk Strauser wrote: > I'm running a 5.4-STABLE system (updated as of May 16). My kernel is > basically GENERIC with a few small tweaks, like commenting out extraneous > "cpu" lines and adding "options SMP". > > My problem is that although dmesg shows every sign of having launched both > logical CPUs: > > $ dmesg | grep -i cpu > CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2392.05-MHz 686-class CPU) > Hyperthreading: 2 logical CPUs > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs > cpu0 (BSP): APIC ID: 0 > cpu1 (AP): APIC ID: 1 > cpu0: on acpi0 > cpu1: on acpi0 > SMP: AP CPU #1 Launched! > > ... running "top" only shows "0" in the CPU column for every task. I don= 't > see anything out of place in sysctl: > > $ sysctl -a | grep -i hlt > machdep.cpu_idle_hlt: 1 > machdep.hlt_cpus: 2 > machdep.hlt_logical_cpus: 0 > > and /boot/loader.conf is all but empty. Honestly, I don't really know how > long this has been going on. top used to show both 0 and 1 in the C colu= mn > and I'm not exactly sure when it stopped. Any ideas? =46rom my /boot/loader.conf: acpi_load=3D"YES" loader_color=3D"yes" PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND 587 root 96 0 177M 44500K CPU0 0 630:12 10.94% 10.94% Xorg 41019 service 106 10 4680K 2632K RUN 0 0:01 0.05% 0.05% stonerv= iew uname -a =46reeBSD gilgamesh.maestro 5.4-STABLE FreeBSD 5.4-STABLE #3: Wed May 11=20 10:38:27 EDT 2005 =20 service@gilgamesh.maestro:/usr/obj/usr/src/sys/GILGAMESH i386 The acpi_load=3D"YES" in /boot/loader.conf might do the trick. Tim Kellers CPE/NJIT From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:05:59 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 381C816A44D for ; Tue, 24 May 2005 16:05:59 +0000 (GMT) (envelope-from nalists@scls.lib.wi.us) Received: from mail.scls.lib.wi.us (mail.scls.lib.wi.us [198.150.40.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1BDB43D54 for ; Tue, 24 May 2005 16:05:58 +0000 (GMT) (envelope-from nalists@scls.lib.wi.us) Received: from [172.26.2.238] ([172.26.2.238]) by mail.scls.lib.wi.us (8.12.9p2/8.12.9) with ESMTP id j4OG5vXm005388; Tue, 24 May 2005 11:05:57 -0500 (CDT) (envelope-from nalists@scls.lib.wi.us) Message-ID: <4293506F.5040303@scls.lib.wi.us> Date: Tue, 24 May 2005 11:03:59 -0500 From: Greg Barniskis User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: vdm.fbsd@virgilio.it References: <428BB4F80002D437@ims1d.cp.tin.it> In-Reply-To: <428BB4F80002D437@ims1d.cp.tin.it> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Articles, Tutorials & hardware setting in loader.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:05:59 -0000 vdm.fbsd@virgilio.it wrote: > As a newbye I just need a pointer, a hint to the following two subjects: > > 1) Where can I find a clear explanationt on how to use the many, multilingual > articles, books, tutorials and documentation coming with a standard 5.4 > version (in sgml format). In a nutshell, how can I obtain a "readable" article > or tutorial starting fron those files? Short answer: the handbooks, articles, and other things are generally found on http://www.freebsd.org/ (and its mirrors) in HTML for your ready access. The site search feature isn't ideal IMHO, but judicious use of it can turn up the article(s) you need in the language you prefer. Lots of pre-generated HTML is also in /usr/share/doc/en, though it may fall out of date compared to the web site. Long answer (if you really have your heart set on generating documents from the raw SGML): Read all about the Documentation Project and its Primer. http://www.freebsd.org/docproj/ http://www.freebsd.org/docproj/sgml.html http://www.freebsd.org/doc/en_US.ISO8859-1/books/fdp-primer/index.html (Also in /usr/share/doc/en/fdp-primer on your local system) Install ports/textproc/docproj > 2) Trying to solve a problem with my touchpad mouse I had to add hw.psm.flags="0x100" > into /boot/loader.conf. I tried hard googling to find a complete explanation > on those commands that I understand prevent from rebuilding kernels with > specific options, but I only met fragmentary stuff not a complete view on > the subject. Have you anything to suggest? Sorry, not my field. For best results, it is recommended that you not ask two unrelated questions in one post. If no one jumps on this one, try again. -- Greg Barniskis, Computer Systems Integrator South Central Library System (SCLS) Library Interchange Network (LINK) , (608) 266-6348 From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:11:26 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1784016A41C for ; Tue, 24 May 2005 16:11:26 +0000 (GMT) (envelope-from bloodyveins@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4F7243D55 for ; Tue, 24 May 2005 16:11:25 +0000 (GMT) (envelope-from bloodyveins@gmail.com) Received: by zproxy.gmail.com with SMTP id 12so2208492nzp for ; Tue, 24 May 2005 09:11:25 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=B4ep6cVGFQnzPi8ANcCtpZqBlDrb+Pcl2znVt8e2oIuH8+9VbF4aMtMT93ks6CQdwDBvNJLYRw35VP9rMz6nvwwvxZET5f8Q/cG9nqNA9TyuDGpWLu4WjRI4EeUy7pThuRGqeNXVuLIvMsb1ilSuHPMMcEhEtpRt3q8ty34HdWw= Received: by 10.36.19.19 with SMTP id 19mr671032nzs; Tue, 24 May 2005 09:11:25 -0700 (PDT) Received: by 10.36.66.5 with HTTP; Tue, 24 May 2005 09:11:25 -0700 (PDT) Message-ID: <58ebaa710505240911227dcfd4@mail.gmail.com> Date: Tue, 24 May 2005 23:11:25 +0700 From: Mike Fern To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: /usr backup/remove issue X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mike Fern List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:11:26 -0000 hi all, i have freebsd 5.1 running with 4 x 200GB ATA HD. let's say i have /usr installed in hd1. i want to move /usr to a larger partition in hd4. how can i do that? here is my scenario. i backed up all /usr data to /usr1 in hd4. then i checked the location of ln and mkdir to make sure that they are not located in /usr. after that, i deleted or files in /usr "rm -Rf /usr" and planned to create symbolic link from /usr1 to /usr. anyway, lately i realized this is really stupid idea. after rebooting, i couldn't log in to terminal. even logged in as single user didn't help. (i tried mount the partition, but was nothing to avail). anybody can shed a light? thanks before. Mike From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:18:11 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F25CF16A41C for ; Tue, 24 May 2005 16:18:10 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0128B43D48 for ; Tue, 24 May 2005 16:18:09 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: by zproxy.gmail.com with SMTP id 16so1191226nzp for ; Tue, 24 May 2005 09:18:08 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:references; b=UP7kWPAfVwXr48pDagdBKE6gBKBIeQYTBzEEVB9tiBZMMEdApam+jh2F/rNDN2/vWYAAWZ056Y5VbMV8Bd4kfRJXdzhzFpl6D/r3Cv4hKxtF5Rz+EwyXgOOqmOPnI5T6ZgcQbpNbjOrS/I9cGHGL7GAXRTmkn4k0oWo/ya8FbT0= Received: by 10.36.34.1 with SMTP id h1mr1768919nzh; Tue, 24 May 2005 09:18:08 -0700 (PDT) Received: by 10.36.105.6 with HTTP; Tue, 24 May 2005 09:18:08 -0700 (PDT) Message-ID: Date: Tue, 24 May 2005 13:18:08 -0300 From: Franco Bruno Borghesi To: "Jonathan M. Slivko" In-Reply-To: <42934D79.8070407@slivko.org> Mime-Version: 1.0 References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> <429341E4.5000108@slivko.org> <42934389.9020307@slivko.org> <42934D79.8070407@slivko.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Franco Bruno Borghesi List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:18:11 -0000 If it fails it's because there are certain inconsistencies that need user= =20 confirmation before they are corrected. You can add=20 fsck_y_enable=3D"YES"=20 to your /etc/rc.conf so if default fsck fails, fsck -y is run. Check the=20 fsck man page before doing so. Anyway, I don't understand why fsck is run on every reboot. If you just try= =20 a "reboot" or a "shutdown -r now" command in your console, will fsck run=20 next time the system boots? It should'n happen. I don't understand why your= =20 file systems get uncleanly umounted. About freebsd 5.3, I've been using 3ware 7500-4LP (in raid 5) for the last = 3=20 months, and I have not had such (nor any other) problems with twe driver. Hope it helps. 2005/5/24, Jonathan M. Slivko : >=20 > Whether I run fsck manually or if I run it automagically at boot via rc > (which happens every reboot), it fails. As I'm not at console, I can't > tell whether the same things happen if the box is physically taken down. > and fsck'd in single user mode. The better part of the question is, > could this be the RAID card throwing out false errors due to not having > complete support for 5.3-R?, as it says that it only supports the 4.x > series. >=20 > -- Jonathan >=20 > Franco Bruno Borghesi wrote: > > Your fstab is OK. > > > > I don't exactly understand the problem. When you boot fsck will run > > automatically if the system did not correctly shut down. This is done > > *before* disks are mounted rw, so there's no way you will see the "(NO > > WRITE)" message. > > > > If system was not correctly shut down, fsck will run, and it *will* (an= d > > should) slow down system boot process. > > > > So, is it the problem that fsck is running *every* time you boot? Or is > > it that you get this "(NO WRITE)" message when you run it manually? > > > > > > 2005/5/24, Jonathan M. Slivko > >: > > > > root@bonjour(~)% cat /etc/fstab > > # Device Mountpoint FStype Options Dump > > Pass# > > /dev/twed0s1b > > none swap sw 0 0 > > /dev/twed0s1a / ufs > > rw 1 1 > > /dev/twed0s1g /home ufs rw,userquota,groupquota > > 2 2 > > /dev/twed0s1d /tmp ufs > > rw 2 2 > > /dev/twed0s1e /usr ufs > > rw 2 2 > > /dev/twed0s1f /var ufs > > rw 2 2 > > /dev/acd0 /cdrom cd9660 ro,noauto > > 0 0 > > none /proc > > procfs rw 0 0 > > root@bonjour(~)% > > > > > > Franco Bruno Borghesi wrote: > > > Could you post your /etc/fstab? > > > > > > 2005/5/24, Jonathan M. Slivko > >: > > > > > >>Yes, this is actually the autoboot fsck thats breaking, the one > > that is > > >>called from /etc/rc (via /etc/rc.d/). I can physically take the > > box down > > >>and do an offline fsck of it and that works fine, it's just when > > it's in > > >>multi-user mode thats the problem. > > >> > > >>-- Jonathan > > >> > > >>Franco Bruno Borghesi wrote: > > >> > > >>>For fsck to work (to actually correct any problems you may have), > > >>>partitions should be umounted first. Are you sure you have umounted > > >>>/dev/twedXXXX before running fsck? > > >>> > > >>> > > >>>2005/5/24, Jonathan M. Slivko < freebsd-lists@slivko.org > > > > >>> > >>: > > >>> > > >>>Hello, > > >>> > > >>>I have an interesting question, I have a Pentium 4 2.4Ghz (No HT > > >>>Enabled), > > >>>2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. > > However, > > >>>whenever you try and do an fsck -y, it says: > > >>> > > >>>root@bonjour (~)% fsck -y > > >>>** /dev/twed0s1a (NO WRITE) > > >>>** Last Mounted on / > > >>>** Root file system > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>2821 files, 31805 used, 474682 free (322 frags, 59295 blocks, 0.1% > > >>>fragmentation) > > >>> > > >>>** /dev/twed0s1g (NO WRITE) > > >>>** Last Mounted on /home > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>82057 files, 557735 used, 12912399 free (2343 frags, 1613757 > > blocks, > > >>>0.0% > > >>>fragmentation) > > >>> > > >>>** /dev/twed0s1d (NO WRITE) > > >>>** Last Mounted on /tmp > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>30 files, 1787 used, 504700 free (20 frags, 63085 blocks, 0.0% > > >>>fragmentation) > > >>> > > >>>** /dev/twed0s1e (NO WRITE) > > >>>** Last Mounted on /usr > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>251160 files, 1318908 used, 13912410 free (73346 frags, 1729883 > > blocks, > > >>>0.5% fragmentation) > > >>> > > >>>** /dev/twed0s1f (NO WRITE) > > >>>** Last Mounted on /var > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>4424 files, 63321 used, 7042830 free (2462 frags, 880046 blocks, > > 0.0% > > >>>fragmentation) > > >>> > > >>>The drives are Seagate SATA's (7200RPM) with a 3Ware SATA RAID > > >>>Controller > > >>>(8006-2LP) using the twe kernel driver. The drives themselves > > allow data > > >>>to be read to/written from them, but fsck will not work (and is > > hanging > > >>>things on boot). > > >>> > > >>>Anyone got any ideas? I looked at www.3ware.com > > > > >>> earlier and it says that > > >>>the 8006-2LP's support FreeBSD 4.x , but not 5.x - could this be > > a result > > >>>of that, seeing as otherwise the drives/RAID work fine (AFAIK, > > it could > > >>>not be and I'm just not sure how to test it). > > >>> > > >>>TIA, > > >>>-- Jonathan > > >>>_______________________________________________ > > >>>freebsd-questions@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 > > > > >>> > >" > > >>> > > >>> > > >> > > >>-- > > >>Jonathan M. Slivko - jonathan@slivko.org > > >>"Linux: The Choice for the GNU Generation" > > >>- http://www.linux.org/ - > > >> > > >>Don't fear the penguin. > > >>.^. > > >>/V\ > > >>/( )\ > > >>^^-^^ > > >>He's here to help. > > >> > > > > > > _______________________________________________ > > > 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 > > " > > > > -- > > Jonathan M. Slivko - jonathan@slivko.org > > "Linux: The Choice for the GNU Generation" > > - http://www.linux.org/ - > > > > Don't fear the penguin. > > .^. > > /V\ > > /( )\ > > ^^-^^ > > He's here to help. > > > > >=20 > -- > Jonathan M. Slivko - jonathan@slivko.org > "Linux: The Choice for the GNU Generation" > - http://www.linux.org/ - >=20 > Don't fear the penguin. > .^. > /V\ > /( )\ > ^^-^^ > He's here to help. > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:21:18 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D4DF16A41C for ; Tue, 24 May 2005 16:21:18 +0000 (GMT) (envelope-from kirk@strauser.com) Received: from kanga.honeypot.net (kanga.honeypot.net [208.162.254.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0075E43D4C for ; Tue, 24 May 2005 16:21:17 +0000 (GMT) (envelope-from kirk@strauser.com) Received: from localhost (localhost [127.0.0.1]) by kanga.honeypot.net (Postfix) with ESMTP id 21883222402 for ; Tue, 24 May 2005 11:21:14 -0500 (CDT) Received: from kanga.honeypot.net ([127.0.0.1]) by localhost (kanga.honeypot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 75420-20 for ; Tue, 24 May 2005 11:21:11 -0500 (CDT) Received: from janus.daycos.com (janus.daycos.com [204.26.70.77]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by kanga.honeypot.net (Postfix) with ESMTP id 7B6B0222400 for ; Tue, 24 May 2005 11:21:11 -0500 (CDT) From: Kirk Strauser To: freebsd-questions@freebsd.org Date: Tue, 24 May 2005 11:21:01 -0500 User-Agent: KMail/1.8 References: <200505241053.36377.kirk@strauser.com> <20050524155918.GA46299@xor.obsecurity.org> In-Reply-To: <20050524155918.GA46299@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3494105.ujmDKRqdvb"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200505241121.01566.kirk@strauser.com> X-Virus-Scanned: amavisd-new at honeypot.net Subject: Re: Top only showing one active CPU on HTT system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:21:18 -0000 --nextPart3494105.ujmDKRqdvb Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Tuesday 24 May 2005 10:59, Kris Kennaway wrote: > Read the security advisories issued for FreeBSD. I thought that I had. I missed the "we're now disabling HTT by default=20 unless you set a new sysctl" part. :-) =2D-=20 Kirk Strauser --nextPart3494105.ujmDKRqdvb Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- iD8DBQBCk1Rt5sRg+Y0CpvERAixqAJ9A5WDo6woQDZu8Q3c/rm3jR+nvdgCeIwT7 JCIyheScmicJ6JoOfGZ4yLA= =WK+x -----END PGP SIGNATURE----- --nextPart3494105.ujmDKRqdvb-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:29:51 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6199A16A41F for ; Tue, 24 May 2005 16:29:51 +0000 (GMT) (envelope-from scuba@centroin.com.br) Received: from gorgo.centroin.com.br (gorgo.centroin.com.br [200.225.63.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id B833A43D49 for ; Tue, 24 May 2005 16:29:50 +0000 (GMT) (envelope-from scuba@centroin.com.br) Received: from hypselo.centroin.com.br (hypselo.centroin.com.br [200.225.63.1]) by gorgo.centroin.com.br (8.12.10/8.12.9) with ESMTP id j4OGTlBQ017960 for ; Tue, 24 May 2005 13:29:47 -0300 (EST) Date: Tue, 24 May 2005 13:29:47 -0300 (EST) From: Sender: To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Subject: Backup software comparison X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:29:51 -0000 Hi all, =09I=B4ve used AMANDA for my backup solution for a long time, and now I decided to look for an alternative with multi-volume, disk-to-disk, network copy, among other features. =09Does anyone had compared other open source backup software? =09I=B4ve seem something about: Bacula, BoxBackup =09Which are the most used backup solution arround here? Thank you, - Marcelo From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:33:53 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CB3316A41C for ; Tue, 24 May 2005 16:33:53 +0000 (GMT) (envelope-from vdaelli@hotmail.com) Received: from hotmail.com (bay103-f22.bay103.hotmail.com [65.54.174.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C75043D53 for ; Tue, 24 May 2005 16:33:53 +0000 (GMT) (envelope-from vdaelli@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 24 May 2005 09:33:52 -0700 Message-ID: Received: from 65.54.174.207 by by103fd.bay103.hotmail.msn.com with HTTP; Tue, 24 May 2005 16:33:52 GMT X-Originating-IP: [65.54.174.207] X-Originating-Email: [vdaelli@hotmail.com] X-Sender: vdaelli@hotmail.com From: "Valerio Daelli" To: freebsd-questions@freebsd.org Date: Tue, 24 May 2005 16:33:52 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 24 May 2005 16:33:52.0987 (UTC) FILETIME=[5F3C72B0:01C5607E] Subject: Linux library conversion X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:33:53 -0000 Hello we have a linux perl program to run in FreeBSD. We need to convert this library from Linux to FreeBSD: msparser.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (GNU/Linux), not stripped Is there any tool similar to brandelf to convert this library and make it work under FreeBSD? Thanks Valerio From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:35:43 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3AE616A41C for ; Tue, 24 May 2005 16:35:42 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from photonix.site5.com (photonix.site5.com [209.59.179.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 744DB43D4C for ; Tue, 24 May 2005 16:35:42 +0000 (GMT) (envelope-from freebsd-lists@slivko.org) Received: from pool-70-18-16-72.ny325.east.verizon.net ([70.18.16.72] helo=[192.168.1.46]) by photonix.site5.com with esmtpa (Exim 4.50) id 1DacNX-0001gt-PY; Tue, 24 May 2005 12:35:40 -0400 Message-ID: <429357D4.5030800@slivko.org> Date: Tue, 24 May 2005 12:35:32 -0400 From: "Jonathan M. Slivko" User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Franco Bruno Borghesi References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> <429341E4.5000108@slivko.org> <42934389.9020307@slivko.org> <42934D79.8070407@slivko.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: This message has been scanned by ClamAV - CLEAN. X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - photonix.site5.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - slivko.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:35:43 -0000 OK, I added that. (it was actually already in /etc/defaults/rc.conf) -- Jonathan Franco Bruno Borghesi wrote: > If it fails it's because there are certain inconsistencies that need > user confirmation before they are corrected. > > You can add > fsck_y_enable="YES" > to your /etc/rc.conf so if default fsck fails, fsck -y is run. Check the > fsck man page before doing so. > > Anyway, I don't understand why fsck is run on every reboot. If you just > try a "reboot" or a "shutdown -r now" command in your console, will fsck > run next time the system boots? It should'n happen. I don't understand > why your file systems get uncleanly umounted. > > About freebsd 5.3, I've been using 3ware 7500-4LP (in raid 5) for the > last 3 months, and I have not had such (nor any other) problems with twe > driver. > > Hope it helps. > > 2005/5/24, Jonathan M. Slivko >: > > Whether I run fsck manually or if I run it automagically at boot via rc > (which happens every reboot), it fails. As I'm not at console, I can't > tell whether the same things happen if the box is physically taken > down. > and fsck'd in single user mode. The better part of the question is, > could this be the RAID card throwing out false errors due to not having > complete support for 5.3-R?, as it says that it only supports the 4.x > series. > > -- Jonathan > > Franco Bruno Borghesi wrote: > > Your fstab is OK. > > > > I don't exactly understand the problem. When you boot fsck will run > > automatically if the system did not correctly shut down. This is > done > > *before* disks are mounted rw, so there's no way you will see the > "(NO > > WRITE)" message. > > > > If system was not correctly shut down, fsck will run, and it > *will* (and > > should) slow down system boot process. > > > > So, is it the problem that fsck is running *every* time you boot? > Or is > > it that you get this "(NO WRITE)" message when you run it manually? > > > > > > 2005/5/24, Jonathan M. Slivko < freebsd-lists@slivko.org > > > >>: > > > > root@bonjour(~)% cat /etc/fstab > > # > Device Mountpoint FStype Options Dump > > Pass# > > /dev/twed0s1b > > none swap sw 0 0 > > /dev/twed0s1a / ufs > > rw 1 1 > > /dev/twed0s1g /home ufs > rw,userquota,groupquota > > 2 2 > > /dev/twed0s1d /tmp ufs > > rw 2 2 > > /dev/twed0s1e /usr ufs > > rw 2 2 > > /dev/twed0s1f /var ufs > > rw 2 2 > > /dev/acd0 /cdrom cd9660 ro,noauto > > 0 0 > > none /proc > > procfs rw 0 0 > > root@bonjour(~)% > > > > > > Franco Bruno Borghesi wrote: > > > Could you post your /etc/fstab? > > > > > > 2005/5/24, Jonathan M. Slivko < freebsd-lists@slivko.org > > > > >: > > > > > >>Yes, this is actually the autoboot fsck thats breaking, > the one > > that is > > >>called from /etc/rc (via /etc/rc.d/). I can physically > take the > > box down > > >>and do an offline fsck of it and that works fine, it's > just when > > it's in > > >>multi-user mode thats the problem. > > >> > > >>-- Jonathan > > >> > > >>Franco Bruno Borghesi wrote: > > >> > > >>>For fsck to work (to actually correct any problems you > may have), > > >>>partitions should be umounted first. Are you sure you > have umounted > > >>>/dev/twedXXXX before running fsck? > > >>> > > >>> > > >>>2005/5/24, Jonathan M. Slivko < freebsd-lists@slivko.org > > > > > > >>> > > >>>: > > >>> > > >>>Hello, > > >>> > > >>>I have an interesting question, I have a Pentium 4 2.4Ghz > (No HT > > >>>Enabled), > > >>>2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. > > However, > > >>>whenever you try and do an fsck -y, it says: > > >>> > > >>>root@bonjour (~)% fsck -y > > >>>** /dev/twed0s1a (NO WRITE) > > >>>** Last Mounted on / > > >>>** Root file system > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>2821 files, 31805 used, 474682 free (322 frags, 59295 > blocks, 0.1% > > >>>fragmentation) > > >>> > > >>>** /dev/twed0s1g (NO WRITE) > > >>>** Last Mounted on /home > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>82057 files, 557735 used, 12912399 free (2343 frags, 1613757 > > blocks, > > >>>0.0% > > >>>fragmentation) > > >>> > > >>>** /dev/twed0s1d (NO WRITE) > > >>>** Last Mounted on /tmp > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>30 files, 1787 used, 504700 free (20 frags, 63085 blocks, > 0.0% > > >>>fragmentation) > > >>> > > >>>** /dev/twed0s1e (NO WRITE) > > >>>** Last Mounted on /usr > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>251160 files, 1318908 used, 13912410 free (73346 frags, > 1729883 > > blocks, > > >>>0.5% fragmentation) > > >>> > > >>>** /dev/twed0s1f (NO WRITE) > > >>>** Last Mounted on /var > > >>>** Phase 1 - Check Blocks and Sizes > > >>>** Phase 2 - Check Pathnames > > >>>** Phase 3 - Check Connectivity > > >>>** Phase 4 - Check Reference Counts > > >>>** Phase 5 - Check Cyl groups > > >>>4424 files, 63321 used, 7042830 free (2462 frags, 880046 > blocks, > > 0.0% > > >>>fragmentation) > > >>> > > >>>The drives are Seagate SATA's (7200RPM) with a 3Ware SATA > RAID > > >>>Controller > > >>>(8006-2LP) using the twe kernel driver. The drives themselves > > allow data > > >>>to be read to/written from them, but fsck will not work > (and is > > hanging > > >>>things on boot). > > >>> > > >>>Anyone got any ideas? I looked at www.3ware.com > > > < http://www.3ware.com> > > >>> earlier and it says that > > >>>the 8006-2LP's support FreeBSD 4.x , but not 5.x - could > this be > > a result > > >>>of that, seeing as otherwise the drives/RAID work fine > (AFAIK, > > it could > > >>>not be and I'm just not sure how to test it). > > >>> > > >>>TIA, > > >>>-- Jonathan > > >>>_______________________________________________ > > >>> freebsd-questions@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 > > > > > > >>> > > >>" > > >>> > > >>> > > >> > > >>-- > > >>Jonathan M. Slivko - jonathan@slivko.org > > > > >>"Linux: The Choice for the GNU Generation" > > >>- http://www.linux.org/ - > > >> > > >>Don't fear the penguin. > > >>.^. > > >>/V\ > > >>/( )\ > > >>^^-^^ > > >>He's here to help. > > >> > > > > > > _______________________________________________ > > > 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 > > > >" > > > > -- > > Jonathan M. Slivko - jonathan@slivko.org > > > > "Linux: The Choice for the GNU Generation" > > - http://www.linux.org/ - > > > > Don't fear the penguin. > > .^. > > /V\ > > /( )\ > > ^^-^^ > > He's here to help. > > > > > > -- > Jonathan M. Slivko - jonathan@slivko.org > "Linux: The Choice for the GNU Generation" > - http://www.linux.org/ - > > Don't fear the penguin. > .^. > /V\ > /( )\ > ^^-^^ > He's here to help. > > -- Jonathan M. Slivko - jonathan@slivko.org "Linux: The Choice for the GNU Generation" - http://www.linux.org/ - Don't fear the penguin. .^. /V\ /( )\ ^^-^^ He's here to help. From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:38:25 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B3CE16A41C for ; Tue, 24 May 2005 16:38:25 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51A1B43D1F for ; Tue, 24 May 2005 16:38:25 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id F2EBF51436; Tue, 24 May 2005 09:39:12 -0700 (PDT) Date: Tue, 24 May 2005 09:39:12 -0700 From: Kris Kennaway To: Valerio Daelli Message-ID: <20050524163912.GA62519@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BOKacYhQ+x31HxR3" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: Linux library conversion X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:38:25 -0000 --BOKacYhQ+x31HxR3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 24, 2005 at 04:33:52PM +0000, Valerio Daelli wrote: > Hello > we have a linux perl program to run in FreeBSD. > We need to convert this library from Linux to FreeBSD: >=20 > msparser.so: ELF 32-bit LSB shared object, Intel 80386,=20 > version 1 (GNU/Linux), not stripped >=20 > Is there any tool similar to brandelf to convert this library and make it= =20 > work under FreeBSD? Not that I'm aware of. The Linux ABI is very different from FreeBSD (e.g. libc), so it's not at all a straightforward task. Kris --BOKacYhQ+x31HxR3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCk1inWry0BWjoQKURApJPAKDkqNKxtIluZgzClwqjWbbp+KbgKgCcDdzn u9D8sjaP6ezyrrlB68x318Q= =bU8E -----END PGP SIGNATURE----- --BOKacYhQ+x31HxR3-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:41:21 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DAA416A41C for ; Tue, 24 May 2005 16:41:21 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B4C043D1F for ; Tue, 24 May 2005 16:41:21 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4OGfGM3047014; Tue, 24 May 2005 11:41:16 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost) by mail.goinet.com (8.13.1/8.13.1/Submit) with ESMTP id j4OGfGXB047011; Tue, 24 May 2005 11:41:16 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Tue, 24 May 2005 11:41:16 -0500 (CDT) From: Tony Shadwick To: Valerio Daelli In-Reply-To: Message-ID: <20050524114047.P47072@mail.goinet.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on mail.goinet.com X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org Subject: Re: Linux library conversion X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:41:21 -0000 I know it isn't a permanent fix, but could you temporarily use compat_linux to run the Linux library on FreeBSD? On Tue, 24 May 2005, Valerio Daelli wrote: > Hello > we have a linux perl program to run in FreeBSD. > We need to convert this library from Linux to FreeBSD: > > msparser.so: ELF 32-bit LSB shared object, Intel 80386, > version 1 (GNU/Linux), not stripped > > Is there any tool similar to brandelf to convert this library and make it > work under FreeBSD? > Thanks > > Valerio > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:41:51 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F195016A41C for ; Tue, 24 May 2005 16:41:50 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECF6343D1F for ; Tue, 24 May 2005 16:41:49 +0000 (GMT) (envelope-from fborghesi@gmail.com) Received: by zproxy.gmail.com with SMTP id 9so1138649nzo for ; Tue, 24 May 2005 09:41:49 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:references; b=DNEZa8rO4LI6aMCoVndTy0Fpsigp0ZRW+bu+Gro60unGbNvtCFjFeGoTISzJydtQqQR0vdBp5gS9uREKaeK8e9Kk1fVlctUOLjMMftk5EB0NRwhhgVBvbVGXqGVvr13RbE2AqXxKu6Uj3/Jh9eCUzxAFS5JGaeibh7nJRkhIEdc= Received: by 10.36.33.17 with SMTP id g17mr1780158nzg; Tue, 24 May 2005 09:41:48 -0700 (PDT) Received: by 10.36.105.6 with HTTP; Tue, 24 May 2005 09:41:48 -0700 (PDT) Message-ID: Date: Tue, 24 May 2005 13:41:48 -0300 From: Franco Bruno Borghesi To: "Jonathan M. Slivko" In-Reply-To: <429357D4.5030800@slivko.org> Mime-Version: 1.0 References: <50408.70.18.16.72.1116942842.squirrel@www.slivko.org> <429341E4.5000108@slivko.org> <42934389.9020307@slivko.org> <42934D79.8070407@slivko.org> <429357D4.5030800@slivko.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: 3Ware SATA RAID 8000 - Supported on 5.3-R? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Franco Bruno Borghesi List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:41:51 -0000 Yes, but the default value is "NO". If you still have problems, ask again. 2005/5/24, Jonathan M. Slivko : >=20 > OK, I added that. (it was actually already in /etc/defaults/rc.conf) > -- Jonathan >=20 > Franco Bruno Borghesi wrote: > > If it fails it's because there are certain inconsistencies that need > > user confirmation before they are corrected. > > > > You can add > > fsck_y_enable=3D"YES" > > to your /etc/rc.conf so if default fsck fails, fsck -y is run. Check th= e > > fsck man page before doing so. > > > > Anyway, I don't understand why fsck is run on every reboot. If you just > > try a "reboot" or a "shutdown -r now" command in your console, will fsc= k > > run next time the system boots? It should'n happen. I don't understand > > why your file systems get uncleanly umounted. > > > > About freebsd 5.3, I've been using 3ware 7500-4LP (in raid 5) for the > > last 3 months, and I have not had such (nor any other) problems with tw= e > > driver. > > > > Hope it helps. > > > > 2005/5/24, Jonathan M. Slivko > >: > > > > Whether I run fsck manually or if I run it automagically at boot via rc > > (which happens every reboot), it fails. As I'm not at console, I can't > > tell whether the same things happen if the box is physically taken > > down. > > and fsck'd in single user mode. The better part of the question is, > > could this be the RAID card throwing out false errors due to not having > > complete support for 5.3-R?, as it says that it only supports the 4.x > > series. > > > > -- Jonathan > > > > Franco Bruno Borghesi wrote: > > > Your fstab is OK. > > > > > > I don't exactly understand the problem. When you boot fsck will run > > > automatically if the system did not correctly shut down. This is > > done > > > *before* disks are mounted rw, so there's no way you will see the > > "(NO > > > WRITE)" message. > > > > > > If system was not correctly shut down, fsck will run, and it > > *will* (and > > > should) slow down system boot process. > > > > > > So, is it the problem that fsck is running *every* time you boot? > > Or is > > > it that you get this "(NO WRITE)" message when you run it manually? > > > > > > > > > 2005/5/24, Jonathan M. Slivko < freebsd-lists@slivko.org > > > > > >>: > > > > > > root@bonjour(~)% cat /etc/fstab > > > # > > Device Mountpoint FStype Options Dump > > > Pass# > > > /dev/twed0s1b > > > none swap sw 0 0 > > > /dev/twed0s1a / ufs > > > rw 1 1 > > > /dev/twed0s1g /home ufs > > rw,userquota,groupquota > > > 2 2 > > > /dev/twed0s1d /tmp ufs > > > rw 2 2 > > > /dev/twed0s1e /usr ufs > > > rw 2 2 > > > /dev/twed0s1f /var ufs > > > rw 2 2 > > > /dev/acd0 /cdrom cd9660 ro,noauto > > > 0 0 > > > none /proc > > > procfs rw 0 0 > > > root@bonjour(~)% > > > > > > > > > Franco Bruno Borghesi wrote: > > > > Could you post your /etc/fstab? > > > > > > > > 2005/5/24, Jonathan M. Slivko < freebsd-lists@slivko.org > > > > > > > >: > > > > > > > >>Yes, this is actually the autoboot fsck thats breaking, > > the one > > > that is > > > >>called from /etc/rc (via /etc/rc.d/). I can physically > > take the > > > box down > > > >>and do an offline fsck of it and that works fine, it's > > just when > > > it's in > > > >>multi-user mode thats the problem. > > > >> > > > >>-- Jonathan > > > >> > > > >>Franco Bruno Borghesi wrote: > > > >> > > > >>>For fsck to work (to actually correct any problems you > > may have), > > > >>>partitions should be umounted first. Are you sure you > > have umounted > > > >>>/dev/twedXXXX before running fsck? > > > >>> > > > >>> > > > >>>2005/5/24, Jonathan M. Slivko < freebsd-lists@slivko.org > > > > > > > > > > >>> > > > > > >>>: > > > >>> > > > >>>Hello, > > > >>> > > > >>>I have an interesting question, I have a Pentium 4 2.4Ghz > > (No HT > > > >>>Enabled), > > > >>>2x80GB SATA Hard Drives in RAID 1. The box boots, works, etc. > > > However, > > > >>>whenever you try and do an fsck -y, it says: > > > >>> > > > >>>root@bonjour (~)% fsck -y > > > >>>** /dev/twed0s1a (NO WRITE) > > > >>>** Last Mounted on / > > > >>>** Root file system > > > >>>** Phase 1 - Check Blocks and Sizes > > > >>>** Phase 2 - Check Pathnames > > > >>>** Phase 3 - Check Connectivity > > > >>>** Phase 4 - Check Reference Counts > > > >>>** Phase 5 - Check Cyl groups > > > >>>2821 files, 31805 used, 474682 free (322 frags, 59295 > > blocks, 0.1% > > > >>>fragmentation) > > > >>> > > > >>>** /dev/twed0s1g (NO WRITE) > > > >>>** Last Mounted on /home > > > >>>** Phase 1 - Check Blocks and Sizes > > > >>>** Phase 2 - Check Pathnames > > > >>>** Phase 3 - Check Connectivity > > > >>>** Phase 4 - Check Reference Counts > > > >>>** Phase 5 - Check Cyl groups > > > >>>82057 files, 557735 used, 12912399 free (2343 frags, 1613757 > > > blocks, > > > >>>0.0% > > > >>>fragmentation) > > > >>> > > > >>>** /dev/twed0s1d (NO WRITE) > > > >>>** Last Mounted on /tmp > > > >>>** Phase 1 - Check Blocks and Sizes > > > >>>** Phase 2 - Check Pathnames > > > >>>** Phase 3 - Check Connectivity > > > >>>** Phase 4 - Check Reference Counts > > > >>>** Phase 5 - Check Cyl groups > > > >>>30 files, 1787 used, 504700 free (20 frags, 63085 blocks, > > 0.0% > > > >>>fragmentation) > > > >>> > > > >>>** /dev/twed0s1e (NO WRITE) > > > >>>** Last Mounted on /usr > > > >>>** Phase 1 - Check Blocks and Sizes > > > >>>** Phase 2 - Check Pathnames > > > >>>** Phase 3 - Check Connectivity > > > >>>** Phase 4 - Check Reference Counts > > > >>>** Phase 5 - Check Cyl groups > > > >>>251160 files, 1318908 used, 13912410 free (73346 frags, > > 1729883 > > > blocks, > > > >>>0.5% fragmentation) > > > >>> > > > >>>** /dev/twed0s1f (NO WRITE) > > > >>>** Last Mounted on /var > > > >>>** Phase 1 - Check Blocks and Sizes > > > >>>** Phase 2 - Check Pathnames > > > >>>** Phase 3 - Check Connectivity > > > >>>** Phase 4 - Check Reference Counts > > > >>>** Phase 5 - Check Cyl groups > > > >>>4424 files, 63321 used, 7042830 free (2462 frags, 880046 > > blocks, > > > 0.0% > > > >>>fragmentation) > > > >>> > > > >>>The drives are Seagate SATA's (7200RPM) with a 3Ware SATA > > RAID > > > >>>Controller > > > >>>(8006-2LP) using the twe kernel driver. The drives themselves > > > allow data > > > >>>to be read to/written from them, but fsck will not work > > (and is > > > hanging > > > >>>things on boot). > > > >>> > > > >>>Anyone got any ideas? I looked at www.3ware.com > > > > > < http://www.3ware.com> > > > >>> earlier and it says that > > > >>>the 8006-2LP's support FreeBSD 4.x , but not 5.x - could > > this be > > > a result > > > >>>of that, seeing as otherwise the drives/RAID work fine > > (AFAIK, > > > it could > > > >>>not be and I'm just not sure how to test it). > > > >>> > > > >>>TIA, > > > >>>-- Jonathan > > > >>>_______________________________________________ > > > >>> freebsd-questions@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 > > > > > > > > > > >>> > > > > > >>" > > > >>> > > > >>> > > > >> > > > >>-- > > > >>Jonathan M. Slivko - jonathan@slivko.org > > > > > > > >>"Linux: The Choice for the GNU Generation" > > > >>- http://www.linux.org/ - > > > >> > > > >>Don't fear the penguin. > > > >>.^. > > > >>/V\ > > > >>/( )\ > > > >>^^-^^ > > > >>He's here to help. > > > >> > > > > > > > > _______________________________________________ > > > > 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 > > > > > > >" > > > > > > -- > > > Jonathan M. Slivko - jonathan@slivko.org > > > > > > > "Linux: The Choice for the GNU Generation" > > > - http://www.linux.org/ - > > > > > > Don't fear the penguin. > > > .^. > > > /V\ > > > /( )\ > > > ^^-^^ > > > He's here to help. > > > > > > > > > > -- > > Jonathan M. Slivko - jonathan@slivko.org > > "Linux: The Choice for the GNU Generation" > > - http://www.linux.org/ - > > > > Don't fear the penguin. > > .^. > > /V\ > > /( )\ > > ^^-^^ > > He's here to help. > > > > >=20 > -- > Jonathan M. Slivko - jonathan@slivko.org > "Linux: The Choice for the GNU Generation" > - http://www.linux.org/ - >=20 > Don't fear the penguin. > .^. > /V\ > /( )\ > ^^-^^ > He's here to help. > From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:53:25 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A70AE16A41C for ; Tue, 24 May 2005 16:53:25 +0000 (GMT) (envelope-from non_secure@yahoo.com) Received: from web53307.mail.yahoo.com (web53307.mail.yahoo.com [206.190.39.236]) by mx1.FreeBSD.org (Postfix) with SMTP id 1F27D43D54 for ; Tue, 24 May 2005 16:53:25 +0000 (GMT) (envelope-from non_secure@yahoo.com) Received: (qmail 24821 invoked by uid 60001); 24 May 2005 16:53:24 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=6Cify36vktExPTzsuTjJMy8ZbU/wZuSAvpCEdjrgrweTeUYo/XuEZnmv0uglSywwbQKjs/Jk6Z82fpvC1UMpR8DWdSZQQ1SvwZa8QeztuixEceIukboUXFr2+qJDC/4IuB9JDNzNKdgXQk6epzNFpuhEDEkeyJjj+1qaCUKsipg= ; Message-ID: <20050524165323.24819.qmail@web53307.mail.yahoo.com> Received: from [208.186.91.245] by web53307.mail.yahoo.com via HTTP; Tue, 24 May 2005 09:53:23 PDT Date: Tue, 24 May 2005 09:53:23 -0700 (PDT) From: Joe Schmoe To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Using a logitech mx700 with scrollwheel and thumb buttons in xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:53:25 -0000 Hello, I have a logitech mx700 - it has a scrollwheel and two thumb buttons (designed for forward and back in your browser) as well as some other launch button on the top that I guess is for launching an app. I am using FBSD 5.4-RELEASE with xorg installed from the ports tree. I have tried many, many different combinations of settings in /etc/rc.conf, xorg.conf and .xinitrc. The results are always the same: - I can use the scrollwheel just fine - first three mouse buttons work just fine - the other three (two thumb buttons and the app button) _always_ generate the same mousebutton event So for instance, at first I had: moused_flags="-z 4" in /etc/rc.conf and I had: Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "Buttons" "7" EndSection in my xorg.conf and I had: /usr/X11R6/bin/xmodmap -e "pointer = 1 3 2 4 5 6 7" in my .xinitrc Checking button events in xev, under this config, shows that upwheel is 4, downwheel is 5 (and yes, the wheel worked) and all three other buttons (two thumbs and app button) were all button 5. so then I removed the -z line from /etc/rc.conf, and added this to my xorg.conf: Option "ZAxisMapping" "6 7" Same behavior. wheel works, the other three are all event button 5. So the only semi-success I had was when I changed my ZAxisMapping line to: Option "ZAxisMapping" "4 5 6 7" When I did this, wheelup is 4, wheeldown is 5, the little pseudo buttons above and below the wheel now create the following combo events of 6,4 and 5,5 respectively, and my two thumb buttons and app button now all produce button 7. ----- So what can I do here ? No matter how I rearrange my settings, the two thumb buttons and the app button always produce the same button event. Whether it is 5 or 7, it is always the same. Does anyone have a Logitech mx700 mouse, in FreeBSD 5.x, with xorg, running properly with the wheel and the thumb buttons ? thanks, __________________________________ Do you Yahoo!? Yahoo! Small Business - Try our new Resources site http://smallbusiness.yahoo.com/resources/ From owner-freebsd-questions@FreeBSD.ORG Tue May 24 16:56:34 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69C7F16A41C for ; Tue, 24 May 2005 16:56:34 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D30543D54 for ; Tue, 24 May 2005 16:56:33 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (localhost [127.0.0.1]) by clunix.cl.msu.edu (8.12.10+Sun/8.12.2) with ESMTP id j4OGuWJF009001; Tue, 24 May 2005 12:56:32 -0400 (EDT) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.12.10+Sun/8.12.2/Submit) id j4OGuWRO009000; Tue, 24 May 2005 12:56:32 -0400 (EDT) From: Jerry McAllister Message-Id: <200505241656.j4OGuWRO009000@clunix.cl.msu.edu> To: bloodyveins@gmail.com Date: Tue, 24 May 2005 12:56:32 -0400 (EDT) In-Reply-To: <58ebaa710505240911227dcfd4@mail.gmail.com> X-Mailer: ELM [version 2.5 PL7] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: /usr backup/remove issue X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:56:34 -0000 > > hi all, > > i have freebsd 5.1 running with 4 x 200GB ATA HD. let's say i have > /usr installed in hd1. i want to move /usr to a larger partition in > hd4. how can i do that? > > here is my scenario. i backed up all /usr data to /usr1 in hd4. then i > checked the location of ln and mkdir to make sure that they are not > located in /usr. after that, i deleted or files in /usr "rm -Rf /usr" > and planned to create symbolic link from /usr1 to /usr. anyway, lately > i realized this is really stupid idea. after rebooting, i couldn't log > in to terminal. even logged in as single user didn't help. (i tried > mount the partition, but was nothing to avail). I am a little unclear here. What did you do to "back up" stuff from /usr to /usr1? Did you put a dump or tar file there or make a duplicate copy of /usr in /usr1? Hopefully you did the latter. Then you can just go to your /etc/fstab file and edit it so that the partition that was getting mounted as /usr1 now gets mounted as /usr. At the same time, fix it so that the partition that was getting mounted as /usr now gets mounted as something else or not at all. Then, just reboot. No links needed. You might want to do the editing of /etc/fstab in single user mode. Since something seems hosed now, it will be necessary to know what you have in order to direct your way out of it. If you really have a duplicate of the stuff in the partition that was getting mounted as /usr, then come up to single user, fsck stuff and remount root as read/write (mount -u /) and then mount the partition with the good version of /usr (that used to get mounted as /usr1) as /usr. Then edit your /etc/fstab. The system doesn't care which partition it is in, just where is is mounted. If you didn't make an identical copy of /usr in /usr1, then it will be a little harder. If you have a dump file there, you are luck because restore is in /sbin/restore which is probably in your root partition, then you can boot to single user, remount root, mount the new partition as something - /usr would probably do if you already nuked the old one - and then cd to that partition and restore -r the dump file in to that partition. If it is a tar file, that won't work because tar is in /usr and you nuked that. So, hope for an identical /usr or a dump file. By the way, you should not have done the rm -rf until all things were hooked up and happy. You should have just unmounted it and mounted the other one there. Then test stuff and edit /etc/fstab and reboot. You only do the rm long after you have proven to yourself that everything is good. ////jerry > anybody can shed a light? > > thanks before. > Mike > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Tue May 24 17:01:09 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E7D716A41C for ; Tue, 24 May 2005 17:01:09 +0000 (GMT) (envelope-from kirk@strauser.com) Received: from kanga.honeypot.net (kanga.honeypot.net [208.162.254.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87C3643D1F for ; Tue, 24 May 2005 17:01:08 +0000 (GMT) (envelope-from kirk@strauser.com) Received: from localhost (localhost [127.0.0.1]) by kanga.honeypot.net (Postfix) with ESMTP id B037B222400 for ; Tue, 24 May 2005 12:01:07 -0500 (CDT) Received: from kanga.honeypot.net ([127.0.0.1]) by localhost (kanga.honeypot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 78086-16 for ; Tue, 24 May 2005 12:01:05 -0500 (CDT) Received: from janus.daycos.com (janus.daycos.com [204.26.70.77]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by kanga.honeypot.net (Postfix) with ESMTP id 4883B222401 for ; Tue, 24 May 2005 12:01:05 -0500 (CDT) From: Kirk Strauser To: freebsd-questions@freebsd.org Date: Tue, 24 May 2005 12:00:55 -0500 User-Agent: KMail/1.8 References: <200505241053.36377.kirk@strauser.com> <200505241159.24346.kellers@njit.edu> In-Reply-To: <200505241159.24346.kellers@njit.edu> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3760944.oqcKLXEcye"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200505241200.55346.kirk@strauser.com> X-Virus-Scanned: amavisd-new at honeypot.net Subject: Re: Top only showing one active CPU on HTT system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 17:01:09 -0000 --nextPart3760944.oqcKLXEcye Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Tuesday 24 May 2005 10:59, Tim Kellers wrote: > The acpi_load=3D"YES" in /boot/loader.conf might do the trick. Actually, it turns out that I have to set machdep.hyperthreading_allowed=3D= 1=20 for HTT to work now. Speaking of which, is that tunable documented anywhere besides the HTT=20 security PR? It's not in the 5.4-STABLE /usr/src/UPDATING or anyplace else= =20 I've looked, so I was more than a bit surprised to find that such an=20 important default was changed without much notice. I imagine a lot of=20 people read the PR much as I did: "blah, blah, theoretical, doesn't affect= =20 me, next message"... =2D-=20 Kirk Strauser --nextPart3760944.oqcKLXEcye Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- iD8DBQBCk13H5sRg+Y0CpvERAq1rAJ9oHApy00I9i22jwiWy+hkGdKblaQCfdBY0 TMRe9e2d+SgNiG5jaWeO5VY= =u+9d -----END PGP SIGNATURE----- --nextPart3760944.oqcKLXEcye-- From owner-freebsd-questions@FreeBSD.ORG Tue May 24 17:08:45 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C20216A41C for ; Tue, 24 May 2005 17:08:45 +0000 (GMT) (envelope-from scott@maxify.com) Received: from vertigo.maxify.com (ns.maxify.com [216.218.213.18]) by mx1.FreeBSD.org (Postfix) with SMTP id 1C46443D53 for ; Tue, 24 May 2005 17:08:42 +0000 (GMT) (envelope-from scott@maxify.com) Received: (qmail 47262 invoked from network); 24 May 2005 17:17:11 -0000 Received: from unknown (HELO ?66.92.188.147?) (66.92.188.147) by ns.maxify.com with SMTP; 24 May 2005 17:17:11 -0000 Mime-Version: 1.0 (Apple Message framework v728) In-Reply-To: <4292476B.80506@mWare.ca> References: <62547055-57AF-4695-9EB7-CA7CB4BB4232@maxify.com> <4292476B.80506@mWare.ca> Message-Id: <973D8ECA-069C-4B95-953D-68F1EA2B2842@maxify.com> From: Scott Stevenson Date: Tue, 24 May 2005 10:07:28 -0700 To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.728) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Some HTTP clients only receive first 4k X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 17:08:45 -0000 On May 23, 2005, at 2:13 PM, Mykel wrote: >> 1. Affected clients consistently receive only the first 4096 >> bytes of .html and .css files. After that, they encounter a >> single garbage character (looks like a memory stomp), and then >> nothing. >> >> 2. At least two of the sites hosted on the machine are affected. >> >> 3. The issue can be reproduced via the W3 validator: [...] >> >> 4. At least in the case of the validator, the requests don't show >> up in Apache's access or error logs! This is consistently >> reproducible. >> >> 5. For some reason, clients consistently only get to byte 3883 >> (or perhaps 3884) in .php files, and then get the garbage character. > > Perhaps there's an MTU problem along the way? Can you ping/ > traceroute all the way between endpoints? Some people idiotically > block all ICMP, when they probably just want to filter ICMP ECHO... > (idijjits... ping ain't the biggest of your problems) I can't see how this would explain: 1. No entry in the access log for the initial request 2. PHP files being truncated at a different length (3883/3884 bytes) than HTML and CSS (4096) Also, I never saw this problem when a linux machine was running on the same network with the same IP. Or am I missing something? Thanks, - Scott From owner-freebsd-questions@FreeBSD.ORG Tue May 24 17:10:15 2005 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA6DF16A41C for ; Tue, 24 May 2005 17:10:15 +0000 (GMT) (envelope-from fteg@london.com) Received: from webmail-outgoing.us4.outblaze.com (webmail-outgoing.us4.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E54143D4C for ; Tue, 24 May 2005 17:10:15 +0000 (GMT) (envelope-from fteg@london.com) Received: from unknown (unknown [192.168.9.180]) by webmail-outgoing.us4.outblaze.com (Postfix) with QMQP id 4B7EE18001DA for ; Tue, 24 May 2005 17:10:15 +0000 (GMT) X-OB-Received: from unknown (205.158.62.81) by wfilter.us4.outblaze.com; 24 May 2005 17:10:15 -0000 Received: by ws1-2.us4.outblaze.com (Postfix, from userid 1001) id 396DC1F50B1; Tue, 24 May 2005 17:10:15 +0000 (GMT) Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 2.117 (F2.6; A1.17; B2.12; Q2.03) Received: from [213.187.181.70] by ws1-2.us4.outblaze.com with http for fteg@london.com; Tue, 24 May 2005 12:10:14 -0500 X-Mailer: mail.com webmail From: "Fafa Hafiz Krantz" To: questions@freebsd.org Date: Tue, 24 May 2005 12:10:14 -0500 X-Originating-Ip: 213.187.181.70 X-Originating-Server: ws1-2.us4.outblaze.com Message-Id: <20050524171015.396DC1F50B1@ws1-2.us4.outblaze.com> Cc: Subject: Files corrupt after copy!!! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 17:10:16 -0000 Hey! I just copied my entire "home" directory from my Windows XP harddrive (ad6) running NTFS over to my FreeBSD harddrive (ad4) running UFS2: ad4: 152627MB [310101/16/63] at ata2-master SATA150 ad6: 152627MB [310101/16/63] at ata3-master SATA150 But when I go through my MP3 files, they're full of skips. And the simple file verification (SFV) file states: talvin_singh_-_traveller_(kid_locos_once_upon_a_time_in_the_east_mix).mp3 := crc does not match (8f84cd1d!=3D85d34bd8) All I did to copy was a cp -Rv /mnt/fafa /usr/home/fafa, and it displayed n= o errors while copying. How can this be, my harddrives are new! Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.4-STABLE #5: Wed May 18 12:52:43 CEST 2005 fafa@urban.bleed.lan:/usr/obj/usr/src/sys/URBAN MPTable: Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Pentium(R) 4 CPU 3.20GHz (3192.02-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0xf34 Stepping =3D 4 Features=3D0xbfebfbff Hyperthreading: 2 logical CPUs real memory =3D 1073610752 (1023 MB) avail memory =3D 1045262336 (996 MB) ioapic0: Changing APIC ID to 1 ioapic0: Assuming intbase of 0 ioapic0 irqs 0-23 on motherboard npx0: on motherboard npx0: INT 16 interface cpu0 on motherboard pcib0: pcibus 0 on motherboard pci0: on pcib0 pcib1: irq 16 at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) pci1: at device 0.1 (no driver attached) pcib2: at device 28.0 on pci0 pci32: on pcib2 pcib3: irq 17 at device 28.1 on pci0 pci64: on pcib3 bge0: mem 0xf0400000-= 0xf040ffff irq 17 at device 0.0 on pci64 miibus0: on bge0 brgphy0: on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000b= aseTX-FDX, auto bge0: Ethernet address: 00:11:85:df:7d:9b uhci0: port 0x4440-0x= 445f irq 20 at device 29.0 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x4460-0x= 447f irq 18 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0x4480-0x= 449f irq 21 at device 29.2 on pci0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered uhci3: port 0x44a0-0x= 44bf irq 22 at device 29.3 on pci0 usb3: on uhci3 usb3: USB revision 1.0 uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub3: 2 ports with 2 removable, self powered pci0: at device 29.7 (no driver attached) pcib4: at device 30.0 on pci0 pci5: on pcib4 pci5: at device 4.0 (no driver attached) pci5: