Wrong Geometry Disk Problem (Seagate ST3200822A - 200 GB)

2004-02-22 Thread David Markle
Hello all,
 
I have a problem installing FreeBSD 5.2.1 onto a Seagate Barracuda
ST3200822A - 200 GB ATA/100 Hard Drive.  Being a bit gun shy from a
previous geometry problem mis-install where I almost lost some serious
data, I am reluctant to just try things until they work.  So here goes
...
 
Using the Seagate disk tool, I created a 120 GB NTFS partition and a 200
MB FAT16 partition.  Installed Windows XP on the 120 GB part.  I want to
put FreeBSD on the remaining space (~80 GB).
 
The Seagate HD utility states the following:
 
LBA Sectors are 390,721,968.
Standard 512 bytes per sector.
 
XBIOS Physical (and HD Spec Sheet from manufacture) (what BSD FDISK Sees
too).
C16383
H16
S63
 
BIOS 
C24321
H255
S63
 
When the FreeBSD CD boots and enters sysinstall, I get the usual drive
geometry error.  I've extensively searched google for some sort of
method to calculate the true drive geometry with little success.  
 
1. Is the above BIOS info correct ??  
2. Ultimately, do I want the drive geometry to match up with the LBA
sectors ??
3. Can anyone point me towards something that correctly calculates any
drive's TRUE geometry ??
 
Any help is greatly appreciated...
 
david markle
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 5.1 COMMENTFILE Problem

2003-07-09 Thread DAVID MARKLE
Matthew,

OK, I read the FAQ and did not find reference to changing the owner 
of the ports tree (if you will, regestering the tree structure with 
CVSup).  I cannot even install cvsupit from /usr/ports/net/cvsupit.  
Doing a make install from that directory, I get the comment file.

Sorry for not getting it.


On Sun, Jul 06, 2003 at 07:57:11PM -0400, David Markle wrote:
 All,
 
 Installed 5.1 on a system and go to install CVSupit to get my tree in sync.
 I get the following message:
 
 #make install
 There is a COMMENTFILE in this port.
 COMMENTFILEs have been deprecated in
 favor of COMMENT variables.
 Please, rectify this.
 *** Error code 1
 
 Stop.
 
 I read somewhere (google search) that a ports collection update would fix
 this problem.  I can't seem to get to update my ports without CVS.
 installed the ports and src tree from the CD, but that still did not help.
 Why is this error occurring and where does it originate from.
 
 Any suggestions would be great.  Thanks.

Yes --- that's a FAQ.  You need to tell cvsup(1) that it owns all of
the files under /usr/ports --- that way, when you update it will
delete the old COMMENT files to bring your ports tree into line with
the latest available.

See http://www.cvsup.org/faq.html#caniadopt and subsequent questions.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


5.1 COMMENTFILE Problem

2003-07-07 Thread David Markle
All,

Installed 5.1 on a system and go to install CVSupit to get my tree in sync.
I get the following message:

#make install
There is a COMMENTFILE in this port.
COMMENTFILEs have been deprecated in
favor of COMMENT variables.
Please, rectify this.
*** Error code 1

Stop.

I read somewhere (google search) that a ports collection update would fix
this problem.  I can't seem to get to update my ports without CVS.
installed the ports and src tree from the CD, but that still did not help.
Why is this error occurring and where does it originate from.

Any suggestions would be great.  Thanks.

dm

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: libpcap install problem.

2003-06-27 Thread David Markle
Same error from /usr/sec/lib/libpcap  ...

