Re: CVSUP Connection Problem

2007-10-13 Thread Aryeh M. Friedman
Rizwan Ahmad wrote: > Hi All, > I am trying to run CVSUP from my system but I am not successful. I have > tried many times by changing the CVSUP host too, but it did not work. All > the time I am getting the below message and no other details. > > #cvsup -L 2 -g new-portsfile > > Connecting to cvsu

Re: USB vs PAE

2007-10-23 Thread Aryeh M. Friedman
Bob Bishop wrote: > Hi, > > The whole USB kit and caboodle is nodevice'd out in the PAE config. > Can anyone give a succinct summary of what needs fixing? (EVERYTHING! > is an acceptable answer) This may not be related but xorg had real difficulty findind cards with pae (e6850 4 gig)... amd64 fix

[ANNOUNCEMENT] Wiki for discussing P35/IHC9(R)/SATA issues set up

2007-11-04 Thread Aryeh M. Friedman
http://www.flosoft-systems.com/wiki/index.php The goals of the wiki are: 1. Clearinghouse for known issues and solutions 2. Cordinate the development of patch set(s) to fix the issues ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org

Re: [ANNOUNCEMENT] Wiki for discussing P35/IHC9(R)/SATA issues set up

2007-11-06 Thread Aryeh M. Friedman
Dag-Erling Smørgrav wrote: > "Aryeh M. Friedman" <[EMAIL PROTECTED]> writes: > >> http://www.flosoft-systems.com/wiki/index.php >> > > What's wrong with wiki.freebsd.org? 1. Not knowing the addr 2. Needing to set a wiki up on my site for ot

questions on development(7)

2007-11-09 Thread Aryeh M. Friedman
ich source tree to use? -- Aryeh M. Friedman Developer, not business, friendly http://www.flosoft-systems.com ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: questions on development(7)

2007-11-09 Thread Aryeh M. Friedman
server. I > think you should treat your repo as read only and use cvsup to keep > it up to date. At least that's what I do. What I meant was how do I keep from clobbering my local changes? -- Aryeh M. Friedman Developer, not bus

Re: questions on development(7)

2007-11-09 Thread Aryeh M. Friedman
need a good tutorial on cvs where can I find one ;-) - -- Aryeh M. Friedman Developer, not business, friendly http://www.flosoft-systems.com -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHM/R1J9+1V27Stt

Re: questions on development(7)

2007-11-09 Thread Aryeh M. Friedman
e If I need to use an other CMS I would prefer aegis... and if that is the case I will volunteer to maintain the aegis<--->cvs repo... but there has to be a better way then using yet an other package - -- Aryeh M. Friedman Developer, not business, friendly http://www.flosoft-systems.

Re: Any hope to have things requested by NVidia in FreeBSD-7?

2007-11-16 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > > Is this functionality present in 7.0? Or when to expect this to be > done? Most of the tasks have been spoken for but very little news so far on progess - -- Aryeh M. Friedman Developer, not business, friendly http://www.flosoft-sy

mergemaster + development(7) = forced make buildworld

2007-11-22 Thread Aryeh M. Friedman
source tree (for /usr/src2 in the -current example)... is this normal and how do I prevent this behavior? - -- Aryeh M. Friedman Developer, not business, friendly http://www.flosoft-systems.com -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http

Re: idea bouncing: using cvs as a replacement for mergemaster

2007-11-27 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Garrett Cooper wrote: > On Nov 27, 2007, at 7:45 PM, Aryeh M. Friedman wrote: > > I was thinking seeing the fact that I already have a cvs repo of > -current does it make sense to just use CVS to update /etc > instead of > mergem

Re: Overlap in PCI memory ranges

2007-12-06 Thread Aryeh M. Friedman
Coleman Kane wrote: > Hello all, > > I've got a problem with overlapping PCI memory ranges between my SATA > controller and my High-Def Audio controller: > Are you using AMD64 or i386? -- Aryeh M. Friedman FloSoft Systems Developer, not business, friendly http://www

results of ports re-engineering survey

2007-12-11 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 *PLEASE ONLY REPLY TO ME OR [EMAIL PROTECTED] A few disclaimers: Neither I or anyone else is asking for FreeBSD to incorparate any modifications to the current base system and/or ports collection. If and when any code is developed from this pro

results of ports re-engineering survey

2007-12-11 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 *PLEASE ONLY REPLY TO ME OR [EMAIL PROTECTED] A few disclaimers: Neither I or anyone else is asking for FreeBSD to incorparate any modifications to the current base system and/or ports collection. If and when any code is developed from this pro

Re: BSD license compatible hash algorithm?

