sshd_config and rsa on freebsd 4.4

2009-02-26 Thread prad
on fbsd7 getting in with rsa is easy:
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys

but on fbsd4.4
PubkeyAuthentication and AuthorizedKeysFile don't exist and you get a 
bad configuration option error.

but if you don't have those there, you get the password prompt because
of 
PasswordAuthentication yes
(and if you say no here you don't get in at all)

so how did they do it back then?
how did they get in using .ssh/authorized_keys??

-- 
In friendship,
prad

  ... with you on your journey
Towards Freedom
http://www.towardsfreedom.com (website)
Information, Inspiration, Imagination - truly a site for soaring I's
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


zoneinfo FreeBSD 4.4 - 4.11

2007-03-09 Thread Grant Peel
Hi all,

I got all my servers playiung nice with the new port for zoneinfo, all but one 
which is a simple slave nameserver ruynning FreeBSD 4.4.

When I installed the port on it, and try to run make, I get this:

voyager ROOT /usr/gpeel/zoneinfo  make
zoneinfo-: You need to define PORTNAME and PORTVERSION instead of PKGNAME.
(This port is too old for your bsd.port.mk, please update it to match
 your bsd.port.mk.)
*** Error code 1

Stop.

I have been reading lots about simply updateing the zone file itself, but have 
not been undersztanding what I am seeing. If anyone could simplify, I would 
appreciate it.

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


Re: zoneinfo FreeBSD 4.4 - 4.11

2007-03-09 Thread Vasile Cristescu
On Friday 09 March 2007 15:11, Grant Peel wrote:
 Hi all,

 I got all my servers playiung nice with the new port for zoneinfo, all but
 one which is a simple slave nameserver ruynning FreeBSD 4.4.

 When I installed the port on it, and try to run make, I get this:

 voyager ROOT /usr/gpeel/zoneinfo  make
 zoneinfo-: You need to define PORTNAME and PORTVERSION instead of PKGNAME.
 (This port is too old for your bsd.port.mk, please update it to match
  your bsd.port.mk.)
 *** Error code 1

 Stop.

 I have been reading lots about simply updateing the zone file itself, but
 have not been undersztanding what I am seeing. If anyone could simplify, I
 would appreciate it.

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

Hello,

Check /usr/ports/UPDATING :

20070205:
  AFFECTS: all users of FreeBSD 4.X
  AUTHOR: [EMAIL PROTECTED]

  The remnants of FreeBSD 4.X support have been removed from bsd.port.mk.
  Any remaining users should _not_ get this or any subsequent updates.

-- 
Best regards,
 Vasile Cristescu   
 Server Department
 Lamit Datacenter
 www.lamit.ro
 tel: +40213352206
 mob: +40788755463

PGP: http://hosting.lamit.ro/public.key


pgpQRtPtKiFFI.pgp
Description: PGP signature


Re: zoneinfo FreeBSD 4.4 - 4.11

2007-03-09 Thread Dan Busarow


On Mar 9, 2007, at 7:40 AM, Vasile Cristescu wrote:


On Friday 09 March 2007 15:11, Grant Peel wrote:

Hi all,

I got all my servers playiung nice with the new port for zoneinfo,  
all but

one which is a simple slave nameserver ruynning FreeBSD 4.4.

When I installed the port on it, and try to run make, I get this:

voyager ROOT /usr/gpeel/zoneinfo  make
zoneinfo-: You need to define PORTNAME and PORTVERSION instead of  
PKGNAME.

(This port is too old for your bsd.port.mk, please update it to match
 your bsd.port.mk.)
*** Error code 1

Stop.

I have been reading lots about simply updateing the zone file  
itself, but
have not been undersztanding what I am seeing. If anyone could  
simplify, I

would appreciate it.



Grant,

Search for an email I sent to the list on 2/22 with Subject

 Determining daylight savings changes on BSD

It has the steps needed to update manually from source.

Here's the steps

If you can't use the ports to update your time zone files here is the  
manual procedure.


1. create a new directory and cd into it
   e.g. # mkdir myzoneinfo; cd myzoneinfo

2. # fetch ftp://elsie.nci.nih.gov/pub/tzdata2007b.tar.gz

3. # tar -zxvf tzdata2007b.tar.gz

4. you will now have a bunch of files in the directory extracted from  
tzdata2007b.

   you need to edit zone.tab and comment out these lines

#AX +6006+01957 Europe/Mariehamn
#GG +4927-00232 Europe/Guernsey
#IM +5409-00428 Europe/Isle_of_Man
#JE +4912-00207 Europe/Jersey
#ME +4226+01916 Europe/Podgorica
#RS +4450+02030 Europe/Belgrade
#TL -0833+12535 Asia/Dili

5. run this command
   # zic -d ./zoneinfo -p America/Los_Angeles -m 0644 -y ./yearistype \
   africa antarctica asia australasia etcetera europe \
   factory northamerica southamerica systemv

   that's all one long line
   the zic command will create a new directory named zoneinfo and
   fill it with the new zoneinfo files.  You can compare it to
   /usr/share/zoneinfo

6. install the new files by running
   # cp -R -p ./zoneinfo/ /usr/share/zoneinfo
   # cp ./zone.tab /usr/share/zoneinfo
   # tzsetup

7. to verify that all went well run
   # zdump -v /etc/localtime | grep 2007
   your should get

/etc/localtime  Sun Mar 11 09:59:59 2007 UTC = Sun Mar 11 01:59:59  
2007 PST isdst=0 gmtoff=-28800
/etc/localtime  Sun Mar 11 10:00:00 2007 UTC = Sun Mar 11 03:00:00  
2007 PDT isdst=1 gmtoff=-25200
/etc/localtime  Sun Nov  4 08:59:59 2007 UTC = Sun Nov  4 01:59:59  
2007 PDT isdst=1 gmtoff=-25200
/etc/localtime  Sun Nov  4 09:00:00 2007 UTC = Sun Nov  4 01:00:00  
2007 PST isdst=0 gmtoff=-28800



I've done this on 1/2 dozen older 4.x and 5.x servers and it works fine.



Dan


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


Re: zoneinfo FreeBSD 4.4 - 4.11

2007-03-09 Thread Steve Bertrand
I have been reading lots about simply updateing the zone file itself, 
but
have not been undersztanding what I am seeing. If anyone could 
simplify, I

would appreciate it.


You can simply take the /etc/localtime file from one of the completed 
servers, copy it to the server that is failing, and put it into /etc, 
overwriting the original.


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


Re: zoneinfo FreeBSD 4.4 - 4.11

2007-03-09 Thread DAve

Dan Busarow wrote:


On Mar 9, 2007, at 7:40 AM, Vasile Cristescu wrote:


On Friday 09 March 2007 15:11, Grant Peel wrote:

Hi all,

I got all my servers playiung nice with the new port for zoneinfo, 
all but

one which is a simple slave nameserver ruynning FreeBSD 4.4.

When I installed the port on it, and try to run make, I get this:

voyager ROOT /usr/gpeel/zoneinfo  make
zoneinfo-: You need to define PORTNAME and PORTVERSION instead of 
PKGNAME.

(This port is too old for your bsd.port.mk, please update it to match
 your bsd.port.mk.)
*** Error code 1

Stop.

I have been reading lots about simply updateing the zone file itself, 
but
have not been undersztanding what I am seeing. If anyone could 
simplify, I

would appreciate it.



Grant,

Search for an email I sent to the list on 2/22 with Subject

 Determining daylight savings changes on BSD

It has the steps needed to update manually from source.

Here's the steps

If you can't use the ports to update your time zone files here is the 
manual procedure.


1. create a new directory and cd into it
   e.g. # mkdir myzoneinfo; cd myzoneinfo

2. # fetch ftp://elsie.nci.nih.gov/pub/tzdata2007b.tar.gz

3. # tar -zxvf tzdata2007b.tar.gz

4. you will now have a bunch of files in the directory extracted from 
tzdata2007b.

   you need to edit zone.tab and comment out these lines

#AX +6006+01957 Europe/Mariehamn
#GG +4927-00232 Europe/Guernsey
#IM +5409-00428 Europe/Isle_of_Man
#JE +4912-00207 Europe/Jersey
#ME +4226+01916 Europe/Podgorica
#RS +4450+02030 Europe/Belgrade
#TL -0833+12535 Asia/Dili

5. run this command
   # zic -d ./zoneinfo -p America/Los_Angeles -m 0644 -y ./yearistype \
   africa antarctica asia australasia etcetera europe \
   factory northamerica southamerica systemv

   that's all one long line
   the zic command will create a new directory named zoneinfo and
   fill it with the new zoneinfo files.  You can compare it to
   /usr/share/zoneinfo

6. install the new files by running
   # cp -R -p ./zoneinfo/ /usr/share/zoneinfo
   # cp ./zone.tab /usr/share/zoneinfo
   # tzsetup

7. to verify that all went well run
   # zdump -v /etc/localtime | grep 2007
   your should get

/etc/localtime  Sun Mar 11 09:59:59 2007 UTC = Sun Mar 11 01:59:59 2007 
PST isdst=0 gmtoff=-28800
/etc/localtime  Sun Mar 11 10:00:00 2007 UTC = Sun Mar 11 03:00:00 2007 
PDT isdst=1 gmtoff=-25200
/etc/localtime  Sun Nov  4 08:59:59 2007 UTC = Sun Nov  4 01:59:59 2007 
PDT isdst=1 gmtoff=-25200
/etc/localtime  Sun Nov  4 09:00:00 2007 UTC = Sun Nov  4 01:00:00 2007 
PST isdst=0 gmtoff=-28800



I've done this on 1/2 dozen older 4.x and 5.x servers and it works fine.


Just a heads up, that file is now tzdata2007c.tar.gz, created on Feb 
26th. At least I couldn't grab tzdata2007b.tar.gz anymore.


DAve


--
Three years now I've asked Google why they don't have a
logo change for Memorial Day. Why do they choose to do logos
for other non-international holidays, but nothing for
Veterans?

Maybe they forgot who made that choice possible.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: zoneinfo FreeBSD 4.4 - 4.11

2007-03-09 Thread Dan Busarow


On Mar 9, 2007, at 1:04 PM, DAve wrote:


Dan Busarow wrote:

On Mar 9, 2007, at 7:40 AM, Vasile Cristescu wrote:

On Friday 09 March 2007 15:11, Grant Peel wrote:

Hi all,

I got all my servers playiung nice with the new port for  
zoneinfo, all but

one which is a simple slave nameserver ruynning FreeBSD 4.4.

When I installed the port on it, and try to run make, I get this:

voyager ROOT /usr/gpeel/zoneinfo  make
zoneinfo-: You need to define PORTNAME and PORTVERSION instead  
of PKGNAME.
(This port is too old for your bsd.port.mk, please update it to  
match

 your bsd.port.mk.)
*** Error code 1

Stop.

I have been reading lots about simply updateing the zone file  
itself, but
have not been undersztanding what I am seeing. If anyone could  
simplify, I

would appreciate it.


Grant,
Search for an email I sent to the list on 2/22 with Subject
 Determining daylight savings changes on BSD
It has the steps needed to update manually from source.
Here's the steps
If you can't use the ports to update your time zone files here is  
the manual procedure.

1. create a new directory and cd into it
   e.g. # mkdir myzoneinfo; cd myzoneinfo
2. # fetch ftp://elsie.nci.nih.gov/pub/tzdata2007b.tar.gz
3. # tar -zxvf tzdata2007b.tar.gz
4. you will now have a bunch of files in the directory extracted  
from tzdata2007b.

   you need to edit zone.tab and comment out these lines
#AX +6006+01957 Europe/Mariehamn
#GG +4927-00232 Europe/Guernsey
#IM +5409-00428 Europe/Isle_of_Man
#JE +4912-00207 Europe/Jersey
#ME +4226+01916 Europe/Podgorica
#RS +4450+02030 Europe/Belgrade
#TL -0833+12535 Asia/Dili
5. run this command
   # zic -d ./zoneinfo -p America/Los_Angeles -m 0644 -y ./ 
yearistype \

   africa antarctica asia australasia etcetera europe \
   factory northamerica southamerica systemv
   that's all one long line
   the zic command will create a new directory named zoneinfo and
   fill it with the new zoneinfo files.  You can compare it to
   /usr/share/zoneinfo
6. install the new files by running
   # cp -R -p ./zoneinfo/ /usr/share/zoneinfo
   # cp ./zone.tab /usr/share/zoneinfo
   # tzsetup
7. to verify that all went well run
   # zdump -v /etc/localtime | grep 2007
   your should get
/etc/localtime  Sun Mar 11 09:59:59 2007 UTC = Sun Mar 11 01:59:59  
2007 PST isdst=0 gmtoff=-28800
/etc/localtime  Sun Mar 11 10:00:00 2007 UTC = Sun Mar 11 03:00:00  
2007 PDT isdst=1 gmtoff=-25200
/etc/localtime  Sun Nov  4 08:59:59 2007 UTC = Sun Nov  4 01:59:59  
2007 PDT isdst=1 gmtoff=-25200
/etc/localtime  Sun Nov  4 09:00:00 2007 UTC = Sun Nov  4 01:00:00  
2007 PST isdst=0 gmtoff=-28800
I've done this on 1/2 dozen older 4.x and 5.x servers and it works  
fine.


Just a heads up, that file is now tzdata2007c.tar.gz, created on  
Feb 26th. At least I couldn't grab tzdata2007b.tar.gz anymore.


Thanks for cathing and posting that Dave.  It is indeed supposed to  
be tzdata2007c.tar.gz


Dan


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


Re: Apache 2.0 + Tomcat 4.1 + mod_jk build on FreeBSD 4.4

2005-03-28 Thread Matthew Seaman
On Fri, Mar 25, 2005 at 09:08:42AM -0500, Danny Rubis wrote:

 Can you direct me to someone who can give some clues about
 this jakarta-tomcat-connectors-1.2.8-src (mod_jk) build error
 message:
 
 /bin/sh /usr/local/share/apache2/build/libtool --silent --mode=install 
 cp  `pwd`/mod_jk.so
 libtool: install: you must specify a destination
 Try `libtool --help --mode=install' for more information.
 *** Error code 1
 
 Notice the cp  `pwd`/mod_jk.so
 
 Seems something is missing after the cp.  Hmm.  But what?
 
 mod_jk is the connector between Apache and Tomcat.  It handles
 the passoff of JSP requests from Apache webserver to Tomcat
 servlet engine.

As I recall, this error comes about because the autoconf stuff in
mod_jk doesn't find the location of some C header files included with
the JDK.  Typical value should be something like:
/usr/local/jdk1.4.2/include

However, passing this value on the configure command line does not
work, which seems to be a bug in the mod_jk-1.2.8 autoconf stuff that
I don't have enough autoconf-fu to be able to fix.  Instead, you need
to define JAVA_HOME in the environment before running configre.

I've attached a diff against the www/mod_jk port (currently
mod_jk-1.2.6) which works for me.  I have submitted this to the mod_jk
port maintainer but he says he's getting strange slowdowns from
mod_jk-1.2.8, so he's not happy about committing it.  This patch also
adds a build dependency on Java to the port.  Personally I haven't
seen any slowdown problems.  I guess the upshot is: use at your own
risk.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   8 Dane Court Manor
  School Rd
PGP: http://www.infracaninophile.co.uk/pgpkey Tilmanstone
Tel: +44 1304 617253  Kent, CT14 0JL UK
diff -Nur /usr/ports/www/mod_jk/Makefile mod_jk/Makefile
--- /usr/ports/www/mod_jk/Makefile  Mon Dec  6 09:38:40 2004
+++ mod_jk/Makefile Thu Feb 17 15:47:33 2005
@@ -6,17 +6,22 @@
 #
 
 PORTNAME=  mod_jk
-PORTVERSION=   1.2.6
+PORTVERSION=   1.2.8
 PORTEPOCH?=1
 CATEGORIES=www
 MASTER_SITES=  ${MASTER_SITE_APACHE_JAKARTA}
-MASTER_SITE_SUBDIR=tomcat-connectors/jk/source
-DISTNAME=  jakarta-tomcat-connectors-jk-${PORTVERSION}-src
+MASTER_SITE_SUBDIR=tomcat-connectors/jk/source/jk-${PORTVERSION}
+DISTNAME=  jakarta-tomcat-connectors-${PORTVERSION}-src
 
 MAINTAINER?=   [EMAIL PROTECTED]
 COMMENT?=  Apache JK module for connecting to Tomcat using AJP1X
 
 USE_APACHE=YES
+USE_JAVA=  YES
+JAVA_BUILD=YES
+
+SUB_FILES= pkg-message mod_jk.conf.sample
+SUB_LIST+= APACHE_CONF=${APACHE_CONF}
 
 .include bsd.port.pre.mk
 
@@ -36,15 +41,15 @@
 .endif
 
 APACHE_CONF=   ${LOCALBASE}/etc/apache${APACHE2}
-WRKSRC=
${WRKDIR}/jakarta-tomcat-connectors-jk-${PORTVERSION}-src/jk/native
+WRKSRC=
${WRKDIR}/jakarta-tomcat-connectors-${PORTVERSION}-src/jk/native
 
 USE_GMAKE= YES
 GNU_CONFIGURE= YES
+CONFIGURE_ENV= JAVA_HOME=${JAVA_HOME}
 CONFIGURE_ARGS+=   --with-apxs=${APXS}
 
 do-install:
${APXS} -i -A -n jk ${WRKSRC}/apache-${APACHE_VER}/mod_jk.so
-   ${SED} -e s#%%APACHE_CONF%%#${APACHE_CONF}#g 
${FILESDIR}/mod_jk.conf.sample  ${WRKDIR}/mod_jk.conf.sample
${INSTALL_DATA} ${WRKDIR}/mod_jk.conf.sample ${APACHE_CONF}
${INSTALL_DATA} ${FILESDIR}/workers.properties.sample ${APACHE_CONF}
 
diff -Nur /usr/ports/www/mod_jk/distinfo mod_jk/distinfo
--- /usr/ports/www/mod_jk/distinfo  Thu Nov 25 13:23:57 2004
+++ mod_jk/distinfo Tue Feb  8 14:56:48 2005
@@ -1,2 +1,2 @@
-MD5 (jakarta-tomcat-connectors-jk-1.2.6-src.tar.gz) = 
018b91a0ce874cbc3dae7700f452838b
-SIZE (jakarta-tomcat-connectors-jk-1.2.6-src.tar.gz) = 849481
+MD5 (jakarta-tomcat-connectors-1.2.8-src.tar.gz) = 
eb579c47f8dd71e526d7561c919ce06d
+SIZE (jakarta-tomcat-connectors-1.2.8-src.tar.gz) = 798199
diff -Nur /usr/ports/www/mod_jk/files/mod_jk.conf.sample 
mod_jk/files/mod_jk.conf.sample
--- /usr/ports/www/mod_jk/files/mod_jk.conf.sample  Wed Jun 11 11:30:58 2003
+++ mod_jk/files/mod_jk.conf.sample Thu Jan  1 01:00:00 1970
@@ -1,14 +0,0 @@
-# Replace jsp-hostname with the hostname of your JSP server, as
-# specified in workers.properties.
-#
-IfModule mod_jk.c
-   JkWorkersFile %%APACHE_CONF%%/workers.properties
-   JkLogFile  logs/jk.log
-   JkLogLevel warn
-
-   # Sample JkMounts.  Replace these with the paths you would
-   # like to mount from your JSP server.
-   JkMount /*.jsp jsp-hostname
-   JkMount /servlet/* jsp-hostname
-   JkMount /examples/* jsp-hostname
-/IfModule
diff -Nur /usr/ports/www/mod_jk/files/mod_jk.conf.sample.in 
mod_jk/files/mod_jk.conf.sample.in
--- /usr/ports/www/mod_jk/files/mod_jk.conf.sample.in   Thu Jan  1 01:00:00 1970
+++ mod_jk/files/mod_jk.conf.sample.in  Wed Jun 11 11:30:58 2003
@@ -0,0 +1,14 @@
+# Replace jsp-hostname with the hostname of your 

Apache 2.0 + Tomcat 4.1 + mod_jk build on FreeBSD 4.4

2005-03-25 Thread Danny Rubis
Hey!
Can you direct me to someone who can give some clues about
this jakarta-tomcat-connectors-1.2.8-src (mod_jk) build error
message:
/bin/sh /usr/local/share/apache2/build/libtool --silent --mode=install 
cp  `pwd`/mod_jk.so
libtool: install: you must specify a destination
Try `libtool --help --mode=install' for more information.
*** Error code 1

Notice the cp  `pwd`/mod_jk.so
Seems something is missing after the cp.  Hmm.  But what?
mod_jk is the connector between Apache and Tomcat.  It handles
the passoff of JSP requests from Apache webserver to Tomcat
servlet engine.
Any help would be much appreciated.
Sans adieu,
Danny
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 4.4

2005-03-14 Thread Yance Kowara

ftp://ftp6.tw.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/4.4/

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 4.4

2005-03-13 Thread Bhaban Singh
Is there any source do download the FreeBSD 4.4. I really needed the
4.4 version.

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


Re: FreeBSD 4.4

2005-03-13 Thread W. D.
At 00:11 3/14/2005, Bhaban Singh wrote:
Is there any source do download the FreeBSD 4.4. I really needed the
4.4 version.

Yep:
http://MirrorList.FreeBSD.org/FBSDsites.php



Start Here to Find It Fast!™ - http://www.US-Webmasters.com/best-start-page/
$8.77 Domain Names - http://domains.us-webmasters.com/

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


FreeBSD 4.4 not available !!

2004-01-11 Thread mohanlal jangir
I want to download FreeBSD version 4.4 but this seems to be not available at
links specified at
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html

Could you tell me where can I download it. Is it available in CVS?

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


Re: FreeBSD 4.4 not available !!

2004-01-11 Thread Kent Stewart
On Sunday 11 January 2004 08:30 pm, mohanlal jangir wrote:
 I want to download FreeBSD version 4.4 but this seems to be not available
 at links specified at
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html

 Could you tell me where can I download it. Is it available in CVS?


It is really old but there are a couple of mirrors that still have it on their 
systems. Look at

http://www.freebsdmirrors.org/FBSDsites.php3?showi386ISO=do

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

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


Post-installation configuration problems with FreeBSD 4.4

2003-12-12 Thread Walt Haynes
I've installed FreeBSD 4.4 from the CD-ROM included in my FreeBSD Unleashed book 
(I installed 4.4 instead of 5.0 because it's supposedly more stable; 5.0 is a 
pre-release snapshot.). When I try to do the X Server configuration stuff, the server 
won't start and, consequently, X-Windows won't start. My video card is CinePak Codec 
by Radius, Inc. and my monitor is a 15 ASTVision 4i (Intel (r) 82810 graphics 
controller with 4MB memory, screen refresh rate of 60 hertz, resolution is 800x600, 
and 24 bit color quality. For the card option, CinePak doesn't show up in the list of 
potentials. Can you tell me what I might be doing wrong in my attempt to configure X 
server ? By the way, I have FreeBSD installed in a primary partition on a system on 
which I also run Windows XP Professional with Boot US boot manager. I'd appreciate any 
information that you can provide. Thank you.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Post-installation configuration problems with FreeBSD 4.4

2003-12-12 Thread Randi Harper
On Dec 12, 2003, at 11:27 AM, Walt Haynes wrote:

I've installed FreeBSD 4.4 from the CD-ROM included in my FreeBSD 
Unleashed book (I installed 4.4 instead of 5.0 because it's supposedly 
more stable; 5.0 is a pre-release snapshot.). When I try to do the X 
Server configuration stuff, the server won't start and, consequently, 
X-Windows won't start. My video card is CinePak Codec by Radius, Inc. 
and my monitor is a 15 ASTVision 4i (Intel (r) 82810 graphics 
controller with 4MB memory, screen refresh rate of 60 hertz, 
resolution is 800x600, and 24 bit color quality. For the card option, 
CinePak doesn't show up in the list of potentials. Can you tell me 
what I might be doing wrong in my attempt to configure X server ? By 
the way, I have FreeBSD installed in a primary partition on a system 
on which I also run Windows XP Professional with Boot US boot manager. 
I'd appreciate any information that you can provide. Thank you.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

You're just a teensy bit outdated.

FreeBSD 5.x is -RELEASE, just not -STABLE. and the latest version of 
FreeBSD 4.x is 4.9. This might be your problem.

Check freebsd.org.

Randi Harper

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


RE: Windows XP and FreeBSD 4.4 on the same hard drive

2003-10-20 Thread Aaron Burke
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Rod Person
 Sent: Tuesday, October 14, 2003 4:16 PM
 To: Walt Haynes; [EMAIL PROTECTED]
 Subject: Re: Windows XP and FreeBSD 4.4 on the same hard drive


 On Tuesday 14 October 2003 04:48 pm, Walt Haynes wrote:
  I am currently running Windows XP Professional on a HP
 Pavilion with a
  27.95GB hard drive which I've partitioned with FDISK. Windows is in the
  primary DOS partition (about 7GB)  on disk drive C and the extended DOS
  partition had three logical drives (D, E, and F) defined in it; they are
  7.3GB, 7.3GB, and 6.3GB respectively. I want to create my FreeBSD
  environment in the first logical drive (D). I know the starting
 and ending
  sector numbers so that I won't overwrite any data already on the drive.
  Does this sound reasonable ? And will I be able to install
 FreeBSD's boot
  manager to give me a choice of which OS I want to come up ? I'd
 really like
  to do this right the first time.

 It been quit some time since I've used 4.4 or installed FreeBSD with DOS
 partitions that existed, so someone can correct me if I am mistaken. As
 memory serves me you can install FreeBSD into a extended DOS partition.

 I would delete the partition that you want FreeBSD to be in. Then
 when you
 install FreeBSD let it take care of the formating for you.

 Otherwise, you should have no problem.
This is bad information. If you dont want to kill your logical
drives, dont delete them. Windows places all extended drives in one
extended partition. (FDISK wont let you choose otherwise).

It is my opinion that you obtain a copy of some partition movement
utilities such as Partition Magic. (even though it runs in Windows/DOS
only) you should still be able to use it. You can then resize your
partitions and make room for a FreeBSD slice.

* Positive not for Partition magic: You can create Emergency Disks
that are bootable. So having DOS/Windows installed is not a requirement.



 --
 Rod

 @ Home So No Cool Signature
 http://opensourcebeef.bsd.st


Aaron Burke
[EMAIL PROTECTED]


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


Windows XP and FreeBSD 4.4 on the same hard drive

2003-10-14 Thread Walt Haynes
I am currently running Windows XP Professional on a HP Pavilion with a 27.95GB 
hard drive which I've partitioned with FDISK. Windows is in the primary DOS partition 
(about 7GB)  on disk drive C and the extended DOS partition had three logical drives 
(D, E, and F) defined in it; they are 7.3GB, 7.3GB, and 6.3GB respectively. I want to 
create my FreeBSD environment in the first logical drive (D). I know the starting and 
ending sector numbers so that I won't overwrite any data already on the drive. Does 
this sound reasonable ? And will I be able to install FreeBSD's boot manager to give 
me a choice of which OS I want to come up ? I'd really like to do this right the first 
time.

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


Re: Windows XP and FreeBSD 4.4 on the same hard drive

2003-10-14 Thread Kent Stewart
On Tuesday 14 October 2003 01:48 pm, Walt Haynes wrote:
 I am currently running Windows XP Professional on a HP Pavilion
 with a 27.95GB hard drive which I've partitioned with FDISK. Windows
 is in the primary DOS partition (about 7GB)  on disk drive C and the
 extended DOS partition had three logical drives (D, E, and F) defined
 in it; they are 7.3GB, 7.3GB, and 6.3GB respectively. I want to
 create my FreeBSD environment in the first logical drive (D). I know
 the starting and ending sector numbers so that I won't overwrite any
 data already on the drive. Does this sound reasonable ? And will I be
 able to install FreeBSD's boot manager to give me a choice of which
 OS I want to come up ? I'd really like to do this right the first
 time.


The second you said logical D it won't work. FreeBSD needs a primary 
partition to work. You can have 4 primary partitions on an XP machine. 
You didn't have to use logicals.

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

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


Re: Windows XP and FreeBSD 4.4 on the same hard drive

2003-10-14 Thread Rod Person
On Tuesday 14 October 2003 04:48 pm, Walt Haynes wrote:
 I am currently running Windows XP Professional on a HP Pavilion with a
 27.95GB hard drive which I've partitioned with FDISK. Windows is in the
 primary DOS partition (about 7GB)  on disk drive C and the extended DOS
 partition had three logical drives (D, E, and F) defined in it; they are
 7.3GB, 7.3GB, and 6.3GB respectively. I want to create my FreeBSD
 environment in the first logical drive (D). I know the starting and ending
 sector numbers so that I won't overwrite any data already on the drive.
 Does this sound reasonable ? And will I be able to install FreeBSD's boot
 manager to give me a choice of which OS I want to come up ? I'd really like
 to do this right the first time.

It been quit some time since I've used 4.4 or installed FreeBSD with DOS 
partitions that existed, so someone can correct me if I am mistaken. As 
memory serves me you can install FreeBSD into a extended DOS partition.

I would delete the partition that you want FreeBSD to be in. Then when you 
install FreeBSD let it take care of the formating for you.

Otherwise, you should have no problem.

-- 
Rod

@ Home So No Cool Signature
http://opensourcebeef.bsd.st

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


Re: Windows XP and FreeBSD 4.4 on the same hard drive

2003-10-14 Thread Rod Person

 It been quit some time since I've used 4.4 or installed FreeBSD with DOS
 partitions that existed, so someone can correct me if I am mistaken. As
 memory serves me you can install FreeBSD into a extended DOS partition.

Sorry that should have been can't

-- 
Rod

@ Home So No Cool Signature
http://opensourcebeef.bsd.st

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


Re: [SAGE] FreeBSD 4.4-REL to FreeBSD 4.8-STABLE upgrade problem.

2003-07-10 Thread Joshua Oreman
On Wed, Jul 09, 2003 at 08:53:02PM -0500 or thereabouts, Dustin Puryear wrote:
 Before reading below: I am considering a new install rather than an upgrade 
 of our servers. However, now I just want to beat this problem. :)
 
 At 02:19 PM 7/8/2003 +, Phil Pennock wrote:
 On 2003-07-08 at 14:09 +, Phil Pennock wrote:
  There was a fairly major update to the IDE disk device handlers which
  required new device nodes.  Bringing in the new MAKEDEV script and
  running that to create the disk devices will probably let you boot on
  the new kernel and try to repair things from there.
 
 Okay, I'll go get more coffee after sending this.  You noticed this one.
 Sorry.
 
 There are two mergemaster steps, one which does the minimum needed to
 let the rest of the build continue.
 
 Yes, I ran 'mergemaster -p' but found that it really only merged my passwd 
 and group files with the new ones. Unless it did some other things behind 
 the scenes then there is no fix here.

mergemaster -p -- run before installworld or (preferably) buildworld -- good.

 
 The issue is, as you note, the device stuff.  As I said though, just
 pull in MAKEDEV manually and run it.  That will fix this.  Either
 sh MAKEDEV all or sh MAKEDEV ad0 ...
 
 I keep thinking it's the device stuff myself, but even MAKEDEV didn't do 
 the trick (interesting notes below this stuff):
 
 # cd /usr/src
 # make update
 # /usr/src/usr.sbin/mergemaster/mergemaster.sh -p
 # make buildworld
 # make buildkernel
 # make installkernel

You might have to installworld before rebooting -- I know I always do.

 # cd /etc
 # mv MAKEDEV MAKEDEV.old
 # cp /usr/src/etc/MAKEDEV .
 # sh MAKEDEV all

  # ls ad4s1* || sh MAKEDEV ad4s1

 # reboot
 
 Upon reboot I get my favorite lines:
 
 blah, blah
 blah, blah
 ar0: ... ATA RAID1 array [...] status: READY subdisks:
  0 READY ad4: ... at ata2-master UDMA100
  1 READY ad6: ... at ata3-master UDMA100
 acd0: CDROM ... at ata0-master PIO4
 Mounting root from ufs:/dev/ad4s1a
 Root mount failed: 16
 
 Manual root filesystem specification:
 blah, blah

According to intro(2), error 16 is EBUSY (Device busy).

I think the kernel is not letting you use a device in the RAID.
After all, it says subdisks:
  ad4
  ad6
and you're trying to boot from ad4. Could that be it?

HTH,
-- Josh

 
...snip...
 Mounting root from ufs:/dev/ad4s1a
 
 
 ---
 Dustin Puryear [EMAIL PROTECTED]
 Puryear Information Technology, LLC http://www.puryear-it.com
 Providing expertise in the management, integration, and
 security of Windows and UNIX systems, networks, and applications.
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: [SAGE] FreeBSD 4.4-REL to FreeBSD 4.8-STABLE upgrade problem.

2003-07-09 Thread Dustin Puryear
Before reading below: I am considering a new install rather than an upgrade 
of our servers. However, now I just want to beat this problem. :)

At 02:19 PM 7/8/2003 +, Phil Pennock wrote:
On 2003-07-08 at 14:09 +, Phil Pennock wrote:
 There was a fairly major update to the IDE disk device handlers which
 required new device nodes.  Bringing in the new MAKEDEV script and
 running that to create the disk devices will probably let you boot on
 the new kernel and try to repair things from there.
Okay, I'll go get more coffee after sending this.  You noticed this one.
Sorry.
There are two mergemaster steps, one which does the minimum needed to
let the rest of the build continue.
Yes, I ran 'mergemaster -p' but found that it really only merged my passwd 
and group files with the new ones. Unless it did some other things behind 
the scenes then there is no fix here.

The issue is, as you note, the device stuff.  As I said though, just
pull in MAKEDEV manually and run it.  That will fix this.  Either
sh MAKEDEV all or sh MAKEDEV ad0 ...
I keep thinking it's the device stuff myself, but even MAKEDEV didn't do 
the trick (interesting notes below this stuff):

# cd /usr/src
# make update
# /usr/src/usr.sbin/mergemaster/mergemaster.sh -p
# make buildworld
# make buildkernel
# make installkernel
# cd /etc
# mv MAKEDEV MAKEDEV.old
# cp /usr/src/etc/MAKEDEV .
# sh MAKEDEV all
# reboot
Upon reboot I get my favorite lines:

blah, blah
blah, blah
ar0: ... ATA RAID1 array [...] status: READY subdisks:
 0 READY ad4: ... at ata2-master UDMA100
 1 READY ad6: ... at ata3-master UDMA100
acd0: CDROM ... at ata0-master PIO4
Mounting root from ufs:/dev/ad4s1a
Root mount failed: 16
Manual root filesystem specification:
blah, blah
Okay, so I reboot, but this time I load kernel.good and the system comes up 
fine with the old 4.4-REL kernel:

ar0: ... ATA RAID1 array [...] status: READY subdisks:
  ad4: ... at ata2-master UDMA100
  ad6: ... at ata3-master UDMA100
acd0: CDROM ... at ata0-master using PIO4
Oh, and I found that this server has a HighPoint RAID controller which can 
do RAID 0, 1, 0+1, and JBOD. Looking in my array configuration I see that 
we have:

ChannelMode  Status
Primary Master: Mirror (RAID 1) for array #0   UDMA 5HDD0
Secondary Master: Mirror ...   UDMA 5Hidden
I initially said that this was a Promise controller.

Here is my /etc/fstab for /:

/dev/ad4s1a  /   ufs  rw  1   1

Following is /var/run/dmesg.log after booting from kernel.good:

Copyright (c) 1992-2001 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 4.4-RELEASE #1: Sun Jun 30 21:23:39 CDT 2002
[EMAIL PROTECTED]:/usr/src/sys/compile/WWW
Timecounter i8254  frequency 1193182 Hz
Timecounter TSC  frequency 1494468860 Hz
CPU: Pentium 4 (1494.47-MHz 686-class CPU)
  Origin = GenuineIntel  Id = 0xf07  Stepping = 7
  Features=0x3febf9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,b28,ACC
real memory  = 268369920 (262080K bytes)
avail memory = 257404928 (251372K bytes)
Preloaded elf kernel kernel.good at 0xc0375000.
md0: Malloc disk
Using $PIR table, 12 entries at 0xc00fdea0
npx0: math processor on motherboard
npx0: INT 16 interface
pcib0: Host to PCI bridge on motherboard
pci0: PCI bus on pcib0
pcib1: PCI to PCI bridge (vendor=8086 device=2532) at device 1.0 on pci0
pci1: PCI bus on pcib1
pci1: NVidia Riva Vanta TNT2 graphics accelerator at 0.0 irq 12
pcib2: Intel 82801BA/BAM (ICH2) Hub to PCI bridge at device 30.0 on pci0
pci2: PCI bus on pcib2
rl0: D-Link DFE-530TX+ 10/100BaseTX port 0x9000-0x90ff mem 
0xd900-0xd9ff irq 11 at device 3.0 on pci2
rl0: Ethernet address: 00:50:ba:60:7b:83
miibus0: MII bus on rl0
rlphy0: RealTek internal media interface on miibus0
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
atapci0: HighPoint HPT370 ATA100 controller port 
0xa400-0xa4ff,0xa000-0xa003,0x9c00-0x9c07,0x9800-0x9803,0x9400-0x9407 irq 
10 at device 6.0 on pci2
ata2: at 0x9400 on atapci0
ata3: at 0x9c00 on atapci0
isab0: Intel 82801BA/BAM (ICH2) PCI to LPC bridge at device 31.0 on pci0
isa0: ISA bus on isab0
atapci1: Intel ICH2 ATA100 controller port 0xf000-0xf00f at device 31.1 
on pci0
ata0: at 0x1f0 irq 14 on atapci1
ata1: at 0x170 irq 15 on atapci1
pci0: Intel 82801BA/BAM (ICH2) USB controller USB-A at 31.2 irq 11
pci0: unknown card (vendor=0x8086, dev=0x2443) at 31.3 irq 0
pci0: Intel 82801BA/BAM (ICH2) USB controller USB-B at 31.4 irq 11
pci0: unknown card (vendor=0x8086, dev=0x2445) at 31.5 irq 9
orm0: Option ROM at iomem 0xcc000-0xcf7ff on isa0
fdc0: NEC 72065B or clone at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
fdc0: FIFO enabled, 8 bytes threshold
fd0: 1440-KB 3.5 drive on fdc0 drive 0
atkbdc0: Keyboard controller (i8042) at port 0x60,0x64 on isa0
atkbd0: AT Keyboard

Re: [SAGE] FreeBSD 4.4-REL to FreeBSD 4.8-STABLE upgrade problem.

2003-07-09 Thread Michael E. Mercer
Not sure if this is the problem but my copy of MAKEDEV only makes ad0
thru ad3 when you type sh MAKEDEV all

You may still need to run sh MAKEDEV ad4

later
MEM


On Wed, 2003-07-09 at 21:53, Dustin Puryear wrote:
 Before reading below: I am considering a new install rather than an upgrade 
 of our servers. However, now I just want to beat this problem. :)
 
 At 02:19 PM 7/8/2003 +, Phil Pennock wrote:
 On 2003-07-08 at 14:09 +, Phil Pennock wrote:
   There was a fairly major update to the IDE disk device handlers which
   required new device nodes.  Bringing in the new MAKEDEV script and
   running that to create the disk devices will probably let you boot on
   the new kernel and try to repair things from there.
 
 Okay, I'll go get more coffee after sending this.  You noticed this one.
 Sorry.
 
 There are two mergemaster steps, one which does the minimum needed to
 let the rest of the build continue.
 
 Yes, I ran 'mergemaster -p' but found that it really only merged my passwd 
 and group files with the new ones. Unless it did some other things behind 
 the scenes then there is no fix here.
 
 The issue is, as you note, the device stuff.  As I said though, just
 pull in MAKEDEV manually and run it.  That will fix this.  Either
 sh MAKEDEV all or sh MAKEDEV ad0 ...
 
 I keep thinking it's the device stuff myself, but even MAKEDEV didn't do 
 the trick (interesting notes below this stuff):
 
 # cd /usr/src
 # make update
 # /usr/src/usr.sbin/mergemaster/mergemaster.sh -p
 # make buildworld
 # make buildkernel
 # make installkernel
 # cd /etc
 # mv MAKEDEV MAKEDEV.old
 # cp /usr/src/etc/MAKEDEV .
 # sh MAKEDEV all
 # reboot
 
 Upon reboot I get my favorite lines:
 
 blah, blah
 blah, blah
 ar0: ... ATA RAID1 array [...] status: READY subdisks:
   0 READY ad4: ... at ata2-master UDMA100
   1 READY ad6: ... at ata3-master UDMA100
 acd0: CDROM ... at ata0-master PIO4
 Mounting root from ufs:/dev/ad4s1a
 Root mount failed: 16
 
 Manual root filesystem specification:
 blah, blah
 
 Okay, so I reboot, but this time I load kernel.good and the system comes up 
 fine with the old 4.4-REL kernel:
 
 ar0: ... ATA RAID1 array [...] status: READY subdisks:
