Re: Installing make as pmake when WITH_BMAKE specified (was Re: [CFT/RFC]: refactor bsd.prog.mk to understand multiple programs instead of a singular program)

2012-10-27 Thread Adrian Chadd
Can someone please explain to me what the original reason is for
causing such ridiculously large, far reaching issues?

And why people seem to be in a really, really big rush for it?



Adrian
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Installing make as pmake when WITH_BMAKE specified (was Re: [CFT/RFC]: refactor bsd.prog.mk to understand multiple programs instead of a singular program)

2012-10-26 Thread David O'Brien
On Thu, Oct 25, 2012 at 03:00:21PM -0700, Garrett Cooper wrote:
 Here's an updated version of the workaround that works properly in all
 cases and installs bmake as make and links make to pmake when
 WITH_BMAKE=yes, and installs make as make when WITHOUT_BMAKE is
 specified (this works better than the previous patch I sent to Simon).

Garrett,
I don't see how this could be committed -- it will make it difficult
for 10-CURRENT folks to build ports (and there are no pre-build packages
for 10-CURRENT).

Are you not able to use this instead (w/WANT_USRBIN_BMAKE= in /etc/src.conf)?

Index: usr.bin/Makefile
===
--- usr.bin/Makefile(revision 241927)
+++ usr.bin/Makefile(working copy)
@@ -281,6 +281,9 @@ SUBDIR+=msgs
 .if ${MK_BMAKE} != no
 SUBDIR+=   bmake
 .else
+.if defined(WANT_USRBIN_BMAKE)
+SUBDIR+=   bmake
+.endif
 SUBDIR+=   make
 .endif
 .endif

-- 
-- David  (obr...@freebsd.org)
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Installing make as pmake when WITH_BMAKE specified (was Re: [CFT/RFC]: refactor bsd.prog.mk to understand multiple programs instead of a singular program)

2012-10-26 Thread David O'Brien
On Thu, Oct 25, 2012 at 03:00:21PM -0700, Garrett Cooper wrote:
 Here's an updated version of the workaround that works properly in all
 cases and installs bmake as make and links make to pmake when
 WITH_BMAKE=yes, and installs make as make when WITHOUT_BMAKE is
 specified (this works better than the previous patch I sent to Simon).

Also, please note we have a 'pmake' port that is the proper original
pmake (before *BSD embellished it).  Perhaps a different name than
'pmake' is appropriate.

It would not surprise me for someone to end up adding a port of the
current FreeBSD make in case there are folks that find bmake incompatible
with their use of FreeBSD's make in their own projects.  So picking a
good name now would be helpful.

-- 
-- David  (obr...@freebsd.org)
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Installing make as pmake when WITH_BMAKE specified (was Re: [CFT/RFC]: refactor bsd.prog.mk to understand multiple programs instead of a singular program)

2012-10-26 Thread Simon J. Gerraty
with their use of FreeBSD's make in their own projects.  So picking a
good name now would be helpful.

FWIW I keep a copy in /usr/bin/fmake so I can compare behavior.
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Installing make as pmake when WITH_BMAKE specified (was Re: [CFT/RFC]: refactor bsd.prog.mk to understand multiple programs instead of a singular program)

2012-10-26 Thread Garrett Cooper
On Fri, Oct 26, 2012 at 9:34 AM, David O'Brien obr...@freebsd.org wrote:
 On Thu, Oct 25, 2012 at 03:00:21PM -0700, Garrett Cooper wrote:
 Here's an updated version of the workaround that works properly in all
 cases and installs bmake as make and links make to pmake when
 WITH_BMAKE=yes, and installs make as make when WITHOUT_BMAKE is
 specified (this works better than the previous patch I sent to Simon).

 Garrett,
 I don't see how this could be committed -- it will make it difficult
 for 10-CURRENT folks to build ports (and there are no pre-build packages
 for 10-CURRENT).

I don't want it committed because Simon's move makes sense longterm: I
wanted to offer an alternative as opposed to just being stuck in
purgatory and figured that others might benefit from it.

We're stuck at a point now that we need to make a break but we also
need to ensure that we don't break things too badly for users with
older versions of make. Installing our version of make as something
other than `make` would at least allow us to use make as pmake in
ports, but I realized it would requiring hacking around portmaster,
portupgrade, and a number of other tools that expect FreeBSD make to
be make and don't have a means of parameterizing make in the
environment or on the command line.

So looking back now my mitigation solution would not be ideal and
would not fix any problems really.

 Are you not able to use this instead (w/WANT_USRBIN_BMAKE= in 
 /etc/src.conf)?

That would be interesting too (and is a lot less involved than my
patch), and probably would have less fallout.

Thanks!
-Garrett
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Installing make as pmake when WITH_BMAKE specified (was Re: [CFT/RFC]: refactor bsd.prog.mk to understand multiple programs instead of a singular program)

2012-10-26 Thread Mark Linimon
On Fri, Oct 26, 2012 at 09:34:20AM -0700, David O'Brien wrote:
 (there are no pre-build packages for 10-CURRENT).

Please see the first two entries on:

  http://pkgbeta.freebsd.org/

mcl
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Installing make as pmake when WITH_BMAKE specified (was Re: [CFT/RFC]: refactor bsd.prog.mk to understand multiple programs instead of a singular program)

2012-10-25 Thread Garrett Cooper
On Thu, Oct 25, 2012 at 2:32 PM, Garrett Cooper yaneg...@gmail.com wrote:

...

 The real issue is that I need to take the patch Simon developed, run
 with it, and in parallel he needs to -- and hopefully already is --
 engage portmgr to get it through a number of exp- runs to make sure
 bmake does what it's supposed to do with his patch. Backwards
 compatibility will need to be maintained for ports because ports has
 to work on multiple versions of FreeBSD [where bmake isn't yet
 available/present], so maybe a fork in the road for bsd.port.mk should
 be devised in order to make everything work.

Here's an updated version of the workaround that works properly in all
cases and installs bmake as make and links make to pmake when
WITH_BMAKE=yes, and installs make as make when WITHOUT_BMAKE is
specified (this works better than the previous patch I sent to Simon).

The point of the patch isn't to discourage bmake use; in fact this
encourages bmake use more because I'm able to use bmake as my system
make, but be able to fall back to pmake as needed.

Thanks!
-Garrett


install-make-as-pmake-when-WITH_BMAKE-specified.patch
Description: Binary data
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org

Re: Interactive tool for installing packages

2010-11-12 Thread Marin Atanasov Nikolov
On Thu, Nov 11, 2010 at 9:08 AM, Marin Atanasov Nikolov
dna...@gmail.com wrote:
 On Thu, Nov 11, 2010 at 8:01 AM,  per...@pluto.rain.com wrote:
 Marin Atanasov Nikolov dna...@gmail.com wrote:

 If you do not have git installed, you could still get the
 latest snapshot of pkg_add_it via the Cgit repo. [1]
 [1] http://git.unix-heaven.org/cgit.cgi/pkg_add_it/

 Aha!  I'm sure I looked at that page before posting, but did not see
 how to pull down a snapshot (vs browsing individual files) the first
 time.  It seems to have been reorganized since 1.2, as well as having
 grown quite a bit :)


 Yep, quite a lot of changes went to 1.3, the program was completely
 rewritten and introduced a lot of new features :)

 Most significant changes were:
  - own-styled lists were replaced by queue(3) macros, so generally now
 everything is dynamic and memory leak-free.
  - a lot of new functions dealing with packages, added a configuration module
  - etc... :)


Hello again :)

 One thing that can be improved is the recursion introduced by
 DEPS_FULL_TREE=true, so that dependencies can be found easier and
 faster from INDEX, but I'm looking into this already, since I think
 that feature is very useful when you need to know the dependencies of
 a package in a tree-view.


I spent some time today working on the algorithm for finding package
dependencies from INDEX and
managed to improve it a lot, so now dependencies are being found in
times faster than before (!!)

The previous algorithm was recursing over the INDEX file in order to
find all dependencies to build a tree-view of
the package dependencies, and now only 1 iteration is needed to
accomplish this :)

Now, only if there was a libpkg ready, then pkg_add_it(1) could be
transformed into a standalone install tool, which does not need
pkg_add(1) for it's job :)

Regards,
Marin

 Regards,
 Marin

 --
 Marin Atanasov Nikolov

 dnaeon AT gmail DOT com
 daemon AT unix-heaven DOT org
 http://www.unix-heaven.org/




-- 
Marin Atanasov Nikolov

dnaeon AT gmail DOT com
daemon AT unix-heaven DOT org
http://www.unix-heaven.org/
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Interactive tool for installing packages

2010-11-10 Thread perryh
Marin Atanasov Nikolov dna...@gmail.com wrote:

 in order to install the program, you need to:

 # git clone git://git.unix-heaven.org/public/pkg_add_it
...
 Surely, there's room for improvement, but that's a start.. :)

Dunno about anyone else, but from my standpoint it would be a _big_
improvement to provide a more recent snapshot than the 6-month-old
pkg_add_it-1.2.tar.gz on ftp.freebsd.org so one doesn't have to
install git, with its boatload of dependencies*, to see the recent
improvements.

* The amount of stuff downloaded by
cd /usr/ports/devel/git ; make fetch-recursive
  is, shall we say, impressive.
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Interactive tool for installing packages

2010-11-10 Thread Marin Atanasov Nikolov
On Wed, Nov 10, 2010 at 10:01 AM,  per...@pluto.rain.com wrote:
 Marin Atanasov Nikolov dna...@gmail.com wrote:

 in order to install the program, you need to:

 # git clone git://git.unix-heaven.org/public/pkg_add_it
 ...
 Surely, there's room for improvement, but that's a start.. :)

 Dunno about anyone else, but from my standpoint it would be a _big_
 improvement to provide a more recent snapshot than the 6-month-old
 pkg_add_it-1.2.tar.gz on ftp.freebsd.org so one doesn't have to
 install git, with its boatload of dependencies*, to see the recent
 improvements.

If you do not have git installed, you could still get the latest
snapshot of pkg_add_it via the Cgit repo. [1]

Currently the latest version of the program is tagged as RELEASE_1_3,
so just go to [1] and get a compressed snapshot of the program,
then extract and compile it.

I'm planning to submit a PR to update the port soon, but before that I
still need to finish a few things.

Regards,
Marin

[1] http://git.unix-heaven.org/cgit.cgi/pkg_add_it/


 * The amount of stuff downloaded by
    cd /usr/ports/devel/git ; make fetch-recursive
  is, shall we say, impressive.




-- 
Marin Atanasov Nikolov

dnaeon AT gmail DOT com
daemon AT unix-heaven DOT org
http://www.unix-heaven.org/
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Interactive tool for installing packages

2010-11-10 Thread Dan Nelson
In the last episode (Nov 10), per...@pluto.rain.com said:
 Marin Atanasov Nikolov dna...@gmail.com wrote:
  in order to install the program, you need to:
 
  # git clone git://git.unix-heaven.org/public/pkg_add_it
 ...
  Surely, there's room for improvement, but that's a start.. :)
 
 Dunno about anyone else, but from my standpoint it would be a _big_
 improvement to provide a more recent snapshot than the 6-month-old
 pkg_add_it-1.2.tar.gz on ftp.freebsd.org so one doesn't have to install
 git, with its boatload of dependencies*, to see the recent improvements.
 
 * The amount of stuff downloaded by
 cd /usr/ports/devel/git ; make fetch-recursive
   is, shall we say, impressive.

I use the devel/hg-git port to pull all the git trees I need to access using
mercurial.

-- 
Dan Nelson
dnel...@allantgroup.com
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Interactive tool for installing packages

2010-11-10 Thread perryh
Marin Atanasov Nikolov dna...@gmail.com wrote:

 If you do not have git installed, you could still get the
 latest snapshot of pkg_add_it via the Cgit repo. [1]
 [1] http://git.unix-heaven.org/cgit.cgi/pkg_add_it/

Aha!  I'm sure I looked at that page before posting, but did not see
how to pull down a snapshot (vs browsing individual files) the first
time.  It seems to have been reorganized since 1.2, as well as having
grown quite a bit :)
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Interactive tool for installing packages

2010-11-10 Thread Marin Atanasov Nikolov
On Thu, Nov 11, 2010 at 8:01 AM,  per...@pluto.rain.com wrote:
 Marin Atanasov Nikolov dna...@gmail.com wrote:

 If you do not have git installed, you could still get the
 latest snapshot of pkg_add_it via the Cgit repo. [1]
 [1] http://git.unix-heaven.org/cgit.cgi/pkg_add_it/

 Aha!  I'm sure I looked at that page before posting, but did not see
 how to pull down a snapshot (vs browsing individual files) the first
 time.  It seems to have been reorganized since 1.2, as well as having
 grown quite a bit :)


Yep, quite a lot of changes went to 1.3, the program was completely
rewritten and introduced a lot of new features :)

Most significant changes were:
 - own-styled lists were replaced by queue(3) macros, so generally now
everything is dynamic and memory leak-free.
 - a lot of new functions dealing with packages, added a configuration module
 - etc... :)

One thing that can be improved is the recursion introduced by
DEPS_FULL_TREE=true, so that dependencies can be found easier and
faster from INDEX, but I'm looking into this already, since I think
that feature is very useful when you need to know the dependencies of
a package in a tree-view.

Regards,
Marin

-- 
Marin Atanasov Nikolov

dnaeon AT gmail DOT com
daemon AT unix-heaven DOT org
http://www.unix-heaven.org/
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Interactive tool for installing packages

2010-11-09 Thread Marin Atanasov Nikolov
Hello,

Some time ago I've started a thread on freebsd-ports@ regarding an
interactive tool for installing packages under FreeBSD - pkg_add_it.

Now that I got some time to work on the program, I have added a few
additional features to it, which I think someone might find useful
like:

 - dependencies tree view of packages (useful to find out package dependencies)
 - a similar tool that does this already exists - pkg_tree, but it
only works for installed ports, while pkg_add_it can show you every
package from INDEX
 - regex support
 - displays categories and packages from each of them found in INDEX
 - some code improvements, etc...

The code can be found here [1] and in order to install the program, you need to:

# git clone git://git.unix-heaven.org/public/pkg_add_it
# cd pkg_add_it  make install clean

I still haven't updated the manual pages yet, but you can read
something about the program on the web page [2].

Screenshots can be seen as well. [3]

Would be nice if someone can test it, and provide some feedback - what
can be removed, improved, added, etc..

Surely, there's room for improvement, but that's a start.. :)

Thanks,
Marin

[1] git.unix-heaven.org
[2] www.unix-heaven.org/index.php?page=pkg_add_it
[3] http://www.unix-heaven.org/pkg_add_it-new-gfx/

-- 
Marin Atanasov Nikolov

dnaeon AT gmail DOT com
daemon AT unix-heaven DOT org
http://www.unix-heaven.org/
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Interactive tool for installing packages

2010-11-09 Thread Mark Johnston
On Tue, Nov 09, 2010 at 09:32:15PM +0200, Marin Atanasov Nikolov wrote:
 Hello,
 
 Some time ago I've started a thread on freebsd-ports@ regarding an
 interactive tool for installing packages under FreeBSD - pkg_add_it.
 
 Now that I got some time to work on the program, I have added a few
 additional features to it, which I think someone might find useful
 like:
 
  - dependencies tree view of packages (useful to find out package 
 dependencies)
  - a similar tool that does this already exists - pkg_tree, but it
 only works for installed ports, while pkg_add_it can show you every
 package from INDEX
  - regex support
  - displays categories and packages from each of them found in INDEX
  - some code improvements, etc...
 
 The code can be found here [1] and in order to install the program, you need 
 to:
 
 # git clone git://git.unix-heaven.org/public/pkg_add_it
 # cd pkg_add_it  make install clean
 
 I still haven't updated the manual pages yet, but you can read
 something about the program on the web page [2].
 
 Screenshots can be seen as well. [3]
 
 Would be nice if someone can test it, and provide some feedback - what
 can be removed, improved, added, etc..
 
 Surely, there's room for improvement, but that's a start.. :)
 
 Thanks,
 Marin
 
 [1] git.unix-heaven.org
 [2] www.unix-heaven.org/index.php?page=pkg_add_it
 [3] http://www.unix-heaven.org/pkg_add_it-new-gfx/
 
 -- 
 Marin Atanasov Nikolov
 
 dnaeon AT gmail DOT com
 daemon AT unix-heaven DOT org
 http://www.unix-heaven.org/