2007-12-28 Thread Aryeh M. Friedman
return hash; > } > > It apparently has some weaknesses if used on binary (non-text) data > but I don't see why it wouldn't work on Windows. All hashs have issues with pooling see http://www.burtleburtle.net/bob/hash/index.html... btw it is a old wives tale that th

Re: BSD license compatible hash algorithm?

2007-12-28 Thread Aryeh M. Friedman
two... thus even if the bucket count is equal to the number of elements to be hashed there will be collisions [roughly 1/3] unless you use something like gperf to find a perfect hash (this is impractical for all non-dictionary [i.e. static compile time content] applications) - -- Aryeh M. Friedman

Re: BSD license compatible hash algorithm?

2007-12-28 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ivan Voras wrote: > On 28/12/2007, Aryeh M. Friedman <[EMAIL PROTECTED]> wrote: > >> Depends on the size of the table... I work with a algrothem that >> regularly has tables between 2^32 and 2^64 buckets (even though >> t

Re: BSD license compatible hash algorithm?

2007-12-28 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ivan Voras wrote: > On 28/12/2007, Aryeh M. Friedman <[EMAIL PROTECTED]> wrote: > >> All hashs have issues with pooling see >> http://www.burtleburtle.net/bob/hash/index.html... > > Here's a more direct link: >

Re: BSD license compatible hash algorithm?

2007-12-28 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ivan Voras wrote: > On 28/12/2007, Aryeh M. Friedman <[EMAIL PROTECTED]> wrote: > >> Matter of fact this weakness is the main avenue of attack on >> cryptographic hashes see http://eprint.iacr.org/2004/199.pdf A >> slight

Re: BSD license compatible hash algorithm?

2007-12-30 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dag-Erling Smørgrav wrote: > "Aryeh M. Friedman" <[EMAIL PROTECTED]> writes: >> All hashs have issues with pooling see >> http://www.burtleburtle.net/bob/hash/index.html... btw it is a >> old wives tale that

cvs question

2008-01-21 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I maintain a local repo of the via the cvs mode of cvsup. When I do a: cvs -q -d /home/ncvs update It will update any modified files but will not add any new files (it removes stale ones), but if I do a checkout it overwrites my local modifications

Re: cvs question

2008-01-21 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Doug Barton wrote: > Aryeh M. Friedman wrote: >> I maintain a local repo of the via the cvs mode of cvsup. When I >> do a: > > What command did you use to check out the files, and what tree are > you talking about? cvsup

Re: [OT] Q: what would you choose for a VCS today

2008-01-30 Thread Aryeh M. Friedman
or issues that prevent committing as of yet]) currently I am working with the aegis developers so none of the hacks (plus a few other things) are not needed (i.e. no special cases needed for freebsd)... to others reading this is going to be the primary cms/vms/vcs for ports 2.0 - -- Aryeh M. Friedman FloS

Re: [OT] Q: what would you choose for a VCS today

2008-02-01 Thread Aryeh M. Friedman
te: I am in the middle of making it FreeBSD friendly and beefing up the automated portions of distributed repos - -- Aryeh M. Friedman FloSoft Systems, Java Tool Developers Developer, not business, friendly http://www.flosoft-systems.com "Free software != Free beer" Blog: http://ww

Re: [OT] Q: what would you choose for a VCS today

2008-02-01 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ollivier Robert wrote: > According to Aryeh M. Friedman: >> Ports 2.0 is using aegis (aegis.sf.net)... any possibility for >> wider use? Note: I am in the middle of making it FreeBSD friendly >> and beefing up the automated po

/dev/dsp disappeared after power outage

2008-02-02 Thread Aryeh M. Friedman
rebooting the problem remains. Any ideas how to fix it? - -- Aryeh M. Friedman FloSoft Systems, Java Tool Developers Developer, not business, friendly http://www.flosoft-systems.com "Free software != Free beer" Blog: http://www.flosoft-systems.com/flosoft_systems_community/b

normal users calling setpriority(2)

2008-04-08 Thread Aryeh M. Friedman
Is it possible via sysctl or some other method to allow non-superusers to set any priority they want. The specific question is I often want to set idprio 31 on stuff but don't want to switch to root to do it (I am the only user on the machine). ___

setting up a local cvsup server

2008-07-02 Thread Aryeh M. Friedman
practice so no need for cvsup-mirror or the method suggested in development(8)) advice? -- Aryeh M. Friedman, FloSoft Systems http://www.flosoft-systems.com Java developer, unit testing, and operatring system development "Free Software != Free

Increasing partition size by removing partitions