ad4: ... at ata2-master UDMA100
ad6: ... at ata3-master UDMA100
 acd0: CDROM ... at ata0-master using PIO4
 
 Oh, and I found that this server has a HighPoint RAID controller which can 
 do RAID 0, 1, 0+1, and JBOD. Looking in my array configuration I see that 
 we have:
 
 ChannelMode  Status
 Primary Master: Mirror (RAID 1) for array #0   UDMA 5HDD0
 Secondary Master: Mirror ...   UDMA 5Hidden
 
 I initially said that this was a Promise controller.
 
 Here is my /etc/fstab for /:
 
 /dev/ad4s1a  /   ufs  rw  1   1
 
 Following is /var/run/dmesg.log after booting from kernel.good:
 
 Copyright (c) 1992-2001 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 4.4-RELEASE #1: Sun Jun 30 21:23:39 CDT 2002
  [EMAIL PROTECTED]:/usr/src/sys/compile/WWW
 Timecounter i8254  frequency 1193182 Hz
 Timecounter TSC  frequency 1494468860 Hz
 CPU: Pentium 4 (1494.47-MHz 686-class CPU)
Origin = GenuineIntel  Id = 0xf07  Stepping = 7

 Features=0x3febf9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,b28,ACC
 real memory  = 268369920 (262080K bytes)
 avail memory = 257404928 (251372K bytes)
 Preloaded elf kernel kernel.good at 0xc0375000.
 md0: Malloc disk
 Using $PIR table, 12 entries at 0xc00fdea0
 npx0: math processor on motherboard
 npx0: INT 16 interface
 pcib0: Host to PCI bridge on motherboard
 pci0: PCI bus on pcib0
 pcib1: PCI to PCI bridge (vendor=8086 device=2532) at device 1.0 on pci0
 pci1: PCI bus on pcib1
 pci1: NVidia Riva Vanta TNT2 graphics accelerator at 0.0 irq 12
 pcib2: Intel 82801BA/BAM (ICH2) Hub to PCI bridge at device 30.0 on pci0
 pci2: PCI bus on pcib2
 rl0: D-Link DFE-530TX+ 10/100BaseTX port 0x9000-0x90ff mem 
 0xd900-0xd9ff irq 11 at device 3.0 on pci2
 rl0: Ethernet address: 00:50:ba:60:7b:83
 miibus0: MII bus on rl0
 rlphy0: RealTek internal media interface on miibus0
 rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
 atapci0: HighPoint HPT370 ATA100 controller port 
 0xa400-0xa4ff,0xa000-0xa003,0x9c00-0x9c07,0x9800-0x9803,0x9400-0x9407 irq 
 10 at device 6.0 on pci2
 ata2: at 0x9400 on atapci0
 ata3: at 0x9c00 on atapci0
 isab0: Intel 82801BA/BAM (ICH2) PCI to LPC bridge at device 31.0 on pci0
 isa0: ISA bus on isab0
 atapci1: Intel ICH2 ATA100 controller port 0xf000-0xf00f at device 31.1 
 on pci0
 ata0: at 0x1f0 irq 14 on atapci1
 ata1: at 0x170 irq 15 on atapci1
 pci0: Intel 82801BA/BAM (ICH2) USB controller USB-A at 31.2 irq 11
 pci0: unknown card (vendor=0x8086, dev=0x2443) at 31.3 irq 0
 pci0: Intel 82801BA/BAM (ICH2) USB controller USB-B