It looks pretty neat. I spent a minute or two trying it out, and my only
suggestion at this point is to check errno for common errors instead of 
immediately calling ERRX to report non-zero returns from system calls.
It's kind of annoying to see a message like

pkg_add_it: Error in config_read_file() from config.c at line 179: No
such file or directory

when it's my fault that pkg_add_it can't find its config file. =)
Ditto for things like permissions errors and getenv(3). sudo doesn't
bring in my environment unless I use -E, so I get the following message
when a 'getenv(PAGER)' fails:

pkg_add_it: Error in pkg_display_found() from pkg.c at line 418: No such
file or directory

-Mark




___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Interactive tool for installing packages

2010-11-09 Thread Marin Atanasov Nikolov
On Tue, Nov 9, 2010 at 10:59 PM, Mark Johnston mark...@gmail.com wrote:
 On Tue, Nov 09, 2010 at 09:32:15PM +0200, Marin Atanasov Nikolov wrote:
 Hello,

 Some time ago I've started a thread on freebsd-ports@ regarding an
 interactive tool for installing packages under FreeBSD - pkg_add_it.

 Now that I got some time to work on the program, I have added a few
 additional features to it, which I think someone might find useful
 like:

  - dependencies tree view of packages (useful to find out package 
 dependencies)
  - a similar tool that does this already exists - pkg_tree, but it
 only works for installed ports, while pkg_add_it can show you every
 package from INDEX
  - regex support
  - displays categories and packages from each of them found in INDEX
  - some code improvements, etc...

 The code can be found here [1] and in order to install the program, you need 
 to:

 # git clone git://git.unix-heaven.org/public/pkg_add_it
 # cd pkg_add_it  make install clean

 I still haven't updated the manual pages yet, but you can read
 something about the program on the web page [2].

 Screenshots can be seen as well. [3]

 Would be nice if someone can test it, and provide some feedback - what
 can be removed, improved, added, etc..

 Surely, there's room for improvement, but that's a start.. :)

 Thanks,
 Marin

 [1] git.unix-heaven.org
 [2] www.unix-heaven.org/index.php?page=pkg_add_it
 [3] http://www.unix-heaven.org/pkg_add_it-new-gfx/

 --
 Marin Atanasov Nikolov

 dnaeon AT gmail DOT com
 daemon AT unix-heaven DOT org
 http://www.unix-heaven.org/


Hello Mark,

 It looks pretty neat. I spent a minute or two trying it out, and my only
 suggestion at this point is to check errno for common errors instead of
 immediately calling ERRX to report non-zero returns from system calls.
 It's kind of annoying to see a message like

 pkg_add_it: Error in config_read_file() from config.c at line 179: No
 such file or directory

Yep, my fault, the port does not install the config file in
/usr/local/etc/pkg_add_it.conf

I'll take care of adding it to the port :)


 when it's my fault that pkg_add_it can't find its config file. =)
 Ditto for things like permissions errors and getenv(3). sudo doesn't
 bring in my environment unless I use -E, so I get the following message
 when a 'getenv(PAGER)' fails:

 pkg_add_it: Error in pkg_display_found() from pkg.c at line 418: No such
 file or directory


Thanks for the feedback, I need to fix that one too :)

Regards,
Marin

 -Mark








-- 
Marin Atanasov Nikolov

dnaeon AT gmail DOT com
daemon AT unix-heaven DOT org
http://www.unix-heaven.org/
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Interactive tool for installing packages

2010-11-09 Thread Mark Johnston
On Tue, Nov 09, 2010 at 11:08:07PM +0200, Marin Atanasov Nikolov wrote:
 On Tue, Nov 9, 2010 at 10:59 PM, Mark Johnston mark...@gmail.com wrote:
  On Tue, Nov 09, 2010 at 09:32:15PM +0200, Marin Atanasov Nikolov wrote:
  Hello,
 
  Some time ago I've started a thread on freebsd-ports@ regarding an
  interactive tool for installing packages under FreeBSD - pkg_add_it.
 
  Now that I got some time to work on the program, I have added a few
  additional features to it, which I think someone might find useful
  like:
 
  ?- dependencies tree view of packages (useful to find out package 
  dependencies)
  ?- a similar tool that does this already exists - pkg_tree, but it
  only works for installed ports, while pkg_add_it can show you every
  package from INDEX
  ?- regex support
  ?- displays categories and packages from each of them found in INDEX
  ?- some code improvements, etc...
 
  The code can be found here [1] and in order to install the program, you 
  need to:
 
  # git clone git://git.unix-heaven.org/public/pkg_add_it
  # cd pkg_add_it  make install clean
 
  I still haven't updated the manual pages yet, but you can read
  something about the program on the web page [2].
 
  Screenshots can be seen as well. [3]
 
  Would be nice if someone can test it, and provide some feedback - what
  can be removed, improved, added, etc..
 
  Surely, there's room for improvement, but that's a start.. :)
 
  Thanks,
  Marin
 
  [1] git.unix-heaven.org
  [2] www.unix-heaven.org/index.php?page=pkg_add_it
  [3] http://www.unix-heaven.org/pkg_add_it-new-gfx/
 
  --
  Marin Atanasov Nikolov
 
  dnaeon AT gmail DOT com
  daemon AT unix-heaven DOT org
  http://www.unix-heaven.org/
 
 
 Hello Mark,
 
  It looks pretty neat. I spent a minute or two trying it out, and my only
  suggestion at this point is to check errno for common errors instead of
  immediately calling ERRX to report non-zero returns from system calls.
  It's kind of annoying to see a message like
 
  pkg_add_it: Error in config_read_file() from config.c at line 179: No
  such file or directory
 
 Yep, my fault, the port does not install the config file in
 /usr/local/etc/pkg_add_it.conf
 
 I'll take care of adding it to the port :)

Well, it was more of a general suggestion. I didn't even install the
program - I just compiled and ran it. Nevertheless, I had to look at the
source to figure out what the actual problem was.

-Mark
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Filesystem full when installing custom kernel in FreeBSD

2010-10-19 Thread Ivan Klymenko
В Tue, 19 Oct 2010 00:53:31 +0200
Jack Engqvist Johansson j...@skysel.com пишет:

 Hi,
 
 I just got succeeded with my compilation of a custom kernel for
 FreeBSD 8.1. But when I'm trying to install it, I got an error.
 File system is full!
 
 So I moved the old kernel to another partition, but got the same
 error. And I cannot move it back again.
 Whats wrong? How can I do to get a kernel again?
 
 Thanks.
 Best regards, Jack Engvist Johansson
 
 
 
  bsd# make installkernel KERNCONF=NECTRUS
 --
  Installing kernel
 --
 cd /usr/obj/usr/src/sys/NECTRUS;  MAKEOBJDIRPREFIX=/usr/obj
 MACHINE_ARCH=amd64  MACHINE=amd64  CPUTYPE=
 GROFF_BIN_PATH=/usr/obj/usr/src/tmp/legacy/usr/bin
 GROFF_FONT_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/groff_font
 GROFF_TMAC_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/tmac
 PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/usr/obj/usr/src/tmp/usr/sbin:/usr/obj/usr/src/tmp/usr/bin:/usr/obj/usr/src/tmp/usr/games:/sbin:/bin:/usr/sbin:/usr/bin
  make KERNEL=kernel install
 thiskernel=`sysctl -n kern.bootfile` ;  if [ ! `dirname
 $thiskernel` -ef /boot/kernel ] ; then  chflags -R noschg
 /boot/kernel ;  rm -rf /boot/kernel ;  else  if [ -d /boot/kernel.old
 ] ; then  chflags -R noschg /boot/kernel.old ;  rm -rf
 /boot/kernel.old ;  fi ;  mv /boot/kernel /boot/kernel.old ;  sysctl
 kern.bootfile=/boot/kernel.old/`basename $thiskernel` ;  fi
 mkdir -p /boot/kernel
 install -p -m 555 -o root -g wheel kernel /boot/kernel
 
 /: write failed, filesystem is full
 install: /boot/kernel/kernel: No space left on device
 *** Error code 71
 
 Stop in /usr/obj/usr/src/sys/NECTRUS.
 *** Error code 1
 
 Stop in /usr/src.
 *** Error code 1
 
 Stop in /usr/src.
 -
 

Look how much space left on partition /
df -h
and is not used for the root account
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Filesystem full when installing custom kernel in FreeBSD

2010-10-19 Thread Ivan Klymenko
В Tue, 19 Oct 2010 13:53:34 +0200
Jack Engqvist Johansson j...@skysel.com пишет:

 On Tue, Oct 19, 2010 at 8:30 AM, Ivan Klymenko fi...@ukr.net wrote:
  В Tue, 19 Oct 2010 00:53:31 +0200
  Jack Engqvist Johansson j...@skysel.com пишет:
 
  Hi,
 
  I just got succeeded with my compilation of a custom kernel for
  FreeBSD 8.1. But when I'm trying to install it, I got an error.
  File system is full!
 
  So I moved the old kernel to another partition, but got the same
  error. And I cannot move it back again.
  Whats wrong? How can I do to get a kernel again?
 
  Thanks.
  Best regards, Jack Engvist Johansson
 
 
 
   bsd# make installkernel KERNCONF=NECTRUS
  --
   Installing kernel
  --
  cd /usr/obj/usr/src/sys/NECTRUS;  MAKEOBJDIRPREFIX=/usr/obj
  MACHINE_ARCH=amd64  MACHINE=amd64  CPUTYPE=
  GROFF_BIN_PATH=/usr/obj/usr/src/tmp/legacy/usr/bin
  GROFF_FONT_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/groff_font
  GROFF_TMAC_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/tmac
  PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/usr/obj/usr/src/tmp/usr/sbin:/usr/obj/usr/src/tmp/usr/bin:/usr/obj/usr/src/tmp/usr/games:/sbin:/bin:/usr/sbin:/usr/bin
   make KERNEL=kernel install
  thiskernel=`sysctl -n kern.bootfile` ;  if [ ! `dirname
  $thiskernel` -ef /boot/kernel ] ; then  chflags -R noschg
  /boot/kernel ;  rm -rf /boot/kernel ;  else  if
  [ -d /boot/kernel.old ] ; then  chflags -R
  noschg /boot/kernel.old ;  rm -rf /boot/kernel.old ;  fi ;
   mv /boot/kernel /boot/kernel.old ;  sysctl
  kern.bootfile=/boot/kernel.old/`basename $thiskernel` ;  fi
  mkdir -p /boot/kernel install -p -m 555 -o root -g wheel
  kernel /boot/kernel
 
  /: write failed, filesystem is full
  install: /boot/kernel/kernel: No space left on device
  *** Error code 71
 
  Stop in /usr/obj/usr/src/sys/NECTRUS.
  *** Error code 1
 
  Stop in /usr/src.
  *** Error code 1
 
  Stop in /usr/src.
  -
 
 
  Look how much space left on partition /
  df -h
  and is not used for the root account
 
 
 $ df -h
 Filesystem SizeUsed   Avail Capacity  Mounted on
 /dev/ad4s1a496M490M-34M   108%/
 devfs  1.0K1.0K  0B   100%/dev
 /dev/ad4s1e496M 26M430M 6%/tmp
 /dev/ad4s1f137G 13G113G10%/usr
 /dev/ad4s1d2.8G162M2.4G 6%/var
 procfs 4.0K4.0K  0B   100%/proc
 linprocfs  4.0K4.0K  0B   100%/usr/compat/linux/proc
 
 
 Nautilus: 4258945024 bytes (Free space)
 /root: 14.2 KB (Used space)
 
 

show me the output the following commands from the root account:
du -chd0 /bin
du -chd0 /boot
du -chd0 /etc
du -chd0 /lib
du -chd0 /libexec
du -chd0 /root
du -chd0 /sbin
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Filesystem full when installing custom kernel in FreeBSD

2010-10-19 Thread Ivan Klymenko
В Tue, 19 Oct 2010 15:58:35 +0200
Jack Engqvist Johansson j...@skysel.com пишет:

 On Tue, Oct 19, 2010 at 3:38 PM, Ivan Klymenko fi...@ukr.net wrote:
  В Tue, 19 Oct 2010 13:53:34 +0200
  Jack Engqvist Johansson j...@skysel.com пишет:
 
  On Tue, Oct 19, 2010 at 8:30 AM, Ivan Klymenko fi...@ukr.net
  wrote:
   В Tue, 19 Oct 2010 00:53:31 +0200
   Jack Engqvist Johansson j...@skysel.com пишет:
  
   Hi,
  
   I just got succeeded with my compilation of a custom kernel for
   FreeBSD 8.1. But when I'm trying to install it, I got an error.
   File system is full!
  
   So I moved the old kernel to another partition, but got the same
   error. And I cannot move it back again.
   Whats wrong? How can I do to get a kernel again?
  
   Thanks.
   Best regards, Jack Engvist Johansson
  
  
  
    bsd# make installkernel KERNCONF=NECTRUS
   --
Installing kernel
   --
   cd /usr/obj/usr/src/sys/NECTRUS;  MAKEOBJDIRPREFIX=/usr/obj
   MACHINE_ARCH=amd64  MACHINE=amd64  CPUTYPE=
   GROFF_BIN_PATH=/usr/obj/usr/src/tmp/legacy/usr/bin
   GROFF_FONT_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/groff_font
   GROFF_TMAC_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/tmac
   PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/usr/obj/usr/src/tmp/usr/sbin:/usr/obj/usr/src/tmp/usr/bin:/usr/obj/usr/src/tmp/usr/games:/sbin:/bin:/usr/sbin:/usr/bin
    make KERNEL=kernel install
   thiskernel=`sysctl -n kern.bootfile` ;  if [ ! `dirname
   $thiskernel` -ef /boot/kernel ] ; then  chflags -R noschg
   /boot/kernel ;  rm -rf /boot/kernel ;  else  if
   [ -d /boot/kernel.old ] ; then  chflags -R
   noschg /boot/kernel.old ;  rm -rf /boot/kernel.old ;  fi ;
    mv /boot/kernel /boot/kernel.old ;  sysctl
   kern.bootfile=/boot/kernel.old/`basename $thiskernel` ;  fi
   mkdir -p /boot/kernel install -p -m 555 -o root -g wheel
   kernel /boot/kernel
  
   /: write failed, filesystem is full
   install: /boot/kernel/kernel: No space left on device
   *** Error code 71
  
   Stop in /usr/obj/usr/src/sys/NECTRUS.
   *** Error code 1
  
   Stop in /usr/src.
   *** Error code 1
  
   Stop in /usr/src.
   -
  
  
   Look how much space left on partition /
   df -h
   and is not used for the root account
  
 
  $ df -h
  Filesystem     Size    Used   Avail Capacity  Mounted on
  /dev/ad4s1a    496M    490M    -34M   108%    /
  devfs          1.0K    1.0K      0B   100%    /dev
  /dev/ad4s1e    496M     26M    430M     6%    /tmp
  /dev/ad4s1f    137G     13G    113G    10%    /usr
  /dev/ad4s1d    2.8G    162M    2.4G     6%    /var
  procfs         4.0K    4.0K      0B   100%    /proc
  linprocfs      4.0K    4.0K      0B   100%
   /usr/compat/linux/proc
 
 
  Nautilus: 4258945024 bytes (Free space)
  /root: 14.2 KB (Used space)
 
 
 
  show me the output the following commands from the root account:
  du -chd0 /bin
  du -chd0 /boot
  du -chd0 /etc
  du -chd0 /lib
  du -chd0 /libexec
  du -chd0 /root
  du -chd0 /sbin
 
 
 bsd# du -chd0 /bin
 1.2M  /bin
 1.2M  total
 bsd# du -chd0 /boot
  14M  /boot
  14M  total
 bsd# du -chd0 /etc
 1.7M  /etc
 1.7M  total
 bsd# du -chd0 /lib
 7.5M  /lib
 7.5M  total
 bsd# du -chd0 /libexec
 514K  /libexec
 514K  total
 bsd# du -chd0 /root
 457M  /root
 457M  total