2008-09-27 Thread Aryeh M. Friedman
I have a disk that is laid out with partion 0 being NTFS and 1 being FreeBSD. I want to remove the NTFS partition and grow the FreeBSD one but all the docs I have seen only talk about how to do this if the new part of the partition is at the end of the partition you wish to grow. How do I go

looking for something like a union file system

2008-11-14 Thread Aryeh M. Friedman
I am using a dev tool that maintains a "split" source tree for currently worked on files and those in the repo (aegis which is slightly different then how svn or cvs does it) and my the default build system assumes it is all in one tree thus I want someway of merge the two dirs and have a copy

support for i45 (ich10) chipsets

2009-01-09 Thread Aryeh M. Friedman
I just got a i45 based motherboard and everything works except for the following pci: no...@pci0:1:0:0: class=0x02 card=0x83671043 chip=0x816810ec rev=0x02 hdr=0x00 vendor = 'Realtek Semiconductor' device = 'RTL8168/8111 PCI-E Gigabit Ethernet NIC' class = networ

Re: support for i45 (ich10) chipsets

2009-01-10 Thread Aryeh M. Friedman
Olivier SMEDTS wrote: > Hello, > > 2009/1/10 Aryeh M. Friedman : > >> I just got a i45 based motherboard and everything works except for the >> following pci: >> >> no...@pci0:1:0:0: class=0x02 card=0x83671043 chip=0x816810ec >> rev

Re: support for i45 (ich10) chipsets

2009-01-10 Thread Aryeh M. Friedman
Olivier SMEDTS wrote: > 2009/1/10 Aryeh M. Friedman : > >> Olivier SMEDTS wrote: >> >>> Hello, >>> >>> 2009/1/10 Aryeh M. Friedman : >>> >>> >>>> I just got a i45 based motherboard and everything works

usinig cvs diff to make a patch

2009-02-03 Thread Aryeh M. Friedman
I use a local cvs repo and I have modified a port and which to submit an update for it how do I generate a patch file with cvs (cvs diff seems to give a unusable format)? ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/lis

setting up net/cvsup-mirror correctly

2009-02-07 Thread Aryeh M. Friedman
I have installed net/cvsup-mirror with all the defaults but when I attempt to actually run cvsupd I get the following: prod# cvsupd & [1] 99334 prod# cvsup -g -h localhost /usr/share/examples/cvsup/cvs-supfile Connected to localhost 2009.02.07 14:48:28 EST [99334]: +0 ar...@localhost (prod.istu

Re: setting up net/cvsup-mirror correctly

2009-02-07 Thread Aryeh M. Friedman
oops forgot to mention I have been running a local repo (as per the instructions in development(7)) for almost a year now and updating my /usr/src and /usr/ports from works without a hitch Aryeh M. Friedman wrote: I have installed net/cvsup-mirror with all the defaults but when I attempt to

Re: setting up net/cvsup-mirror correctly

2009-02-07 Thread Aryeh M. Friedman
Aryeh M. Friedman wrote: I have installed net/cvsup-mirror with all the defaults but when I attempt to actually run cvsupd I get the following: prod# cvsupd & [1] 99334 prod# cvsup -g -h localhost /usr/share/examples/cvsup/cvs-supfile Connected to localhost 2009.02.07 14:48:28 EST [99334]

is gmirror byte or fs level?

2009-03-18 Thread Aryeh M. Friedman
If I have a dual boot system w/ Vista on the first slices and all the FreeBSD filesystems on the second and then run gmirror on the disk will the mirror disk also have the Vista slice? ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.o

confusion

2009-03-18 Thread Aryeh M. Friedman
I just set up mirroring on my dual boot fb-7.1/vistaX32SP1 machine (the dual boot works fine) but I got this message when I attempted to mount vista via sysutils/fusefs-ntfs: Actual VCN (0x336970100) of index buffer is different from expected VCN (0x1). Failed to mount '/dev/mirror/gm0s1'

configuring dns/sendmail for two different servers

2009-04-01 Thread Aryeh M. Friedman
I have a domain that I just transfered from dreamhost and there are already some email accounts set up on it that are forwarded to gmail but there are also other accounts that are local accounts my question is there a easy way to say if it is not a local account forward/use as MX gmail? __

Re: configuring dns/sendmail for two different servers

2009-04-01 Thread Aryeh M. Friedman
Gregory Shapiro wrote: I have a domain that I just transfered from dreamhost and there are already some email accounts set up on it that are forwarded to gmail but there are also other accounts that are local accounts my question is there a easy way to say if it is not a local account fo

Re: configuring dns/sendmail for two different servers

