RE: FreeBSD Install Problem
Check the SATA drive mode in the BIOS. It may need to be set to "Compatibility" (or vice versa). -Original Message- From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-questi...@freebsd.org] On Behalf Of dte...@freebsd.org Sent: Friday, September 07, 2012 6:20 PM To: 'Chris Neudorf'; questi...@freebsd.org Subject: RE: FreeBSD Install Problem > -Original Message- > From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd- > questi...@freebsd.org] On Behalf Of Chris Neudorf > Sent: Friday, September 07, 2012 2:10 PM > To: questi...@freebsd.org > Subject: FreeBSD Install Problem > > Hello, > > I have a problem installing FreeBSD 9.0 Releaseon my Lenovo Thinkpad > R61i laptop (4GB RAM, 160GB HDD, 32-bit). It doesn't matter if I tried > installing it from > the CD or the DVD, I still have the same problem. I even tried > re-downloading and > re-burning a new CD or DVD, and I'm still unable to install. I even > have problems > going through the "sysinstall" route. > Can you try the following? http://sourceforge.net/projects/druidbsd/files/FreeBSD-9.0_Druid-1.0b57.iso/ down load NOTE: New version posted just a couple days ago (but not announced yet; in-progress). -- Devin > > In the installation process, I'm able to go far to the partitioning area in where the > problem occurs. I click for "Guided" partitioning and then I receive this "Abort" > message: > > Abort > -- > > An installation step has been aborted. Would you like to restart the installation or > exit the installer? > > --- > [ Restart ] [ Exit ] > > - > > When I click restart I end up with the same result, and I end up in a neverending > cycle of unable to install. > > > (I even have a the same problem installing from GhostBSD.) > > > > Is there any remedies to this problem? > > > Thank you so much, > > --Christopher > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" _ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
RE: FreeBSD Install Problem
> -Original Message- > From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd- > questi...@freebsd.org] On Behalf Of Chris Neudorf > Sent: Friday, September 07, 2012 2:10 PM > To: questi...@freebsd.org > Subject: FreeBSD Install Problem > > Hello, > > I have a problem installing FreeBSD 9.0 Releaseon my Lenovo Thinkpad R61i > laptop (4GB RAM, 160GB HDD, 32-bit). It doesn't matter if I tried installing it from > the CD or the DVD, I still have the same problem. I even tried re-downloading and > re-burning a new CD or DVD, and I'm still unable to install. I even have problems > going through the "sysinstall" route. > Can you try the following? http://sourceforge.net/projects/druidbsd/files/FreeBSD-9.0_Druid-1.0b57.iso/down load NOTE: New version posted just a couple days ago (but not announced yet; in-progress). -- Devin > > In the installation process, I'm able to go far to the partitioning area in where the > problem occurs. I click for "Guided" partitioning and then I receive this "Abort" > message: > > Abort > -- > > An installation step has been aborted. Would you like to restart the installation or > exit the installer? > > --- > [ Restart ] [ Exit ] > > - > > When I click restart I end up with the same result, and I end up in a neverending > cycle of unable to install. > > > (I even have a the same problem installing from GhostBSD.) > > > > Is there any remedies to this problem? > > > Thank you so much, > > --Christopher > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" _ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: gpart and mbr give "no operating system" message at boot.
On Fri, 07 Sep 2012 17:00:24 -0600, markham breitbach wrote: > I was always under the impression that partition 3 was not to be touched as > the "raw" > partition, so figured it was best left alone. No, that is regarding traditional partitioning. But it's not the 3rd partition, it's the 'c' partition, which means nothing more or less than "the whole device" or "the whole slice". In today's FreeBSD /dev representation, the 'c' is left out, e. g. /dev/ad0c = /dev/ad0, and /dev/da3s2c = /dev/da3s2. For GPT partitions, that doesn't matter. It's only relevant for the kind of partitions disklabel (bsdlabel) creates inside a slice or directly on the device. Reserved names (or those with special purpose) are 'a' for a bootable partition, 'b' for a swap partition and 'c' for "the whole slice or disk". I think even 'd' has had a special meaning, but I didn't encounter it yet, even though I'm using FreeBSD since 4.0. :-) Partitions created with the gpart / gpt tools usually use e. g. /dev/ad0p1 and so on for partitioning, if I remember correctly. Additionally, I typically point to http://www.wonkity.com/~wblock/docs/html/disksetup.html to encourage the use of labels, because that lets you leave devices names alone. More information can be found here: http://www.daemonforums.org/showthread.php?t=2666 http://www.freebsdonline.com/content/view/731/506/ http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html And also http://www.freebsd.org/doc/handbook/geom-glabel.html regarding labels (GEOM labels, UFS labels, UFSIDs). > I was mostly concerned with installing MBR so it would still be compatible > with > sysinstall, although I can't really think of a terribly good reason not to go > GPT. Maybe that is significant only on older hardware where you intendedly want to preserve the "traditional" approach of MBR partitioning, maybe to keep compatibility with other systems that have trouble with GPT layouts. > Installing the bootcode gets me a step closer, but is now puking at the > loader. I'm not > sure if this is because the bootcode is coming from and 8.1 install, but at > this point I'm > pretty much out of time and out of patience for this, since it is something > of a bandaid > situation anyway. The version number should not be the problem. It's only important that the boot elements installed refer to the layout that is present on disk correctly. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: gpart and mbr give "no operating system" message at boot.
Thanks Warren! I was always under the impression that partition 3 was not to be touched as the "raw" partition, so figured it was best left alone. I was mostly concerned with installing MBR so it would still be compatible with sysinstall, although I can't really think of a terribly good reason not to go GPT. Installing the bootcode gets me a step closer, but is now puking at the loader. I'm not sure if this is because the bootcode is coming from and 8.1 install, but at this point I'm pretty much out of time and out of patience for this, since it is something of a bandaid situation anyway. On 12-09-07 2:48 PM, Warren Block wrote: > On Fri, 7 Sep 2012, markham breitbach wrote: > >> I am trying to partition a disk to be used as the primary boot disk for a >> FreeBSD 8.3 >> installation using gpart to install an MBR partition. >> >> The system is an existing FreeBSD 5.2.1 system at a remote location (ie >> impossible to boot >> from CD/netboot/etc), but has no data of value. To do this I am copying >> /boot and >> mfsroot.gz from an mfsbsd iso image to boot to an MFS live system so I can >> wipe the drive >> and do a clean install of 8.3. After booting to the MFS I do this: >> >> dd if=/dev/zero of=/dev/ad2 bs=1m count=1 >> gpart create -s mbr ad2 >> gpart add -b63 -t freebsd ad2 >> gpart create -s bsd ad2s1 >> gpart add -i1 -s 1g -t freebsd-ufs ad2s1 >> gpart add -i2 -s 1g -t freebsd-swap ad2s1 >> gpart add -i4 -s 2g -t freebsd-ufs ad2s1 >> gpart add -i5 -s 1g -t freebsd-ufs ad2s1 >> gpart add -i6 -t freebsd-ufs ad2s1 >> gpart set -a active -i 1 ad2 >> gpart bootcode -b /boot/mbr ad2 >> newfs /dev/ad2s1a >> newfs -U /dev/ad2s1d >> newfs -U /dev/ad2s1e >> newfs -U /dev/ad2s1f >> >> followed by a sysinstall and some configuration. When I reboot I get a >> message that says >> "Operating system not found" and the system hangs. >> >> If I follow the same procedure but create a gpt partition it works >> swimmingly. I am OK >> with using a gpt partition if needed, but for the sake of curiosity I would >> like to know >> why I can't make the MBR partition partition work. Am I missing something? > > Need to install bootcode to the slice also: > > # gpart bootcode -b /boot/boot ad2s1 > > Why are you skipping partition 3? For that matter, don't give partition > numbers when > adding, and gpart will just use the next available. > > If GPT works, there is little reason to use MBR. > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD Install Problem
On 09/07/12 23:10, Chris Neudorf wrote: An installation step has been aborted. Would you like to restart the installation or exit the installer? --- [ Restart ] [ Exit ] - When I click restart I end up with the same result, and I end up in a neverending cycle of unable to install. (I even have a the same problem installing from GhostBSD.) Is there any remedies to this problem? In Bios is legacy support for sata enable? On some systems this is a problem. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
FreeBSD Install Problem
Hello, I have a problem installing FreeBSD 9.0 Releaseon my Lenovo Thinkpad R61i laptop (4GB RAM, 160GB HDD, 32-bit). It doesn't matter if I tried installing it from the CD or the DVD, I still have the same problem. I even tried re-downloading and re-burning a new CD or DVD, and I'm still unable to install. I even have problems going through the "sysinstall" route. In the installation process, I'm able to go far to the partitioning area in where the problem occurs. I click for "Guided" partitioning and then I receive this "Abort" message: Abort -- An installation step has been aborted. Would you like to restart the installation or exit the installer? --- [ Restart ] [ Exit ] - When I click restart I end up with the same result, and I end up in a neverending cycle of unable to install. (I even have a the same problem installing from GhostBSD.) Is there any remedies to this problem? Thank you so much, --Christopher ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: gpart and mbr give "no operating system" message at boot.
On Fri, 7 Sep 2012, markham breitbach wrote: I am trying to partition a disk to be used as the primary boot disk for a FreeBSD 8.3 installation using gpart to install an MBR partition. The system is an existing FreeBSD 5.2.1 system at a remote location (ie impossible to boot from CD/netboot/etc), but has no data of value. To do this I am copying /boot and mfsroot.gz from an mfsbsd iso image to boot to an MFS live system so I can wipe the drive and do a clean install of 8.3. After booting to the MFS I do this: dd if=/dev/zero of=/dev/ad2 bs=1m count=1 gpart create -s mbr ad2 gpart add -b63 -t freebsd ad2 gpart create -s bsd ad2s1 gpart add -i1 -s 1g -t freebsd-ufs ad2s1 gpart add -i2 -s 1g -t freebsd-swap ad2s1 gpart add -i4 -s 2g -t freebsd-ufs ad2s1 gpart add -i5 -s 1g -t freebsd-ufs ad2s1 gpart add -i6 -t freebsd-ufs ad2s1 gpart set -a active -i 1 ad2 gpart bootcode -b /boot/mbr ad2 newfs /dev/ad2s1a newfs -U /dev/ad2s1d newfs -U /dev/ad2s1e newfs -U /dev/ad2s1f followed by a sysinstall and some configuration. When I reboot I get a message that says "Operating system not found" and the system hangs. If I follow the same procedure but create a gpt partition it works swimmingly. I am OK with using a gpt partition if needed, but for the sake of curiosity I would like to know why I can't make the MBR partition partition work. Am I missing something? Need to install bootcode to the slice also: # gpart bootcode -b /boot/boot ad2s1 Why are you skipping partition 3? For that matter, don't give partition numbers when adding, and gpart will just use the next available. If GPT works, there is little reason to use MBR. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
gpart and mbr give "no operating system" message at boot.
I am trying to partition a disk to be used as the primary boot disk for a FreeBSD 8.3 installation using gpart to install an MBR partition. The system is an existing FreeBSD 5.2.1 system at a remote location (ie impossible to boot from CD/netboot/etc), but has no data of value. To do this I am copying /boot and mfsroot.gz from an mfsbsd iso image to boot to an MFS live system so I can wipe the drive and do a clean install of 8.3. After booting to the MFS I do this: dd if=/dev/zero of=/dev/ad2 bs=1m count=1 gpart create -s mbr ad2 gpart add -b63 -t freebsd ad2 gpart create -s bsd ad2s1 gpart add -i1 -s 1g -t freebsd-ufs ad2s1 gpart add -i2 -s 1g -t freebsd-swap ad2s1 gpart add -i4 -s 2g -t freebsd-ufs ad2s1 gpart add -i5 -s 1g -t freebsd-ufs ad2s1 gpart add -i6 -t freebsd-ufs ad2s1 gpart set -a active -i 1 ad2 gpart bootcode -b /boot/mbr ad2 newfs /dev/ad2s1a newfs -U /dev/ad2s1d newfs -U /dev/ad2s1e newfs -U /dev/ad2s1f followed by a sysinstall and some configuration. When I reboot I get a message that says "Operating system not found" and the system hangs. If I follow the same procedure but create a gpt partition it works swimmingly. I am OK with using a gpt partition if needed, but for the sake of curiosity I would like to know why I can't make the MBR partition partition work. Am I missing something? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Clang'ed FreeBSD: Builds Quicker, Uses Way Less RAM
Good news on clang front: http://www.phoronix.com/scan.php?page=news_item&px=MTE3NjI jb ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: Cant find snmptrapd.conf file
Have you search with "find / -iname "snmptrap.conf"? Most example config files are under /usr/share/ or /usr/local/share. Else build a new one and test it. Set something, that is easy to test and look. On 09/06/12 22:14, Maxim Galkin wrote: Where is the configuration file for snmptrapd? I'm using net-snmp-5.7.1_7. and succesfully starting snmpd and snmptrapd. But there is only a config snmpd.conf ! Why can not I find a file snmptrapd.conf referred in man? Where do I register my "traphandlers"? Help guys ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD in finance sector
On 09/07/2012 07:17 PM, Polytropon wrote: On Fri, 07 Sep 2012 18:55:49 +0100, Kaya Saman wrote: Hi, Does anyone know of any financial firms or banks that run FreeBSD? I have been instructed to research this for the firm I work at as I am trying to get the senior management to switch over from Linux as our current network is in shambles. There is a good chance that networking equipment they use (e. g. firewalls, routers, gateways, encryption appliances) run FreeBSD internally, or a system derived from it and turned into closed source (which the BSD license explicitely allows). Probably you won't have a chance to verify this. For running actual services (not sure _what_ you are running), FreeBSD might be as good as Linux, maybe even better. It can also serve as storage solution or networking subsystem for various kinds of "client OSes". Probably banks won't tell you what they run. Some run IBM mainframe systems (which you can "recognize" when looking at screens you're not supposed to look at). Any information more precise than just my assumptions can only be provided by insiders or service contractors who know the actual infrastructures. Banks and financial firms tend to _not_ publish what they run. Thanks for the response! I agree and understand this, hence I am not allowed to give away details of where I work etc but I can state that we are using an aging Linux (CentOS) based architecture for our systems and as the new boy in town have made a big campaign to run a mixture of FreeBSD and Sun SPARC systems as AIX seems to be a big pain in the assets to admin. Regards, Kaya ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD in finance sector
On Fri, 07 Sep 2012 18:55:49 +0100, Kaya Saman wrote: > Hi, > > Does anyone know of any financial firms or banks that run FreeBSD? > > I have been instructed to research this for the firm I work at as I am > trying to get the senior management to switch over from Linux as our > current network is in shambles. There is a good chance that networking equipment they use (e. g. firewalls, routers, gateways, encryption appliances) run FreeBSD internally, or a system derived from it and turned into closed source (which the BSD license explicitely allows). Probably you won't have a chance to verify this. For running actual services (not sure _what_ you are running), FreeBSD might be as good as Linux, maybe even better. It can also serve as storage solution or networking subsystem for various kinds of "client OSes". Probably banks won't tell you what they run. Some run IBM mainframe systems (which you can "recognize" when looking at screens you're not supposed to look at). Any information more precise than just my assumptions can only be provided by insiders or service contractors who know the actual infrastructures. Banks and financial firms tend to _not_ publish what they run. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD in finance sector
On 09/07/2012 10:55, Kaya Saman wrote: > Hi, > > Does anyone know of any financial firms or banks that run FreeBSD? > We use FreeBSD for our lockbox/remittance processing system. We have non-disclosure agreements which prevent me from mentioning bank names, but the most prominent players use our system running FreeBSD. Last year our systems processed well over 1.6 trillion dollars in financial transactions. We do have a few smaller systems running Linux, however all but a fairly negligible amount of that dollar total was processed by systems running FreeBSD. Dave -- Dave Robison Sales Solution Architect II FIS Banking Solutions 510/621-2089 (w) 530/518-5194 (c) 510/621-2020 (f) da...@vicor.com david.robi...@fisglobal.com _ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
FreeBSD in finance sector
Hi, Does anyone know of any financial firms or banks that run FreeBSD? I have been instructed to research this for the firm I work at as I am trying to get the senior management to switch over from Linux as our current network is in shambles. Thanks for any responses. Regards, Kaya ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: openbsd packet firewall
On Fri, 7 Sep 2012, Polytropon wrote: On Fri, 7 Sep 2012 09:00:27 -0400 (EDT), Darrel wrote: when i updated from fbsd82 to fbsd90 using buildworld, buildkernel, installkernel, reboot, installworld, mergemaster, and make check-old, then packet filter simply did not load. That's nmot 100% the procedure. Please refer to the comment header of /usr/src/Makefile for the full description. It should also be mentioned in The FreeBSD Handbook. 1. `cd /usr/src' (or to the directory containing your source tree). 2. `make buildworld' 3. `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC). 4. `make installkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC). [steps 3. & 4. can be combined by using the "kernel" target] 5. `reboot'(in single user mode: boot -s from the loader prompt). 6. `mergemaster -p' 7. `make installworld' 8. `make delete-old' 9. `mergemaster'(you may wish to use -i, along with -U or -F). 10. `reboot' 11. `make delete-old-libs' (in case no 3rd party program uses them anymore) The proper use of mergemaster and the two delete* targets seems to be different from your description. You are correct, of course. Actually that is what I have been doing, except that I have been running 'make delete-old' after mergemaster. Also, I have been deleting /usr/obj/* before 'cd /usr/src' and after 'cd /usr/src' running 'make cleandir && make cleandir'. Thanks for the clarification. Darrel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: openbsd packet firewall
On Fri, 7 Sep 2012 09:00:27 -0400 (EDT), Darrel wrote: > when i updated from fbsd82 to fbsd90 using buildworld, buildkernel, > installkernel, reboot, installworld, mergemaster, and make check-old, then > packet filter simply did not load. That's nmot 100% the procedure. Please refer to the comment header of /usr/src/Makefile for the full description. It should also be mentioned in The FreeBSD Handbook. 1. `cd /usr/src' (or to the directory containing your source tree). 2. `make buildworld' 3. `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC). 4. `make installkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC). [steps 3. & 4. can be combined by using the "kernel" target] 5. `reboot'(in single user mode: boot -s from the loader prompt). 6. `mergemaster -p' 7. `make installworld' 8. `make delete-old' 9. `mergemaster'(you may wish to use -i, along with -U or -F). 10. `reboot' 11. `make delete-old-libs' (in case no 3rd party program uses them anymore) The proper use of mergemaster and the two delete* targets seems to be different from your description. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: openbsd packet firewall
On Fri, 7 Sep 2012, Andreas Rudisch wrote: On Thu, 6 Sep 2012 23:41:44 -0400 (EDT) Darrel wrote: Packet Filter does not work Hi, you might want to give more information other than that. when i updated from fbsd82 to fbsd90 using buildworld, buildkernel, installkernel, reboot, installworld, mergemaster, and make check-old, then packet filter simply did not load. others on the list had the same problem. i do not recall if it was specific to amd64. now that i have updated from fbsd90 to fbsd91rc, ipv6 of packet filter is broken. i can not connect to ipv6 services. nmap run against the machine reports per usual with -4 flag and using -6 flag reports no opened ports. ssh and auth should be open. i substituted a very simple pf.conf and got the same result. i think that there is no troubleshooting to be done, but if you want further information then i will send it. darrel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: openbsd packet firewall
On Fri, 7 Sep 2012, Fbsd8 wrote: Darrel wrote: Hello, When I moved from -fbsd82 to -fbsd90 it required a total reinstall since Packet Filter did not *work* any longer. Now that I have moved from -fbsd90 to the new release candidate, Packet Filter does not work considering at least IPv6 and ssh. I have tested a simple pf.conf on this system with the same result. It seems like I will need to learn ipfw or give up on fbsd. Darrel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" pf is way back level in Freebsd, the online openbsd pf manual is at the current pf level and uses the newer syntax for the nat function. You have to use the freebsd pf man pages for correct matching documentation. You can always use ipf (ipfilter) instead of ipfw. thanks for your kind response. darrel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: Patch into kernel sources
Venkat Duvvuru wrote: > Does this procedure hold good for a device driver module's patch as well? Yes > On Thu, Sep 6, 2012 at 3:40 PM, Julian H. Stacey wrote: > > > Venkat Duvvuru wrote: > > > Hi, > > > Could somebody please point me to a procedure to apply a patch to the > > > sources? > > > I have a driver patch that I would like to commit. > > > > If you want to send from local mail client > > man send-pr > > > > If you want to send via web > > http://www.freebsd.org/support/bugreports.html > > (pointed to from "Report a Bug" on front page) > > http://www.freebsd.org/ > > (yup, easily missed on front page with new eyes, as Not a bug)) > > > > Cheers, > > Julian > > -- > > Julian Stacey, BSD Unix Linux C Sys Eng Consultant, Munich > > http://berklix.com > > Reply below not above, like a play script. Indent old text with "> ". > > Send plain text. Not: HTML, multipart/alternative, base64, > > quoted-printable. > > > > --e89a8fb1ef564d94e904c91ab01a > Content-Type: text/html; charset=ISO-8859-1 > Content-Transfer-Encoding: quoted-printable > > 3px;background-color:rgb(255,255,255)">Does this procedure hold good for a = > device driver module's patch as well?=A0 ail_quote"> > On Thu, Sep 6, 2012 at 3:40 PM, Julian H. Stacey < ref=3D"mailto:j...@berklix.com"; target=3D"_blank">j...@berklix.com> pan> wrote: ;border-left:1px #ccc solid;padding-left:1ex"> > Venkat Duvvuru wrote: > > Hi, > > Could somebody please point me to a procedure to apply a patch to the<= > br> > > sources? > > I have a driver patch that I would like to commit. > > If you want to send from local mail client > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 man send-pr > > If you want to send via web > =A0 =A0 =A0 =A0 http://www.freebsd.org/support/bugreports.html"; = > target=3D"_blank">http://www.freebsd.org/support/bugreports.html > (pointed to from "Report a Bug" on front page) > =A0 =A0 =A0 =A0 http://www.freebsd.org/"; target=3D"_blank">http:= > //www.freebsd.org/ > (yup, easily missed on front page with new eyes, as Not a bug)) > > Cheers, > Julian > -- > Julian Stacey, BSD Unix Linux C Sys Eng Consultant, Munich //berklix.com" target=3D"_blank">http://berklix.com > =A0Reply below not above, like a play script. =A0Indent old text with "= > ;> ". > =A0Send plain text. Not: HTML, multipart/alternative, base64, quoted-printa= > ble. > > > --e89a8fb1ef564d94e904c91ab01a-- > Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultant, Munich http://berklix.com Reply below not above, like a play script. Indent old text with "> ". Send plain text. Not: HTML, multipart/alternative, base64, quoted-printable. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
No Attachments Please
You sent an email to the Exchange list with an attachment. We have disabled this option as recently a virus was attached. Please resend your posting without it? Thanks! ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: openbsd packet firewall
Darrel wrote: Hello, When I moved from -fbsd82 to -fbsd90 it required a total reinstall since Packet Filter did not *work* any longer. Now that I have moved from -fbsd90 to the new release candidate, Packet Filter does not work considering at least IPv6 and ssh. I have tested a simple pf.conf on this system with the same result. It seems like I will need to learn ipfw or give up on fbsd. Darrel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" pf is way back level in Freebsd, the online openbsd pf manual is at the current pf level and uses the newer syntax for the nat function. You have to use the freebsd pf man pages for correct matching documentation. You can always use ipf (ipfilter) instead of ipfw. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: Patch into kernel sources
Does this procedure hold good for a device driver module's patch as well? On Thu, Sep 6, 2012 at 3:40 PM, Julian H. Stacey wrote: > Venkat Duvvuru wrote: > > Hi, > > Could somebody please point me to a procedure to apply a patch to the > > sources? > > I have a driver patch that I would like to commit. > > If you want to send from local mail client > man send-pr > > If you want to send via web > http://www.freebsd.org/support/bugreports.html > (pointed to from "Report a Bug" on front page) > http://www.freebsd.org/ > (yup, easily missed on front page with new eyes, as Not a bug)) > > Cheers, > Julian > -- > Julian Stacey, BSD Unix Linux C Sys Eng Consultant, Munich > http://berklix.com > Reply below not above, like a play script. Indent old text with "> ". > Send plain text. Not: HTML, multipart/alternative, base64, > quoted-printable. > ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: openbsd packet firewall
On Thu, 6 Sep 2012 23:41:44 -0400 (EDT) Darrel wrote: > Packet Filter does not work Hi, you might want to give more information other than that. Andreas -- GnuPG key : 0x2A573565|http://www.gnupg.org/howtos/de/ Fingerprint: 925D 2089 0BF9 8DE5 9166 33BB F0FD CD37 2A57 3565 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"