!!
do not use the Root account to work in the system!
!!
Create another account for this...
go to this directory (/root) and delete the files that take up much space and 
you're free ~ 450Mb...

 bsd# du -chd0 /sbin
 4.6M  /sbin
 4.6M  total
 
 




С уважением, Иван!
--
Мы можем все - что можем себе представить!

jabber: fi...@jabber.ru
skype: freedom_fidaj
youtube channel: http://www.youtube.com/freedomfidaj
mob.: +380938326345
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Filesystem full when installing custom kernel in FreeBSD

2010-10-19 Thread Ivan Klymenko
В Tue, 19 Oct 2010 16:31:55 +0200
Jack Engqvist Johansson j...@skysel.com пишет:

  bsd# du -chd0 /root
  457M  /root
  457M  total
 
  !!
  do not use the Root account to work in the system!
  !!
  Create another account for this...
  go to this directory (/root) and delete the files that take up much
  space and you're free ~ 450Mb...
 
  bsd# du -chd0 /sbin
  4.6M  /sbin
  4.6M  total
 
 
 It was the .local folder in /root! Got my kernel back :) Thanks!
 
 You mean that I should create a user within the group wheel?

Yes.

 Now, I use my user (jack) and just type 'su' to get root access. Or do
 you mean sudo?

Why do you need to run jackd with root user account?
And how do you use it? Through QjackCtl?
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Filesystem full when installing custom kernel in FreeBSD

2010-10-19 Thread Ivan Klymenko
В Tue, 19 Oct 2010 23:28:10 +0300
Ivan Klymenko fi...@ukr.net пишет:

 В Tue, 19 Oct 2010 16:31:55 +0200
 Jack Engqvist Johansson j...@skysel.com пишет:
 
   bsd# du -chd0 /root
   457M  /root
   457M  total
  
   !!
   do not use the Root account to work in the system!
   !!
   Create another account for this...
   go to this directory (/root) and delete the files that take up
   much space and you're free ~ 450Mb...
  
   bsd# du -chd0 /sbin
   4.6M  /sbin
   4.6M  total
  
  
  It was the .local folder in /root! Got my kernel back :) Thanks!
  
  You mean that I should create a user within the group wheel?
 
 Yes.
 
  Now, I use my user (jack) and just type 'su' to get root access. Or
  do you mean sudo?
 
 Why do you need to run jackd with root user account?
 And how do you use it? Through QjackCtl?

Excuse me - did not understand:)

Yes, of course - to access root using 'sudo', and if the user (jack) is also 
added to the group wheel, then you can use 'su' ...

Sorry for my English ...
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Re: Filesystem full when installing custom kernel in FreeBSD

2010-10-19 Thread Garrett Cooper
On Tue, Oct 19, 2010 at 1:36 PM, Ivan Klymenko fi...@ukr.net wrote:
 В Tue, 19 Oct 2010 23:28:10 +0300
 Ivan Klymenko fi...@ukr.net пишет:

 В Tue, 19 Oct 2010 16:31:55 +0200
 Jack Engqvist Johansson j...@skysel.com пишет:

   bsd# du -chd0 /root
   457M  /root
   457M  total
  
   !!
   do not use the Root account to work in the system!
   !!
   Create another account for this...
   go to this directory (/root) and delete the files that take up
   much space and you're free ~ 450Mb...
  
   bsd# du -chd0 /sbin
   4.6M  /sbin
   4.6M  total
  
 
  It was the .local folder in /root! Got my kernel back :) Thanks!
 
  You mean that I should create a user within the group wheel?

 Yes.

  Now, I use my user (jack) and just type 'su' to get root access. Or
  do you mean sudo?

 Why do you need to run jackd with root user account?
 And how do you use it? Through QjackCtl?

 Excuse me - did not understand:)

 Yes, of course - to access root using 'sudo', and if the user (jack) is also 
 added to the group wheel, then you can use 'su' ...

 Sorry for my English ...

Could you guys please take this question to questi...@?
Thanks,
-Garrett
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


Filesystem full when installing custom kernel in FreeBSD

2010-10-18 Thread Jack Engqvist Johansson
Hi,

I just got succeeded with my compilation of a custom kernel for
FreeBSD 8.1. But when I'm trying to install it, I got an error.
File system is full!

So I moved the old kernel to another partition, but got the same
error. And I cannot move it back again.
Whats wrong? How can I do to get a kernel again?

Thanks.
Best regards, Jack Engvist Johansson



 bsd# make installkernel KERNCONF=NECTRUS
--
 Installing kernel
--
cd /usr/obj/usr/src/sys/NECTRUS;  MAKEOBJDIRPREFIX=/usr/obj
MACHINE_ARCH=amd64  MACHINE=amd64  CPUTYPE=
GROFF_BIN_PATH=/usr/obj/usr/src/tmp/legacy/usr/bin
GROFF_FONT_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/groff_font
GROFF_TMAC_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/tmac
PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/usr/obj/usr/src/tmp/usr/sbin:/usr/obj/usr/src/tmp/usr/bin:/usr/obj/usr/src/tmp/usr/games:/sbin:/bin:/usr/sbin:/usr/bin
 make KERNEL=kernel install
thiskernel=`sysctl -n kern.bootfile` ;  if [ ! `dirname
$thiskernel` -ef /boot/kernel ] ; then  chflags -R noschg
/boot/kernel ;  rm -rf /boot/kernel ;  else  if [ -d /boot/kernel.old
] ; then  chflags -R noschg /boot/kernel.old ;  rm -rf
/boot/kernel.old ;  fi ;  mv /boot/kernel /boot/kernel.old ;  sysctl
kern.bootfile=/boot/kernel.old/`basename $thiskernel` ;  fi
mkdir -p /boot/kernel
install -p -m 555 -o root -g wheel kernel /boot/kernel

/: write failed, filesystem is full
install: /boot/kernel/kernel: No space left on device
*** Error code 71

Stop in /usr/obj/usr/src/sys/NECTRUS.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
-

Laptop spec:
http://h10025.www1.hp.com/ewfrf/wc/document?lc=encc=usdocname=c01302377dlc=en


/var/run/dmesg.boot:

Copyright (c) 1992-2010 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 is a registered trademark of The FreeBSD Foundation.
FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010
r...@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: AMD Turion(tm) 64 X2 Mobile Technology TL-60 (1994.64-MHz K8-class CPU)
  Origin = AuthenticAMD  Id = 0x60f82  Family = f  Model = 68  Stepping = 2
  
Features=0x178bfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2,HTT
  Features2=0x2001SSE3,CX16
  AMD Features=0xea500800SYSCALL,NX,MMX+,FFXSR,RDTSCP,LM,3DNow!+,3DNow!
  AMD Features2=0x11fLAHF,CMP,SVM,ExtAPIC,CR8,Prefetch
real memory  = 2147483648 (2048 MB)
avail memory = 1976483840 (1884 MB)
ACPI APIC Table: HP  APIC  
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s)
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
MADT: Forcing active-low polarity and level trigger for SCI
ioapic0 Version 1.1 irqs 0-23 on motherboard
kbd1 at kbdmux0
acpi0: HPQOEM SLIC-MPC on motherboard
acpi0: [ITHREAD]
acpi0: Power Button (fixed)
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x1008-0x100b on acpi0
cpu0: ACPI CPU on acpi0
cpu1: ACPI CPU on acpi0
acpi_ec0: Embedded Controller: GPE 0x10 port 0x62,0x66 on acpi0
acpi_hpet0: High Precision Event Timer iomem 0xfed0-0xfed003ff on acpi0
Timecounter HPET frequency 2500 Hz quality 900
acpi_button0: Power Button on acpi0
acpi_button1: Sleep Button on acpi0
acpi_acad0: AC Adapter on acpi0
battery0: ACPI Control Method Battery on acpi0
acpi_lid0: Control Method Lid Switch on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pci0: memory, RAM at device 0.0 (no driver attached)
pci0: memory, RAM at device 0.1 (no driver attached)
pci0: memory, RAM at device 0.2 (no driver attached)
pci0: memory, RAM at device 0.3 (no driver attached)
pci0: memory, RAM at device 0.4 (no driver attached)
pci0: memory, RAM at device 0.5 (no driver attached)
pci0: memory, RAM at device 0.6 (no driver attached)
pci0: memory, RAM at device 0.7 (no driver attached)
pcib1: ACPI PCI-PCI bridge at device 2.0 on pci0
pci1: ACPI PCI bus on pcib1
pcib2: ACPI PCI-PCI bridge at device 3.0 on pci0
pci3: ACPI PCI bus on pcib2
pci3: network at device 0.0 (no driver attached)
vgapci0: VGA-compatible display mem
0xc200-0xc2ff,0xd000-0xdfff,0xc100-0xc1ff irq
18 at device 5.0 on pci0
nvidia0: GeForce Go 6150 on vgapci0
vgapci0: child nvidia0 requested pci_enable_busmaster
vgapci0: child nvidia0 requested pci_enable_io
vgapci0: child nvidia0 requested pci_enable_io
nvidia0: [ITHREAD]
pci0: memory, RAM at device 9.0 (no driver attached)
isab0: PCI-ISA bridge at device 10.0 on pci0
isa0: ISA bus on isab0
pci0: serial

init died during installing picobsd

2009-12-25 Thread solomon
hi there,
I have built picobsd for bridge. My system is freebsd 7.2. It is built
successfully and i burnt it to writable cdrom and try to install it to
my dell pc. It hangs up with init died ... message.
I run the alltrace command of the ddb and found the following message
...
...
Tracing comhi mand swapper pid 1 tid 10 td 0xc4049000
kbd_enter_why(..)...
panic(..)..
exit1(.)..
kern_execve...
execve.
sysinit_add...
fork_exit.
fork_trampoline...

Tracing command swapper pid 0 tid .


where is my fault? if the information provided is enough to diagnose it.
thanx in advance
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


A prob to Installing FreeBSD7.0 in VMWare 5.0

2008-05-14 Thread John Timony
BlankBODY { MARGIN-TOP: 25px; FONT-SIZE: 10pt; MARGIN-LEFT: 25px; COLOR: 
#00; =FONT-FAMILY: Arial, Helvetica}P.msoNormal {  MARGIN-TOP: 0px; 
FONT-SIZE: 10pt; MARGIN-LEFT: 0px; COLOR: #cc; =FONT-FAMILY: Helvetica, 
Times New Roman}LI.msoNormal {   MARGIN-TOP: 0px; FONT-SIZE: 10pt; 
MARGIN-LEFT: 0px; COLOR: #cc; =FONT-FAMILY: Helvetica, Times New 
Roman}Hi,I use the CD-ROM to =install FreeBSD7.O=20in VMWare 5.0,But when i 
start the Virtual Mathine,I get that =elf32_loadimage=20failed...
 
By the way,,,I use a =FreeBSD7.0.iso=20mounted in CD-ROM...
 
Any ideas?
 
BlankBODY { MARGIN-TOP: 25px; FONT-SIZE: 10pt; MARGIN-LEFT: 25px; COLOR: 
#00; FONT-FAMILY: Arial, Helvetica}P.msoNormal {   MARGIN-TOP: 0px; 
FONT-SIZE: 10pt; MARGIN-LEFT: 0px; COLOR: #cc; FONT-FAMILY: Helvetica, 
Times New Roman}LI.msoNormal {MARGIN-TOP: 0px; FONT-SIZE: 10pt; 
MARGIN-LEFT: 0px; COLOR: #cc; FONT-FAMILY: Helvetica, Times New 
Roman}Hi,I use the CD-ROM to install FreeBSD7.O in VMWare 5.0,But when i start 
the Virtual Mathine,I get that elf32_loadimage failed...
 
By the way,,,I use a FreeBSD7.0.iso mounted in CD-ROM...
 
Any ideas?
 

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


Re: A prob to Installing FreeBSD7.0 in VMWare 5.0

2008-05-14 Thread Murray Stokely
On Wed, May 14, 2008 at 8:21 AM, John Timony [EMAIL PROTECTED] wrote:
  BlankBODY { MARGIN-TOP: 25px; FONT-SIZE: 10pt; MARGIN-LEFT: 25px; COLOR: 
 #00; FONT-FAMILY: Arial, Helvetica}P.msoNormal {   MARGIN-TOP: 0px; 
 FONT-SIZE: 10pt; MARGIN-LEFT: 0px; COLOR: #cc; FONT-FAMILY: Helvetica, 
 Times New Roman}LI.msoNormal {MARGIN-TOP: 0px; FONT-SIZE: 10pt; 
 MARGIN-LEFT: 0px; COLOR: #cc; FONT-FAMILY: Helvetica, Times New 
 Roman}Hi,I use the CD-ROM to install FreeBSD7.O in VMWare 5.0,But when i 
 start the Virtual Mathine,I get that elf32_loadimage failed...

  By the way,,,I use a FreeBSD7.0.iso mounted in CD-ROM...

Are you installing a 32-bit (i386) FreeBSD 7.0 iso on a 32-bit virtual
machine?  Or an amd64 ISO on a 64-bit virtual machine?  I would make
sure you are using the right ISO for the virtual machine setup you are
using.  VMWare Fusion on a Mac at least purports to support both 32bit
and 64bit FreeBSD.

I had no problems installing Ivan Voras's latest FreeBSD 7.0 +
finstall on a 32bit virtual machine last night.

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


Re: Are there any known issues for installing FreeBSD on Vmware onwindows XP ?

2007-03-04 Thread ajay gopalakrishnan

Hi Greg,

I am facing with some issues in getting FreeBSD installed on my machine.
I am using Vmware workstation version 5. I am using an evaluation version of
it.
I downloaded the FreeBSD Release 6.2 from freebsd.org.
I downloaded all the 3 ISO images. cd1 , cd2 and docs .
I did not write these images on the CD but i mounted them directly on the CD
drive of Vmware.

I had selected OS Type as  Other/FreeBSD at the time of installation.
My basic installation got over properly and smoothly without any pains.
But, i faced an error when i selected some packages for installation and kde
from the packages list. It said 'Could not load package libiconv-1.9.2_2 and
gettext... etc'. What could be the issue here?

Also what mode should i select when installing the network adapter. Which
one should i select. lance/Slip/ppp ? I am using DSL cable internet modem
internet connection and the modem is connected to my computer using an
ethernet.

Further, after installation how should i ensure that all the required kernel
sources are installed?

Is there any way by which i can install a specific package from from CD and
let the OS determine and install all the dependencies automatically? Is
there any command for this like we have apt-get in debian?

Thanks,
Ajay.

On 3/2/07, Greg Larkin [EMAIL PROTECTED] wrote:



 Hey all,

 Are there any known issues for installing FreeBSD on Vmware
 on windows XP ?
 I have never tried installiing FreeBSD earlier and i just saw
 a mail in this
 mailing list regarding some problems while installing on
 vmware. Could not
 make out much. Can someone just elaborate on the issues faced while
 installing on Vmware.

 Regards,
 ajay.

Hi Ajay,

I wrote in to the list a little while back about VMware installation
problems that I had with FreeBSD 6.2, but the issue was completely
related to the CPU architecture (Via C3 Nehemiah) that I was using.
VMware doesn't officially support that processor, even though it's
supposed to be Intel compatible.  Another list member sent me a kernel
patch that fixed the problem (thanks ghozzy).

I also have a WinXP box with a Celeron processor in it and VMware
Server installed, and FreeBSD 4.x and 6.x both install and run with no
problems at all.

If you have any specific questions, let me know and I'll try to answer
them.  I'm going to be learning a lot more about VMware Server and
FreeBSD in the coming months, as I'm working on redeploying my
company's service using those tools as the foundation.  I hope to
share that knowledge with the list as I proceed.