# pwd
/usr/src/lib/libpcap
# make obj ; make ; make install
cc -O -pipe -mcpu=pentiumpro -DHAVE_CONFIG_H -Dyylval=pcap_lval -I/usr/src/l
ib/libpcap -I. -DINET6 -I/usr/src/lib/libpcap/../../contrib/libpcap  -c
/usr/src/lib/libpcap/../../contrib/libpcap/pcap-bpf.c -o pcap-bpf.o
/usr/src/contrib/libpcap/pcap-bpf.c: In function `pcap_open_live':
/usr/src/contrib/libpcap/pcap-bpf.c:207: storage size of `bdl' isn't known
/usr/src/contrib/libpcap/pcap-bpf.c:334: `BIOCGDLTLIST' undeclared (first
use in this function)
/usr/src/contrib/libpcap/pcap-bpf.c:334: (Each undeclared identifier is
reported only once
/usr/src/contrib/libpcap/pcap-bpf.c:334: for each function it appears in.)
/usr/src/contrib/libpcap/pcap-bpf.c: In function `pcap_set_datalink':
/usr/src/contrib/libpcap/pcap-bpf.c:487: `BIOCSDLT' undeclared (first use in
this function)
*** Error code 1

Stop in /usr/src/lib/libpcap.
install -C -o root -g wheel -m 444   libpcap.a /usr/lib
install: libpcap.a: No such file or directory
*** Error code 71

Stop in /usr/src/lib/libpcap.

-Original Message-
From: Dan Nelson [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 26, 2003 11:32 PM
To: David Markle
Cc: [EMAIL PROTECTED]
Subject: Re: libpcap install problem.


In the last episode (Jun 26), David Markle said:
 I am having a problem installing libpcap.  Have a fresh 5.0-CURRENT
 installed, ran cvsup and am all up to date with the tree.  enter the
 directory /usr/src/contrib/libpcap and run ./configure 

/usr/src/contrib is for raw 3rd-party sources.  You shouldn't build
anything in there.  Cd into /usr/src/lib/libpcap instead and run make
obj ; make ; make install.

--
Dan Nelson
[EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


libpcap install problem.

2003-06-26 Thread David Markle
I am having a problem installing libpcap.  Have a fresh 5.0-CURRENT
installed, ran cvsup and am all up to date with the tree.  enter the
directory /usr/src/contrib/libpcap and run ./configure 

Configure runs fine, but when I run make, I get the following :

# make
gcc -O2 -I. -DHAVE_CONFIG_H -c ./pcap-bpf.c
pcap-bpf.c: In function `pcap_open_live':
pcap-bpf.c:207: storage size of `bdl' isn't known
pcap-bpf.c:334: `BIOCGDLTLIST' undeclared (first use in this function)
pcap-bpf.c:334: (Each undeclared identifier is reported only once
pcap-bpf.c:334: for each function it appears in.)
pcap-bpf.c: In function `pcap_set_datalink':
pcap-bpf.c:487: `BIOCSDLT' undeclared (first use in this function)
*** Error code 1

Stop in /usr/src/contrib/libpcap.

Can someone explain what is going wrong here   Does this indicate I have
to install bpf first 

Much thanks in advance.

David

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Snort Ports Question

2003-06-03 Thread David Markle
I am having difficulties getting snort compiled with MySQL from the Ports
tree.  I have FreeBSD 5.0 and have used CVS to update my tree, so Snort is
current at 2.0.0.  In the ports directory (/usr/ports/security/snort) I run:

Make -DWITH_MYSQL

.. then ..

make install

All seems OK, finds the mysql client, no specific errors, etc. .

When I try and load snort, (/usr/local/bin/snort -c ..snort.conf ...blah),
my messages file says that snort was NOT compiled with the with_mysql 
What am I doing wrong 

Thanks in advance.

David Markle


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


CVS Update

2003-03-21 Thread David Markle
Quick question:

If I update my source tree with cvsup, will that include patch updates, etc.
for security related advisories like sendmail, bind, etc  ??   If so,
they will get updated via make/build world 

Thanks in advance.

David Markle



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


RE: CVS Update

2003-03-21 Thread David Markle
Thank you.

-Original Message-
From: Larry Rosenman [mailto:[EMAIL PROTECTED]
Sent: Friday, March 21, 2003 5:20 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: CVS Update




--On Friday, March 21, 2003 17:01:01 -0500 David Markle 
[EMAIL PROTECTED] wrote:

 Quick question:

 If I update my source tree with cvsup, will that include patch updates,
 etc. for security related advisories like sendmail, bind, etc  ??
 If so, they will get updated via make/build world 
Yes.


-- 
Larry Rosenman http://www.lerctr.org/~ler
Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED]
US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749




To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Make failure

2003-03-17 Thread David Markle
Can someone help me with a kernel rebuild make problem ??

I have the source tree in place and modified my CUSTOM kernel in
/usr/src/sys/i386/conf.  When I run make buildkernel it fails with the
following error:

make: don't know how to make buildkernel. Stop

I know I have missed something stupid, but can't find it on the site.
Thanks in advance.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


RE: Make failure

2003-03-17 Thread David Markle
Alright.  I'll give it a try.  Thanks a lot for your help.

-Original Message-
From: Jud [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 9:53 PM
To: Doug Reynolds; [EMAIL PROTECTED];
[EMAIL PROTECTED]
Subject: Re: Make failure


On Mon, 17 Mar 2003 21:49:45 -0500, Doug Reynolds [EMAIL PROTECTED] 
wrote:

 On Mon, 17 Mar 2003 16:43:07 -0500, David Markle wrote:

 Can someone help me with a kernel rebuild make problem ??

 I have the source tree in place and modified my CUSTOM kernel in
 /usr/src/sys/i386/conf.  When I run make buildkernel it fails with the
 following error:

 make: don't know how to make buildkernel. Stop

 I know I have missed something stupid, but can't find it on the site.
 Thanks in advance.

 Maybe I am wrong,

That is correct.  ;)

 but unless you've 'make buildworld', you can't 'make
 buildkernel'.  you have to do it the 'old-fashoned way'

Nope, Mr. Markle just needs to make sure he's in the /usr/src directory 
when he tries to rebuild the 'new way.'

Jud


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message