Re: Nanobsd on a CD-ROM

2008-06-13 Thread Bjoern Koenig
J. Porter Clark wrote:

 I don't have a way to make such an image without using mkisofs.
 Figuring out how to pack the nanobsd image in such a way that
 mkisofs can make an El Torito bootable CD from it sounds
 difficult, offhand.  Anybody know how to do this sort of thing?
 Is it even possible?

Yes, of course this is possible. Think of the the FreeBSD installation
images that boot from CD too. I did this already with a custom
distribution, but I don't remember the steps right now. /boot/cdboot is
the boot code that should do this. Take a look at
/usr/src/release/i386/mkisoimages.sh.

Björn


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


Re: finding an old md5 from an old ports tree...

2005-05-31 Thread Bjoern Koenig

Joe Schmoe wrote:


Since I have no 4.5/4.6 systems up and running, and
since I cannot find old ftp trees with them on it, my
question is:  how can I find the distinfo file that
came with the ports tree of a specific port from
4.5-release ?


You will find your file at this site:

http://www.freebsd.org/cgi/cvsweb.cgi/ports/?only_with_tag=RELEASE_4_5_0


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]


Re: installing boot0 via dd

2005-05-31 Thread Bjoern Koenig

FreeBSD MailingLists wrote:


Here is what I am thinking...
1) go to a different freebsd box with boot0 already installed.
2) use dd to grab a image file of the MBR
3) boot into knoppix on the machine (i already have it installed on the HDD)
4) use dd to load the image file to the MBR

can someone tell me if the following commands are correct for grabbing
and reloading the MBR?
1) on Freebsd:  dd if=/dev/ad0 of=boot0file bs=1b count=1
2) on knoppix:  dd if=boot0file of=/dev/hda bs=1b count=1


This might work, but keep in mind that you would destroy an existing 
partition table on the target hard disk. The loader program has only a 
size of 446 Bytes instead of 512 Bytes; the remaining 64+2 Bytes are for 
the partition table and the signature (0x55AA).


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


Re: General PHP Port Question

2005-05-31 Thread Bjoern Koenig

Bill Schmitt (SW) wrote:

I think I'm missing something pretty basic. There appear to be two ways 
to install php4; using the port under lang/php4 and using the port under 
www/mod_php4.


There are further ways. You missed 'www/php4-cgi' and 
'lang/php4-extensions'.


The Long Description under each is the same. Under Lang, 
the Short Description refers to CLI, but otherwise they appear to be 
the same thing. Other than the CLI reference, what is the difference 
between installing one or the other


Well it's quite simple: 'lang/php4' installs the Apache Module and a 
command line interface while 'www/mod_php4' installs the Apache Module only.


and why is one listed under lang and 
the other under www?


'lang/php4' with the command line interface gives the ability to create 
scripts which have nothing necessarily to do with the web. It's more 
general. Furthermore this port is the base of all ports which deal with 
php4, e.g. misc/php4-calendar or devel/php4-ncurses.


'www/mod_php4' is for use with the Apache web server only and therefore 
a piece of software which belongs to the 'www' category.


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


Re: Can I mount an ISO image directly with mount?

2005-05-30 Thread Bjoern Koenig

Steven Friedrich wrote:

I believe I read a posting over a year ago, that stated that you could mount 
an ISO file directly with mount.


Indirectly.

# mdconfig -a -f filename.iso
md3
# mount_cd9660 /dev/md3 /cdrom


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]


Re: Can I mount an ISO image directly with mount?

2005-05-30 Thread Bjoern Koenig

If you use 4.x then see

http://www.freebsddiary.org/iso-mount.php

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


Re: Mysql vs /var partition...

2005-05-26 Thread Bjoern Koenig

Matt Virus wrote:

I tried moving the mysql dir and symlinking it to /var/db/mysql which 
didn't work.  I also tried mount_null from the /usr partition to the 
/var/db/mysql folder...in both instances, the mysql server will not start.


It should work. I've done this already. If you are still not satisfied 
with Barry's good hints, then show some lines from the error log of the 
MySQL server.


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


Re: about sysctl ip.portrange.x options?

2005-05-26 Thread Bjoern Koenig

perikillo wrote:

A) What is the meaning of fastforwarding, went is the best situation to use 
this option?
B) Iam not running any services, them lowfirst and lowlast i think they 
never go in action, them i can live with there default values?
C) Now the other values, wich values are the recomend for a firewall system? 
they are ok or i can use another range?


To answer all your questions read the following manpages:

  inet(4), ip(4), firewall(7), security(7), tuning(7)

Maybe you prefer the HTMLized versions at http://www.freebsd.org/cgi/man.cgi
Type the keyword and choose the section. ;-)

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]


Re: Statically linked bash

2005-05-25 Thread Bjoern Koenig

Hello,

copy the attached patch to /usr/ports/shells/bash and apply it with

  patch -i Makefile-static.patch

It adds some knobs in the style of the port 'shells/bash2'. Build the 
shell with


  make -DWANT_STATIC_BASH -DWITHOUT_NLS install clean

The dependence to libintl and libiconv is the reason why your binary is 
still dynamically linked. WITHOUT_NLS solves it.


Regards Björn
--- Makefile.orig	Wed May 25 11:51:33 2005
+++ Makefile	Wed May 25 11:54:25 2005
@@ -56,6 +56,12 @@
 			--disable-rpath \
 			--enable-disabled-builtins
 
+.if defined(WANT_STATIC_BASH) || defined(NO_DYNAMICROOT) || (defined(NOSHARED)  ( ${NOSHARED} != no  ${NOSHARED} != NO ))
+CONFIGURE_ARGS+= --enable-static-link
+.else
+CONFIGURE_ARGS+= --enable-static-link=no
+.endif
+			
 .if defined(WITHOUT_HELP)
 CONFIGURE_ARGS+=	--disable-help-builtin
 PLIST_SUB+=		HELP=@comment 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Gnome fonts looks bolder in FreeBSD than in FC3

2005-05-25 Thread Bjoern Koenig

Hello,

please show one or more screenshots if it's possible.

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]


Re: logo_FreeBSD?

2005-05-25 Thread Bjoern Koenig

Hello,

See http://logo-contest.freebsd.org/ for information about the contest 
and the contact address.


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]


Re: FreeBSD 3.3

2005-05-24 Thread Bjoern Koenig

Hello,

you will find old releases and some ISO images at 
ftp://ftp-archive.freebsd.org/pub/FreeBSD-Archive/old-releases/


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


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

2005-05-23 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]


Re: HighPoint RocketRAID 1640 support

2005-05-23 Thread Bjoern Koenig

Cezar Fistik wrote:


I saw on the manufacturer's site that this board is supported under
FreeBSD, but the hptmv man page says that only 182x boards are
supported.


The hptmv driver works only with RR182x and i386.


Can anyone confirm a successful instalation of 1640 on
FreeBSD?


I do. You can use the binary drivers from Highpoint's website. Currently 
the RR1640 works fine for me with FreeBSD 5.4 and RAID 5.


Until January 2004, I had some minor problems with FreeBSD's *built-in* 
support for the Highpoint chipsets using SATA hard disk drives. I don't 
know if it works properly now; I guess it does not.


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


Re: thumb drive not detected

2005-05-22 Thread Bjoern Koenig

Hello

Show the output of 'usbdevs -v'.

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


Re: How much does it cost?

2005-05-18 Thread Bjoern Koenig
Kristin Marchbank wrote:
I'm doing a project for school on web servers and I was just wondering,
how much it would cost to purchse your product?
You can't purchase it, because it's a free community project of 
developers and users.

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