I also found this thread
(http://lists.freebsd.org/pipermail/freebsd-questions/2006-October/132
716.html) with some information in it about issues to be aware of
while running FreeBSD as a guest OS under VMware.  Follow the thread a
little way, and you'll see an example kernel config file, too.

Best of luck,
Greg Larkin





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


Re: Are there any known issues for installing FreeBSD on Vmware onwindows XP ?

2007-03-04 Thread Joseph Koshy

Further, after installation how should i ensure that all the
required kernel sources are installed?


You want the sources to the complete system, not just
the kernel, and you would want to keep these upto-date
too.  See:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/synching.html
and,
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html


Is there any way by which i can install a specific
package from from CD and let the OS determine and
install all the dependencies automatically? Is
there any command for this like we have apt-get in debian?


'pkg_add' should be installing dependencies automatically.

--
FreeBSD Volunteer, http://people.freebsd.org/~jkoshy
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Are there any known issues for installing FreeBSD on Vmware onwindows XP ?

2007-03-04 Thread Roger Olofsson



ajay gopalakrishnan skrev:

Hi Greg,

I am facing with some issues in getting FreeBSD installed on my machine.
I am using Vmware workstation version 5. I am using an evaluation 
version of

it.
I downloaded the FreeBSD Release 6.2 from freebsd.org.
I downloaded all the 3 ISO images. cd1 , cd2 and docs .
I did not write these images on the CD but i mounted them directly on 
the CD

drive of Vmware.

I had selected OS Type as  Other/FreeBSD at the time of installation.
My basic installation got over properly and smoothly without any pains.
But, i faced an error when i selected some packages for installation and 
kde
from the packages list. It said 'Could not load package libiconv-1.9.2_2 
and

gettext... etc'. What could be the issue here?

Also what mode should i select when installing the network adapter. Which
one should i select. lance/Slip/ppp ? I am using DSL cable internet modem
internet connection and the modem is connected to my computer using an
ethernet.



I set the nics to bridge when I ran this way.

Further, after installation how should i ensure that all the required 
kernel

sources are installed?



This is only necessary if you want to build a kernel of your own. If you 
are satisfied with the kernel shipped with the cds (called GENERIC) 
there is no need. The handbook at www.freebsd.org is a very good 
starting point and answers many questions.




Is there any way by which i can install a specific package from from CD and
let the OS determine and install all the dependencies automatically? Is
there any command for this like we have apt-get in debian?



Yes, this is done automagically when you either add the binary package 
or when you do make install clean in the source code for it. Again, the 
handbook answers all this.



Thanks,
Ajay.

On 3/2/07, Greg Larkin [EMAIL PROTECTED] wrote:



 Hey all,

 Are there any known issues for installing FreeBSD on Vmware
 on windows XP ?
 I have never tried installiing FreeBSD earlier and i just saw
 a mail in this
 mailing list regarding some problems while installing on
 vmware. Could not
 make out much. Can someone just elaborate on the issues faced while
 installing on Vmware.

 Regards,
 ajay.

Hi Ajay,

I wrote in to the list a little while back about VMware installation
problems that I had with FreeBSD 6.2, but the issue was completely
related to the CPU architecture (Via C3 Nehemiah) that I was using.
VMware doesn't officially support that processor, even though it's
supposed to be Intel compatible.  Another list member sent me a kernel
patch that fixed the problem (thanks ghozzy).

I also have a WinXP box with a Celeron processor in it and VMware
Server installed, and FreeBSD 4.x and 6.x both install and run with no
problems at all.

If you have any specific questions, let me know and I'll try to answer
them.  I'm going to be learning a lot more about VMware Server and
FreeBSD in the coming months, as I'm working on redeploying my
company's service using those tools as the foundation.  I hope to
share that knowledge with the list as I proceed.

I also found this thread
(http://lists.freebsd.org/pipermail/freebsd-questions/2006-October/132
716.html) with some information in it about issues to be aware of
while running FreeBSD as a guest OS under VMware.  Follow the thread a
little way, and you'll see an example kernel config file, too.

Best of luck,
Greg Larkin





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



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


Re: Instruction fault panic while installing 6.2 on VMware Server

2007-03-02 Thread ghozzy

Hi Eric,

On 3/1/07, Eric Anderson [EMAIL PROTECTED] wrote:

On 02/24/07 05:44, ghozzy wrote:
 Hi,

 On 2/23/07, Greg Larkin [EMAIL PROTECTED] wrote:
 Hi everyone,

 I'm creating a standard FreeBSD 6.2 ISO image that I can use to
 perform unattended installations into VMware Server virtual machines.
 I'm using VMServer 1.0.1, and I've hit a roadblock when sysinstall
 attempts to create the root filesystem.

[snip]

 Regards,
 Greg Larkin

 I have experienced similar problem in VMware Workstation under Windows XP
 on Via C3 Nehemiah processor since FreeBSD 5.x. In my case privileged
 instruction fault shot somewhere in rc boot process. Tracing down the cause of
 fault i found out that it was xstore instruction, which VMware did not 
emulate.
 It turned out to be the merit of new random generator appeared somewhere in
 5.x, which detected the Via processor and tried to use its hardware random
 number generator. My workaround was to patch kernel to disable using this Via
 processor feature completely. The result was successful booting and running
 FreeBSD 5.x and 6.x under VMware on this machine.

 Attached is the patch i use for 6.x kernel.


Can you both send me the dmesg of these machines?


Eric


Here are the dmesg's of native boot and under vmware.

--
ghozzy
Copyright (c) 1992-2007 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 is a registered trademark of The FreeBSD Foundation.
FreeBSD 6.2-STABLE #1: Wed Feb 28 18:54:57 MSK 2007
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/ROVER-DISKLESS
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: VIA C3 Nehemiah+RNG+AES (1000.40-MHz 686-class CPU)
  Origin = CentaurHauls  Id = 0x698  Stepping = 8
  Features=0x381b13fFPU,VME,DE,PSE,TSC,MSR,CX8,MTRR,PGE,CMOV,PAT,MMX,FXSR,SSE
real memory  = 251592704 (239 MB)
avail memory = 240914432 (229 MB)
acpi0: AMIINT VIA_P6 on motherboard
acpi0: Power Button (fixed)
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x808-0x80b on acpi0
acpi_ec0: Embedded Controller: GPE 0x14 port 0x62,0x66 on acpi0
cpu0: ACPI CPU on acpi0
acpi_throttle0: ACPI CPU Throttling on cpu0
acpi_button0: Power Button on acpi0
acpi_lid0: Control Method Lid Switch on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
agp0: VIA 862x (CLE266) host to PCI bridge mem 0xe000-0xe3ff at 
device 0.0 on pci0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
pci1: display, VGA at device 0.0 (no driver attached)
pci0: serial bus, USB at device 16.0 (no driver attached)
pci0: serial bus, USB at device 16.1 (no driver attached)
pci0: serial bus, USB at device 16.3 (no driver attached)
viapropm0: SMBus I/O base at 0x400
viapropm0: SMBus I/O base at 0x400
viapropm0: VIA VT8235 Power Management Unit port 0x400-0x40f at device 17.0 
on pci0
viapropm0: SMBus revision code 0x0
smbus0: System Management Bus on viapropm0
smb0: SMBus generic I/O on smbus0
isa0: ISA bus on viapropm0
atapci0: VIA 8235 UDMA133 controller port 
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfc00-0xfc0f at device 17.1 on pci0
ata0: ATA channel 0 on atapci0
ata1: ATA channel 1 on atapci0
pci0: multimedia, audio at device 17.5 (no driver attached)
pci0: simple comms at device 17.6 (no driver attached)
vr0: VIA VT6102 Rhine II 10/100BaseTX port 0xdc00-0xdcff mem 
0xde00-0xdeff irq 10 at device 18.0 on pci0
miibus0: MII bus on vr0
ukphy0: Generic IEEE 802.3u media interface on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
vr0: Ethernet address: 00:11:5b:20:31:9b
atkbdc0: Keyboard controller (i8042) port 0x60,0x64 irq 1 on acpi0
atkbd0: AT Keyboard irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
psm0: PS/2 Mouse irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: model IntelliMouse, device ID 3
sio0: 16550A-compatible COM port port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
sio0: type 16550A
acpi_acad0: AC Adapter on acpi0
battery0: ACPI Control Method Battery on acpi0
pmtimer0 on isa0
sc0: System console at flags 0x100 on isa0
sc0: VGA 16 virtual consoles, flags=0x300
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1: port may not be enabled
Timecounter TSC frequency 1000398790 Hz quality 800
Timecounters tick every 1.000 msec
ipfw2 (+ipv6) initialized, divert loadable, rule-based forwarding enabled, 
default to accept, logging limited to 100 packets/entry by default
ad0: 19077MB Seagate ST92011A 3.04 at ata0-master UDMA100
Trying to mount root from nfs:192.168.0.22:/fs/rover
NFS ROOT: 192.168.0.22:/fs/rover
Copyright (c) 1992-2007 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 is a registered trademark of The FreeBSD Foundation.

Are there any known issues for installing FreeBSD on Vmware on windows XP ?

2007-03-02 Thread ajay gopalakrishnan

Hey all,

Are there any known issues for installing FreeBSD on Vmware on windows XP ?
I have never tried installiing FreeBSD earlier and i just saw a mail in this
mailing list regarding some problems while installing on vmware. Could not
make out much. Can someone just elaborate on the issues faced while
installing on Vmware.

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


Re: Are there any known issues for installing FreeBSD on Vmware on windows XP ?

2007-03-02 Thread Roger Olofsson

Hello ajay,

I have FreeBSD4.9 and 6.2 running under vmware. It's been up and about 
for a long time. No issues at all so far. The installation is pretty 
straighforward I seem to remember chosing other/other among the OS 
templates though.


Good luck!



ajay gopalakrishnan skrev:

Hey all,

Are there any known issues for installing FreeBSD on Vmware on windows XP ?
I have never tried installiing FreeBSD earlier and i just saw a mail in 
this

mailing list regarding some problems while installing on vmware. Could not
make out much. Can someone just elaborate on the issues faced while
installing on Vmware.

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



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


RE: Are there any known issues for installing FreeBSD on Vmware onwindows XP ?

2007-03-02 Thread Greg Larkin
 
 Hey all,
 
 Are there any known issues for installing FreeBSD on Vmware 
 on windows XP ?
 I have never tried installiing FreeBSD earlier and i just saw 
 a mail in this
 mailing list regarding some problems while installing on 
 vmware. Could not
 make out much. Can someone just elaborate on the issues faced while
 installing on Vmware.
 
 Regards,
 ajay.

Hi Ajay,

I wrote in to the list a little while back about VMware installation
problems that I had with FreeBSD 6.2, but the issue was completely
related to the CPU architecture (Via C3 Nehemiah) that I was using.
VMware doesn't officially support that processor, even though it's
supposed to be Intel compatible.  Another list member sent me a kernel
patch that fixed the problem (thanks ghozzy).

I also have a WinXP box with a Celeron processor in it and VMware
Server installed, and FreeBSD 4.x and 6.x both install and run with no
problems at all.

If you have any specific questions, let me know and I'll try to answer
them.  I'm going to be learning a lot more about VMware Server and
FreeBSD in the coming months, as I'm working on redeploying my
company's service using those tools as the foundation.  I hope to
share that knowledge with the list as I proceed.

I also found this thread
(http://lists.freebsd.org/pipermail/freebsd-questions/2006-October/132
716.html) with some information in it about issues to be aware of
while running FreeBSD as a guest OS under VMware.  Follow the thread a
little way, and you'll see an example kernel config file, too.

Best of luck,
Greg Larkin



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


Re: Are there any known issues for installing FreeBSD on Vmware on windows XP ?

2007-03-02 Thread Rene Ladan
ajay gopalakrishnan schreef:
 Hey all,
 
 Are there any known issues for installing FreeBSD on Vmware on windows XP ?
 I have never tried installiing FreeBSD earlier and i just saw a mail in
 this
 mailing list regarding some problems while installing on vmware. Could not
 make out much. Can someone just elaborate on the issues faced while
 installing on Vmware.
 
I once installed FreeBSD 6.1 on Windows XP using qemu, which worked fine
 basically.

Regards,
Rene
-- 
GPG fingerprint = E738 5471 D185 7013 0EE0  4FC8 3C1D 6F83 12E1 84F6
(subkeys.pgp.net)

It won't fit on the line.
-- me, 2001

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


Re: Are there any known issues for installing FreeBSD on Vmware onwindows XP ?

2007-03-02 Thread Eric Anderson

On 03/02/07 12:22, Greg Larkin wrote:

Hey all,

Are there any known issues for installing FreeBSD on Vmware 
on windows XP ?
I have never tried installiing FreeBSD earlier and i just saw 
a mail in this
mailing list regarding some problems while installing on 
vmware. Could not

make out much. Can someone just elaborate on the issues faced while
installing on Vmware.

Regards,
ajay.


Hi Ajay,

I wrote in to the list a little while back about VMware installation
problems that I had with FreeBSD 6.2, but the issue was completely
related to the CPU architecture (Via C3 Nehemiah) that I was using.
VMware doesn't officially support that processor, even though it's
supposed to be Intel compatible.  Another list member sent me a kernel
patch that fixed the problem (thanks ghozzy).



The issue is not that the C3 is not x86 compatible, because it is 
completely compatible.  The issue here is that vmware is allowing all 
the CPU features to be advertised to the guest OS, when it does not in 
fact emulate all those features.  The C3 CPU has additional features 
that Intel processors do not have, like the RNG and AES encryption. 
Either the guest OS needs to know not to use them, or vmware needs to be 
smarter and emulate that feature.



Eric

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


Re: Instruction fault panic while installing 6.2 on VMware Server

2007-03-01 Thread Eric Anderson

On 02/24/07 05:44, ghozzy wrote:

Hi,

On 2/23/07, Greg Larkin [EMAIL PROTECTED] wrote:

Hi everyone,

I'm creating a standard FreeBSD 6.2 ISO image that I can use to
perform unattended installations into VMware Server virtual machines.
I'm using VMServer 1.0.1, and I've hit a roadblock when sysinstall
attempts to create the root filesystem.

The first thing to mention is that VMServer is running on a CentOS 4.4
host OS, and the CPU architecture is a Via C3 Nehemiah.  Technically,
the VMServer software is not supposed to work on the Via C3 line, but
the Nehemiah apparently supports the CMOV instruction that VMServer
requires.  I've been able to install Fedora Core 6 successfully and
run it with no problems, so I'm wondering if I just need to find the
right options to configure FreeBSD 6.2 to get it to work.

Anyway, the VM boots fine, loads the FreeBSD ISO, and launches
sysinstall, but as soon as newfs is invoked to make the root
filesystem, I get this:

Making a new root filesystem on /dev/ad0s1a
Panic: privileged instruction fault
(auto reboot)

I've tried installing from the standard 6.2 release ISO as well as a
custom ISO with a recompiled kernel, but I get the same error either
way.  I also tried disabling ACPI during boot with no success.

My custom kernel config is included below.  My first thought was that
if I explicitly set the CPU to I486, that might help avoid the
instruction fault, but that doesn't work.  I didn't see any other
options that looked like they would fix the fault, but I'm not very
experienced at kernel configuration either.

Does anyone have an idea how to troubleshoot this problem? Thank you
for any help!

Regards,
Greg Larkin


I have experienced similar problem in VMware Workstation under Windows XP
on Via C3 Nehemiah processor since FreeBSD 5.x. In my case privileged
instruction fault shot somewhere in rc boot process. Tracing down the cause of
fault i found out that it was xstore instruction, which VMware did not emulate.
It turned out to be the merit of new random generator appeared somewhere in
5.x, which detected the Via processor and tried to use its hardware random
number generator. My workaround was to patch kernel to disable using this Via
processor feature completely. The result was successful booting and running
FreeBSD 5.x and 6.x under VMware on this machine.

Attached is the patch i use for 6.x kernel.



Can you both send me the dmesg of these machines?