Re: FreeBSD 4.4-REL to FreeBSD 4.8-STABLE upgrade problem.

2003-07-08 Thread Kevin Oberman
 Date: Mon, 07 Jul 2003 17:07:39 -0500
 From: Dustin Puryear [EMAIL PROTECTED]
 Sender: [EMAIL PROTECTED]
 
 At 02:58 PM 7/7/2003 -0700, Freddie Cash wrote:
 On July 7, 2003 02:39 pm, you wrote:
   At 02:27 PM 7/7/2003 -0700, Freddie Cash wrote:
   On July 7, 2003 02:19 pm, you wrote:
   There is a blurb near the top that mentions running pwd_mkdb with
the -p option to rebuild the master password file.  I think this is
what is confusing you.
 
   My manpage must be outdated or just wrong then:
 
   # man mergemaster | grep -- -p
 the -p option to rebuild your password databases and recreate
 
 Read the begining of that sentence.  I'll bet it is talking about
 pwd_mkdb(8) and not mergemaster.
 
 Well crap. Still, my version doesn't mention anything about Pre-buildworld 
 mode so the pie on my face is at least tasty.
 
 Since you have already updated your source tree, read
 /usr/src/usr.sbin/mergemaster/mergemaster.8  That is the man page for
 /usr/src/usr.sbin/mergemaster/mergemaster.sh  That will explain
 everything, including when to run it using the -p parameter.  That
 would be pre-buildworld.
 
 Will do.
 
   Notice that there is no mention of mergemaster until step 6.
 
 The Makefile reads the same on my 4.8 system.  However, that should
 probably be updated, as every time I've seen a mention of mergemaster
 -p on any of the mailing lists, it has always occured before the
 buildworld.  (And that's the advice I've been following since the -p
 parameter was introduced.)
 
 Yes, updating the docs would be very helpful in situations.. oh, I don't 
 know.. like this one.

