Re: there must be a better way
* mufassa bendover ([EMAIL PROTECTED]) [020926 23:42]: > to the FreeBSD people: > I wanted to use your product but i had to back off. Do you know why? > This is because you guys make it so complicated to operate that when an > UNIX newbie wants to use your product (which is a good thing)he usually > backs away when he sees very complicated stuffs and functions. > EXAMPLE: > Who in the earth would want to memorize this whole thing just to mount > a cdrom in practical life... > %mount_cd9660 /dev/acd0c /usr/mnt/cdrom > > So my Question is WHEN ARE YOU GUYS GOING TO COME OUT WITH A DIST > IN WHICH TOUSANDS OF TEENEGERS WILL ATTRACT...NOT REJECT? Dont you > you people should consider the newbies too >_Jessica Olaya If you run a csh based shell: alias cdrom 'mount_cd9660 /dev/acd0c /usr/mnt/cdrom; cd /usr/mnt/cdrom; ls;' If you run an sh based shell: alias cdrom='mount_cd9660 /dev/acd0c /usr/mnt/cdrom; cd /usr/mnt/cdrom; ls;' Now type 'cdrom' and see what happens. There is a better way, but it doesn't involve changing the system. It involves engaging your brain to solve problems constructively. It is as easy or difficult as you want it to be. Regards, -- Benjamin Krueger "Everyone has wings, some folks just don't know what they're for" - B. Banzai Send mail w/ subject 'send public key' or query for (0x251A4B18) Fingerprint = A642 F299 C1C1 C828 F186 A851 CFF0 7711 251A 4B18 To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re[2]: cant find libc.so.4
Hello Jacob, Friday, September 27, 2002, 12:52:58 AM, you wrote: JR> On Fri, 27 Sep 2002 15:34, SweeTLeaF wrote: >> /usr/libexec/ld-elf.so.1: Shared object "libc.so.4" not found >> >> where can i get this lib and do i just add it to the ldd path? JR> I may be corrected, but I think librarys work like this: JR> libc.so.4 <-- freebsd 4.x JR> libc.so.3 <-- freebsd 3.x JR> Where did you get the packages from? There are different packages on the ftp JR> site for different versions of FreeBSD: JR> packages-5-current JR> packages-5.0-current JR> packages-4.0-stable JR> I hope this helps. Alternatively, you could install the compat4x distribution JR> (which makes your system compatible with 4.x binaries), it is also avialable JR> on the ftp sites (/pub/freebsd/releases/i386/5.0-DP1/compat4x) JR> Regards, JR> Jacob JR> Jacob RhodenPhone: +61 3 9844 6102 JR> ITS DivisionEmail: [EMAIL PROTECTED] JR> Melbourne University Mobile: +61 403 788 386 I got them from the 4.6.2 package ./dir because the packages .tbz were not working via ftp. Pkg_add on any .tbz was giving broken pipe and non gzip errorsso i started looking on google and found something that said the .tbz format was broken and it was ok to use the .tgz packages from the 4.6.2 rel. It appears that held no validity :) I have been looking on all the ftp/s and have noticed that 5.0-current has the .tbz format so i guess there is difference in the 5.0 DP1 and 5.0-current. I was wanting to load current, as current as possible. I have not found any 5.0 current .iso on the ftps. Are there any .iso's of this as that would be a easier install. -- Best regards, SweeTLeaFmailto:[EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
there must be a better way
to the FreeBSD people: I wanted to use your product but i had to back off. Do you know why? This is because you guys make it so complicated to operate that when an UNIX newbie wants to use your product (which is a good thing)he usually backs away when he sees very complicated stuffs and functions. EXAMPLE: Who in the earth would want to memorize this whole thing just to mount a cdrom in practical life... %mount_cd9660 /dev/acd0c /usr/mnt/cdrom So my Question is WHEN ARE YOU GUYS GOING TO COME OUT WITH A DIST IN WHICH TOUSANDS OF TEENEGERS WILL ATTRACT...NOT REJECT? Dont you you people should consider the newbies too _Jessica Olaya _ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Curses at Ncurses Buildworld crash
Hi All, I see this snip in some recent mail-list traffic about buildworld failing... My buildworld fails in exactly the same spot, twice in a row... Very scary for the first-time world builder... a smaller sand pit maybee ... So I have subscribed to the mailing list to see if there are any more answers I am trying to upgrade from 4.5 to 4.6 Rel, ran Cvsup and all seemed to go very well.. The buildworld of RELENG_4_6_0_RELEASE just crashed again on the very same spot :-( 2002.09.18.11.47.04| cc -fpic -DPIC -O -pipe -I. - I/usr/src/lib/libncurses -I\ /usr/src/lib/libncurses/../../contrib/ ncurses/ncurses - I/usr/src/lib/libn\ curses/../../contrib/ncurses/include -Wall - DFREEBSD_NATIVE -DNDEBUG -DHAV\ E_CONFIG_H -DTERMIOS -c /usr/src/lib/libncurses/../../contrib/ncurses/ncu\ rses/tinfo/alloc_entry.c -o alloc_entry.So 2002.09.18.11.47.05| cc: Internal compiler error: program cc1 got fatal signal 11 2002.09.18.11.47.05| *** Error code 1 To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Parhelia and FreeBSD
On Thu, Sep 26, 2002 at 12:11:11AM -0400, Mikhail Teterin wrote: > Does Matrox' Parhelia work for anyone on FreeBSD? With X11 on two or three > digital monitors? Thanks! Matrox have a beta driver for it here: http://www.matrox.com/mga/support/drivers/files/lnx_p018.cfm I have no idea what it supports though (try ftp://ftp.matrox.com/pub/mga/archive/linux/2002/readme_018.txt for detailed info) -- Simon Dick [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: cant find libc.so.4
On Fri, 27 Sep 2002 15:34, SweeTLeaF wrote: > /usr/libexec/ld-elf.so.1: Shared object "libc.so.4" not found > > where can i get this lib and do i just add it to the ldd path? I may be corrected, but I think librarys work like this: libc.so.4 <-- freebsd 4.x libc.so.3 <-- freebsd 3.x Where did you get the packages from? There are different packages on the ftp site for different versions of FreeBSD: packages-5-current packages-5.0-current packages-4.0-stable I hope this helps. Alternatively, you could install the compat4x distribution (which makes your system compatible with 4.x binaries), it is also avialable on the ftp sites (/pub/freebsd/releases/i386/5.0-DP1/compat4x) Regards, Jacob Jacob RhodenPhone: +61 3 9844 6102 ITS DivisionEmail: [EMAIL PROTECTED] Melbourne University Mobile: +61 403 788 386 To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
cant find libc.so.4
Hello freebsd-questions, I just downloaded the 5.0 DP1 iso and have some questions. First i noticed the pkg_add ...via ftp is broken as it does not want to use the tbz packages even with the -r flag. Is this a bug being fixed for the new format .tbz or is freebsd going to revert back to the .tgz instead. anyways i installed the system and everythings working great. i did not install kde or gnome as i wanted to just use X with Afterstep. As i mentioned the .tbz pkg_add is broken when using a network resource, local disk seems to work, so i searched on google and saw a thread that said to use the tgz packages from 4.6.2 and they would work fine. ok i pkg_add via ftp the Afterstep-1.8.11 and it did install and installed several other items that i assume were deps. thats why i wanted to use the ftp methode because i thought it found all the deps and installed them for you. ok the problem with afterstep is when i try to start it i am getting the following error: /usr/libexec/ld-elf.so.1: Shared object "libc.so.4" not found where can i get this lib and do i just add it to the ldd path? If i wanted to run current how would i find the latest .iso or do we have to make our own for these snapshots? I am comming from openbsd so please be patient as i learn the minnor differences. -- Best regards, SweeTLeaF mailto:[EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: UNKNOWN IP OPTION emergency
soheil h wrote: > Hi > but the tunnel_send() for multicast tunnel do this with LSRR option > is the tunnel_send() a standard tunnel ?? that anyone understand it ? or > not ??? Thanx Sorry; I couldn't find a tunnel_send() function to check this against in the FreeBSD kernel sources. So I can't rcomment.eally -- Terry To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: UNKNOWN IP OPTION emergency
Hi but the tunnel_send() for multicast tunnel do this with LSRR option is the tunnel_send() a standard tunnel ?? that anyone understand it ? or not ??? Thanx >From: Terry Lambert <[EMAIL PROTECTED]> >To: soheil h <[EMAIL PROTECTED]> >CC: [EMAIL PROTECTED], [EMAIL PROTECTED] >Subject: Re: UNKNOWN IP OPTION emergency >Date: Thu, 26 Sep 2002 10:07:41 -0700 > >soheil h wrote: > > as in stevens' Tcp/Ip illustrated says when a router see an unknown >option > > it must silently ignore it but when i put an option by type 253 len 12 >and > > 10 byte of data > > some router on my path drop it > > how can i set an option an put 2 ip address in it that no router delete >my > > data > >Send a known option, instead? > >Ignore := pass | drop > >Normally, it means "drop", because unknown options are assumed to >be hop-to-hop, meaning it's illegal for them to come from a router >that did not originate them (i.e. a router that doesn't recognize >the option forwarding it to one that does). > >If you want a covert data channel, you aren't going to be able to >do it with router options. 8-). > >-- Terry _ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: i-Buddie 4: Synaptics touch pad FreeBSD support?
Guido Van Hoecke <[EMAIL PROTECTED]> writes earlier: > I specifically would like support for the Synaptics touch pad, but did > not find much in the FreeBSD documentation, nor in the ports collection. and now: > Just for the record: the touchpad acts as a normal ps2 mouse and needs > no special driver at all! > > (Thanx 2 hacker Brandon D. Valentine for the info) > > Hail FreeBSD! Don't forget the better record for the info you've learned. Please do your pay-back duty so future Synaptics and "i-Buddie 4" users can't say they did not find much in the FreeBSD documentation. You can file a quick PR in category "doc" at http://www.freebsd.org/send-pr.html (or even a slow PR with patches to the documentation sources). P.S. As I look into things a bit, I have to warn you that your PR might get rejected because the hardware document seems to totally ignore pointers and video cards (but not keyboards)! Presumably, someone wanted to leave those to XFree86 documentation, but as many people run "moused" without an X server and as your experience shows, the documentation should at least have a pointer section. Please submit your PR anyway and I'll submit another, suggesting a pointer section and also a referral to the XFree86 documentation. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Moving /usr/ports to a new location??
Thus spake Steven Lake ([EMAIL PROTECTED]): > I'm curious. I'm trying to scavange as much room as I can in /usr > and I was wondering if it would be ok to move the /usr/ports director into > /var? I know I don't want to move it into /tmp because it would get nuked > by the system. I have tons of spare room in /var so that would be the > logical place to move it to. Can I get away with this? yep, just symlink /usr/ports to /var/ports. Nick -- "We demand rigidly defined areas of doubt and uncertainty." -- Douglas Adams To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Moving /usr/ports to a new location??
I'm curious. I'm trying to scavange as much room as I can in /usr and I was wondering if it would be ok to move the /usr/ports director into /var? I know I don't want to move it into /tmp because it would get nuked by the system. I have tons of spare room in /var so that would be the logical place to move it to. Can I get away with this? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
RE: 4.6.2 [sound] cs4281 on Toshiba 1715 laptop
At Thu, 26 Sep 2002 it looks like Orion Hodson composed: > > Bill Schoolcraft wrote: > > I've recompiled and added as a grand total to date, 3 entries in > > my new kernel, here they are: > > > > options PNPBIOS > > device pcm > > device csa > > FWIW, 'device csa' is not needed. The cs4281 driver is independent of the csa > bridge code. > > > pcm0: irq 5 at device 8.0 on pci0 > > pcm0: unable to allocate register space > > device_probe_and_attach: pcm0 attach returned 6 > > Try looking in your bios for a setting along the lines of 'PNP OS', if it > exists set it to "no". If it doesn't try adding 'options PCI_ENABLE_IO_MODES' > to your kernel config. > > cheers > - Orion Thanks Orion, I'll tackle it tomorrow at work, I left the laptop there. Thanks again for everyones help. -- |<72-->| Bill Schoolcraft PO Box 210076 -o) San Francisco CA 94121 /\ "UNIX, A Way Of Life."_\_v http://forwardslashunix.com/raw To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Filesystem Question
On 2002-09-26 17:10, Eff Norwood <[EMAIL PROTECTED]> wrote: > I have a filesystem question which I could not find the answer to > either in the documentation or on the web. That question is: > > Is it possible to use Linux EXT3 as the only filesystem for an > entire FreeBSD system? Not if you're talking about booting from ext3. > If yes, I'd love to know how. If no, I'd love to know why not.s > I think this would be a great addition to the FAQ. It hasn't been asked a lot, but I'll see what I can do :-) -- Famous last words: "What duck?" -- (Terry Pratchett, Soul Music) To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: reverse proxy?
Thus spake Richard Lucas ([EMAIL PROTECTED]): > Can this be done with apache? And if so could someone point me in the right > direction on how to set something like this up. Mostly, yes. http://httpd.apache.org/docs/mod/mod_proxy.html Nick -- "We demand rigidly defined areas of doubt and uncertainty." -- Douglas Adams To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: chflags schg
On Fri, Sep 27, 2002 at 11:42:48AM +0930, Wilkinson,Alex wrote: > Howdy all, > > When setting the the sytem/user immutable flag on a file is there anyway > to tell by looking at the file's perms that it has been set immuteable ? > Or is there a command to check this ? 'ls -lo' will show you the file flags. Marcus To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: chflags schg
[EMAIL PROTECTED] said: > When setting the the sytem/user immutable flag on a file is there > anyway to tell by looking at the file's perms that it has been set > immuteable ? Or is there a command to check this ? >From "man ls" -o Include the file flags in a long (-l) output. so "ls -lo /kernel*" gives: -r-xr-xr-x 1 root wheel schg 1458708 Jul 30 09:01 /kernel -r-xr-xr-x 1 root wheel -3258128 Nov 21 2000 /kernel.GENERIC /kernel has schg, but kernel.GENERIC has no flags set. Tony -- Tony Landells <[EMAIL PROTECTED]> Principal Networks, Security & IT Systems Engineer Ph: +61 3 9677 9319 Australian Clearing Services Pty LtdFax: +61 3 9677 9355 Level 4, Rialto North Tower 525 Collins Street Melbourne VIC 3000 Australia To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
chflags schg
Howdy all, When setting the the sytem/user immutable flag on a file is there anyway to tell by looking at the file's perms that it has been set immuteable ? Or is there a command to check this ? Thanks - aW To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: your unsubscribe request
As you requested, you have been unsubscribed from 'newadvent'. --- Return-Path: <[EMAIL PROTECTED]> Received: from pooh.ASARian.org ([216.21.171.83]) by caseyjones.dundee.net with SMTP (Lyris ListManager WIN32 version 5.0c); Thu, 26 Sep 2002 22:33:40 -0400 Received: from localhost ([EMAIL PROTECTED] [127.0.0.1]) by pooh.ASARian.org (8.11.6/8.11.6) with ESMTP id g8R2TdZ56592 for <[EMAIL PROTECTED]>; Thu, 26 Sep 2002 22:29:39 -0400 (EDT) (envelope-from [EMAIL PROTECTED]) Date: Thu, 26 Sep 2002 22:29:39 -0400 (EDT) From: Fuzzy <[EMAIL PROTECTED]> To: newadvent-request Message-ID: <[EMAIL PROTECTED]> X-No-Archive: Yes Organization: ASARian Inc. MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII subject: # Mail sent to leave-newadvent-21666527e was converted to these commands: unsubscribe newadvent [EMAIL PROTECTED] confirm end # This is the text of the message that triggered the action: Return-Path: <[EMAIL PROTECTED]> Received: from pooh.ASARian.org ([216.21.171.83]) by caseyjones.dundee.net with SMTP (Lyris ListManager WIN32 version 5.0c); Thu, 26 Sep 2002 22:33:40 -0400 Received: from localhost ([EMAIL PROTECTED] [127.0.0.1]) by pooh.ASARian.org (8.11.6/8.11.6) with ESMTP id g8R2TdZ56592 for <[EMAIL PROTECTED]>; Thu, 26 Sep 2002 22:29:39 -0400 (EDT) (envelope-from [EMAIL PROTECTED]) Date: Thu, 26 Sep 2002 22:29:39 -0400 (EDT) From: Fuzzy <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> X-No-Archive: Yes Organization: ASARian Inc. MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII -- _ __ __ __ __ / ___// // //__ )/__ )\ \/ / / __/ / // / / /__ / /__\ / (_/ (/ /_/ President, ASARian Inc. Sys Admin, ASARian.org Admin Contact for the ASARian.org domain. [EMAIL PROTECTED] -- PGP 2.6.3 Key fingerprint = 56 64 1D D9 65 53 B2 20 79 97 EF 45 18 FE 19 4E finger [EMAIL PROTECTED] for public key. ASARian Inc. provides free internet access to survivors of sexual abuse. We are a not-for-profit organization (501(c)3). ASARian.org takes its name from the Usenet newsgroup alt.sexual.abuse.recovery, (since replaced by alt.sexual.abuse.recovery.moderated due to spam). To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: How to shut down cleanly by killing power
At 17:02 26/09/2002 +0300, Petri Riihikallio sent this up the stick: >A couple of days ago I sent a message asking how to shut down a FreeBSD >system when I KNOW the power will be off after the next script command. > >Nobody has commented yet. Maybe the question wasn't the clearest? >Am I the only one using an UPS with FreeBSD? Not at all >It doesn't feel right to crash after the UPS has run dry. (I don't have a >generator.) About the first thing I was tought about Unix system >administration was: "Always shut down properly". That's why I bought the UPS. How could you crash after the UPS has run dry? You say you are using NUT, then NUT should be able to initiate a system shutdown _before_ the UPS runs out of juice - check your timings, don't let the system run for longer than you have the capacity for. How can you send a command to the UPS _after_ the system has powered down? Why tell the UPS to shutdown - your UPS should be able to turn itself off when it runs out of battery. Maybe you should do "shutdown -h now" to actually halt the system, then when the UPS powers off everything is dead. If the power comes back on, the UPS recharges a bit and then powers up your system normally. Or maybe I can't understand what you are trying to do Cheers, Rob >At 22:20 +0300 22.9.2002, Petri Riihikallio wrote: >>Hello >> >>I have a FreeBSD 4.6.2 box and an UPS. I have chosen NUT >>(http://www.exploits.org/nut) as my UPS monitor. Everything compiles and >>runs fine. No problems with NUT. I have a problem with the shutdown script. >> >>How do I shut down the system properly? >> >>The problem is that I want to issue the command "upsdrvctl shutdown", >>which switches off the power from the UPS. What do I need to do before that? >> >>To be more specific: When the AC power is down and the UPS is almost >>exhausted, NUT creates a file "/etc/killpower" and starts system shutdown >>with "shutdown -h now". Init then runs all scripts in /usr/local/etc/rc.d >>with argument "stop". I have put a script like this in my /usr/local/etc/rc.d >> >>-/usr/local/etc/rc.d/znut.sh: >>#! /bin/sh >>case $1 in >>start) >> su nut -c /usr/local/libexec/upsdrvctl start >> su nut -c /usr/local/sbin/upsd >> /usr/local/upsmon >> ;; >>stop) >> if (test -f /etc/killpower) then >> echo "Killing the power, bye!" >> /bin/sync >> ### WHAT TO DO HERE ? ### >> /usr/local/bin/upsdrvctl shutdown >> ### never makes it this far >> else >> killall upsmon >> killall upsd >> /usr/local/libexec/upsdrvctl stop >> fi >> ;; >>*) >> echo "Usage: $0: [ start | stop ]" 2>&1 >> exit 65 >> ;; >>esac >>--- >> >>I have called the script znut.sh, so it should run last after all other >>shutdown scripts. (Nothing else runs after it in a powerfail situation >>;-) Can I rely on alphabetical ordering? >> >>When my script finds the "/etc/killpower" file it syncs the disks and >>switches the UPS off. This is necessary, since the power might return >>when the system is in the "Press any key to reboot"-state. Then it would >>wait for the keypress indefinitely. >> >>NUT can't use "shutdown -r now", since the system might start a reboot >>while the UPS still supplies power. NUT can't use "shutdown -p now", >>since if the power is restored before the UPS runs dry, the system won't >>boot automatically. >> >>The "upsdrvctl shutdown" avoids these deadlocks by killing power at the >>UPS. When the AC power returns, the UPS first recharges, then it starts >>supplying power and my BIOS is set up to boot when power returns. >> >>My problem is that the disks aren't clean. >> >>If I put "umount -a" after the sync, I can't run the upsdrvctl from /usr. >>Should I remount /usr read-only? Or should I move the NUT programs to >>/bin and "umount -A". This would leave root dirty. >> >>I have read man pages for mount and umount. Both provide the -f flag, but >>warn against using it. Could I make use of it? >> >>The "sync" man page tells that halt is better since it does more than >>just a sync. Can I emulate these functions of halt from a script? >> >>What happens after the rc.shutdown? Are there any other housekeeping >>tasks after user scripts? I couldn't find any docs on that. > >-- >The only number that is both even and odd is infinity. > >This is random quote 1025 of a collection of 1253 >[15200.8 km (8207.8 mi), 262.8 deg](Apparent) Rennerian To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: powering down
John Bleichert <[EMAIL PROTECTED]> writes: > Is there any way to get FreeBSD to actually shut off my hardware? It won't > do so on any of my boxes using 'shutdown -h now'. As suggested in the FAQ, try APM. Start with "man apm". To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: powering down
At 09:35 PM 9.26.2002 -0400, John Bleichert wrote: >Hello All > >Is there any way to get FreeBSD to actually shut off my hardware? It won't >do so on any of my boxes using 'shutdown -h now'. > >Just curious. > >Thanks - JB > > ># John Bleichert ># http://vonbek.dhs.org/latest.jpg > You'll need to make these changes: ==>to the kernel -- comment out the first line and add the second and recompile the kernel # Power management support (see LINT for more options) #device apm0at nexus? disable flags 0x20 # Advanced Power Management device apm0at nexus? flags 0x20 # Advanced Power Management ==>to the rc.conf -- add the line below apm_enable="YES" After you reboot, you should be able to use "shutdown -p now" and it will turn off the machine. Look at the dmesg after the boot to see if you see the "apm" onboard stuff. Check your BIOS too. Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
powering down
Hello All Is there any way to get FreeBSD to actually shut off my hardware? It won't do so on any of my boxes using 'shutdown -h now'. Just curious. Thanks - JB # John Bleichert # http://vonbek.dhs.org/latest.jpg To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
IP NAT AND internal servers
Sorry, if this is a bone-headed question, I normally search for the answers but I am not exactly sure of that which I am searching, so a bit of direction or a complete answer would be nice. So I have a routed DSL connection, with a single static address, the DSL modem/router has an integrated 4-switch. My question is how should I setup my IPs for my server box, so things work well. The DSL router does NAT/PAT and I have all ports forwarded? to the server(private IP), the router/modem/switch is assigned the static IP (public IP). So I have one issue at hand but am thinking how to best configure things so that perhaps will not have this issue with other software packages. Issue at hand is IMP and apache, when IMP redirects the page on login it goes no further because the it takes the IP of the server box 10.0.0.1 rather than the public IP say 67.3.4.45, I am not sure if I am explaining correctly. Inet | +---+ | 67.3.4.45 | modem/router(my WAN ip) +---+ | | | | other | hosts | ++ web/imap/smtp |---|10.0.0.1| server ++ So I am wondering can/should I IP alias the NIC to my static IP? Should I edit hosts to be something like 127.0.0.1 localhost serverbox 67.3.4.45 ?? Or is this something that I will have to make config changes and or hacks to every software package that doesn't work with the servers IP being a private IP(different from the Public IP). Is there something else of which I am not thinking? What is all the methodology behind how this should be done/works and where can I read about it (especially real world solutions)? I have no domain registered as of yet but will be doing name based vhosts in the future, I have to work with only one static IP. And in the future the above server will be a gateway to more servers on a switch all using private addresses (you know divide up the task between diffrent boxes). Sorry for being long winded and overly broad but I am not sure of the concepts and more particularly their application. Thanks, David Burton (please CC me) _ Chat with friends online, try MSN Messenger: http://messenger.msn.com To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
$60,000,000 IN 6 MONTHS! VERIFIABLE! CHEAT-PROOF!
MY PERSONAL GOAL IS TO MAKE CERTAIN THAT YOU RECEIVE $60,000,000 IN 6 MONTHS OR LESS! FACT #1 Those who "get in" on a proven successful program at it's "birth" are guaranteed success! FACT #2 THE UP WAS JUST BORN! YOU ARE AT YOUR DREAM LOCATION! THIS IT "IT"! * JUST LAUNCHED! *YOU CANNOT LOSE! *WE WON'T LET YOU! *OUR GOAL IS TO GET YOU $60,000,000 IN 6 MONTHS OR LESS! *JOIN A "FRATERNITY OF HELPERS" WHO WILL HELP YOU SUCCEED! *"THE ULITMATE PROGRAM" (UP) IS THE BEST PROGRAM IN EXISTENCE! *THE LAST PROGRAM YOU WILL EVER JOIN! STOP playing around with programs that possibly get you $20,000 or $40,000. We will help YOU get $60,000,000 IN 6 MONTHS OR LESS! The UP out-performs any other program because it's self-regulated. 100% Cheatproof and Verifiable. YOU VERIFY EACH MEMBER IS "REAL" BEFORE YOU JOIN! Thereby eliminating ALL guesswork! SIMPLE TO DO + YOU ARE NEVER ALONE! "FRATERNITY OF HELPERS" helping EACH OTHER SUCCEED! "Your success is Our Success"! Get your FREE copy ot THE "UP"! Request THE UP by email, with 'SEND UP" in the Subject LIne to: [EMAIL PROTECTED] OR Go to the Official UP Site for more information at: http://www.theultimateprogram.com/default.asp?up=2054 My goal is for you to receive: $60,000,000 IN 6 MONTHS OR LESS! WE CAN DO THIS! When YOU SUCCEED, I SUCCEED, AND WE ALL WIN! JOIN THE UP TODAY before the Members List fills up! Sincerely, Nancy Harlan UP Member [EMAIL PROTECTED] GO TO THE OFFICIAL SITE: http://www.theultimateprogram.com/default.asp?up=2054 ANY QUESTIONS, ANYTIME! [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
$60,000,000 IN 6 MONTHS! VERIFIABLE! CHEAT-PROOF!
MY PERSONAL GOAL IS TO MAKE CERTAIN THAT YOU RECEIVE $60,000,000 IN 6 MONTHS OR LESS! FACT #1 Those who "get in" on a proven successful program at it's "birth" are guaranteed success! FACT #2 THE UP WAS JUST BORN! YOU ARE AT YOUR DREAM LOCATION! THIS IT "IT"! * JUST LAUNCHED! *YOU CANNOT LOSE! *WE WON'T LET YOU! *OUR GOAL IS TO GET YOU $60,000,000 IN 6 MONTHS OR LESS! *JOIN A "FRATERNITY OF HELPERS" WHO WILL HELP YOU SUCCEED! *"THE ULITMATE PROGRAM" (UP) IS THE BEST PROGRAM IN EXISTENCE! *THE LAST PROGRAM YOU WILL EVER JOIN! STOP playing around with programs that possibly get you $20,000 or $40,000. We will help YOU get $60,000,000 IN 6 MONTHS OR LESS! The UP out-performs any other program because it's self-regulated. 100% Cheatproof and Verifiable. YOU VERIFY EACH MEMBER IS "REAL" BEFORE YOU JOIN! Thereby eliminating ALL guesswork! SIMPLE TO DO + YOU ARE NEVER ALONE! "FRATERNITY OF HELPERS" helping EACH OTHER SUCCEED! "Your success is Our Success"! Get your FREE copy ot THE "UP"! Request THE UP by email, with 'SEND UP" in the Subject LIne to: [EMAIL PROTECTED] OR Go to the Official UP Site for more information at: http://www.theultimateprogram.com/default.asp?up=2054 My goal is for you to receive: $60,000,000 IN 6 MONTHS OR LESS! WE CAN DO THIS! When YOU SUCCEED, I SUCCEED, AND WE ALL WIN! JOIN THE UP TODAY before the Members List fills up! Sincerely, Nancy Harlan UP Member [EMAIL PROTECTED] GO TO THE OFFICIAL SITE: http://www.theultimateprogram.com/default.asp?up=2054 ANY QUESTIONS, ANYTIME! [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
too many depedants
Could any tell what this message is about: isa0: too many dependant configs (8) and this isa0: unexpected small tag 14 should I be concerned ? Here's what boot -v tells: CTL0044: start dependant CTL0044: adding irq mask 0x20 CTL0044: adding dma mask 0x2 CTL0044: adding dma mask 0x20 CTL0044: adding io range 0x220-0x22f, size=0x10, align=0x1 CTL0044: adding io range 0x330-0x331, size=0x2, align=0x1 CTL0044: adding io range 0x388-0x38b, size=0x4, align=0x1 CTL0044: start dependant CTL0044: adding irq mask 0x6a0 CTL0044: adding dma mask 0xb CTL0044: adding dma mask 0xe0 CTL0044: adding io range 0x220-0x28f, size=0x10, align=0x20 CTL0044: adding io range 0x300-0x331, size=0x2, align=0x30 CTL0044: adding io range 0x388-0x38b, size=0x4, align=0x1 CTL0044: start dependant CTL0044: adding irq mask 0x6a0 CTL0044: adding dma mask 0xb CTL0044: adding dma mask 0xe0 CTL0044: adding io range 0x220-0x28f, size=0x10, align=0x20 CTL0044: adding io range 0x300-0x331, size=0x2, align=0x30 CTL0044: start dependant CTL0044: adding irq mask 0x6a0 CTL0044: adding dma mask 0xb CTL0044: adding dma mask 0xe0 CTL0044: adding io range 0x220-0x28f, size=0x10, align=0x20 CTL0044: start dependant CTL0044: adding irq mask 0x6a0 CTL0044: adding dma mask 0xb CTL0044: adding io range 0x220-0x28f, size=0x10, align=0x20 CTL0044: adding io range 0x300-0x331, size=0x2, align=0x30 CTL0044: adding io range 0x388-0x38b, size=0x4, align=0x1 CTL0044: start dependant CTL0044: adding irq mask 0x6a0 CTL0044: adding dma mask 0xb CTL0044: adding io range 0x220-0x28f, size=0x10, align=0x20 CTL0044: adding io range 0x300-0x331, size=0x2, align=0x30 CTL0044: start dependant CTL0044: adding irq mask 0x6a0 CTL0044: adding dma mask 0xb CTL0044: adding io range 0x220-0x28f, size=0x10, align=0x20 CTL0044: start dependant isa0: too many dependant configs (8) CTL7002: start dependant CTL7002: adding io range 0x200-0x207, size=0x8, align=0x1 CTL7002: start dependant CTL7002: adding io range 0x200-0x20f, size=0x8, align=0x8 CTL7002: end dependant CTL0023: start dependant CTL0023: adding io range 0x620-0x623, size=0x4, align=0x1 CTL0023: start dependant CTL0023: adding io range 0x620-0x683, size=0x4, align=0x20 CTL0023: end dependant isa0: unexpected small tag 14 -- Andriy Gapon * Hang on tightly, let go lightly. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
need help with pkg_add
Hello, I just installed FreeBSD 5.0 DP1 and everything is great with the system except i cant get pkg_add to work via ftp. I am trying to install the current afterstep package from the offical freebsd ftp server. Here is what i am trying per the handbook. # pkg_add ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/5.0-CURRENT/p ackages/afterstep/afterstep-1.8.11.tbz Fetching ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/5.0-CURRENT/packages/af terstep/afterstep-1.8.11.tbz... gzip: stdin: not in gzip format tar: child returned status 1 Broken pipe I tried with the -r option. # pkg_add -r ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/5.0-CURRENT/packages/All/afterstep-1.8.11.tbz Fetching ftp://ftp.freebsd.org/pub/FreeBSD/releases/i38 6/5. 0-CURRENT/packages/All/aft erstep -1.8.11.tbz... gzip: stdin: not in gzip format tar: child returned status 1 Broken pipe The above will probably get trunicated as i am using a html interface for mail until my system gets setup so please forgive. Anyways..yes i am formating it as: pkg_add ftp://ftp.freebsd.org/whatever The man does show .tgz as the package format but i dont see that format and assume its been changed to .tbz. I have downloaded several .tbz packages to local disk and used pkg_add to install without trouble but i would like to use the ftp methode on this one so i dont have to find all the deps etc... as this methode is suppose to install all the deps automatically. Ftp is working as i can manually #ftp ftp.freebsd.org any help would be appreciated. thanks. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: your unsubscribe request
As you requested, you have been unsubscribed from 'newadvent'. --- Return-Path: <[EMAIL PROTECTED]> Received: from ariel.ucs.unimelb.edu.au ([128.250.20.3]) by caseyjones.dundee.net with SMTP (Lyris ListManager WIN32 version 5.0c); Thu, 26 Sep 2002 20:38:29 -0400 Received: from elkanah.its.unimelb.edu.au (elkanah.its.unimelb.edu.au [128.250.18.41]) by ariel.ucs.unimelb.edu.au (8.12.3/8.12.3) with ESMTP id g8R0cSiB002145 for <[EMAIL PROTECTED]>; Fri, 27 Sep 2002 10:38:28 +1000 (EST) Content-Type: text/plain; charset="us-ascii" From: Jacob Rhoden <[EMAIL PROTECTED]> Organization: University of Melbourne To: newadvent-request Date: Fri, 27 Sep 2002 10:38:27 +1000 X-Mailer: KMail [version 1.4] MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <[EMAIL PROTECTED]> subject: # Mail sent to leave-newadvent-21666527e was converted to these commands: unsubscribe newadvent [EMAIL PROTECTED] confirm end # This is the text of the message that triggered the action: Return-Path: <[EMAIL PROTECTED]> Received: from ariel.ucs.unimelb.edu.au ([128.250.20.3]) by caseyjones.dundee.net with SMTP (Lyris ListManager WIN32 version 5.0c); Thu, 26 Sep 2002 20:38:29 -0400 Received: from elkanah.its.unimelb.edu.au (elkanah.its.unimelb.edu.au [128.250.18.41]) by ariel.ucs.unimelb.edu.au (8.12.3/8.12.3) with ESMTP id g8R0cSiB002145 for <[EMAIL PROTECTED]>; Fri, 27 Sep 2002 10:38:28 +1000 (EST) Content-Type: text/plain; charset="us-ascii" From: Jacob Rhoden <[EMAIL PROTECTED]> Organization: University of Melbourne To: [EMAIL PROTECTED] Date: Fri, 27 Sep 2002 10:38:27 +1000 X-Mailer: KMail [version 1.4] MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <[EMAIL PROTECTED]> --=20 Jacob RhodenPhone: +61 3 9844 6102 ITS DivisionEmail: [EMAIL PROTECTED] Melbourne University Mobile: +61 403 788 386 To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: newadvent
You have been subscribed to newadvent with the email address "[EMAIL PROTECTED]" To unsubscribe, send a blank email to [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: newadvent
You have been subscribed to newadvent with the email address "[EMAIL PROTECTED]" To unsubscribe, send a blank email to [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
[Again] init: can't get /dev/console for controlling terminal: Operation not permitted
I'm getting more confused by the day. As posted earlier, my server rebooted spontaneously while trying to run portupgrade and hung after beginning to run the local initialization scripts. The console is locked up and I can't switch to any of the virtual terminals. Luckily, I *can* log in from another machine using SSH and look around. In /var/log/messages I have a lot of entries: "init: can't get /dev/console for controlling terminal: Operation not permitted". OK, so I figured it might have something to do with terminal initialization and read the man page on getty. I looked at /etc/gettytab and /etc/ttys and didn't see anything that looked odd, so I decided to try running getty and see if it gave me any kind of informative error message. When I ran /usr/libexec/getty I got a garbled line and the session froze up. Deciding that getty was somehow farkled (stray alpha particle?), I tried to remake it by going to /usr/src/libexec/getty and ran 'make install clean'. I got the message "install: getty: No such file or directory *** Error code 71" I'm over my head. Can anyone direct me to a set of instructions? -- Roger To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Filesystem Question
Greetings, I have a filesystem question which I could not find the answer to either in the documentation or on the web. That question is: Is it possible to use Linux EXT3 as the only filesystem for an entire FreeBSD system? If yes, I'd love to know how. If no, I'd love to know why not. I think this would be a great addition to the FAQ. Many thanks, Effrem Norwood To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: i-Buddie 4: Synaptics touch pad FreeBSD support?
> I specifically would like support for the Synaptics touch pad, but did > not find much in the FreeBSD documentation, nor in the ports collection. > > So I went to see at http://www.synaptics.com/support/downloads.cfm and > found a pointer to a linux 'tpconfig' touch pad driver available at > http://compass.com/synaptics/ which has not yet been ported to FreeBSD. Just for the record: the touchpad acts as a normal ps2 mouse and needs no special driver at all! (Thanx 2 hacker Brandon D. Valentine for the info) Hail FreeBSD! Guido. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
make buildkernel error
hi guys.. i want to plan to upgrade my FreeBSD from 4.6-STABLE to 5-Current. i use tag=. ( at stable-supfile ) but,.. while i make buildkernel my kernel after i buildworld, i got and error message below : -- >>> Kernel build for VLAN started on Fri Sep 27 06:50:09 JAVT 2002 -- ===> VLAN mkdir -p /usr/obj/usr/src/sys cd /usr/src/sys/i386/conf; PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin config -d /usr/obj/usr/src/sys/VLAN /usr/src/sys/i386/conf/VLAN config: /usr/src/sys/i386/conf/VLAN:76: devices with zero units are not likely to be correct *** Error code 1 Stop in /usr/src. *** Error code 1 so.. what's the meaning of "devices with zero units are not likely to be correct" and how i fix this problem ? thank's for your respond regards, QQ To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: i-Buddie 4: Synaptics touch pad FreeBSD support?
> So I went to see at http://www.synaptics.com/support/downloads.cfm and > found a pointer to a linux 'tpconfig' touch pad driver available at > http://compass.com/synaptics/ which has not yet been ported to FreeBSD. If it's a driver in the sense of some kernel code then it's going to need a lot of work. > "Makefile", line 254: Need an operator But this is just because you need to use gmake instead of make. -- Richard To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Apache CGI problem
On Fri, 27 Sep 2002, Ihsan Junaidi Ibrahim wrote: > Hello all, > > Error 500 : Internal server error. Internal Server Error usually means your script has crashed, or it hasn't produced a complete output. What does apache's error-log say? Fer > > -- > Thank you for your time, > Ihsan > > __ > Do you Yahoo!? > New DSL Internet Access from SBC & Yahoo! > http://sbc.yahoo.com > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
i-Buddie 4: Synaptics touch pad FreeBSD support?
I am experimenting with FreeBSD to be prepared when my new i-Buddie 4 arrives. (Specs at http://desknote.biz/sub/spec-i-buddie4.htm). I wonder whether anybody has any experience with this new 'desknote' computer. I specifically would like support for the Synaptics touch pad, but did not find much in the FreeBSD documentation, nor in the ports collection. So I went to see at http://www.synaptics.com/support/downloads.cfm and found a pointer to a linux 'tpconfig' touch pad driver available at http://compass.com/synaptics/ which has not yet been ported to FreeBSD. So I tried to use this on my little FreeBSD testbox: ~/tpconfig-3.1.3 # ./configure loading cache ./config.cache checking for a BSD compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking whether make sets ${MAKE}... (cached) yes checking for working aclocal... found checking for working autoconf... found checking for working automake... found checking for working autoheader... found checking for working makeinfo... found checking for gcc... (cached) gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking how to run the C preprocessor... (cached) gcc -E checking for fcntl.h... (cached) yes checking for unistd.h... (cached) yes updating cache ./config.cache creating ./config.status creating Makefile ~/tpconfig-3.1.3 # ./make "Makefile", line 254: Need an operator make: fatal errors encountered -- cannot continue ~/tpconfig-3.1.3 # I used vim to add line numbers in the Makefile and copypasted the result: 1 # Generated automatically from Makefile.in by configure. 2 # Makefile.in generated automatically by automake 1.4 from Makefile.am 3 4 # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. 5 # This Makefile.in is free software; the Free Software Foundation 6 # gives unlimited permission to copy and/or distribute it, 7 # with or without modifications, as long as this notice is preserved. 8 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without 11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A 12 # PARTICULAR PURPOSE. 13 14 # Source: $Id: Makefile.am,v 1.2 2000/11/05 21:50:25 cph Exp $ 15 16 17 SHELL = /bin/sh 18 19 srcdir = . 20 top_srcdir = . 21 prefix = /usr/local 22 exec_prefix = ${prefix} 23 24 bindir = ${exec_prefix}/bin 25 sbindir = ${exec_prefix}/sbin 26 libexecdir = ${exec_prefix}/libexec 27 datadir = ${prefix}/share 28 sysconfdir = ${prefix}/etc 29 sharedstatedir = ${prefix}/com 30 localstatedir = ${prefix}/var 31 libdir = ${exec_prefix}/lib 32 infodir = ${prefix}/info 33 mandir = ${prefix}/man 34 includedir = ${prefix}/include 35 oldincludedir = /usr/include 36 37 DESTDIR = 38 39 pkgdatadir = $(datadir)/tpconfig 40 pkglibdir = $(libdir)/tpconfig 41 pkgincludedir = $(includedir)/tpconfig 42 43 top_builddir = . 44 45 ACLOCAL = aclocal 46 AUTOCONF = autoconf 47 AUTOMAKE = automake 48 AUTOHEADER = autoheader 49 50 INSTALL = /usr/bin/install -c 51 INSTALL_PROGRAM = ${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS) 52 INSTALL_DATA = ${INSTALL} -m 644 53 INSTALL_SCRIPT = ${INSTALL_PROGRAM} 54 transform = s,x,x, 55 56 NORMAL_INSTALL = : 57 PRE_INSTALL = : 58 POST_INSTALL = : 59 NORMAL_UNINSTALL = : 60 PRE_UNINSTALL = : 61 POST_UNINSTALL = : 62 CC = gcc 63 MAKEINFO = makeinfo 64 PACKAGE = tpconfig 65 VERSION = 3.1.3 66 67 AUTOMAKE_OPTIONS = "VERSION=1.2" 68 bin_PROGRAMS = tpconfig 69 tpconfig_SOURCES = tpconfig.c synaptics.c ALPS.c utils.c 70 MAINTAINERCLEANFILES = Makefile.in configure aclocal.m4 install-sh missing mkinstalldirs COPYING INSTALL 71 72 # don't know why this is being omitted... 73 EXTRA_DIST = configure 74 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 75 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs 76 CONFIG_CLEAN_FILES = 77 PROGRAMS = $(bin_PROGRAMS) 78 79 80 DEFS = -DPACKAGE=\"tpconfig\" -DVERSION=\"3.1.3\" -DHAVE_FCNTL_H=1 -DHAVE_UNISTD_H=1 -I. -I$(srcdir) 81 CPPFLAGS = 82 LDFLAGS = 83 LIBS = 84 tpconfig_OBJECTS = tpconfig.o synaptics.o ALPS.o utils.o 85 tpconfig_LDADD = $(LDADD) 86 tpconfig_DEPENDENCIES = 87 tpconfig_LDFLAGS = 88 CFLAGS = -g -O2 89 COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 90 CCLD = $(CC) 91 LINK = $(CCLD) $(AM_CF
Re: Performance issues with natd
On Thursday 26 September 2002 08:02 am, Vallo Kallaste wrote: > > All that said, even old (16bit)NE2000 clone will easily sustain > 800+kB/s on my old 133Mhz Pentium with CPU load 20% or so. 400kB/s > versus 100kB/s throughput difference in this particular case isn't > matter of 3Com vs. Via NIC, I guess. I'll suggest trying out > IPFilter (ipf) and let us know of the results. Yeah, and I run ipfirewall/divert/natd on PII-300's between xl0 and fxp0 and have no thruput problems. I don't remember what or if he said his firewall ruleset was like, or if it was "open". The difference between his system and my systems is a built-for-cheap Rhine chipset NIC. Rhythm is important in TCP/IP. When all the rowers stroke in unison then the boat moves fast and smooth. When one rower strokes to a different drum then the ride is rougher. Ssh via terminal on MacOS X to FreeBSD sshd is bursty and slow to update the terminal window when connected thru my ipfw/FreeBSD router. Better Telnet With SSH under Classic is slick and smooth. Scp in the terminal window has excellent thruput. The burstyness of ssh is due to conflicting rhythms of the schedulers on the remote end, firewall, and the MacOS client end. And I think the same sort of thing is happening in this thread. -- David Kelly N4HHE, [EMAIL PROTECTED] = The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: [sound] linker_file_sysinit "snd_pcm.ko" failed to register! 17
Bill Schoolcraft writes: > In looking for references for the error: > > linker_file_sysinit "snd_pcm.ko" failed to register! 17 > > I don't find much, I did a kldstat and that produced: > > 15 0xc010 420668 kernel > 21 0xc135b000 7000 linprocfs.ko > 31 0xc13d1000 3000 daemon_saver.ko > 41 0xc13d6000 14000linux.ko > 61 0xc1509000 14000snd_pcm.ko > > So thank gawd the module is there, just wondering if I'm missing > anything. I was reading that in some cases you would add > something like this to /boot/loader.conf > > maestro3_load="YES" If you have sound compiled into the kernel you cannot dynamically load other drivers since they attempt to pull in the pcm module but this fails because it already exists in the kernel. This isn't really a problem except for the few sound drivers that exist as loadable modules only, eg maestro3 and aureal chipsets spring to mind. cheers - Orion To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
RE: 4.6.2 [sound] cs4281 on Toshiba 1715 laptop
Bill Schoolcraft wrote: > I've recompiled and added as a grand total to date, 3 entries in > my new kernel, here they are: > > options PNPBIOS > device pcm > device csa FWIW, 'device csa' is not needed. The cs4281 driver is independent of the csa bridge code. > pcm0: irq 5 at device 8.0 on pci0 > pcm0: unable to allocate register space > device_probe_and_attach: pcm0 attach returned 6 Try looking in your bios for a setting along the lines of 'PNP OS', if it exists set it to "no". If it doesn't try adding 'options PCI_ENABLE_IO_MODES' to your kernel config. cheers - Orion To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: pkg_add failure on 4.6.2
Hi Kris et al, > > I just installed 4.6.2, and I wanted to install cvsup. So I brought > > the cvsup-16-1f.tbz from ftp.freebsd.org, and did a 'pkg_add > > cvsup-16-1f.tbz', but whenever I run pkg_add, it core dumps. > > You should use the 4.6.2-RELEASE packages with 4.6.2; they're in .tgz > format. Just a note about this. The "remote fetching feature" (-r option) is broken in pkg_add(1) as distributed with 4.6.2-RELEASE. It needs to be upgraded to the version tagged RELENG_4_6. Otherwise, packages will download from the "stable" branch. HTH To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Wondering about mail clients (specific features)
Oscar Ricardo Silva wrote: > It is not my intention to start any religious wars about mail > clients. I'm currently using Eudora (stop, drop, roll and duck > incoming slings and arrows) on Windows. One feature I like is that > when mail is received and filtered into different mailboxes, you are > told there is new mail in those mailboxes. Maybe this isn't helpful for the command-line set, but I've found Mozilla mail to be an excellent replacement for Eudora (no ads!), and it has mail filters. Not sure about notification, although mailboxes with new messages show up as bold in the mailbox pane. Best of all it's cross-platform so you can try it alongside Eudora on Windows and then migrate everything to FreeBSD when ready. (I haven't actually *tried* this WRT mailbox settings, YMMV-- but at least they look and work the same.) To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re[2]: pkg_add failure on 4.6.2
Thursday, September 26, 2002, 11:18:49 PM, Kent wrote: KS> Søren Neigaard wrote: >> Thursday, September 26, 2002, 10:44:38 PM, Kent wrote: >> >> KS> Søren Neigaard wrote: >> I just installed 4.6.2, and I wanted to install cvsup. So I brought the cvsup-16-1f.tbz from ftp.freebsd.org, and did a 'pkg_add cvsup-16-1f.tbz', but whenever I run pkg_add, it core dumps. How can I redirect the error message from pkg_add to a file, and how do I attache files with 'mail', so I can send you some more info on this? >>> >> >> KS> I don't think you can get what you want to install. Your system >> KS> doesn't recognize the new format and that is why pkg_add is dying. >> KS> They have reverted to the old format but that will take a while. I >> KS> would grab 1e from http://people.freebsd.org/~jdp/s1g/ and then make >> KS> and add the current port. Version 1f doesn't take long to build. >> >> KS> Kent >> >> I did not get that one? Does pkg_add not reconize the new format, or? >> Even if I try to run pkg_add without any parameters, it still dies, is >> it pkg_add that is broken? >> >> What do you mean with 1e and 1f? I'm not into this cvsup thing, I just >> need it to update my ports tree. Should I get the source and build it, >> and if so, where should I place the source prior to build? Will this >> fix my problem, or is it an entire new problem? >> KS> No, you do not have to build it. You can download version ...1f.tgz KS> from one of the mirrors and add it. The pkg_add on your system does KS> not recognize the new compression scheme. Find a ...1f.tgz that you KS> can download and pkg_add it. KS> Kent I have now found the 1f.tgz, but it still core dumps!? As said, pkg_add even core dumps if I just run pkg_add without specifying any file it should add, it's like my pkg_add is broken or something. I have no idea what to look after in the dump file, but it complains about some bus failure or something. If only I knew how to redirect the error message to 'mail', then I could mail it to my wondoze box, and then mail the error message to this list. Maybe that could help me to figure out what the problem is :) -- Med venlig hilsen/Best regards, Søren Neigaard mailto:[EMAIL PROTECTED] -- "First we thought the PC was a calculator. Then we found out how to turn numbers into letters with ASCII and we thought it was a typewriter. Then we discovered graphics, and we thought it was a television. With the World Wide Web, we've realized it's a brochure." To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Unusual output from dmesg
> From: "Weston M. Price" <[EMAIL PROTECTED]> > Date: Thu, 26 Sep 2002 17:07:00 + > Sender: [EMAIL PROTECTED] > > Hello, > I was doing some checking today and found the following as a result of > running dmesg: > > config> di sn0 > No such device: sn0 > Invalid command or syntax. Type `?' for help. > config> di lnc0 > No such device: lnc0 > Invalid command or syntax. Type `?' for help. > config> di ie0 > No such device: ie0 > Invalid command or syntax. Type `?' for help. > config> di fe0 > No such device: fe0 > Invalid command or syntax. Type `?' for help. > config> di bt0 > No such device: bt0 > Invalid command or syntax. Type `?' for help. > config> di aic0 > No such device: aic0 > Invalid command or syntax. Type `?' for help. > config> di aha0 > No such device: aha0 > Invalid command or syntax. Type `?' for help. > config> di adv0 > No such device: adv0 > Invalid command or syntax. Type `?' for help. > config> q > > > > Can anyone tell me what is going on here? Thanks. Well, almost certainly. You installed FreeBSD on a system. You booted either the FreeBSD boot floppy or the installation CD and went into the visual configuration tool. You de-selected a bunch of things your system didn't have or need to use for the install. You installed the system. You customized your kernel and removed many devices not present or used on your system. These include sn, lnc, ie, fe, bt, aic, aha, and adv. The initial configuration from the floppy/CD created a system with a /boot/kernel.conf that disabled all of these devices, but now that these devices ar no longer present, they are errors. To clean this up, edit /boot/kernel.conf and delete old entries. Don't delete the terminating 'q'. Or, if you don't want anything in the file, edit /boot/loader.conf and delete 'userconfig_script_load="YES"'. I believe that this will cause the system to not run kernel.conf, but I have never tried this. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: [EMAIL PROTECTED] Phone: +1 510 486-8634 To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: pkg_add failure on 4.6.2
On Thu, Sep 26, 2002 at 10:31:57PM +0200, S?ren Neigaard wrote: > I just installed 4.6.2, and I wanted to install cvsup. So I brought > the cvsup-16-1f.tbz from ftp.freebsd.org, and did a > 'pkg_add cvsup-16-1f.tbz', but whenever I run pkg_add, it core dumps. You should use the 4.6.2-RELEASE packages with 4.6.2; they're in .tgz format. Kris msg02995/pgp0.pgp Description: PGP signature
Re: pkg_add failure on 4.6.2
Søren Neigaard wrote: > Thursday, September 26, 2002, 10:44:38 PM, Kent wrote: > > KS> Søren Neigaard wrote: > >>>I just installed 4.6.2, and I wanted to install cvsup. So I brought >>>the cvsup-16-1f.tbz from ftp.freebsd.org, and did a >>>'pkg_add cvsup-16-1f.tbz', but whenever I run pkg_add, it core dumps. >>> >>>How can I redirect the error message from pkg_add to a file, and how >>>do I attache files with 'mail', so I can send you some more info on >>>this? >> > > KS> I don't think you can get what you want to install. Your system > KS> doesn't recognize the new format and that is why pkg_add is dying. > KS> They have reverted to the old format but that will take a while. I > KS> would grab 1e from http://people.freebsd.org/~jdp/s1g/ and then make > KS> and add the current port. Version 1f doesn't take long to build. > > KS> Kent > > I did not get that one? Does pkg_add not reconize the new format, or? > Even if I try to run pkg_add without any parameters, it still dies, is > it pkg_add that is broken? > > What do you mean with 1e and 1f? I'm not into this cvsup thing, I just > need it to update my ports tree. Should I get the source and build it, > and if so, where should I place the source prior to build? Will this > fix my problem, or is it an entire new problem? > No, you do not have to build it. You can download version ...1f.tgz from one of the mirrors and add it. The pkg_add on your system does not recognize the new compression scheme. Find a ...1f.tgz that you can download and pkg_add it. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Unusual output from dmesg
Hello, I was doing some checking today and found the following as a result of running dmesg: config> di sn0 No such device: sn0 Invalid command or syntax. Type `?' for help. config> di lnc0 No such device: lnc0 Invalid command or syntax. Type `?' for help. config> di ie0 No such device: ie0 Invalid command or syntax. Type `?' for help. config> di fe0 No such device: fe0 Invalid command or syntax. Type `?' for help. config> di bt0 No such device: bt0 Invalid command or syntax. Type `?' for help. config> di aic0 No such device: aic0 Invalid command or syntax. Type `?' for help. config> di aha0 No such device: aha0 Invalid command or syntax. Type `?' for help. config> di adv0 No such device: adv0 Invalid command or syntax. Type `?' for help. config> q Can anyone tell me what is going on here? Thanks. Weston To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: VPN: Windows client to FreeBSD?
On 23 Sep 2002 15:36:49 -0400, in sentex.lists.freebsd.questions you wrote: > Hello. I'm looking into setting up a VPN so that people at home with >cable modems/dsl/etc can connect into our corporate network. I've >looked at a bunch of ipsec how-to's (using racoon mostly), but they all >seem to be geared towards a setup that connects two freeBSD machines >together and passes packets securely between them. I'd like to use SSH >sentinel, or some other free Windows based client on one end, and then >the freebsd box with VPN software running on the other to connect the >client to the work network as though it were physically plugged into it. > >What can I use to do this? Most of the users use Windows 98 at home, so >they don't have any built in ipsec programs. The description of the >linksys BEFVP41 is pretty similar to what I'd like to setup. >http://www.linksys.com/products/product.asp?grid=23&prid=411 That would probably work. Another option is to use mpd (/usr/ports/net/mpd) on the FreeBSD side and let the Windows clients use MS PPTP. If you are aware of the security limitations / issues of PPTP and you are OK with them you should be fine. ---Mike Mike Tancsa ([EMAIL PROTECTED]) Sentex Communications Corp, Waterloo, Ontario, Canada "Given enough time, 100 monkeys on 100 routers could setup a national IP network." (KDW2) To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: samba server as a PDC
On Thu, Sep 26, 2002 at 10:48:45PM +, Peter Ulrich Kruppa wrote: >Date: Thu, 26 Sep 2002 22:48:45 + (GMT) >From: [EMAIL PROTECTED] (Peter Ulrich Kruppa) >To: "D. Penev" <[EMAIL PROTECTED]> >Cc: Peter Ulrich Kruppa <[EMAIL PROTECTED]>, > <[EMAIL PROTECTED]> >Subject: Re: samba server as a PDC > >Yes, thanks to *everybody* ! > >I think I mixed up >chown >chgrp and >chmod >somehow. Now ># ls -al /usr/local/samba/profiles >delivers > >total 4 >drwxr-xr-x 4 root samba 512 26 Sep 20:48 . >drwxr-xr-x 4 root samba 512 26 Sep 21:05 .. >drwxr-xr-x 15 lukas_mueller samba 512 26 Sep 22:41 lukas_mueller >drwxr-xr-x 13 root samba 512 26 Sep 20:24 root > >and everything works. His is just in time because we are going to >set up a second computer room in our school during the next >weeks. > > >Regards, > >Uli. > > >On Thu, 26 Sep 2002, D. Penev wrote: > >> On Thu, Sep 26, 2002 at 09:09:08PM +, Peter Ulrich Kruppa wrote: >> >Date: Thu, 26 Sep 2002 21:09:08 + (GMT) >> >From: [EMAIL PROTECTED] (Peter Ulrich Kruppa) >> >To: "D. Penev" <[EMAIL PROTECTED]> >> >cc: Peter Ulrich Kruppa <[EMAIL PROTECTED]>, >> > <[EMAIL PROTECTED]> >> >Subject: Re: samba server as a PDC >> > >> >On Wed, 25 Sep 2002, D. Penev wrote: >> > >> >> On Wed, Sep 25, 2002 at 10:10:34PM +, Peter Ulrich Kruppa wrote: >> >> >Date: Wed, 25 Sep 2002 22:10:34 + (GMT) >> >> >From: [EMAIL PROTECTED] (Peter Ulrich Kruppa) >> >> >To: [EMAIL PROTECTED] >> >> >Subject: samba server as a PDC >> >> > >> >> >Hi, >> >> > >> >> >I am trying to set up a samba server as a primary domain >> >> >controller for about 30 NT and Win2000 machines (and about 800 >> >> >users). Password administration and homes services seem to work >> >> >ok. >> >> >But the machines should also be able to read the user's profile >> >> >from the server when logging on and write them back when logging >> >> >off("roaming profiles"). This only works for users with root >> >> >access to the server. >> >> >"Ordinary" users can read their profile when starting up, but >> >> >logging off they receive an "access denied" message. >> >> >I guess, I have to set permissions correctly, but I have no idea >> >> >how. >> >> >My users belong to group called samba, their profiles are stored >> >> >in a directory /usr/local/samba/profiles . >> >> >> >> What ls -al /usr/local/samba/profiles show? My is : >> >> >> >> # ls -al profiles >> >> total 4 >> >> drwxr-xr-x 4 DomainAdmin DomainAdmins 512 Jul 15 23:04 . >> >> drwxr-xr-x 5 root wheel 512 Jul 15 21:16 .. >> >> drwx-- 13 DomainAdmin DomainAdmins 512 Jul 19 23:32 DomainAdmin >> >> drwx-- 13 DomainUser DomainUsers 512 Jul 26 22:15 DomainUser >> >> [snip] >> > >> >Hmm ... I have got >> > >> >--- >> >total 4 >> >drwxr-xr-x 4 root samba 512 26 Sep 20:48 . >> >drwxrwx--- 4 root 512 26 Sep 21:02 .. >> >> I don't think that this causing the problem. What I don't saw is that /usr/local/samba is not world readable, but below suggestions that I gave are still valid for roaming profiles. >> >> >drwxr-xr-x 14 lukas_mueller samba 512 26 Sep 20:33 lukas_mueller >> >> Is this user have problems with write permission ? I don't see any incorrect >> permissions, and hi must save his profile without any problems but users that >> haven't profiles cannot create them because they haven't write permission to >> /usr/local/samba/profiles. I see two sollutions: >> >> 1. chmod 775 /usr/local/samba/profiles >> 2. manualy create users directories as root and each of them chown to user >> >> >drwxr-xr-x 13 root samba 512 26 Sep 20:24 root >> > >> >- >> >... and I have to admit, I don't know who group is. I don't >> >have it in my /etc/group. >> >How do I change permissions for .. then? >> > >> > >> >Uli. >> > >> > >> > >> > >> >> >> >> > >> >> >Any idea what could be done? >> >> > >> >> >Thanks for your answers. >> >> > >> >> > >> >> >Uli. >> >> > >> >> >*---* >> >> >*Peter Ulrich Kruppa* >> >> >* - Wuppertal - * >> >> >* Germany * >> >> >*---* >> >> > >> >> > >> >> >To Unsubscribe: send mail to [EMAIL PROTECTED] >> >> >with "unsubscribe freebsd-questions" in the body of the message >> >> >> >> -- >> >> Regards, >> >> D. Penev >> >> >> >> To Unsubscribe: send mail to [EMAIL PROTECTED] >> >> with "unsubscribe freebsd-questions" in the body of the message >> >> >> > >> >*---* >> >*Peter Ulrich Kruppa* >> >* - Wuppertal - * >> >* Germany * >> >*---* >> >> -- >> Regards, >> D. Penev >> >> To Unsubscribe: send mail to [EMAIL PROTECTED] >> with "unsubscribe freebsd-questions" in the body of the message >> > >*--
Re: pkg_add failure on 4.6.2
Kent Stewart wrote: > > > Søren Neigaard wrote: > >> I just installed 4.6.2, and I wanted to install cvsup. So I brought >> the cvsup-16-1f.tbz from ftp.freebsd.org, and did a >> 'pkg_add cvsup-16-1f.tbz', but whenever I run pkg_add, it core dumps. >> >> How can I redirect the error message from pkg_add to a file, and how >> do I attache files with 'mail', so I can send you some more info on >> this? > > > I don't think you can get what you want to install. Your system doesn't > recognize the new format and that is why pkg_add is dying. They have > reverted to the old format but that will take a while. I would grab 1e > from http://people.freebsd.org/~jdp/s1g/ and then make and add the > current port. Version 1f doesn't take long to build. > Look at the mirrors. I found cvsup-16.1f.tgz on ftp9.freebsd.org. This version should pkg_add on your system. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re[2]: pkg_add failure on 4.6.2
Thursday, September 26, 2002, 10:44:38 PM, Kent wrote: KS> Søren Neigaard wrote: >> I just installed 4.6.2, and I wanted to install cvsup. So I brought >> the cvsup-16-1f.tbz from ftp.freebsd.org, and did a >> 'pkg_add cvsup-16-1f.tbz', but whenever I run pkg_add, it core dumps. >> >> How can I redirect the error message from pkg_add to a file, and how >> do I attache files with 'mail', so I can send you some more info on >> this? KS> I don't think you can get what you want to install. Your system KS> doesn't recognize the new format and that is why pkg_add is dying. KS> They have reverted to the old format but that will take a while. I KS> would grab 1e from http://people.freebsd.org/~jdp/s1g/ and then make KS> and add the current port. Version 1f doesn't take long to build. KS> Kent I did not get that one? Does pkg_add not reconize the new format, or? Even if I try to run pkg_add without any parameters, it still dies, is it pkg_add that is broken? What do you mean with 1e and 1f? I'm not into this cvsup thing, I just need it to update my ports tree. Should I get the source and build it, and if so, where should I place the source prior to build? Will this fix my problem, or is it an entire new problem? -- Med venlig hilsen/Best regards, Søren Neigaard mailto:[EMAIL PROTECTED] -- "Everything should be made as simple as possible, but no simpler." To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: 4.6.2 [sound] cs4281 on Toshiba 1715 laptop
At Thu, 26 Sep 2002 it looks like Justin P. Michel composed: > Bill, > > Sound had me confused for quite some time myself. When you execute the > MAKEDEV script, pcm and/or snd are not actually created as devices > themselves, but, rather a subset of devices that control your sound are. > > I believe the list of devices that are created can be found at: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/sound-devicenodes. > html > > The other thing that it mentioned, if your sound card is built-in to the > motherboard (which I believe most notebook sound systems are), you may also > need to add: "options PNPBIOS" to your kernel configuration. > > Hopefully this will get you listening to your system again. :) > Thanks again Justin, I've recompiled and added as a grand total to date, 3 entries in my new kernel, here they are: options PNPBIOS device pcm device csa And the relative events that happen in dmesg are as follows: pcm0: irq 5 at device 8.0 on pci0 pcm0: unable to allocate register space device_probe_and_attach: pcm0 attach returned 6 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources There is new stuff above related to the new entry of PNPBIOS in my kernel. KDE starts and states /dev/dsp is not accessible and here is the full entries for /dev/dsp* [root@corten_laptop: ~]-> ls -al /dev/dsp* lrwxrwxrwx 1 root wheel 5 Sep 26 13:03 /dev/dsp -> dsp.0 lrwxrwxrwx 1 root wheel 6 Sep 26 13:03 /dev/dsp0 -> dsp0.0 crw-rw-rw- 1 root wheel 30, 3 Sep 26 13:03 /dev/dsp0.0 crw-rw-rw- 1 root wheel 30, 0x00010003 Sep 26 13:03 /dev/dsp0.1 crw-rw-rw- 1 root wheel 30, 0x00020003 Sep 26 13:03 /dev/dsp0.2 crw-rw-rw- 1 root wheel 30, 0x00030003 Sep 26 13:03 /dev/dsp0.3 lrwxrwxrwx 1 root wheel 6 Sep 26 13:03 /dev/dsp1 -> dsp1.0 crw-rw-rw- 1 root wheel 30, 19 Sep 26 13:03 /dev/dsp1.0 crw-rw-rw- 1 root wheel 30, 0x00010013 Sep 26 13:03 /dev/dsp1.1 crw-rw-rw- 1 root wheel 30, 0x00020013 Sep 26 13:03 /dev/dsp1.2 crw-rw-rw- 1 root wheel 30, 0x00030013 Sep 26 13:03 /dev/dsp1.3 lrwxrwxrwx 1 root wheel 6 Sep 26 13:03 /dev/dspW -> dspW.0 lrwxrwxrwx 1 root wheel 7 Sep 26 13:03 /dev/dspW0 -> dspW0.0 crw-rw-rw- 1 root wheel 30, 5 Sep 26 13:03 /dev/dspW0.0 crw-rw-rw- 1 root wheel 30, 0x00010005 Sep 26 13:03 /dev/dspW0.1 crw-rw-rw- 1 root wheel 30, 0x00020005 Sep 26 13:03 /dev/dspW0.2 crw-rw-rw- 1 root wheel 30, 0x00030005 Sep 26 13:03 /dev/dspW0.3 lrwxrwxrwx 1 root wheel 7 Sep 26 13:03 /dev/dspW1 -> dspW1.0 crw-rw-rw- 1 root wheel 30, 21 Sep 26 13:03 /dev/dspW1.0 crw-rw-rw- 1 root wheel 30, 0x00010015 Sep 26 13:03 /dev/dspW1.1 crw-rw-rw- 1 root wheel 30, 0x00020015 Sep 26 13:03 /dev/dspW1.2 crw-rw-rw- 1 root wheel 30, 0x00030015 Sep 26 13:03 /dev/dspW1.3 So, I contiue hacking and appreciate your help. -- |<72-->| Bill Schoolcraft PO Box 210076 -o) San Francisco CA 94121 /\ "UNIX, A Way Of Life."_\_v http://forwardslashunix.com/raw To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Wondering about mail clients (specific features)
On Thu, Sep 26, 2002 at 03:38:35PM -0500, Oscar Ricardo Silva wrote: > my sanity I filter incoming mail from each list into its own mailbox. I've > tried using pine with procmail and mail is filtered properly but I don't > know that there is new mail in mailboxes other than "In". > > Is there something I'm missing in pine that will do this? Are there other > mail clients that will notify you when new mail has been received and > placed in a mailbox other than "IN" ? Yes, mutt will do this. You need to add a line in your ~/.muttrc like this: mailboxes /var/mail/blah =donuts =wombatsex =flagellation (The names of your incoming mailboxes may differ, depending on your interests. The = sign means the folder is in your ~/Mail directory. There's probably some knob to change that, too.) -- Matthew Hunt <[EMAIL PROTECTED]> * Clearly there are more things in the http://www.pobox.com/~mph/ * heavens than anyone anticipated. -enp To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Wondering about mail clients (specific features)
On Thu, 26 Sep 2002, Oscar Ricardo Silva wrote: > Date: Thu, 26 Sep 2002 15:38:35 -0500 > From: Oscar Ricardo Silva <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Wondering about mail clients (specific features) > > It is not my intention to start any religious wars about mail clients. I'm > currently using Eudora (stop, drop, roll and duck incoming slings and > arrows) on Windows. One feature I like is that when mail is received and > filtered into different mailboxes, you are told there is new mail in those > mailboxes. I subscribe to many different mailing lists and for the sake of > my sanity I filter incoming mail from each list into its own mailbox. I've > tried using pine with procmail and mail is filtered properly but I don't > know that there is new mail in mailboxes other than "In". > > Is there something I'm missing in pine that will do this? Are there other > mail clients that will notify you when new mail has been received and > placed in a mailbox other than "IN" ? > > > Oscar > > There are a bazillion utilities for X and each window manager that do email notification for different mailboxes, such as kbiff, xbiff, ... I used to use the wmbiff dock app in WindowMaker a lot, great little app. I'm a Pine user as well, dunno if/which other email clients provide this functionality. Kmail or Sylpheed? JB # John Bleichert # http://vonbek.dhs.org/latest.jpg To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
ADIC CentraVision/StorNext support
ADIC has a linux kernel module for client access to StorNext FS (formerly Centravision). Any ideas on *BSD support for this? I'm running a FreeBSD FTP server and had hopes for *BSD or MacOSX webservers but this may kill my chances of putting that idea on the table. Is there any *BSD support at all for a commercial SAN solution? *I'm* well aware that I/we can "roll our own" with standard products, but the powers that be want to buy something and be able to put someone else on the hook if/when it doesn't work. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: pkg_add failure on 4.6.2
Søren Neigaard wrote: > I just installed 4.6.2, and I wanted to install cvsup. So I brought > the cvsup-16-1f.tbz from ftp.freebsd.org, and did a > 'pkg_add cvsup-16-1f.tbz', but whenever I run pkg_add, it core dumps. > > How can I redirect the error message from pkg_add to a file, and how > do I attache files with 'mail', so I can send you some more info on > this? I don't think you can get what you want to install. Your system doesn't recognize the new format and that is why pkg_add is dying. They have reverted to the old format but that will take a while. I would grab 1e from http://people.freebsd.org/~jdp/s1g/ and then make and add the current port. Version 1f doesn't take long to build. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Apache CGI problem
Hello all, Error 500 : Internal server error. -- Thank you for your time, Ihsan __ Do you Yahoo!? New DSL Internet Access from SBC & Yahoo! http://sbc.yahoo.com To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Wondering about mail clients (specific features)
It is not my intention to start any religious wars about mail clients. I'm currently using Eudora (stop, drop, roll and duck incoming slings and arrows) on Windows. One feature I like is that when mail is received and filtered into different mailboxes, you are told there is new mail in those mailboxes. I subscribe to many different mailing lists and for the sake of my sanity I filter incoming mail from each list into its own mailbox. I've tried using pine with procmail and mail is filtered properly but I don't know that there is new mail in mailboxes other than "In". Is there something I'm missing in pine that will do this? Are there other mail clients that will notify you when new mail has been received and placed in a mailbox other than "IN" ? Oscar To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: FreeBSD and Verizon DSL
On Thu, 26 Sep 2002 16:20:19 -0400 Louis LeBlanc <[EMAIL PROTECTED]> wrote: > Is PPP setup required? AFAIK, Verizon doesn't require an > authname/authkey challenge, since it logs the Mac Address of the NIC, > as well as the modem itself. I haven't been using PPP with AT&T for > the last 4+ years, and it works well. > > TIA > Lou It is possible that the service Verizon provides in your area is different than one they privide here. Here Verizon DSL uses PPPoE and ppp is definitely requited to connect. -- Alexander Kabaev To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
pkg_add failure on 4.6.2
I just installed 4.6.2, and I wanted to install cvsup. So I brought the cvsup-16-1f.tbz from ftp.freebsd.org, and did a 'pkg_add cvsup-16-1f.tbz', but whenever I run pkg_add, it core dumps. How can I redirect the error message from pkg_add to a file, and how do I attache files with 'mail', so I can send you some more info on this? -- Med venlig hilsen/Best regards, Søren Neigaard mailto:[EMAIL PROTECTED] -- "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move." To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: xterm and centericq
> I have just installed centericq from the ports but > when I execute it I am not able to use the arrow > keys in the configuration screen. > > I try to run it under X in a xterm console with > TERM=xterm-color. One more thing to add: In programs like mutt, slrn and midnight commander the arrow keys work fine. Cheers, Frank P.S. Sorry for reply instead of a new post. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: FreeBSD and Verizon DSL
Is PPP setup required? AFAIK, Verizon doesn't require an authname/authkey challenge, since it logs the Mac Address of the NIC, as well as the modem itself. I haven't been using PPP with AT&T for the last 4+ years, and it works well. TIA Lou On 09/26/02 11:32 AM, Alexander Kabaev sat at the `puter and typed: > Hi, > > Verizon DSL works reasonably well for me. Below is my /etc/ppp/ppp.conf > entry. Make sure that authkey and authname reflect the reality, add > > ppp_enable="YES" > ppp_mode="ddial" > ppp_nat="NO" > ppp_profile="infospeed" > > to your /etc/rc.conf file and you should be all set. No DHCP is > required, the IP address allocation will be handled by PPP. Add NAT and > firewall rules as you see fit. > > infospeed: > set device PPPoE:xl0 # replace xl1 with your interface > set mru 1492 > set mtu 1492 > set authname [EMAIL PROTECTED] > set authkey your password > set log Phase > set dial > set login > set ifaddr 10.0.0.1/0 10.0.0.2/0 > enable lqr > disable ipv6cp > add default HISADDR > > -- > Alexander Kabaev > > -- Louis LeBlanc [EMAIL PROTECTED] Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://www.keyslapper.org ԿԬ QOTD: "I tried buying a goat instead of a lawn tractor; had to return it though. Couldn't figure out a way to connect the snow blower." To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
xterm and centericq
Hi. I have just installed centericq from the ports but when I execute it I am not able to use the arrow keys in the configuration screen. I try to run it under X in a xterm console with TERM=xterm-color (when I am not running X and have TERM=cons25l1 everything works fine). I have read the readme and the FAQ, but haven't found anything - any ideas or hints ? Maybe I have to tweak some X keyboard configurations?! Greets, Frank To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: samba server as a PDC
Yes, thanks to *everybody* ! I think I mixed up chown chgrp and chmod somehow. Now # ls -al /usr/local/samba/profiles delivers total 4 drwxr-xr-x 4 root samba 512 26 Sep 20:48 . drwxr-xr-x 4 root samba 512 26 Sep 21:05 .. drwxr-xr-x 15 lukas_mueller samba 512 26 Sep 22:41 lukas_mueller drwxr-xr-x 13 root samba 512 26 Sep 20:24 root and everything works. His is just in time because we are going to set up a second computer room in our school during the next weeks. Regards, Uli. On Thu, 26 Sep 2002, D. Penev wrote: > On Thu, Sep 26, 2002 at 09:09:08PM +, Peter Ulrich Kruppa wrote: > >Date: Thu, 26 Sep 2002 21:09:08 + (GMT) > >From: [EMAIL PROTECTED] (Peter Ulrich Kruppa) > >To: "D. Penev" <[EMAIL PROTECTED]> > >cc: Peter Ulrich Kruppa <[EMAIL PROTECTED]>, > > <[EMAIL PROTECTED]> > >Subject: Re: samba server as a PDC > > > >On Wed, 25 Sep 2002, D. Penev wrote: > > > >> On Wed, Sep 25, 2002 at 10:10:34PM +, Peter Ulrich Kruppa wrote: > >> >Date: Wed, 25 Sep 2002 22:10:34 + (GMT) > >> >From: [EMAIL PROTECTED] (Peter Ulrich Kruppa) > >> >To: [EMAIL PROTECTED] > >> >Subject: samba server as a PDC > >> > > >> >Hi, > >> > > >> >I am trying to set up a samba server as a primary domain > >> >controller for about 30 NT and Win2000 machines (and about 800 > >> >users). Password administration and homes services seem to work > >> >ok. > >> >But the machines should also be able to read the user's profile > >> >from the server when logging on and write them back when logging > >> >off("roaming profiles"). This only works for users with root > >> >access to the server. > >> >"Ordinary" users can read their profile when starting up, but > >> >logging off they receive an "access denied" message. > >> >I guess, I have to set permissions correctly, but I have no idea > >> >how. > >> >My users belong to group called samba, their profiles are stored > >> >in a directory /usr/local/samba/profiles . > >> > >> What ls -al /usr/local/samba/profiles show? My is : > >> > >> # ls -al profiles > >> total 4 > >> drwxr-xr-x 4 DomainAdmin DomainAdmins 512 Jul 15 23:04 . > >> drwxr-xr-x 5 root wheel 512 Jul 15 21:16 .. > >> drwx-- 13 DomainAdmin DomainAdmins 512 Jul 19 23:32 DomainAdmin > >> drwx-- 13 DomainUser DomainUsers 512 Jul 26 22:15 DomainUser > >> [snip] > > > >Hmm ... I have got > > > > --- > >total 4 > >drwxr-xr-x 4 root samba 512 26 Sep 20:48 . > >drwxrwx--- 4 root 512 26 Sep 21:02 .. > > I don't think that this causing the problem. > > >drwxr-xr-x 14 lukas_mueller samba 512 26 Sep 20:33 lukas_mueller > > Is this user have problems with write permission ? I don't see any incorrect > permissions, and hi must save his profile without any problems but users that > haven't profiles cannot create them because they haven't write permission to > /usr/local/samba/profiles. I see two sollutions: > > 1. chmod 775 /usr/local/samba/profiles > 2. manualy create users directories as root and each of them chown to user > > >drwxr-xr-x 13 root samba 512 26 Sep 20:24 root > > > > - > >... and I have to admit, I don't know who group is. I don't > >have it in my /etc/group. > >How do I change permissions for .. then? > > > > > >Uli. > > > > > > > > > >> > >> > > >> >Any idea what could be done? > >> > > >> >Thanks for your answers. > >> > > >> > > >> >Uli. > >> > > >> >*---* > >> >*Peter Ulrich Kruppa* > >> >* - Wuppertal - * > >> >* Germany * > >> >*---* > >> > > >> > > >> >To Unsubscribe: send mail to [EMAIL PROTECTED] > >> >with "unsubscribe freebsd-questions" in the body of the message > >> > >> -- > >> Regards, > >> D. Penev > >> > >> To Unsubscribe: send mail to [EMAIL PROTECTED] > >> with "unsubscribe freebsd-questions" in the body of the message > >> > > > >*---* > >*Peter Ulrich Kruppa* > >* - Wuppertal - * > >* Germany * > >*---* > > -- > Regards, > D. Penev > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-questions" in the body of the message > *---* *Peter Ulrich Kruppa* * - Wuppertal - * * Germany * *---* To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: samba server as a PDC
On Thu, Sep 26, 2002 at 09:09:08PM +, Peter Ulrich Kruppa wrote: >Date: Thu, 26 Sep 2002 21:09:08 + (GMT) >From: [EMAIL PROTECTED] (Peter Ulrich Kruppa) >To: "D. Penev" <[EMAIL PROTECTED]> >cc: Peter Ulrich Kruppa <[EMAIL PROTECTED]>, > <[EMAIL PROTECTED]> >Subject: Re: samba server as a PDC > >On Wed, 25 Sep 2002, D. Penev wrote: > >> On Wed, Sep 25, 2002 at 10:10:34PM +, Peter Ulrich Kruppa wrote: >> >Date: Wed, 25 Sep 2002 22:10:34 + (GMT) >> >From: [EMAIL PROTECTED] (Peter Ulrich Kruppa) >> >To: [EMAIL PROTECTED] >> >Subject: samba server as a PDC >> > >> >Hi, >> > >> >I am trying to set up a samba server as a primary domain >> >controller for about 30 NT and Win2000 machines (and about 800 >> >users). Password administration and homes services seem to work >> >ok. >> >But the machines should also be able to read the user's profile >> >from the server when logging on and write them back when logging >> >off("roaming profiles"). This only works for users with root >> >access to the server. >> >"Ordinary" users can read their profile when starting up, but >> >logging off they receive an "access denied" message. >> >I guess, I have to set permissions correctly, but I have no idea >> >how. >> >My users belong to group called samba, their profiles are stored >> >in a directory /usr/local/samba/profiles . >> >> What ls -al /usr/local/samba/profiles show? My is : >> >> # ls -al profiles >> total 4 >> drwxr-xr-x 4 DomainAdmin DomainAdmins 512 Jul 15 23:04 . >> drwxr-xr-x 5 root wheel 512 Jul 15 21:16 .. >> drwx-- 13 DomainAdmin DomainAdmins 512 Jul 19 23:32 DomainAdmin >> drwx-- 13 DomainUser DomainUsers 512 Jul 26 22:15 DomainUser >> [snip] > >Hmm ... I have got > > --- >total 4 >drwxr-xr-x 4 root samba 512 26 Sep 20:48 . >drwxrwx--- 4 root 512 26 Sep 21:02 .. I don't think that this causing the problem. >drwxr-xr-x 14 lukas_mueller samba 512 26 Sep 20:33 lukas_mueller Is this user have problems with write permission ? I don't see any incorrect permissions, and hi must save his profile without any problems but users that haven't profiles cannot create them because they haven't write permission to /usr/local/samba/profiles. I see two sollutions: 1. chmod 775 /usr/local/samba/profiles 2. manualy create users directories as root and each of them chown to user >drwxr-xr-x 13 root samba 512 26 Sep 20:24 root > > - >... and I have to admit, I don't know who group is. I don't >have it in my /etc/group. >How do I change permissions for .. then? > > >Uli. > > > > >> >> > >> >Any idea what could be done? >> > >> >Thanks for your answers. >> > >> > >> >Uli. >> > >> >*---* >> >*Peter Ulrich Kruppa* >> >* - Wuppertal - * >> >* Germany * >> >*---* >> > >> > >> >To Unsubscribe: send mail to [EMAIL PROTECTED] >> >with "unsubscribe freebsd-questions" in the body of the message >> >> -- >> Regards, >> D. Penev >> >> To Unsubscribe: send mail to [EMAIL PROTECTED] >> with "unsubscribe freebsd-questions" in the body of the message >> > >*---* >*Peter Ulrich Kruppa* >* - Wuppertal - * >* Germany * >*---* -- Regards, D. Penev To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Books (OT)
If you are really interested in C++, I would recommed Stanley Lipman's C++ Primer as a place to start. Also, for more advanced examples,idioms, etc... I would definitely recommend Scott Meyers books as well as anything by Jim Coplien and Lipmans Inside the C++ Object Model. Regards, Weston On Thursday 26 September 2002 02:32 pm, Frank Heitmann wrote: > Hi. > > I have used FreeBSD for about 6-7 weeks now (great system; I have > to admit that I like UNIX much more than Windows) and now that I > got a little better with the system in general I wanted to start > to program for it, so that I will hopefully be able to help. > > But as I read through some code I noticed that my C/C++ needs some > refreshment and improvement (especially OOP) first. (I haven't really > programmed for a year or so, because I first started to study Physics, > before I realized that Computer Science (or "Informatik" here in > Germany) is what interests me much more. Before that I have programmed > a lot for Windows.) > > The books I have looked at are: > C How To Program > C++ How To Program (both from Prentice Hall/Deitel) > and: > C Programming Language (K&R) > C++ Programming Language (Stroustrup) > > The two from Deitel look very good to me (I like the summary and > exercises at the end of each chapter and I like the whole layout). > The last two also seemed to be very good, but I believe they are > more useful as a reference than for learning?! > > Maybe someone has them on his/her bookshelf and can give a comment? > > Oh, and sorry for being off-topic, but these mailinglists have > rapidily become my only connection to the outside world :) > > P.S. I have just seen in the handbook that there is a book "The > Design and Implementation of the 4.4BSD Unix Operating System". > Is it useful in connection with the "Developers Handbook" to > understand kernel internals? > (Hey, I am at least not absolutly off-topic now :) > > Cheers, > Frank > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: error building mozilla-- cannot find -lglib
Found it-- /usr/ports/www/mozilla/work/mozilla/config/autoconf.mk. There are several macro definitions for -lglib12, but LIBIDL_LIBS is defined to include -lglib. I haven't investigated this further to figure out where this should have been set (ie, if it's a patch problem or a configure problem), but the build just progressed past the xpidl stage where it was failing before. I will let you know if it builds successfully, and if you want me to do any more tests I'd be glad to do so if it would help the porting process. Thanks for all your help, Mark On 25 Sep 2002, Joe Marcus Clarke wrote: >On Sat, 2002-09-21 at 02:49, Mark J. Miller wrote: >> >> >> >> >Somehow your Mozilla is being configured incorrectly. Make sure your >> >> >/usr/ports/Mk directory is up-to-date, then do a make clean in the >> >> >mozilla directory, and try to rebuild. It shouldn't be looking for >> >> >-lglib, but rather -lglib12. >> > >> >This is handled by the glib12-config script (installed as part of >> >glib12). What does glib12-config --libs report? What revision of >> >/usr/ports/Mk/bsd.port.mk do you have? >> >> % glib12-config --libs >> -L/usr/local/lib -lglib12 >> >> I did a 'locate glib| grep config' and found another binary called >> glib-config in /usr/local/bin. The version it reported was 1.2.8, while >> glib12-config reports 1.2.10 . I removed the old binary, ran a make clean >> install again, but got the same error. >> >> The version of /usr/ports/Mk/bsd.port.mk is >> # $FreeBSD: ports/Mk/bsd.port.mk,v 1.424 2002/09/19 00:16:39 kris Exp $ >> >> I should note that earlier I had a problem with libIDL which I've just >> come across again: >> >> cc -o xpidl.o -c -DOSTYPE=\"FreeBSD4\" -DOSARCH=\"FreeBSD\" -DOJI >> -I../../../dist/include/xpcom -I../../../dist/include >> -I/usr/ports/www/mozilla/work/mozilla/dist/include/nspr >> -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -fPIC >> -I/usr/X11R6/include -I/usr/X11R6/include -Wall -W -Wno-unused >> -Wpointer-arith -Wcast-align -Wno-long-long -O -pipe -march=pentiumpro >> -pipe -DNDEBUG -DTRIMMED -ffunction-sections -I/usr/local/include/glib12 >> -I/usr/local/include/orbit-1.0 -I/usr/local/include -I/usr/X11R6/include >> -I/usr/X11R6/include -include ../../../config-defs.h -DMOZILLA_CLIENT >> xpidl.c >> In file included from xpidl.c:42: >> xpidl.h:53: libIDL/IDL.h: No such file or directory >> >> To get around this, I installed libIDL, which had a dependency on glib20. >> This did solve the IDL problem. After seeing the glib problem, I did a >> pkg_delete -f on glib20, reinstalled glib12, and got the same error I have >> now ("can't find -lglib"). I don't think this would have any effect (I'm >> doing make clean install each time), but am I missing something? Should >> mozilla have its own version of IDL? > >It should. I have not seen this error previously. The only other user >I can recall that had this problem symlinked libglib12.so to >libglib.so. However, this might not solve the libIDL problem. > >> >> Here are the lines from the build process that have to do with glib: >> ===> Cleaning for glib-1.2.10_7 >> ===> mozilla-1.0.1,2 depends on shared library: glib12.3 - found >> checking for glib-config... /usr/local/bin/glib12-config >> checking for GLIB - version >= 1.2.0... yes >> >> It seems like config is detecting the correct version, but it's still >> using -lglib, not -lglib12 as you mentioned. > >Can you hunt through the makefiles to see which one has the -lglib and >figure out where it's coming from? It might help to determine why this >is happening. > >Joe > >> >> Thanks for your continuing help, >> Mark >> >> >-- >PGP Key : http://www.marcuscom.com/pgp.asc > > To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Oracle/SYBS/Datawarehouse needed for CH and DE
Hi A colleague of mine is in need of several Oracle people and as I work in the industry, has asked for my help to put the word out. The company is a global financial and they need various Senior DBA's and developers who are German speakers, the company is in Switzerland and permits can be provided. He also needs some Senior Sybase DBA's as well and a couple of Datawarehouse specialists for DE and CH. I also know he has several very good Oracle and Sybase people coming available for Permanent roles mainly for Germany and Switzerland and hence if any if you guys are in need of people, I will him know. If of interest, please drop me a mail and I will send on your details Kind Regards Helmut. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: samba server as a PDC
On Wed, 25 Sep 2002, Dave Young wrote: > The following is a minimal profile share > > [profile] > path = /export/profile > create mask = 0600 > directory mask = 0700 > nt acl support = no > read only = no > > > looks like > > nt acl support = no I have added this to my smb.conf (it was important for something) but it doesn't solve my problem. I still guess it must have something to do with the permissions to my /usr/local/samba/profiles . Uli. > > is key > > from README.Win2kSP2 > > > hth, > > > Dave > > > On Wed, 25 Sep 2002 22:10:34 + (GMT) > [EMAIL PROTECTED] (Peter Ulrich Kruppa) wrote: > > > Hi, > > > > I am trying to set up a samba server as a primary domain > > controller for about 30 NT and Win2000 machines (and about 800 > > users). Password administration and homes services seem to work > > ok. > > But the machines should also be able to read the user's profile > > from the server when logging on and write them back when logging > > off("roaming profiles"). This only works for users with root > > access to the server. > > "Ordinary" users can read their profile when starting up, but > > logging off they receive an "access denied" message. > > I guess, I have to set permissions correctly, but I have no idea > > how. > > My users belong to group called samba, their profiles are stored > > in a directory /usr/local/samba/profiles . > > > > Any idea what could be done? > > > > Thanks for your answers. > > > > > > Uli. > > > > *---* > > *Peter Ulrich Kruppa* > > * - Wuppertal - * > > * Germany * > > *---* > > > > > > To Unsubscribe: send mail to [EMAIL PROTECTED] > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-questions" in the body of the message > *---* *Peter Ulrich Kruppa* * - Wuppertal - * * Germany * *---* To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: samba server as a PDC
Peter Ulrich Kruppa wrote: > On Wed, 25 Sep 2002, D. Penev wrote: > >>What ls -al /usr/local/samba/profiles show? My is : >> >># ls -al profiles >>total 4 >>drwxr-xr-x 4 DomainAdmin DomainAdmins 512 Jul 15 23:04 . >>drwxr-xr-x 5 root wheel 512 Jul 15 21:16 .. >>drwx-- 13 DomainAdmin DomainAdmins 512 Jul 19 23:32 DomainAdmin >>drwx-- 13 DomainUser DomainUsers 512 Jul 26 22:15 DomainUser >>[snip] > > > Hmm ... I have got > > --- > total 4 > drwxr-xr-x 4 root samba 512 26 Sep 20:48 . > drwxrwx--- 4 root 512 26 Sep 21:02 .. > drwxr-xr-x 14 lukas_mueller samba 512 26 Sep 20:33 lukas_mueller > drwxr-xr-x 13 root samba 512 26 Sep 20:24 root > > - > ... and I have to admit, I don't know who group is. I don't > have it in my /etc/group. > How do I change permissions for .. then? > > > Uli. > Hi Uli, as normal you can use chown or chgrp to change the group for .. . Or you do: cd /usr/local [chown root:samba|chgrp samba] samba# since this is the directory meant by .. Hope that helped. Marc To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: samba server as a PDC
On Wed, 25 Sep 2002, D. Penev wrote: > On Wed, Sep 25, 2002 at 10:10:34PM +, Peter Ulrich Kruppa wrote: > >Date: Wed, 25 Sep 2002 22:10:34 + (GMT) > >From: [EMAIL PROTECTED] (Peter Ulrich Kruppa) > >To: [EMAIL PROTECTED] > >Subject: samba server as a PDC > > > >Hi, > > > >I am trying to set up a samba server as a primary domain > >controller for about 30 NT and Win2000 machines (and about 800 > >users). Password administration and homes services seem to work > >ok. > >But the machines should also be able to read the user's profile > >from the server when logging on and write them back when logging > >off("roaming profiles"). This only works for users with root > >access to the server. > >"Ordinary" users can read their profile when starting up, but > >logging off they receive an "access denied" message. > >I guess, I have to set permissions correctly, but I have no idea > >how. > >My users belong to group called samba, their profiles are stored > >in a directory /usr/local/samba/profiles . > > What ls -al /usr/local/samba/profiles show? My is : > > # ls -al profiles > total 4 > drwxr-xr-x 4 DomainAdmin DomainAdmins 512 Jul 15 23:04 . > drwxr-xr-x 5 root wheel 512 Jul 15 21:16 .. > drwx-- 13 DomainAdmin DomainAdmins 512 Jul 19 23:32 DomainAdmin > drwx-- 13 DomainUser DomainUsers 512 Jul 26 22:15 DomainUser > [snip] Hmm ... I have got --- total 4 drwxr-xr-x 4 root samba 512 26 Sep 20:48 . drwxrwx--- 4 root 512 26 Sep 21:02 .. drwxr-xr-x 14 lukas_mueller samba 512 26 Sep 20:33 lukas_mueller drwxr-xr-x 13 root samba 512 26 Sep 20:24 root - ... and I have to admit, I don't know who group is. I don't have it in my /etc/group. How do I change permissions for .. then? Uli. > > > > >Any idea what could be done? > > > >Thanks for your answers. > > > > > >Uli. > > > >*---* > >*Peter Ulrich Kruppa* > >* - Wuppertal - * > >* Germany * > >*---* > > > > > >To Unsubscribe: send mail to [EMAIL PROTECTED] > >with "unsubscribe freebsd-questions" in the body of the message > > -- > Regards, > D. Penev > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-questions" in the body of the message > *---* *Peter Ulrich Kruppa* * - Wuppertal - * * Germany * *---* To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
reverse proxy?
I am looking for something that I can setup to forward http and https requests to other machines. Most of the requests would be forwarded to internal machines although I do have one that would be forwarded to another machine on the internet. What I would like to do is when that machine is down I serve a local page that basically says it's down for upgrades. If I can't get it to do that however it would be fine for it to serve the local cache. >From my research it looks as if squid can do part of what I need but from what I've read it can only forward requests to one server. I need something that can forward requests to multiple servers depending on what is requested. For example, if someone requested www.bleh.com it would forward internally to 192.168.0.10 and www.blah.net would forward to 192.168.0.11. I guess basically a reverse proxy that can do something like name based virtual hosting. Can this be done with apache? And if so could someone point me in the right direction on how to set something like this up. Thanks in advance for any help you can give. -Richard To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: 4.6.2 [sound] cs4281 on Toshiba 1715 laptop
At Thu, 26 Sep 2002 it looks like Justin P. Michel composed: > Don't forget to make your device nodes... > > (ie. if device comes up as pcm0, go to /dev and, as root "sh MAKEDEV snd0") > Thanks Justin, You know, as root I did that and NO /dev/snd* was created, the only thing beginning "sn" is: [root@corten_laptop: /dev]-> ls -al sn* crw-rw-rw- 1 root wheel 30, 6 Sep 26 10:21 sndstat and the device was spotted at boot with: [root@corten_laptop: /dev]-> dmesg|grep 4281 pcm0: irq 5 at device 8.0 on pci0 pcm0: irq 5 at device 8.0 on pci0 so I also checked for a /dev/pcm* [root@corten_laptop: /dev]-> ls -al pcm* ls: pcm*: No such file or directory and said "what the hell..." [root@corten_laptop: /dev]-> sh MAKEDEV pcm0 pcm0 - no such device name So, I'm getting closer here thanks to your help but still can't figure out the above. This laptop is triple booted with "Linux/Win2000/FreeBSD" and this has been the most troublesome thing. TIA -- |<72-->| Bill Schoolcraft PO Box 210076 -o) San Francisco CA 94121 /\ "UNIX, A Way Of Life."_\_v http://forwardslashunix.com/raw To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Multiport
Hello freebsd-questions, I trying to set the multiport adapter to my PC under the FreeBSD 4.4 In my configuration file I write: option COM_MULTIPORT device sio2 at isa? port 0xb00c tty irq 5 flags 0x031c vector siointr device sio3 at isa? port 0xb014 tty flags 0x031c device sio4 at isa? port 0xb016 tty flags 0x031c device sio5 at isa? port 0xb01e tty flags 0x031c And when I try to execute command I see: config: line 147: syntax error There is 146 line - device sio2 at isa? port 0xb00c tty irq 5 flags 0x031c vector siointr Tell me please about this "syntax error", I cant understand :( -- Best regards, Eugene Olkhovickmailto:[EMAIL PROTECTED] Finance & Credit Banking Corporation, Rivne branch (0362)630028 To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Configuring XFree86 - not working...
On 26-Sep-2002 MET wrote: > So I've installed XFree86 (or rather FBSD 4.6.2 did as it came with it). > I'm updated my ports and my system to -STABLE. However when I try to > configure X-Server I get a blue flashy screen that reminds of death (too > many years on MS I guess). Any how, I'm attempting to the Handbook ( > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html > ): > > # XFree86 -configure > > # XFree86 -xf86config XF86Config.new > > Instead of the wonderful "black and grey grid and an X mouse cursor" I > get some retarded shaky blue-ish crap. My machine is a Dell Inspiron > 8200 Laptop ( 15 IN SXGA+ || 64MB DDR 4X AGP NVIDIA NV17 3D VIDEO ). > > Any ideas what I have to do in order to get this to work? Try running "xf86cfg -textmode". -- Conrad Sabatier <[EMAIL PROTECTED]> Yes, but which self do you want to be? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Your confirmation is needed
Please reply to this email message to confirm your subscription to newadvent. Your email address has been entered for a subscription to the newadvent mailing list. However, your new subscription requires a confirmation that you received this email message and want to join this mailing list. If you do not want to join, do nothing. You will be automatically removed. To confirm that you do want to join, simply reply to this message. Make sure that your message is addressed to [EMAIL PROTECTED] To unsubscribe immediately, you send an email message to [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: XP Windows and Nat
On Thu, Sep 26, 2002 at 02:07:23AM -0600, Grant Cooper wrote: >From: "Grant Cooper" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Subject: XP Windows and Nat >Date: Thu, 26 Sep 2002 02:07:23 -0600 > >I have am using FreeBSD as a firewall and just recently upgraded to an XP >box. Not so much a problem but my Network connection gives me a warning >every 15 - 20 min saying my internet connection is down. Then it >re-connects. About a 5-6 sec delay. Never had this problem with Windows 98 >and still don't. Think maby a windows driver is causing the problem? Give more info about your configuration. > > >To Unsubscribe: send mail to [EMAIL PROTECTED] >with "unsubscribe freebsd-questions" in the body of the message -- Regards, D. Penev To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: UNKNOWN IP OPTION emergency
soheil h wrote: > as in stevens' Tcp/Ip illustrated says when a router see an unknown option > it must silently ignore it but when i put an option by type 253 len 12 and > 10 byte of data > some router on my path drop it > how can i set an option an put 2 ip address in it that no router delete my > data Send a known option, instead? Ignore := pass | drop Normally, it means "drop", because unknown options are assumed to be hop-to-hop, meaning it's illegal for them to come from a router that did not originate them (i.e. a router that doesn't recognize the option forwarding it to one that does). If you want a covert data channel, you aren't going to be able to do it with router options. 8-). -- Terry To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: PHP, GD2 and True Type Fonts
# [EMAIL PROTECTED] / 2002-09-26 17:54:05 +0100: > From: Roman Neuhauser <[EMAIL PROTECTED]> > > # [EMAIL PROTECTED] / 2002-09-26 17:21:06 +0100: > > > I am calling the GD2 package from PHP to generate graphics to be > > > displayed on web pages. Everything I have tried are working fine, with > > > one exception: When I make a call like > > > $size = ImageTTFBbox (10, 0, "fonts/arial.ttf" , "hello"); > > > I get an arror message like > > > Warning: Could not find/open font in /home/www/htdocs/t3.php on line 21 > > > ISTR the path must be absolute. > > Thanks. This did it: > $fontfile = "/home/www/htdocs/fonts/serifai.ttf"; > Those small details! > Kjell you should have sent this to questions@ (for the archives) -- begin 666 nonexistent.vbs FreeBSD 4.7-RC 7:03PM up 9 days, 2:18, 11 users, load averages: 0.00, 0.02, 0.00 end To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
[sound] linker_file_sysinit "snd_pcm.ko" failed to register! 17
Hello, In looking for references for the error: linker_file_sysinit "snd_pcm.ko" failed to register! 17 I don't find much, I did a kldstat and that produced: 15 0xc010 420668 kernel 21 0xc135b000 7000 linprocfs.ko 31 0xc13d1000 3000 daemon_saver.ko 41 0xc13d6000 14000linux.ko 61 0xc1509000 14000snd_pcm.ko So thank gawd the module is there, just wondering if I'm missing anything. I was reading that in some cases you would add something like this to /boot/loader.conf maestro3_load="YES" I wonder if there is any options for the cs4281 sound chip? -- |<72-->| Bill Schoolcraft PO Box 210076 -o) San Francisco CA 94121 /\ "UNIX, A Way Of Life."_\_v http://forwardslashunix.com/raw To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
[no subject]
subscribe [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: Need a solution
There's a tutorial on LDAP which I found interesting at: http://www.bsdforums.org/forums/showthread.php?threadid=3177 On Wed, 25 Sep 2002, Brian McCann wrote: > I've got a slight quandary. I need a FreeBSD/*nix solution to a > Microsoft Exchange server. Basically...Exchange server is what we need > as far as functionality, but it's way to expensive, and...well...I > really try not to use M$FT products when it comes to servers. So...I > need something that does a directory of contacts (LDAP I assume will > work), something that will share schedules, and something that will act > as a mail server and a "public folder" server. I'm told IMAP CAN do > this...but is this really the best "groupware" for FreeBSD solution? > Any suggestions? > > Thanks, > --Brian > > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Correo prueba 2...
saludos To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Correo prueba 2...
saaludos To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
4.6.2 [sound] cs4281 on Toshiba 1715 laptop
Hello Family, Just compiled a new kernel with device pcm and there is still no sound happening. Is there some issues with the cs4281 and 4.6.2 ? Thanks. -- |<72-->| Bill Schoolcraft PO Box 210076 -o) San Francisco CA 94121 /\ "UNIX, A Way Of Life."_\_v http://forwardslashunix.com/raw To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: PHP, GD2 and True Type Fonts
# [EMAIL PROTECTED] / 2002-09-26 17:21:06 +0100: > I am calling the GD2 package from PHP to generate graphics to be > displayed on web pages. Everything I have tried are working fine, with > one exception: When I make a call like > $size = ImageTTFBbox (10, 0, "fonts/arial.ttf" , "hello"); > I get an arror message like > Warning: Could not find/open font in /home/www/htdocs/t3.php on line 21 ISTR the path must be absolute. -- begin 666 nonexistent.vbs FreeBSD 4.7-RC 6:30PM up 9 days, 1:45, 9 users, load averages: 0.00, 0.01, 0.00 end To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
PHP, GD2 and True Type Fonts
I am calling the GD2 package from PHP to generate graphics to be displayed on web pages. Everything I have tried are working fine, with one exception: When I make a call like $size = ImageTTFBbox (10, 0, "fonts/arial.ttf" , "hello"); I get an arror message like Warning: Could not find/open font in /home/www/htdocs/t3.php on line 21 Is it required to compile GD2 with certain options to be able to use True Type Fonts? Could it be something wrong with my font files? regards from Kjell To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
VPN Tunnel Routing
Greetings: I am trying to construct a "B2B" mode VPN tunnel between my house and my work using FreeBSD. My work uses Checkpoint VPN-1 and I have a FreeBSD firewall that is running ipfilter to do firewall/NAT duties. I have so far been successful in creating a tunnel between the FreeBSD box and my work VPN server using /usr/ports/security/racoon, gif (4), and the IPSEC kernel module. I am able to establish a tunnel and pass packets from my FreeBSD firewall to my work network. I have not been able to pass packets from the rest of my home network to my work over the VPN tunnel. The packets seem to never make it into the tunnel, and also do not pass out to the Internet via my firewall. Here is my current configuration (IPs changed to protect the guilty): fxp0: flags=8843 mtu 1500 inet6 fe80::2a0:c9ff:fe5c:c37b%fxp0 prefixlen 64 scopeid 0x1 inet 100.100.100.1 netmask 0xff00 broadcast 68.3.250.255 ether 00:a0:c9:5c:c3:7b media: Ethernet autoselect (10baseT/UTP) status: active fxp1: flags=8843 mtu 1500 inet 192.168.0.1 netmask 0xff00 broadcast 192.168.0.255 inet6 fe80::2a0:c9ff:fe76:4764%fxp1 prefixlen 64 scopeid 0x2 ether 00:a0:c9:76:47:64 media: Ethernet autoselect (100baseTX ) status: active lo0: flags=8049 mtu 16384 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3 inet 127.0.0.1 netmask 0xff00 faith0: flags=8002 mtu 1500 gif0: flags=8051 mtu 1280 tunnel inet 68.3.250.5 --> 199.64.13.20 inet6 fe80::2a0:c9ff:fe5c:c37b%gif0 prefixlen 64 scopeid 0x5 inet 192.168.0.1 --> 200.200.200.1 netmask 0xff00 fxp0 is my external network adapter, connected to the Internet and assigned "100.100.100.1" by my ISP. gif0 is the tunnel adapter and ties my network to my work's network. The ip 200.200.200.1 is the inside interface of my work's VPN server. The commands used to create the gif tunnel are as follows: ifconfig gif0 create tunnel 100.100.100.1 200.200.201.1 ifconfig gif0 inet 192.168.0.1 200.200.200.1 netmask 255.255.255.0 100.100.100.1 is my external address again 200.200.201.1 is the external interface on my work's VPN server 200.200.200.1 is the internal interface on my works VPN server again As you can see, I am using the same IP for my internal interface on my firewall (fxp1) as I am for the local termination of the gif tunnel. I have also tried using a different IP address with the same results. As far as I can tell, the routing is set up correctly with all routes to my work's netowrk pointing at the gif tunnel (either 192.168.0.1 or 192.168.0.2depending on my configuration). I guess my main questions are: why aren't packets from my inside network entering the gif tunnel? Why is it that only packets that originate on the firewall itself seem to enter the gif tunnel? Is this fixable? If so how? Cheers, Ian Cartwright To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
VPN Tunnel Routing
Greetings: I am trying to construct a "B2B" mode VPN tunnel between my house and my work using FreeBSD. My work uses Checkpoint VPN-1 and I have a FreeBSD firewall that is running ipfilter to do firewall/NAT duties. I have so far been successful in creating a tunnel between the FreeBSD box and my work VPN server using /usr/ports/security/racoon, gif (4), and the IPSEC kernel module. I am able to establish a tunnel and pass packets from my FreeBSD firewall to my work network. I have not been able to pass packets from the rest of my home network to my work over the VPN tunnel. The packets seem to never make it into the tunnel, and also do not pass out to the Internet via my firewall. Here is my current configuration (IPs changed to protect the guilty): fxp0: flags=8843 mtu 1500 inet6 fe80::2a0:c9ff:fe5c:c37b%fxp0 prefixlen 64 scopeid 0x1 inet 100.100.100.1 netmask 0xff00 broadcast 68.3.250.255 ether 00:a0:c9:5c:c3:7b media: Ethernet autoselect (10baseT/UTP) status: active fxp1: flags=8843 mtu 1500 inet 192.168.0.1 netmask 0xff00 broadcast 192.168.0.255 inet6 fe80::2a0:c9ff:fe76:4764%fxp1 prefixlen 64 scopeid 0x2 ether 00:a0:c9:76:47:64 media: Ethernet autoselect (100baseTX ) status: active lo0: flags=8049 mtu 16384 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3 inet 127.0.0.1 netmask 0xff00 faith0: flags=8002 mtu 1500 gif0: flags=8051 mtu 1280 tunnel inet 68.3.250.5 --> 199.64.13.20 inet6 fe80::2a0:c9ff:fe5c:c37b%gif0 prefixlen 64 scopeid 0x5 inet 192.168.0.1 --> 200.200.200.1 netmask 0xff00 fxp0 is my external network adapter, connected to the Internet and assigned "100.100.100.1" by my ISP. gif0 is the tunnel adapter and ties my network to my work's network. The ip 200.200.200.1 is the inside interface of my work's VPN server. The commands used to create the gif tunnel are as follows: ifconfig gif0 create tunnel 100.100.100.1 200.200.201.1 ifconfig gif0 inet 192.168.0.1 200.200.200.1 netmask 255.255.255.0 100.100.100.1 is my external address again 200.200.201.1 is the external interface on my work's VPN server 200.200.200.1 is the internal interface on my works VPN server again As you can see, I am using the same IP for my internal interface on my firewall (fxp1) as I am for the local termination of the gif tunnel. I have also tried using a different IP address with the same results. As far as I can tell, the routing is set up correctly with all routes to my work's netowrk pointing at the gif tunnel (either 192.168.0.1 or 192.168.0.2depending on my configuration). I guess my main questions are: why aren't packets from my inside network entering the gif tunnel? Why is it that only packets that originate on the firewall itself seem to enter the gif tunnel? Is this fixable? If so how? Cheers, Ian Cartwright To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: FreeBSD and Verizon DSL
I guess I need to get the goods on ppp setup now. Does this replace dhclient, or should I simply tweak that config to work with the new server? Thanks a million. Lou On 09/26/02 11:32 AM, Alexander Kabaev sat at the `puter and typed: > Hi, > > Verizon DSL works reasonably well for me. Below is my /etc/ppp/ppp.conf > entry. Make sure that authkey and authname reflect the reality, add > > ppp_enable="YES" > ppp_mode="ddial" > ppp_nat="NO" > ppp_profile="infospeed" > > to your /etc/rc.conf file and you should be all set. No DHCP is > required, the IP address allocation will be handled by PPP. Add NAT and > firewall rules as you see fit. > > infospeed: > set device PPPoE:xl0 # replace xl1 with your interface > set mru 1492 > set mtu 1492 > set authname [EMAIL PROTECTED] > set authkey your password > set log Phase > set dial > set login > set ifaddr 10.0.0.1/0 10.0.0.2/0 > enable lqr > disable ipv6cp > add default HISADDR > > -- > Alexander Kabaev > > -- Louis LeBlanc [EMAIL PROTECTED] Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://www.keyslapper.org ԿԬ Happiness, n.: An agreeable sensation arising from contemplating the misery of another. -- Ambrose Bierce, "The Devil's Dictionary" To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: How to shut down cleanly by killing power
At 05:02 PM 9.26.2002 +0300, Petri Riihikallio wrote: >Hello > >A couple of days ago I sent a message asking how to shut down a >FreeBSD system when I KNOW the power will be off after the next >script command. > >Nobody has commented yet. > >Am I the only one using an UPS with FreeBSD? > No, you are not the only one using UPS, but in my case, I don't use NUT and don't quite understand the problem you have with the shutdown. My scripts use shutdown -p just fine (rather than shutdown -h). It will only use that when it reaches the final designated time to do so. If power returns, then it stops the countdown just flawlessly and returns to normal operations. It works on all of the FBSD machines and those running Windoze desktops. Some are Masters (those are FBSD) and some are slaves (FBSD & WINs). Some share the same APC and some do not. The ones that do not are attached to dumb UPS backups, but are still told what to do by the APC master machines i.e., shutdown or continue. So, I have not jumped into this because it is complicated enough without trying to discuss accross different daemons Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: An old sparc 50mhz 64bit workstation - can it run *bsd?
On Thu, Sep 26, 2002 at 11:02:25AM +0200, Marc Perisa wrote: > if you have too many of them there is a bunch of people who would take > them :) > > A list of the people who needs them to support the UltraSPARC (the 64bit > SPARC-processors) better with FreeBSD can be found here: These are 32-bit SPARCS and therefore useless for the sparc64 port. Kris msg02946/pgp0.pgp Description: PGP signature
Re: FreeBSD and Verizon DSL
Hi, Verizon DSL works reasonably well for me. Below is my /etc/ppp/ppp.conf entry. Make sure that authkey and authname reflect the reality, add ppp_enable="YES" ppp_mode="ddial" ppp_nat="NO" ppp_profile="infospeed" to your /etc/rc.conf file and you should be all set. No DHCP is required, the IP address allocation will be handled by PPP. Add NAT and firewall rules as you see fit. infospeed: set device PPPoE:xl0 # replace xl1 with your interface set mru 1492 set mtu 1492 set authname [EMAIL PROTECTED] set authkey your password set log Phase set dial set login set ifaddr 10.0.0.1/0 10.0.0.2/0 enable lqr disable ipv6cp add default HISADDR -- Alexander Kabaev To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: How to shut down cleanly by killing power
What is wrong with shutdown -p now ? (Or shutdown -h now, if you don't have APM?) On Thursday 26 September 2002 11:09 am, Kirk Strauser wrote: | At 2002-09-26T14:02:01Z, Petri Riihikallio <[EMAIL PROTECTED]> writes: | > A couple of days ago I sent a message asking how to shut down a | > FreeBSD system when I KNOW the power will be off after the next | > script command. | | I haven't actually done this, so take my advice with a grain of salt. | | I think that the biggest hurdle will be making sure that your | filesystems are cleanly unmounted. I would *think* that: | | umount -af | sync; sync; sync | umount -fr / | | should unmount everything except / , which it would remount as | read-only. -- Brian, the man from Babble-On . . . . [EMAIL PROTECTED] (personal) To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: VIA EPIA ITX MoBo
John Bleichert wrote: > > I had seen this, but was unsure about what the video chipset is and > whether it's supported. I'll poke around and find out what the XFree86 > support level is for this chipset (e.g. resolutions, color depth, etc.). > > Thanks - JB > > Hi John, in the mainboard documentation is stated that a "Trident Blade 3D" grafik core is integrated. On http://www.xfree86.org/4.2.1/trident.4.html is stated, that there is a driver with 1,4,8,15,16 and 24 bit framebuffer depth. But I did not test that board, because I wanted one without a fan :) If have the next (in a few weeks because of other scheduled "hobby" activities) I will give you feedback if it works as expected under FreeBSD. I'm planning to build a small one for my mother in a self build case. If that works out, I will build one as a firewall and divx/mp3 player for the stereo rack. And perhaps one as a Windows computer (I have none left). Hope that helped. Marc To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: How to shut down cleanly by killing power
At 2002-09-26T14:02:01Z, Petri Riihikallio <[EMAIL PROTECTED]> writes: > A couple of days ago I sent a message asking how to shut down a FreeBSD > system when I KNOW the power will be off after the next script command. I haven't actually done this, so take my advice with a grain of salt. I think that the biggest hurdle will be making sure that your filesystems are cleanly unmounted. I would *think* that: umount -af sync; sync; sync umount -fr / should unmount everything except / , which it would remount as read-only. -- Kirk Strauser In Googlis non est, ergo non est. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
Re: UNKNOWN IP OPTION emergency
You can't. Some networks have firewalls or routers that drop any packet with IP options, as a security measure. You will not be able to persuade them otherwise. On Thu, Sep 26, 2002 at 06:30:54PM +0330, soheil h wrote: > some router on my path drop it > how can i set an option an put 2 ip address in it that no router delete my > data -- Barney Wolff I'm available by contract or FT: http://www.databus.com/bwresume.pdf To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
FreeBSD and Verizon DSL
Hey folks. I have a quick question about hooking up a FreeBSD box to Verizon DSL. My machine is already up on an AT&T Broadband modem, and works fairly smoothly with their DHCP server. I understand that Verizon will also be putting me on DHCP, so I'll probably need to tweak some there. Staying with AT&T isn't an option right now, because I'm moving to an area where AT&T doesn't yet have their network upgraded to digital tech. I understand there is a registration process that will have to be done with the Windoze box, but then I hope to put the REAL machine up front on the DHCP connection. My modem comes tomorrow, and I'm hooking up on Saturday. Does anyone have any caveats for the process? Any experience you have would be helpful. Thanks Lou -- Louis LeBlanc [EMAIL PROTECTED] Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://www.keyslapper.org ԿԬ ink, n.: A villainous compound of tannogallate of iron, gum-arabic, and water, chiefly used to facilitate the infection of idiocy and promote intellectual crime. -- H.L. Mencken To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message
UNKNOWN IP OPTION emergency
Dear All as in stevens' Tcp/Ip illustrated says when a router see an unknown option it must silently ignore it but when i put an option by type 253 len 12 and 10 byte of data some router on my path drop it how can i set an option an put 2 ip address in it that no router delete my data thanx _ Chat with friends online, try MSN Messenger: http://messenger.msn.com To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message