Eric

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


RE: Instruction fault panic while installing 6.2 on VMware Server

2007-03-01 Thread Greg Larkin
 
 
 On 02/24/07 05:44, ghozzy wrote:
  Hi,
  
  On 2/23/07, Greg Larkin [EMAIL PROTECTED] wrote:
  Hi everyone,
 
  I'm creating a standard FreeBSD 6.2 ISO image that I can use to
  perform unattended installations into VMware Server 
 virtual machines.
  I'm using VMServer 1.0.1, and I've hit a roadblock when
sysinstall
  attempts to create the root filesystem.
 
  The first thing to mention is that VMServer is running on 
 a CentOS 4.4
  host OS, and the CPU architecture is a Via C3 Nehemiah.  
 Technically,
  the VMServer software is not supposed to work on the Via 
 C3 line, but
  the Nehemiah apparently supports the CMOV instruction that
VMServer
  requires.  I've been able to install Fedora Core 6 successfully
and
  run it with no problems, so I'm wondering if I just need 
 to find the
  right options to configure FreeBSD 6.2 to get it to work.
 
  Anyway, the VM boots fine, loads the FreeBSD ISO, and launches
  sysinstall, but as soon as newfs is invoked to make the root
  filesystem, I get this:
 
  Making a new root filesystem on /dev/ad0s1a
  Panic: privileged instruction fault
  (auto reboot)
 
  I've tried installing from the standard 6.2 release ISO as 
 well as a
  custom ISO with a recompiled kernel, but I get the same 
 error either
  way.  I also tried disabling ACPI during boot with no success.
 
  My custom kernel config is included below.  My first 
 thought was that
  if I explicitly set the CPU to I486, that might help avoid the
  instruction fault, but that doesn't work.  I didn't see any other
  options that looked like they would fix the fault, but I'm not
very
  experienced at kernel configuration either.
 
  Does anyone have an idea how to troubleshoot this problem? 
 Thank you
  for any help!
 
  Regards,
  Greg Larkin
  
  I have experienced similar problem in VMware Workstation 
 under Windows XP
  on Via C3 Nehemiah processor since FreeBSD 5.x. In my case 
 privileged
  instruction fault shot somewhere in rc boot process. 
 Tracing down the cause of
  fault i found out that it was xstore instruction, which 
 VMware did not emulate.
  It turned out to be the merit of new random generator 
 appeared somewhere in
  5.x, which detected the Via processor and tried to use its 
 hardware random
  number generator. My workaround was to patch kernel to 
 disable using this Via
  processor feature completely. The result was successful 
 booting and running
  FreeBSD 5.x and 6.x under VMware on this machine.
  
  Attached is the patch i use for 6.x kernel.
 
 
 Can you both send me the dmesg of these machines?
 
 
 Eric
 
 

Hi Eric,

Here is the dmesg output of the FreeBSD 6.2 virtual machine that has
ghozzy's probe.c patch in place.  His patch prevents the kernel from
using the XSTORE instruction that VMware Server doesn't support.  Let
me know if you need any other information.

I don't remember if I cc'd the list or not a few days ago when I
emailed ghozzy, but his patch fixed the installation problem I was
having, and I no longer get the instruction fault panic when the root
filesystem is built.

I haven't put the new VM through any strenuous testing yet, but I will
be over the next few weeks, and I'll update the list if the system
crashes again.

Thank you,
Greg

Copyright (c) 1992-2007 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 is a registered trademark of The FreeBSD Foundation.
FreeBSD 6.2-RELEASE-VMWAREC3 #0: Mon Feb 26 22:10:58 UTC 2007
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
ACPI APIC Table: PTLTD  APIC  
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: VIA C3 Nehemiah+RNG (1000.35-MHz 686-class CPU)
  Origin = CentaurHauls  Id = 0x693  Stepping = 3
 
Features=0x380b33dFPU,DE,PSE,TSC,MSR,CX8,APIC,MTRR,PGE,CMOV,MMX,FXSR,
SSE
real memory  = 268435456 (256 MB)
avail memory = 253083648 (241 MB)
MADT: Forcing active-low polarity and level trigger for SCI
ioapic0 Version 1.1 irqs 0-23 on motherboard
kbd1 at kbdmux0
ath_hal: 0.9.17.2 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413,
RF5413)
acpi0: PTLTD   RSDT on motherboard
acpi0: Power Button (fixed)
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x1008-0x100b on acpi0
cpu0: ACPI CPU on acpi0
acpi_throttle0: ACPI CPU Throttling on cpu0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
agp0: Intel 82443BX (440 BX) host to PCI bridge mem
0xe800-0xebff at device 0.0 on pci0
pcib1: ACPI PCI-PCI bridge at device 1.0 on pci0
pci1: ACPI PCI bus on pcib1
isab0: PCI-ISA bridge at device 7.0 on pci0
isa0: ISA bus on isab0
atapci0: Intel PIIX4 UDMA33 controller port
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x1050-0x105f at device 7.1 on
pci0
ata0: ATA channel 0 on atapci0
ata1: ATA channel 1 on atapci0
pci0: bridge at device 7.3 (no driver attached)
pci0: display, VGA at device 15.0 (no driver

RE: Instruction fault panic while installing 6.2 on VMware Server

2007-02-26 Thread Greg Larkin
 
 Hi,
 
 On 2/23/07, Greg Larkin [EMAIL PROTECTED] wrote:
  Hi everyone,
 
  I'm creating a standard FreeBSD 6.2 ISO image that I can use to
  perform unattended installations into VMware Server virtual 
 machines.
  I'm using VMServer 1.0.1, and I've hit a roadblock when sysinstall
  attempts to create the root filesystem.
 
  The first thing to mention is that VMServer is running on a 
 CentOS 4.4
  host OS, and the CPU architecture is a Via C3 Nehemiah.  
 Technically,
  the VMServer software is not supposed to work on the Via C3 
 line, but
  the Nehemiah apparently supports the CMOV instruction that
VMServer
  requires.  I've been able to install Fedora Core 6 successfully
and
  run it with no problems, so I'm wondering if I just need to find
the
  right options to configure FreeBSD 6.2 to get it to work.
 
  Anyway, the VM boots fine, loads the FreeBSD ISO, and launches
  sysinstall, but as soon as newfs is invoked to make the root
  filesystem, I get this:
 
  Making a new root filesystem on /dev/ad0s1a
  Panic: privileged instruction fault
  (auto reboot)
 
  I've tried installing from the standard 6.2 release ISO as well as
a
  custom ISO with a recompiled kernel, but I get the same error
either
  way.  I also tried disabling ACPI during boot with no success.
 
  My custom kernel config is included below.  My first 
 thought was that
  if I explicitly set the CPU to I486, that might help avoid the
  instruction fault, but that doesn't work.  I didn't see any other
  options that looked like they would fix the fault, but I'm not
very
  experienced at kernel configuration either.
 
  Does anyone have an idea how to troubleshoot this problem? Thank
you
  for any help!
 
  Regards,
  Greg Larkin
 
 I have experienced similar problem in VMware Workstation 
 under Windows XP
 on Via C3 Nehemiah processor since FreeBSD 5.x. In my case
privileged
 instruction fault shot somewhere in rc boot process. Tracing 
 down the cause of
 fault i found out that it was xstore instruction, which 
 VMware did not emulate.
 It turned out to be the merit of new random generator 
 appeared somewhere in
 5.x, which detected the Via processor and tried to use its 
 hardware random
 number generator. My workaround was to patch kernel to 
 disable using this Via
 processor feature completely. The result was successful 
 booting and running
 FreeBSD 5.x and 6.x under VMware on this machine.
 
 Attached is the patch i use for 6.x kernel.
 
 Hope this helps.
 
 --
 ghozzy
 

Hi Ghozzy,

Thanks very much for that - I appreciate it!  I'm in the midst of
building a new ISO, and I'll test it out and let you know what
happens.  I should have grepped /usr/src for Nehemiah!

Do you (or others) think there is any call for either VMware Server
detection in the kernel or a kernel config option specifying that the
kernel is going to run in a VM?  

I wonder if patches like this and others would be useful to add to the
official kernel sources, since VMware supports FreeBSD as a guest OS?
Perhaps there are other kernel optimizations and configuration options
that would make sense if the kernel knew it was running in a VM?

Regards,
Greg Larkin



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


Re: Instruction fault panic while installing 6.2 on VMware Server

2007-02-24 Thread ghozzy

Hi,

On 2/23/07, Greg Larkin [EMAIL PROTECTED] wrote:

Hi everyone,

I'm creating a standard FreeBSD 6.2 ISO image that I can use to
perform unattended installations into VMware Server virtual machines.
I'm using VMServer 1.0.1, and I've hit a roadblock when sysinstall
attempts to create the root filesystem.

The first thing to mention is that VMServer is running on a CentOS 4.4
host OS, and the CPU architecture is a Via C3 Nehemiah.  Technically,
the VMServer software is not supposed to work on the Via C3 line, but
the Nehemiah apparently supports the CMOV instruction that VMServer
requires.  I've been able to install Fedora Core 6 successfully and
run it with no problems, so I'm wondering if I just need to find the
right options to configure FreeBSD 6.2 to get it to work.

Anyway, the VM boots fine, loads the FreeBSD ISO, and launches
sysinstall, but as soon as newfs is invoked to make the root
filesystem, I get this:

Making a new root filesystem on /dev/ad0s1a
Panic: privileged instruction fault
(auto reboot)

I've tried installing from the standard 6.2 release ISO as well as a
custom ISO with a recompiled kernel, but I get the same error either
way.  I also tried disabling ACPI during boot with no success.

My custom kernel config is included below.  My first thought was that
if I explicitly set the CPU to I486, that might help avoid the
instruction fault, but that doesn't work.  I didn't see any other
options that looked like they would fix the fault, but I'm not very
experienced at kernel configuration either.

Does anyone have an idea how to troubleshoot this problem? Thank you
for any help!

Regards,
Greg Larkin


I have experienced similar problem in VMware Workstation under Windows XP
on Via C3 Nehemiah processor since FreeBSD 5.x. In my case privileged
instruction fault shot somewhere in rc boot process. Tracing down the cause of
fault i found out that it was xstore instruction, which VMware did not emulate.
It turned out to be the merit of new random generator appeared somewhere in
5.x, which detected the Via processor and tried to use its hardware random
number generator. My workaround was to patch kernel to disable using this Via
processor feature completely. The result was successful booting and running
FreeBSD 5.x and 6.x under VMware on this machine.

Attached is the patch i use for 6.x kernel.

Hope this helps.

--
ghozzy


sys_dev_random_probe.c.patch
Description: Binary data
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]

Instruction fault panic while installing 6.2 on VMware Server

2007-02-23 Thread Greg Larkin
Hi everyone,

I'm creating a standard FreeBSD 6.2 ISO image that I can use to
perform unattended installations into VMware Server virtual machines.
I'm using VMServer 1.0.1, and I've hit a roadblock when sysinstall
attempts to create the root filesystem.

The first thing to mention is that VMServer is running on a CentOS 4.4
host OS, and the CPU architecture is a Via C3 Nehemiah.  Technically,
the VMServer software is not supposed to work on the Via C3 line, but
the Nehemiah apparently supports the CMOV instruction that VMServer
requires.  I've been able to install Fedora Core 6 successfully and
run it with no problems, so I'm wondering if I just need to find the
right options to configure FreeBSD 6.2 to get it to work.

Anyway, the VM boots fine, loads the FreeBSD ISO, and launches
sysinstall, but as soon as newfs is invoked to make the root
filesystem, I get this:

Making a new root filesystem on /dev/ad0s1a
Panic: privileged instruction fault
(auto reboot)

I've tried installing from the standard 6.2 release ISO as well as a
custom ISO with a recompiled kernel, but I get the same error either
way.  I also tried disabling ACPI during boot with no success.

My custom kernel config is included below.  My first thought was that
if I explicitly set the CPU to I486, that might help avoid the
instruction fault, but that doesn't work.  I didn't see any other
options that looked like they would fix the fault, but I'm not very
experienced at kernel configuration either.

Does anyone have an idea how to troubleshoot this problem? Thank you
for any help!

Regards,
Greg Larkin

machine i386
cpu I486_CPU
ident   VMWAREC3
makeoptions DEBUG=-g# Build kernel with gdb(1)
debug symbols
options SCHED_4BSD  # 4BSD scheduler
options PREEMPTION  # Enable kernel thread
preemption
options INET# InterNETworking
options FFS # Berkeley Fast Filesystem
options SOFTUPDATES # Enable FFS soft updates
support
options UFS_ACL # Support for access control
lists
options UFS_DIRHASH # Improve performance on big
directories
options MD_ROOT # MD is a potential root
device
options NFSCLIENT   # Network Filesystem Client
options NFSSERVER   # Network Filesystem Server
options NFS_ROOT# NFS usable as /, requires
NFSCLIENT
options CD9660  # ISO 9660 Filesystem
options PROCFS  # Process filesystem (requires
PSEUDOFS)
options PSEUDOFS# Pseudo-filesystem framework
options GEOM_GPT# GUID Partition Tables.
options COMPAT_43   # Compatible with BSD 4.3
[KEEP THIS!]
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
options COMPAT_FREEBSD5 # Compatible with FreeBSD5
options SCSI_DELAY=5000 # Delay (in ms) before probing
SCSI
options KTRACE  # ktrace(1) support
options SYSVSHM # SYSV-style shared memory
options SYSVMSG # SYSV-style message queues
options SYSVSEM # SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time
extensions
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options ADAPTIVE_GIANT  # Giant mutex is adaptive.
device  apic# I/O APIC
device  pci
device  ata
device  atadisk # ATA disk drives
device  atapicd # ATAPI CDROM drives
device  atapifd # ATAPI floppy drives
options ATA_STATIC_ID   # Static device numbering
device  ahb # EISA AHA1742 family
device  ahc # AHA2940 and onboard AIC7xxx devices
options AHC_REG_PRETTY_PRINT# Print register bitfields in
debug
# output.  Adds ~128k to
driver.
device  ahd # AHA39320/29320 and onboard AIC79xx
devices
options AHD_REG_PRETTY_PRINT# Print register bitfields in
debug
# output.  Adds ~215k to
driver.
device  mpt # LSI-Logic MPT-Fusion
device  bt  # Buslogic/Mylex MultiMaster SCSI
adapters
device  scbus   # SCSI bus (required for SCSI)
device  ch  # SCSI media changers
device  da  # Direct Access (disks)
device  sa  # Sequential Access (tape etc)
device  cd  # CD
device  pass# Passthrough device (direct SCSI
access)
device  ses # SCSI Environmental Services (and
SAF-TE)
device  atkbdc  # AT keyboard controller
device

installing fbsd from foreign system

2007-01-28 Thread Volker
Hi hackers!

Probably I will be proud to have the chance to support one of
Europe's major players in root server hosting for deploying FreeBSD
as a target platform for their customers.

I need to find a way to integrate the FreeBSD install process into
their current deployment system. Currently their install process is
running from a Linux install system which does the partitioning,
make_fs etc.

I found several options to integrate:

1) install a FAT partition, copy a bootable install system in it,
boot (bsdboot) an install kernel from FAT partition and begin
(unattended) installation (including fdisk, labeling, make_fs'ing).

Any thoughts on that? I think this might be the best option.

2) fdisk'ing, labeling and make fs from the Linux system if there
are any ported label + fs tools for Linux available - are they?

3) create an ext2 partition and copy the fbsd install system into it
and boot from there to begin install process (same as 1 except
running from ext2fs). Does a FreeBSD kernel support booting from
ext2fs (using mdfs for root-fs)? If so, how?

Any better thoughts? Any hints on how to proceed with one of the 3
options? PXE or anything else is not an option. I need to integrate
the install process into an existing deployment system.

I suspect to be the UFS problem to be the biggest one when it comes
to deal with that from a running Linux system.

Also as anything needs to run unattended, how do I set FreeBSD to
try DHCP on any local interface the kernel can find?

Greetings,

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