If you look at the source code (or were here when the -p option was
added to mergemaster, you would see that 'mergemaster -p' really just
runs mergemaster on a couple of files which could block installworld
from working if not already updated. At this time (in either STABLE or
CURRENT) it makes absolutely no difference whether it is run before or
after build of the world and kernel. It must be run before
installworld, although it only makes a difference on limited occasions.
(4.4 to 4.8 would be such a case.)

FWIW, the only files currently merged when the -p option is present
are the group and password files, but this list is subject to change
if needed. It is intended to be run before buildworld so that other
files can be included down the road if they are needed. But, at this
time, running it before installworld is all that is required.
-- 
R. Kevin Oberman, Network Engineer
Energy Sciences Network (ESnet)
Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab)
E-mail: [EMAIL PROTECTED]   Phone: +1 510 486-8634
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 4.4-REL to FreeBSD 4.8-STABLE upgrade problem.

2003-07-07 Thread Freddie Cash
On July 7, 2003 01:57 pm, Dustin Puryear wrote:
 I have a test server that is being used to test a 4.4-REL to
 4.8-STABLE upgrade, and I've found the system will no longer boot
 unless I load a saved 4.4-REL kernel. The error I get is along the
 lines of:

 Mounting root from ufs:/dev/ad4s1a
 Root mount failed: 16

 Per /usr/src/UPDATING there was a change in the ATA drive at 4.5-REL,
 but it mentioned running mergemaster to create the new devices, and
 according to /usr/src/Makefile I shouldn't do that until I get past
 the current stage (which is where I am stuck):

 (/usr/src/Makefile comments)
 1. cd /usr/src
 2. make buildworld
 3. make buildkernel
 4. make installkernel
 5. reboot
 6. mergemaster -p