2009-04-01 Thread Aryeh M. Friedman
Gregory Shapiro wrote: I was aware of that but wanted a "default" alias for any addr/alias that does not exist to send to gmail and alias(5) does not allow for wild cards and/or defaults it seems You can add this to your .mc file: define(`LUSER_RELAY', `local:unknownuser') and then al

DNS problems

2009-04-07 Thread Aryeh M. Friedman
I have registered and pointed to my name server the following domains: istudentunion.com (.net and .org) They resolve locally but do not resolve remotely it has been 24 hrs so some propagation should of occured... I tested resolving remotely with hardcoding the nameserver to be me and that

Re: DNS problems

2009-04-07 Thread Aryeh M. Friedman
Aryeh M. Friedman wrote: Already did (went a step farther had my machine at home -CURRENT use the one at work [the one with the probldem] as it's /etc/resolv.conf and as a forwarder in my named.conf and both worked fine) Forgot to mention that different ISP's so it is not a por

Re: DNS problems

2009-04-07 Thread Aryeh M. Friedman
Already did (went a step farther had my machine at home -CURRENT use the one at work [the one with the probldem] as it's /etc/resolv.conf and as a forwarder in my named.conf and both worked fine) Xin LI wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Aryeh M. Friedman wrote: I

Re: DNS problems

2009-04-08 Thread Aryeh M. Friedman
Bob Bishop wrote: Hi, On 7 Apr 2009, at 19:35, Aryeh M. Friedman wrote: I have registered and pointed to my name server the following domains: istudentunion.com (.net and .org) [etc] Actually, the registrar only seems to have delegated istudentunion.net I'm not sure that using a CNAM

setting up local authorative name server with a no-ip.com registered domain

2009-04-11 Thread Aryeh M. Friedman
I have 3 domains that are registered with no-ip.com (istudentunion.com, org and net). All three are also using their "no-ip plus" service which provides both static and dynamic resolution via their nameservers. When I configure the domains nameservers to be theirs everything works great (fo

Re: setting up local authorative name server with a no-ip.com registered domain

2009-04-11 Thread Aryeh M. Friedman
Aryeh M. Friedman wrote: I have 3 domains that are registered with no-ip.com (istudentunion.com, org and net). All three are also using their "no-ip plus" service which provides both static and dynamic resolution via their nameservers. When I configure the domains nameservers to

Re: setting up local authorative name server with a no-ip.com registered domain

2009-04-12 Thread Aryeh M. Friedman
Vincent Hoffman wrote: On 11/4/09 21:56, Aryeh M. Friedman wrote: I have 3 domains that are registered with no-ip.com (istudentunion.com, org and net). All three are also using their "no-ip plus" service which provides both static and dynamic resolution via their nameservers

dynamic and static DNS in the samie name server

2009-06-28 Thread Aryeh M. Friedman
We have a name server set up that contains all our static IP's (in office but not for remote workers because they all have dynamic IP's) we currently use dns/no-ip2 to manage this but I was wondering if it is possible to (easily) configure our internal nameserver to do this? _

Re: dynamic and static DNS in the samie name server

2009-06-28 Thread Aryeh M. Friedman
Mike Meyer wrote: On Sun, 28 Jun 2009 16:01:11 -0400 "Aryeh M. Friedman" wrote: We have a name server set up that contains all our static IP's (in office but not for remote workers because they all have dynamic IP's) we currently use dns/no-ip2 to manage this but

Re: Distributed SSH attack

2009-10-02 Thread Aryeh M. Friedman
Greg Larkin wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jeremy Lea wrote: Hi, This is off topic to this list, but I dont want to subscribe to -chat just to post there... Someone is currently running a distributed SSH attack against one of my boxes - one attempted login for root ev

[Fwd: odd nfs behaviour]

2010-02-24 Thread Aryeh M. Friedman
--- Begin Message --- I have home dir's nfs mounted via amd on the jack the following error occurred on (I do not have NIS I do uid/gid syncing manually): ~/master.C091 ar...@kate% telnet jack Trying 72.89.191.146... Connected to jack.istudentunion.com. Escape character is '^]'. Trying SRA sec

Re: unable to offline a failing drive in a zfs RAIDZ

2010-03-01 Thread Aryeh M. Friedman
Dan Nelson wrote: In the last episode (Mar 01), Aryeh Friedman said: I have a raidz setup as per the handbook but when I attempt to "offline" a failing drive it will not let me: kate# zpool status -c invalid option 'c' usage: status [-vx] [pool] ... kate# zpool status -v pool: stor

regenerating /var/db/pkg

2010-04-20 Thread Aryeh M. Friedman
I acciddentally rm'ed my /var/db/pkg and want to know is it possible to rgenerate it (I have portmaster and portupgrade installed) ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, sen