Re: installing fbsd from foreign system

2007-01-28 Thread Oliver Fromme
Volker wrote:
  Probably I will be proud to have the chance to support one of
  Europe's major players in root server hosting for deploying FreeBSD
  as a target platform for their customers.

We've done things like that before, too.

  I need to find a way to integrate the FreeBSD install process into
  their current deployment system. Currently their install process is
  running from a Linux install system which does the partitioning,
  make_fs etc.
  
  I found several options to integrate:
  
  1) install a FAT partition, copy a bootable install system in it,
  boot (bsdboot) an install kernel from FAT partition and begin
  (unattended) installation (including fdisk, labeling, make_fs'ing).
  
  Any thoughts on that? I think this might be the best option.

I don't think you can boot a FreeBSD system from a FAT
file system.

  2) fdisk'ing, labeling and make fs from the Linux system if there
  are any ported label + fs tools for Linux available - are they?

No.

  3) create an ext2 partition and copy the fbsd install system into it
  and boot from there to begin install process (same as 1 except
  running from ext2fs). Does a FreeBSD kernel support booting from
  ext2fs (using mdfs for root-fs)? If so, how?

That _might_ work, but I haven't tried it myself.

  Any better thoughts? Any hints on how to proceed with one of the 3
  options? PXE or anything else is not an option. I need to integrate
  the install process into an existing deployment system.

PXE would really be the cleanest and easiest way, and it's
also very easy to maintain.  If you can't do that, maybe
you need to re-think your existing deplayment process and
make it more flexible ...?

Another possibility is to prepare a boot image, i.e. a file
containing boot sector and a UFS root partition with
wverything needed for bootstrapping (/boot/loader etc.,
kernel, base system).  It doesn't have to cover the whole
disk, it should be just large enough for a base system and
some support software.  It should contain a script which
configures the rest of the disk when it's booted (e.g.
set up remaining disk space, fetch packages from the net,
whatever).

From within your Linux deployment process, simply copy
the image to the beginning of the hard disk, then reboot.

  I suspect to be the UFS problem to be the biggest one when it comes
  to deal with that from a running Linux system.

Right, Linux support for UFS is weak, not to mention UFS2.

  Also as anything needs to run unattended, how do I set FreeBSD to
  try DHCP on any local interface the kernel can find?

The FreeBSD Handbook covers that topic (chapter 25.5).

Best regards
   Oliver

-- 
Oliver Fromme, secnetix GmbH  Co. KG, Marktplatz 29, 85567 Grafing b. M.
Handelsregister: Registergericht Muenchen, HRA 74606, USt-Id: DE204219783
Any opinions expressed in this message are personal to the author and may
not necessarily reflect the opinions of secnetix GmbH  Co KG in any way.
FreeBSD-Dienstleistungen, -Produkte und mehr:  http://www.secnetix.de/bsd

We, the unwilling, led by the unknowing,
are doing the impossible for the ungrateful.
We have done so much, for so long, with so little,
we are now qualified to do anything with nothing.
        -- Mother Teresa
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: installing fbsd from foreign system

2007-01-28 Thread Joan Picanyol i Puig
* Volker [EMAIL PROTECTED] [20070128 14:03]:
 I need to find a way to integrate the FreeBSD install process into
 their current deployment system. Currently their install process is
 running from a Linux install system which does the partitioning,
 make_fs etc.

Sounds like you could use a depenguinator...

http://www.daemonology.net/depenguinator/

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


Re: installing fbsd from foreign system

2007-01-28 Thread Thierry Herbelot
Le Sunday 28 January 2007 16:22, Oliver Fromme a écrit :
 Another possibility is to prepare a boot image, i.e. a file
 containing boot sector and a UFS root partition with
 wverything needed for bootstrapping (/boot/loader etc.,
 kernel, base system).  It doesn't have to cover the whole
 disk, it should be just large enough for a base system and
 some support software.  It should contain a script which
 configures the rest of the disk when it's booted (e.g.
 set up remaining disk space, fetch packages from the net,
 whatever).

 From within your Linux deployment process, simply copy

 the image to the beginning of the hard disk, then reboot.


Oone good *starting point* is the depenguinator 
(http://www.daemonology.net/depenguinator/), which I used some time ago.

There are rough edges, but at least, it gives a way to convert a PC running 
some version of Linux to FreeBSD. (in my experience, I had to resort to 
manual tweakings to get the final BSD to run).

TfH

-- 
Internet users, on the other hand, are perhaps not dealt
with harshly enough; ultimately, the only way to secure the
Internet is to ensure that these users secure their systems.
Harvard Law Review, june06 (immunizing the internet)
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Error installing FreeBSD Toshiba Tecra M3 S336

2006-03-16 Thread Eder
Hello,

I am trying to install the FreeBSD in one notbook Toshiba Tecra M3 S336, and
simply
the following error happens:

Timecounter TSC frequency 1862079434 Hz quality 800
Timecounters tick every 1.000 msec
ad0: 76319MB TOSHIBA MK8026GAX PA000U at ata0-master
PIO4
acd0: CDRW UJDA750 DVD/CDRW/1.60 at ata1-master PIO4
Trying to mount root from ufs:/dev/ad0s3a

But if I enter way single functions.

some suggestion  ?

Eder

--
Linux is for people who hate Windows,
BSD is for people who love UNIX
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Issues with installing FreeBSD 5.4 from a DOS partition

2005-09-19 Thread Ben Racine
Now, I'm somewhat new to FreeBSD, but I've really enjoyed it as an OS
so far, and found it to be quite fast, stable, and well laid out. 
Some things I've found difficult to get used to but I'm by and large
quite impressed.

Anyway, I set up 5.3 a while back from a DOS partition using the 5.3
boot disks, as I'm using an older 450 mhz pentium III which refused to
boot from the CD drive for whatever reason.  This went well, but some
ports were having issues compiling, and a few other things so I
decided to upgrade to 5.4, full clean install.

First of all, I don't know if this is just a problem with my hardware,
but it seems to me that the 'Install from ftp' option is broken in 5.4
and above - on both the computers I tried, they would hang on a 'part
length 0' error most of the way through installing the docs dist -
always at the same place, from whatever ftp I downloaded it from. On
attempting to install version 6 the same way, I had the same problem
on both pcs, in a slightly different portion of the install.

So I decided to go the DOS partition route, as it seemed to be the
best alternative.  This is what I chose  to do with 5.3 as well.  My
method in 5.3 was to first download the 5.3 disc 1 iso image from 
ftp.freebsd.org, extract the image to the DOS partition and install. 
However, as you are probably aware, the premade images in 5.4 and
above are on two discs instead of just needing the one.

Well, this ends up presenting a problem.  Also in 5.4, there was a
change in the INDEX file of the packages, and it will prompt you as to
which CD has the package you want to install, and to please put that
CD in.  As you might imagine, it's difficult to switch cds when you
are in fact installing off of a DOS partition.  The fact that it's a
DOS partition also makes it difficult to mount the drive beforehand,
go into the packages directory and run 'make index'.  What I ended up
doing to resolve this was to go into the INDEX file in the /packages
directory, and switch all the pipes at the end of each line to point
to CD_DRIVE 0 instead of the 1 or 2 which they were pointed at.  This
fixed the problem, and 5.4 installed normally.

Now, I didn't see any sort of mention of this anywhere in any docs I
could find.  The official install instructions didn't say anything
about this in the section on installing from a DOS partition, or in
the errata, etc.  I also couldn't find any docs on how to edit the
INDEX file and so on, so it's half luck that I even found a viable
solution.

I realize that almost all installs these days are going to be straight
from an Atapi cd drive, and loading the OS only occurs very rarely,
but this hardware is fine for me, and both the ftp and DOS partition
are supposedly supported install options - it would be nice if they
still worked out of the box, and that issues like what I had happen
are at least mentioned somewhere with a workaround.
I mean, even just an explanation of how to edit the cdrom.inf and
INDEX files to get the install to fly would be great.  Or a copy of
edited versions somewhere on the ftp with a little note if you want
to install all the cd packages from a DOS partition, do this!.

On the other hand, pain of the install aside I couldn't be much
happier with the OS now that it's up.

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


Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A

2005-05-30 Thread Amandeep

Steven Hartland wrote:


Sounds like u have followed the install guide with the drivers.
I couldn't get that to work ( without ACPI ) I had to install with
ACPI but this was 5.4-RELEASE but using the 5.3 driver from
highpoints site as there wasn't a 5.4 driver available.
1. Boot from cd
2. got to boot prompt, load the driver from floppy
3. unplug the floppy ( must to this as floppy under amd64 is
broken )
4. boot the kernel and install.

Notes:
1. I was using a RAID 5 array 5 disks * 400Gb.
2. Create the array using 16 k stripe or the performance will be
poor.

- Original Message - From: Amandeep [EMAIL PROTECTED]

I am instalaling FreeBSD 5.3 AMD 64 bit with  6- 200GB drives. Using 
Higpoint 1820A controller and doing RAID 10. I am using drivers for 
the card from Highpoint Web.


The problem is when I make the partitions and the machine tries to 
format the partitions it says:


unable to find device node for /dev/da0s1b under /dev!

and then it comes out.

Any ideas what is going on. Also tried making two slices no luck.






This e.mail is private and confidential between Multiplay (UK) Ltd. 
and the person or entity to whom it is addressed. In the event of 
misdirection, the recipient is prohibited from using, copying, 
printing or otherwise disseminating it or any information contained in 
it.
In the event of misdirection, illegible or incomplete transmission 
please telephone (023) 8024 3137

or return the E.mail to [EMAIL PROTECTED]

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



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



Hi all,

Ok, The 3ware and Highpoint works fine with 4GB of RAM. But I can hook 
another 4GB wiht 3ware and it works fine wiht 8GB but thats not the case 
for Highpoint.

Highpoint dont work with installation of 4GB and then inserting 4GB.
And it works fine wiht ACPi disables and floppy is present.

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


Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A

2005-05-30 Thread Amandeep

Steven Hartland wrote:


Sounds like u have followed the install guide with the drivers.
I couldn't get that to work ( without ACPI ) I had to install with
ACPI but this was 5.4-RELEASE but using the 5.3 driver from
highpoints site as there wasn't a 5.4 driver available.
1. Boot from cd
2. got to boot prompt, load the driver from floppy
3. unplug the floppy ( must to this as floppy under amd64 is
broken )
4. boot the kernel and install.

Notes:
1. I was using a RAID 5 array 5 disks * 400Gb.
2. Create the array using 16 k stripe or the performance will be
poor.

- Original Message - From: Amandeep [EMAIL PROTECTED]

I am instalaling FreeBSD 5.3 AMD 64 bit with  6- 200GB drives. Using 
Higpoint 1820A controller and doing RAID 10. I am using drivers for 
the card from Highpoint Web.


The problem is when I make the partitions and the machine tries to 
format the partitions it says:


unable to find device node for /dev/da0s1b under /dev!

and then it comes out.

Any ideas what is going on. Also tried making two slices no luck.






This e.mail is private and confidential between Multiplay (UK) Ltd. 
and the person or entity to whom it is addressed. In the event of 
misdirection, the recipient is prohibited from using, copying, 
printing or otherwise disseminating it or any information contained in 
it.
In the event of misdirection, illegible or incomplete transmission 
please telephone (023) 8024 3137

or return the E.mail to [EMAIL PROTECTED]

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



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



Hi all,

Ok, The 3ware and Highpoint works fine with 4GB of RAM. But I can hook 
another 4GB wiht 3ware and it works fine wiht 8GB but thats not the case 
for Highpoint.

Highpoint dont work with installation of 4GB and then inserting 4GB.
And it works fine wiht ACPi disables and floppy is present.

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


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


Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A

2005-05-24 Thread Bjoern Koenig

Hello,

I think it's a question for the highpoint support. It's their product 
and their driver.


Here are some instant hints:

 - read the PDF carefully and follow the instructions strictly
 - use the BIOS in the tarball; nothing else!!

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


Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A

2005-05-24 Thread Bjoern Koenig

Hello,

I think it's a question for the highpoint support. It's their product 
and their driver.


Here are some instant hints:

 - read the PDF carefully and follow the instructions strictly
 - use the BIOS in the tarball; nothing else!!

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


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


Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A

2005-05-23 Thread Amandeep

Hi all,

I am instalaling FreeBSD 5.3 AMD 64 bit with  6- 200GB drives. Using 
Higpoint 1820A controller and doing RAID 10. I am using drivers for the 
card from Highpoint Web.


The problem is when I make the partitions and the machine tries to 
format the partitions it says:


unable to find device node for /dev/da0s1b under /dev!

and then it comes out.

Any ideas what is going on. Also tried making two slices no luck.

Thanks in advance.

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


Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A

2005-05-23 Thread Amandeep

Hi guys,

Anyone???


Amandeep wrote:


Hi all,

I am instalaling FreeBSD 5.3 AMD 64 bit with  6- 200GB drives. Using 
Higpoint 1820A controller and doing RAID 10. I am using drivers for 
the card from Highpoint Web.


The problem is when I make the partitions and the machine tries to 
format the partitions it says:


unable to find device node for /dev/da0s1b under /dev!

and then it comes out.

Any ideas what is going on. Also tried making two slices no luck.

Thanks in advance.

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




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


Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A

2005-05-23 Thread Amandeep

Hi guys,

Anyone???


Amandeep wrote:


Hi all,

I am instalaling FreeBSD 5.3 AMD 64 bit with  6- 200GB drives. Using 
Higpoint 1820A controller and doing RAID 10. I am using drivers for 
the card from Highpoint Web.


The problem is when I make the partitions and the machine tries to 
format the partitions it says:


unable to find device node for /dev/da0s1b under /dev!

and then it comes out.

Any ideas what is going on. Also tried making two slices no luck.

Thanks in advance.

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




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


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


Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A

2005-05-23 Thread Steven Hartland

Sounds like u have followed the install guide with the drivers.
I couldn't get that to work ( without ACPI ) I had to install with
ACPI but this was 5.4-RELEASE but using the 5.3 driver from
highpoints site as there wasn't a 5.4 driver available.
1. Boot from cd
2. got to boot prompt, load the driver from floppy
3. unplug the floppy ( must to this as floppy under amd64 is
broken )
4. boot the kernel and install.

Notes:
1. I was using a RAID 5 array 5 disks * 400Gb.
2. Create the array using 16 k stripe or the performance will be
poor.

- Original Message - 
From: Amandeep [EMAIL PROTECTED]
I am instalaling FreeBSD 5.3 AMD 64 bit with  6- 200GB drives. Using 
Higpoint 1820A controller and doing RAID 10. I am using drivers for 
the card from Highpoint Web.


The problem is when I make the partitions and the machine tries to 
format the partitions it says:


unable to find device node for /dev/da0s1b under /dev!

and then it comes out.

Any ideas what is going on. Also tried making two slices no luck.




This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. 


In the event of misdirection, illegible or incomplete transmission please 
telephone (023) 8024 3137
or return the E.mail to [EMAIL PROTECTED]

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


Re: Error installing FreeBSd 5.3 AMD 64 bit-Highpoint 1820A

2005-05-23 Thread Steven Hartland

Sounds like u have followed the install guide with the drivers.
I couldn't get that to work ( without ACPI ) I had to install with
ACPI but this was 5.4-RELEASE but using the 5.3 driver from
highpoints site as there wasn't a 5.4 driver available.
1. Boot from cd
2. got to boot prompt, load the driver from floppy
3. unplug the floppy ( must to this as floppy under amd64 is
broken )
4. boot the kernel and install.

Notes:
1. I was using a RAID 5 array 5 disks * 400Gb.
2. Create the array using 16 k stripe or the performance will be
poor.

- Original Message - 
From: Amandeep [EMAIL PROTECTED]
I am instalaling FreeBSD 5.3 AMD 64 bit with  6- 200GB drives. Using 
Higpoint 1820A controller and doing RAID 10. I am using drivers for 
the card from Highpoint Web.


The problem is when I make the partitions and the machine tries to 
format the partitions it says:


unable to find device node for /dev/da0s1b under /dev!

and then it comes out.

Any ideas what is going on. Also tried making two slices no luck.




This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. 


In the event of misdirection, illegible or incomplete transmission please 
telephone (023) 8024 3137
or return the E.mail to [EMAIL PROTECTED]

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


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


Installing minibsd inside vmware virtual disk

2004-09-14 Thread Paolo Pisati
Hi guys,

[the long story]
i've a problem while i try to install minibsd inside
a virtual disk of vmware3 running on top of FreeBSD.

I obtained minibsd scripts form the freesbie cvs, 
unpacked in a dir on my disk, executed all the scripts and 
generated a iso containing a complete minibsd system.

/*
 * personal note: minibsd is SO swee
 * ONLY 15mbs for a working system!!! =)
 */

Booted vmware with freesbie, mouned the minibsd iso
and a 32mb virtual disk previously prepared(see below
for some more info), copied all the stuff from the minibsd iso 
and updated /etc/fstab.
Installed the boot code and halted the system.
Unmounted all the iso (freesbie  minibsd iso),
and booted vmware with only virtual disk.
It started correctly, executed the boot code, loaded
the kernel, decompressed it but
when it came to mount / (the previously created fs)
it paniced:

panic: going nowhere without my init
(detaild screenshot here: http://www.gufi.org/~flag/vmware-minibsd-init-signal6.gif)

Now, i know i'm missing something very stupid, but i don't know what...

 /* WARNING: brain fart starts here */

The panic msg seems to be clear: the kernel can't find the init 
executable so it panics, but:

1) the fs seemed to be ok cause it was mounted with no prob
(if it couldn't find the fs i expected a panic during the 
 mount phase Mounting root from ufs:...

2) the init file is present in the created fs
(/sbin/init)

So here comes the question:
why the hell (if the fs is good and it was mounted correctly)
the kernel cannot find it?

/* End of brain fart */

Uhmmm... probably i should read again the boot section
in the handbook or think a bit more but i'm sure
there's something REALLY stupid i'm missing...
Or maybe is just minibsd that doesn't use init
but a custom program and i botched it...
But if you have any ideas or suggestions i would be
REALLY pleased to here it from you... =)