There's your problem.  You should run mergemaster -p as step 2.  The 
-p means Pre-buildworld.

-- 
Freddie CashDistrict HelpDesk / Network Admin
[EMAIL PROTECTED]   [EMAIL PROTECTED]
(250) 374-0679 ext. 219

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


Re: FreeBSD 4.4-REL to FreeBSD 4.8-STABLE upgrade problem.

2003-07-07 Thread Dustin Puryear
At 01:59 PM 7/7/2003 -0700, Freddie Cash wrote:
 (/usr/src/Makefile comments)
 1. cd /usr/src
 2. make buildworld
 3. make buildkernel
 4. make installkernel
 5. reboot
 6. mergemaster -p
There's your problem.  You should run mergemaster -p as step 2.  The
-p means Pre-buildworld.
This was suggested on another list actually. Unfortunately, either you are 
wrong or the FreeBSD docs are wrong. In /usr/src/Makefile the steps are 
listed in the order I show above. Also, per the mergemaster manpage the -p 
option is used to update the password database and recreate /etc/passwd. 
Ultimately, I think that this is an issue with the kernel recognizing the 
storage system, but I could be wrong! Please do correct me if I am.

Quick reminder for others: The 4.4-REL kernel is able to mount / fine, but 
4.8-STABLE is not. This may either be a symptom of another problem, or the 
immediate problem.

Is this off-topic for freebsd-stable?

---
Dustin Puryear [EMAIL PROTECTED]
Puryear Information Technology, LLC http://www.puryear-it.com
Providing expertise in the management, integration, and
security of Windows and UNIX systems, networks, and applications.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 4.4-REL to FreeBSD 4.8-STABLE upgrade problem.

2003-07-07 Thread Dustin Puryear
At 02:27 PM 7/7/2003 -0700, Freddie Cash wrote:
On July 7, 2003 02:19 pm, you wrote:
From the man page for mergemaster:
 -p  Pre-buildworld mode.  Compares only files known to be
essen-
 tial to the success of {build|install}world, including
 /etc/make.conf.
There is a blurb near the top that mentions running pwd_mkdb with the -p
option to rebuild the master password file.  I think this is what is
confusing you.
My manpage must be outdated or just wrong then:

# man mergemaster | grep -- -p
 the -p option to rebuild your password databases and recreate
This is from a longer paragraph, and no mention is made of Pre-buildworld 
mode. This may be indeed what is throwing me. There seems to also be an 
error in /usr/src/Makefile since it states that:

# For individuals wanting to upgrade their sources (even if only a
# delta of a few days):
#
# 1.  `cd /usr/src'   (or to the directory containing your source tree).
# 2.  `make buildworld'
# 3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC).
# 4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
# 5.  `reboot'(in single user mode: boot -s from the loader prompt).
# 6.  `mergemaster -p'
# 7.  `make installworld'
# 8.  `mergemaster'
# 9.  `reboot'
Notice that there is no mention of mergemaster until step 6.

This is a test system, but it's remote and I don't want to clobber it 
unnecessarily.

---
Dustin Puryear [EMAIL PROTECTED]
Puryear Information Technology, LLC http://www.puryear-it.com
Providing expertise in the management, integration, and
security of Windows and UNIX systems, networks, and applications.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 4.4-REL to FreeBSD 4.8-STABLE upgrade problem.

2003-07-07 Thread Dustin Puryear
At 02:58 PM 7/7/2003 -0700, Freddie Cash wrote:
On July 7, 2003 02:39 pm, you wrote:
 At 02:27 PM 7/7/2003 -0700, Freddie Cash wrote:
 On July 7, 2003 02:19 pm, you wrote:
 There is a blurb near the top that mentions running pwd_mkdb with
  the -p option to rebuild the master password file.  I think this is
  what is confusing you.
 My manpage must be outdated or just wrong then:

 # man mergemaster | grep -- -p
   the -p option to rebuild your password databases and recreate
Read the begining of that sentence.  I'll bet it is talking about
pwd_mkdb(8) and not mergemaster.
Well crap. Still, my version doesn't mention anything about Pre-buildworld 
mode so the pie on my face is at least tasty.

Since you have already updated your source tree, read
/usr/src/usr.sbin/mergemaster/mergemaster.8  That is the man page for
/usr/src/usr.sbin/mergemaster/mergemaster.sh  That will explain
everything, including when to run it using the -p parameter.  That
would be pre-buildworld.
Will do.

 Notice that there is no mention of mergemaster until step 6.

The Makefile reads the same on my 4.8 system.  However, that should
probably be updated, as every time I've seen a mention of mergemaster
-p on any of the mailing lists, it has always occured before the
buildworld.  (And that's the advice I've been following since the -p
parameter was introduced.)
Yes, updating the docs would be very helpful in situations.. oh, I don't 
know.. like this one.

---
Dustin Puryear [EMAIL PROTECTED]
Puryear Information Technology, LLC http://www.puryear-it.com
Providing expertise in the management, integration, and
security of Windows and UNIX systems, networks, and applications.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 4.4-REL to FreeBSD 4.8-STABLE upgrade problem.

2003-07-07 Thread Dustin Puryear
I sent this to freebsd-questions earlier via the newsgroup, but I just 
found out today that the list-to-news gateway has been down for half a 
month now. Any idea when it's going back up? Who was hosting that service 
anyway?

And now for the question..

I have a test server that is being used to test a 4.4-REL to 4.8-STABLE 
upgrade, and I've found the system will no longer boot unless I load a 
saved 4.4-REL kernel. The error I get is along the lines of:

Mounting root from ufs:/dev/ad4s1a
Root mount failed: 16
At first I got this error using a custom kernel configuration known as WWW, 
but after getting this error I built a new kernel based on GENERIC:

# cd /usr/src
# make update
# make buildkernel
# make installkernel
# reboot
Per /usr/src/UPDATING there was a change in the ATA drive at 4.5-REL, but 
it mentioned running mergemaster to create the new devices, and according 
to /usr/src/Makefile I shouldn't do that until I get past the current stage 
(which is where I am stuck):

(/usr/src/Makefile comments)
1. cd /usr/src
2. make buildworld
3. make buildkernel
4. make installkernel
5. reboot
6. mergemaster -p
This machine does have the Promise RAID-1 IDE controller that is built into 
a lot motherboards these days. Here is my dmesg output from this server on 
a successful boot:

ar0: 39266MB ATA RAID1 array [5005/255/63] subdisks:
  ad4: 39266MB IC35L040AVER07-0 [79780/16/63] at ata2-master UDMA100
  ad6: 39266MB IC35L040AVER07-0 [79780/16/63] at ata3-master UDMA100
However, this test machine mimics how the web servers were setup, and they 
do not use /dev/ar, but instead use /dev/ad0:

# cat /etc/fstab
# DeviceMountpoint  FStype  Options DumpPass#
/dev/ad4s1b noneswapsw  0   0
/dev/ad4s1a /   ufs rw  1   1
/dev/ad4s1f /usrufs rw  2   2
/dev/ad4s1e /varufs rw  2   2
/dev/acd0c  /cdrom  cd9660  ro,noauto   0   0
proc/proc   procfs  rw  0   0
I am thinking that in 4.5-REL or newer (we are trying to upgrade to 4.8) 
that things might have changed? Again, /usr/src/UPDATING mentions some 
changes to the ATA code, but nothing specific to our configuration.

Any ideas here?

Following are the partition and disklabel information for /dev/ad4 and 
/dev/ar0:

# fdisk /dev/ad4
*** Working on device /dev/ad4 ***
parameters extracted from in-core disklabel are:
cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)
Figures below won't work with BIOS for partitions not in cyl 1
parameters to be used for BIOS calculations are:
cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)
Media sector size is 512
Warning: BIOS sector numbering starts with sector 1
Information from DOS bootblock is:
The data for partition 1 is:
sysid 165,(FreeBSD/NetBSD/386BSD)
start 63, size 80405262 (39260 Meg), flag 80 (active)
beg: cyl 0/ head 1/ sector 1;
end: cyl 1023/ head 254/ sector 63
The data for partition 2 is:
UNUSED
The data for partition 3 is:
UNUSED
The data for partition 4 is:
UNUSED
# disklabel -r ad4s1
# /dev/ad4s1c:
type: ESDI
disk: ad4s1
label:
flags:
bytes/sector: 512
sectors/track: 63
tracks/cylinder: 255
sectors/cylinder: 16065
cylinders: 5004
sectors/unit: 80405262
rpm: 3600
interleave: 1
trackskew: 0
cylinderskew: 0
headswitch: 0   # milliseconds
track-to-track seek: 0  # milliseconds
drivedata: 0
8 partitions:
#size   offsetfstype   [fsize bsize bps/cpg]
  a:   20480004.2BSD 1024  819216   # (Cyl.0 - 12*)
  b:  1056032   204800  swap# (Cyl.   12*- 78*)
  c: 804052620unused0 0 # (Cyl.0 - 5004*)
  e:40960  12608324.2BSD 1024  819216   # (Cyl.   78*- 81*)
  f: 79103470  13017924.2BSD 1024  819216   # (Cyl.   81*- 5004*)
# fdisk /dev/ar0
*** Working on device /dev/ar0 ***
parameters extracted from in-core disklabel are:
cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)
Figures below won't work with BIOS for partitions not in cyl 1
parameters to be used for BIOS calculations are:
cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)
Media sector size is 512
Warning: BIOS sector numbering starts with sector 1
Information from DOS bootblock is:
The data for partition 1 is:
sysid 165,(FreeBSD/NetBSD/386BSD)
start 63, size 80405262 (39260 Meg), flag 80 (active)
beg: cyl 0/ head 1/ sector 1;
end: cyl 1023/ head 254/ sector 63
The data for partition 2 is:
UNUSED
The data for partition 3 is:
UNUSED
The data for partition 4 is:
UNUSED
# disklabel -r ar0
# /dev/ar0c:
type: ESDI
disk: ad4s1
label:
flags:
bytes/sector: 512
sectors/track: 63
tracks/cylinder: 255
sectors/cylinder: 16065
cylinders: 5004
sectors/unit: 80405262
rpm: 3600
interleave: 1
trackskew: 0
cylinderskew: 0
headswitch: 0   # milliseconds
track-to-track seek: 0  # milliseconds

Installing SquidGuard on FreeBSD 4.4

2003-06-17 Thread Simon-Pierre Butsana
Hi,

I am trying to install SquidGuard on a FreeBSD server but this doesn't work. I 
succeeded in installing SquidCache that works fine.
Can you advice me in getting a successful installation of SquidGuard on FreeBSD 4.4?
Alternatively, can you advice me a access controller and redirector working fine with 
FreeBSD 4.4?
Thanks for your support,

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


Re: Installing SquidGuard on FreeBSD 4.4

2003-06-17 Thread Jaime
On Tue, 17 Jun 2003, Simon-Pierre Butsana wrote:
 I am trying to install SquidGuard on a FreeBSD server but this doesn't
 work. I succeeded in installing SquidCache that works fine. Can you
 advice me in getting a successful installation of SquidGuard on FreeBSD
 4.4? Alternatively, can you advice me a access controller and redirector
 working fine with FreeBSD 4.4?

SquidGuard uses squid.  I would actually recommend adding
DansGuardian to your filters.  That is how I do things.  DansGuardian
loads the SquidGuard files and speaks to squid, squid does the web site
retrieval and caching, nad some ipfw rules handle redirection and prevent
anyone from accessing squid directly.  (Accessing squid directly would
circumvent DansGuardian.)

There are lots of docs on the web that detail this.  Most of the
settings in the squid configuration files are OK in their default form.  I
think that I changed about a half dozen settings at most.

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


How can I recover the password for root in FreeBSD 4.4

2003-06-04 Thread Simon-Pierre Butsana
Hi,

I changed yesterday the password for root on my server because I found it too simple. 
Unfortunately I didn't write it and now I just can't remind it. I still have access to 
an account belonging to the wheel group. Is there any means to recover or to set a new 
password for root?
I would appreciate any help on this.
many thanks,

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


Re: How can I recover the password for root in FreeBSD 4.4

2003-06-04 Thread Jens Rehsack
On 6/4/2003 10:54 AM, Simon-Pierre Butsana wrote:
 Hi,

Hi Simon,

 I changed yesterday the password for root on my server because I found it too simple.

That is a good idea - even with the bad the side effects you expirience
now :-)

 Unfortunately I didn't write it and now I just can't remind it. I
still have access
 to an account belonging to the wheel group. Is there any means to
recover or to set
 a new password for root?

I don't think this will help. Best would be to set the machine in single
user mode, either by booting using 'boot -s' or using 'shutdown now'.
Please don't do this if you don't have physical access to console

If you're in single user mode, choose a shell you want to use. /bin/sh
is a good choice. After that, simply reset your password using passwd(1).

 I would appreciate any help on this.

Good luck,
Jens

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


Re: How can I recover the password for root in FreeBSD 4.4

2003-06-04 Thread Simon Barner
Hi,

 I changed yesterday the password for root on my server because I found it too 
 simple. Unfortunately I didn't write it and now I just can't remind it. I still have 
 access to an account belonging to the wheel group. Is there any means to recover or 
 to set a new password for root?
 I would appreciate any help on this.
 many thanks,
 

If you have access to the console, this should do the trick:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/admin.html#FORGOT-ROOT-PW

Simon


signature.asc
Description: Digital signature


Re: How can I recover the password for root in FreeBSD 4.4

2003-06-04 Thread Olivier Nicole
 I changed yesterday the password for root on my server because I found it too s

If you have access to the concole, boot as single user and remove the
password from /etc/master.password

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


Re: How can I recover the password for root in FreeBSD 4.4

2003-06-04 Thread Sunil Sunder Raj
Hi,

CHANGE ROOT PASSWORD
=
STEPS
=
As the os(FREEBSD) is starting it will display the following message:
Hit [Enter] to boot immediately, or any other key for command prompt.

Booting [kernel ] in 10 seconds...

You should now ress the space bar, and you will see the following message:

Type '?' for a list of commands, or 'help' for more detailed help.

ok

now type boot -s and press the enter key to start FreeBSD in single user
mode. After the system boots, you should see the statement:
Enter fill pathname of shell or RETURN for /bin/sh:

Press the enter key and you will have a # prompt.

[Mount  the filesystems]

At the command prompt. issue the mount command. This command will mount
all the filesystems listed in your /etc/fstab file.
# mount -t ufs -a

[Change the root password]

Issue the passwd command and you will be prompted to enter a new password
for the root account.
#passwd
New password:
passwd: updating the database...
passwd: done
[Change the manage password]

#passwd manage

#exit
There is no need to reboot the operating system to go to multi-user
mode. The exit command will cause the system to return to multi-user miode
without a reboot.
Regards
SSR

From: Simon-Pierre Butsana [EMAIL PROTECTED]
Reply-To: Simon-Pierre Butsana [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: How can I recover the password for root in FreeBSD 4.4
Date: Wed, 4 Jun 2003 09:54:20 +0100
Hi,

I changed yesterday the password for root on my server because I found it 
too simple. Unfortunately I didn't write it and now I just can't remind it. 
I still have access to an account belonging to the wheel group. Is there 
any means to recover or to set a new password for root?
I would appreciate any help on this.
many thanks,

Simon
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
_
Technical writer?. Earn more now! 
http://server1.msn.co.in/msnleads/tis/index.asp Find out how.

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


searching for documentation in english for mysql on freebsd 4.4

2003-03-17 Thread frank amo


Hello, I am looking for some documentation in english that can help me get 
mysql working on my freeBSD box.

I am using FreeBSD 4.4 and I downloaded this file for FreeBSD, I am aware 
that it is written for 4.7, that may be the problem that I am having.

http://www.mysql.de/downloads/mysql-3.23.html

Here is their documentation, this is why Im emailing you guys.:
http://www.mysql.de/documentation/mysql/bychapter/index.html
Its the best Ihave found so far, but its not in english.
Is there a site you know of that can help me with MySQL on FreeBSD?
I will appreciate it.





_



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


Re: searching for documentation in english for mysql on freebsd 4.4

2003-03-17 Thread Andrey Simonenko
On Mon, 17 Mar 2003 08:49:41 + (UTC) in lucky.freebsd.questions, frank amo wrote:
 
 
 
 Hello, I am looking for some documentation in english that can help me get 
 mysql working on my freeBSD box.
 
 I am using FreeBSD 4.4 and I downloaded this file for FreeBSD, I am aware 
 that it is written for 4.7, that may be the problem that I am having.
 
 http://www.mysql.de/downloads/mysql-3.23.html
 
 Here is their documentation, this is why Im emailing you guys.:
 http://www.mysql.de/documentation/mysql/bychapter/index.html
 
 Its the best Ihave found so far, but its not in english.
 Is there a site you know of that can help me with MySQL on FreeBSD?
 

Why not to start with www.mysql.com, and find English version of
MySQL documentation there?  MySQL Reference Manual has information
about building MySQL on FreeBSD.

By the way, there is a port for MySQL in FreeBSD ports collection, may
be this helps you more.

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


Re: FreeBSD 4.4 Questions

2003-02-26 Thread Neeraj Arora
another good place to search for information would be the book

the design and implementation of 4.4 bsd

regards,
neeraj

 Willie Viljoen [EMAIL PROTECTED] 02/26/03 06:52PM 
On Wednesday 26 February 2003 9:34, someone, possibly Aas, Eskild, typed:
 Dear Sirs


 We are three students attending Hærens Ingeniørhøgskole (the norwegian
 millitary engineering school). We are currently working on an assignment
 about operating systems. We are writing about FreeBSD 4.4. We would like
 to know if you can help us find , or tell us where we can find
 information about these following subjects:

 * OS structure
 * Process-handling
 * CPU-handling
 * Memory-handling
 * Filesystem (implementation)
 * I/O structure
 * Security

A good place to start would be the FreeBSD developer's handbook, this is 
available at 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/index.html 

It is not written specifically about 4.4, which has been deprecated for 
quite some time now, but focuses on FreeBSD in general, it should get you 
well on your way there though.

Will

-- 
Willie Viljoen
Freelance IT Consultant

214 Paul Kruger Avenue, Universitas
Bloemfontein
9321
South Africa

+27 51 522 15 60
+27 51 522 44 36 (after hours)
+27 82 404 03 27 (mobile)

[EMAIL PROTECTED] 

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


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


Re: FreeBSD 4.4 Questions

2003-02-26 Thread Willie Viljoen
On Wednesday 26 February 2003 10:59, someone, possibly Neeraj Arora, typed:
 another good place to search for information would be the book

 the design and implementation of 4.4 bsd

Neeraj,

I might be completely off, but I think this book goes to 4.4BSD as it was 
published by UCB. This is very different from FreeBSD 4.4. 4.4BSD is what 
FreeBSD 1.0 (and everything following that) was based on :)