Thanks.

structure of the created fs:

[EMAIL PROTECTED]:~# fdisk /dev/ad0
*** Working on device /dev/ad0 ***
parameters extracted from in-core disklabel are:
cylinders=65 heads=16 sectors/track=63 (1008 blks/cyl)

parameters to be used for BIOS calculations are:
cylinders=65 heads=16 sectors/track=63 (1008 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 (0xa5),(FreeBSD/NetBSD/386BSD)
start 63, size 64449 (31 Meg), flag 80 (active)
beg: cyl 0/ head 1/ sector 1;
end: cyl 63/ head 15/ sector 63
The data for partition 2 is:
UNUSED
The data for partition 3 is:
UNUSED
The data for partition 4 is:
UNUSED
[EMAIL PROTECTED]:~#))

bsdlabel ad0s1
# /dev/ad0s1:
8 partitions:
#size   offsetfstype   [fsize bsize bps/cpg]
  a:64433   164.2BSD 2048 16384  4032 
  c:644490unused0 0 # raw part, don't edit
[EMAIL PROTECTED]:~# mkdir /tmp/minibsd
[EMAIL PROTECTED]:~# mount /dev/ad0s1a /tmp/minibsd
[EMAIL PROTECTED]:~# ls -la /tmp/minibsd/sbin/init
-r-x--  1 root  wheel  18272 Sep 14 13:07 /tmp/minibsd/sbin/init
[EMAIL PROTECTED]:~# /tmp/minibsd/sbin/init
init: already running
[EMAIL PROTECTED]:~#
[EMAIL PROTECTED]:~# ls -la /tmp/minibsd/
total 34
drwxr-xr-x  17 root  wheel  512 Sep 14 13:07 .
drwxrwxrwx   5 root  wheel  512 Sep 14 14:04 ..
drwxrwxr-x   2 root  operator   512 Sep 14 13:06 .snap
drwxr-xr-x   2 root  wheel  512 Sep 14 13:07 bin
drwxr-xr-x   5 root  wheel  512 Sep 14 13:06 boot
dr-xr-xr-x   2 root  wheel  512 Sep 14 13:06 dev
drwxr-xr-x  18 root  wheel 1536 Sep 14 13:07 etc
drwxr-xr-x   3 root  wheel  512 Sep 14 13:06 lib
drwxr-xr-x   2 root  wheel  512 Sep 14 13:06 libexec
drwxr-xr-x   2 root  wheel  512 Sep 14 13:06 mnt
dr-xr-xr-x   2 root  wheel  512 Sep 14 13:07 proc
drwxr-xr-x   2 root  wheel  512 Sep 14 13:07 rescue
drwxr-xr-x   2 root  wheel  512 Sep 14 13:07 root
drwxr-xr-x   2 root  wheel 1024 Sep 14 13:07 sbin
lrwxr-xr-x   1 root  wheel   11 Sep 14 13:07 sys - usr/src/sys
drwxr-xr-t   2 root  wheel  512 Sep 14 13:07 tmp
drwxr-xr-x  13 root  wheel  512 Sep 14 13:07 usr
drwxr-xr-x  20 root  wheel  512 Sep 14 13:07 var
[EMAIL PROTECTED]:~# cat /tmp/minibsd/etc/fstab
# See the fstab(5) manual page for important information on automatic mounts
# of network filesystems before modifying this file.
#
# DeviceMountpoint  FStype  Options DumpPass#
/dev/ad0s1a /   ufs rw,noatime  1   1
[EMAIL PROTECTED]:~#

kernel config file:

machine i386
cpu I486_CPU
cpu I586_CPU
cpu I686_CPU
ident   MINIBSD
maxusers0

options SCHED_4BSD
options INET#InterNETworking
options FFS #Berkeley Fast Filesystem
options SOFTUPDATES #Enable FFS soft updates 

Re: Invalid realloc size of 0 when installing on an AMD athlonXP barton poweredmachine

2004-04-14 Thread Baldur Gislason
Turned out to be a bug in sysinstall when booting from a floppy and installing 
over a network, I had no problems when I just wrote the ISO but I prefer 
network install since it takes me about an hour to download the ISO, and by 
that time I could have the machine up and running if I used network install.

Baldur

On Tuesday 13 April 2004 21:55, jason wrote:
 Baldur Gislason wrote:
 I'm trying to install 5.2.1-rel from FTP with an intel 100Mb network card
  on an AMD AthlonXP barton 2500+ with an Aopen AK77-8XN motherboard and
  1GB ram. When at 65% through extracting base, sysinstall crashes with the
  message: Fatal error: Invalid realloc size of 0! - PRESS ANY KEY TO
  REBOOT I know this is a very common problem these days, has any solution
  been found? I'd rather sell this machine than using some other operating
  system on it.
 
 Baldur
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-hardware
 To unsubscribe, send any mail to
  [EMAIL PROTECTED]

 I have an athlon barton core on an epox 8rda3i.  I have never seen this
 problem and I cvsup every few weeks on current.  I have not done a clean
 install since last year.  Is that a local ftp or the net?  Can you make
 a cd from the iso, or do you not want to?  I have done both in the past
 and the cd is much faster, even if you hae broad band.  Maybe not if you
 have a t3 or better, but not all ftp servers will be fast all the time.
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-hardware
 To unsubscribe, send any mail to [EMAIL PROTECTED]

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


Re: Invalid realloc size of 0 when installing on an AMD athlonXP barton powered machine

2004-04-13 Thread jason
Baldur Gislason wrote:

I'm trying to install 5.2.1-rel from FTP with an intel 100Mb network card on 
an AMD AthlonXP barton 2500+ with an Aopen AK77-8XN motherboard and 1GB ram. 
When at 65% through extracting base, sysinstall crashes with the message:
Fatal error: Invalid realloc size of 0! - PRESS ANY KEY TO REBOOT
I know this is a very common problem these days, has any solution been found? 
I'd rather sell this machine than using some other operating system on it.

Baldur

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

I have an athlon barton core on an epox 8rda3i.  I have never seen this 
problem and I cvsup every few weeks on current.  I have not done a clean 
install since last year.  Is that a local ftp or the net?  Can you make 
a cd from the iso, or do you not want to?  I have done both in the past 
and the cd is much faster, even if you hae broad band.  Maybe not if you 
have a t3 or better, but not all ftp servers will be fast all the time.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Invalid realloc size of 0 when installing on an AMD athlonXP barton powered machine

2004-04-02 Thread Baldur Gislason
I'm trying to install 5.2.1-rel from FTP with an intel 100Mb network card on 
an AMD AthlonXP barton 2500+ with an Aopen AK77-8XN motherboard and 1GB ram. 
When at 65% through extracting base, sysinstall crashes with the message:
Fatal error: Invalid realloc size of 0! - PRESS ANY KEY TO REBOOT
I know this is a very common problem these days, has any solution been found? 
I'd rather sell this machine than using some other operating system on it.

Baldur

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


Installing 5.2.1 or 4.9 problems

2004-03-16 Thread Ali
Hello,

I'm trying to install Freebsd 5.2.1 on my laptop Samsung X30 but it dies
with this message:

 - In default mode and ACPI disabled mode :

Mounting root from ufs:/dev/md0

- Verbose mode :

(probe1:sbp0:0:1:0): error 22
(probe1:sbp0:0:1:0): Unretryable Eroor
(probe1:sbp0:0:2:0): error 22
(probe1:sbp0:0:2:0): Unretryable Eroor
(probe1:sbp0:0:3:0): error 22
(probe1:sbp0:0:3:0): Unretryable Eroor
(probe1:sbp0:0:6:0): error 22
(probe1:sbp0:0:6:0): Unretryable Eroor
(probe1:sbp0:0:0:0): error 22
(probe1:sbp0:0:0:0): Unretryable Eroor
(probe1:sbp0:0:4:0): error 22
(probe1:sbp0:0:4:0): Unretryable Eroor
(probe1:sbp0:0:5:0): error 22
(probe1:sbp0:0:5:0): Unretryable Eroor
Mounting root from ufs:/dev/md0
start_init : trying /sbin/init
start_init : trying /sbin/oinit
start_init : trying /sbin/init.bak
start_init : trying /stand/sysinstall
acpi_acad0: acline initialization done, tried 7 times

I tried 4.9 without success :

ppc0: parallel port not found.
ad0: READ command timeout tag=0 serv=0 - resetting
ata0: resetting devices ..

Here is the result of lsdev :

cd @ 0xff5c
disk @ 0xef68
disk0:BIOS drive A:
disk0a:FFS
disk0c:FFS
disk1:BIOS drive C:
disk1s1: Unknown fs: 0x7
disk1s2: FAT32
pxe @ 0xd6d8

Can you help me with that?

Thank you

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


Mirror Plex (Raid 1) after installing FreeBSD

2003-09-16 Thread Murat USTUNTAS
Hello,

I read documents on Vinum for FreeBSD. But, some points exculed.. I want to
find some points on Vinum..
If I have identical 2 disks (Samsung SP6300 Series),suppose, I want to
install the
FreeBSD on one of them 60 Gb. After installing the FreeBSD , I want to run
vinum with mirroring with whole disk. How can I configure like situation..
Virtually:

-6Gb-|--10 Gb--|-44 Gb-
+-+-+---+
| | |   |
|  /  |   /usr  | /home | FreeBSD installed 1. Disk
| | |   |
+-+-+---+
\_Vinum_/
   ||
   ||
   \/
 RAID - 1

+-+-+---+
| | |   |
|  /  |   /usr  | /home | FreeBSD Vinum Mirror Plex 2. Disk
| | |   |
+-+-+---+
Regards,

Murat Ustuntas

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


Re: Mirror Plex (Raid 1) after installing FreeBSD

2003-09-16 Thread Peter Pentchev
On Tue, Sep 16, 2003 at 07:08:13PM +0300, Murat USTUNTAS wrote:
 Hello,
 
 I read documents on Vinum for FreeBSD. But, some points exculed.. I want to
 find some points on Vinum..
 If I have identical 2 disks (Samsung SP6300 Series),suppose, I want to
 install the
 FreeBSD on one of them 60 Gb. After installing the FreeBSD , I want to run
 vinum with mirroring with whole disk. How can I configure like situation..

Isn't this exactly what is covered by the 'Bootstrapping Vinum' article?
http://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/vinum/

G'luck,
Peter

-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
This inert sentence is my body, but my soul is alive, dancing in the sparks of your 
brain.


pgp0.pgp
Description: PGP signature


Problem on installing FreeBSD 4.5-RELEASE

2002-06-27 Thread

My computer's hardware are shown below: 
  CPU:   Celeron 400MHz 
  Chipset:   VIA VT82C691 + VT82C586B 
  BIOS:  Award (1998) 
  Hard Disk: Maxtor 4D040H2 (40GB IDE) 
  Memory:2*128MB SDRAM 

At first, the BIOS couldn't recognize the new Maxtor Disk. I upgraded it
to 2001, 
and it worked. I planned to partition the disk as follow: 
  Primary Partition 1: 7.2GB, FAT32 (running Windows XP Pro) 
  Primary Partition 2: 4.0GB, UFS (running FreeBSD) 
/ = 128MB 
swap = 256MB 
/var = 384MB 
/tmp = 256MB 
/usr = every thing else 
  Extended Partition: Logical Disk 1 and 2: NTFS (for Windows XP Pro) 

I setup Windows XP first, and install System Commander 7.04 as the boot
manager. 
During the installation of FreeBSD 4.5-RELEASE, when the system is
making the 
/dev/ad0s3a, I see warning messages from virtual terminal 2: 
  Warning: Block size and bytes per inode restrict cylinders per group
to 89. 
  Warning: inode blocks/cyl group (171) = data blocks (64) in last
cylinder 
  group. This implies 2048 sector(s) are unallocated. 

During the format process, I see following messages showing frequently: 
  ad0: WRITE command timeout tag=0 serv=0 - resetting 
  ata0: resetting devices ... done 

After file system was made, the above messages still show intermittently
during 
the file copy process. Finally, system shows something like this and
reboot: 
  Fatal trap 12: page fault while in kernel mode 
  fault virtual address   =   ... 
  fault code / supervisor write, page not present 
  instruction pointer = ... 
  stack pointer = ... 
  frame pointer = ... 
  code segment =  ... 
   =  ... 
  processor eflags = ... 
  current process =  ... 
  interrupt mask =   ... 
  trap number =   12 
  panic: page fault 

Or something like this: 
  syncing disk ... 

I changed the options of newfs to -b 32768 -f 4096 -c 16. This time
the 
cylinders per group warning message disappear, and the timeout
warnings went
out infrequetly, but the install process still can not finish. I tried
some other 
values of block size, fragment size and cylinders/group, they all cannot
fix the
problem. 

The same problem occurred when I tried to install FreeBSD 5.0-CURRENT.
After 
several times of defeat, I turned to FreeBSD 3.4-STABLE, which uses wd
driver 
for hard disks. Except the following warning message, nothing went wrong
-- the 
installation has been completely successful: 
  Warning: the last 2048 sector(s) can't be allocated. 

I sent this question to [EMAIL PROTECTED], but no one can
resolve it. 
What's the problem with FreeBSD versions that use the ata hard disk
driver? 


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



Installing headers and man pages for kmods

2002-06-25 Thread Harti Brandt


Hi there,

is there a canonical way to do this? Some time ago the ability to install
man pages was removed from kmod.mk. This is reasonable for the system
itself, but for third party packages this either forces one to poke in the
internals of /usr/share/mk (not an exciting experience) or to fit the
source layout to the one expected by the system. The latter is not so nice
if you have let's say 6 netgraph nodes, each one with a header file and
a man page. You get the c files in 6 per node directories, the man pages
in another directory, the header files in a third one. Given, that they
are strongly related to each other this is rather unfortunate.

At the moment I managed it to include the relevant make file (bsd.man.mk
and bsd.incs.mk) from Makefile.inc, but as I suppose, this possibility may
be removed at any time. Given that this seems to work, wouldn't it be
possible to remove the bsd.init.mk check from those files, so that
they can be included from Makefile?

Regards,
harti
-- 
harti brandt, http://www.fokus.gmd.de/research/cc/cats/employees/hartmut.brandt/private
  [EMAIL PROTECTED]


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



Re: Installing FreeBSD on a 20Gb disc on a laptop with old BIOS

2001-12-22 Thread Adrian Penisoara

Hi,

  I'm not sure wether I've had this problem, but to me it seems that the
right solution is:

  * let the IBM DM make that FAT partition, because that's what helps
fdisk recognize the correct disk geometry (see the docs)

  * in the sysinstall delete that FAT partition and make one small slice
(no more than 500Mb) which will hold the root filesystem (otherwise
the bootloader won't be able to load the kernel) and make the rest a
separate slice

  * in disklabel make the / fs in the first slice (ad0s1a) and the rest of
the filesystems in the second slice (ad0s2). The swap can be in either
of them two.

 My $0.02
 Ady (@warpnet.ro)
___
| Programming in BASIC causes brain damage.   |
|   (Edsger Wybe Dijkstra)|

On Wed, 19 Dec 2001, Karl-Petter [iso-8859-1] Åkesson wrote:

 Hi,
 
 I have an old IBM thinkpad 560 that I want to runt FreeBSD on. The
 original drive is only 2Gb so I upgraded to a 20Gb. Now it turned out
 that the BIOS was to old to support this and the laptop locked-up during
 the initialization phase before booting. DDO(Dynamic Drive Overlay) from
 OnTrack solved this since it tricks the BIOS to believe it has a much
 smaller drive.
 
 But It seems to trick FDISK in the FreeBSD installation as well.
 I have tried a lot of different ways to come around this but somehow I
 always end up with a non-working system :-(
 
 If I just install DDO on the drive and then start the FREEBSD
 installation FDISK thinks the drive starts at sector -63 and gets very
 confused. I solved this by letting the IBM Disk Manager, the software
 that I use to install DDO, to create a FAT partition in the beginning of
 the drive, only 100 MB.
 Now I can use the rest of the disk in FDISK to make it a FREEBSD
 partition, but it wont boot. Changing the first 100MB partition to
 FreeBSD type, does not help, the label editor cant use it, says Unable
 to create partition. Too big?.
 
 Anyone that have succesfully managed to install FreeBSD on a large drive
 that isnt supported by the BIOS and use the entire disk for FreeBSD? Any
 tips would be very welcome!
 
 Kalle
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-hackers in the body of the message
 


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



Installing FreeBSD on a 20Gb disc on a laptop with old BIOS

2001-12-19 Thread Karl-Petter Åkesson

Hi,

I have an old IBM thinkpad 560 that I want to runt FreeBSD on. The
original drive is only 2Gb so I upgraded to a 20Gb. Now it turned out
that the BIOS was to old to support this and the laptop locked-up during
the initialization phase before booting. DDO(Dynamic Drive Overlay) from
OnTrack solved this since it tricks the BIOS to believe it has a much
smaller drive.

But It seems to trick FDISK in the FreeBSD installation as well.
I have tried a lot of different ways to come around this but somehow I
always end up with a non-working system :-(

If I just install DDO on the drive and then start the FREEBSD
installation FDISK thinks the drive starts at sector -63 and gets very
confused. I solved this by letting the IBM Disk Manager, the software
that I use to install DDO, to create a FAT partition in the beginning of
the drive, only 100 MB.
Now I can use the rest of the disk in FDISK to make it a FREEBSD
partition, but it wont boot. Changing the first 100MB partition to
FreeBSD type, does not help, the label editor cant use it, says Unable
to create partition. Too big?.

Anyone that have succesfully managed to install FreeBSD on a large drive
that isnt supported by the BIOS and use the entire disk for FreeBSD? Any
tips would be very welcome!

Kalle

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



problems installing on scsi disks ?

2001-12-01 Thread Joesh Juphland


Vanilla x86 system with two identical scsi disks attached to a single 2940.  
Installation is flawless - in custom install, I choose da0 and then da1, one 
after the other, to partition.  Again, I say, installation goes flawlessly.

When the system boots though, it cannot get past the boot manager.  I wait 
for it to time out and go to the default option, but it just beeps.  Any 
attempt to hit enter, or f1, or f5, yields another beep.  It will not boot.

So, over five successive reloads, I have tried bootloader on da0, nothing on 
da1, bootloader on both, normal loader on da0, nothing on da1, and normal 
loader on both.  No matter what combo I try with these two, it will not boot 
when I partition and label these two disks.

It just gives me f1 and f5 choices, and hangs forever. (or, when I chose to 
put the loader but NOT the boot manager on both disks, it just comes up 
saying missing operating system)

Also there are no silly scsi problems like ID conflict or bios not set to 
boot scsi or whatever.  It is set to boot scsi just fine, and we know the 
disks, etc. are working since the installation goes without a hitch.

Any ideas why I cannot do a simple install onto very plain hardware and 
disks ?

thanks,

Joesh

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



Re: problems installing on scsi disks ?

2001-12-01 Thread Niels Chr. Bank-Pedersen

On Sat, Dec 01, 2001 at 03:02:24AM -0700, Joesh Juphland wrote:
 
 Vanilla x86 system with two identical scsi disks attached to a single 2940.  
 Installation is flawless - in custom install, I choose da0 and then da1, one 
 after the other, to partition.  Again, I say, installation goes flawlessly.
 
 When the system boots though, it cannot get past the boot manager.  I wait 
 for it to time out and go to the default option, but it just beeps.  Any 
 attempt to hit enter, or f1, or f5, yields another beep.  It will not boot.
 
 So, over five successive reloads, I have tried bootloader on da0, nothing on 
 da1, bootloader on both, normal loader on da0, nothing on da1, and normal 
 loader on both.  No matter what combo I try with these two, it will not boot 
 when I partition and label these two disks.
 
 It just gives me f1 and f5 choices, and hangs forever. (or, when I chose to 
 put the loader but NOT the boot manager on both disks, it just comes up 
 saying missing operating system)

This usually happens (in my experience, at least), when sysinstall
and the kernel disagree about the disk geometry.
Try checking the CHS values when the kernel detects the disk
(is available in the scroll-back buffer in one of the vty's)
and then change sysinstalls values accordingly.  This is done in
the fdisk menu with G, iirc.


 Also there are no silly scsi problems like ID conflict or bios not set to 
 boot scsi or whatever.  It is set to boot scsi just fine, and we know the 
 disks, etc. are working since the installation goes without a hitch.
 
 Any ideas why I cannot do a simple install onto very plain hardware and 
 disks ?
 
 thanks,
 
 Joesh
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-hackers in the body of the message


/Niels Chr.

NB, tried replying in pm, but sender address bounces :(

-- 
 Niels Christian Bank-Pedersen, NCB1-RIPE.

 Hey, are any of you guys out there actually *using* RFC 2549?

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



kern.bootfile sysctl and installing new kernel

2001-07-12 Thread Jim Pirzyk

I though in the past when you installed a new kernel that the 
sysctl kern.bootfile was changed to be /kernel.old  (this is
under FreeBSD 4.3-RELEASE), but looking at the makefile, this
is no longer the case.  Was this done for a reason?

- JimP

-- 
--- @(#) $Id: dot.signature,v 1.10 2001/05/17 23:38:49 Jim.Pirzyk Exp $
__o   [EMAIL PROTECTED] - [EMAIL PROTECTED]
 _'\,_   Senior Systems Engineer, Walt Disney Feature Animation 
(*)/ (*)  

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



Installing X windows along with FreeBSD 4.2

2001-01-18 Thread gerald stoller

   I recently installed  FreeBSD 4.2  and tried to install  X windows  
along with it, but somehow or other that didn't work.  Stuff in the  Xf86336 
  directory of the  FreeBSD 4.2 CDROM  did get put onto my hard-drive in the 
  XF86336  directory, but I don't know if everything that should have been 
transferred was transferred; particularly I can't find the  config  and  
setup  files (I am using the names used in  FreeBSD 3.3  because they appear 
in Greg Lehey's book).  What do I do to configure  X windows  and start it 
running, and where do I find this information in the documentation that came 
with  FreeBSD 4.2 ?
  Please send the response directly back to me, in addition to sending 
it to  hackers , as the volume of mail to  hackers  is so great that I could 
very easily miss the response if it were only sent there (and you may omit 
this paragraph from any response).

_
Get your FREE download of MSN Explorer at http://explorer.msn.com



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



SNDCTL_DSP_CHANNELS not defined in soundcard.h when installing KDE2.0.1

2000-12-14 Thread Raymond Law

I am using FreeBSD 4.0-Release and have installed kdesupport-2.0.1.  I also
set LIBS to -Wl,-export-dynamic as stated in ***.  I did ldconfig -m
$KDEDIR/lib and ldconfig -m $QTDIR/lib.  I configured it and it seemed
fine.  But gmake fails and gives the following error:

artsdsp.c: In function 'ioctl':
artsdsp.c:222: 'SNDCTL_DSP_CHANNELS' undeclared (first use in this function)
artsdsp.c:222: (Each undeclared identifier is reported only once
artsdsp.c:222: for each function it appears in.)

Any idea on why SNDCTL_DSP_CHANNELS is not defined in soundcard.h?
Thanks.
Ray,



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



Re: SNDCTL_DSP_CHANNELS not defined in soundcard.h when installing KDE 2.0.1

2000-12-14 Thread Will Andrews

On Thu, Dec 14, 2000 at 01:20:43PM -0500, Raymond Law wrote:
 Any idea on why SNDCTL_DSP_CHANNELS is not defined in soundcard.h?

Any idea why you are not using the ports to compile KDE2?  It's no
secret that KDE is Linux-centric, and as such they don't bother to check
for problems like slight differences in the APIs.

This should be on ports@ anyhow, not hackers@.

-- 
wca


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



Need help on installing FreeBSd 4.1

2000-12-02 Thread petro

Hello!
I try to install the FreeBSD 4.1 on the machine after the first attempt
fail due to the switch of light.
On the second attempt I receive such message the FPU device not available.
Tha automatic reboot in 15 seconds.

Thank you very much.





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



Re: installing ...

2000-09-14 Thread Kris Kennaway

On Wed, 13 Sep 2000, Danny Braniss wrote:

 after i made a 'make buidlworld' how can i get it to install in /5.0-CURRENT?
 i compiled on a 4.1.

I respectfully suggest that if you dont know how to install FreeBSD from
source, you shouldn't be using 5.0-CURRENT, which can and will screw up
your system unless you already know how to fix it yourself.

See http://www.freebsd.org/handbook/current-stable.html

Kris

--
In God we Trust -- all others must submit an X.509 certificate.
-- Charles Forsythe [EMAIL PROTECTED]



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



Re: installing ...

2000-09-14 Thread Danny Braniss

In message [EMAIL PROTECTED]you 
write:
}On Wed, 13 Sep 2000, Danny Braniss wrote:
}
} after i made a 'make buidlworld' how can i get it to install in 
/5.0-CURRENT?
} i compiled on a 4.1.
}
}I respectfully suggest that if you dont know how to install FreeBSD from
}source, you shouldn't be using 5.0-CURRENT, which can and will screw up
}your system unless you already know how to fix it yourself.

well, it shouldn't screw up my system, if, for example, the install is not to
a live system but to another partition, or disk which i could later boot from.
i only asked, since i saw that one can compile to /usr/obj, which is fine, so
what happend to that extra mile?

danny





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



Re: installing ...

2000-09-14 Thread Kris Kennaway

On Thu, 14 Sep 2000, Danny Braniss wrote:

 In message [EMAIL PROTECTED]you 
 write:
 }On Wed, 13 Sep 2000, Danny Braniss wrote:
 }
 } after i made a 'make buidlworld' how can i get it to install in 
 /5.0-CURRENT?
 } i compiled on a 4.1.
 }
 }I respectfully suggest that if you dont know how to install FreeBSD from
 }source, you shouldn't be using 5.0-CURRENT, which can and will screw up
 }your system unless you already know how to fix it yourself.
 
 well, it shouldn't screw up my system, if, for example, the install is not to
 a live system but to another partition, or disk which i could later boot from.
 i only asked, since i saw that one can compile to /usr/obj, which is fine, so
 what happend to that extra mile?

Current can screw up anything and everything :-)

Kris

--
In God we Trust -- all others must submit an X.509 certificate.
-- Charles Forsythe [EMAIL PROTECTED]



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



installing ...

2000-09-13 Thread Danny Braniss

after i made a 'make buidlworld' how can i get it to install in /5.0-CURRENT?
i compiled on a 4.1.

tia,
danny




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



Problem installing FreeBSD 4.0

2000-06-16 Thread Sbenitez


-- Forwarded by Satcha Benitez/Milwaukee/RA/Rockwell on
06/16/2000 10:55 AM ---


Satcha Benitez
06/16/2000 10:33 AM

To:   [EMAIL PROTECTED]
cc:
Subject:  Problem installing FreeBSD 4.0

Hi,

My name is Satcha Benitez and I'm trying to install FreeBSD in a Gateway
P5-90. I'm having some problems and i was wondering if you could help me
out. This is my first time, although i'm familiar with UNIX.

First, i formated the hard drive (i had win95 before) and copied /bin
and /manpages from your web site, by using a CR-ROM. I also created the
2 disks, kern.flp and mfsroot.flp.

When i boot the computer with the kern.flp disk starts doing some staff
and then the computer asks for the mfsroot.flp disk. I insert the disk
and the Kernel Configuration Menu pops up. I choose the full-screen
visual mode and i get the menu with the active and inactive drivers. I
get 8 conflicts so i disable those drivers. Once i hit Q to save and
exit i get a bunch of messages

After i press Q i get the following messages:

avail memory = 26640384 (26016K bytes)
Preloaded elf kernel "kernel" at 0xc05e7000
Preloaded mfs_root "/mfsroot" at 0xc05e7084
Intel Pentium detected, installing woraround for F00F bug
md0 : Preloaded image /mfsroot 2949120 bytes at 0xc0315b98
md1 : Malloc disk
npx0 : math processor on motherboard
npx0 : INT 16 interface
pcib0 : Host to PCI bridge on motherboard
pci0 : PCI bus on pcib0
atapci0: RZ 100? ATA controller !WARNING! buggy chip data loss possible
port 0
x3f4-0x3f7,0x1f0-0x1f7 at device 1.0 on pci0
atapci0: Busmastering DMA not supported
panic: resource_list_alloc : resource entry is busy
Uptime: 0s
Automatic reboot in 15 seconds - press any key on the console to abort


I'm stuck here. I don't know what to do. I've read all the documentation
but nothing. Could you please help me out? I' really appreciate.

Thanks a lot. I look forward to hearing from you.

Satcha Benitez.
[EMAIL PROTECTED]






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



Re: Installing -current

2000-02-04 Thread Jonas Bülow

  Before I ran into trouble I want to ask if 4.0 supports the
  3CCFE574BT NIC? (3com 3c574).
 
 It looks that way.  I haven't had the occasion to try myself.

It worked!


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



Installing -current

2000-02-03 Thread Jonas Bülow

Hi,

What is the easiest way to install FreeBSD-current? Do I have to install
a 3.x release and then cvsup to the -current followed by a make world? 

Before I ran into trouble I want to ask if 4.0 supports the 3CCFE574BT
NIC? (3com 3c574).
Right now I'm running this NIC with FreeBSD3.3+PAO on a Thinkpad570 and
it works great.


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



Re: Installing -current

2000-02-03 Thread Assar Westerlund

Jonas Bülow [EMAIL PROTECTED] writes:
 Hi,

Hej.

 What is the easiest way to install FreeBSD-current?

Grab floopies and install over FTP from current.freebsd.org.  And then
run cvsup if you want to update to even more current code.

 Before I ran into trouble I want to ask if 4.0 supports the
 3CCFE574BT NIC? (3com 3c574).

It looks that way.  I haven't had the occasion to try myself.

/assar


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