This would still be a good read to get some historical insights into the 
architecture of BSD though.

Will

  Willie Viljoen [EMAIL PROTECTED] 02/26/03 06:52PM 

 On Wednesday 26 February 2003 9:34, someone, possibly Aas, Eskild, typed:
  Dear Sirs
 
 
  We are three students attending Hærens Ingeniørhøgskole (the norwegian
  millitary engineering school). We are currently working on an
  assignment about operating systems. We are writing about FreeBSD 4.4.
  We would like to know if you can help us find , or tell us where we can
  find information about these following subjects:
 
  *   OS structure
  *   Process-handling
  *   CPU-handling
  *   Memory-handling
  *   Filesystem (implementation)
  *   I/O structure
  *   Security

 A good place to start would be the FreeBSD developer's handbook, this is
 available at
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/inde
x.html

 It is not written specifically about 4.4, which has been deprecated for
 quite some time now, but focuses on FreeBSD in general, it should get you
 well on your way there though.

 Will

-- 
Willie Viljoen
Freelance IT Consultant

214 Paul Kruger Avenue, Universitas
Bloemfontein
9321
South Africa

+27 51 522 15 60
+27 51 522 44 36 (after hours)
+27 82 404 03 27 (mobile)

[EMAIL PROTECTED]

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


Re: FreeBSD 4.4 Questions

2003-02-26 Thread Gary D Kline
On Wed, Feb 26, 2003 at 08:34:26AM +0100, Aas, Eskild wrote:
 
 
 Dear Sirs
 
 
 We are three students attending Hærens Ingeniørhøgskole (the norwegian millitary 
 engineering school).
 We are currently working on an assignment about operating systems. We are writing 
 about FreeBSD 4.4. We would like to know if you can help us find , or tell us where 
 we can find information about these following subjects:
 
 * OS structure
 * Process-handling
 * CPU-handling
 * Memory-handling
 * Filesystem (implementation)
 * I/O structure
 * Security
 
 
 We would be very greatfull if we could get this information as soon as possible, 
 because this assignment is due 03.07.03 (Next Friday)
 
 

For an in-depth view of most of your topics you might want to
study The Design and Implementation of the 4.3BSD UNIX 
Operating System by Kirk McKusick et al.  (There is probably
a 4.4BSD version by now; you'll need to google around.)

You guys are going to be busy, wow!

gary kline

 

-- 
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public service Unix


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


Re: FreeBSD 4.4 Questions

2003-02-26 Thread taxman
On Wednesday 26 February 2003 12:13 pm, Gary D Kline wrote:
 On Wed, Feb 26, 2003 at 08:34:26AM +0100, Aas, Eskild wrote:
  Dear Sirs
 
 
  We are three students attending Hærens Ingeniørhøgskole (the norwegian
  millitary engineering school). We are currently working on an assignment
  about operating systems. We are writing about FreeBSD 4.4. We would like
  to know if you can help us find , or tell us where we can find
  information about these following subjects:
 
  *   OS structure
  *   Process-handling
  *   CPU-handling
  *   Memory-handling
  *   Filesystem (implementation)
  *   I/O structure
  *   Security

Uh, hi.  You're asking someone else to do your work for you.  An online 
tradition, but a questionable one in terms of what you'll learn.
There is a lot of information on that in the FreeBSD Handbook and the 
developers handbook, both available from the FreeBSD.org site.
The real details of that information exists only in the brains of the 
developers and to an extent in the mailing list archives.  The -hackers and 
-current mailing lists are especially know for the detailed conerstions on 
topics like those.

  We would be very greatfull if we could get this information as soon as
  possible, because this assignment is due 03.07.03 (Next Friday)

   For an in-depth view of most of your topics you might want to
   study The Design and Implementation of the 4.3BSD UNIX
   Operating System by Kirk McKusick et al.  (There is probably
   a 4.4BSD version by now; you'll need to google around.)

Gary is this a joke?  The Design and Implementation of the 4.4BSD Operating 
System by McKusik et al.  was published in 1996.  4.4BSD is what FreeBSD 1.0 
and later (along with NetBSD, and therefore later OpenBSD) were based on.   
The 4.3BSD version of the book came out a year or so before that.
Though much in FreeBSD has changed since those books were published, they 
remain an excellent introduction to the concepts that underly FreeBSD.  The 
implementations have nearly all changed.
There were rumors that Kirk was writing an updated FreeBSD version of the 
book, but my guess was the profitability of it was questioned.  Kirk sells 
courses and tapes, and I'm sure does well with them.
 http://www.mckusick.com/courses/index.html
with among other things a course on FreeBSD Kernel Internals: An Intensive 
Code Walkthrough  tm

Tim

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


FreeBSD 4.4 Questions

2003-02-25 Thread Aas, Eskild


Dear Sirs


We are three students attending Hærens Ingeniørhøgskole (the norwegian millitary 
engineering school).
We are currently working on an assignment about operating systems. We are writing 
about FreeBSD 4.4. We would like to know if you can help us find , or tell us where we 
can find information about these following subjects:

*   OS structure
*   Process-handling
*   CPU-handling
*   Memory-handling
*   Filesystem (implementation)
*   I/O structure
*   Security


We would be very greatfull if we could get this information as soon as possible, 
because this assignment is due 03.07.03 (Next Friday)


We hope you can help us



Yours sincerely

Corporal Aas, Eskild 
Corporal Holth, Per-Christian
Corporal Johnsen, Anders  

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


Re: FreeBSD 4.4 Questions

2003-02-25 Thread Willie Viljoen
On Wednesday 26 February 2003 9:34, someone, possibly Aas, Eskild, typed:
 Dear Sirs


 We are three students attending Hærens Ingeniørhøgskole (the norwegian
 millitary engineering school). We are currently working on an assignment
 about operating systems. We are writing about FreeBSD 4.4. We would like
 to know if you can help us find , or tell us where we can find
 information about these following subjects:

 * OS structure
 * Process-handling
 * CPU-handling
 * Memory-handling
 * Filesystem (implementation)
 * I/O structure
 * Security

A good place to start would be the FreeBSD developer's handbook, this is 
available at 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/index.html

It is not written specifically about 4.4, which has been deprecated for 
quite some time now, but focuses on FreeBSD in general, it should get you 
well on your way there though.

Will

-- 
Willie Viljoen
Freelance IT Consultant

214 Paul Kruger Avenue, Universitas
Bloemfontein
9321
South Africa

+27 51 522 15 60
+27 51 522 44 36 (after hours)
+27 82 404 03 27 (mobile)

[EMAIL PROTECTED]

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


Re: Error on installing FreeBSD 4.4 on Dell Inspiron 2650 ( 2.0 GHz )

2002-11-30 Thread soheil soheil
Dear All
I found the way :
when the kernel is going to being up to install press space at command
OKboot -c
and then
config:eisa 0
config:quit

then install and after FreeBSD is installed do this routine again
make the device eisa in config file of the kernel commented out and then 
compile the kernel
You will get the Power of FreeBSD 4.4 over Dell Inspiron

THANX


_
The new MSN 8: advanced junk mail protection and 2 months FREE* 
http://join.msn.com/?page=features/junkmail


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


Getting SCSI Scanner to work (with Symbios 53c810a and FreeBSD 4.4)

2002-11-30 Thread Peter Much

Keywords: FreeBSD SANE Scanner Mustek SCSI MFS-6000CX synchronous disable Symbios 
53c810a

Just for the records, or: to whom it may concern.

This is what I had to do to get a scsi scanner to work. I post it
here so others having a similar problem may get inspired.

I got some Mustek MFS-6000CX. The SANE docs say this scanner
will not run synchronous scsi transfers and will not disconnect/
reconnect.

The Qlogic 1020 controller does not detect it, but instead it will
hang infinitely at biosboot.

The WD7000 controller will detect it, but either it does not report
it to the host, or the FreeBSD driver does not recognize it. I did 
not check this further, as this ISA controller is rather outdated
(although it likely might be good enough for a scanner).

The Symbios 53c810a will detect the scanner at biosboot as an
asynchronous scsi device, and also FreeBSD detects it as devicetype 
Scanner when looking for devices. But it is not possible
to send any scsi command (like tur, inquiry, etc.) to the scanner;
none will be answered. 

Modifying parameters with camcontrol negotiate does not help.

The scanner will be lost at camcontrol rescan and will never be 
detected again until system reboot.

Each time a scsi command is issued to the scanner, there will be
no answer, but a kernel error message is logged:

/kernel: (probe5:sym0:0:6:0): phase change 6-7 6@07c5bf8c resid=5.

---

I investigated the source of the Symbios driver and found out:
It is not possible to switch off synchronous transfer negotiation
for a device. There is a variable named period in the source,
and it is set to 25, and it has to do something with synchronous
transfer.
The driver will try to negotiate this value with every device, 
and when it does this to an asynch device, the above error 
phase change 6-7 will appear. 
This happens with other asynch devices too. But there it does
happen only once, at detection time. Afterwards the period
value is changed to 0, and there will be no problems. Obviousely
there is some reaction from the device, and this reaction makes
that the driver changes that value.
And obviousely the Mustek scanner does not provide this expected
reaction, so the 25 value is negotiated again and again before
each scsi command, and then the command does fail due to the phase
change error.

So, after figuring this out, the solution is rather simple: we 
need to change the period value to 0 on our own initiative.

I did not find a quirk table for generic scsi devices where such
things could be meddled with. (This would have been the nice solution,
making the modification dependent on the scanner's device id string.)

Instead, I did hard-code the scanner's scsi-id via a config file
option. The tradeoff is, if you have more than one Symbios
controller in the machine, then the respective scsi-id on each
bus will have synch transfers disabled. I did not notice any
other tradeoff - I have a disk and two tapes on that bus, and
they work just fine (except for the typical effects of having
a device on the bus that does not disconnect/reconnect).

The disabling of disconnect/reconnect is simple and works as 
documented: camcontrol negotiate 0:6:0 -D disable, where 6
is the scsi-id of the scanner.

Here is the diff to the Symbios driver, it applies to the source
from RELENG_4_4_0_RELEASE.

*** sys/conf/options.i386.orig  Wed Aug 15 03:23:48 2001
--- sys/conf/options.i386   Thu Nov 28 02:49:01 2002
***
*** 1,4 
! # $FreeBSD: src/sys/conf/options.i386,v 1.132.2.7 2001/08/15 01:23:48 peter Exp $
  
  DISABLE_PSE
  IDE_DELAY
--- 1,4 
! # $FreeBSD: $
  
  DISABLE_PSE
  IDE_DELAY
***
*** 133,138 
--- 133,140 
  PCVT_SCREENSAVER  opt_pcvt.h
  PCVT_USEKBDSECopt_pcvt.h
  PCVT_VT220KEYBopt_pcvt.h
+ 
+ SYM_MUSTEK_6000CX_ID  opt_sym.h
  
  # voxware options
  GUS_DMA2  opt_sound.h
*** sys/dev/sym/sym_hipd.c.orig Thu Nov 28 02:50:07 2002
--- sys/dev/sym/sym_hipd.c  Thu Nov 28 02:55:11 2002
***
*** 55,61 
   * SUCH DAMAGE.
   */
  
! /* $FreeBSD: src/sys/dev/sym/sym_hipd.c,v 1.6.2.10 2001/07/08 20:04:04 groudier Exp 
$ */
  
  #define SYM_DRIVER_NAME   sym-1.6.5-2902
  
--- 55,61 
   * SUCH DAMAGE.
   */
  
! /* $FreeBSD: $ */
  
  #define SYM_DRIVER_NAME   sym-1.6.5-2902
  
***
*** 7836,7841 
--- 7836,7849 
 *  Build a negotiation message if needed.
 *  (nego_status is filled by sym_prepare_nego())
 */
+ #ifdef SYM_MUSTEK_6000CX_ID
+   if (tp-tinfo.current.period  != tp-tinfo.goal.period 
+   ccb_h-target_id == SYM_MUSTEK_6000CX_ID) {
+   printf(Fixing goal period for Mustek 6000CX: %d-%d\n,
+   tp-tinfo.goal.period, tp-tinfo.current.period);
+   tp-tinfo.goal.period = tp-tinfo.current.period;
+   } 
+ #endif
cp-nego_status = 0;
if 

Error on installing FreeBSD 4.4 on Dell Inspiron 2650 ( 2.0 GHz )

2002-11-24 Thread soheil soheil
Hi
I bought a laptop ( Dell Inspiron 2650 ) and want to install 4.4BSD on it . 
but when it is going to be installed after it ask for configuration when the 
kernel is going to probe the devices and write the devices on the screen , 
it says that
pci0 unknown device (vendor=8086  ) IRQ ...
pci0 unknown device (vendor=8086  ) IRQ ...
pci0 unknown device (vendor=8086  ) IRQ ...
and then it hanged up and never going to continue

What can i do ???

I really love the FreeBSD ;)

Thanx


_
MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*. 
http://join.msn.com/?page=features/virus


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


RE: Error on installing FreeBSD 4.4 on Dell Inspiron 2650 ( 2.0 GHz )

2002-11-24 Thread Andrey Nepomnyaschih
Hi Soheil,

Try to disable PNP OS within BIOS settings.

Have a good time,
Andrey

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of soheil soheil
Sent: Monday, November 25, 2002 8:24 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Error on installing FreeBSD 4.4 on Dell Inspiron 2650 ( 2.0 GHz
)


Hi
I bought a laptop ( Dell Inspiron 2650 ) and want to install 4.4BSD on
it . 
but when it is going to be installed after it ask for configuration when
the 
kernel is going to probe the devices and write the devices on the screen
, 
it says that
pci0 unknown device (vendor=8086  ) IRQ ...
pci0 unknown device (vendor=8086  ) IRQ ...
pci0 unknown device (vendor=8086  ) IRQ ...
and then it hanged up and never going to continue

What can i do ???

I really love the FreeBSD ;)

Thanx


_
MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*. 
http://join.msn.com/?page=features/virus


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


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



RE: Error on installing FreeBSD 4.4 on Dell Inspiron 2650 ( 2.0 GHz )

2002-11-24 Thread soheil soheil
Hi

By the way , It found the atapci0 device
atapci0 : ... at ata0 and pci0
then it founds the ata0 and found the device type and then
it cannot found the pci0
pci0 unknown device (vendor=8086  ) IRQ ...
pci0 unknown device (vendor=8086  ) IRQ ...
pci0 unknown device (vendor=8086  ) IRQ ...
it hanges up while to start the installation
it never goes to the install menu 

By the way , again!!! , i cannot found pnp os  on the bios Andrey! :0(
i will try that again . I think this is just for the device probing ( for 
hdd ) it is not probing for the os  . and it is for the insatllation 
perparing time not for the time of running

SOS ;)

Please help me
THANX


_
Help STOP SPAM with the new MSN 8 and get 2 months FREE*  
http://join.msn.com/?page=features/junkmail


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


Re: Install FreeBSD 4.4 into EXTENDED Partition

2002-10-28 Thread Lowell Gilbert
[EMAIL PROTECTED] (Gary W. Swearingen) writes:

 Lowell Gilbert [EMAIL PROTECTED] writes:
 
  Just to be clear; it *can* use extended partitions for disk space.
  It's just that the BIOS can't boot from them, and therefore the
  standard FreeBSD installer won't *install* into one.  In theory, you
  can get around this, but not with the standard installer.
 
 Just to be clear: the BIOS can boot from them, as it does in many
 people's Linux setups.

My use of terminology was a little imprecise, but this statement is
even more so.  On no PC-class machine does the BIOS boot *anything*
except the MBR.  Linux systems (for example) that boot from extended
partitions do so by using a boot manager that lives on the disk,
somewhere beyond the 512-byte boot sector, but the BIOS knows nothing
about those partitions.

 (FreeBSD would either have to be able (like Linux) to use the same
 secondary-partitioning scheme as IBM did or FreeBSD would have to be
 able to shoehorn its slices in, supporting a tertiary-partitioning
 scheme.)

That's not really the problem.  The boot manager has to know how to
invoke the FreeBSD loader.  With the root filesystem in its own
extended partition, and the right set of boot blocks in that
partition, you can boot FreeBSD from an extended partition, without
changing any of FreeBSD's filesystem or slice support.  [A number of
people have done it; the only tricky part is that, as I mentioned in
my earlier message, the FreeBSD installer can't do it for you.]

Be well.

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



Re: Install FreeBSD 4.4 into EXTENDED Partition

2002-10-27 Thread Gary W. Swearingen
Lowell Gilbert [EMAIL PROTECTED] writes:

 Just to be clear; it *can* use extended partitions for disk space.
 It's just that the BIOS can't boot from them, and therefore the
 standard FreeBSD installer won't *install* into one.  In theory, you
 can get around this, but not with the standard installer.

Just to be clear: the BIOS can boot from them, as it does in many
people's Linux setups.  FreeBSD booting software and utils just don't
support it.  Probably because there is small reward for anyone who is
ABLE to change FreeBSD to DO so.  They don't need the capability much.

(FreeBSD would either have to be able (like Linux) to use the same
secondary-partitioning scheme as IBM did or FreeBSD would have to be
able to shoehorn its slices in, supporting a tertiary-partitioning
scheme.)

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



Install FreeBSD 4.4 into EXTENDED Partition

2002-10-26 Thread demon


In installation programm of FreeBSD 4.4 I have select extended partition, FreeBSD 
said, that
this partition will be deleted (TOGETHER WITH LINUX NATIVE AND SWAP PARTITIONS!).

How can I do something like this:



|   |EXTENDED  |   |   
||
|Primary (FAT32)|--|Primary (FAT32)|Primary 
|(FAT32)|
|   |Linux native|linux Swap|FreeBSD Slince|   |   
||   


Surely I have backup the first sector 512 bytes information and may experiment, but...



   ALWAYS YORS DMITRY USACHOV ([EMAIL PROTECTED])

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



Re: Install FreeBSD 4.4 into EXTENDED Partition

2002-10-26 Thread Matthew Emmerton
 In installation programm of FreeBSD 4.4 I have select extended partition,
FreeBSD said, that
 this partition will be deleted (TOGETHER WITH LINUX NATIVE AND SWAP
PARTITIONS!).

 How can I do something like this:





 |   |EXTENDED  |   |
|
 |Primary (FAT32)|--|Primary
(FAT32)|Primary (FAT32)|
 |   |Linux native|linux Swap|FreeBSD Slince|   |
|




 Surely I have backup the first sector 512 bytes information and may
experiment, but...

Unless I'm mistaken, FreeBSD cannot use DOS Extended partitions for disk
space.

--
Matt Emmerton


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



Re: Install FreeBSD 4.4 into EXTENDED Partition

2002-10-26 Thread Scott Robbins
On Sat, Oct 26, 2002 at 01:29:55PM -0400, Matthew Emmerton wrote:
  In installation programm of FreeBSD 4.4 I have select extended partition,
 
 Unless I'm mistaken, FreeBSD cannot use DOS Extended partitions for disk
 space.
 
 --
 Matt Emmerton


You're not mistaken. FreeBSD requires a primary partition. Isn't that in
the faq somewhere?  (Don't have time to look at this instant)
-- 

Scott (who was caught by that the first time I tried installing FreeBSD)

PGP keyID EB3467D6
( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 )
gpg --keyserver pgp.mit.edu --recv-keys EB3467D6

Drusilla: How do you feel about eternal life? 
Xander: We couldn't just start with coffee? 




msg06449/pgp0.pgp
Description: PGP signature


Which is the kdevelop version is compatible with ported kde in freebsd 4.4?

2002-10-08 Thread alireza mahini

 
 

__
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos  More
http://faith.yahoo.com

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



Re: Which is the kdevelop version is compatible with ported kde in freebsd 4.4?

2002-10-08 Thread Adam Weinberger

just cd /usr/ports/devel/kdevelop and then make install. i have no
idea what your question means.

 (10.08.2002 @ 1219 PST): alireza mahini said, in 0.3K: 
 
 end of Which is the kdevelop version is compatible with ported kde in freebsd 
4.4? from alireza mahini 


--
Oh good, my dog found the chainsaw.
-Lilo, Lilo  Stitch
Adam Weinberger
[EMAIL PROTECTED]


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